79418400

Date: 2025-02-06 15:05:52
Score: 1.5
Natty:
Report link

In Switch case as the name suggests, you have to implement all the cases and separate each one with break statement, so to print "no 1" you have to have a case for it. This is the programming task that is implemented in optimization way, for example every line after "return". At the end the compiler has to compile everything, maybe we have "go to" statement :)

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

79418396

Date: 2025-02-06 15:02:52
Score: 1
Natty:
Report link

The current version of Elasticsearch (8.17) does not offer a solution for this complication. A workaround is to perform a msearch and handle it on the server side.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Lakshitha

79418392

Date: 2025-02-06 15:02:51
Score: 4.5
Natty: 5
Report link

There Is TableView component here: https://github.com/w-ahmad/WinUI.TableView

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

79418384

Date: 2025-02-06 14:59:50
Score: 0.5
Natty:
Report link

I used these as steps in replicating your deployment:

  1. Set up the Cloud Storage FUSE CSI driver for GKE: starts with Workload Identity Federation for GKE so that you can set fine grained permissions on how your GKE Pods can access data stored in Cloud Storage.

  2. Mount Cloud Storage buckets as persistent volumes: I use this for my reference in proper PersistentVolume and PersistentVolumeClaim which gives correct access modes to your volume mounts.

  3. Use your deployment YAML configuration without the added MySQL flags for GCSFuse compatibility and use namespace from step1 as spec.serviceAccountName.

  4. Deploying these YAML configurations gives us running status for deployment:

image

For the answers to your questions:

  1. It's due to spec.accessModes of your PVC and PV it should have matched field as ReadWriteMany to have proper attributes.

  2. You can force GCSFuse to mount in GKE using the first step.

  3. Don't skip the first step to grant IAM roles to the Kubernetes ServiceAccount.

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

79418361

Date: 2025-02-06 14:52:49
Score: 1.5
Natty:
Report link

I tried all the above to set up Whisper.cpp with CUDA on Win10, including adding specific locations to the compiler, copying those four files, and downgrading Cmake.

What worked in the end was simply reinstalling the CUDA Toolkit. Seems like a very old annoying issue is still here. I wonder 1. what exactly the CUDA Toolkit/VSCode installer does wrong, 2. why Cmake does not throw a better error msg? Spent one day on this, super annoying thing! Grrr!

CUDA v12.8.61, Windows 10.0.19045, MSVC 19.42.34436.0, Cmake 3.31.5

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

79418351

Date: 2025-02-06 14:48:46
Score: 7.5 🚩
Natty:
Report link

did you get this to workllllll

Reasons:
  • RegEx Blacklisted phrase (3): did you get this to
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Riley Peterson

79418346

Date: 2025-02-06 14:46:45
Score: 2.5
Natty:
Report link

We looked a little deeper after scaffolding another test database, which worked. It turns out that all of the foreign keys in the target database had disappeared. Our Dotnet6 application still worked without these as they were already in the dbContext model.

After re-defining all of the keys everything works as it should.

Thanks to Gert Arnold for suggesting to look at the database schema as we were unaware of the missing keys.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mike

79418324

Date: 2025-02-06 14:38:43
Score: 2
Natty:
Report link

@Karan Shishoo thank you for the link,there are a lot of answers some incompatible with Avalonia, but looks like I figured most of it out:

<NumericUpDown KeyDown="HandleNonNumericInput">

And in the code behind

private void HandleNonNumericInput(object? sender, KeyEventArgs? e)
{
    string? letter = e.KeySymbol;
    bool rejectKey;
    if (string.IsNullOrEmpty(letter))
    {
        rejectKey = true;
    }
    else if (e.Key == Key.Enter || e.Key == Key.Return || e.Key == Key.Escape)
    {
        TextBox? tb = e.Source as TextBox;
        TopLevel? tl = TopLevel.GetTopLevel(this);
        tl!.Focus();
        rejectKey = true;
    }
    else
    {
        rejectKey = !char.IsNumber(letter[0]);
    }
    Debug.WriteLine($"Key: {e.Key}, Symbol: <{letter}>, rejected: {rejectKey}");
    e.Handled = rejectKey;char.IsNumber(e.KeySymbol[0]);
}

I may have forgotten to check for something, if I realize, I'll update. One big problem remains, but that's probably for another question: If at any time the input string is "" there is an exception below the TextBox that doesn't go away.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): another question
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Karan
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Frederik Steinmetz

79418322

Date: 2025-02-06 14:37:43
Score: 1.5
Natty:
Report link

One side effect of this issue is that while the .pfx file has been successfully imported into the Computer Certificate store with the "Mark key as exportable" checkbox ticked, whenever I try to export the certificate, the option to export the private key is grayed-out.

However, I was able to overcome the issue by doing what Yogurt The Wise suggested and do the bindings from the IIS Manager run as an Administrator

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

79418321

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

Your database should AUTO_INCREMENT the primary key. Uou should use stratery = GenerationType.IDENTITY so that Hibernate can rely upon primary key generated by DBMS.

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY) 
private Long id;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yasin Ahmed

79418313

Date: 2025-02-06 14:34:42
Score: 1.5
Natty:
Report link

this solved the issue:

my ~/.npmrc has

ignore-scripts=true

basically you can switch it to false and try remove the node_modules and then reinstall node-rdkafka again.

the other option go to node-rdkafka package: "cd ./node_module/node-rdkafka" and run the following command

node-gyp configure && npm run build

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

79418303

Date: 2025-02-06 14:31:42
Score: 3.5
Natty:
Report link

If this is still of interrest: Additionally the lookup needs to be added to Domain "LOOKUPNAME". Then the lookup can be choosen in the classification application. Hope this helps. Regards Robert

Reasons:
  • Blacklisted phrase (1): Regards
  • Whitelisted phrase (-1): Hope this helps
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Robert

79418298

Date: 2025-02-06 14:30:41
Score: 0.5
Natty:
Report link

I solved this only after installing a specific version of cryptography module, which is 41.0.7

Try to run pip install cryptography-41.0.7

link: https://forum.rasa.com/t/from-cryptography-hazmat-bindings-rust-import-importerror-dll-load-failed-while-importing-rust-the-specified-procedure-could-not-be-found/60963/6

Reasons:
  • Whitelisted phrase (-2): I solved
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Asad Tariq Abbasi

79418297

Date: 2025-02-06 14:29:41
Score: 0.5
Natty:
Report link

This github has some data https://github.com/SmartData-Polito/logprecis and the associated paper (e.g., look on arxiv.org for this project) lists some honeypot datasets.

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

79418272

Date: 2025-02-06 14:21:39
Score: 2.5
Natty:
Report link

There network firewall in between the client and server was the one blocking the traffic.

It turned out to be traffic is not only on port 135, other dynamic ports are being negotiated, even UDP ports are used in the RPC transaction.

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

79418271

Date: 2025-02-06 14:20:39
Score: 3.5
Natty:
Report link

{ "status": true, "data": { "FuckYOU": 1, "ts": "2069-02-08 11:41:06", "token": "0e73da23f8c48f5ae14d4ce320398181", "Online": "true", "Bullet": null, "Aimbot": null, "Memory": null, "SilentAim": null, "item": null, "Setting": null, "Esp": null, "ModName": null, "ftext": "KHAN SAFE ", "status": "Safe", "ON_OFF_BGMI": "on", "rng": 1738850051 } }

Reasons:
  • Blacklisted phrase (2): Fuck
  • No code block (0.5):
  • Low reputation (1):
Posted by: ijuk baelah

79418267

Date: 2025-02-06 14:20:39
Score: 0.5
Natty:
Report link

Ensure pip is at the correct version i.e. pip==9.0.3. Install specific versions of the libraries compatible with Python 2.7. Then install pillow as:

python -m pip install pillow packtools lxml --use-deprecated=legacy-resolver

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

79418266

Date: 2025-02-06 14:20:39
Score: 2.5
Natty:
Report link

closing the solution and reopening the solution, worked for me

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rajesh T

79418255

Date: 2025-02-06 14:17:38
Score: 2
Natty:
Report link

There's no longer any difference, as mentioned in the comments section here: https://nblumhardt.com/2024/04/serilog-net8-0-minimal/#comment-6496448401

and in the source code here: https://github.com/serilog/serilog-extensions-hosting/blob/dev/src/Serilog.Extensions.Hosting/SerilogHostBuilderExtensions.cs

enter image description here

@Nicholas Blumhardt what is the difference builder.Services.AddSerilog(); and builder.Host.UseSerilog()?

Nicholas Blumhardt: There's no longer any difference between these; the Services option is the more recent one, and the Host one just forwards to it.

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Nicholas
  • High reputation (-1):
Posted by: Mike Haas

79418252

Date: 2025-02-06 14:15:37
Score: 2.5
Natty:
Report link

This option has now moved to UI Tools under Editor in Android Studio Ladybug Feature Drop | 2024.2.2.

Resource means xml layout files and Kotlin means Jetpack compose files with previews.

Android Studio Ladybug Feature Drop | 2024.2.2

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

79418247

Date: 2025-02-06 14:14:37
Score: 2.5
Natty:
Report link

Do this long long int n1 = abs(1LL*n); will solve it

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

79418240

Date: 2025-02-06 14:11:36
Score: 3
Natty:
Report link

After trying all the suggested solutions here with the same Tags and even granting my current user full privileges, I decided to test using an administrator profile on the same PC.

✅ Surprisingly, Live Server worked perfectly without any changes to the configuration.

🔍 Conclusion: This indicates that the issue was related to my user profile settings rather than VS Code or Live Server itself. If you're facing a similar issue, try running VS Code with a different user profile or create a new Windows user account to see if the problem persists.

Hope this helps others facing the same issue! 🚀

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing a similar issue
  • Me too answer (0): facing the same issue
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Abdul-Rahman Kazamel

79418238

Date: 2025-02-06 14:10:36
Score: 0.5
Natty:
Report link

Even though I'm dealing with a newer version of springboot I had exactly the same issue with a specific version of SpringBoot

I was blaming the newer version of springboot, but there was probably something wrong with my maven cache. I delete all the org.spring* stuff and this fixed the issue. If this didn't work, I would also suggest cleaning all the IDE caches.

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

79418223

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

I see some issues related with double splash screen thing on Google's issue tracker.

False positive warning on Google Play Console "Double SplashScreen"

Duplicate Splash Screen Issue on Google Play Console Pre-Launch Report

They suggest that many users are experiencing this as well. Pre-Launch Reports show that Google Pixel 7 emulators generally experienced this warning.

It seems like the condition or test triggering this warning is unreliable. Unfortunately, there’s still no response from Google engineers. But I think it is some kind of false positive situation.

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

79418221

Date: 2025-02-06 14:04:35
Score: 2.5
Natty:
Report link

I know, why is supervisord doing that, I just don't know (yet), how to solve this issue. The problem is that supervisord expects a monitored process to remain in the foreground, i.e. do nod daemonize. However pm2 start <app.js> does just that - it goes into background upon successful execution. Then supervisord "thinks" that the process went out, and relaunches it. I guess it gives up after like 4 tries. You need to find a way to run pm2 (or maybe other Node.js manager) so that it stays in the foreground.

Reasons:
  • Blacklisted phrase (1): how to solve
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AdrianL

79418218

Date: 2025-02-06 14:03:34
Score: 1.5
Natty:
Report link

I couldn't change the SDK path because it was set correctly. AndroidSDK was loading the wrong path value because it was loading the value from ~/.android/cache/ directory.

The job works fine after deleting cache files.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Seunghyun Moon

79418216

Date: 2025-02-06 14:03:34
Score: 3.5
Natty:
Report link

Just use the text-align: center; for the p tag.

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

79418207

Date: 2025-02-06 14:00:34
Score: 0.5
Natty:
Report link

Access blocks all update queries when grouped queries are included. Use DSUM instead.

UPDATE Second_Table SET SumField=DSUM("NumberField_First_Table","First_Table","WHERE ID_in_First_Table=" & [ID_inSecond_Table]);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Zen

79418195

Date: 2025-02-06 13:56:33
Score: 2.5
Natty:
Report link

Normally, if your server responds with 401, it means that the user is making a request that they should not have been able to make. They have tried to access an endpoint which they were not authorized to access.

The way this is normally prevented, is by separating your react routes into private routes and not private. Think of this as a client side middleware. To create private routes check this article https://medium.com/@bhairabpatra.iitd/private-routes-in-react-559a7d8d161f

On the other hand, if you have an api call that returns 401 and you want to redirect the user to /login if that is the response status code, you would have to manually redirect the user every time. It really should not be too much code.

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): medium.com
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Francesco De Conto

79418191

Date: 2025-02-06 13:54:32
Score: 1.5
Natty:
Report link

This code does run and is very old. I found the answer by talking to some engineers. The syntax is an undocumented "feature" and little supported. It is as some commented, a portion of the record. Unit space X, where x is the portion. x+1 is the next portion. Parsed by the format. My compiler does not recognize it, so I am changing the data source. So, it is not gibberish after all.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Glen Herman

79418182

Date: 2025-02-06 13:51:32
Score: 3
Natty:
Report link

I received this error while doing az keyvault secret set and there was a space in the name of the keyvault I was passing and almost after wasting half a day found that silly mistake. Once I cleared the space, there was no issue with proxy etc

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

79418158

Date: 2025-02-06 13:45:30
Score: 1.5
Natty:
Report link

add the permission for the internet in manifest file

<uses-permission android:name="android.permission.INTERNET"></uses-permission>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ASIF ALI ABBASI

79418145

Date: 2025-02-06 13:43:29
Score: 5.5
Natty: 4
Report link

I have a similar problem and I think this github discussion can help: https://github.com/sidekiq/sidekiq/issues/750

There is I18n midware that handles this in Sidekiq.

Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar problem
  • Low reputation (0.5):
Posted by: Raphael Souza

79418140

Date: 2025-02-06 13:42:29
Score: 1
Natty:
Report link

I had the same issue, try to replace http.csrf().disable() by http.csrf(AbstractHttpConfigurer::disable); and then you can keep your original conf.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arthur Pascal

79418119

Date: 2025-02-06 13:38:27
Score: 7 🚩
Natty: 5
Report link

0x01, 0x01, 0x00, 0x00, 0x00, 0x32, 0x04, 0x03, 0x09, 0x00, 0x3c, 0x3a 0x01, 0x01, 0x00, 0x00, 0x00, 0x33, 0x04, 0x03, 0x09, 0x00, 0x3d, 0x1a | <-------------------> | \ / \ / | | | Header pH(mV)/10 Temp/100 ? Csum CRC??? 0x01, 0x01, 0x00, 0x00, 0x00, 0x8d, 0x06, 0xf4, 0x08, 0x00, 0x77, 0x56 0x01, 0x01, 0x00, 0x00, 0x00, 0x8f, 0x06, 0xf4, 0x08, 0x00, 0x75, 0x16

Could you please tell me how to transfer Ox33 0X04 into pH(mV), I tried several times but failed.

Reasons:
  • Blacklisted phrase (1): ???
  • Blacklisted phrase (1.5): tell me how to
  • RegEx Blacklisted phrase (2.5): Could you please tell me how
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): -------------------
  • Low reputation (1):
Posted by: Shivercao

79418113

Date: 2025-02-06 13:36:26
Score: 3.5
Natty:
Report link

I also faced the similar issue and after applying invalidate cache my problem is solved.

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

79418109

Date: 2025-02-06 13:35:26
Score: 1
Natty:
Report link

This is how javascript closure works.

Your useEffect runs only once ([] dependency array). And the function inside addEventListener is a closure and captures the state when useEffect runs. Since offsets is initialized as null (or its initial state), this function always logs the initial state, eventhough when the component re-renders and offsets changes.Because of the ([] dependency array).

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

79418106

Date: 2025-02-06 13:34:26
Score: 1
Natty:
Report link

It is possible to retrieve the value of an environment variable with substitute-variable

let [val workspacePath [substitute-variables "${workspace_loc}"]] {
    ...
    set-text $workspacePath
}

It seems that system variables can also be accessed. For example ${system_property:user.home}. See https://www.eclipse.org/forums/index.php/t/1090193/

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

79418099

Date: 2025-02-06 13:32:25
Score: 1
Natty:
Report link

In my case, I'm working with pnpm and had to add the following to my package.json

 "pnpm": {
    ...,
    "onlyBuiltDependencies": [
      "sharp"
    ]
  }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mel K.

79418090

Date: 2025-02-06 13:29:24
Score: 2.5
Natty:
Report link

Question 1: How can I properly extract values from _StateBackedIterable when using an AsMultiMap side input? The most reliable way to extract values is to force materialization by converting the _StateBackedIterable to a list. While iterating can work, converting to a list ensures all data is processed and available.

lookup_table_iterable = ref_bsbcatname["104221"] or [] value_list = list(lookup_table_iterable) for value in value_list: logging.info(f"ref_bsbcatname Value 104221 : {value}")

Question 2: Is there a way to force materialization of the iterable when reading from the side input? Yes, as shown above, explicitly converting to a list (list(lookup_table_iterable)) forces materialization. This consumes the iterable, making subsequent iterations impossible without re-materializing.

Question 3: Could this issue be related to Apache Beam’s lazy evaluation model? How does Apache Beam manage periodic updates to a PCollection used as a side input? Yes, this issue is directly related to Apache Beam's lazy evaluation. The _StateBackedIterable is a consequence of this optimization. Apache Beam manages periodic updates by ensuring that when a transform using the side input executes, it receives the latest available version of the PCollection. The runner handles the update and data synchronization behind the scenes. The key is that the materialization happens at the point of use within the transform, not when the side input is created or updated.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): Is there a way
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Yzza Hario

79418078

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

I was facing error in AWS lambda functions that path was not found... What I did was used following to make it work

import path from "node:path";

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Jainam Jhaveri

79418075

Date: 2025-02-06 13:26:24
Score: 2
Natty:
Report link

The error indicates that either you do not have 'npm' or 'node' installed, or there was an error installing them.

Check if they are installed by running the following commands in the terminal

'node -v'

'npm -v'

If they are not installed, make sure to install them.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Francesco De Conto

79418068

Date: 2025-02-06 13:24:23
Score: 2
Natty:
Report link

Here is my solution, In Iphone 16..

  1. You must enable developer mode in your iphone

Then the rest work like magic

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

79418064

Date: 2025-02-06 13:24:23
Score: 1.5
Natty:
Report link

The error comes up, because you are using the wrong syntax. It should be
usernams.append instead of usernames = usernames.append

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

79418046

Date: 2025-02-06 13:20:22
Score: 7.5 🚩
Natty: 6.5
Report link

Did you manage to resolve this issue? I've got same problem now. before it worked, now it does not.

Reasons:
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (3): Did you manage to resolve this
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: dl666

79418035

Date: 2025-02-06 13:17:19
Score: 7 🚩
Natty:
Report link

Can someone help me change this in to valid gcc11 code? Thanks

void loadFromImpl(const XmlNode& tree, Args&... fields)
    {
        using namespace std::string_literals;

        try
        {
            auto root = tree.get_child(RootNode);
            (loadField(root, fields, std::make_index_sequence<fmt::runtime(fields.size())>{}), ...);
        }
        catch (std::exception& e)
        {
            throw SettingsSerializer::Error{"Settings", "Load settings error: "s + e.what()};
        }
    }
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can someone help me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can someone help me
  • Low reputation (1):
Posted by: MrMEEE

79418028

Date: 2025-02-06 13:16:18
Score: 2.5
Natty:
Report link

I had the issue that tables are shown on the left hand side box but when I run the query like "select * from table" then my table was not shown then I restarted my computer then after restarting the issue was resolved.

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

79418017

Date: 2025-02-06 13:15:16
Score: 7 🚩
Natty:
Report link

I am also facing same issue , Did you get find solution for this

enter code here @BeforeAll public static void setup() { // Create a new report folder with a timestamp reportFolderPath = ReportManager.createReportFolder(); System.setProperty("C:\Users\Vinod Kumar\Documents\reportfile", reportFolderPath); // Optional: Make it available system-wide

        LoggerHelper.info("********** Starting Test Execution **********");
        BaseClass.getDriver();   // Initialize WebDriver
        BaseClass.openUrl();     // Navigate to URL
    }

    
    @AfterStep
    public void handleFailure(Scenario scenario) {
        if (scenario.isFailed()) {
            LoggerHelper.error("Step failed: " + scenario.getName());
            takeScreenshot(scenario);
        }
    }
      @AfterAll public static void tearDown() throws EmailException, InterruptedException, IOException {
      LoggerHelper.info("********** Ending Test Execution **********");
      BaseClass.closeBrowser(); // Close Browser
    // Send the report via email
      Thread.sleep(5000);
      EmailUtility.sendReport();
      

      
      }
Reasons:
  • RegEx Blacklisted phrase (3): Did you get find solution
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I am also facing same issue
  • User mentioned (1): @BeforeAll
  • Low reputation (1):
Posted by: vinod kumar

79418014

Date: 2025-02-06 13:14:16
Score: 1.5
Natty:
Report link

Payment Intents API doesn't support automatically sending paid invoices.

Resource: https://docs.stripe.com/payments/advanced/receipts#automatically-send-paid-invoices

This means you can't automatically send a paid invoice if you writing code like below

const paymentIntent = await stripe.paymentIntents.create({
    amount: 1099,
    currency: 'gbp',
    payment_method_types: ['card'],
    description: 'Thanks for your purchase!',
    receipt_email: '[email protected]',
  });

You should use embedded components

Resource: https://docs.stripe.com/payments/checkout/receipts?payment-ui=embedded-components#paid-invoices-hosted

const session = await stripe.checkout.sessions.create({
    mode: 'payment',
    invoice_creation: {
      enabled: true,
    },
    line_items: [
      {
        price: '{{ONE_TIME_PRICE_ID}}',
        quantity: 1,
      },
    ],
    ui_mode: 'custom',
    return_url: 'https://example.com',
  });
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Salih Kesepara

79418005

Date: 2025-02-06 13:09:14
Score: 3
Natty:
Report link

For generators: next( worksheet.rows )

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Robert Sirois

79418002

Date: 2025-02-06 13:09:14
Score: 2.5
Natty:
Report link

Its Show error because firstly you have to Access through signing agreement after that you are select which scope you want

then its Does not Show invalid id

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

79417994

Date: 2025-02-06 13:07:14
Score: 1
Natty:
Report link

I found out how to do this, it turns out its pretty simple I just didn't think to look outside the ILogger code.

In your ILoggerProvider the ILogger CreateLogger(string categoryName) has the category name from ILogger<TCategoryName>. Just need to pass that to the constructor of your ILogger.

e.g. public ILogger CreateLogger(string categoryName) => new DbLogger(this, categoryName, TimeProvider.System);

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

79417990

Date: 2025-02-06 13:06:13
Score: 2.5
Natty:
Report link

Strangely, skip() and take() do not work well with joins, you should use offset() and limit(). You can read more about this in this open issue in TypeORM repository: https://github.com/typeorm/typeorm/issues/4742

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

79417972

Date: 2025-02-06 13:00:12
Score: 2.5
Natty:
Report link

try

RewriteEngine ON
RewriteCond %{REQUEST_URI} ^/golf/shoes/white/winter/(.*)$
RewriteRule ^ /collections/%1 [R=301,L]

This Should correctly redirect https://www.url-old.com/golf/shoes/white/winter/brand to https://url-old.com/collections/brand.

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

79417971

Date: 2025-02-06 13:00:12
Score: 3
Natty:
Report link

Or you can tick the "Use credential helper" in Settings->Version Control->Git

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

79417965

Date: 2025-02-06 12:58:11
Score: 1.5
Natty:
Report link

Make sure echo $this->fetch('css'); is after echo $this->element('diaporama_accueil'); in the layout

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

79417964

Date: 2025-02-06 12:57:11
Score: 0.5
Natty:
Report link

You can achieve this by adding another @State variable to store the interpretation text and updating it inside your button's action. Here's how you can modify your code:

@State var interpretation: String = ""  // New state variable for interpretation

Button {
    // Ensure all inputs are valid numbers
    if let setVT = Double(SetVT), let pplat = Double(Pplat),
       let lPEEP = Double(LPEEP), let hPEEP = Double(HPEEP),
       let vtTotal = Double(VTtotal), let vtHPEEP = Double(VTHPEEP) {

        let Cbaby = setVT / (pplat - lPEEP)
        let pVrec = hPEEP - lPEEP
        let ppVrec = pVrec * Cbaby
        let Vrec = vtTotal - vtHPEEP - ppVrec
        let Crec = Vrec / (hPEEP - lPEEP)
        let raw = max(Crec / Cbaby, 0)

        answer = String(format: "%.2f", raw)

        // Interpretation logic
        interpretation = raw < 0.5 ? "XXX" : "YYY"
    } else {
        answer = "Invalid input"
        interpretation = ""
    }
} label: {
    Text("Calculate")
        .fontWeight(.bold)
        .frame(width: 200.0, height: 50)
        .background(Color.blue)
        .cornerRadius(10)
        .foregroundColor(.white)
        .font(.system(size: 20))
        .padding()
}

// Display result and interpretation
Text("RI = \(answer)")
    .font(.system(size: 20))
    .fontWeight(.bold)

Text(interpretation)
    .font(.system(size: 18))
    .foregroundColor(.gray)

Explanation:

  1. Added @State var interpretation: String = "" to store the interpretation.
  2. Used a conditional (raw < 0.5 ? "XXX" : "YYY") to assign the appropriate interpretation.
  3. Handled invalid input cases to prevent crashes when the user enters non-numeric values.

Now, when the user clicks the button, the calculated result will be displayed along with a meaningful interpretation!

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @State
  • Low reputation (1):
Posted by: Zain Umar

79417936

Date: 2025-02-06 12:46:08
Score: 1
Natty:
Report link

For me, refreshing the test list solved this. You can either click "Refresh Tests" in the Test Explorer extension, Or hit it's shortcut "ctrl-: + ctrl-r".

It solve both the arrows being miss-located issue, and "No tests found" when you click on a green arrow.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: I.sh.

79417935

Date: 2025-02-06 12:46:08
Score: 4.5
Natty:
Report link

Today, a new version v1.86 of the LogiOptionsPlus-InMemoryPatching DLL was released: https://github.com/igvk/LogiOptionsPlus-InMemoryPatching

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

79417931

Date: 2025-02-06 12:43:07
Score: 3.5
Natty:
Report link

Go to view button and click on "Enable Full Width Notebook"

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

79417925

Date: 2025-02-06 12:41:06
Score: 3.5
Natty:
Report link
string sql = "SELECT app_fee FROM uasonline.pg_fee_master WHERE sl =" + row.Cells[0].Text + " ";  I will execute this query result will come it will store somewhere on it how to write?
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hemavathi K

79417923

Date: 2025-02-06 12:41:06
Score: 1
Natty:
Report link

Try deleting the quotes and use full path if possible

spark.sql("ALTER TABLE db.catalog.SAMPLE CLUSTER BY (CLUSTER_TYPE) ");
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mjeday

79417921

Date: 2025-02-06 12:41:06
Score: 2
Natty:
Report link

I'd opt for introducing a state variable that shows whether the code inside the effect has executed. Then, inside the effect of course, you set the variable to true. In this way, the code is more explicit of what is happening, although it is not so savvy so to say.

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

79417918

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

Just wrapping the component using useSearchParams() inside of a boundary and it will fix

'use client';

import { Suspense } from 'react';
import { useSearchParams } from 'next/navigation';

function MyComponent() {
const [searchParams] = useSearchParams();
// your logic here
return <div>{searchParams.get('q')}</div>;
}

export default function Page() {
return (
<Suspense fallback={<div>Loading...</div>}>
<MyComponent />
</Suspense>
);
}

Read more mistakes here: Common useSearchParams() Mistakes in Next.js & How to Fix Them.

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

79417916

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

so just to keep you all updated. I have been working on this issue this past week and it seems to be fixed, or better said .. hacked to work as intended.

I have not found what exactly is causing this issue, but with the help of third-party tool "Spoon" and Debug.WriteLine(Enviroment.StackTrace) I have been able to compare normal and abnormal behaviour of tabSelectionChanged. Every time the tab misfired it was by part caused by MouseCaptureLost on some part of our UI. Image from WinMerge compare between StackTrace of normal and abnormal tab behaviour.

To prevent this from happening I have built custom checking logic and sanitized the input of event handlers for our custom class ClosableTab.cs,

    // Internal method to check for tab change validity
    private bool EvaluateTabFocus()
    {
        _mouseOverTabFocus = IsMouseOver;
        bool ret = _newTabFocus || _mouseOverTabFocus || _codeNavigationFocus;
        _codeNavigationFocus = _newTabFocus = false;
        return ret;
        } 

    // Override OnSelected - Show the Close Button
    protected override void OnSelected(RoutedEventArgs e)
    {
        // Check if the event was generated by the same type
        if (e.OriginalSource.GetType() != this.GetType())
            return;
    
        // Check if the event is happening whilst the mouse is over top of the header or there is automatic navigation to this tab through code.
        if (EvaluateTabFocus()) 
        {
            _selectionIsValid = true;
            base.OnSelected(e);
            ((CloseableHeader)this.Header).button_close.Visibility = Visibility.Visible;
        }
        else
        {
            _selectionIsValid = false;
            base.OnSelected(e);
        }
    }

I then use this _selectionIsValid inside MainWindow.xaml.cs private void tcMain_SelectionChanged(object sender, SelectionChangedEventArgs e) to check for valid tab changes and repeatadly discard the bad ones.

It seems to be working now so we will be monitoring the behaviour. If the issue appears again I may return but for now this cutom logic is doing fine. Thanks all to your helpfull insights.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Marek Sýkorka

79417915

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

Got your question.

Just do not add data=data in the arguments if data passed as the first argument is a dataframe(df). It'll work, It worked for me.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Akshit Gulyan

79417908

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

you need to use the same version of Camel dependencies. In your case, you have a bom, no need to override the dependency version after.

Another note is that you are using Camel 3.x which is End of life, see https://camel.apache.org/blog/2024/12/camel3-eol/ You should start using Camel 4.x

Reasons:
  • Whitelisted phrase (-1): In your case
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Aurélien Pupier

79417905

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

After some experimentation, I realised that the data is sent as form data, and the way to extract it on the back-end in an Astro endpoint is with

data = await request.formData();
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: timebandit

79417893

Date: 2025-02-06 12:26:03
Score: 1
Natty:
Report link

If not required a selectable text. You can use an SVG Editor where put Your custom font and you can export it to SVG file. Then copy the file content and paste the HTML email sign file or field. After all You just need to add some style element and thats all.

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

79417891

Date: 2025-02-06 12:26:03
Score: 1
Natty:
Report link

DevEco Studio 5.0.1 Beta3 is only for HarmonyOS NEXT which is an new OS independent from Android

HarmonyOS 4.2 is acutally based on Android, so the new IDE don't show the device.

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

79417884

Date: 2025-02-06 12:24:02
Score: 2
Natty:
Report link

Edit: As this is already mentioned in one of the comments by Joel Sullivan

For:


This is not working for me:

import pytest

# Only test marked as `asyncio`
@pytest.mark.asyncio
async def test_app_1(create_1):
    assert create_1 == 1

@pytest.fixture
async def create_1():
    return 1

Because of

    @pytest.mark.asyncio
    async def test_app_1(create_1):
>       assert create_1 == 1
E       assert <coroutine object create_1 at 0x0000012AFE251590> == 1

But there is an annotation for Python fixture as well. And it is working for me

import pytest
import pytest_asyncio

# Annotation on test, marking it as `asyncio`
@pytest.mark.asyncio
async def test_app_2(create_2):
    assert create_2 == 1

# Additional `asyncio` annotation on fixture
@pytest_asyncio.fixture
async def create_2():
    return 1
Reasons:
  • RegEx Blacklisted phrase (3): not working for me
  • Long answer (-0.5):
  • Has code block (-0.5):
Posted by: Łukasz Kotyński

79417883

Date: 2025-02-06 12:24:02
Score: 5
Natty:
Report link

Try Changing @MockBean by @SpyBean

Reasons:
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @MockBean
  • User mentioned (0): @SpyBean
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hamza Naceur

79417882

Date: 2025-02-06 12:24:01
Score: 2.5
Natty:
Report link

I've created the pipeline again from scratch and it is now working with the lookup and foreach.

The initial pipeline was a copy of an existing one with the datasets changed. I've had issues before when I've copied existing pipelines but I've never seen this error before.

In future I'll just create all pipelines from scratch I think.

Thanks everyone for your help.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: RJM_90

79417879

Date: 2025-02-06 12:23:01
Score: 1
Natty:
Report link

This issue was fixed since Angular v.15: https://github.com/angular/angular/issues/48561 To call setDisabledState on form control every time you should import ReactiveFormsModule with parameter:

ReactiveFormsModule.withConfig({ callSetDisabledState: 'always' })
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Юля Штырьякова

79417871

Date: 2025-02-06 12:19:59
Score: 5.5
Natty: 5.5
Report link

You can follow this document- https://www.twilio.com/docs/messaging/features/sms-pumping-protection-programmable-messaging#riskcheck-parameter

and code: https://www.twilio.com/docs/messaging/tutorials/how-to-send-sms-messages/python

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user13014907

79417869

Date: 2025-02-06 12:19:59
Score: 0.5
Natty:
Report link

Managed to work it out, I had to change the above to the below

spec:
  template:
    metadata:
      annotations:
        run.googleapis.com/network-interfaces: '[{"network":"${GCP_VPC}","subnetwork":"${GCP_SUBNET}","tags":["${NETWORK_TAG}"]}]'
        run.googleapis.com/vpc-access-egress: all-traffic
        run.googleapis.com/startup-cpu-boost: 'true'
        autoscaling.knative.dev/minScale: ${MIN_SCALE}
        autoscaling.knative.dev/maxScale: ${MAX_SCALE}
        run.googleapis.com/execution-environment: gen2
        run.googleapis.com/cpu-throttling: 'false'
        run.googleapis.com/container-dependencies: '{app: [otel]}'
    spec:
      serviceAccountName: ${GCP_SERVICE_ACCOUNT}
      containerConcurrency: 4
      containers:
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: CJS

79417862

Date: 2025-02-06 12:17:58
Score: 3.5
Natty:
Report link

This just happened to me, if you're using a newer Lenovo,then the insert button might also be the zero key with the abbreviation "ins" in the corner. Try press shift 0/ins, should go back to normal. P.S Thank you to everyone who said it was insert, this has been bugging me for a whole day now :)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29530051

79417860

Date: 2025-02-06 12:16:58
Score: 2
Natty:
Report link

Thanks for the insightful reply! Your suggestions regarding the ALSA issue and Neopixels are really helpful and logical. I’ll definitely check the permissions for the ALSA devices and experiment with modifying the sudoers file as you suggested. It makes sense to avoid using sudo when possible, so I’ll try adjusting the permissions for Neopixels as well.

And yes, taking breaks with something like a Smoky Barbecue Cheeseburger sounds like the perfect way to refuel during a long debugging session! Appreciate the help!

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

79417855

Date: 2025-02-06 12:15:57
Score: 5.5
Natty: 4
Report link

İnteractive Media — это компания, узкоспециализированная в области интернет-маркетинга, стремящаяся предоставить своим клиентам возможность добиться выдающихся результатов в цифровом мире с помощью новейших технологий.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Narmin Aliyeva

79417850

Date: 2025-02-06 12:13:57
Score: 2
Natty:
Report link

i know this is super late but for anyone who's looking for a solution, Google has a beta package for navigation https://pub.dev/packages/google_navigation_flutter

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

79417834

Date: 2025-02-06 12:10:56
Score: 2.5
Natty:
Report link

I found a way to hide it with an uBlock filter: play.google.com##div.particle-table-row:has-text("Suspended by Google")

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Crying Cupcake Games

79417826

Date: 2025-02-06 12:07:55
Score: 3
Natty:
Report link

Find where db.sqlite is being called or just search for error in vscode ("type = "table"). Change the quotes to single quotes '

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

79417823

Date: 2025-02-06 12:06:55
Score: 2
Natty:
Report link
<execution>
    <id>default-test</id>
    <phase>none</phase>
</execution>
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: Vladimir I

79417822

Date: 2025-02-06 12:06:55
Score: 2
Natty:
Report link

Just refresh the JVM. Step 1: Right-click on JVM Step 2: Click on reset Java Virtual Machine That's it! It's a common issue, don't worry. It happens when the previous program you executed went wrong.

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

79417817

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

String newImeiValue = "ABC";

JsonNode deviceDetails=parentObj.get("ctnInfo").get("device").get("devideDetails");

if(deviceDetails.hasNonNull("imei")) { ((ObjectNode)deviceDetails).put("imei",newImeiValue);
} same for subscriberInfo

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

79417816

Date: 2025-02-06 12:03:54
Score: 1.5
Natty:
Report link

put a slash between baseUrl and endpoint, like:

  final url = Uri.parse('$baseUrl/$endpoint');
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nnamani Daniel

79417814

Date: 2025-02-06 12:03:54
Score: 1.5
Natty:
Report link

I want the regex to match if "aFrom" in any way connected to another string or encapsulated by it.

So $@"(?<=\S){aFrom}|{aFrom}(?=\S)" should work for you: it checks if aFrom is preceded and/or followed by a non space character

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DPD-

79417805

Date: 2025-02-06 11:59:53
Score: 2
Natty:
Report link

Try to update the viewer documents as below viewer3D: "https://developer.api.autodesk.com/modelderivative/v2/viewers/viewer3D.min.js?v=v7.104", style: "https://developer.api.autodesk.com/modelderivative/v2/viewers/style.min.css?v=v7.104",

In my case, it was solved after updating the latest version.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: kaushik

79417802

Date: 2025-02-06 11:59:53
Score: 1.5
Natty:
Report link

PLAIN and DEFAULT doesn't exist in prettytable package anymore. Just import it to another app/notebook and check values available.

%config SqlMagic.style = '_DEPRECATED_DEFAULT'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Marcos Magalhães

79417799

Date: 2025-02-06 11:58:52
Score: 4
Natty:
Report link

how to find top level parent id with nested child id.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how to find to
  • Low reputation (1):
Posted by: Sikander Rafiq

79417798

Date: 2025-02-06 11:58:52
Score: 1
Natty:
Report link

When Copilot Chat is installed you will have a button as in the image. When clicking the button copilot will analyse the commit diffs and suggest a commit message.

Copilot button to generate commit message

I understand that there is a negative sentiment regarding copilot writing commit messages for the programmer. But in my humble experience I have noticed that commits are often better written and more complete than I would have written myself. Plus copilot learns from your previous commit messages and tries to match the style. This allows committing much more often which is a good thing in my opinion.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Andyba

79417796

Date: 2025-02-06 11:58:52
Score: 1.5
Natty:
Report link

I solved the problem with a workaround. The binary file must be base64 encoded and the wiremock must use base64body.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rmn

79417787

Date: 2025-02-06 11:53:51
Score: 2
Natty:
Report link

Had the same issue, I went to the ProgramData > ssh. In there I clicked on the logs folder, and changed the permission settings to only allow system to write to this folder. Now its up and running for me after that simple fix. Thanks to whoever figured that out.

1.) Go to ProgramData\ssh folder

2.) Open 'logs' Properties > Security

3.) Click advanced, and make sure only SYSTEM is allowed to write

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

79417782

Date: 2025-02-06 11:52:51
Score: 2
Natty:
Report link

When you set quarkus.grpc.server.use-separate-server=false, Quarkus supports multiple authentication mechanisms as documented here https://quarkus.io/guides/grpc-service-implementation#overview-of-supported-authentication-mechanisms. In regards to your TenantConfigResolver bean, gRPC is build on top of HTTP/2, therefore you don't need to (almost) change anything on your resolver. It should work out of the box. gRPC metadata are implemented using HTTP/2 headers, so try inspecting your headers.

Reasons:
  • Blacklisted phrase (1): regards
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Michal Vavřík

79417779

Date: 2025-02-06 11:52:50
Score: 8 🚩
Natty: 5.5
Report link

Hello have you find a solution ?

Reasons:
  • Blacklisted phrase (2): have you find
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Qasim Qasim

79417777

Date: 2025-02-06 11:52:50
Score: 0.5
Natty:
Report link

Probably you are after for this?

d = {"A" : 123.02, "B": 12.3}
for key in d.keys():
    d[key] = str(d[key])

such that print(d) shows

{'A': '123.02', 'B': '12.3'}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: ThomasIsCoding

79417767

Date: 2025-02-06 11:47:49
Score: 3
Natty:
Report link

I had to adjust the cacerts file of the JDK used by Gradle. Which JDK is used by Gradle can be checked in Android Studio under File/Settings/Build, Execution, Deployment/Gradle.

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

79417758

Date: 2025-02-06 11:45:47
Score: 10 🚩
Natty:
Report link

I have same issues, anyone has come across it recently and resolved it ?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved it ?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ravi

79417757

Date: 2025-02-06 11:45:47
Score: 2
Natty:
Report link

know there might be better practices for this, so any advice would be greatly appreciated!

Mmhhmm

better idea to do what Im trying I will be pleasure to read

Yeah, I do and it's not HDFS.

How to install Hadoop in Kubernetes via Helm Chart?

Reasons:
  • Blacklisted phrase (1): appreciated
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: OneCricketeer

79417755

Date: 2025-02-06 11:44:47
Score: 2.5
Natty:
Report link

what about use split first to get the number section of the tag. then use int to parse the value and see if value is greater than 0?

something like below. sorry, did not get change to test it out. but probably you can use split and last and int to do it.

{
 "value": "[int(last(split(field(concat('tags[', 'tagName', ']')))))]",
 "greater": 0
},

refer to:

How do you policy enforce integer number of tag value in Azure

How to enforce naming pattern such as "*-*-asp" using Azure policy?

Reasons:
  • Blacklisted phrase (1): How do you
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): what
Posted by: qkfang