79410824

Date: 2025-02-04 07:13:54
Score: 1.5
Natty:
Report link

For me the solution was to go to the emulator settings (3 dots in the bottom right) -> settings -> advanced (tab in the top part) and then select the combination of ANGLE (D3D11) and Renderer maximum (up to OpenGL ES 3.1) from the dropdowns.

After a restart, everything worked as expected

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sebb

79410819

Date: 2025-02-04 07:09:53
Score: 0.5
Natty:
Report link

You follow this way with Spring Boot YML 's multiple profiles https://docs.spring.io/spring-boot/reference/features/external-config.html#features.external-config.files.profile-specific

You run dev profile , test profile did not work. Use

mvn spring-boot:run -Dspring-boot.run.profiles=dev
Reasons:
  • Blacklisted phrase (1): did not work
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-2):
Posted by: Vy Do

79410813

Date: 2025-02-04 07:07:52
Score: 8.5
Natty: 7
Report link

As a newcomer to the AxonIQ Framework, I have a query about maintaining event sequence on the view model (Query Side) when listening to events published by command model. Can you guide me through this?Is it soemthing that axon takes care of it or how?

Reasons:
  • Blacklisted phrase (1): guide me
  • RegEx Blacklisted phrase (2.5): Can you guide me
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29493455

79410807

Date: 2025-02-04 07:06:52
Score: 2
Natty:
Report link

You can take a look at this project, which is especially suitable for beginners to train a GPT and understand the entire training process. Everything is controlled by you, and the whole process has a graphical interface, which is very easy to use, and you can observe the status of the model in real time. It is very suitable for beginners to learn to train GPT: ystemsrx/mini-nanoGPT

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sixteen

79410800

Date: 2025-02-04 07:01:51
Score: 3
Natty:
Report link

I would implement IDisposable and call the Dispose() Method in the Destructor. This method you can also call explicitly from the outside

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: LWehmschulte

79410779

Date: 2025-02-04 06:50:48
Score: 2.5
Natty:
Report link

Had the same problem it wasn't working in qt 6.7.1 but i upgraded to qt 6.8 and now its working

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: zeroalpha

79410775

Date: 2025-02-04 06:48:48
Score: 1.5
Natty:
Report link
$PathObject = (Get-ItemProperty 'C:\somefolder')
if ($PathObject.Attributes -eq 'Directory') {
    write-host 'It''s a directory'
} else {
    write-host 'It''s a file'
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vladimir1211

79410770

Date: 2025-02-04 06:47:48
Score: 0.5
Natty:
Report link

Based on my test, I reproduced the same problem with you. As mentioned in the comments, this issue has been discussed since 2016, but there is still no good solution.

I recommend that you could report the problem in Developer Community. There are many VS developers who can help here. It is important to note that official staff may only handle this problem when enough people report it.

Reasons:
  • No code block (0.5):
Posted by: Cody Liang

79410768

Date: 2025-02-04 06:44:47
Score: 0.5
Natty:
Report link

I would higly suggest updating your app step by step - version by version to latest - currently v19. That way you get back to a futureproof maintenable project.

You could use Angular Update Interactive guide

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Torsten Barthel

79410761

Date: 2025-02-04 06:40:46
Score: 1.5
Natty:
Report link

https://www.facebook.com/share/r/1E2vCMKDvc/

<iframe src="https://www.facebook.com/plugins/post.php?href=https%3A%2F%2Fwww.facebook.com%2Fbrendan.domotor%2Fposts%2F10158014151756039&show_text=true&width=500" width="500" height="703" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe>

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Md monarul

79410760

Date: 2025-02-04 06:40:46
Score: 2
Natty:
Report link

When kilo is calculated, miles is undefined. You need to move the line containing kilo = miles*1.609; after the line std::in >> miles;

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: J Suay

79410752

Date: 2025-02-04 06:36:45
Score: 3
Natty:
Report link

after trying a few things, it became clear the order of operations in asking user for input after already initialzing kilo variable. When i moved it below user input was OK. I didn't get error when compiled, just wrong answer so I didn't get it. Seems OK now.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: hpoly01

79410749

Date: 2025-02-04 06:33:44
Score: 1.5
Natty:
Report link

The issue seems to be with the poll() and take() methods. The Queue.take() is a blocking call and it waits but the other one was throwing a null pointer exception because of which I see that the thread is not in RUNNABLE state and becomes TERMINATED. To fix that I added some extra logic which got me into trouble. Thanks to everyone who took a look at this.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Vinod Krishnan

79410746

Date: 2025-02-04 06:32:44
Score: 1
Natty:
Report link
from openpyxl import load_workbook
wb = load_workbook("charts.xlsx")

sheetnames = wb.sheetnames
charts = []

for sheet in sheetnames:
    ws = wb[sheet]
    chart_info = ws._charts
    charts.append(chart_info)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arjun V

79410737

Date: 2025-02-04 06:27:43
Score: 0.5
Natty:
Report link

I had the same issue. Replacing name "main" to "master" solved it for me.

git push origin master

instead of

git push origin main
Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abhishek Choudhary

79410734

Date: 2025-02-04 06:24:42
Score: 1.5
Natty:
Report link

In my opinion, you should write the logic in Api . According to your description, you need firstly send request to the api to get the result and then update or insert record according to this result. you have to write Sp in such a way 1st check if "if Account Number exists it should update every other field. But if Account Number does not exist, it should insert a new record."(Eg. If Exit(Query...) in such way ) this logic you have to implement in Store Procedure .

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: aakash gupta

79410730

Date: 2025-02-04 06:22:40
Score: 6.5 🚩
Natty:
Report link

This may not be an answer and I cannot make any comments yet, but can you try to provide the Javascript code before being compiled by webpack?

Additionally, can you provide the error message coming from the exception? I would like to know the contents of Log::info($e->getMessage());

As for the configuration, as long as the service account has access to the firebase project, it should be fine.

Double check if your firebase_credentials.json exists and laravel can access that file.

Reasons:
  • Blacklisted phrase (1.5): I would like to know
  • Blacklisted phrase (0.5): I cannot
  • Blacklisted phrase (3): comments yet
  • Whitelisted phrase (-2): can you try
  • RegEx Blacklisted phrase (2.5): can you provide
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Tatachiblob

79410718

Date: 2025-02-04 06:13:39
Score: 1.5
Natty:
Report link
//for p5 JS  
cb1 = createCheckbox(" Sphere",true);
cb1.position(150, 605);
cb1.style("color:red"); //here
//cb1.changed(cb1x); //optional callback
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Joe B

79410715

Date: 2025-02-04 06:12:38
Score: 1.5
Natty:
Report link

in my case please delete noUncheckedSideEffectImports: true.

it works fine me.

noUncheckedSideEffectImports is true check for library side effect.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sjm

79410710

Date: 2025-02-04 06:10:38
Score: 2
Natty:
Report link

1️⃣ Try explicit broadcast (MY_PACKAGE_REPLACED) 2️⃣ If that fails, use a foreground service 3️⃣ If you control the update flow, use a delayed restart via PendingIntent

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: krishna

79410709

Date: 2025-02-04 06:08:37
Score: 0.5
Natty:
Report link

On settings.py file I add the configuration. This is an example

from datetime import timedelta

SIMPLE_JWT = { 
       'ACCESS_TOKEN_LIFETIME': timedelta(hours=1),  
       'REFRESH_TOKEN_LIFETIME': timedelta(days=7)
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lalo19

79410704

Date: 2025-02-04 06:06:37
Score: 1
Natty:
Report link

On top of JohanC's answer, I personally prefer this way:

import matplotlib.pyplot as plt

box = plt.boxplot([[1,5,6,7,6,10],[1,4,5,5,6,10]],patch_artist=True)

widths = [1,3]
styles = ['*','D']

for n,f in enumerate(box['fliers']):
    f.set(markeredgewidth=widths[n],marker=styles[n])

It will give you the results below:

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dawei Wang

79410703

Date: 2025-02-04 06:06:37
Score: 2
Natty:
Report link

Instead of image/webp.wasticker, they might use a more general MIME type like: image/webp image/gif video/mp4

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: krishna

79410702

Date: 2025-02-04 06:06:37
Score: 0.5
Natty:
Report link

Through trial and error, I found a solution that seems to work for configuring desktop settings:

class DesktopApplicationConventionPlugin : Plugin<Project> {
    override fun apply(target: Project) {
        with(target) {
            afterEvaluate {
                extensions.configure<ComposeExtension> {
                    this.extensions.configure<DesktopExtension> {
                        application {
                            mainClass = "com.app.MainKt"

                            nativeDistributions {
                                targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
                                packageName = "com.app"
                                packageVersion = "1.0.0"
                            }
                        }

                    }
                }
            }
        }
    }
}

What I've observed:

This solution works for my use case, but I haven't found any documentation explaining why this specific structure is necessary. Would appreciate insights from others who understand Gradle plugin development better.

Reasons:
  • Blacklisted phrase (1.5): Would appreciate
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: GreatTusk

79410692

Date: 2025-02-04 06:01:36
Score: 2.5
Natty:
Report link

Unity might filter logs. Click the Console window and ensure "Clear on Play" is unchecked.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: krishna

79410687

Date: 2025-02-04 05:58:35
Score: 3
Natty:
Report link

If you don't have to use Netlify you could try Vercel, it usually works well with Next.js since its one company.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Taras Shulhan

79410677

Date: 2025-02-04 05:53:34
Score: 1.5
Natty:
Report link

Try setting the directory to the current directory itself, so you can just see if it is properly saved.

directory = r'./'
excel_file_path = os.path.join(directory, 'output.xlsx')
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: htrehrthtr

79410676

Date: 2025-02-04 05:52:34
Score: 2
Natty:
Report link

In Power BI the connectivity to Databricks is only done through the workspace's SQL Endpoint. I don't see any possibility of connecting Power BI to a Databricks notebook.

You can write the notebook output into a Delta Table and use SQL endpoint to read the data into your report.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Niraj Bhise

79410674

Date: 2025-02-04 05:49:33
Score: 0.5
Natty:
Report link

gm X,gm Y 0.002,2.7555026e-17 0.0057333333,2.4640073e-17 0.012951111,7.219604e-18 0.022951111,-9.4481662e-17 0.032951111,-9.2193183e-17 0.042951111,1.2423036e-17 0.052951111,-1.739246e-16 0.062951111,-1.7752079e-16 0.072951111,1.0134556e-17 0.082951111,-3.8904297e-17 0.092951111,-4.250048e-17 0.10295111,9.1537777e-18 0.11295111,1.0134554e-17 0.12295111,-2.7134974e-17 0.13295111,-1.101741e-16 0.14295111,-7.3885348e-17 0.15295111,-1.8634907e-17 0.16295111,-1.765413e-17 0.17295111,-1.9616977e-18 0.18295111,-3.1058084e-17 0.19295111,-2.1250314e-17 0.20295111,8.4999232e-18 0.21295111,1.0134551e-17 0.22295111,5.5575914e-18 0.23295111,7.1922195e-18 0.24295111,9.8076246e-18 0.25295111,7.5191445e-18 0.26295111,5.8845157e-18 0.27295111,6.5383667e-18 0.28295111,4.2498865e-18 0.29295111,4.5768118e-18 0.30295111,8.8268454e-18 0.31295111,7.8460679e-18 0.32295111,6.2114391e-18 0.33295111,4.2498846e-18 0.34295111,4.2498842e-18 0.35295111,2.942181e-18 0.36295111,3.596032e-18 0.37295111,7.1922141e-18 0.38295111,7.5191394e-18 0.39295111,6.5383619e-18 0.40295111,3.9229559e-18 0.41295111,2.6152527e-18 0.42295111,3.2691036e-18 0.43295111,2.2883261e-18 0.44295111,-1.5414974e-22 0.45295111,-3.9232629e-18 0.46295111,5.1327317e-16 0.47295111,1.6104358e-15 0.48295111,3.6190672e-15 0.49295111,7.2074035e-15 0.50295111,1.3206817e-14 0.51295111,2.4895391e-14 0.52295111,4.5454112e-14 0.53295111,8.0453469e-14 0.54295111,1.3840301e-13 0.55295111,2.3258703e-13 0.56295111,3.8283063e-13 0.57295111,6.1870882e-13 0.58295111,9.8001924e-13 0.59295111,1.5288925e-12 0.60295111,2.3465192e-12 0.61295111,3.5420361e-12 0.62295111,5.2707436e-12 0.63295111,7.7424882e-12 0.64295111,1.1227368e-11 0.65295111,1.6086689e-11 0.66295111,2.2807022e-11 0.67295111,3.1991304e-11 0.68295111,4.4397415e-11 0.69295111,6.1019061e-11 0.70295111,8.303726e-11 0.71295111,1.121684e-10 0.72295111,1.5013727e-10 0.73295111,1.9924744e-10 0.74295111,2.6247157e-10 0.75295111,3.4342621e-10 0.76295111,4.46213e-10 0.77295111,5.7509389e-10 0.78295111,7.3692787e-10 0.79295111,9.3994396e-10 0.80295111,1.1908373e-09 0.81295111,1.4993064e-09 0.82295111,1.8776395e-09 0.83295111,2.3402601e-09 0.84295111,2.9014218e-09 0.85295111,3.5773442e-09 0.86295111,4.394688e-09 0.87295111,5.370136e-09 0.88295111,6.5331343e-09 0.89295111,7.9177696e-09 0.90295111,9.5501717e-09 0.91295111,1.1481113e-08 0.92295111,1.3748161e-08 0.93295111,1.6397251e-08 0.94295111,1.9500895e-08 0.95295111,2.3103406e-08 0.96295111,2.7292766e-08 0.97295111,3.2113099e-08 0.98295111,3.7667738e-08 0.99295111,4.4096172e-08 1.0029511,5.1406557e-08 1.0129511,5.977897e-08 1.0229511,6.9337666e-08 1.0329511,8.0217238e-08 1.0429511,9.2548495e-08 1.0529511,1.0641741e-07 1.0629511,1.2217432e-07 1.0729511,1.3990341e-07 1.0829511,1.5977678e-07 1.0929511,1.8215258e-07 1.1029511,2.0724735e-07 1.1129511,2.3521112e-07 1.1229511,2.6628477e-07 1.1329511,3.0082176e-07 1.1429511,3.3926253e-07 1.1529511,3.8187021e-07 1.1629511,4.2919388e-07 1.1729511,4.8147396e-07 1.1829511,5.3853032e-07 1.1929511,6.012444e-07 1.2029511,6.7071693e-07 1.2129511,7.4685886e-07 1.2229511,8.2967194e-07 1.2329511,9.2025067e-07 1.2429511,1.0190628e-06 1.2529511,1.1263011e-06 1.2629511,1.2428726e-06 1.2729511,1.3688389e-06 1.2829511,1.5022941e-06 1.2929511,1.6475043e-06 1.3029511,1.804093e-06 1.3129511,1.9700464e-06 1.3229511,2.146131e-06 1.3329511,2.3335701e-06 1.3429511,2.5340084e-06 1.3529511,2.7461901e-06 1.3629511,2.9657002e-06 1.3729511,3.198616e-06 1.3829511,3.4475215e-06 1.3929511,3.7056789e-06 1.4029511,3.9770256e-06 1.4129511,4.2579311e-06 1.4229511,4.5534379e-06 1.4329511,4.8645244e-06 1.4429511,5.1853934e-06 1.4529511,5.5213026e-06 1.4629511,5.8714281e-06 1.4729511,6.2363925e-06 1.4829511,6.6025247e-06 1.4929511,6.9853987e-06 1.5029511,7.3908681e-06 1.5129511,7.8044582e-06 1.5229511,8.2299997e-06 1.5329511,8.670183e-06 1.5429511,9.124183e-06 1.5529511,9.5875354e-06 1.5629511,1.0068894e-05 1.5729511,1.0559012e-05 1.5829511,1.1073826e-05 1.5929511,1.1629924e-05 1.6029511,1.2081792e-05 1.6129511,1.2577368e-05 1.6229511,1.3194212e-05 1.6329511,1.3739388e-05 1.6429511,1.4290663e-05 1.6529511,1.4899889e-05 1.6629511,1.5630537e-05 1.6729511,1.6060918e-05 1.6829511,1.6545787e-05 1.6929511,1.7319068e-05 1.7029511,1.7953637e-05 1.7129511,1.8599335e-05 1.7229511,1.9254371e-05 1.7329511,1.9970745e-05 1.7429511,2.0621797e-05 1.7529511,2.1241536e-05 1.7629511,2.1931749e-05 1.7729511,2.2640406e-05 1.7829511,2.3354601e-05 1.7929511,2.3998002e-05 1.8029511,2.4705263e-05 1.8129511,2.5473958e-05 1.8229511,2.6191128e-05 1.8329511,2.6923254e-05 1.8429511,2.7669616e-05 1.8529511,2.8428513e-05 1.8629511,2.9126564e-05 1.8729511,2.9844457e-05 1.8829511,3.0623065e-05 1.8929511,3.1371928e-05 1.9029511,3.2114546e-05 1.9129511,3.2851939e-05 1.9229511,3.3596495e-05 1.9329511,3.4339148e-05 1.9429511,3.5080318e-05 1.9529511,3.5831984e-05 1.9629511,3.6541806e-05 1.9729511,3.7284922e-05 1.9829511,3.8072414e-05 1.9929511,3.8661478e-05 2,3.8871667e-05

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rithika

79410670

Date: 2025-02-04 05:46:33
Score: 1.5
Natty:
Report link

At first try to remove the app from emulator, or do wipe data.

To run your android app from './android' folder:

  1. Open prebuilded folder in Android Studio. Be sure that all dependencies automatically will be installed. Usuallty it takes some time
  2. Next step npx expo run:android
  3. Now your app is running, make some changes in native directory, and apply run from android studio - then you get succesful build, with applied changes.
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Oleg Kuzmin

79410662

Date: 2025-02-04 05:37:31
Score: 1
Natty:
Report link

Adding to above answers,

  1. if you don't have a multi-module project with different JDKs assigned to each module you can just uncheck this like in below image

    Settings -> Java Compiler -> [uncheck] Use compiler from module target JDK when possible

  2. when this option is disabled, IntelliJ IDEA will use the Project JDK to compile all modules, regardless of the JDK assigned to each individual module.

intellij settings

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Gopinathsgn

79410659

Date: 2025-02-04 05:34:30
Score: 3
Natty:
Report link

However, when I run the same code on VS Code on my own computer, I encounter this error

It's a linker error, i ran the code on my side and it's working fine, can you share how you are trying to run the code in VS code, If you have gcc installed on your system, you can link all of them together like so,

gcc main.c student_data.c student.c -o a.out And then try running the executable a.out

Reasons:
  • RegEx Blacklisted phrase (2.5): can you share how you
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: James Clinton

79410654

Date: 2025-02-04 05:29:29
Score: 1.5
Natty:
Report link

I also was getting this error when trying to use the library Flask-Table, which seems to have been last updated in Dec 2017.

I think I will have to find another way to create tables in flask. 9I'm sure there are dozens of ways.)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Peej1226

79410650

Date: 2025-02-04 05:28:29
Score: 2
Natty:
Report link

I got your question, it is quite easy to understand the logic of this particular expression like let consider some elements 1,2,3,4,5 and 6 when you given that find the numbers less than 5 you will find 1,2,3 and 4 but here if we use logical not operator like "!" in this question it become-- find elements which are not less than 5 only 2 elements left i.e 5 and 6 so that concluded it is by default considered that a>b and a can be equal to b. Thanks you.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Low reputation (1):
Posted by: Divyansh Verma

79410646

Date: 2025-02-04 05:26:29
Score: 2.5
Natty:
Report link

you can use RDLC search for it.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ayush gevariya

79410640

Date: 2025-02-04 05:23:28
Score: 2.5
Natty:
Report link

Use "sumneko/lua" extension and this repo as your definition files:

pico-api

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Yellow

79410627

Date: 2025-02-04 05:16:26
Score: 4.5
Natty:
Report link

This usually occurs due to access permissions. You can look into https://supabase.com/docs/guides/platform/permissions to check on permissions.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: htrehrthtr

79410616

Date: 2025-02-04 05:08:25
Score: 3.5
Natty:
Report link

Facebook Reviews comment cannot be deleted. You can see that in their documentation limitation section

https://developers.facebook.com/docs/graph-api/reference/v22.0/comment#:~:text=Limitations,by%20a%20Page.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: BASTIN A

79410610

Date: 2025-02-04 05:05:24
Score: 1
Natty:
Report link

Since you are on the WordPress.com Personal plan, there are limitations to theme customization, which may be causing the issues you're facing. Here’s how to fix them:

1. Why is the Logo and Footer Not Appearing on All Pages?

Steps to Fix:

1- Ensure Header and Footer are Part of Your Global Template

2- Fix the Footer Issue (Unwanted Lines at the Bottom)

3- Check if Your Theme Has Multiple Page Templates

4- Clear Cache

Since you are on the Personal plan, you have limited access to custom code. If these steps don't fix the issue, consider upgrading to a Premium or Business plan for full theme customization.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Gauri Kaushik

79410605

Date: 2025-02-04 05:04:24
Score: 3
Natty:
Report link

Did you replace the datacards when you changed your forms data source? You have to replace the datacard and then update the Item property to requestData for your second screen edit form.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
Posted by: Almas Mahfooz

79410573

Date: 2025-02-04 04:34:19
Score: 1
Natty:
Report link

Adding this className to the DataGrid sx allows you to manipulate the individual headers but not the whole container. You can still set background colors and margins as you want.

'& .MuiDataGrid-columnHeader': {
                    backgroundColor: 'your-color-constant',
                }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Michael Okoye

79410568

Date: 2025-02-04 04:30:18
Score: 2.5
Natty:
Report link
dat %>% tibble %>% mutate(across(where(is.character), factor))
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nils W.

79410560

Date: 2025-02-04 04:26:17
Score: 1
Natty:
Report link

for substract use minus vavlue such as:

QTime time(15, 0, 0);             // time == 15:00:00
QTime newTime;
newTime = time.addSecs(3600);     // time == 16:00:00
newTime = time.addSecs(-3600);    // time == 14:00:00
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rouhollah Ahmadi

79410558

Date: 2025-02-04 04:22:17
Score: 1.5
Natty:
Report link

Even with the random state set, there can be change's with really small changes to any part of the process. It usually is a result of Changes in the Software Environment. There is nothing per say to do, the best thing you can do is ensure everything from the dataset to the package's and everything is locked down ensuring that there are no changes in between the run's.

There were some discussions on how this can be prevented I am linkthing them here so you can explore other options as well:

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: htrehrthtr

79410554

Date: 2025-02-04 04:17:15
Score: 2.5
Natty:
Report link

Try update your material component gradle

'com.google.android.material:material:1.4.0'

I update to this version and solve my problem

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Irfan Rozal

79410548

Date: 2025-02-04 04:14:15
Score: 1
Natty:
Report link

Apache 2.4 - fix

If you have mod_evasive enabled on your server, check that the configuration contains your external IP address.

Modify the file /etc/apache2/mods-available/evasive.conf and edit the 'DOSWhitelist' line to match the following DOSWhitelist {internalIP}/23 {externalIP}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jason

79410543

Date: 2025-02-04 04:06:13
Score: 0.5
Natty:
Report link

Solved by referencing the pgvector image itself rather than manually installing the packages

FROM pgvector/pgvector:pg16 AS builder

FROM bitnami/postgresql-repmgr:16

COPY --from=builder /usr/lib/postgresql/16/lib/vector.so /opt/bitnami/postgresql/lib/
COPY --from=builder /usr/share/postgresql/16/extension/vector* /opt/bitnami/postgresql/share/extension/
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Sam Scolari

79410540

Date: 2025-02-04 04:04:13
Score: 3
Natty:
Report link

defaultProps has depricated, This article will help you for new developement :

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Deepak Kumar

79410531

Date: 2025-02-04 03:56:08
Score: 1
Natty:
Report link

Normally, Laravel Herd includes a few of extensions including openssl. So first of all make sure that both PHP and Nginx are running in your Laravel Herb

enter image description here

If you're sure that they're up and running, but still encounter the same issue, then you have to activate it yourself. You should enable openssl extension in your php.ini file. To find out it's location, run php --ini. Then open php.ini and uncomment the line with extension=php_openssl.dll. Now try to create the project again

If you still encounter the same issue, then you have to install OpenSSL. In that case, I'd advise you to visit this page for more info

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nick Melton

79410529

Date: 2025-02-04 03:54:07
Score: 2
Natty:
Report link

After extensive discussion with @dapperdandev, it was noticed the issue seemed to do not with the deployment but with the routing for Angular apps and Github pages.

As per this blog post https://benfraserdesign.medium.com/deploying-an-angular-app-on-github-pages-c4dfee672968, copying the index.html file and naming it 404.html into the docs folder seems to work as a workaround for the issue.

So I updated my build command from:

"build": "ng build --configuration=production --output-path docs --base-href /bible-quiz/ && mv docs/browser/* docs/ && rmdir docs/browser",

to:

"build": "ng build --configuration=production --output-path docs --base-href /bible-quiz/ && mv docs/browser/* docs/ && rmdir docs/browser && cp docs/index.html docs/404.html",

And that fixed the issue.

PS: Other than this, I tried to use hash routing as per:

https://stackoverflow.com/a/75993642/6654475

But that didn't seem to fix it for my case, but maybe would be a better path for a solution if having a 404.html file as a duplicate of the index.html file may not suit your case.

Reasons:
  • Blacklisted phrase (1): this blog
  • Blacklisted phrase (0.5): medium.com
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @dapperdandev
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Francislainy Campos

79410526

Date: 2025-02-04 03:46:06
Score: 1.5
Natty:
Report link

Using ijson for Incremental Parsing: You can process the file in a memory-efficient way by using the ijson package, which enables iterative parsing of JSON data. Although schema validation is not integrated into iJSON, you can add your own validation logic while parsing. Each parsed element must be explicitly compared to the expected schema using this method.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Suhani Bhatia

79410523

Date: 2025-02-04 03:43:06
Score: 1.5
Natty:
Report link

Two steps:

  1. Get the idx of the position you want to close.
  2. Create an order on the opposite direction with the same position size and idx.

This will close the position without touching the other position in hedge.

E.g. If you have a 0.001 BTCUSDT in long position which has an idx of 1, close it by placing a 0.001 BTCUSDT order in short position with idx 1.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nats Elayron

79410520

Date: 2025-02-04 03:42:06
Score: 3
Natty:
Report link

Answer: The issue was lenis library, when I created its object it was not in the useEffect hook! Now I have used useEffect and it's working well!

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rohan Prajapati

79410507

Date: 2025-02-04 03:29:03
Score: 2.5
Natty:
Report link

Serverless Computing: Pros, Cons, and Use Cases

In today’s cloud-driven world, serverless computing is gaining popularity as a cost-effective and scalable way to build and run applications. But what exactly is serverless computing? How does it work? And when should you use it? Let’s break it down in simple terms.

What is Serverless Computing?

Despite the name, serverless computing does use servers—but the difference is you don’t have to manage them. Instead, the cloud provider (like AWS, Azure, or Google Cloud) handles all the infrastructure, allowing developers to focus only on writing code.

Think of it like electricity: Instead of managing your own power plant, you just use electricity when needed and pay for what you consume. Similarly, in serverless computing, you use computing resources on-demand and only pay for what you use.

How Does It Work?

1️ Developers write code

Read more:What is Serverless Computing

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Cloud-Pilot

79410502

Date: 2025-02-04 03:23:03
Score: 0.5
Natty:
Report link

1 Close the emulator

2 in Device manager find your emulator.

3 Click on three dots' menu.

4 Click Cool Boot

voila! it plays as before

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: CodeToLife

79410496

Date: 2025-02-04 03:17:01
Score: 2
Natty:
Report link

The following code works for me:

=COUNTIF([range],">0"&"*")

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rhence

79410481

Date: 2025-02-04 03:00:59
Score: 1
Natty:
Report link

!function(){"use strict";window.gep_queue=window.gep_queue||[];function n(e,n){return window.gep_queue.push({action:e,arguments:n})}try{var e,r=(null===(e=document.querySelector('meta[name="aplus-exinfo"]'))||void 0===e?void 0:e.getAttribute("content"))||"";(null==r?void 0:r.split("&")).forEach(function(e){e=e.split("=");"pid"===e[0]&&(window.goldlog_queue||(window.goldlog_queue=[])).push({action:"goldlog.setMetaInfo",arguments:["aplus-cpvdata",{pid:e[1]}]})})}catch(e){}window.addEventListener("error",function(e){n("handleError",[e])},!0),window.addEventListener("unhandledrejection",function(e){n("unhandledrejection",[e])},!0),window.performance&&window.performance.mark&&window.performance.measure&&(window.performance.mark("mark-startRender"),window.performance.measure("startRender","fetchStart","mark-startRender"))strong text

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Red Magic

79410464

Date: 2025-02-04 02:46:56
Score: 5
Natty: 7
Report link

Can you use 2 turtles in google colab? I can't get it to work. Something like this:

https://www.geeksforgeeks.org/turtle-race-game-using-python-turtle-graphics-library/

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you use
  • Low reputation (1):
Posted by: SciMan

79410461

Date: 2025-02-04 02:43:55
Score: 1.5
Natty:
Report link

Complementing @ahmedkandil's answer, for laravel pagination you can pass the custom component with:

{{ $data->links('components.pagination.dark-theme') }}

For livewire pagination use @ahmedkandil's answer.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @ahmedkandil's
  • User mentioned (0): @ahmedkandil's
  • Low reputation (0.5):
Posted by: Matheus Gabardo Messias

79410452

Date: 2025-02-04 02:35:53
Score: 1.5
Natty:
Report link

You need to replace spaces with the unicode before checking. TestCafe has a section about this. &nbsp; is \u00a0

specialCharReplace(text) {
    // replace spaces of text with \u00a0
    return text.replace(/\s/g, "\u00a0");
}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: S s

79410439

Date: 2025-02-04 02:23:51
Score: 2.5
Natty:
Report link

Try using the openpyxl library from Python.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ishita

79410434

Date: 2025-02-04 02:20:49
Score: 4.5
Natty:
Report link

The issue was solved by using use_pure=True in mysq.connect(...) , as written here https://stackoverflow.com/a/79228700/16538566

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: krishi

79410432

Date: 2025-02-04 02:19:49
Score: 1
Natty:
Report link

This was a problem with the EXIF orientation tag.

Fixed it with this:

# Open the image using PIL
image = Image.open(local_file)
from PIL import ImageOps
image = ImageOps.exif_transpose(image)

‘’’

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Tyler Norlund

79410423

Date: 2025-02-04 02:10:47
Score: 1
Natty:
Report link

As indicated in my comment to @Quinton.Quagliano, the use of Mathjax version 3 allows showing math in figure labels in the HTML file but messes up the figures in the jupyter notebook, which is the original format I work with. The figures lose their interactivity and the labels completely disappear due to that!

Here is a hack I found to do what I want (Cannot explain why it works though...):

Here is a qmd code showing what the notebook content looks like.

---
format:
  html:
    embed-resources: true
    execute: true
jupyter: python3
---

```{python}
from IPython.display import display, HTML

# Run this first
display(HTML(
    '<script async src="https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js?config=TeX-AMS_SVG"></script>'
))

# Run this afterwards
# display(HTML(
#     '<script async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js"></script>'
# ))
```

```{python}
import plotly.express as px
fig = px.line(x=[0, 1, 2, 3, 4],
              y=[1, 2, 4, 8, 16],
              )
fig.update_layout(yaxis_title = '$2^x$',
                  xaxis_title = '$x$')
fig.show()
```
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Likely

79410419

Date: 2025-02-04 02:04:46
Score: 2.5
Natty:
Report link

this is not an answer, but a question: why in the next video several cmds can be executed after the "command" word: https://www.youtube.com/watch?v=QC3weuCUr8o

Reasons:
  • Blacklisted phrase (1): not an answer
  • Blacklisted phrase (1): youtube.com
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Jose Cabrera Zuniga

79410413

Date: 2025-02-04 02:01:45
Score: 2
Natty:
Report link

After uninstalling react-native-dotenv and removing it from the babel.config.js, consider clearing your cache before bundling. run npx expo start -c

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: promise ibeh

79410409

Date: 2025-02-04 01:55:44
Score: 1
Natty:
Report link

I've also just encountered this problem and found a way to solve it.

I created a NEW configuration for launching the application that was supposed to start after and specified the pre-launch of the source application in its settings.

To be clear, I'm developing a library in C++. At one point, I decided to add Google Tests, and a little later a coverage assessment. And when I was checking the tests, I also wanted to automatically regenerate the coverage through gcovr. However, like you, I didn't find the launch option after that. Therefore, I created a new startup configuration (gcovr) and before executing it, I selected the option to run the google tests configuration. screenshot of the configuration

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Arthur Koba

79410398

Date: 2025-02-04 01:48:42
Score: 2.5
Natty:
Report link

As mentioned when i log in to the container KafkaChannel__SaslUsername is empty. in order to fix the we need use double $$ syntax like this inside the docker-compose.yml. KafkaChannel__SaslUsername=$$ConnectionString

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Prageeth Athulathmudali

79410391

Date: 2025-02-04 01:40:38
Score: 7.5 🚩
Natty:
Report link

I made this adjustment in my project, but unfortunately, it still didn't work. I'm still getting the same error.

enter image description here

Reasons:
  • RegEx Blacklisted phrase (1): I'm still getting the same error
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): getting the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: CristhianBonetti

79410388

Date: 2025-02-04 01:37:37
Score: 4.5
Natty:
Report link

This is because Related Artists is deprecated in the Spotify API as of November 27, 2024.

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Starship

79410386

Date: 2025-02-04 01:36:37
Score: 2.5
Natty:
Report link

This is probably because the API was deprecated on November 27, 2024. However, I'm not entirely sure why that would cause a 403 error though.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Starship

79410385

Date: 2025-02-04 01:35:37
Score: 0.5
Natty:
Report link

RGB:

yellow + cyan -> gray

yellow + magenta -> red

magenta + cyan -> blue

Assuming Yellow + Cyan are in equal proportions, then Green will be.

Example: RGB1(255, 255, 0)+ RGB2(0, 200, 210) =? we can write it like this: RGB1(200+55, 200+55, 0) + RGB2(0, 200+0, 200+10)

Transformation (yellow + cyan = green 200) + RGB1(55, 55, 0) + RGB2(0,0,10)

Additive mixing: RGB( max(55,0), max(55,0), max(0,10) + green 200) = RGB(55, 255, 10)

RGB1(255, 255, 0) + RGB2(0, 200, 210) = RGB(55, 255, 10)

enter code here
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jan Tungli

79410383

Date: 2025-02-04 01:32:35
Score: 4.5
Natty:
Report link

This is because the API was deprecated on November 27, 2024.

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Starship

79410379

Date: 2025-02-04 01:28:34
Score: 3
Natty:
Report link

In my case, I forgot to include the function in index.ts, so it wasn’t deployed. Double-check that your function is correctly named and deployed

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Max Anders

79410359

Date: 2025-02-04 01:11:31
Score: 3
Natty:
Report link

Check this link from SAP Learning: https://learning.sap.com/learning-journeys/develop-advanced-extensions-with-sap-cloud-sdk/exercise-debugging-a-spring-boot-application-in-cloud-foundry_c2d2b14c-7652-42b8-8a88-531d5c42fdcc

Basically you must create or update your launch.json file with the following content:

{
"version": "0.2.0",
"configurations": [
    {
        "type": "java",
        "name": "Launch Application",
        "request": "launch",
        "mainClass": "com.example.demo.DemoApplication",
        "projectName": "demo"
    },
    {
        "type": "java",
        "name": "Attach Application",
        "request": "attach", 
        "hostName": "localhost",
        "port": 5005,
        "sourcePaths": [ "${workspaceFolder}" ] 
    } 
]

}

And then execute the follogin commands in terminal:

cf set-env my-spring-demo JBP_CONFIG_JAVA_OPTS "[java_opts: '-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000']"
cf enable-ssh my-spring-demo
cf restage my-spring-demo
cf ssh -N -T -L 5005:localhost:8000 my-spring-demo
Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): Check this link
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user24957535

79410357

Date: 2025-02-04 01:04:29
Score: 4
Natty:
Report link

For me "Factory reset" has done the trick

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: ViBi

79410349

Date: 2025-02-04 00:58:27
Score: 1
Natty:
Report link

PCR index and lengths, are stored in little-endian byte order from TCG specs: [TCG][1]

d_ng = struct.pack("<I", hash_length) + hash_alg + file_hash
n_ng = struct.pack("<I", file_name_length) + file_name_bytes
Expected: 65a3a4458c5368168e6625e1ce7bde75c888d450
Computed: 65a3a4458c5368168e6625e1ce7bde75c888d450


** Process exited - Return Code: 0 **
Press Enter to exit terminal
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Remy S

79410347

Date: 2025-02-04 00:56:26
Score: 1
Natty:
Report link

This error was resolved for me when I followed the following steps:

npm install react-native-safe-area-context

Then rebuild the app: for ios:

cd ios
pod install
cd ..
npx react-native run-ios

Restart Metro clearing the cache:

npx react-native start --reset-cache
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nimmikrishna

79410346

Date: 2025-02-04 00:50:25
Score: 0.5
Natty:
Report link

If you're on Ruby 3 or above:

This can be achieved with Hash#transform_keys.

Using the hash from the question:

a = {
  foo: 'bar',
  answer: '42'
}

How can I elegantly rename the key :foo to a new key :test?

=> {foo: "bar", answer: "42"}
> b = a.transform_keys(foo: :test, answer: :another_test)
=> {test: "bar", another_test: "42"}

If the hash entry for :foo does not exist, the hash should not be altered.

> b.transform_keys(foo: :something)
=> {test: "bar", another_test: "42"}

Notes:

Hash#transform_keys method was initially implemented in Ruby 2.5. By then, it was required to pass a block to it, which forced us to follow stricter rules when manipulating it. In Ruby 3, the method was updated to accept a hash. The purpose of this change was to provide a level of flexibility similar to the one requested in this question (such as dismissing it in case the key does not exist). More details can be found here: Feature #16274 - Transform hash keys by a hash.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Lidiane T.

79410335

Date: 2025-02-04 00:39:22
Score: 7.5 🚩
Natty: 6
Report link

I have the same problem but I am not trying to export it

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: EbunnyGAMING

79410334

Date: 2025-02-04 00:39:22
Score: 1
Natty:
Report link

create data base or set it to be suport the C

CREATE DATABASE US1 ENCODING 'UTF8' LC_COLLATE='C' LC_CTYPE='C' TEMPLATE=template0;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: oussama methnani

79410332

Date: 2025-02-04 00:35:21
Score: 4
Natty: 4
Report link

Here is a fix without downgrading .NET
https://github.com/dotnet/vscode-csharp/issues/6718#issuecomment-1846766013

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Pedro Contipelli

79410328

Date: 2025-02-04 00:33:19
Score: 7 🚩
Natty:
Report link

I have the same problem, I think its a pnpm or corepack update issue

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nidhi Sura

79410325

Date: 2025-02-04 00:31:18
Score: 3
Natty:
Report link

The best solution is for the Android developers to drop this remote control feature. What's the use of this feature for the vast majority of user? Have they not realized the pain of losing hard earned money to hooligans?

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: iduniq

79410317

Date: 2025-02-04 00:23:16
Score: 0.5
Natty:
Report link

Can you try to run printenv in your terminal? If you see the laravel envs among the OS envs, then it's better to unset the OS env.

Reasons:
  • Whitelisted phrase (-2): Can you try
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Tatachiblob

79410315

Date: 2025-02-04 00:22:16
Score: 2
Natty:
Report link

I had a similar issue in the past and I did a uninstall and reinstall and it went back to normal, it probably cut off in the middle of an update and just corrupted the files. I know it may be a pain to reset all of your settings but it is the safest way to not kill your projects. Try a reboot and check the installer but otherwise I recommend a reinstall. Good luck and remember to not just cut power with files open.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arthur Belanger

79410309

Date: 2025-02-04 00:12:14
Score: 2.5
Natty:
Report link

declare @today dateTime = getDate() declare @today_F varChar(11) = convert(varChar(11), @today, 101)

declare @this_year varChar(4) = datePart(yy, @today) declare @Jan_01 varChar(11) = '01/01/' + @this_year

declare @Julian int = dateDiff(dd, @Jan_01, @today_F) declare @Julian_Plus int = @Julian + 1000

declare @Julian_Plus_F varChar(4) set @Julian_Plus_F = convert( varChar(4), @Julian_Plus )

declare @Julian_F varChar(3) set @Julian_F = right(@Julian_Plus_F, 3)

Reasons:
  • No code block (0.5):
  • User mentioned (1): @today
  • User mentioned (0): @today_F
  • User mentioned (0): @today
  • User mentioned (0): @this_year
  • User mentioned (0): @today
  • User mentioned (0): @Jan_01
  • User mentioned (0): @this_year
  • User mentioned (0): @Julian
  • User mentioned (0): @Jan_01
  • User mentioned (0): @today_F
  • User mentioned (0): @Julian_Plus
  • User mentioned (0): @Julian
  • User mentioned (0): @Julian_Plus_F
  • User mentioned (0): @Julian_Plus_F
  • User mentioned (0): @Julian_Plus
  • User mentioned (0): @Julian_F
  • User mentioned (0): @Julian_F
  • Low reputation (1):
Posted by: Bill Brutzman

79410308

Date: 2025-02-04 00:11:14
Score: 3
Natty:
Report link

Good day. I have recently downloaded the desktop version of the IBKR software however, upon attempting the load the software, a notification comes up, informing me of the limited features which will be loaded.

When trying to access the Market Data Subscription function, no window opens up to access this feature. Hence, I am seeking a solution to resolve this issue.

Reasons:
  • Blacklisted phrase (1): Good day
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Chadwin

79410303

Date: 2025-02-04 00:07:13
Score: 1
Natty:
Report link

You can do it through a cloud function putting this:

  admin.auth().updateUser('useruid', {
  password: 'XXXXXXXXX'
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Luis Alberto Peña

79410302

Date: 2025-02-04 00:07:13
Score: 1
Natty:
Report link

An example of how to do this very simply.
You can check how it works in DartPad.

Dart calculator generated by PEG generator. https://pub.dev/packages/peg

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: mezoni

79410289

Date: 2025-02-03 23:58:11
Score: 2
Natty:
Report link

For high-resolution timing, use time.perf_counter().

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sergey A Kryukov

79410287

Date: 2025-02-03 23:55:11
Score: 2.5
Natty:
Report link

had the same error and omitting nullable kwarg from Column fixed it

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: noel-reeds

79410285

Date: 2025-02-03 23:54:10
Score: 4.5
Natty: 5
Report link

Finally, I found I needed to open firewall acl_in TCP for 993 for IMAP.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bob

79410279

Date: 2025-02-03 23:50:09
Score: 3
Natty:
Report link

I ended up creating a Terraform install repo and a blog to explain it. Indeed one of the big wins of Auto Mode is you no longer need to install AWS LBC:

https://community.aws/content/2sV2SNSoVeq23OvlyHN2eS6lJfa/amazon-eks-auto-mode-enabled-build-your-super-powered-cluster

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Seth E

79410256

Date: 2025-02-03 23:36:06
Score: 1
Natty:
Report link

I found a similar issue here

https://github.com/seleniumbase/SeleniumBase/issues/3059

where the author says that he gets the same result as when using a regular Chrome browser, so the Inconsistent value for Webdriver there isn't accurate.

I tested it on a regular Chrome browser and I also got the same Inconsistent value. So author is correct.

SeleniumBase with CDP passes the other sites below:

https://deviceandbrowserinfo.com/info_device

https://bot.sannysoft.com

https://demo.fingerprint.com/playground

https://bot-detector.rebrowser.net

https://pixelscan.net

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: sudoExclamationExclamation

79410252

Date: 2025-02-03 23:33:05
Score: 0.5
Natty:
Report link

OK, I ran mongod and from the error output it appeared that the culprit was /tmp/mongodb-27017.sock from the following error:

{"t":{"$date":"2025-02-03T23:13:06.391+00:00"},"s":"E",  "c":"NETWORK",  "id":23024,   "ctx":"initandlisten","msg":"Failed to unlink socket file","attr":{"path":"/tmp/mongodb-27017.sock","error":"Permission denied"}}

So I removed the socket file, uninstalled and reinstalled mongodb, and now mongosh connects as expected.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: paul h

79410251

Date: 2025-02-03 23:32:05
Score: 2.5
Natty:
Report link
#define ABS_INT32(x) (((x) ^ ((x) >> 31)) - ((x) >> 31))
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Walker Talker

79410246

Date: 2025-02-03 23:29:04
Score: 1
Natty:
Report link

What you are describing is a project that is dependent on two packages, A and B. Package B can stand alone and be used in projects where Package A is not also used.

But, Package A requires Package B. If you want nuget to manage the dependency, you would put that dependency in the .nuspec file of Pacakage A. If you add Package B as a dependency in this way, you can go to nuget package manager, add Package A, and the nuget manager will automatically go and add Package B if it is not already installed in the project.

Here is a resource for .nuspec syntax. The ranges and wildcards for dependencies may be helpful if this is what you were looking for: nuspec reference

If you are manually managing the dependency, i.e. manually adding Package B, then you don't need to do anything in the packages themselves. You just have to install both packages in the projects where they are needed. This will create your csproj or packages.config entries.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What you are
  • Low reputation (0.5):
Posted by: Kevin

79410239

Date: 2025-02-03 23:25:03
Score: 3
Natty:
Report link

In pg_hba.conf I had all the connection settings set to trust, when I changed them to require md5 login method and then set a windows environment variable for PGUSER = myuser I was able to connect.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dolesy

79410237

Date: 2025-02-03 23:21:02
Score: 1
Natty:
Report link

The issue was that I imported store from a separate file than from persistStorage in index.js.

I had this:

import store from './store'
import { persistor } from "./persistStorage"

I should have had this:

import { persistor, store } from "./persistStorage"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: mfusco