79520966

Date: 2025-03-19 17:36:45
Score: 6.5 🚩
Natty:
Report link

What tailwind version you are using?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Tronic

79520955

Date: 2025-03-19 17:32:44
Score: 4
Natty:
Report link

Command adb reverse tcp:3000 tcp:3000

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

79520940

Date: 2025-03-19 17:24:39
Score: 8.5 🚩
Natty: 5
Report link

Did you finally fix this error. I am stuck at the same place. Nothing I do is fixing it.

Reasons:
  • RegEx Blacklisted phrase (1.5): I am stuck
  • RegEx Blacklisted phrase (3): Did you finally fix this
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: adbury

79520908

Date: 2025-03-19 17:09:33
Score: 7.5 🚩
Natty:
Report link

This is very good source to learn more about spacings.
However, i have tried to apply the methods shown here for subplots with twin axes, as shown below.

Somehow, it doesnt fit to the entire horizontal spacing of the figure, leaving some empty space.
Does anyone have faced similar issue and know how to solve it?

enter image description here

This is what i have tried:

mosaic = [["A", "A"],
          ["B", "C"]]

fig = plt.figure(dpi=600)

fig, axs = plt.subplot_mosaic(
    mosaic,
    layout="constrained",
    gridspec_kw={"height_ratios": [1.25, 1],
    "width_ratios": [1, 1.5]}  # Adjust widths: A = 1, B/C = any vals
)

plt.style.use("dark_background")
plt.suptitle('AQ_20 @ 223K', fontweight = 'bold')
# Titles and labels
axs["B"].set_title("Rocking scan")
axs["B"].set_ylabel("Intensity (a.u.)")
axs["B"].set_xlabel(r"$\Delta_{diffry}$ (deg.)")

axs["C"].set_ylabel("Intensity @ max. (a.u.)")
axs["C"].set_xlabel(r"$t$ (s)")

# Limits
axs["C"].set_xlim(-5, 410)
#axs["C"].set_ylim(1.30, 1.65)

axs["B"].set_xlim(-0.2, 0.2)
#axs["B"].set_ylim(-1, 22)

# axs["A"].set_ylim(2560, 0)
# axs["A"].set_xlim(0, 2160)
axs["A"].set_aspect("auto")
axs["A"].set_title("Local structure @ rocking max")
#axs["A"].axis("off")

axC_twin1 = axs["C"].twinx()
axs["C"].plot([0, 100, 200, 300, 400], [1, 2, 3, 4, 5], label="Primary y-axis", color='blue')
axC_twin1.plot([0, 100, 200, 300, 400], [5, 4, 3, 2, 1], label="Twin y-axis", color='red')
axC_twin2 = axs["C"].twinx()
axC_twin1.plot([0, 100, 200, 300, 400], [2, 2, 2, 2, 2], label="Twin y-axis", color='red')
axC_twin1.set_ylabel("$\Delta_{diffy}$", color='red')
axC_twin2.set_ylabel("FWHM (.deg)", color='green')
axC_twin2.spines['right'].set_position(('outward', 30)) 
Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (1.5): how to solve it?
  • RegEx Blacklisted phrase (3): Does anyone have
  • RegEx Blacklisted phrase (2): know how to solve
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: oliveirals

79520901

Date: 2025-03-19 17:07:32
Score: 4
Natty:
Report link

I am indeed the OP. The answer struck me when I articulated my question here. Thought of posting the answer myself as it might help someone else. I would still be grateful if others add to this answer/point out any mistakes.

The answer is in declaration of hash_t. It is not a 'variable' pointer to type, but rather an array of type. In C we cannot reassign an array name to point to some different location. The code in question does this in the line hash_t hashTable[] = *hashTable_ptr;

Although one thing that I still don't understand is that, if I modify the function definition to:

void FreeHash(hash_t hashTable_ptr)

and then pass the dereferenced pointer to array while calling the function as:

FreeHash(*srptr->symTable);

Then the code works. If someone can answer that I'll be grateful.

This is the corrected code by the way:

void FreeHash(hash_t* hashTable_ptr) {

    varNode *prev, *curr;
    /* freeing each entry */
    for( int i = 0; i < HASHSIZE; i++ ) {
        prev = NULL;
        curr = (*hashTable_ptr)[i];
        while( curr != NULL ) {
            prev = curr;
            curr = curr->next;
            free(prev);
        }
        (*hashTable_ptr)[i] = NULL;
    }

    free(hashTable_ptr);
Reasons:
  • RegEx Blacklisted phrase (2): be grateful
  • RegEx Blacklisted phrase (2): I'll be grateful
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Newton's in-law

79520848

Date: 2025-03-19 16:44:27
Score: 4.5
Natty: 4
Report link

This question is exactly something I'm thinking about but I want to go a step further. Once we have all the "raw data" indices of the incorrectly labeled data: what do we do? What sort of things can be done to analyze WHY something got labeled incorrectly?

There is LOTS of information on how to score the model performance, but what is the next level of troubleshooting? How do we start to analyze WHY things are being mislabeled?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: TallGibbs

79520810

Date: 2025-03-19 16:30:24
Score: 4.5
Natty:
Report link

I proposed an answer for a very similar question here: https://stackoverflow.com/a/79520750/5552507

It relies on plotly without html.

enter image description here

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: PiWi

79520795

Date: 2025-03-19 16:23:20
Score: 6 🚩
Natty:
Report link

How did you install the dotnet SDK? and how did you start your dotnet project?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How did you in
  • Low reputation (1):
Posted by: Gebz

79520759

Date: 2025-03-19 16:12:16
Score: 4
Natty:
Report link

consider reducing the batch size

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

79520739

Date: 2025-03-19 16:04:14
Score: 4
Natty:
Report link

This issue should be fixed, see here:

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

79520736

Date: 2025-03-19 16:03:14
Score: 4
Natty:
Report link

In the end the issue was that i had more than one @ConfigInitializer within my test class hierarchy. This lead to different contexts.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @ConfigInitializer
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: user984200

79520716

Date: 2025-03-19 15:54:12
Score: 4.5
Natty: 4
Report link

Given I'm doing this in C++, is it possible to define the function like this: int find(int &x): to save on memory use?

Reasons:
  • Blacklisted phrase (1): is it possible to
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: dominik findeisen

79520601

Date: 2025-03-19 15:14:01
Score: 13 🚩
Natty: 5
Report link

I am also having the same issue, the Remote build successed but the function app is not appearing. How did you fix the issue?

Reasons:
  • Blacklisted phrase (1): How did you fix
  • RegEx Blacklisted phrase (3): did you fix the
  • RegEx Blacklisted phrase (1.5): fix the issue?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also having the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fungai Dangaiso

79520595

Date: 2025-03-19 15:10:59
Score: 9.5 🚩
Natty: 6
Report link

how did you resolve the error mentioned above?

Reasons:
  • RegEx Blacklisted phrase (3): did you resolve the
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how did you
  • Low reputation (1):
Posted by: user29991276

79520586

Date: 2025-03-19 15:05:57
Score: 7.5 🚩
Natty:
Report link

What could be causing this error in LibreOffice?

Reasons:
  • Blacklisted phrase (1): What could be
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Yeiye

79520565

Date: 2025-03-19 15:00:55
Score: 6.5 🚩
Natty: 4
Report link

Did you ever get this working Joshua Graham? I am running my application from as a package, therefore the wwwroot is read only and caching does not work:

no such file or directory, mkdir '/home/site/wwwroot/yyyy/standalone/apps/yyyy/.next/cache'

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever get this
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: unknown...

79520558

Date: 2025-03-19 14:58:54
Score: 4
Natty:
Report link

Adjust the typeargument in the for eahc properties panel.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kevin Foendoe

79520435

Date: 2025-03-19 14:10:42
Score: 13.5 🚩
Natty: 5.5
Report link

Ey I am facing the same error now using Saprk Structured streaming to read from kafka and sink in an Iceberg table, Did you fix it?

Reasons:
  • RegEx Blacklisted phrase (3): Did you fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • RegEx Blacklisted phrase (1): I am facing the same error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same error
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cynthia

79520404

Date: 2025-03-19 14:00:39
Score: 5.5
Natty: 4.5
Report link

@meshack-pi This fixed for me, that was exactly my issue, dependnecy on the HttpClientModule. Thanks for your answer.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @meshack-pi
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Stevan

79520400

Date: 2025-03-19 13:59:38
Score: 7 🚩
Natty: 5.5
Report link

I have a similar problem. I haven't completely solved it yet, but I have discovered some interesting findings. Maybe this will help someone. I'm glad you found the cause in editor.autoIndent. But it still doesn't solve the problem for me. So, I'll leave the information here. In my case, the “indentNextLinePattern” is not working.

1 - It is strange that you expect a single “increaseIndentPattern” to work. My experiments and reading the information showed that it doesn't work alone. It needs a pair of “decreaseIndentPattern” to work. Even stranger is that you wrote “Then I discovered that I had ‘editor.autoIndent’ in the settings.json file: “none”, which was the problem.” - So just by enabling “editor.autoIndent”, you got the single “increaseIndentPattern” rule working? Without its “decreaseIndentPattern” pair? That's very strange.

2 - Expressions like “if (3 > 2) {” have no meaning here. The thing is that VS Code automatically adds indents if you press “enter” after an opening bracket. This works even if no separate automatic indentation rule is defined for the language. It works for brackets (, [, {.

3 - That said, in my case, the “increaseIndentPattern+decreaseIndentPattern” and “onEnterRules” options work. But “indentNextLinePattern” does not work. That's the weirdness.

4 - Neural networks help well with regex. The same Chat-GPT, Git-Hub Copilot, Perplexity, Claude. They are also good at explaining the principles and design standards of language packs. With neural nets, I was making fast progress in creating custom language highlighting. Until I got stuck with this weird problem with “indentNextLinePattern”. All in all, I created the bulk of the highlighting in about 3 days. Polishing and working out the details took me another week or so. Without neural networks, I would have been sorting it out for at least a month. And most likely, I would have quickly abandoned it because of the complexity and intricacy of the topic. Many thanks to neural networks. I love them very much.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): I have a similar problem
  • RegEx Blacklisted phrase (2): working?
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Lucius_Will

79520388

Date: 2025-03-19 13:53:36
Score: 13.5
Natty: 7.5
Report link

I have the same problem, how did you resolve ?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): did you resolve
  • RegEx Blacklisted phrase (1.5): resolve ?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Claudia Olivieri

79520353

Date: 2025-03-19 13:38:32
Score: 5.5
Natty: 5.5
Report link

I'm hitting the same wall, any progress ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Helder Santo

79520348

Date: 2025-03-19 13:35:31
Score: 4
Natty:
Report link

This issue has been resolved.

Thank you for your response.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Programmer_LM

79520293

Date: 2025-03-19 13:11:27
Score: 6
Natty: 8
Report link

YOU'RE THE BEST!! This solution saved my day. Thank you very much!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (2): saved my day
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Christian Persona-Non-Grata

79520237

Date: 2025-03-19 12:54:21
Score: 6 🚩
Natty:
Report link

What is your Node version? Have you tried using the latest LTS Node.js release?

Reasons:
  • Blacklisted phrase (1): What is your
  • Whitelisted phrase (-1): Have you tried
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What is you
  • Low reputation (1):
Posted by: ParsaJR

79520233

Date: 2025-03-19 12:52:21
Score: 4.5
Natty:
Report link

If you have a bunch of email or a PST file and you need to redact multiple email at once with an interactive editor, you can also just use our tools here: https://emailtools.hexamail.com/redact

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

79520151

Date: 2025-03-19 12:16:12
Score: 5
Natty: 4.5
Report link

@Matt Lang thanks for this. I spent 3 sessions with support and they never gave me this HOST. Saved me a few hours for sure

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @thanks
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: lazar89nis

79520053

Date: 2025-03-19 11:31:01
Score: 7 🚩
Natty:
Report link

Ok. If you are seeing this from the future, and think you have a similar problem, and you are suspicious the issue might be due to a Viewport misbehavior or Pyqtgraph acting weird... It is very probably not the case.

After discarding that chance thanks to the comments, I was able to find the problem and it was entirely mine, a mathematical miscalculation on my program (I was positioning the parallel lines in regards to the reference one by only using the vertical distance between the points, and not the orthogonal distance [I am an idiot]).

The only useful coding related hint I can share for you to try to solve your problem in the future is: review whether you might using the same functions with different types of drawings (for example: the same distance translation function for entirely horizontal drawings and diagonal drawings).

Thanks to everyone that commented.

Cheers

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1): Cheers
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): have a similar problem
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: peputito

79520000

Date: 2025-03-19 11:10:57
Score: 4.5
Natty:
Report link

I tried installing with a different block on the computer and it went to a different error - I have a problem with tensorflow and Protobuf versions.

I tried tensorflow 2.10 and also 2.9 GPU but I can't find a suitable Protobuf version. I would appreciate help.

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): would appreciate
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: EfratSh

79519888

Date: 2025-03-19 10:30:45
Score: 10.5 🚩
Natty: 4.5
Report link

do you have any updates? I have the same issue.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (2.5): do you have any
  • RegEx Blacklisted phrase (0.5): any updates
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roman

79519883

Date: 2025-03-19 10:28:45
Score: 4
Natty:
Report link

This was a bug in the SDK, this will be fixed in an upcoming release

https://github.com/Dart-Code/Dart-Code/issues/5387

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Tijl Ivens

79519852

Date: 2025-03-19 10:20:39
Score: 4
Natty:
Report link

use [val] instead of [def] in gradle.

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

79519850

Date: 2025-03-19 10:19:38
Score: 5.5
Natty:
Report link

In my case it was the wrong path to python.exe.

With pointing the path variable to the python3\win32 folder I have the same error.

After setting path to python3\amd64 the 'pip install notebook' worked.

Reasons:
  • RegEx Blacklisted phrase (1): I have the same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same error
  • Low reputation (1):
Posted by: snowrunner

79519848

Date: 2025-03-19 10:19:37
Score: 4
Natty:
Report link

I have the same problem, but mine only happens whenever I log out and then log back into the app. It turns out that the msal.interaction.status is not deleted and remains in the session. I fixed it by clearing the session before running msalInstance.loginPopup().

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Whitelisted phrase (-2): I fixed
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jerrico Dela Cruz

79519839

Date: 2025-03-19 10:12:35
Score: 15.5 🚩
Natty:
Report link

I am facing the same issue. Were you able to fix it?

Reasons:
  • Blacklisted phrase (3): Were you able to fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammad Zafar

79519804

Date: 2025-03-19 10:00:31
Score: 6.5 🚩
Natty:
Report link

I am experiencing a similar issue with commonMain, JsMain, and iOSMain. Could you pls share the code and provide a detailed explanation?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you pls share the code
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Grok Digital

79519753

Date: 2025-03-19 09:40:25
Score: 8.5 🚩
Natty:
Report link

Can you please share DAG definition and logs?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please share
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you please share
  • Low reputation (1):
Posted by: Shiva Charan

79519744

Date: 2025-03-19 09:38:24
Score: 5.5
Natty:
Report link

The icon cannot be used as a JSX component, can you share the part of your code where you have used this 'icon'.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you share
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Harsh Deep

79519726

Date: 2025-03-19 09:32:22
Score: 13
Natty: 9
Report link

Same problem here mate, did you find any solution to this issue?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution to this
  • RegEx Blacklisted phrase (1): Same problem
  • RegEx Blacklisted phrase (2): any solution to this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Galen Veselinov

79519677

Date: 2025-03-19 09:16:18
Score: 6 🚩
Natty: 5.5
Report link

I can easily create a foreign table based on a view, but that table is useless - can't be queried because of an errror: "unable to establish size of foreign table mytable". Is there a way to make it work?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Liudmilla

79519647

Date: 2025-03-19 09:07:15
Score: 11.5 🚩
Natty: 5.5
Report link

Did you find a solution, I'm having the same question ?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same question
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: baha

79519632

Date: 2025-03-19 09:01:13
Score: 6.5
Natty: 7
Report link

On Meta Quest v74, the account dashboard doesn't list the accounts anymore. Does anyone know if there are ADB commands to get rid of the accounts prior to calling set-device-owner?

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MathPadawan

79519520

Date: 2025-03-19 08:14:01
Score: 6.5 🚩
Natty: 5.5
Report link

I have same problem on GCP.

message: Failed snapshot precheck for workload

I did everything what is here https://docs.kasten.io/latest/install/google/google.html#using-a-separate-gcp-service-account but VolumeSnapshotClass is not mentioned there. Why do i need VolumeSnapshotClass when I have gcp infra profile setup with service account all right compute.storageAdmin

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): I have same problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same problem
  • Low reputation (1):
Posted by: Martin Baláž

79519490

Date: 2025-03-19 08:03:58
Score: 5
Natty:
Report link

I've tried to add privacy files for each dependency used. And it worked for it.
But for flutter, I still have the issue. I tried to archive the project and opened it in order to save a privacy file inside "Product/Applications/Frameworks/Flutter.framework".
I am using Flutter v.3.7.9 becasue my project is on Dart v.2.19.6 and it is not possible to upgrade my project.

Do you have an exemple of this privacy file ?

Reasons:
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (2.5): Do you have an
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: AlKapuche

79519456

Date: 2025-03-19 07:50:54
Score: 6 🚩
Natty:
Report link

can you show your code that make you Only I can hear OpenAI audio while I’m sending it to the main channel

Reasons:
  • RegEx Blacklisted phrase (2.5): can you show your code
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: Phạm Quang Huy

79519429

Date: 2025-03-19 07:34:51
Score: 5
Natty:
Report link

Thank you for your response.

To clarify, we are indeed following best practices and using the official Microsoft WordPress container image on Azure Web App Service. Despite this, we are still facing issues when attempting to modify file and directory permissions via SSH.

Even when accessing the instance through SSH, we are unable to successfully change permissions using chmod 755 and chmod 644. We have also attempted using Kudu (Advanced Tools), but the issue persists.

Could you confirm if there are any restrictions in Azure Web App Service that prevent permission modifications? Additionally, is there any specific configuration that needs to be adjusted to allow these changes? enter image description here enter image description hereenter image description here

I have attached screenshots for reference.

Looking forward to your guidance.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1.5): Looking forward to your
  • Blacklisted phrase (1): is there any
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Altina Hoti

79519422

Date: 2025-03-19 07:29:50
Score: 4
Natty: 4
Report link

Seems to me an issue if the current version. guess the next version will fix this

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

79519387

Date: 2025-03-19 07:07:46
Score: 12
Natty: 7.5
Report link

Please did you find any solution to this?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution to this
  • RegEx Blacklisted phrase (2): any solution to this?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mary

79519367

Date: 2025-03-19 06:58:43
Score: 8 🚩
Natty: 6
Report link

Could you please elaborate on what you mean by "adding a setStatus(int code, String msg) method"?

Could you provide more details and perhaps an example of how you implemented this?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you please elaborate
  • RegEx Blacklisted phrase (2.5): Could you provide
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Daniele Marotta

79519336

Date: 2025-03-19 06:44:39
Score: 4
Natty:
Report link

I got it, it needed e.preventDefault() to stop the normal button click behavior.

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

79519306

Date: 2025-03-19 06:32:36
Score: 4
Natty:
Report link

I used another method as a work around. I used Flask API to do the OCR

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

79519241

Date: 2025-03-19 06:05:30
Score: 4.5
Natty: 5
Report link

However, I don't think this works if you're trying to debug code in a library function. Does anyone know how best to debug library code. My only idea is to copy the library code into the calling file and debug it there.

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andy Franklin

79519240

Date: 2025-03-19 06:05:30
Score: 4
Natty: 4
Report link

make sure there is no space before "run" sometimes this causes the issue

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

79519132

Date: 2025-03-19 04:46:15
Score: 5
Natty: 5.5
Report link

Is this what you're looking for? Check the page below.

https://android.googlesource.com/platform/frameworks/webview/+/f989a7846d5fe4116de1a0635a8aade09d2be7b2/chromium/java/com/android/webview/chromium/CookieManagerAdapter.java

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: qwertyfairy

79519076

Date: 2025-03-19 03:51:04
Score: 9 🚩
Natty: 4.5
Report link

I have the exact same issue but I only have it when I run the app on my real iPhone.
It also seem to have happened when I updated it to ios 18.3.2 which I cannot confirm using an emulator since that version is not downloadable yet. Moreover, I have a friend whose iPhone version is older and there the app works from TestFlight as well as the emulators with version such as 18.2.x.

I am really banging my head against the wall with this issue...
Any help would be appreciated.

PS. I tried the above steps but no success.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (3): Any help would be appreciated
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same issue
  • Low reputation (1):
Posted by: Emanuel Dellsén

79519042

Date: 2025-03-19 03:22:58
Score: 5.5
Natty:
Report link

I don’t have enough points to comment. Just a question for @MarkB and the accepted answer. How would you do this without ecs, both via the UI and terraform.

When creating a TG with type IP (ipv4) it allows to enter static IP. I want to get around this in case of a change in IP of the ec2 receiving traffic from the TG.

Reasons:
  • Blacklisted phrase (1): How would you
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • User mentioned (1): @MarkB
  • Low reputation (1):
Posted by: Hgrammer

79519036

Date: 2025-03-19 03:17:57
Score: 4
Natty: 4.5
Report link

for anyone who wants to find the official docs: https://www.mongodb.com/docs/manual/tutorial/query-embedded-documents/#match-an-embedded-nested-document

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

79519035

Date: 2025-03-19 03:14:55
Score: 6.5 🚩
Natty: 4.5
Report link

user14831455

enter image description here

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): user14831455
  • Low reputation (1):
Posted by: Pritish Ramesh Pawar

79519029

Date: 2025-03-19 03:09:54
Score: 4.5
Natty:
Report link

Could you integrate success from application with local instance of drawio already by replacing **embed.diagrams.net** with your own domain?

http://[my host]:8080/?embed=1&proto=json&spin=1

We are integrating also from our application to self-host drawio using docker however we saw it is keeping loading

![image](https://github.com/user-attachments/assets/f7249871-e0f7-4c8f-b11d-16150986bee7)

Any suggestion to resolve this issue would be very much appreciated!

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • RegEx Blacklisted phrase (2): Any suggestion
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Tú Uyên

79519004

Date: 2025-03-19 02:49:50
Score: 4
Natty:
Report link

I had the similar issue. Installing System.IO.Ports package fixed the issue for me.

enter image description here

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

79518981

Date: 2025-03-19 02:30:44
Score: 8.5 🚩
Natty: 5.5
Report link

I met the same problem. Have you figured it out?

Reasons:
  • RegEx Blacklisted phrase (3): Have you figured it out
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tao

79518980

Date: 2025-03-19 02:30:44
Score: 4.5
Natty:
Report link

I have fixed the issue by coming to this URL https://console.cloud.google.com/google/maps-apis/home?inv=1&invt=AbsaKA&authuser=0enter image description here

here you do this "hello world" and click on preview APIs

enter image description here

and then start playing with the code demo on jsfiddle and for some strange reason it enables the old "Places API" and start working everything

enter image description here

I have enabled it on here now that shows

enter image description here

there is something to do with "Places API" and "Places API (New)" https://console.cloud.google.com/google/maps-apis/apis/places-backend.googleapis.com/credentials

have a good evening and good luck troubleshooting this :)

Reasons:
  • Blacklisted phrase (1): good evening
  • Probably link only (1):
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Luca

79518926

Date: 2025-03-19 01:41:35
Score: 4.5
Natty:
Report link

enter image description here

please read the picture, you have some errors

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

79518924

Date: 2025-03-19 01:38:34
Score: 9 🚩
Natty: 6
Report link

I've been having this exact same issue. Did you end up finding a solution?

Reasons:
  • RegEx Blacklisted phrase (3): Did you end up finding a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ModernNeesh

79518906

Date: 2025-03-19 01:16:28
Score: 9 🚩
Natty: 5.5
Report link

Did you find a solution to your problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to your problem
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution to you
  • Low reputation (1):
Posted by: Júnior Michalski

79518889

Date: 2025-03-19 00:53:24
Score: 5.5
Natty: 7
Report link

I’m running into an issue with my own project that seems you already fixed in yours and could use some guidance. Could you point me to the steps or resources you used to fork the Fantom network with Ganache? I’m trying to set up a local blockchain and swap FTM for CUSTOM COIN, but I’m stuck. Any help would be awesome—thanks!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (1.5): m stuck
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Primea

79518835

Date: 2025-03-18 23:59:15
Score: 4.5
Natty: 6.5
Report link

You are an idiots with grand XY-troubles. Question was: how to show .hta file from .html w/o downloading it. Author didn't ask You about accessibility hta in browser - he did ask HOW TO DO? I develop .hta application and need normal simple and lightaccesible instrument for debug interface part. I need load/reload .hta in browser w/o rename file into .html each time for debugging. Can anybody reset youself brains from narcissism mode to work state and simply answer for question?

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Александров Александр

79518788

Date: 2025-03-18 23:10:05
Score: 4.5
Natty:
Report link

The answer is in the other post provided by @l3l_aze in the comment: I fetched an html page with linked jS files in the and that was the source of this problem.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @l3l_aze
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user3196181

79518769

Date: 2025-03-18 22:59:03
Score: 5.5
Natty: 3
Report link

create unforgettable travel experience by offering luxury tours and engaging shores journeys.if you interested in this please let us know here https://www.kairosoceancruiseline.com/

Reasons:
  • RegEx Blacklisted phrase (2.5): please let us know
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Babar khan

79518756

Date: 2025-03-18 22:46:00
Score: 5.5
Natty: 5
Report link

I was reading through the thread as part of my research project on enhancing Intelligent Traffic Management Systems (ITMS). Given that the K-Nearest Neighbors (KNN) algorithm is one of the nine used for Traffic Flow Prediction, I believe its ability to predict future values based on the similarity to nearby data points could significantly contribute to improving ITMS. Is it possible to make the prediction process even faster?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Madison Wisdom II

79518754

Date: 2025-03-18 22:42:59
Score: 4.5
Natty:
Report link

You can't use ScreenUpdating but there is a work around if you hide your "reporting" sheet. You can find the solution here: Equivalent of “ScreenUpdating” in Google Apps Script (equivalent VBA-GAS )

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

79518733

Date: 2025-03-18 22:16:55
Score: 4
Natty:
Report link

code look fine issue might be somewhere else

here is sandbox I tried https://codesandbox.io/p/devbox/peaceful-wing-7k654w?workspaceId=ws_Q5TTAYWhq3YSybYKpigpM8

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tejas Throat

79518729

Date: 2025-03-18 22:13:53
Score: 8.5 🚩
Natty: 4
Report link

Hey did you find out how to do this? I'm having the same issue trying to move an item to a drop list which i change from display : none to display : block, however the drop event isn't being triggered

Reasons:
  • RegEx Blacklisted phrase (3): did you find out
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Conor O'Malley

79518636

Date: 2025-03-18 21:06:39
Score: 9.5 🚩
Natty: 4
Report link

Did you find a solution to this problem? I am facing the same issue. The only thing I have changed is the agent IP, and as you said, the error occurs randomly...

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to this problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution to this
  • Low reputation (1):
Posted by: Lili Kami

79518427

Date: 2025-03-18 19:02:10
Score: 8 🚩
Natty: 5
Report link

Were you able to find the answer to why it was taking too much time?

Reasons:
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Emad Bin Abid

79518352

Date: 2025-03-18 18:17:00
Score: 4.5
Natty:
Report link

I have found this on YouTube shorts, it is regarding Null reference exception , it might help you

https://youtube.com/shorts/2A5Zk3es4Jo?feature=share

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: phani sai

79518334

Date: 2025-03-18 18:05:57
Score: 8.5 🚩
Natty: 6
Report link

I'm working on something similar but I'm not understanding what data is in the A, B, and D reference cells. Can you clarify that? Thank you!

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

79518284

Date: 2025-03-18 17:45:52
Score: 4
Natty:
Report link

resolved by removing editor.stickyScroll.maxLineCount thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Mario Lopes

79518282

Date: 2025-03-18 17:43:52
Score: 4
Natty: 4
Report link

I just applied load prop I mean this one loader={customLoader} and it was fixed properly

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

79518280

Date: 2025-03-18 17:43:51
Score: 9 🚩
Natty: 5.5
Report link

please can someone help me explaining this part of the code,
if [Index.1]>0

then if [Index.1] - 1 and [Index] = [Index]

then 0

else 1

else 1
I'm having the same issue has the example but I was not able to use the M code
thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can someone help me
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Low reputation (1):
Posted by: user29988187

79518275

Date: 2025-03-18 17:40:50
Score: 4.5
Natty: 6
Report link

Nice piece of code. How can I see only directories in the selection

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

79518270

Date: 2025-03-18 17:38:49
Score: 4
Natty:
Report link

I have been facing this challenge for almost a week I am so frustrated... I have tried everything here but still.

Reasons:
  • Blacklisted phrase (1): ve tried everything
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fuse Koda

79518269

Date: 2025-03-18 17:36:48
Score: 15.5 🚩
Natty: 5
Report link

I wanted to know if you could help me by giving me the code for how you logged in. I have the same problem and I don't know how to solve it.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (3): you could help me
  • RegEx Blacklisted phrase (2): I don't know how to solve
  • RegEx Blacklisted phrase (2): know how to solve
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Renato Tejada

79518244

Date: 2025-03-18 17:28:45
Score: 11.5 🚩
Natty: 5.5
Report link

I'm having the same issue and was wondering if you were able to resolve this issue?

Reasons:
  • Blacklisted phrase (2): was wondering
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SMcN89

79518231

Date: 2025-03-18 17:20:43
Score: 4
Natty:
Report link

@Ben Richards, I know this method and I like it a lot, the code looks very clear. Your code doesn't work for me, I have applied minor improvements and now it works.

# Define variables for readability
$IDMPath = "C:\Program Files (x86)\Internet Download Manager\IDMan.exe"
$DownloadPath = "C:\Users\Andrzej\Desktop\qap 22"
$FileName = "foo bar.exe"
$DownloadURL = "https://www.foobar2000.org/files/foobar2000-x64_v2.24.3.exe"

# Build the argument list as an array to avoid quoting issues
$Arguments = @(
     '/p'
     """$DownloadPath"""
     '/h'
     '/n'
     '/q'
     '/f'
     """$FileName"""
     '/d'
     """$DownloadURL"""
)

# Start IDM with arguments using Start-Process
Start-Process -FilePath $IDMPath -ArgumentList $Arguments -NoNewWindow -Wait

or

# Define variables for readability
$IDMPath = "C:\Program Files (x86)\Internet Download Manager\IDMan.exe"
$DownloadPath = "C:\Users\Andrzej\Desktop\qap 22"
$FileName = "foo bar.exe"
$DownloadURL = "https://www.foobar2000.org/files/foobar2000-x64_v2.24.3.exe"

# Build the argument list as an array to avoid quoting issues
$Arguments = @(
     "/p ""$DownloadPath"""
     '/h'
     '/n'
     '/q'
     "/f ""$FileName"""
     "/d ""$DownloadURL"""
)

# Start IDM with arguments using Start-Process
Start-Process -FilePath $IDMPath -ArgumentList $Arguments -NoNewWindow -Wait
Reasons:
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Ben
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Andy666

79518194

Date: 2025-03-18 17:07:39
Score: 12
Natty: 7
Report link

Having similar problems. How did you solve the problem?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve the problem
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Having similar problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: fixxel

79518081

Date: 2025-03-18 16:25:29
Score: 5
Natty:
Report link

looks like you have got Dialogflow embed code in google tag manager. i am having issues with GTM not recognizing <df-messenger> html component, saying its not standard. Could you describe how you have set up GTM with Dflow . Thanks for the help

V

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Could you describe how you
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vinod K

79518053

Date: 2025-03-18 16:10:25
Score: 7.5 🚩
Natty: 5
Report link

I have exactly the same problem using mdns_dart when WLAN disconnected. I can't catch the exception. Any news?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have exactly the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alexander Irion

79517973

Date: 2025-03-18 15:37:16
Score: 10.5
Natty: 7
Report link

I'm having the same problem. I'm using OAuth for Facebook. I've already verified my business, but it still says the app isn't active. What can I do?

Reasons:
  • Blacklisted phrase (1): can I do
  • Blacklisted phrase (1): I'm having the same problem
  • Blacklisted phrase (1): What can I do
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Renato Tejada

79517969

Date: 2025-03-18 15:36:15
Score: 4
Natty:
Report link

You can checkout this website. May be this example helps you to solve your issue. A JSChart is deployed on this link

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SEO Task

79517950

Date: 2025-03-18 15:30:13
Score: 4.5
Natty:
Report link

PhoneGap is now depreciated. Use https://volt.build/

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

79517849

Date: 2025-03-18 14:54:04
Score: 4
Natty:
Report link

Be careful because if you cut\paste the controls like @Tony H said you will keep the properties but lose all the events of each control.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Tony
  • Single line (0.5):
  • Low reputation (1):
Posted by: sgra

79517735

Date: 2025-03-18 14:19:54
Score: 11 🚩
Natty: 6.5
Report link

Did u find any solutions? Going through the exact same issue :/

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did u find any solution
  • RegEx Blacklisted phrase (2): any solutions?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did
  • Low reputation (1):
Posted by: Dadulescu Andrei

79517732

Date: 2025-03-18 14:18:53
Score: 4
Natty:
Report link

Where did you get "org.zaproxy.zap.extension.script.CryptoJS" from? That class does not appear to be in the ZAP codebase.

ZAP does not provide its own SHA265 implementaion, it uses the standard Java MessageDigest class. Any standard Java class can be accessed via ZAP scripts.

Reasons:
  • RegEx Blacklisted phrase (3): did you get
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Where did you
  • High reputation (-1):
Posted by: Simon Bennetts

79517716

Date: 2025-03-18 14:12:51
Score: 4.5
Natty:
Report link

I am having the same issue with a vue + typescript setup.
The Problem seems to be the standard plugins not loading correctly, since only the buttons that are considered plugins are not loading. I will keep you updated if I ever figure this out.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Low reputation (1):
Posted by: user29987524

79517694

Date: 2025-03-18 14:05:49
Score: 5.5
Natty: 5
Report link

as I have a problem with the suggested solution, i'm not sure if i cand make my question here, or i have to open a new 3d, in wich case i apologise for my error.

I usually use the above suggested function, but in our company we have many omonimous user
so , for those, first and second name is the same, but (if course) they have different email, userid, etc...

when i resolve my name (e.g. "Pinco Pallino") , in case multiple "Pinco Pallino" exist, myRecipient.Resolved return false

can you suggest me a way to have (let me say) an array as result with one (or all) the user(s) found ?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you suggest me
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user1653963

79517681

Date: 2025-03-18 14:01:48
Score: 4
Natty:
Report link

I also have an issue with the memory leak in LangGraph.

I created a GitHub issue for it: https://github.com/langchain-ai/langgraph/issues/3898

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tomas Herman

79517672

Date: 2025-03-18 13:58:46
Score: 4.5
Natty: 6
Report link

That worked here too, thanks!!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fernando Martins

79517622

Date: 2025-03-18 13:46:43
Score: 4
Natty: 4
Report link

I would like to do this as well. I can't find any documentation on a connection string.

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

79517590

Date: 2025-03-18 13:30:38
Score: 4
Natty: 4
Report link

What you are looking for has been answered here: https://stackoverflow.com/a/79517166/9365246
It loads a large file by n given number of rows without loading the whole file from S3

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): What you are
  • Low reputation (1):
Posted by: Damien BENESCHI