79346762

Date: 2025-01-10 19:01:42
Score: 1.5
Natty:
Report link

In my opinion the reason of the observable difference in performance may be the fact that methods/functions containting try/catch block will not be inlined, at least for sure not by MSVC compiler (see https://learn.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-4-c4714?view=msvc-170 )

Before the change void foo(int a) couldn't be inlined. After the change it may have been inlined.

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

79346758

Date: 2025-01-10 19:00:42
Score: 1.5
Natty:
Report link

don't use limit

// Trade Logic
if (longCondition)
    strategy.entry("Long", strategy.long)

test

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
Posted by: Gu5tavo71

79346755

Date: 2025-01-10 19:00:42
Score: 2.5
Natty:
Report link

Okay, it was a bug in Android. Updated to the latest one - Android Studio Ladybug Feature Drop | 2024.2.2 and it works fine for my popup previews.

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

79346754

Date: 2025-01-10 18:59:42
Score: 3.5
Natty:
Report link

Consider to use migration plugin Magic Export & Import with full support of Polylang.

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

79346742

Date: 2025-01-10 18:55:41
Score: 1
Natty:
Report link

I was getting this error on a unit test project. It was odd because this was the result of a refactor exercise, everything was working before

There were 2 things I did, and I can not say exactly which solved the problem, but I just spent a 1/2 day on this so I want to maybe save someone else time.

I introduced a subclass in a new project that was .NET Framework 4.8.1 Other projets depending on this new project had lower .Net versions. I brought them all up to 4.8.1 (I dont think that exercise caused or resolved the problem. )

I also had a unit test project to test the new class. Somehow (I assume I did it) the project reference to Microsoft.CSharp had been removed.

Chatgpt suggested ensuring this reference. I added a reference in the solution explorer.

That solved the problem for me.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
Posted by: greg

79346740

Date: 2025-01-10 18:54:41
Score: 0.5
Natty:
Report link

This code has solved my problem.

Android.Webkit.WebStorage.Instance.DeleteAllData();
Android.Webkit.CookieManager.Instance.RemoveAllCookies(null);
Android.Webkit.CookieManager.Instance.Flush();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Filipe Piletti Plucenio

79346738

Date: 2025-01-10 18:53:40
Score: 2.5
Natty:
Report link

I faced this error message in mac when the file I was reading was open. When I closed the file and ran the code again, the issue was resolved.

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

79346737

Date: 2025-01-10 18:53:40
Score: 4
Natty:
Report link

In case anyone having the same issue. I've found a fix from this Forum:

Basically you need to clear the code by using the WCH LinkUtility app and WCH LinkE. Make sure to set the WCH LinkE link mode to WCH-LinkRV then clear All Code Flash by Power Off. For those with the black Ch32V003 F4P7 board if your green LED is blinking it wont upload any code due to the led is connected to the upload pin enter image description here

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: Jeffrey Chua

79346724

Date: 2025-01-10 18:48:38
Score: 2.5
Natty:
Report link

You Wrote UIColor.whiteColor(), try switching it to UIColor.blackColor()

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

79346720

Date: 2025-01-10 18:46:38
Score: 0.5
Natty:
Report link

Looks like I fixed it by selecting Arduino IDE - Sketch - Optimize for debugging.

I checked it on 2 different nucleos stm32.

Unfortunately I can't see variable's value in registers but it's shown in variables section.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pasha4ur

79346711

Date: 2025-01-10 18:43:37
Score: 1
Natty:
Report link

for debug, plot the line 10% to upTrend

upTrendLine = direction < 0 ? supertrend : na
upTrend10 = upTrendLine * 1.1
plot(upTrend10)

Now create the alert

croosUpTrend10 = ta.crossunder(low, upTrend10)
plotshape(croosUpTrend10)
alertcondition(croosUpTrend10, "croosUpTrend10" )

test

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Gu5tavo71

79346709

Date: 2025-01-10 18:43:37
Score: 3.5
Natty:
Report link

alist = [] result = ["".join(alist[:i]) for i in range(1, len(alist)+1]

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Lucas

79346705

Date: 2025-01-10 18:39:36
Score: 4.5
Natty:
Report link

What about a log scale on Y ?

plt.yscale('log')

plot

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What
Posted by: rehaqds

79346685

Date: 2025-01-10 18:31:33
Score: 10 🚩
Natty: 5.5
Report link

I have the same issue. Any updates?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (0.5): Any updates
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: chantal boado

79346680

Date: 2025-01-10 18:29:33
Score: 2
Natty:
Report link

Try: xdotool key --clearmodifiers shift && xdotool type 'date;'

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

79346679

Date: 2025-01-10 18:27:32
Score: 2
Natty:
Report link

There are 2 options now, Places API and the Places API (New) check both.

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

79346672

Date: 2025-01-10 18:25:32
Score: 0.5
Natty:
Report link

Essa resposta salvou meu dia! 11

I fixed the problem. Bootstrap modals have a property tabindex="-1", which made the CKEDITOR plugins inputs to loose their focus. Just delete it!

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rafael Furtado

79346671

Date: 2025-01-10 18:24:31
Score: 0.5
Natty:
Report link

I've come across similar situations in the past, and I would usually either do one of these:

  1. Put the entire contents of the .npmrc file into a GitHub actions secret, then print it to a new .npmrc file in your action.
  2. Store the token and other info as a secret, then create a new .npmrc file and inject the secrets into the file.

If you were to go the second route, you would probably have something like this in your GitHub actions workflow:

# ...

jobs:
  publish-npm:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Publish
        run: |
          # These use the variables defined in step's env
          echo "registry=${NPM_REGISTRY}" > .npmrc
          echo "registry/:_authToken=${NPM_TOKEN}" >> .npmrc

          npm publish
        env:  # Secrets from GitHub are injected below
          NPM_REGISTRY: ${{ secrets.NPM_REGISTRY }} 
          NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

In your GitHub repository, define NPM_REGISTRY and NPM_TOKEN as secrets (docs) by going to Settings > Security > Actions > Secrets.

Resources

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ikehunter5

79346667

Date: 2025-01-10 18:23:31
Score: 1
Natty:
Report link

i appreciate those who tried to help , apparently through small debuging steps i noticed that the window.open was not being called and when changed to window.location with a small time delay the chat worked

window.location = "test2.php?units="+units+"&&price="+price+"&down="+down+"&&space="+space+"";

apologies if any part of the question was not clear and thank you

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Hossa The Coder

79346666

Date: 2025-01-10 18:23:31
Score: 3
Natty:
Report link

How we can compare below in ORACLE.

values '["b", "a"]' and '["a", "b"]' stored in VARCHAR datatype

'["b", "a"]' = '["a","b"]' ==> TRUE

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): How we can
  • Low reputation (1):
Posted by: Dave

79346663

Date: 2025-01-10 18:22:31
Score: 2
Natty:
Report link

Thank you everyone, all were relevant and helpful! The AddOnDepot's response is spot on. For my incredibly unsavvy code, I ended up using something like:

for (const [dataKey, peopleValues] of Object.entries(jsonParsed.data)) {
  Logger.log(`${dataKey}`);
  Logger.log(peopleValues.name);
  Logger.log(peopleValues.title);
  /* And was able to apply the same concept to access deeper nested values!
  for( const [deeperNestedKeys, deeperData] of Object.entries(peopleValues))
  {
      Logger.log(deeperData.otherValue);
  }
  */
}

My first tip off was actually from an old stackoverflow post that I didn't fully understand at first, so credit also to: https://stackoverflow.com/a/62735012/645379

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user645379

79346651

Date: 2025-01-10 18:16:30
Score: 2
Natty:
Report link

The solution to go offline before starting a download didn't work for me, but I've found a better one.

Enable the Auto-open DevTools for popups option in DevTools preferences. It makes Chrome open the DevTools window for a new window/tab of the download URL just before the Save dialog appears.

DevTools Preferences

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

79346645

Date: 2025-01-10 18:13:29
Score: 1
Natty:
Report link

File Permissions Issue:

1: In the Docker build context, the files you copy into the container retain their permissions unless explicitly changed.

2: If the configure file does not have execute (+x) permissions locally, it will not be executable in the container.

Updated Dockerfile:

FROM mcr.microsoft.com/dotnet/runtime:8.0 AS base

RUN apt-get update RUN apt-get install -y libmotif-dev build-essential

COPY . /usr/src/myapp

WORKDIR /usr/src/myapp/oracle-outside-in-content-access-8.5.7.0.0-linux-x86-64/sdk/samplecode/unix/

RUN chmod +x ./configure

RUN ls -l

RUN make

WORKDIR /app

RUN adduser -u 5678 --disabled-password --gecos "" appuser && chown -R

appuser /app

USER appuser

COPY . .

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

79346640

Date: 2025-01-10 18:11:29
Score: 3
Natty:
Report link

decode/swscale directly into the buffer

That would be so fantastic, but how? Like:

(AVCodecContext)  int (*get_buffer2)(struct AVCodecContext *s, AVFrame *frame, int flags);

?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: charlie

79346636

Date: 2025-01-10 18:10:28
Score: 3
Natty:
Report link

In my case i renamed my file from .yaml to .yml and it started working

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Oyinlade Demola

79346629

Date: 2025-01-10 18:08:28
Score: 3
Natty:
Report link

Github issue: https://github.com/psycopg/psycopg/issues/962

PR/resolution: https://github.com/psycopg/psycopg/pull/975

Thank you Daniele Varrazzo!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: codeech

79346623

Date: 2025-01-10 18:05:27
Score: 1
Natty:
Report link

my English is not that good,

With some code language (jython or SQL for example) in a step of a procedure I generate a value, for that value, is it possible to assign it to a value of the option of that step and that in a later step of a package ( a variable for example), Can I obtain the value generated in the previos step of the procedure? Or if you have any documentation on how it could be done in almost affirmative

With jython I managed to pass, but I encapsulated it with the <@ Test = "testvalue" @> and then assigned it to an ODI variable with <@=Test@> and used it.,

I don't want to encapsulate the following code Jython

# Name of the library you want to check
library_name = "smtplib" # Change this according to your need

# Output variable for the result
output_message = ""

try:
# We try to import the library
exec("import " + library_name)
output_message = "Library '" + library_name + "' exists in the environment."
except ImportError:
# If it doesn't exist, we catch the error
output_message = "Library '" + library_name + "' does NOT exist in the environment."

If I encapsulate it I don't get the result correctly because it's jython and I call a library of it

I don't know how to get output_message and then be able to use the value in some other step of the package.

I found ideas like

Assign the value to the ODI variable

odiRef.setVariable("LIBRARY_CHECK_RESULT", output_message)

But I can't get them to work, it shows errors that this way of getting the value is not enabled, it's not available for ODI12c

I don't have the right way to do it anyway

Reasons:
  • Blacklisted phrase (1): is it possible to
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Elmer Alavid

79346619

Date: 2025-01-10 18:03:26
Score: 1.5
Natty:
Report link

You have to add username and password on the rtsp_url

const std::string rtsp_url = "rtsp://<username>:<password>@192.168.2.100:5010/video.sdp";
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ítalo Lins

79346617

Date: 2025-01-10 18:03:26
Score: 0.5
Natty:
Report link

Having this same issue as well. It seems that the connections in Foundry are not connecting to blobs properly. I'm seeing the error DatastoreNotFound in the connections menu when trying to update existing connections to blob (where the flows exist). And when trying to create a new connection, nothing is even showing up under "Data". Think this is a Microsoft issue...

enter image description here

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Nema Sobhani

79346600

Date: 2025-01-10 17:53:23
Score: 5.5
Natty:
Report link

you can read this solution Android Studio Emulator Running but Not Visible (Out of View)

specially enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: bugaboo

79346588

Date: 2025-01-10 17:50:22
Score: 1
Natty:
Report link

I could happens when the pathname of the resource starts with a double slashes

like https://example.org//resource/to/get

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

79346572

Date: 2025-01-10 17:46:21
Score: 3.5
Natty:
Report link

The package is not very well documented unfortunately. You can find a lot of answers in the examples though. This shows how to set up an early stopping function:

https://github.com/robertfeldt/BlackBoxOptim.jl/blob/master/examples/early_stopping_in_callback.jl

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

79346569

Date: 2025-01-10 17:45:21
Score: 0.5
Natty:
Report link

If you're using Git Bash, use conda init bash.

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

79346568

Date: 2025-01-10 17:44:21
Score: 1
Natty:
Report link

This is what worked for me (using yarn)

yarn && export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && nvm use
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Larissa

79346560

Date: 2025-01-10 17:41:18
Score: 6 🚩
Natty: 4.5
Report link

I know this topic is very old but i am encoutering the same problem here.

I tried your solution and it works on a .doc file. But failed on an OLE that embedded an .xls file. I Can provide the referencer OLE file as example.

@Hardy, you said that it works for you, was it on excel ? Did you use Hardy code as this or did you had to make some adaptation ?

I would be interesting to speak with one of you if you are still there (such a specific subject...)

Kinds regards, Damien

Reasons:
  • Blacklisted phrase (1): regards
  • Contains signature (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Hardy
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Damien

79346559

Date: 2025-01-10 17:40:18
Score: 2.5
Natty:
Report link

You'll get this error if you're using an emulator. Try to use a physical device.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: aldobaie

79346556

Date: 2025-01-10 17:40:18
Score: 2
Natty:
Report link

What instance are you using? The hard limit is indeed 25 users, but you can see in this doc that "The default maximum number of members is equal to the memory of the instance for that environment divided by 60 MB, with results rounded down." If you are using a nano instance, it only has 0.5 GiB and, therefore, a limit of 8 users.

To increase the maximum number of members, you can upgrade the cloud9's memory by changing it's instance type. You can follow these steps to achieve that:

  1. Stop the instance on the EC2 console.
  2. Change it's type to one with more than 0.5 GiB of memory.

*If you choose one with 1 GiB you will have up to 17 members.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What in
  • Low reputation (1):
Posted by: Daniel Chiyo

79346545

Date: 2025-01-10 17:36:17
Score: 0.5
Natty:
Report link

To generate thumbnail from rtmp video feed use ffmpeg tool. I have used this on Android app, NodeJS server and it never disappoints. And not just thumbnail. And it work like a charm.

ffmpeg -i <rtmp_feed_url> -frames:v 1 <destination_filepath>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: sole007

79346544

Date: 2025-01-10 17:36:17
Score: 3
Natty:
Report link

I did a little digging and you should try Reinstalling Python or there might be a Path problem.

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

79346542

Date: 2025-01-10 17:36:17
Score: 1.5
Natty:
Report link

You need to pass a raw json string to the service w/ the byte[] in the form of a int32 array. For example if your service takes an object w/ a parameter FileBytes:Byte[] then you'd provide the json string {"FileBytes": [5,12,13,200,...,10]}. This should be the format that a restful service needs to properly convert to the byte[] of the application

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

79346537

Date: 2025-01-10 17:35:17
Score: 3.5
Natty:
Report link

same issue here i dont know from where the padding is comming , some screens have the issues somes works perfectly

Reasons:
  • RegEx Blacklisted phrase (1): same issue
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Heithem Kacem

79346529

Date: 2025-01-10 17:31:15
Score: 0.5
Natty:
Report link

I am able to get the current row by doing this

for index, row in enumerate(sheet.iter_rows(min_row=2, max_row=2613, values_only=False)):
    print(row[0].row)

Note that values_only=False for this to work

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Deepak Shrestha

79346528

Date: 2025-01-10 17:31:15
Score: 1
Natty:
Report link

To include the missing segments in the fitted ellipse, try these approaches:

  1. Weighted Fitting: Assign higher weights to the points in the missing segments using scipy.optimize.least_squares for weighted ellipse fitting.

  2. Add Missing Points: Manually add synthetic points along the missing segments and refit the ellipse using cv2.fitEllipse.

  3. Custom Optimization: Use scipy.optimize.minimize to define a custom loss function that prioritizes including the missing parts in the fit.

These methods give more control than RANSAC or cv2.fitEllipse.

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

79346522

Date: 2025-01-10 17:28:15
Score: 0.5
Natty:
Report link

Sorry for the necro-post but I've gotten the same error today in a different context, so for posterity:

https://github.com/r-lib/progress/issues/137

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

79346520

Date: 2025-01-10 17:28:15
Score: 2
Natty:
Report link

Without logs, my best guess would be that you're running into some of the restrictions on background activity launching.

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

79346513

Date: 2025-01-10 17:26:14
Score: 2
Natty:
Report link

It sounds like you're asking about modifying Banno's login process itself. There are product configurations available for such a thing (see your Jack Henry rep for details on the options). However, the Banno Digital Toolkit does not offer APIs to accomplish what you're looking to accomplish.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jaime Lopez Jr.

79346510

Date: 2025-01-10 17:25:14
Score: 1
Natty:
Report link

You can look in the Arm Software Ecosystem Dashboard to see if the Python package is supported. It does not list all Python packages, but contains context for bigger ones such as PyTorch, Numpy, PyInstaller, etc.

The dashboard contains a list of what packages in general work on Arm Linux servers (aarch64), beyond Python packages, if you find that useful.

The contents are community-driven, so if you don't see a package listed that does support Arm, there is an option to add it via a GitHub PR in the main repository as well.

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

79346497

Date: 2025-01-10 17:22:13
Score: 3
Natty:
Report link

Ensure your command is not missing the parameter "-KeyEncryptionKeyVaultId $keyVaultResourceId$"

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

79346494

Date: 2025-01-10 17:20:12
Score: 4.5
Natty: 4.5
Report link

Good morning colleagues!

There is a control called MS ORACLE Source and MS ORACLE Destination.

I leave you the download link:

https://www.microsoft.com/en-us/download/details.aspx?id=105811

For them to implement it in their projects, it is faster.

Greetings from Monterrey Mexico.

Jorge Leal.

Reasons:
  • Blacklisted phrase (1): Good morning
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jorge Leal

79346490

Date: 2025-01-10 17:18:11
Score: 2
Natty:
Report link

To view the script in Crystal report without logging in the DB

  1. In Crystal Report for to Database Expert
  2. right click the command in the database under Selected Tables (right side) and select view/edit command
  3. And will open the OLE DB or the datasource information.
  4. Make the User ID and Password blank
  5. Make the Integrated Security value as checked.
  6. Click Finished
Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29145046

79346488

Date: 2025-01-10 17:17:10
Score: 2
Natty:
Report link

I believe it is best if you ask this question at the OpenDaylight Discuss mailing list. You may find it here:

https://lf-opendaylight.atlassian.net/wiki/spaces/ODL/overview

Alternatively, you may try to send an email to: [email protected]

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

79346475

Date: 2025-01-10 17:13:09
Score: 2
Natty:
Report link

Check if Ctrl+Shift+Space works. If yes it probably means your operating system or some other app use Ctrl+Space shortcut. To fix it find who use it and change it. In my case it was PowerToys on Windows.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tomek Michałowski

79346468

Date: 2025-01-10 17:10:08
Score: 2
Natty:
Report link

Unfortunately, for my testing, I need to change the default host to our azure front door host. When I do that, I get the cached version of my policy for a while. This is extremely annoying. While not a solution to the problem, I add a 'version' claim to my policy so I can tell when the new one is finally updated.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jerry Goldin

79346463

Date: 2025-01-10 17:08:08
Score: 0.5
Natty:
Report link

After research and trial and error, I discovered that I simply needed to remove Modifier.focusable() from the Box modifier.

Updated code... SettingsScreen.kt

@Composable
fun SettingsScreen(onBackClick: () -> Unit) {
    val focusRequester = remember { FocusRequester() }
    BackHandler {
        Log.e("TAG", "SettingsScreen: BackHandler Called Close")
        onBackClick()
    }
    Box(
        modifier = Modifier
            .fillMaxSize()
            .background(color = SettingsBG)
            .focusRequester(focusRequester = focusRequester)
    ) {
        Column {
            MPButton(text = "Text 1") {
                Log.e("TAG", "SettingsScreen: text 1 click")
            }
            MPButton(text = "Text 2") {
                Log.e("TAG", "SettingsScreen: text 2 click")
            }
        }
    }

    LaunchedEffect(Unit) {
        focusRequester.requestFocus()
    }
}

Let me know if you need any help with Jetpack Compose. We need to build a large community for Jetpack Compose.

Reasons:
  • Blacklisted phrase (1): any help
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Vishal Bhimporwala

79346456

Date: 2025-01-10 17:05:06
Score: 4.5
Natty:
Report link

Can you check this out? Someone asked a related question in Google AI Developer Forum

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: gcamadi

79346454

Date: 2025-01-10 17:05:06
Score: 1
Natty:
Report link

This is an SEO problem because your entire website leads to a page that doesn't exist. I lost a lot of rankings because of this error

I used the OMGF plugin to fix this problem

<link rel='dns-prefetch' href='//fonts.googleapis.com' />

You can check at my site: https://tuannguyenmobile.com

Plugin not installed

Plugin installed

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dũng Tran

79346446

Date: 2025-01-10 17:04:06
Score: 1.5
Natty:
Report link

Here's what I came up with, it seems to work:

schema.xml

<schema name="example-data-driven-schema" version="1.6">
  <fields>
        <field name="_version_" type="long" indexed="true" stored="true" required="true"/> 
        <field name="_root_" type="string" indexed="true" />
        <field name="id" type="string" indexed="true" stored="true" required="true"/>
        <field name="title" type="text_general" indexed="true" stored="true"/>
        <field name="author" type="text_general" indexed="true" stored="true"/>
        <field name="comment" type="text_general" indexed="true" stored="true"/>
        <field name="commenter" type="text_general" indexed="true" stored="true"/>
        <field name="contributor_name" type="text_general" indexed="true" stored="true"/>
        <field name="contributor_role" type="text_general" indexed="true" stored="true"/>
        <field name="_nest_path_" type="_nest_path_" />
        <field name="_nest_parent_" type="string"/>
        <dynamicField name="*" type="ignored"/>
  </fields>  
  <uniqueKey>id</uniqueKey>
  <fieldType name="ignored" class="solr.StrField" indexed="false" stored="false" multiValued="true"/>
  <fieldType name="_nest_path_" class="solr.NestPathField" />
  <fieldType name="booleans" class="solr.BoolField" sortMissingLast="true" multiValued="true"/>
  <fieldType name="long" class="solr.TrieLongField" positionIncrementGap="0" docValues="true" precisionStep="0"/>
  <fieldType name="string" class="solr.StrField" sortMissingLast="true" docValues="true"/>
  <fieldType name="tdates" class="solr.TrieDateField" positionIncrementGap="0" docValues="true" multiValued="true" precisionStep="6"/>
  <fieldType name="tdoubles" class="solr.TrieDoubleField" positionIncrementGap="0" docValues="true" multiValued="true" precisionStep="8"/>
  <fieldType name="text_general" class="solr.TextField" positionIncrementGap="100"/>
  <fieldType name="tlongs" class="solr.TrieLongField" positionIncrementGap="0" docValues="true" multiValued="true" precisionStep="8"/>
</schema>

Insert these documents:

[
  {
    "id": "post101",
    "title": "How to Optimize Solr Queries",
    "author": "Mike Johnson",
    "comments": [
      {
        "id": "comment101",
        "comment": "This article helped me a lot!",
        "commenter": "Sophie"
      }],
      "contributors": [{
        "id": "contributor101",
        "contributor_name": "Karen",
        "contributor_role": "Reviewer"
      }
    ]
  },
  {
    "id": "post102",
    "title": "Advanced Solr Schema Design",
    "author": "Sarah Brown",
    "comments": [
      {
        "id": "comment102",
        "comment": "Great schema design tips!",
        "commenter": "James"
      }
    ]
  }
]

The select that I did is correct in returning everything "flattened" - the problem was that I needed to add fl=*,[child] to the request. After doing that, my results are:

.
.
.
docs": [

          {
                "id": "comment101",
                "comment": "This article helped me a lot!",
                "commenter": "Sophie",
                "_nest_parent_": "post101",
                "_root_": "post101",
                "_version_": 1820881500429615000
          },
          {
                "id": "contributor101",
                "contributor_name": "Karen",
                "contributor_role": "Reviewer",
                "_nest_parent_": "post101",
                "_root_": "post101",
                "_version_": 1820881500429615000
          },
          {
                "id": "post101",
                "title": "How to Optimize Solr Queries",
                "author": "Mike Johnson",
                "_version_": 1820881500429615000,
                "_root_": "post101",
                "comments": [
                      {
                            "id": "comment101",
                            "comment": "This article helped me a lot!",
                            "commenter": "Sophie",
                            "_nest_parent_": "post101",
                            "_root_": "post101",
                            "_version_": 1820881500429615000
                      }
                ],
                "contributors": [
                      {
                            "id": "contributor101",
                            "contributor_name": "Karen",
                            "contributor_role": "Reviewer",
                            "_nest_parent_": "post101",
                            "_root_": "post101",
                            "_version_": 1820881500429615000
                      }
                ]
          },
          {
                "id": "comment102",
                "comment": "Great schema design tips!",
                "commenter": "James",
                "_nest_parent_": "post102",
                "_root_": "post102",
                "_version_": 1820881500430663700
          },
          {
                "id": "post102",
                "title": "Advanced Solr Schema Design",
                "author": "Sarah Brown",
                "_version_": 1820881500430663700,
                "_root_": "post102",
                "comments": [
                      {
                            "id": "comment102",
                            "comment": "Great schema design tips!",
                            "commenter": "James",
                            "_nest_parent_": "post102",
                            "_root_": "post102",
                            "_version_": 1820881500430663700
                      }
                ]
          }

    ]
Reasons:
  • Blacklisted phrase (1): This article
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): helped me a lot
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Mark Sholund

79346445

Date: 2025-01-10 17:04:06
Score: 2
Natty:
Report link

For me is working to wrap table with

 <div class="card table-responsive border-0">
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pavel Suk

79346440

Date: 2025-01-10 17:01:05
Score: 1
Natty:
Report link

To handle the value of carList outside of the UI without making additional backend calls, you should consider using a mechanism that can store and update the value as it changes. Here's a summary of the solutions:

Use a Stream if you expect continuous updates (ideal for data that changes over time). This allows you to listen to updates without repeatedly calling the backend.

Use a ValueNotifier or cache the value if you want to store the latest value and access it without waiting for a Future to complete each time.

State Management Libraries like Provider or Riverpod are ideal for managing complex or shared state in larger apps.

These solutions allow you to access the latest carList value without triggering extra backend calls, while ensuring your application logic remains clean and efficient.

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

79346438

Date: 2025-01-10 17:00:05
Score: 3.5
Natty:
Report link

Other way: SpringBootTest + application.properties with above parameters.

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

79346430

Date: 2025-01-10 16:58:04
Score: 0.5
Natty:
Report link

Disable Next.js Image Optimization

If decoding the URL doesn't fix the issue, the problem may be with how Next.js's image optimization pipeline interacts with Firebase-hosted images. To debug, disable image optimization temporarily by using the unoptimized attribute:

<Image
  fill
  src={data.images[0].image}
  alt={data.name}
  className="object-cover"
  unoptimized
/>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Nuwan Chamikara

79346416

Date: 2025-01-10 16:54:03
Score: 2
Natty:
Report link

ValueError: too many values to unpack (expected 4) Means that you need more variables to unpack env.step(): 1_new_obs, 2_reward, 3_termineted, 4_truncated, 5_info = env.step(random_action)

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

79346408

Date: 2025-01-10 16:51:01
Score: 6 🚩
Natty: 4
Report link

I have the same problem, I currently have my ETL in VS2019 and SQL2022. When I run it, I get an error in the Script Task.

I followed the advice to change the "Deployment Target Version" to 2019, but my connections to the files, both source and destination, give me the connection error. I have tried to make the connections again, but without success.

Someone who has had the same thing happen to them and has found the solution.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (1): I get an error
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: Juan Alberto Vílchez

79346389

Date: 2025-01-10 16:46:00
Score: 1.5
Natty:
Report link

Given all these djverse opinions and the need to improve the present SWIFT system used by the global banking system for their geographically divers clients the it must in my view be possible to do the same every individual who buys a Bitcoin?

The proviso is that after miners have calculated that number it can only be used as a public address and the private address is uniquely assigned to the original buyer

From then on a new ledger of ownership changes needs to be added that only stores indirect pointers and yet is searchable by the 2nd ledger servers.

Anyway that's all my personal thoughts are leading me to question

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

79346381

Date: 2025-01-10 16:43:59
Score: 3.5
Natty:
Report link

Native implementation using transformation matrices is complex, and using shaders in Impeller was unfeasible for me, I decided to go for this plugin: https://pub.dev/packages/bookfx_mz

Reasons:
  • Blacklisted phrase (1): this plugin
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ahmad M.

79346373

Date: 2025-01-10 16:41:58
Score: 1
Natty:
Report link

You can set padding: EdgeInsets.zero in you ListView.builder

ListView.builder(
   padding: EdgeInsets.zero,
   ...
)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Michał Klepaczko

79346369

Date: 2025-01-10 16:40:58
Score: 3.5
Natty:
Report link

Delete Delivered Data folder (Xcode)

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ahmed Elmwafy

79346365

Date: 2025-01-10 16:37:57
Score: 1.5
Natty:
Report link

To solve this issue, simply wrap the sourceCompatibility with java as follow and update all deprecated plugins to latest versions:

java {
   sourceCompatibility = '21'
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Taoufik Laaroussi

79346355

Date: 2025-01-10 16:33:56
Score: 0.5
Natty:
Report link

The error you show indicates S3 is requiring an authorization token to serve your file. This is exactly as it should be. If you allow documents to be "public-read" in S3, then there is backdoor access that renders the document privacy options useless.

Do you want all documents to download? or do you want some, such as PDFs, to display in the browser? If you want all to download, I would start by setting WAGTAILDOCS_INLINE_CONTENT_TYPES to an empty list. That may only work for references within rich text. If so, you may need to set the WAGTAILDOCS_SERVE_METHOD to "serve" and override the document serve method to set the content disposition header to attachment.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: cnk

79346352

Date: 2025-01-10 16:31:56
Score: 1
Natty:
Report link

As per my experience, Cursor IDE sorts imports automatically because of built-in formatting rules, likely powered by tools like Prettier or ESLint. It might also be reading configurations like .prettierrc or .eslintrc from your project. To disable this, check your project files for import-sorting rules and adjust them. While Cursor doesn’t seem to have a direct setting to turn this off, relying on WebStorm for better control over import sorting might be a good alternative.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Md Mohosin Ali Shah

79346336

Date: 2025-01-10 16:27:55
Score: 2
Natty:
Report link

Whatever order they're in within the Power Query Editor is the order they're shown in the Queries & Connections list. If you want to reorder them, open the Power Query Editor & just drag & drop the queries in the list on the left side of the window. When you close the window, Excel will update the order displayed in Queries & Connections.

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

79346334

Date: 2025-01-10 16:26:54
Score: 1
Natty:
Report link

You referenced EntityFramework instead of EntityFrameworkCore.

You need this package: https://www.nuget.org/packages/Microsoft.EntityFrameworkCore

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

79346328

Date: 2025-01-10 16:24:53
Score: 1.5
Natty:
Report link

To extract the typename C from TMethod (where TMethod is convertible to a type B), you can use C++11's template metaprogramming features to inspect and extract the type C

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

79346319

Date: 2025-01-10 16:21:53
Score: 2.5
Natty:
Report link

https://github.com/coreybutler/nvm-windows/issues/1209

Bug in NVM-Windows - planned to be fixed in next version

Potentially useful workaround is to go back to a previous NVM version like v1.1.12

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

79346310

Date: 2025-01-10 16:19:51
Score: 12 🚩
Natty:
Report link

did you resolved the issue,Please let us know. Iam also facing same issue.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let us know
  • RegEx Blacklisted phrase (3): did you resolved the
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): also facing same issue
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: s G

79346303

Date: 2025-01-10 16:14:49
Score: 1.5
Natty:
Report link

We faced the same problem. Afters hours and hours (days in fact) of research, we tried upgrade undertow lib.

We are under wildfly 24 (jdk 1.8.0_192), which uses undertow-core-2.2.8.Final. We solved the problem after upgrading it to undertow-core-2.2.37.Final ! (only on the front side).

Hope this could help...

Mickael.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mickaël Merlet

79346299

Date: 2025-01-10 16:13:49
Score: 1
Natty:
Report link

I see your code is from this notebook. I tried it and it's working for me. The issue is most likely not your API key, but this ConnectionClosedError: received 1011 (internal error) - RESOURCE_EXHAUSTED error could mean that the maximum allowed limit for concurrent requests were reached for that period of time, causing the internal error. Typically, trying at another time should resolve the issue.

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

79346297

Date: 2025-01-10 16:13:47
Score: 6 🚩
Natty:
Report link

Я обычно делаю оверлей с помощью pygame. Через winapi можно задать цветовой ключ, который будет как прозрачный. Далее делаем так, чтобы клики проходили сквозь окно, убираем рамку. Вуаля, у нас есть абсолютно прозрачное окно, которое можно накладывать поверх других окон и рисовать всё что вздумается.enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: Секрет Секрет

79346291

Date: 2025-01-10 16:11:46
Score: 0.5
Natty:
Report link

To address your confusion, let's clarify the behavior of app links and custom schemes in Android, particularly for Android 12+:

Custom Schemes (somecustomscheme://)

Yes, you can still use somecustomscheme://... to open your app directly, provided no other app has declared the same scheme in their intent filters. This behavior is consistent across all Android versions, including Android 12+.

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

79346269

Date: 2025-01-10 16:03:44
Score: 3.5
Natty:
Report link

Apparently this behavior occurs when piping gdb to a file with tee. I had not noticed it initially because I was calling gdb from a script, obfuscating the pipe to tee. Thanks to @Andrew and @Barmar for helping me sort this out.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Andrew
  • User mentioned (0): @Barmar
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John Demetros

79346262

Date: 2025-01-10 16:01:43
Score: 1.5
Natty:
Report link

I encountered the same "issue" (especially during an upgrade from Camel 2 to Camel 4.4). After analysis, it turns out that the observed behavior is related to the implementation of Camel's HealthCheck (https://camel.apache.org/manual/health-check.html). A health check exists for routes consuming via SFTP. I couldn't determine exactly how this health check is performed, but I concluded that if a connection is established, the health check will be OK, and there will no longer be any warnings in the console. The status will remain DOWN or in warning as long as no explicit connection is made.

Therefore, I added the 'initialDelay' option to force polling from the first second of the route's creation and then continue polling at a specific frequency (cron or fixed delay). This resolved the health check issue, and my app is UP right from startup.

https://camel.apache.org/components/4.8.x/sftp-component.html

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

79346252

Date: 2025-01-10 15:56:42
Score: 0.5
Natty:
Report link

Policies-related permissions can be set at the branch level as well:

Branch options

Editing the permissions:

Branch security - permissions

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

79346250

Date: 2025-01-10 15:56:41
Score: 5.5
Natty:
Report link

Can you help us to understand the resource fingerprint of your pine code? As the same number of cycles are used locally and remotely, the natural place to look is how large is the resource pool when executing remotely vs locally on a resource where your code has a high dependency.

enter image description here

Reasons:
  • RegEx Blacklisted phrase (3): Can you help
  • RegEx Blacklisted phrase (1): help us
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you help
  • High reputation (-1):
Posted by: James Pulley

79346249

Date: 2025-01-10 15:56:41
Score: 1.5
Natty:
Report link

Honestly I think you wont be able to do it with zip because you are searching for another behaviour. To use syntactic sugar and make it work with zip will just void your debugging experience.

But if you would drag me by the knee:

zip([val for val in l1 for _ in range(len(l2))], [val for _ in l1 for val in l2])

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

79346242

Date: 2025-01-10 15:53:40
Score: 3.5
Natty:
Report link

Seeing the same problem trying to install 14.17.0 Couple things I've noticed:

-I just got a new laptop w/ latest windows 11, this install worked fine on my old laptop like two weeks ago

-installing newer and older versions seems to work fine

-that zip does get downloaded to the nvm-install-XXXXXX folder, but according to the error message its looking for it in the nvm-npm-XXXXXX folder

If there was a way to manually copy that zip after its download to nvm-install but before its used in nvm-npm this would probably work (but dunno how to go about timing that properly)

Additionally, running as both Admin and Non-admin user produces same result

Obvious workaround I used was to just install that node version manually, but super annoying when you've come to rely on NVM

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): Seeing the same problem
  • Low reputation (1):
Posted by: Joe Norton

79346241

Date: 2025-01-10 15:52:40
Score: 0.5
Natty:
Report link

This should work

result.Should().BeAssignableTo<NotFoundResult>();
Reasons:
  • Whitelisted phrase (-2): This should work
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: melvik

79346240

Date: 2025-01-10 15:52:40
Score: 3
Natty:
Report link

If this behavior has not been updated for Ubuntu, those browsers rely on their own store and not on the OS's one as mentionned here https://thomas-leister.de/en/how-to-import-ca-root-certificate/

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

79346239

Date: 2025-01-10 15:52:40
Score: 2.5
Natty:
Report link

Ok, I have done some progress:

@1: Still not clarified. I will open another request with my code.

@2: I accepted that there is no way to select a locale that has a leading zero so I have to work on every locale as soon I try to add a new language.

@3: For this problem I advise the solution of Bruno Cerecetto in the request day incorrect in angular material datepicker. That worked for me.

Best regards

Parascus

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Whitelisted phrase (-1): worked for me
  • Contains signature (1):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: parascus

79346238

Date: 2025-01-10 15:52:40
Score: 1
Natty:
Report link

This is crazy, but if I replace max() by min(), it works… o_O

select
    col1,
    col2,
    col3,
    max(col4),
    max(col5),
    max(col6),
from 
    foo
group by 
    col1, col2, col3
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: breversa

79346237

Date: 2025-01-10 15:51:40
Score: 2
Natty:
Report link

My only guess is that if the column you are applying the number filter to does not have cellDataType set, then AG Grid does not know the type of data in that column -- cellDataType=false in your defaultColDef stops AG Grid from inferring the data types in all columns. I think AG Grid may default the filter type to text if it doesn't know the data type of the column.

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

79346230

Date: 2025-01-10 15:47:39
Score: 3
Natty:
Report link

The issue was that the AWS IAM policy didn't have the "kms:Decrypt" permission for the KMS Encryption key associated with the S3 bucket

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

79346229

Date: 2025-01-10 15:47:39
Score: 1.5
Natty:
Report link

I was facing similar issue, the scenario was almost similar, I created some records in database before updating the Prisma Schema, and in another branch I updated the Prisma schema for a model to have a different shape, so now when I try to run findMany() command it get the same error, I manually added filtered the records for missing fields and updated as per latest schema and it's working now

What's Happening:

When you change your Prisma schema. For instance, if you made the updatedAt field non nullable, but some records have null or missing values for this field, Prisma will throw an error when trying to process these records.

How to Fix It:

  1. Backup Your Database: Before making any changes, ensure you have a backup of your data.

  2. Identify Problematic Records: Use a MongoDB compass to find records missing the required fields. To find records with a null updatedAt field in the carts collection:

   db.carts.find({ updatedAt: null });
  1. Update These Records: Add a valid value to the problematic field. You can set updatedAt to the current datetime:
   db.carts.updateMany(
     { updatedAt: null },
     { $set: { updatedAt: new Date() } }
   );

Repeat this process for other collections if necessary.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): get the same error
  • Low reputation (0.5):
Posted by: Taimoor

79346218

Date: 2025-01-10 15:43:37
Score: 1
Natty:
Report link

UPDATE

comma() is now superseded by label_number().

The syntax is a bit different. There is no x argument as before. The label_ creates a function then the after_stat is feeded to it.

Using the exemple by @stefan it would be:

library(ggplot2)

ggplot(mpg, aes(x = class)) +
geom_bar(fill = '#00798c')  +
geom_text(stat = "count", 
          aes(label = scales::label_number(scale = 1000, big.mark = ",")(after_stat(count))), 
          position = position_dodge(width = 0.8), 
          vjust = -.3, fontface = "bold")
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @stefan
  • Low reputation (1):
Posted by: Marc-Antoine L

79346213

Date: 2025-01-10 15:41:37
Score: 2
Natty:
Report link
`pip install setuptools` I found this helpful in addition to face_recognition and face_recognition_models
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yasin Walum

79346209

Date: 2025-01-10 15:41:36
Score: 8.5 🚩
Natty: 6
Report link

Thank you Rajan Kashiyani. I'm interested in a solution for the problem where Parent1 is child of Parent2 or in other words, drag and drop in a nested situation. Does someone have an idea for that?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): someone have an idea
  • RegEx Blacklisted phrase (3): Does someone have an idea
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Lenche Vladimirova

79346206

Date: 2025-01-10 15:40:36
Score: 3
Natty:
Report link

yeah i also face the same problem, cookies not store in local storage, i work with nuxt and nestjs. solve by send domain of frontend in cookies

 .cookie('token', token,{
    domain:"web.frontend.cloud",
    sameSite: 'none',
    secure:true,
    httpOnly: false,
  })

after add domain:"web.fronend.cloud", the cookies finally stored in localstorage/cookies

for more info how domain accepted read here https://datatracker.ietf.org/doc/html/rfc6265#section-5.1.3

Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): i also face the same problem
  • Low reputation (1):
Posted by: Alfri Ansyah

79346200

Date: 2025-01-10 15:38:35
Score: 2.5
Natty:
Report link

Closed because the problem was not the code but a wrong display/auto complete list in the IDE.

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

79346196

Date: 2025-01-10 15:37:35
Score: 3
Natty:
Report link

https://github.com/expo/expo/issues/18038#issuecomment-1734833421

try this also refere t3-oss monorepo with react native apps it's a huge win

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ofcljaved

79346192

Date: 2025-01-10 15:36:34
Score: 4.5
Natty: 5
Report link

با سلام من یارانه چه موقع می گیرم سيد هادی رضویان هستم خادم مسجد ۱۴معصوم(ع)مشهد ماهی ۵۰۰هزارتومان مسجد به من حقوق می دهد کم است لطفا کمک کنید مسئولین مشهد هستم ۰۹۱۵۵۵۸۱۵۳۴تلفن همراه منه برای سلامتی امام زمان صلوات

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Hadi Razavian

79346190

Date: 2025-01-10 15:35:33
Score: 4
Natty:
Report link

Boa tarde, tente o seguinte:

$DIR_EXECUTABLE/hdbsql -U "HANAUSER" -x "EXPORT "NOMEDABASEDEDADOS"."*" AS BINARY INTO '/path/' WITH REPLACE THREADS 10;"

Reasons:
  • Blacklisted phrase (1): Boa tarde
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29143661