79648748

Date: 2025-06-02 12:49:38
Score: 6.5 🚩
Natty:
Report link

I have the same issue with Windows environments. What's your setup?
I mac and linux works without issues

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: liuspatt

79648747

Date: 2025-06-02 12:49:38
Score: 1
Natty:
Report link
return User::join('personal_info','users.id','=','personal_info.user_id')
    ->leftJoin('user_data', function ($q) use ($filters) {
        $q->on('users.id', '=','user_data.user_id');
        foreach ( $filters as $field => $value ) {
            $q->where($field,'=',$value)
        }
    });

This will specifically add the filters to the join i.e. leftJoin t2 on t1.1 = t2.2 AND filter = val
In this way you can join the specific records that match all filters applied

Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: theistand

79648746

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

The default provider functions using below code to return the response which in my case was returning null as response

return json_decode((string) $response->getBody(), true);

But I override it with the the return statement as below, which returned me the the response form IDAM CAS correctly.

return $response->body();
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: SDLBeginner

79648743

Date: 2025-06-02 12:48:32
Score: 6 🚩
Natty:
Report link

Did you ever find a solution to this issue?

I am experiencing the same; I can run adb commands directly from the Terminal and see the corresponding action on the Device. However when I use the same adb command in Robot, it says command executed successfully and Pass but no action on the Device.

The logs also show all commands processed correctly.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution to this
  • 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: user30697508

79648741

Date: 2025-06-02 12:48:32
Score: 3.5
Natty:
Report link

When you enter the start and end times, the system calculates the total time span rather than the actual meeting duration. I later adjusted the duration to the correct length, and it worked as expected.

enter image description here

Reasons:
  • Whitelisted phrase (-1): it worked
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Ibrahim Basha Imran

79648730

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

I was just bitten by this today and thought I'd share my awful hacky work-around. It doesn't really answer your questions (I had the same questions), but my low reputation doesn't allow me just add a comment.

void test(std::filesystem::path const &p)
{
  std::cout << p << " -> " << std::filesystem::relative(std::filesystem::absolute(p)) << std::endl;
}

This does run a lot slower than the original, btw.

Alternatively, this may also work (but maybe not, or maybe not on all platforms (Windows specifically)):

void test3(std::filesystem::path const &p)
{
  std::cout << p << " -> " << std::filesystem::relative((p.string().starts_with('/') ? "" : "./") / p) << std::endl;
}

This version is not much slower than the original.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • RegEx Blacklisted phrase (1.5): low reputation
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user30697333

79648729

Date: 2025-06-02 12:43:30
Score: 2.5
Natty:
Report link

You can run:
sudo dpkg -i your_package.deb

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

79648725

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

I had this exact error message when trying to run flite (TTS software, got with "apt install flite" in the usual manner) from within a C program with the system() command, on a Pi500.

I got it working by creating the file /etc/asound.conf and putting in the following 2 lines:

defaults.pcm.card 1

defaults.ctl.card 1

(No vertical space between those lines.)

I rebooted the Pi500 and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Low reputation (1):
Posted by: Paul Bowden

79648721

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

This issue reappeared for us more recently, associated with our AdvancedSecurity-Dependency-Scanning@1 task.

Adding an environment variable TASKLIB_INPROC_UNITS: 1 seems to have resolved it.

- task: AdvancedSecurity-Dependency-Scanning@1
  displayName: "Advanced Security Dependency Scanning"
  env:
    TASKLIB_INPROC_UNITS: 1

Thanks to HenrikRoosKpa.

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

79648709

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

try this

    <Routes @rendermode="InteractiveServer"/>
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Alavi

79648695

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

Contact Google Cloud Support (especially if you have billing enabled). Include:

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

79648693

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

Same issue in all our apps. Don't know why they sometimes work and sometimes don't.

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David Fernandez

79648688

Date: 2025-06-02 12:16:20
Score: 3
Natty:
Report link

while wait for a second your laptop performance will gonna be a very slow and also anaconda while taking sometimes too.

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

79648685

Date: 2025-06-02 12:13:19
Score: 3.5
Natty:
Report link

HTTP Status 404 – Not Found


Type Status Report

Message The requested resource [/StackExercise.java] is not available

Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.


Apache Tomcat/11.0.7

i have followed this steps, successfully completed all but after running it on server and after getting localhost link this is what it is showing, what to do to debug this ??

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sanket Laddha

79648679

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

Default interface implementations were introduced in C# 8.0, along with modifiers on interface members.

However, protected interface members can be called from derived interfaces only, not derived classes.

You can read the original specification for the new interface-related features and some of the design discussion and decisions here:

https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-8.0/default-interface-methods

Here are two more related articles:

https://www.talkingdotnet.com/default-implementations-in-interfaces-in-c-sharp-8/

https://jeremybytes.blogspot.com/2019/11/c-8-interfaces-public-private-and.html

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Neil T

79648678

Date: 2025-06-02 12:08:18
Score: 4
Natty:
Report link

Whatsapp has now added a new API to post to Status directly. See https://faq.whatsapp.com/669870872481343

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

79648671

Date: 2025-06-02 12:01:15
Score: 6 🚩
Natty:
Report link

I'm getting the same issue on all our websites

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm getting the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Santiago Tonelli

79648667

Date: 2025-06-02 11:56:13
Score: 2
Natty:
Report link

OLd thread but I came across it and thought it would be handy to post this in case of help to anyone else...

Application.Interactive: Temporarily disables user interaction with Excel. Users cannot interact with the workbook until it is re-enabled. Set it to either False or True to enable / disable user input as required.

No third party software download needed :)

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: ROB A

79648658

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

Just use /compare
https://github.com/{OWNER}/{REPO}/compare/{BRANCH_NAME_1}...{BRANCH_NAME_2}

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Has no white space (0.5):
Posted by: Cugomastik

79648655

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

When a shell script using multiple screen sessions appears to do nothing, it usually means the sessions are being created but not executing as expected. Here's a breakdown of common causes and solutions.

https://www.sot.com.pk/

https://smdscreens.com.pk/

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When a
  • Low reputation (1):
Posted by: smartonetech

79648641

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

I too struggled with this very same issue, for a long time, for both Android and iOS apps. App Store Connect and Google Play really need to add support to webhooks!! 😡

The solution was to use the Publishing API aforementioned by @Tom Benyon, alongside fastlane, fastlane_core and supply, to determine the current app's publishing status (my exp as a core contributor at fastlane definitely helped), and keep polling their API.

The problem is that Google's API isn't precise enough: sometimes it will say the app status is "completed" (aka app has been "approved"), even though it's still under review, actually. Which sucks. This is a known limitation and is being tracked in Google Issue Tracker, but Google hasn't promised when they'd fix this.

I was able to work around this limitation though, and get precise status updates throughout time 🎉

If you don't want to build all of this logic yourself and skip the hosting infra shenanigans, I've wrapped this as a service at Statused - feel free to check it out

If you don't want all this precision though, and a ~24-hour delay in the status is acceptable, you'll do fine by using fastlane to get the app status, let me know if you need help with that! For Statused the delay is about 2 minutes, so you get nearly instant updates about when your app status change and can receive those notifications via Slack or custom webhooks to trigger your system's automations as you wish

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @Tom
Posted by: Roger Oba

79648638

Date: 2025-06-02 11:30:05
Score: 4.5
Natty:
Report link

This issue was discussed and resolved here

Cannot build for ios RNScreen v4.11 #2956

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

79648635

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

I faced this error: Error: getaddrinfo ENOTFOUND smtp.gmail.com only to realise that my internet connection was down. It worked after connecting to internet.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: salim

79648633

Date: 2025-06-02 11:27:03
Score: 3
Natty:
Report link

I have exactly the same issue as you guys. I also updated everything to the latest (Studio, NDK, SDK, CMake) without any change.

Android Java/Kotlin breakpoints work fine for me. Funny enough, when I press the "pause" button on native debugging, the native thread gets paused but I can't hit any breakpoints. When testing Android 15 beta a while back on my Pixel 7, I had similar issues. But that has been sorted out with the Android 16 beta. I think Samsung inherited that from AOP. I already created a ticket on the Samsung issue tracker with sample code and a video. Hope to get some feedback soon.

So far NOT working:

Working:

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have exactly the same issue
  • Low reputation (0.5):
Posted by: BenDr0id

79648626

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

This took me two whole days to resolve. I did everything I could to fix this, but the 401 still showed up every time. Mine was a Flutter app, and I was using the Dio package for API calls. I switched from Dio to HTTP, and this resolved this issue for me. Somehow Dio was not able to send the request properly

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Syed Arsalan Kazmi

79648621

Date: 2025-06-02 11:20:00
Score: 4
Natty:
Report link

10 days and only 15 views, 0 answers.

StackOverflow is definitely dead...

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

79648615

Date: 2025-06-02 11:15:58
Score: 3
Natty:
Report link

Just as I posted this, the issue was gone. I'll delete the question if it works ok until tomorrow.

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

79648610

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

Update operations on a single document are performed sequentially and atomically.

Let's assume you're using updateOne. When MongoDB finds a document that meets the criteria, it creates a lock on the document. It then updates the document and relevant indexes before releasing the lock. This process happens at the database level and lasts for microseconds.

  1. If there are two simultaneous instances of the above queries, is it possible that the end result after the two queries ended be that this document's field_a will be 7? No, the first query will match the document and update it. The second query won't match this document because it was already updated and field_a is now 6.

  2. Does the locking mechanism happens after matching the document? In other words, both queries will find and determine that this document is the one to update because neither has updated it yet, but one locks the document and increments field_a to 6, unlocks the document, and then the other query increments it to 7? No, the update operation is atomic.

  3. Follow up of question 2, or does the second query performs an re-evaluation of the matching conditions after the lock has been released by the first query? Yes.

  4. Does findeOneAndUpdate follow the same rules and policies as updateOne in this scenario and atomicity in general? Yes, the only difference is that findOneAndUpdate returns the document.

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Stanimira Vlaeva

79648609

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

something like this

#main-nav > ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#main-nav > ul.expanded {
  max-height: initial;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kateryna S

79648598

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

Have you considered to work with the internal BOM (configured with .frm file) function of Creo?

Because you can export this BOM to a text file as well or even as a .csv file.

The advantage of this way is, that by setting your .frm file you can put the most functionality internally by Creo (like adding up duplicates, levels, filtering...).

See the picture of an example .frm table. Note that you have to define an repeat region for that.

example for an table with repeat region within a.frm file

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

79648585

Date: 2025-06-02 10:46:50
Score: 3.5
Natty:
Report link

Thanks, this script works. Sheet1.Range("$A$1:$B$8").AutoFilter Field:=1, Criteria1:=Array( "=< 12:30", "=< 18:00"), Operator:=xlFilterValues

But I have 1 more problem, I have data as per the attached image, the data shows the time range with the code "< 12:00", "< 18:00", "< 24:00", "> 24:00" and Blank, how to do it if I want to select other than "< 12:00".

Thanks.

enter image description here

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rahmad Zain

79648584

Date: 2025-06-02 10:45:50
Score: 3
Natty:
Report link

Telerik, Infragistics, DevExpress never had a surface chart... The first ones were Nevron and ComponentOne...

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

79648581

Date: 2025-06-02 10:42:48
Score: 1
Natty:
Report link
from pdf2image import convert_from_path
import pytesseract
from PIL import Image

# Convert the PDF pages to images for OCR since text extraction failed
images = convert_from_path(presentation_path)

# Perform OCR on each page image
presentation_ocr_text = ""
for image in images:
    text = pytesseract.image_to_string(image, lang='eng')
    presentation_ocr_text += text + "\n"

presentation_ocr_text[:1500]  # Preview the first 1500 characters of OCR text
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Marta

79648550

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

Have you tried installing it in a virtual env?

That will prevent this kind of error.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: aboubobo

79648542

Date: 2025-06-02 10:16:40
Score: 1.5
Natty:
Report link

this is better solution for the problem:

 json1.as_object_mut().unwrap().extend(
        json2.as_object().unwrap().to_owned()
 );
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: حسین مبارکیان

79648538

Date: 2025-06-02 10:15:40
Score: 3
Natty:
Report link

Try these

But personally, I prefer building dashboards using UI component libraries like:

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

79648532

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

There are several issues with your code, or remarks to be made:

The result of the Select() is an IEnumerable of an anonymous type with only the properties EmployeeName and Age. Therefore you will not be able to do a grouping on the property Department since that property will not exist on the anonymous type. For the Count(), this will be the same: IsActive doesn't exist, so it would throw the same error.

Secondly, if you were to include these properties in the anonymous type in your Select() method, after you do the GroupBy, the IsActive wouldn't exist directly on the result of the GroupBy() method. The GroupBy() returns a list of groupings, where each grouping contains a key and a sequence of elements.

Now let's say all this code would work, this raises another question: why do you have the Count() in the end?

Because by calling the Count() method, you won't have a collection of employees anymore, just an integer holding the number of elements that satisfy the condition.

Reasons:
  • Blacklisted phrase (1): another question
  • RegEx Blacklisted phrase (2.5): do you have the
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Abbas

79648531

Date: 2025-06-02 10:10:37
Score: 5.5
Natty: 7
Report link

can we use topk 10 which used for listing top 10 of any item inside for alerting purpose as well. ?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): can we use to
  • Low reputation (1):
Posted by: Ratan Kumar

79648519

Date: 2025-06-02 10:06:31
Score: 7 🚩
Natty:
Report link

I am facing same issue, can anyone please help here. I upgraded tomcat version from 9.0.82 to 9.0.102 and getting same error as above "

 `Message java.lang.NoClassDefFoundError: Could not initialize class org.apache.jasper.compiler.EncodingDetector

"

Can anyone please help here

Reasons:
  • RegEx Blacklisted phrase (3): please help
  • RegEx Blacklisted phrase (0.5): anyone please help
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I am facing same issue
  • Me too answer (0): getting same error
  • Low reputation (1):
Posted by: Tanushree Sarkar

79648517

Date: 2025-06-02 10:05:30
Score: 4.5
Natty:
Report link

Have a look at box-decoration-break CSS property

Reasons:
  • Probably link only (1):
  • Low length (2):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andrii Gera

79648516

Date: 2025-06-02 10:05:30
Score: 1
Natty:
Report link

Beforehand make sure you followed all steps from here:

https://stackoverflow.com/a/78970091/15550211

Here is some code how I make my Async Connection with J-Link resp. OTK:

public class SessionHandler {
    private final AsyncConnection connection;
    private final Session session;
    


    SessionHandler() throws jxthrowable {

        System.loadLibrary("pfcasyncmt");
        System.out.println("pfcasync.dll, loaded");
        this.connection = pfcAsyncConnection.AsyncConnection_Connect(null, null, null, null);
        this.session = connection.GetSession();

    }
}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: rk84

79648515

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

It's certainly not as 1337 as creating the implementation yourself, but why not do the old-timey thing and take a gander at the official documentation of the .NET BCL and see what it offers in terms of UTF-8 parsing. Hoopla, look what's that... TryParse(ReadOnlySpan<byte> source, out Guid value, out int bytesConsumed, char standardFormat = '\0')

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: GreetingsReaders

79648514

Date: 2025-06-02 10:05:30
Score: 3
Natty:
Report link

I made a mistake and fix it.
$query = $wpdb->prepare("DELETE FROM $table_name WHERE postid IN ($placeholders)", $ids);

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

79648513

Date: 2025-06-02 10:04:29
Score: 3
Natty:
Report link

As workflows lack access to document content, converting it to Base64 from within the workflow is not feasible.

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

79648509

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

✅ O(1) Reachability Check in 2D Grid Without Flood Fill

While traditional methods like BFS or DFS don’t meet the strict O(1) memory constraint, there is a greedy, deterministic method that can perform real-time reachability checks efficiently — and using only 20 integers.

---

🔧 Algorithm: `mgReachabilityCheckGibis`

- No recursion, no allocation

- No caching or preprocessing

- Deterministic behavior

- Uses simple direction logic and wall-following to circumvent obstacles

- Works with O(1) memory, even on 2^60 x 2^60 2D grid

📂 Source code:

[https://github.com/MatthiasGibis/2D-Grid-Reachability-Check%5C%5C](https://github.com/MatthiasGibis/2D-Grid-Reachability-Check/blob/main/mgReachabilityCheckGibis.swift)

---

⚙️ Performance (tested on Swift/iOS/macOS):

| Grid Size | Clear Path | Obstacle Detour |

|-----------|------------|-----------------|

| 128×128 | 30 ns | ~5 µs |

\> Memory footprint stays constant. No maps, sets, or traversal stacks are used.

---

📱 Benchmark & Visualization

You can try this algorithm live in the free app [`mgSearch`](https://apps.apple.com/de/app/mgsearch/id6744561847) for iPads and macOS devices (Apple Silicon).

- Visualize obstacle layouts

- Benchmark reachability timings

---

Reasons:
  • Whitelisted phrase (-1): try this
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Filler text (0.5): -----------
  • Filler text (0): ------------
  • Filler text (0): -----------------
  • Low reputation (1):
Posted by: Matthias Gibis

79648499

Date: 2025-06-02 09:49:24
Score: 8.5 🚩
Natty: 4.5
Report link

you fix that? i have same issue

Reasons:
  • RegEx Blacklisted phrase (1.5): fix that?
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): i have same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nikita Gromov

79648484

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

Using nslookup to dynamically resolve IPs and inject them into Terraform-managed security groups is not recommended.

Pod or workload IPs are ephemeral: In Kubernetes or cloud environments, IPs often change due to scaling, rescheduling, or restarts. Any DNS-based IP resolution will likely become outdated quickly. And Terraform is declarative, not dynamic: It’s designed for infrastructure as code, not for reacting to real-time data like changing DNS records. This approach introduces state drift and breaks the idempotency of Terraform.

You should look at the following solutions:

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

79648482

Date: 2025-06-02 09:35:20
Score: 0.5
Natty:
Report link

I temporarely fixed my issue by stopping the preview before releasing the camera :

private void stopPreview() {
    if (camera != null) {
        try {
            // Stop preview first
            camera.stopPreview();
            // Detach preview display (optional but safer)
            camera.setPreviewCallback(null);
            camera.setPreviewDisplay(null);
        } catch (Exception e) {
            Log.w("CameraRelease", "Error while stopping preview: " + e.getMessage());
        }

        // Finally release the camera
        camera.release();
        camera = null;
        
        inPreview = false;
        cameraReleased = true;
        onAutofocus = false;
    }
}

Finally, i migrated all camera.Hardware usages to CameraX

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

79648474

Date: 2025-06-02 09:27:18
Score: 2
Natty:
Report link

There could be multiple reasons,

  1. Are you obfuscating? If yes, add proguard rules related to FCM classes

  2. Check if you've added SHA-1 key in firebase console

  3. Check mobile's Internet connection and date/time to be correct

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

79648473

Date: 2025-06-02 09:27:18
Score: 0.5
Natty:
Report link

I think this question is important. Kind of feels this is a re-occuring problem with missing best practise advise.
Both links mentioned above are dead, so I add my use case as an example why this might be necessary:

Cut short: I need also access to TypoScript from Backend Class, outside of Extbase Controller. Working for Typo3 12 using TYPO3\CMS\Core\TypoScript\TemplateService or BackendConfigurationManager as mentioned above. No working version for Typo3 13.

Thanks for any hint!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dasoe

79648468

Date: 2025-06-02 09:25:17
Score: 2.5
Natty:
Report link

The message queue https://github.com/mgcrea/prisma-queue is using Postgres SKIP LOCKED to reliably dequeue jobs.

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

79648467

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

In my case MySQL path was incorrect

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

79648465

Date: 2025-06-02 09:21:16
Score: 1.5
Natty:
Report link

I have corrected the code (Thanks to @Larme) to solve the problem.

var state = mqtt.connect()
var subscribed = false
autoreleasepool {
  let runLoop = RunLoop.current
  while  runLoop.run(mode: .default, before: Date.distantFuture) {
    if mqtt.connState == .connected && !subscribed {
      mqtt.subscribe("test/#")
      subscribed = true
    }
  }

Before subscribing topics, it is important to wait until the connection is made. If the subscription is made immediately after the connect on a SSL connection, the broker will log an error:

2025-06-02T10:59:43: Client CocoaMQTT-88249 closed its connection.
2025-06-02T11:03:37: Client connection from 93.208.209.34 failed: error:0A00010B:SSL routines::wrong version number.

The above (resulting) error message might point to the wrong direction.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Larme
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: hjbflyer

79648441

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

After hours of searching and finding nothing, I found a solution that works well. Just take advantage of Excel. I thought that enabling Excel within Word would slow things down significantly, but I was wrong. I simply added these lines to other folks' suggested Excel VBA translation code into my Word VBA code after the url has been established. (This will replace the 'standalone' WorksheetFunction reference):

 Dim xlApp As Object, xlAppWsf As Object
    Set xlApp = CreateObject("Excel.Application")
    Set xlAppWsf = xlApp.WorksheetFunction
    resp = xlAppWsf.WebService(url)

Of course, the first three lines above can be placed in the declaration section of your sub or function. You should set the newly created objects to 'Nothing' at the end of the process.

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

79648436

Date: 2025-06-02 09:02:09
Score: 6 🚩
Natty: 5
Report link

@usuário14967413, muito obrigado pelo seu cometário, pois foi o que me ajudou a resolver. Em resumo eu apaguei o arquivo "main (1)" do endereço: "....git\refs\heads" e deu certo.

Reasons:
  • RegEx Blacklisted phrase (1): obrigado
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @usuário14967413
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Rafael Fonseca

79648433

Date: 2025-06-02 08:58:08
Score: 3
Natty:
Report link

The "Flatten" Formula worked perfectly for me. I was attempting to consolidate all of my data into 1 column and find only the unique values.

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

79648416

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

I've upgraded to 5.13.0 & have the similar issue with:

testImplementation("org.junit.jupiter:junit-jupiter-api:5.13.0")
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.13.0")
testImplementation("org.junit.vintage:junit-vintage-engine:5.13.0")

Gradle 8.14.1, Develocity plugin 3.19.2

The build failed due to 1 test failure
Test (N/A) » Gradle Test Executor 3 failedView test
View test history
org.gradle.api.internal.tasks.testing.TestSuiteExecutionException: Could not complete execution for Gradle Test Executor 3.
> org.junit.platform.commons.JUnitException: TestEngine with ID 'junit-jupiter' failed to discover tests
   > org.junit.platform.commons.JUnitException: OutputDirectoryProvider not available; probably due to unaligned versions of the junit-platform-engine and junit-platform-launcher jars on the classpath/module path.
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have the similar issue
Posted by: NOTiFY

79648413

Date: 2025-06-02 08:41:03
Score: 11.5
Natty: 7
Report link

I have a question. In my case, I need to retrieve the IP addresses of my workloads using nslookup (I have a DNS entry that resolves to all the workload IPs), and then add those IPs to a security group in Terraform to allow access to my RDS database. Do you have any suggestions on how to automate this?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1.5): I have a question
  • RegEx Blacklisted phrase (2): any suggestions
  • RegEx Blacklisted phrase (2.5): Do you have any
  • 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: moon

79648407

Date: 2025-06-02 08:35:02
Score: 3.5
Natty:
Report link

You can try reaching out to the support team of LambdaTest®

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

79648406

Date: 2025-06-02 08:34:01
Score: 2.5
Natty:
Report link

Well, to tackle this i created my custom select2 with the checkboxes functionality. I attach my GitHub repository link below. Whenever you want to add this functionality, just add this class, customselect Suppose if you want to add multiple custom checkboxes, select2 don't worry, just add this class customselect, in the select tag

https://github.com/hammadshah01/Custom-Select2-with-Checkbox

enter image description here

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hammad Bukhari

79648396

Date: 2025-06-02 08:24:59
Score: 4.5
Natty:
Report link

I am also new to this fields but maybe I can be of some helps. I don't know if you resolve your problem since it has been a few days.

I am not sure to understand what you mean by

I want to normalise the bounding boxes so that objects of the same size appear similar in dimensions, regardless of their distance from the camera.

you want the object to be at a fix size? or the bounding box is at a fix size regardless of the size the object appear to be (the position of the object to the camera)?

If you just want to modify the size of the bounding box. You could do a depth estimation https://paperswithcode.com/task/depth-estimation and do a cross multiplication.

If you want to modify the size of the object, you could try to extract the object of the picture, resize it and reintegrate it. maybe there is easier way.

hoping I could help.

Reasons:
  • RegEx Blacklisted phrase (1.5): fix size?
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Colin

79648395

Date: 2025-06-02 08:24:59
Score: 0.5
Natty:
Report link

ChatGPT suggested that from_pretrained might be the cause, so I checked the packages responsible for loading the models.

It's caused by from_pretrained called inside the constructor of M3Embedder from FlagEmbedding package. This method seems to perform a fetch every time, and surprisingly it does use the cache (otherwise it would not just cost a few seconds, but spend much longer downloading the model again), yet it never skips the fetch step.

By setting a local path to the model and explicitly specifying local_files_only=True in the args of from_pretrained I managed to bypass this fetch process eventually.

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

79648393

Date: 2025-06-02 08:20:58
Score: 1.5
Natty:
Report link

The yet to be release 1.16.0 will offer parallelisation for many of the minimize methods, e.g. https://scipy.github.io/devdocs/reference/optimize.minimize-lbfgsb.html, where the workers keyword is used to parallelise numerical differentiation.

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

79648383

Date: 2025-06-02 08:11:55
Score: 4.5
Natty:
Report link

enter image description herethis is the right picture for FluidToAgent block, sorry the previous one has no completed code

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jasmine Noor Fayza Firman

79648381

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

Sorry everyone, checking and checking again I've realized that the mod rewrite of apache wasn't enabled. Once done, everything started!

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Tiziano Mischi

79648355

Date: 2025-06-02 07:51:50
Score: 2
Natty:
Report link

Currently the query is made up of two linked queries. If I add an intermediate table

tblUser

as part of the Join, the query runs now correctly, and every time.

SELECT qselStat_Batting.cbtUserID_DB, Count(qselStat_Batting.plyMatchID_PC) AS ContribValue, 1 AS StatTypeID
FROM (qselStat_Batting INNER JOIN qselPlayerTeam ON (qselStat_Batting.cmdMatchTypeID_PC = qselPlayerTeam.cmdMatchTypeID_PC) AND (qselStat_Batting.sidTeamID_DB = qselPlayerTeam.plyTeamID_DB)) INNER JOIN tblUser ON (qselPlayerTeam.plyUserID_DB = tblUser.usrUserID_DB) AND (qselStat_Batting.cbtUserID_DB = tblUser.usrUserID_DB)
WHERE (((qselPlayerTeam.plyMatchID_PC)=6178576) AND ((qselStat_Batting.mtcMatchDate)<([qselPlayerTeam].[mtcMatchDate])))
GROUP BY qselStat_Batting.cbtUserID_DB;

Does this mean that the original source queries should not be joined directly?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: L'le Tom

79648354

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

If Android 11 (API level 30) or above add queries:

<queries>
    <package android:name="com.example.your_app"/>
</queries>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Leonid Ivankin

79648352

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

If Android 11 (API level 30) or above add queries:

<queries>
    <package android:name="com.example.your_app"/>
</queries>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Leonid Ivankin

79648351

Date: 2025-06-02 07:48:46
Score: 2.5
Natty:
Report link

I simply opened Task Manager and ended the already running PyCharm process, that's it. This worked for PyCharm Community Edition 2024.3.

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

79648348

Date: 2025-06-02 07:46:45
Score: 4
Natty:
Report link

I’ve encountered this exact same issue as well on Transsion devices (including Infinix, Tecno, and Itel) running Android 15 (SDK 34).

The crash appears to come from this line:
com.transsion.widget.v1.AIHelper$Impl$Callback$1.onViewAttachedToWindow

This is not part of my app or any libraries I'm using. It looks like it's internal OEM code from Transsion, possibly related to some "AI Helper" feature built into the firmware. The crash occurs during normal view attachment — likely when we show a dialog or add a view to the window.

Key points:

Request:

If you’ve found a fix or workaround, or if you have more info on what exactly AIHelper does on these devices, could you please share it here?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you please share
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Awais Shakeel

79648347

Date: 2025-06-02 07:46:45
Score: 1
Natty:
Report link

We are a full-service digital marketing company dedicated to helping businesses thrive in the online world. Our team of experts specializes in SEO, social media marketing, PPC advertising, content creation, email campaigns, and website development. We create customized strategies tailored to each client’s goals, ensuring maximum reach, engagement, and return on investment. With a strong focus on creativity, data analysis, and the latest digital trends, we deliver campaigns that not only attract attention but also convert visitors into loyal customers. We believe in transparent communication, continuous improvement, and measurable results. Whether you're looking to build brand awareness, generate leads, or increase sales, we’re here to guide your digital journey every step of the way. Our mission is to empower businesses with the tools and knowledge they need to succeed in a fast-changing digital landscape. Partner with us to elevate your online presence, outshine your competition, and achieve lasting growth.

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

79648334

Date: 2025-06-02 07:34:43
Score: 0.5
Natty:
Report link

Ok, I have found a solution. The following approach works for me:

Remove recursively bin and obj folders from the projects:

rm -rf **/*/bin **/*/obj

Make sure that C# and C# Dev Kit VS Code extensions are in release versions. For me it's 2.76.27 and 1.19.63 respectively.

For more information look at the similar GitHub thread.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: CunningLobster

79648332

Date: 2025-06-02 07:33:43
Score: 1.5
Natty:
Report link

You can try replacing 'width' with 'min-width'

 .card {
    /* width: 174px; */
    min-width: 174px;
 }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: xyzzzzz

79648331

Date: 2025-06-02 07:32:42
Score: 1
Natty:
Report link

Trying to solve this too! It shows me all oauth2 flows, while only one is supported - users get regularly confused about which one to use!

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

79648327

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

That sounds like a great idea for a fun and interactive birthday countdown app! 🎉 A few common issues could be around handling date formats, accounting for leap years, or calculating the difference between now and the next birthday correctly (especially if the birthday already passed this year).

When you get it working, it could even be expanded to show привітання з днем народження хлопчика школяра (birthday greetings for a school-age boy) or generate a custom birthday message along with the countdown — that would make it more engaging for younger users!

If you’d like, feel free to share your current code — happy to take a look and help debug it with you!

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

79648325

Date: 2025-06-02 07:21:39
Score: 2
Natty:
Report link
You might want to put some logging in your event listener to debug this 

Log::info('Event fired', [
    'request_id' => request()->id() ?? uniqid(),
    'path' => request()->path(),
    'server' => gethostname(),
    'memory' => memory_get_usage(true)
]);


additionally might want to check that there are no multiple event registration on your EventServiceProvider

Also can you check that you dont  have multiple instance of the app service plan deployed ? 
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Samuel Aramide

79648321

Date: 2025-06-02 07:19:39
Score: 5.5
Natty: 5.5
Report link
    showReferenceStrip: true,
          referenceStripPosition: "BOTTOM_LEFT",
          referenceStripScroll: "vertical",
          referenceStripWidth: 30,

i am using this for reference and i need disable hover exam when i hover reference margin left 0 and when moved over then margib left become -66px

can you pls tell me how to disable hover ?

Reasons:
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (2.5): can you pls tell me how
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Guna Work

79648315

Date: 2025-06-02 07:15:38
Score: 0.5
Natty:
Report link
#include <bits/stdc++.h>
using namespace std;
//Santa


int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int t; cin >> t;  // number of test cases
    while (t--) {
        int n; cin >> n;
        long long a; cin >> a;  // gift allocation can be large
        vector<int> score(n);
        for (int i = 0; i < n; i++) cin >> score[i];

        vector<long long> gifts(n, 1);

        // Left to right pass
        for (int i = 1; i < n; i++) {
            if (score[i] > score[i-1]) {
                gifts[i] = gifts[i-1] + 1;
            }
        }

        // Right to left pass
        for (int i = n - 2; i >= 0; i--) {
            if (score[i] > score[i+1]) {
                gifts[i] = max(gifts[i], gifts[i+1] + 1);
            }
        }

        long long total = accumulate(gifts.begin(), gifts.end(), 0LL);

        if (total <= a) {
            cout << "YES\n";
        } else {
            cout << "NO\n";
        }
    }

    return 0;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30694948

79648307

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

Here is my approach:

terraform state list # to extract all terraform state list
terraform state show packet_device.worker # don't use quote(')

And one more thing packet_device.worker should be in output of terraform state list

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

79648302

Date: 2025-06-02 07:09:36
Score: 1
Natty:
Report link

Could you please check Which Database You're using?

tenancy()->initialize($tenant);
dd(DB::connection()->getDatabaseName());

Also, make sure your tenancy package is set up correctly with the right database information for each tenant.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Developer Nilesh

79648300

Date: 2025-06-02 07:08:35
Score: 2
Natty:
Report link

In my case the issue was that I was using the legacy Text game object. Use TextMeshPro instead, it's better and works out of the box.

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

79648295

Date: 2025-06-02 07:03:34
Score: 2
Natty:
Report link

For now I have reintroduced an older version where the entire solution is .NET6 based and that seems to solve the problem for now.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Soeren Dalby

79648292

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

In that case first we need to check data load in database if that condition true then you can use your print function. I hope this will be useful.

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Hargun IT SOLUTION

79648291

Date: 2025-06-02 06:59:33
Score: 0.5
Natty:
Report link
#include <bits/stdc++.h>
using namespace std;
//Long ago in the digital realm of Byteonia

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N; cin >> N;
    unordered_map<int, string> hashTable;

    for (int i = 0; i < N; i++) {
        string cmd; cin >> cmd;

        if (cmd == "INSERT") {
            int key; string value;
            cin >> key >> value;
            hashTable[key] = value;  // Insert or update
        }
        else if (cmd == "DELETE") {
            int key; cin >> key;
            hashTable.erase(key);    // Delete if exists, else no effect
        }
        else if (cmd == "SEARCH") {
            int key; cin >> key;
            auto it = hashTable.find(key);
            if (it == hashTable.end())
                cout << "NOT_FOUND\n";
            else
                cout << it->second << "\n";
        }
    }

    return 0;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30694823

79648289

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

In your table (tbl_item ), the rowdata itemid appears more than twice. You can use more precise filtering conditions to avoid these duplicates

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

79648287

Date: 2025-06-02 06:52:31
Score: 2.5
Natty:
Report link

i find there is no explicit info.plist today in my project folder

but i solve it

i goto MyAppName - PROJECT - TARGETS - xxx Watch App(my project is a watch project) - All - Info.plist Values - Add the info for the "Privacy - Health .. "

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

79648278

Date: 2025-06-02 06:44:29
Score: 3
Natty:
Report link

If you are looking for better ways to customise Keycloak. I would suggetst checking out Keycloakify they really have something special

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

79648276

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

[email protected] foram dev

'dev' is not recognized as an internal or external command, operable program or batch file.

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

79648265

Date: 2025-06-02 06:39:28
Score: 3
Natty:
Report link

Problem solved.

someone or some apps changed my environment variable: HTTP_PROXY and FTP_PROXY

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

79648260

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

i think this is the quick approach you can take and show Loading... text of the basis of api response there are multiple way to handle this case its up to you

{user ? (
      <h2 className="mb-4">Hi, {user.firstName}!</h2>
    ) : (
      <h2 className="mb-4">Loading...</h2>
    )}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Akash Bhatt

79648257

Date: 2025-06-02 06:34:26
Score: 8.5 🚩
Natty: 6
Report link

I cant comment on anybody's answers, as i am new here.
We recently changed Battery on our device and since then the Modem has stopped working. Checking the status in nmcli dev sh, it says that it is unavailable. I tried to start it, also restarting network manager but its not helping and shows its unavailable. how do i solve this?

Reasons:
  • Blacklisted phrase (1): how do i
  • RegEx Blacklisted phrase (1): cant comment
  • RegEx Blacklisted phrase (1.5): solve this?
  • RegEx Blacklisted phrase (1.5): i am new here
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Gr8Kpr

79648252

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

You can start Elasticsearch with the old data directory and disable security settings. # elasticsearch.yml

path.data: /data/elasticsearch/data

xpack.security.enabled: false

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

79648244

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

In my case, it is working after updating package name from javax.persistance.Entity to jakarta.persistence.Entity

Then run ./gradlew clean build

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

79648233

Date: 2025-06-02 06:14:20
Score: 1.5
Natty:
Report link
Line 12: Char 29: error: cannot use type 'void' as a range
   12 |         for(auto [dy, dx] : {{-1,0}, {1,0}, {0,1}, {0,-1} } ) {
      |                             ^

I got similar problem, what to do here?

(I am using c++23)

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mo R Hadi

79648224

Date: 2025-06-02 06:05:18
Score: 5.5
Natty: 6
Report link

how to add git repos to the dependency, ex: https://github.com/checkout/checkout-ios-components

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how to add
  • Low reputation (1):
Posted by: Anurag

79648220

Date: 2025-06-02 05:56:16
Score: 2.5
Natty:
Report link

Manage i18next is always headache, last time I saw AutoLocalise which doesnt require these kinds of setup and no need to manage translation files, maybe you can take a look https://www.npmjs.com/package/react-native-autolocalise

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

79648219

Date: 2025-06-02 05:56:16
Score: 1
Natty:
Report link

You don't really need to generate an id, you can usually do:

<input
 ...
 #inputEl
/>
<label [for]="inputEl">{{ labelTxt }}</label>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Arntor

79648216

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

{"previousPageCursor":null,"nextPageCursor":"eyJzdGFydEluZGV4IjoxMCwiZGlzY3JpbWluYXRvciI6ImtleXdvcmQ6JHtpZGt9c2Vzc2lvbklkOiIsImNvdW50IjoxMH0KMTUzMWU2M2FiMzFhOGI4MzEzODE4YTM0MzIyMmYyYjJhMDhjZGY3ZGQ4NGVlZjM1MTlhYzViMmQyOTNlYWM0NA==","data":[{"previousUsernames":[],"hasVerifiedBadge":false,"id":7897820696,"name":"Idkidcbutiluvbaddies","displayName":"Idk"},{"previousUsernames":[],"hasVerifiedBadge":false,"id":7596464558,"name":"Idk_121113","displayName":"Idk"},{"previousUsernames":[],"hasVerifiedBadge":false,"id":8575065021,"name":"idk11111111103","displayName":"Idk"},{"previousUsernames":[],"hasVerifiedBadge":false,"id":7561426038,"name":"IDKACC291","displayName":"Idk"},{"previousUsernames":[],"hasVerifiedBadge":false,"id":8587081239,"name":"idk_forfun27","displayName":"idk"},{"previousUsernames":[],"hasVerifiedBadge":false,"id":6161117505,"name":"IDK1516176","displayName":"IDK"},{"previousUsernames":[],"hasVerifiedBadge":false,"id":8313385241,"name":"idk119734","displayName":"idk"},{"previousUsernames":[],"hasVerifiedBadge":false,"id":674737081,"name":"idkhow2dothiz","displayName":"Idk"},{"previousUsernames":[],"hasVerifiedBadge":false,"id":3628195102,"name":"Idk_yuhhhhh0","displayName":"Idk"},{"previousUsernames":[],"hasVerifiedBadge":false,"id":8512322155,"name":"Idk_V0737","displayName":"Idk"}]}

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Filler text (0.5): 111111111
  • Low reputation (1):
Posted by: vibwawaib

79648208

Date: 2025-06-02 05:43:12
Score: 2.5
Natty:
Report link

In my case, the application was built using .NET 6.0, but my Visual Studio was set to use .NET 8.0, which caused the error. Later, I switched to IIS Express, which revealed the actual issue. After identifying it, I installed .NET 6.0, and that resolved the problem.

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

79648205

Date: 2025-06-02 05:39:11
Score: 2
Natty:
Report link

this error was resolved by adding the following mandatory field setting in both actions:

clocation.LocType = defaultLocation.LocType;

clocation.Status = defaultLocation.Status;

Hope this helps, thank you!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1): Hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tharidhi P