79660152

Date: 2025-06-10 09:28:30
Score: 4
Natty:
Report link

I got an answer for it by the creator on github.

https://github.com/colinhacks/zod/issues/4654#event-18065855866

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

79660151

Date: 2025-06-10 09:27:30
Score: 1
Natty:
Report link

maybe this helps
https://forum.posit.co/t/find-the-name-of-the-current-file-being-rendered-in-quarto/157756/2

from @cderv's answer :

knitr has knitr::current_input() function. This will return the filename of the input being knitted. You won't get the original filename because it gets processed by Quarto and an intermediate file is passed to knitr but it is just a matter for extension so this would give you the filename

please note that the name of the intermediate file has spaces and parentheses replaced with hyphens (-), so something like Ye Olde Filename (new) becomes Ye-Olde-Filename--new-

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @cderv's
  • Low reputation (1):
Posted by: Bogdan Micu

79660141

Date: 2025-06-10 09:22:28
Score: 2.5
Natty:
Report link

you just have to add Dashboard UID and Panel ID, it should be present there by default so, not deleting it will fix the issue.

screenshot

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

79660133

Date: 2025-06-10 09:19:27
Score: 4.5
Natty:
Report link

i also have this error but still i can't solve the problem

Reasons:
  • RegEx Blacklisted phrase (1): i also have this error
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Esmatullah

79660132

Date: 2025-06-10 09:18:26
Score: 1.5
Natty:
Report link

Hashes are not reversible. They do allow collisions.

So using compression is the best idea. If it does not work, you have to accept that sometimes it's not possible.

What may be possible is to make the string generation shorter ; or split the string and transmit parts one at a time.

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

79660128

Date: 2025-06-10 09:16:26
Score: 1
Natty:
Report link

Starting with Xcode 15 and later, Apple introduced visionOS support, and some React Native libraries (including react-native-safe-area-context) have updated their podspecs to include visionos as a target platform. However, if your CocoaPods version, Expo SDK, or Xcode setup is outdated or misconfigured, it may not recognize this method, leading to the error. As your question is not having much details I can suggest you to do these and try.

  1. Update Expo CLI and SDK

  2. Update CocoaPods

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

79660114

Date: 2025-06-10 09:02:21
Score: 1
Natty:
Report link

I don't think there's a way to have that information.
The reason is, that the filesystem does not necessarily support that notion. Typically, how would a NFS drive work with that ? It would need to redirect the calls to the remote server.

A problem can be, that the physical drive has internal caches that are NOT flushed on request, and therefore data is still NOT actually written after the OS made the flush request.
In other cases, one drive is replicated into 2 others, with them being used as check, so if the data is written in the first one but not yet in the replicate, then the data is not actually stored.

This notion is the base of the "durability" issue in databases. That's why DB system are so difficult to manage, and some system show huge performance gain … simply because they ignore it.

More info : https://en.wikipedia.org/wiki/Durability_(database_systems)

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

79660109

Date: 2025-06-10 09:00:21
Score: 1
Natty:
Report link

Although it's not automated (but perhaps could be), another option is to open the file of interest in vim and simply type g;, which will jump you to the last location in that file.

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

79660108

Date: 2025-06-10 08:59:20
Score: 2.5
Natty:
Report link

Unfortunately, based on the available documentation and actual API responses from GetVehAvailRQ 2.0, there is no specific rate preference (RatePrefs) parameter that guarantees the return of both SubtotalExcludingMandatoryCharges and MandatoryCharges alongside ApproximateTotalPrice.

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

79660098

Date: 2025-06-10 08:51:18
Score: 1
Natty:
Report link

Since the order of evaluation of the arguments at the call site is indeterminate, I need guarantees that filename.wstring() does not modify errno.

The C++ standard does not give you this guarantee.

@BoP Thanks, I know. This would require additional lines of code that I want to avoid if they can be avoided easily.

– j6t

I am afraid it is the only way. **(Lines of source code != more code in executable.)**

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @BoP
  • High reputation (-2):
Posted by: 0___________

79660096

Date: 2025-06-10 08:49:18
Score: 0.5
Natty:
Report link

DSA Complexity means how much time and space (memory) a Data Structure or Algorithm (DSA) needs to solve a problem.


💡 Imagine this:

You're solving a puzzle.


📦 Types of Complexity:

  1. Time Complexity

    • How fast an algorithm runs as the input gets bigger.

    • Example:

      • If you check each number in a list of 10 elements, it takes 10 steps.

      • For 100 elements, it takes 100 steps.

      • This is called O(n) — "linear time".

  2. Space Complexity

    • How much extra memory the algorithm uses while running.

    • Example:

      • If your code stores 5 numbers no matter how big the input is, the space is fixed → O(1)

🔢 Common Time Complexities:

Complexity Meaning Example

O(1) Constant time Accessing one item from an array

O(log n) Logarithmic Binary search

O(n) Linear time Loop through an array

O(n²) Quadratic Nested loops (e.g., bubble sort)

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

79660095

Date: 2025-06-10 08:48:18
Score: 1
Natty:
Report link
Step Action
1 Ensure GPU (CUDA) runtime
2 Install dependencies:
pip install imagebind llama-index vllm
3 Download LLaMA weight files (from HF or Meta office)
4 Download ImageBind “huge” model checkpoint
5 Point your script’s paths to both checkpoints
6 Run again in GPU environment
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: CJWang

79660092

Date: 2025-06-10 08:46:17
Score: 3.5
Natty:
Report link

According to documentation it should be present as a "Redirect input from" option.

enter image description here

https://www.jetbrains.com/help/idea/run-debug-configuration-java-scratch.html#run_config_main_options

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

79660083

Date: 2025-06-10 08:43:16
Score: 1
Natty:
Report link
  1. yum remove mariadb mariadb-server

  2. rm -rf /var/lib/mysql If your datadir in /etc/my.cnf points to a different directory, remove that directory instead of /var/lib/mysql

  3. rm /etc/my.cnf the file might have already been deleted at step 1

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

79660080

Date: 2025-06-10 08:41:15
Score: 4
Natty:
Report link

let me search and i will inform you.

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

79660068

Date: 2025-06-10 08:35:12
Score: 16 🚩
Natty: 6
Report link

Did you find any solution? I have the exact same problem 3 years later and can't find a solution online :(

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): :(
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (2): can't find a solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find any solution
  • Low reputation (1):
Posted by: Andreas K

79660066

Date: 2025-06-10 08:31:11
Score: 2
Natty:
Report link

One effective way, delete the following files.

YourProject/.idea/gradle.xml

Then reselect the association.

gradle.xml

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

79660064

Date: 2025-06-10 08:30:10
Score: 1.5
Natty:
Report link

I tested the same code that you have pasted on my machine and it did work on my machine (windows 11). Now there could be two reasons. I would like you to go through the listed options below.

1. Add this two lines in your app.py: and build the image again to test
if _name_ == "_main_":

app.run(debug=True, host="0.0.0.0", port=5000)

2. Check your firewall settings

And if it still doesn't work, please go through the below Docker forum link:
https://forums.docker.com/t/docker-curl-56-recv-failure/54172/6

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

79660059

Date: 2025-06-10 08:24:09
Score: 2.5
Natty:
Report link

My solution for replacing multiple characters is this one
txt= txt.replaceAll(String.valueOf((char)(8239)), " ");

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

79660055

Date: 2025-06-10 08:22:09
Score: 2
Natty:
Report link

You can go to the model page on Hugging Face, click on "Files and versions," and check the config.py file. In the architectures field, you will find that the model "nreimers/MiniLM-L6-H384-uncased" is based on the "BertModel".

For example, you can refer to the config.json here: https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2/blob/main/config.json#L4

To view the class definition and understand its full implementation, you can visit Hugging Face’s GitHub repository at the following link: https://github.com/huggingface/transformers/blob/v4.52.3/src/transformers/models/bert/modeling_bert.py

Additionally, for more detailed information about the BERT model, you can check the official Hugging Face documentation here: https://huggingface.co/docs/transformers/model_doc/bert

This documentation will give you a better understanding of the model's structure, parameters, and usage.

Reasons:
  • Blacklisted phrase (1): This document
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sean Wu

79660054

Date: 2025-06-10 08:20:08
Score: 3.5
Natty:
Report link

This was fixed for me after upgrading flutter to the newest version (3.32.2).

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

79660045

Date: 2025-06-10 08:13:06
Score: 1
Natty:
Report link

i did it using

use Native\Laravel\Facades\ChildProcess;

ChildProcess::start(
    ['php', 'artisan', 'reverb:start'],  // $cmd
    'reverb',                            // $alias
    null,                                // $cwd (optional, set current dir)
    null,                                // $env (optional)
    true                                 // $persistent
);
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: eman_invok05

79660042

Date: 2025-06-10 08:11:05
Score: 1.5
Natty:
Report link

enter image description here

I was having an old iOS version installed it was 18.1.

I just selected and clicked on - to delete it using Xcode

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

79660041

Date: 2025-06-10 08:11:05
Score: 0.5
Natty:
Report link

There are many use cases where additional processing happens after the main request handling is complete, typically in web servers, APIs, or distributed systems:

For example -

  1. Logging - Record request/response data after handling

  2. Analytics -  Send metrics to Prometheus, Datadog, etc.

  3. Security Auditing - Capture actions for regulatory compliance

  4. Asynchronous Notification - Trigger follow-up actions in background like publlishing messages to Message Queues like Kafka.

  5. Resource Cleanup - Clean up resources related to request

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

79660038

Date: 2025-06-10 08:09:05
Score: 1.5
Natty:
Report link

In my case a Citrix icaclient installation caused the issue.

Affected applications were Thunderbird and VLC

sudo dpkg --purge icaclient

fixed the issue, no reboot was required.

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

79660033

Date: 2025-06-10 08:07:03
Score: 7 🚩
Natty:
Report link

Снеси с помощью Биоса все и установи все как тебе удобно,для себя

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Серёжа

79660008

Date: 2025-06-10 07:46:59
Score: 1.5
Natty:
Report link

So I found a solution, by removing this line

Driver.Manage().Window.Maximize();

the problem has now vanished.

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

79660007

Date: 2025-06-10 07:42:58
Score: 4
Natty:
Report link

Use Ctrl-B and it should show up

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

79660006

Date: 2025-06-10 07:42:58
Score: 0.5
Natty:
Report link

translate() function at config time, use a static i18n object for label

label: {
  en: 'Color',
  de: 'Farbe',
  fr: 'Couleur',
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Ravi Chauhan

79660002

Date: 2025-06-10 07:40:57
Score: 2.5
Natty:
Report link

It seems that using localhost is not allowed. its current Microsoft answer :


Valid website URL required (e.g. contoso.com, www.contoso.com, contoso.site)

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

79659993

Date: 2025-06-10 07:32:55
Score: 2.5
Natty:
Report link

Hi I've tried multiple options but still falls back to the error 'smtpclientauthentication' is disabled for this tenant. ... please visit .../smtp_auth_disabled...

But when I spoke to the IT, they told me Microsoft is ending this later 2025.

So I went back to the MailKit discussion and there they told me to add the right smtp permissions.

So now I am totally confused..

I connect using the scope https://outlook.office365.com/.default.

I have added Graph (user.read, smtp.send, offline_access, openid, profile) and Office 365 Exhange online (Mail.send SMTP.sendasapp).

There I see IT administrator didn't grant smtp.sendasapp yet.

But again.. I should be able to connect by oauth2.. or are there other permissions to configure?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: John Schellingerhout

79659987

Date: 2025-06-10 07:28:54
Score: 2
Natty:
Report link

How to Open Excel Without Running Workbook_Open Macro

  1. Open Excel → Go to Trust Center → Disable macros with notification.

  2. Or, hold Ctrl while opening Excel to launch in Safe Mode.

  3. Then open your file safely—macros won’t auto-run.

ESA Yacht Party Dubai

Enjoy luxury yacht rentals, thrilling Jet Ski dubai rides, and relaxing Dhow Cruises. Over 30 yachts for unforgettable events on Dubai’s waters.

Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: ESA Yacht Party Dubai

79659976

Date: 2025-06-10 07:20:52
Score: 2
Natty:
Report link

You can use webview flutter to inject your js code

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

79659968

Date: 2025-06-10 07:16:51
Score: 3
Natty:
Report link

If you are not on a plan that supports direct link, I imagine Vimeo would check (and block it) before loading direct link, even if you format it correctly.

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

79659965

Date: 2025-06-10 07:16:51
Score: 0.5
Natty:
Report link

adjust paths as needed.

choco install strawberryperl
REM add to path C:\Strawberry\perl\bin
REM set PKG_CONFIG_PATH C:\vcpkg\installed\x64-windows\lib\pkgconfig
REM ensure VCPKG_ROOT is set C:\vcpkg
REM update pc files.
vcpkg.exe integrate install 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dave Horner

79659961

Date: 2025-06-10 07:13:50
Score: 1
Natty:
Report link

In my case, installing the following package solved the problem:

Microsoft.EntityFrameworkCore.Tools

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

79659957

Date: 2025-06-10 07:12:50
Score: 3
Natty:
Report link

This is a bad design, why use the same lambda to poll different queues?

There is no cost when the lambda is not running, why not create separate lambdas for queue A and queue B

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

79659954

Date: 2025-06-10 07:10:49
Score: 0.5
Natty:
Report link

Can't run php artisan reverb:start manually in an .exe.

Use Native::backgroundProcess('php artisan reverb:start')->run(); in launch() to auto-start Reverb silently when the app starts.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): Can't
Posted by: Ravi Chauhan

79659950

Date: 2025-06-10 07:08:49
Score: 2.5
Natty:
Report link

First: try to upgrade your sdk and flutter: mv android android2

Second: flutter create --platform android .

Third: flutter pub get

hope this clear things

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

79659943

Date: 2025-06-10 07:03:47
Score: 4
Natty:
Report link

You can read this for more understanding

https://medium.com/@sdycode/event-channel-method-channel-in-flutter-e6f697472189

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Koofng

79659935

Date: 2025-06-10 06:56:44
Score: 6.5 🚩
Natty: 4.5
Report link

As you said i tried the lowering the swd frequency in stm32cubeprogrammer from 4 Mhz to lower. Its now connected. but what is the reason it goes disconnected as of my application and what are the ways to get rid of it here after. kindly help me with that

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (3): kindly help
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Santhosh

79659934

Date: 2025-06-10 06:56:44
Score: 1
Natty:
Report link

When you insert into an table it returns to you INSERT oid count

The oid is the object identifier of the newly inserted row and count is the number of the rows inserted. Since the PostgresSQL 12, oid's are deprecated that's way it always returns zero.

If you want to use oids then it will only work in PostgresSQL < 12

and do so create the table as below

CREATE TABLE users (
    id SERIAL PRIMARY KEY,
    username VARCHAR(50) UNIQUE NOT NULL,
) WITH OIDS;
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When you in
  • Low reputation (1):
Posted by: yash gorde

79659928

Date: 2025-06-10 06:50:43
Score: 2.5
Natty:
Report link

This is maybe because your flutter version is not configured with compatible gradle version.

  1. Try changing the gradle version in gradle-wrapper.properties file.
  2. Use fvm
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jainam Barbhaya

79659923

Date: 2025-06-10 06:46:42
Score: 2.5
Natty:
Report link

For me, the issue was leaving "Based on dependency analysis" checked by default. Once I unchecked it, the dSYM started uploading.

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

79659920

Date: 2025-06-10 06:45:41
Score: 5
Natty: 6
Report link

Do you know if the filter and/or search functionality was finally implemented in ActiveCollab?

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

79659913

Date: 2025-06-10 06:42:40
Score: 1
Natty:
Report link

Delete cache file in flutter/bin/ And run flutter key word in terminal or cmd. This will reconfigures dart.

It worker for me ✅.

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

79659909

Date: 2025-06-10 06:38:39
Score: 1
Natty:
Report link

Delete cache file in flutter/bin/ And run flutter key word in terminal or cmd. This will reconfigures dart.

It worker for me ✅.

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

79659898

Date: 2025-06-10 06:35:38
Score: 0.5
Natty:
Report link

1. Does every app that wants to stay logged in longer than 15 minutes need a refresh token? Short answer: Yes, if you want short-lived access tokens (e.g., 15 minutes) and users to stay logged in longer, you need refresh tokens.

Why 15 minutes? JWTs are usually short-lived for security reasons:

If a JWT is stolen, it can be used until it expires.

A 12-hour token is risky: an attacker who steals it has a long window to act.

Why refresh tokens help:

Stored securely (e.g., HttpOnly cookie)

Used to request new access tokens after expiry

Can be revoked or rotated

Reduces risk if access tokens are short-lived

So is revocation the only reason? No. There are two core advantages to refresh tokens:

Revocation: Allows you to block compromised sessions.

Token Renewal Pattern: Allows access tokens to stay short-lived while keeping users logged in.

By keeping the refresh token in an HttpOnly cookie, and access token in memory, you reduce attack surface. That is a security advantage, not just an implementation detail.

So yes — you’re right — the reduced exposure of the access token is a key advantage of using refresh tokens, even if often under-emphasized.

2. Can refresh tokens be stateless by including identity claims? Is giving up revocation a security flaw? Yes, technically you can make refresh tokens stateless, just like JWTs:

Encode user ID, issued at, etc. inside the refresh token.

Verify and issue a new access token without hitting the DB.

But... this is a security tradeoff.

Pros: Fully stateless system: Fast, scalable, simple.

No DB dependency for token validation.

Cons: You can’t revoke refresh tokens (i.e., no session management).

If the refresh token is stolen, it’s valid until it expires.

You can’t detect token reuse (which can signal theft).

So yes, it is a security flaw, but whether it’s acceptable depends on your threat model. If you can tolerate the risk (e.g., internal tools, low-impact systems), it may be fine. But in public-facing or high-value systems, revocation is typically essential.

3. If I’m not revoking, is there a reason to use refresh tokens at all? If you never revoke, and don't plan to store refresh tokens, then:

You could just issue new access tokens each time a request comes in.

But that has some major caveats:

You need to validate the current access token to know it's legit before issuing a new one.

You’re encouraging long-lived sessions without real control over them.

Refresh tokens offer these benefits even without revocation:

A separate channel/token for renewing access (i.e., don’t need to expose credentials or long-lived access tokens).

A safe way to handle silent re-authentication (e.g., SPA rehydrating session on page load).

Reduced attack surface: access token can live only in memory, refresh token in cookie.

So even without revocation, refresh tokens help segregate responsibilities: access = use the app; refresh = renew session. That separation is inherently valuable.

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

79659894

Date: 2025-06-10 06:31:37
Score: 1.5
Natty:
Report link

Make sure you added a shebang at the top of your file

#!/bin/bash
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: luQ

79659892

Date: 2025-06-10 06:30:37
Score: 2
Natty:
Report link

You need to upgrade your Minimum Deployments in Xcode.

For me it was 12.0

enter image description here

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

79659873

Date: 2025-06-10 06:13:33
Score: 1.5
Natty:
Report link

In Settings > Project Structure you can set folders as Sources, which means the modules in those folders would be importable.
https://i.sstatic.net/IY8y7eFW.png

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

79659866

Date: 2025-06-10 06:09:32
Score: 0.5
Natty:
Report link

When python loads the modules, it doesn't loads main block. Hence when you try to import celery_app in other file, it logs none.

Fix:

control_plane/app.py

def create_celery(app=None):
    # your celery config
    return celery

celery_app = create_celery(app)

if __name__ == "main":
    print("Celery app initialized::::::::::::::::::", celery_app)
    app.run(debug=True)

execution_plane/tasks.py

from control_plane.app import celery_app
from celery.signals import task_prerun, task_postrun
from control_plane.extensions import db

print("Celery app initialized::::::::::::::::::", celery_app)

Now, when you try to import the celery_app in another file, it should work as expected

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Niral Ajmera

79659862

Date: 2025-06-10 06:07:30
Score: 7 🚩
Natty: 6
Report link

I'm also encountering this issue but I can't get pass it. Can you share a more detailed answer on the fix you did? The WDIO automatic handling of dialog introduced in v9 does not seem to work on my end.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share
  • RegEx Blacklisted phrase (1.5): fix you did?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kenneth Kim

79659856

Date: 2025-06-10 05:58:27
Score: 6.5 🚩
Natty: 5.5
Report link

Did any of these solutions work?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did any of these solution
  • Low reputation (1):
Posted by: Sreenitti Sankar

79659852

Date: 2025-06-10 05:51:25
Score: 0.5
Natty:
Report link

Thanks to all the help in the comments, specially @Shawn, I figured out it was that the string had literal single quotes, so it wasn't a path per-se. I found another answer to remove the quotes using eval. So now I add eval image_file=$image_file right after inputting the file and we are all set! It also works with paths that don't have spaces, so ready to run!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-2): I figured out
  • Has code block (-0.5):
  • User mentioned (1): @Shawn
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: ecotechie

79659847

Date: 2025-06-10 05:46:23
Score: 1
Natty:
Report link

You can reference the bean explicitly in your SQL endpoint like this:

to("sql:insert into camel_test (msgid, dlr_body) VALUES ('some_id','test')?dataSource=#dataSource")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Waheed Khan

79659846

Date: 2025-06-10 05:45:23
Score: 2.5
Natty:
Report link

Visual Studio Code
Do you use Visual Studio Code for this project? You may try this:

Reasons:
  • Whitelisted phrase (-2): try this:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: khewdev

79659842

Date: 2025-06-10 05:43:22
Score: 1
Natty:
Report link

Check if your .npmrc has below flag that prevents package-lock.json update.

package-lock=false
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bhaskar Reddy

79659839

Date: 2025-06-10 05:41:20
Score: 7 🚩
Natty: 6
Report link

I tried to fetch all dags but it is not fetching. Any idea?

Reasons:
  • Blacklisted phrase (1): Any idea?
  • 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: user30763000

79659835

Date: 2025-06-10 05:34:18
Score: 1.5
Natty:
Report link

I checked wkhtmltopdf, it is used as a lambda layer.

If you just want to use it without modification. You don't need to download it, just add the layer in your lambda.

  1. Open the Functions page of the Lambda console.
  2. Choose the function.
  3. Scroll down to the Layers section, and then choose Add a layer.
  4. Input Specify an ARN
  5. Choose Add.

https://docs.aws.amazon.com/lambda/latest/dg/adding-layers.html

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

79659834

Date: 2025-06-10 05:33:12
Score: 9 🚩
Natty:
Report link

did you find a solution for this?

Having the same issue.

For me, the orders do not show up in the trade log.

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Having the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you find a solution for this
  • Low reputation (1):
Posted by: txss

79659820

Date: 2025-06-10 05:20:07
Score: 7.5 🚩
Natty:
Report link

Not sure what you mean, can you send a screen shot with an arrow and text box to explain?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you send
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Bruno Vincent

79659819

Date: 2025-06-10 05:20:07
Score: 0.5
Natty:
Report link

-- check for blockings on the server

select * from sysprocesses where blocked <>0

-- check lead blocker

select loginame, cpu, memusage, physical_io, * from master..sysprocesses a where exists ( select b.* from master..sysprocesses b where b.blocked > 0 and b.blocked = a.spid ) and not exists ( select b.* from master..sysprocesses b where b.blocked > 0 and b.spid = a.spid ) order by spid

select 'Lead Blocker', der.session_id as BlockedSessions,convert(numeric(20,2),der.wait_time/1000) as WaitSecs,

der.blocking_session_id as Blocker,der.wait_type,last_wait_type,

wait_resource,cast([text] as varchar (max)) as query_running,command

from sys.dm_exec_requests der

CROSS APPLY sys.dm_exec_sql_text (der.sql_handle) t

where der.session_id in (select blocking_session_id from sys.dm_exec_requests where session_id > 50)

union

select 'victim', der.session_id as BlockedSessions,convert(numeric(20,2),der.wait_time/1000) as WaitSecs,

der.blocking_session_id as Blocker,der.wait_type,last_wait_type,

wait_resource, cast([text] as varchar (max)),command

from sys.dm_exec_requests der

CROSS APPLY sys.dm_exec_sql_text (der.sql_handle) t

where der.blocking_session_id >0

--To check query ran by SPID

dbcc inputbuffer(90)

kill 98

kill 1275

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

79659815

Date: 2025-06-10 05:18:07
Score: 1
Natty:
Report link

Mark pointed out the problem was with using .index which only returns the first occurrence.

Alternately you can either:

  1. use range(theLengthOfYourList) and loop a position through that.

  2. or use a list comprehension with enumerate() which will return all instances where the value you are looking for occurs without having to use loops.

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

79659806

Date: 2025-06-10 05:06:03
Score: 2
Natty:
Report link

What worked for us: Deleted the intermediary files (which probably got corrupted due to unintentional running of 2 instances simultaneously)

These intermediary files were in the /tmp directory (rm -rf /tmp/drill). The configured path, if not /tmp, can be checked in conf dir.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: mittal

79659791

Date: 2025-06-10 04:46:58
Score: 3.5
Natty:
Report link

POS Credit System

I think this suits you
Reasons:
  • Probably link only (1):
  • Low length (2):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Кредит Вксинский

79659787

Date: 2025-06-10 04:36:56
Score: 1
Natty:
Report link

res is defined as a local variable inside function subsets, so it only exists inside that function. When the function exits, the variable is destroyed. When you try and access res outside of the function, it doesn't exist, so Lua creates a new empty table for you. That is the problem with languages where you don't have to define variables before you use them. You get these weird run time errors that a robust language would detect at compile time. You need to either define res as a global variable, or define it inside the calling function and pass it to subsets.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ashley West

79659774

Date: 2025-06-10 04:18:52
Score: 3
Natty:
Report link

teshirt remove

header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Joshus Gonzales

79659755

Date: 2025-06-10 03:46:44
Score: 2.5
Natty:
Report link

//XJSX🧙🏻‍♂️

var T0KEN = '7342010265:AAEUFdofFrooJ1u9tqbo4Ef2-0X6jopHc7c';

var CHATID = "7586877757";

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

79659754

Date: 2025-06-10 03:41:42
Score: 6 🚩
Natty: 5
Report link

I have same problem when i provide ODATA Feed API from business central to overcome this problem i put ODATA feed API (upto odata V4/) in service document location in odata feed connector and remaining API(After odata V4) was put in resource path.

Reasons:
  • 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
  • Single line (0.5):
  • Low reputation (1):
Posted by: Divyaraj Rathod

79659750

Date: 2025-06-10 03:39:41
Score: 2
Natty:
Report link

To extract only the plain text from an HTML element using JavaScript, the best and most reliable approach is to use .textContent.

Here’s how you can do it:

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Md Iftekhar Rahman Khan

79659749

Date: 2025-06-10 03:38:40
Score: 2.5
Natty:
Report link

None of the above answers make any physical sense. Why should I look for maximal variance really? Intuitively isn’t more variance means more noise? Wish some sensible person who is trained to think and not regurgitate mathematics jingo would have said “we are looking for a variable that is responsible for an observation ie its values are correlated in some sense to observation like variable ‘quantity of sugar’ to observation ‘diabetes’. So more the observations you make, more is the variability because some eat less sugar, some more and not everyone who eats more sugar is necessarily diabetic. But there is definitely a correlation. But if sugar was not responsible for diabetes and if I sample thousands of people how would the data look? Variance of observable makes no sense

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rn56

79659748

Date: 2025-06-10 03:38:40
Score: 3
Natty:
Report link

closest to this i can think of is: https://github.com/MeisamAmini/wikipedia-link-remover

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

79659738

Date: 2025-06-10 03:21:37
Score: 1
Natty:
Report link

Make use to add this line in your CrudControler class not at the top of your php file

    use \Backpack\EditableColumns\Http\Controllers\Operations\MinorUpdateOperation;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tariiq Dusmohamud

79659737

Date: 2025-06-10 03:14:35
Score: 1
Natty:
Report link

For me, the issue was that I was using Yarn Plug 'n' Play and surprise surprise, Prisma was looking for node_modules. The solution was delete the pnp files, and set nodeLinker with a .yarnrc.yml file to node-modules.

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

79659734

Date: 2025-06-10 03:09:33
Score: 2
Natty:
Report link

My error, similar to this, was when I tried to update a record in a table that had a compound primary key at the database but had only one in the model. Please check whether your model reflects that of the database.

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

79659725

Date: 2025-06-10 02:57:30
Score: 1
Natty:
Report link
  1. RedirectToAction() issues a redirect, it doesn’t call the method directly.

  2. Use return GameRoom(); or return View("GameRoom") to stay on the server.

  3. If sending a parameter, make sure the target method expects it.

  4. Use browser and server logs to confirm what requests are made after the redirect.

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

79659721

Date: 2025-06-10 02:50:29
Score: 1.5
Natty:
Report link

When applying range limits to scale_y_*, this affects the data used itself. https://ggplot2.tidyverse.org/articles/faq-bars.html#axes-and-axis-limits

This might be the answer you're looking for.

library(ggplot2)

ggplot(
  data = economics,
  aes(x = date, y = pop)
) +
  geom_rect(
    mapping = aes(
      xmin = as.Date("1990", "%Y"),
      xmax = as.Date("2000", "%Y"),
      ymin = 1,
      ymax = 400000
    ),
    fill = "grey90",
    alpha = 0.25
  ) +
  geom_line() +
  theme_minimal() +
  scale_y_log10() +
  coord_cartesian(ylim = c(2e5, 4e5))

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Breeze

79659712

Date: 2025-06-10 02:36:26
Score: 3
Natty:
Report link

from openpyxl import Workbook

from openpyxl.styles import Alignment, Font, PatternFill

from openpyxl.utils import get_column_letter

# Crear un nuevo workbook y seleccionar la hoja activa

wb = Workbook()

ws = wb.active

ws.title = "Turno C - Junio 2025"

# Estilo general

header_font = Font(bold=True, size=12)

turno_font = Font(size=10)

align_center = Alignment(horizontal='center', vertical='center', wrap_text=True)

day_fill = PatternFill(start_color="DCE6F1", end_color="DCE6F1", fill_type="solid")

# Título

ws.merge_cells('A1:G ​:contentReference[oaicite:0]{index=0}​

Reasons:
  • Blacklisted phrase (2): Crear
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: carlos Cortes Barrera

79659710

Date: 2025-06-10 02:28:24
Score: 0.5
Natty:
Report link

seems like shipmentSpecialServices is an object, not an array

"shipmentSpecialServices": {
  "specialServiceTypes": ["SATURDAY_DELIVERY"]
}

https://developer.fedex.com/api/en-us/guides/api-reference.html#shipmentlevelspecialservicetypes

api docs

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Jeremy Fiel

79659707

Date: 2025-06-10 02:20:23
Score: 2.5
Natty:
Report link

It`s not the solution, but for the web this Json formatter os Very good: It`s not the solution, but for the web this Json formatter os Very good: https://jsonformatter.tech/

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Estevão Jordão

79659706

Date: 2025-06-10 02:20:22
Score: 9.5 🚩
Natty: 4
Report link

I'm getting this same error today. I've spent 4 days trying to figure it out to no avail. Did you ever solve the issue?!?!

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever solve the
  • RegEx Blacklisted phrase (1.5): solve the issue?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Northrnrhodes

79659694

Date: 2025-06-10 01:59:18
Score: 0.5
Natty:
Report link
I can’t express enough how transformative my experience has been through therapy. The guidance and support I received have helped me navigate some of life’s toughest challenges with a clearer mind and a more hopeful outlook. The therapist truly created a safe space where I felt heard and understood. I highly recommend seeking counseling—it's an invaluable journey towards personal growth and healing!

Individual and Family Counseling is provided by Kathleen Oravec, an experienced Marriage & Family Therapist. She helps couples, families and individuals with their relationship and psychological issues.

  If you’re feeling overwhelmed by changes in your professional life, relationships, or your own sense of self, I am here to help you shift your perspective and approach so that you can feel confident, empowered, and take action.

Together, we’ll discover what is holding you back, get clear on what you truly want, and map out a strategic plan to get you the results you desire.
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Melonie San Filippo

79659690

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

Happy to announce that I have figured it out !

Key insight came from : https://github.com/eythaann/Seelen-UI/blob/b5581ab5e714b4e69e7d6fb8b871ab37e094dea3/src/background/modules/tray/application.rs#L442

Where I observed that the IUIAutomationElement3 had a method named ShowContextMenu(). I had seen this before but having never dealt with COM objects before I didnt know how to use it. Also I noticed in their implementation that they are using ShowWindowAsync(hWnd_Overflow, 5) once and that is enough for ShowContextMenu() to work. Turns out you dont need the window to be actually visible inorder for ShowContextMenu(). And then they are hiding it just like in the question.

A nice blog on UIAutomationClient : https://scorpiosoftware.net/2024/03/26/the-power-of-ui-automation/

And the interop library on nuget (You can also do without it by adding a COM reference using Visual Studio) : https://www.nuget.org/packages/Interop.UIAutomationClient.Signed#versions-body-tab

So here's my implementation:

using System.Runtime.InteropServices;
using Interop.UIAutomationClient;

[DllImport("user32.dll", SetLastError = true)]
public static extern IntPtr FindWindow(string className, string windowName);

[DllImport("user32.dll", SetLastError = true)]
public static extern IntPtr FindWindowEx(IntPtr hWndParent, IntPtr hWndChildAfter, string className, string windowName);

[DllImport("user32.dll", SetLastError = true)]
public static extern int ShowWindowAsync(IntPtr hWnd, int nCmdShow)

void Main() 
{
    IntPtr hWnd_Outer = FindWindow("TopLevelWindowForOverflowXamlIsland", null);
    IntPtr hWnd_Inner = FindWindowEx(hWnd_Outer, IntPtr.Zero, "Windows.UI.Composition.DesktopWindowContentBridge", null);

    CUIAutomation ui = new();
    const int classPropertyId = 30012;
    var innerIconContainer = ui.ElementFromHandle(hWnd_Inner);
    var icons = innerIconContainer.FindAll(TreeScope.TreeScope_Children, ui.CreateTrueCondition());

    var icon = icons.GetElement(6) as IUIAutomationElement3;
    ShowWindowAsync(hWnd_Outer, 5);
    icon.ShowContextMenu();
    ShowWindowAsync(hWnd_Outer, 0)
}

And the result:

Invoking the right click context menu of a hidden tray icon in the overflow menu

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ajaykrishnan R

79659682

Date: 2025-06-10 01:28:10
Score: 4
Natty:
Report link
var compositeFormat = CompositeFormat.Parse(_formatString);
_requiredArgumentsCount = compositeFormat.MinimumArgumentCount;

CompositeFormat has MinimumArgumentCount.

Is this what you are looking for???

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

79659681

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

I'm sorry I don't have the answer you're looking for.

Beckhoff in Australia are very good at answering these quirky questions, I'd talk to Ben.

England's tech support are also pretty good with this imho.

I would however recommend you try a workaround, and save the image to HDD temporarily then load it as a webpage usually would. The PLC on PC is very amenable to workaround hacks.

Hamish

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

79659676

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

I found below combination solved the issue:

publicPath: '/Base1/',
devServer: {
    port: port,
    open: true,
    host: '0.0.0.0',
    public: 'x.y.net/Base1/',
    sockHost: 'x.y.net/Base1',
    sockPath: '/Base1/sockjs-node/',   <== this solved the issue
    disableHostCheck: true,
    overlay: {
        warnings: false,
        errors: true
    },
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Solaris_9

79659674

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

It should be enough; the issue may be in your application. Try adding more instrumentation in your client code.

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

79659673

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

I am looking for same thing,i.e use the SendGrid API to send a request with our json object, but instead of sending the email to the client, receive the generated email body via some sendgrid API I tried above API call and it gives template html data with handle bars variables.I need HTML after those variables are filled in by the json object I can send to sendgrid API.

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user2212497

79659670

Date: 2025-06-10 01:01:03
Score: 2.5
Natty:
Report link

I don't even have an answer. I got a bunch of questions myself fr js tho no answers at all none Nada, Zip, zelch, cero, zero, or wtfever too js lol but really just lmao at everything. Fr too. Weed is great fr js god had this planned out all along just waiting for me to pick it up and run, just keep running !!!!! And make sure your shoes are on tight fr tho just a guess tho. Cuz I really have no clue. Gotta go just hmu when you can and will want to talk fr js call me...... at 6015692654 please ma'am I'll lick your bungholio with no fugginiece arrogance or even stature fr too tho js. Lmao n lol too !!!!!

Reasons:
  • Blacklisted phrase (0.5): lmao
  • Blacklisted phrase (0.5): Lmao
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rick Steen

79659667

Date: 2025-06-10 00:54:02
Score: 4
Natty:
Report link

Just running the wrong python version :)

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

79659664

Date: 2025-06-10 00:50:00
Score: 1.5
Natty:
Report link

I had this problem when trying to use luaJ and Jython within my minecraft mod. I found the answer in another thread and hope this solves your problem too.

https://stackoverflow.com/a/79173826

To summarise

Instead of this:

dependencies {
     ... 

    implementation 'black.ninia:jep:4.2.2' // Your dependency instead
}

Do this:

dependencies {
    ...

    minecraftLibrary fg.deobf("black.ninia:jep:4.2.2") // Your dependency instead
}

A brief explanation can also be found on the forge docs. https://docs.minecraftforge.net/en/fg-5.x/dependencies/

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: RedEgs

79659652

Date: 2025-06-10 00:28:56
Score: 0.5
Natty:
Report link

Somehow, you have to rescue ActiveRecord::StatementInvalid and not TinyTds::Error.

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

79659647

Date: 2025-06-10 00:15:53
Score: 3
Natty:
Report link

Thanks! This helped me debug a similar issue on a simple PHP comment form I built for a blog. I ended up embedding it into a project I'm working on that features a Balloon oyunu demo page — using PHP to handle inputs the same way.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yaroslav Fuchilo

79659645

Date: 2025-06-10 00:04:51
Score: 1
Natty:
Report link

This is a question that I'm surprised I haven't found the answer to online, considering that the Angular Official docs is just wrong in saying this:

The default path-match strategy is 'prefix', which means that the router checks URL elements from the left to see if the URL matches a specified path. For example, '/team/11/user' matches 'team/:id'.

Based on the above quote, you are

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

79659639

Date: 2025-06-09 23:54:49
Score: 5
Natty: 6
Report link

how can we avoid copying the headers for each file ? Above cmd copied headers from each of the files.

Reasons:
  • Blacklisted phrase (1): how can we
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how can we
  • Low reputation (1):
Posted by: Baljinder Singh

79659621

Date: 2025-06-09 23:14:39
Score: 3
Natty:
Report link

Hey bro, Im developing an agent to solve the logic and coding problems, this is the anwer from it. Please check it and give me some feedback...

Thank you
_
Issue 1: document.getElementById('ActionRecorder') returns null

Cause:
The <iframe id="ActionRecorder"> is likely not yet available in the DOM when the RecordAction() function is called.

Fix:
Ensure the DOM is fully loaded before the function executes. Either:

html

<script> window.onload = function () { // Safe to call RecordAction() here }; </script>

Or safely check before accessing the element:

javascript

constiframe = document.getElementById('ActionRecorder'); if (iframe) { iframe.src = ...; }


Issue 2: DBTable is not defined

Cause:
You declared the parameter as DBTable in RecordFieldValueGiven(), but mistakenly used DBTAble (capital "A") inside the function.

Fix:

javascript

functionRecordFieldValueGiven(Field, DBTable = 'HexKeyboardVisits') { RecordAction( 'Toggled%20Form%20Field%20%5C%22' + Field.name + '%5C%22%20to%20Value%20%5C%22' + Field.value + '%5C%22', DBTable ); }


✅ Cleaned and Working Version:

javascript

function RecordAction(Action, Table = 'Visits', Referrer = 'See%20page%20access%20line%20to%20see%20referrer...') { const TimeStamp = Date.now(); const iframe = document.getElementById('ActionRecorder'); if (iframe) { iframe.src = 'https://www.handsearseyes.fun/XXX/XXX.php?Table=' + Table + '&Action=' + Action + '&Referrer=' + Referrer + '&TimeStamp=' + TimeStamp; } } function RecordFieldValueGiven(Field, DBTable = 'HexKeyboardVisits') { RecordAction( 'Toggled%20Form%20Field%20%5C%22' + Field.name + '%5C%22%20to%20Value%20%5C%22' + Field.value + '%5C%22', DBTable ); }

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (3): give me some
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kevin Nguyen

79659620

Date: 2025-06-09 23:13:39
Score: 0.5
Natty:
Report link

Using curly bracket and return

@lime-husky Thank you, I'm sorry I made a mistake of copying and pasting for the first closing parenthesis, I didn't copy the if before the return serverManifest. The serverManifest returns a .json file to display an icon when I add the link of the application on smartphone screen

Curly braces {} are used to define the code block that executes when a function is called and using return statement is encountered within a function, the function will immediately stop executing, and the specified value will be sent back to the code that called the function.

There is a problem with your doGet() function and that's why the script wont run to fix this you need to remove the additional closing bracket that causes error in your script.

From this:

function doGet(e) {
  try {

    return serveManifest(); // POINT DE SORTIE 1
  }

To this:

function doGet(e) {
  try {
   // ... Rest of the code here
  }catch(error){
  // ... rest of the code here
  }
}

Reference

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @lime-husky
Posted by: Lime Husky

79659609

Date: 2025-06-09 23:01:35
Score: 0.5
Natty:
Report link

Its an "eventually consistent" system. Which means it is possible to get 99 back but eventually you'll get 100. IOW reads are not guaranteed to see the latest writes from other nodes immediately

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

79659601

Date: 2025-06-09 22:52:33
Score: 1
Natty:
Report link

The problem is with DNS nameserver, I got this error while using ubuntu with scrapy to scrape quotes.to.scrape.com.

I visited "/etc/resolv.conf" path through ubuntu terminal and then updated my nameserver to 8.8.8.8 and saved.

Then I was able to scrape the data.

If you're not using ubuntu, try changing your nameserver for once.

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