79501786

Date: 2025-03-11 18:38:26
Score: 4.5
Natty:
Report link

Have you added the required manifest declarations to indicate that you support messaging notifications?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
Posted by: Ben Sagmoe

79501780

Date: 2025-03-11 18:35:25
Score: 9.5
Natty: 7
Report link

"This webpage was reloaded because it was using significant energy safari" reloads the pages and disrupts the conversation in the page. I think it is general and chronic issue in Safari. Is there any solution and anyone experiencing the same problem?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2): any solution and anyone experiencing the same problem?
  • 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: kerem

79501745

Date: 2025-03-11 18:20:21
Score: 4.5
Natty: 4
Report link

you can read the csv file like pandas python syntax using my lib https://github.com/hima12-awny/read-csv-dataframe-cpp

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

79501733

Date: 2025-03-11 18:13:19
Score: 6.5 🚩
Natty: 4
Report link

I'm having the same problem when installing flash-attn on Windows. Unfortunately PyTorch no longer support conda installation!
enter image description here

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm having the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chris Raper

79501720

Date: 2025-03-11 18:06:18
Score: 4
Natty:
Report link

I know too little about xml.... Found this: stackoverflow.com/questions/64243628/….

Looks like I had a namespace...

xml_ns(doc) output "d1"

now running 
>xml_find_all(doc, "//d1:t") #finds the text nodes! 
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user2299029

79501694

Date: 2025-03-11 17:58:14
Score: 6.5 🚩
Natty:
Report link

Thanks Leon Unfortunately it still doesn't work, I inserted in the Manifest:

<uses-permission android:name="android.Manifest.permission.WAKE_LOCK"/>

<receiver android:name=".MyReceiver" android:exported="true" android:enabled="true">
    <intent-filter>
        <action android:name="com.google.firebase.MESSAGING_EVENT" />
    </intent-filter>
</receiver>

I made the receiver like this:

[BroadcastReceiver(Name= "MyReceiver", Enabled = true,Exported =true)]
[IntentFilter(["com.google.firebase.MESSAGING_EVENT"])]
public class MyReceiver : BroadcastReceiver
{
    public override void OnReceive(Context? context, Intent? intent)
    {
        if (intent != null && context!=null) 
        { 
                Intent serviceIntent = new(context, typeof(NotificationMessagingService));
              
                if (Build.VERSION.SdkInt >= BuildVersionCodes.O)
                {
                    Android.App.Application.Context.StartForegroundService(serviceIntent);
                }
                else
                {
                    Android.App.Application.Context.StartService(serviceIntent);
                }
                Intent main = new(context, typeof(MainActivity));
                context.StartActivity(main);
        }
    }
}
I also tried to insert the full name in the Receiver name, with no success.

The Messages I send are of this type:

Message message = new()
{
Data = new Dictionary<string, string>()
{
{"xxx","xxx"},
{"yyy","yyy"}
},
Topic = "gggg'
};
Do you have any other suggestions?
Tanks.
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2): any other suggestions?
  • RegEx Blacklisted phrase (2): it still doesn't work
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Antonio Moscati

79501689

Date: 2025-03-11 17:57:13
Score: 6 🚩
Natty: 4
Report link

@Jalpa, is the middleware AND ErrorBoundary needed to be able to handle all unhandled exceptions? e.g., does this depend on the render mode? does it handle circuit errors (eg, temporary & full Blazor disconnects), errors in razor components, errors in controllers, errors in the DB?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Jalpa
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Orion

79501684

Date: 2025-03-11 17:54:12
Score: 4
Natty:
Report link

How do I refresh the related UI after passing data into a server component in Next.js 15 (without full page refresh)? Problem I'm working with Next.js 15 and trying to update a server component's UI after a client component triggers a server action.

Here's the simplified setup: Client Component

'use client';

import { updateText } from './parent_comp';

export default function ClientComp() {
 const handleClick = async () => {
  await updateText('devtz007'); // Sends new data to the server
};
return (
 <button
  onClick={handleClick}
  style={{ color: 'black', background: 'coral' }}
 >
  Send Text
 </button>
 );
}

Server Component + Action

'use server';

import ClientComp from './client_comp';
import { revalidatePath } from 'next/cache';

let text = 'initial text';

export async function updateText(newText: string): Promise<string> {
 text = newText;
  // revalidatePath('/example_page'); // This re-renders the page, but I want a 
 more targeted update!
  return text;
}

export default async function ParentComp() {
  return (
    <>
      <p style={{ color: 'green', backgroundColor: 'coral' }}>
         Received Text: {text}
        </p>
       <ClientComp />
     </>
    );
}

What I’ve Tried

And the component:

export default async function ParentComp() {
   return (
     <>
      <p style={{ color: 'green', backgroundColor: 'coral' }}>{text}</p>
      <ClientComp />
     </>
    );

  }

Issue

  1. Is revalidateTag() re-rendering just the related portion (e.g.,

    Received Text

    ) or the whole page?
  2. If I use ClientComp on another page, clicking the button does not immediately update the ParentComp without a manual page refresh.
  3. I don’t want to use router.refresh() because it refreshes the full page.
  4. What's the intended pattern in Next.js 15 to partially refresh components after an action without reloading the whole page?
Reasons:
  • Blacklisted phrase (1): How do I
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How do I
  • Low reputation (1):
Posted by: Ch Farrukh

79501683

Date: 2025-03-11 17:54:12
Score: 4.5
Natty: 6
Report link

What you want may be to "Mute inline plotting" as described here https://docs.spyder-ide.org/current/panes/plots.html

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What you
  • Low reputation (0.5):
Posted by: Fırat Kıyak

79501630

Date: 2025-03-11 17:35:06
Score: 6.5 🚩
Natty:
Report link

what LLM provider are you using?

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

79501568

Date: 2025-03-11 17:09:00
Score: 6 🚩
Natty:
Report link

Its is a loading issue I think so but not sure I have also face same issues

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): also face same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: king

79501501

Date: 2025-03-11 16:52:55
Score: 11.5
Natty: 7
Report link

Were you able to resolve this? I have multiple data disks to add to this, any suggestions for the data disk and attachment code?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this?
  • RegEx Blacklisted phrase (2): any suggestions
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: cloudseeker

79501452

Date: 2025-03-11 16:28:50
Score: 4.5
Natty: 5
Report link

It looks like this param does not cover Direct buffer memory OOME.

See this post: -XX:+ExitOnOutOfMemoryError ignored on 'java.lang.OutOfMemoryError: Direct buffer memory'

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Hugo Martinez

79501418

Date: 2025-03-11 16:17:46
Score: 8.5 🚩
Natty: 4
Report link

I have the same issue, only terrain shadow are deep dark while objects are fine; suggestion by aidangig does not affect these dark shadows on terrain but only other's shadows. by trying various parameters, terrain shadows act like Penumbra tint is checked... any suggestions are welcome, thanks :)

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (2): any suggestions
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arch N Game

79501322

Date: 2025-03-11 15:44:37
Score: 7 🚩
Natty:
Report link

your Rust code looks fine and the error is not related to the SurrealDB Rust SDK itself. Could you please provide more information?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you please provide
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: TheUnknown

79501312

Date: 2025-03-11 15:42:36
Score: 13 🚩
Natty:
Report link

did anyone got anything on this? Any solution / help would be greatly appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1.5): Any solution
  • RegEx Blacklisted phrase (3): did anyone got
  • RegEx Blacklisted phrase (3): help would be greatly appreciated
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did anyone
  • Low reputation (1):
Posted by: Ranvijay Patel Amarnath

79501282

Date: 2025-03-11 15:33:34
Score: 4.5
Natty: 4
Report link

@Chriag Sheth - NEVER use a static class to store user information. The reason is the static data is NOT user specific. Every user is going to be using the exact same dictionary. This means users are going to see and modify each others' data.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Chriag
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Mike Kurz

79501222

Date: 2025-03-11 15:10:28
Score: 4
Natty:
Report link

Autoconfiguration classes should not enable Component Scanning, as stated in the official Spring documentation.

See https://docs.spring.io/spring-boot/reference/features/developing-auto-configuration.html#features.developing-auto-configuration Note in paragraph “Location Auto-configuration Candidates”. The correct way should make use of @Import

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Import
  • Low reputation (1):
Posted by: Marco Cinus

79501179

Date: 2025-03-11 14:56:24
Score: 6.5 🚩
Natty: 6
Report link

which is the import for PlanApi java object?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): which is the
  • Low reputation (1):
Posted by: user29964778

79501148

Date: 2025-03-11 14:48:22
Score: 9.5
Natty: 8
Report link

Did you figure out how to make the code work?

Reasons:
  • RegEx Blacklisted phrase (3): Did you figure out
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Heather

79501102

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

You need to create a wrapper or method that will catch the exception and locate the element again as shown below:

enter image description here

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

79501088

Date: 2025-03-11 14:29:15
Score: 7 🚩
Natty:
Report link

I have the same issue, and solved with the same solution. Very nice!

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lilly

79501039

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

Các ký hiệu trên mainboard cho người mới bắt đầu

https://phanrangsoft.com/blog/cac-ky-hieu-tren-mainboard-cho-nguoi-moi-bat-dau/

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

79501031

Date: 2025-03-11 14:15:11
Score: 4
Natty:
Report link

I've found the source of error. With this configuration you should have deploy from gh-pages branch: enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Dmitry Malugin

79500993

Date: 2025-03-11 13:59:07
Score: 4
Natty:
Report link

You can set it up in Web.config file:enter image description here

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

79500930

Date: 2025-03-11 13:37:01
Score: 4
Natty:
Report link

When disabling trimming for android in release mode the aab file works as expected.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: dennis_ler

79500878

Date: 2025-03-11 13:18:56
Score: 6.5 🚩
Natty: 5
Report link

thank you @nnatter It's working

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @It's
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Amir Souissi

79500852

Date: 2025-03-11 13:08:54
Score: 4.5
Natty:
Report link

I want text field for each line item in the cart and entered value should be displayed for order in admin . How we can achieve this.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sandy

79500846

Date: 2025-03-11 13:06:53
Score: 12.5
Natty: 7.5
Report link

I'm facing the same issue. Did you solve this by any chance? what was the cause and how to fix it? thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (3): Did you solve this
  • RegEx Blacklisted phrase (1.5): how to fix it?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Adriano Godinho

79500838

Date: 2025-03-11 13:03:52
Score: 4.5
Natty: 5
Report link

since it should adjust on screen size you should be able to use the onchange=[(e) => set screen.width(e.target.value)} however i am unsure of this solution but implementing the onchange e handler should maybe work?

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

79500829

Date: 2025-03-11 13:00:50
Score: 9 🚩
Natty: 6.5
Report link

I recently have the same problem and I have not changed anything in my auth or Livewire component.

I use Laravel 12 myself, but my code is otherwise similar.

Have you found a solution yet?

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found a solution yet
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Arvid de Jong

79500816

Date: 2025-03-11 12:57:49
Score: 4
Natty:
Report link

you are waiting 60 seconds for your content? I would say the problem is in your api instead of frontend, can you in anyway batch your requests, so you are sending more requests in order to receive smaller responses?

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

79500771

Date: 2025-03-11 12:42:45
Score: 4.5
Natty:
Report link

Looks like we found a solution by setting up consent mode, following these instructions:
https://www.youtube.com/watch?v=MqAEbshMv84

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Typo

79500756

Date: 2025-03-11 12:37:44
Score: 4
Natty:
Report link

it was extension Indent Rainbow that has been enabled

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

79500748

Date: 2025-03-11 12:34:43
Score: 5
Natty:
Report link

Df["x"] = df1.y

Why I am getting this error while assigning a column as new column

Reasons:
  • Blacklisted phrase (1): I am getting this error
  • RegEx Blacklisted phrase (1): I am getting this error
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ashok Kumar Bhutia

79500715

Date: 2025-03-11 12:23:38
Score: 4.5
Natty:
Report link

same issue here, network_access enabled in extension toml setting, but still got error

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: Iqbal DP

79500714

Date: 2025-03-11 12:23:38
Score: 4
Natty:
Report link

We can make use of the fs module. Here's the link to use it.

Configuration example for SSL implementation using fs module

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

79500692

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

Чи можна пробачити зраду?

Зрада — це слово, яке болить навіть тоді, коли його лише вимовляєш. Воно асоціюється з болем, розчаруванням, втратою довіри. Але чи завжди зраду потрібно карати осудом? Чи можна її пробачити?

Кожна людина хоча б раз у житті переживала момент зради — від друзів, близьких, коханих. Це рана, яка довго не гоїться. Але життя складне й неоднозначне. Іноді зрада — це не просто злий умисел, а наслідок слабкості, страху або помилки. Тоді виникає інше питання: якщо людина щиро кається, чи варто дати їй шанс?

Пробачити — не означає забути. Це радше внутрішній вибір: не дозволити болю керувати собою, а дати можливість зцілитися. Прощення не звільняє зрадника від відповідальності, але звільняє нас від тягаря ненависті. Пробачити — це вияв сили, а не слабкості.

Однак пробачення можливе лише тоді, коли є щирість, усвідомлення провини та бажання змінитися. Якщо зрада повторюється — це вже не помилка, а свідоме зневажання почуттів. У такому разі прощення стає самообманом.

Отже, зраду можна пробачити, але не кожну і не завжди. Усе залежить від обставин, щирості людини та нашої здатності розрізнити слабкість від зневаги. Іноді прощення — це шлях до внутрішнього миру, а іноді — крок назад. Важливо не тільки пробачати інших, а й не зраджувати себе.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: имм

79500582

Date: 2025-03-11 11:40:26
Score: 5.5
Natty:
Report link

Having the same issue, but my ticket got closed and was told it's a duplicate ticket of a ticket 8 years old. As if the same issue and fix from 8 years ago is going to be valid.

I'd expect the lovely people on this site with down vote your issue and this will also get closed. They get a little power trip with the Admin button.

Reasons:
  • RegEx Blacklisted phrase (2): down vote
  • No code block (0.5):
  • Me too answer (2.5): Having the same issue
  • Low reputation (0.5):
Posted by: DaveYme

79500464

Date: 2025-03-11 10:52:15
Score: 5.5
Natty: 4
Report link

guethis is guest yser user guestst

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

79500302

Date: 2025-03-11 10:01:02
Score: 7.5 🚩
Natty:
Report link

did u got an solution for this

Reasons:
  • RegEx Blacklisted phrase (3): did u got an solution
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: user2346947

79500272

Date: 2025-03-11 09:53:59
Score: 13 🚩
Natty: 5.5
Report link

Did you find any solution to this problem? Now I Have the same issue.

When I change Any CPU to ARM64 is does not give error but is it correct way.And I make all changes in XCode Also I remove all pair files and re-pair my windows to mac.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): I Have the same issue
  • RegEx Blacklisted phrase (3): Did you find any solution to this problem
  • RegEx Blacklisted phrase (2): any solution to this problem?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I Have the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find any solution to this
  • Low reputation (1):
Posted by: Ender Fatih Tasar

79500266

Date: 2025-03-11 09:51:56
Score: 8 🚩
Natty: 4
Report link

I’m experiencing the same issue! It seems like SKPaymentQueue.defaultQueue.storefront.countryCode is cached. Even after changing the App Store country by switching Apple IDs, it still returns the wrong country code. Have you managed to solve this issue?

Reasons:
  • Blacklisted phrase (3): Have you managed
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: XKCheng

79500257

Date: 2025-03-11 09:47:55
Score: 10.5
Natty: 8
Report link

I started solving the same problem yesterday. Did you manage to solve it somehow?

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to solve it
  • RegEx Blacklisted phrase (1.5): solve it somehow?
  • 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: Chymster

79500185

Date: 2025-03-11 09:27:48
Score: 4.5
Natty: 3.5
Report link

Explain the process clearly, i also trying to do the same thing

Reasons:
  • Blacklisted phrase (1): trying to do the same
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: dharineeshj

79500174

Date: 2025-03-11 09:23:47
Score: 4
Natty:
Report link

[FrameworkServlet.java:534] : Context initialization failed com.google.inject.internal.util.$ComputationException: java.lang.ArrayIndexOutOfBoundsException: 14659

we are facing same issue while starting up the application

and we are using java 11 to building the warfile and samw warfile
we deployed in dev2 and UAT but same branch 7.8.8 branch deployed in Dev its working fine with 7.8.8 and 7.8.7 not working getting same issue

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): facing same issue
  • Me too answer (0): getting same issue
  • Low reputation (1):
Posted by: anitha

79500169

Date: 2025-03-11 09:22:46
Score: 5
Natty: 5
Report link

can i ask what the results of this project I have nearly project of youres

Reasons:
  • Blacklisted phrase (1): can i ask
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can i as
  • Low reputation (1):
Posted by: EL MEHDI TAZI

79500133

Date: 2025-03-11 09:11:43
Score: 6 🚩
Natty:
Report link

Pls show what error you are getting. Share the log for it.

Reasons:
  • RegEx Blacklisted phrase (2.5): Pls show what
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: A_B

79500095

Date: 2025-03-11 08:55:39
Score: 10
Natty: 7.5
Report link

I wonder how can we iterate for other lines can you please give me an example for that?

Reasons:
  • Blacklisted phrase (1): how can we
  • RegEx Blacklisted phrase (2.5): can you please give me
  • RegEx Blacklisted phrase (1): I wonder how can we iterate for other lines can you please
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abdullah Doğan Güvener

79500066

Date: 2025-03-11 08:36:35
Score: 10.5
Natty: 7.5
Report link

did you find any answer to this?

Reasons:
  • Blacklisted phrase (1): answer to this?
  • RegEx Blacklisted phrase (3): did you find any answer to this
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you find any answer to this
  • Low reputation (1):
Posted by: Dani Popa

79500001

Date: 2025-03-11 08:05:29
Score: 6.5 🚩
Natty: 5.5
Report link

Hello,Have you found a solution,brother

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found a solution
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 666

79499948

Date: 2025-03-11 07:35:22
Score: 11.5 🚩
Natty: 6
Report link

I face the same issues. Has anybody found any solutions?

I start a new project (maui .net8), i change the svg files (Colors, etc.) and in android everything works but in IOS the purple .NET icon & splash screen remains the same when i run app in local device.

Has anybody resolved this?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1.5): resolved this?
  • RegEx Blacklisted phrase (2): any solutions?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I face the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Konstantinos Anagnostopoulos

79499923

Date: 2025-03-11 07:25:20
Score: 5
Natty: 4
Report link

Is there any way to convert rdf:PlainLiteral to string, the exception thrown by the swrl built-ins

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: Sakshi

79499905

Date: 2025-03-11 07:16:17
Score: 6 🚩
Natty: 6
Report link

@christopher moore, thanks for your response

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

79499880

Date: 2025-03-11 07:01:13
Score: 6 🚩
Natty: 5
Report link

@Imran, How to replicate the same postman process in python. i am not able to get proper documentation on using confidentialclient library from msal.

Reasons:
  • Blacklisted phrase (1): i am not able to
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Imran
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: arunava manna

79499838

Date: 2025-03-11 06:37:09
Score: 5
Natty:
Report link

Following your feedback, I looked at the ConsumeKafkaRecord and I think that yes you're right I could apply the following Flow: ConsumeKafkaRecord(ScriptedReader, CSVWriter) => MergeContent => UpdateAttributes => PutFile.

1/ In the ConsumeKafkaRecord, I'd like to use a ScriptedReader to convert and modify the json message and a CSVWriter to write the new message.

2/ MergeContent to merge the stream files.

3/ UpdateAttributes to change the file name.

4/ PutFile to write the file

The only problem is the header I want to write to the CSV file, as I only want one header.

Do you agree with this flow?

Thanks a lot.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Patrick Baie

79499782

Date: 2025-03-11 06:10:02
Score: 4
Natty:
Report link

Here is a demo given by react flow on how to download a diagram as image https://reactflow.dev/examples/misc/download-image

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

79499776

Date: 2025-03-11 06:06:00
Score: 4
Natty: 4.5
Report link

I too faced a similar issue when using parallel stream API.

Below is the scenario; I have a list of transaction objects in reader part of a spring batch , when this list if passed to processor, used parallel stream to process the transaction object in a multi threaded mode. but unfortunately, the parallel stream is not consistent. it is skipping the records at times.

Any fix added in java.util.stream API?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ram

79499684

Date: 2025-03-11 04:54:47
Score: 5.5
Natty:
Report link

Thank you for outlining the issue you’ve been experiencing with the sheet metal bends and the beveling on the edge of the bend line. I understand that this slight bevel is causing a double cut during the laser cutting process, which can be quite challenging.

Regarding your question about using the InventorServer API, we will study the feasibility of extracting just the top or bottom face of the flat pattern using the API in combination with Forge. To better understand your specific situation and provide the most accurate solution, we would appreciate it if you could provide more details, such as:

  1. The specific version of Inventor you are using.

  2. Any sample data set or files where the beveling issue is occurring (if non-confidential and permissible).

  3. Any additional context on how you are currently exporting the flat pattern via DataIo.

  4. A video demonstrating the issue would be particularly helpful.

Once we have more information, we can explore possible solutions and API functionalities to address the problem.

Looking forward to your response.

Thanks and regards,

Chandra shekar G

Developer Advocate

Autodesk Platform Services (formerly Forge)

Stay updated with Autodesk Platform Services!

DevCon 2025 goes to Amsterdam! Join us - https://autode.sk/4eWNw66

Follow us on LinkedIn | YouTube
Subscribe to our Newsletter | Explore Tutorials & Code Samples
Join our Upcoming Events

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1.5): Looking forward to your
  • Blacklisted phrase (1.5): would appreciate
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Chandra6ma

79499620

Date: 2025-03-11 03:55:35
Score: 6.5 🚩
Natty:
Report link

Like your post, thanks for sharing

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (2): thanks for sharing
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fuver Viet Nam

79499609

Date: 2025-03-11 03:40:32
Score: 4
Natty: 4
Report link

Creating and Publishing React Npm Packages simply using tsup https://medium.com/@sundargautam2022/creating-and-publishing-react-npm-packages-simply-using-tsup-6809168e4c86

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: Sundar Gautam

79499586

Date: 2025-03-11 03:17:27
Score: 6 🚩
Natty: 5.5
Report link

https://rajrock38.medium.com/lost-your-uncommitted-changes-in-git-there-is-a-fix-2357ef58466 thank me later for sharing answer

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: hemil

79499514

Date: 2025-03-11 02:01:13
Score: 4
Natty:
Report link

For large log files, I found this AI-powered debugging tool that automates

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

79499458

Date: 2025-03-11 01:01:08
Score: 9 🚩
Natty: 6
Report link

Did you ever find the answer to this? I am struggling with this presently.

Reasons:
  • Blacklisted phrase (1): answer to this?
  • Blacklisted phrase (1): I am struggling
  • RegEx Blacklisted phrase (3): Did you ever find the answer to this
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: grove188

79499425

Date: 2025-03-11 00:29:02
Score: 4
Natty:
Report link

Running your script directly in the R console (instead of within RStudio) might help, as RStudio can sometimes introduce additional memory overhead or restrictions. Are you on Windows?

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

79499417

Date: 2025-03-11 00:18:00
Score: 4
Natty: 3.5
Report link

check out mine sudoku solver , it handle such as error

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

79499414

Date: 2025-03-11 00:15:59
Score: 5
Natty:
Report link

thank you very much Magdalena. we realize that the CSS isnt influencing the export and adding the styling via attributes does the trick

best regards

edwin

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): best regards
  • Blacklisted phrase (1): regards
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: edwin.koh

79499392

Date: 2025-03-10 23:57:55
Score: 11
Natty: 7.5
Report link

I have the same problem, if i change any configuration with the visual tool it brokes the file. Any suggestion?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (2): Any suggestion?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sebastian

79499278

Date: 2025-03-10 22:25:37
Score: 4.5
Natty: 5.5
Report link

Thanks for this. It helped me configure my application.

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

79499235

Date: 2025-03-10 21:54:30
Score: 7.5
Natty: 7
Report link

currently in the same situation. Was there a solution? If so, can you please share with me?

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): can you please share
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: ssesq98

79499211

Date: 2025-03-10 21:43:27
Score: 6 🚩
Natty:
Report link

Can we add IP range in the allowed IPs list instead of individual IPs?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can we add
  • Low reputation (1):
Posted by: user2647367

79499151

Date: 2025-03-10 21:07:17
Score: 6 🚩
Natty: 6
Report link

Vxcdgxvdfgrghbhggbhhfl http://10.0.0.91:3000/hook.js

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Admin'

79499094

Date: 2025-03-10 20:30:10
Score: 5.5
Natty: 6
Report link

@Rajkumar Gaur solution worked for me. Additionally I had to enable deploy keys in https://github.com/organizations/MYORGANIZATION/settings/deploy_keys

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Rajkumar
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: tjhannes

79499069

Date: 2025-03-10 20:10:05
Score: 5.5
Natty:
Report link

Can you post your pipeline, or share the yaml steps? Generally, these are some steps I follow:

All these tasks of type DotNetCoreCLI@2.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you post your
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you post you
  • Low reputation (1):
Posted by: Apurv G

79499015

Date: 2025-03-10 19:45:59
Score: 6.5
Natty: 7.5
Report link

can you confirm if this below azure policy worked for you?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: Michel

79498990

Date: 2025-03-10 19:34:55
Score: 8 🚩
Natty: 5
Report link

I'm experiencing very similar issues with a similar setup. Did you find a solution or some more information on the cause?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dimitar Penev

79498987

Date: 2025-03-10 19:32:54
Score: 7 🚩
Natty: 6
Report link

can someone help me to find the password of this hash $bitlocker$0$16$cb4809fe9628471a411f8380e0f668db$1048576$12$d04d9c58eed6da010a000000$60$68156e51e53f0a01c076a32ba2b2999afffce8530fbe5d84b4c19ac71f6c79375b87d40c2d871ed2b7b5559d71ba31b6779c6f41412fd6869442d66d

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can someone help me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can someone help me to find the
  • Low reputation (1):
Posted by: user29961719

79498925

Date: 2025-03-10 19:04:48
Score: 5.5
Natty: 4
Report link

You need to use @Body annotation to receive the body. Something like @Body String body. Request.getBody() will be null in Micronaut as it loads this data asynchronously.

Refer:

https://stackoverflow.com/a/75704413 https://micronaut-projects.github.io/micronaut-docs-mn1/1.1.x/guide/#requestResponse https://micronaut-projects.github.io/micronaut-docs-mn1/1.1.x/guide/#bodyAnnotation

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Body
  • User mentioned (0): @Body
  • Low reputation (1):
Posted by: Raghav D

79498914

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

I have the same problem, I changed it to db.all and it returns an array and works

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Devel EWeb

79498912

Date: 2025-03-10 18:58:46
Score: 4.5
Natty: 7.5
Report link

I am trying to use the codes above in my theme's functions.php file, but all it does is to create a critical error. Am I adding it wrong? Thanks!

screenshot in url:

https://ibb.co/FbMdnYTL

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I am trying to
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Bob catalin

79498907

Date: 2025-03-10 18:57:45
Score: 4
Natty:
Report link

why not use a different email it might work.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): why not use a
  • Low reputation (1):
Posted by: Camren Cruz

79498855

Date: 2025-03-10 18:34:39
Score: 6.5 🚩
Natty:
Report link

Thanks @howlger for answering in the comments. Basically:

Is this an Eclipse bug?

No. It's a Lombok bug. Reported at https://github.com/projectlombok/lombok/issues/3830.

Is there any way this can be solved by tweaking Eclipse preferences?

No.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @howlger
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Daniele Repici

79498853

Date: 2025-03-10 18:33:38
Score: 6.5 🚩
Natty:
Report link

Follow up question....Im on mac and having simlar issues. Want to try the solution above but uncertain of the directories to make an attempt. Can anyone give a bit more detail to this?

I already have insight face installed (it fails to load in comfyui) and the .whl file fails to build.

All help appreciated.

Solution id like to use:

sudo apt-get install build-essential libssl-dev libffi-dev
mkdir temp
cd temp
git clone https://github.com/deepinsight/insightface/ .
pip3 install wheel setuptools
pip3 install -r requirements.txt
cd python-package
python3 setup.py bdist_wheel
pip3 install dist/insightface-0.7.3-cp311-cp311-linux_x86_64.whl

HERE's the startup showing where the error:



(base) mo-ry@Mac-Studio ~ % cd /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI 
(base) mo-ry@Mac-Studio ComfyUI % python3.11 main.py
[START] Security scan
[DONE] Security scan
## ComfyUI-Manager: installing dependencies done.
** ComfyUI startup time: 2025-03-10 13:23:33.297
** Platform: Darwin
** Python version: 3.11.11 (main, Dec 11 2024, 10:25:04) [Clang 14.0.6 ]
** Python executable: /opt/homebrew/Caskroom/miniconda/base/bin/python3.11
** ComfyUI Path: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI
** ComfyUI Base Folder Path: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI
** User directory: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/user
** ComfyUI-Manager config path: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/user/default/ComfyUI-Manager/config.ini
** Log path: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/user/comfyui.log

Prestartup times for custom nodes:
   0.8 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/ComfyUI-Manager

Checkpoint files will always be loaded safely.
Total VRAM 131072 MB, total RAM 131072 MB
pytorch version: 2.6.0
Set vram state to: SHARED
Device: mps
Using sub quadratic optimization for attention, if you have memory or speed issues try using: --use-split-cross-attention
ComfyUI version: 0.3.26
ComfyUI frontend version: 1.11.8
[Prompt Server] web root: /opt/homebrew/Caskroom/miniconda/base/lib/python3.11/site-packages/comfyui_frontend_package/static
objc[53520]: Class AVFFrameReceiver is implemented in both /opt/homebrew/Caskroom/miniconda/base/lib/python3.11/site-packages/av/.dylibs/libavdevice.61.3.100.dylib (0x108f983a8) and /opt/homebrew/Caskroom/miniconda/base/lib/libavdevice.60.3.100.dylib (0x3147d0800). One of the two will be used. Which one is undefined.
objc[53520]: Class AVFAudioReceiver is implemented in both /opt/homebrew/Caskroom/miniconda/base/lib/python3.11/site-packages/av/.dylibs/libavdevice.61.3.100.dylib (0x108f983f8) and /opt/homebrew/Caskroom/miniconda/base/lib/libavdevice.60.3.100.dylib (0x3147d0850). One of the two will be used. Which one is undefined.
### Loading: ComfyUI-Manager (V3.30.3)
[ComfyUI-Manager] network_mode: public
### ComfyUI Revision: 3238 [9aac21f8] *DETACHED | Released on '2025-03-09'
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/alter-list.json
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/model-list.json
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json
[ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json
Traceback (most recent call last):
  File "/Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/nodes.py", line 2147, in load_custom_node
    module_spec.loader.exec_module(module)
  File "<frozen importlib._bootstrap_external>", line 936, in exec_module
  File "<frozen importlib._bootstrap_external>", line 1073, in get_code
  File "<frozen importlib._bootstrap_external>", line 1130, in get_data
FileNotFoundError: [Errno 2] No such file or directory: '/Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/insightface/__init__.py'

Cannot import /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/insightface module for custom nodes: [Errno 2] No such file or directory: '/Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/insightface/__init__.py'

Import times for custom nodes:
   0.0 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/websocket_image_save.py
   0.0 seconds (IMPORT FAILED): /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/insightface
   0.0 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/comfyui_instantid
   0.1 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/ComfyUI-Manager
   0.7 seconds: /Users/mo-ry/1AyEye/COMFYUI_PY311/ComfyUI/custom_nodes/comfyui_faceanalysis

Starting server

To see the GUI go to: http://127.0.0.1:8188
Reasons:
  • Blacklisted phrase (1): appreciated
  • RegEx Blacklisted phrase (2.5): Can anyone give
  • RegEx Blacklisted phrase (3): help appreciated
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: PadiwanCoder

79498806

Date: 2025-03-10 18:11:32
Score: 7.5 🚩
Natty:
Report link

# my code
import random
from threading import Thread
import time
import os
from inputimeout import inputimeout, TimeoutOccurred

# todo inputs
b = input("press enter to start")

lowest_numb = input("lowest number")

highish_numb = input("highish_numb")

time_for_qus = int(input("time for question"))

print(type(time_for_qus))


def ask_question():
    ran_1 = random.randint(int(lowest_numb), int(highish_numb))
    ran_2 = random.randint(int(lowest_numb), int(highish_numb))
    print(f"{ran_1}x{ran_2}", end="")
    try:
        answer = inputimeout("", time_for_qus)
    except TimeoutOccurred:
        print("Times up!!!")
        ask_question()


ask_question()

my goal is to make a multiplication game, but i am having trouble canceling the input function

can you help?

PS. please respond

Reasons:
  • RegEx Blacklisted phrase (3): can you help
  • RegEx Blacklisted phrase (2): i am having trouble
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29961513

79498800

Date: 2025-03-10 18:09:30
Score: 6 🚩
Natty:
Report link

if you solved the problem please share the solution

Reasons:
  • RegEx Blacklisted phrase (2.5): please share the solution
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: srag zhran

79498778

Date: 2025-03-10 17:59:27
Score: 11 🚩
Natty: 5.5
Report link

did you figure out how to delete the unwanted white layer behind the custom tab bar?

I have the same issue:

enter image description here

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): did you figure out
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: jhovelnu

79498666

Date: 2025-03-10 17:05:14
Score: 6.5 🚩
Natty:
Report link

Did you ever figure this out?

I am having similar, but my app hangs on the index.html file. So I just get the loading page. Hard refresh and all is good

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure this out
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Warren Van Der Merwe

79498650

Date: 2025-03-10 17:01:13
Score: 9.5 🚩
Natty: 6.5
Report link

If in the first example I already know the name of the group "test" and I want to know only the blocks contained in this group. How do I modify the example?
another question, is it possible to select a block and know which group it belongs to?
thanks
Mrz

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): another question
  • Blacklisted phrase (1): How do I
  • Blacklisted phrase (1): I want to know
  • Blacklisted phrase (1): is it possible to
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user29961277

79498609

Date: 2025-03-10 16:45:09
Score: 5.5
Natty: 4.5
Report link

I see it's been a while since this was discussed, but I wanted to ask—has anyone tried integrating Twilio IVR with a CRM for better call tracking and workflow automation? I'm curious if handling call routing based on real-time CRM data has worked smoothly for anyone. Also, any thoughts on handling Twilio’s concurrency limits when scaling up a virtual call center?

Reasons:
  • Blacklisted phrase (1.5): any thoughts
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: IanHarris

79498495

Date: 2025-03-10 15:44:56
Score: 4
Natty:
Report link

Sorry this is put as an answer as I can't comment due to the rep requirement, but I think you need to use the GraphQL API instead of REST.

Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: beepyDev

79498446

Date: 2025-03-10 15:26:51
Score: 7 🚩
Natty:
Report link

I didn't find the ".git" folder on my project. I can see the ".gitattributes" and ".gitignore". please help me

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Teja Reddy

79498427

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

How did you come to this conclusion? "Somehow this generates an error when Googlebot tries to index the pages and the error causes the Nuxt client-side code to show the 404 page."

We're currently having the same issue after upgrading Nuxt 3.9.3 to Nuxt 3.15.4 and upgrading major versions;

"@nuxtjs/i18n": "9.1.5",
"@nuxtjs/sitemap": "^7.2.4",
Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): having the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Jordy ten Den

79498279

Date: 2025-03-10 14:26:35
Score: 6.5 🚩
Natty: 5
Report link

Is it possible to define different primary color set for dark and light mode in app.config.ts ? How it is done?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Rator99

79498220

Date: 2025-03-10 14:03:30
Score: 5.5
Natty: 5.5
Report link

i don't know if u could resolve this issue. If so, how did u do it?

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

79498166

Date: 2025-03-10 13:46:25
Score: 4
Natty: 5
Report link

The answer with most vote just works like charm. Thanks for the help

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

79498146

Date: 2025-03-10 13:37:22
Score: 14 🚩
Natty: 6
Report link

I'm having the same issue. Did you find any solution?

Bump

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: HelpNeeder

79498104

Date: 2025-03-10 13:21:19
Score: 10.5
Natty: 8.5
Report link

I have the same problem, how you resolved it??

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

79498103

Date: 2025-03-10 13:21:17
Score: 9 🚩
Natty:
Report link

Did you manage to find a solution? Am I experiencing the same problem?

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

79498086

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

Well i used curl and included my session cookie, that worked for now :)

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

79497965

Date: 2025-03-10 12:20:04
Score: 4
Natty:
Report link

Give me crush report screenshot

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