79684246

Date: 2025-06-30 04:15:51
Score: 3.5
Natty:
Report link

I found that I need to create a specific service in android platform to handle method channel from flutter. This service must be a background service to handle method from flutter.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CoolNa

79684241

Date: 2025-06-30 04:07:49
Score: 3.5
Natty:
Report link

command line need to download seperately.
https://portal.perforce.com/s/downloads?product=Helix%20Command-Line%20Client%20%28P4%29

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

79684236

Date: 2025-06-30 04:02:48
Score: 3.5
Natty:
Report link

I faced the same error and i found that i forget [HttpGet] annotation

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

79684231

Date: 2025-06-30 03:52:45
Score: 5
Natty: 5
Report link

Что бы исправить это поведение нужно для скролл контейнера прописать css свойство transform: perspective(0);

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

79684226

Date: 2025-06-30 03:42:43
Score: 3
Natty:
Report link

Using another approach with JUnit Platform Launcher, there is a more detailed assertions way:

https://stackoverflow.com/a/47982480/7213979

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: kinlhp

79684225

Date: 2025-06-30 03:40:43
Score: 1.5
Natty:
Report link

angle = (angle + offset + 180) % 360 - 180

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

79684220

Date: 2025-06-30 03:33:41
Score: 1
Natty:
Report link

if you wanna get from HTML

  1. open browser DevTools
  2. select the <iframe>
  3. go to the Console, type $0.contentWindow.location.href
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Graham Quan

79684212

Date: 2025-06-30 03:24:39
Score: 5.5
Natty: 6.5
Report link

I was also having issue connecting I followed this blog.

Please see the blog below:

https://medium.com/@khan.abdulwasey99/step-by-step-process-on-how-to-connect-a-spring-boot-application-to-supabase-f1791e1d2402

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

79684207

Date: 2025-06-30 03:15:37
Score: 0.5
Natty:
Report link

Big thanks to @jcalz, whose answer set me on the right path!

I was getting some strange behavior when arrays are involved. I think what was happening is that the resulting type was including a union of array properties. This could be what @jcalz was referring to when they said:

\> you will probably have some use cases where this definition does things you don't expect or like.

Here's an example of the array index / property issue I was facing:

result:
albumMedias: number | ShareAlbum_shared_album_album_medias_cursor_album_medias[] | (() => ArrayIterator<never>) | ... 38 more ... | ((index: number, value: never) => never[])

I modified the solution to properly handle arrays without including all the Array properties.

type GetDeepProp<T, K extends string> =
  K extends keyof T
    ? T[K]
    : T extends Array<infer U>
      ? GetDeepProp<U, K>
      : T extends object
        ? {
          [P in keyof T]:
          P extends string
            ? GetDeepProp<T[P], K>
            : never
        }[keyof T]
        : never

Thanks @jcalz!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @jcalz
  • User mentioned (0): @jcalz
  • User mentioned (0): @jcalz
Posted by: animatedgif

79684202

Date: 2025-06-30 02:58:33
Score: 2.5
Natty:
Report link

Each compiler uses different internal data structures, hashing algorithms, and optimizations Differences in how memory is allocated and managed can impact Each compiler applies different optimizations during compilation.

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

79684198

Date: 2025-06-30 02:50:31
Score: 4
Natty:
Report link

According to my understanding, you are making some issues.
I ever faced similar issue before so please try it with my experience.
config.py**
SESSION_COOKIE_SAMESITE = "None"

SESSION_COOKIE_SECURE = True
app.py****

CORS(app, supports_credentials=True, resources={
    r"/*": {
        "origins": [
            "http://localhost:3000",
            "https://453c-162-199-93-254.ngrok-free.app"
        ]
    }
})

if it is still unauthorized, then please let me know.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (1): I ever faced similar issue before so please
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user29378984

79684197

Date: 2025-06-30 02:48:30
Score: 4
Natty:
Report link

some try... maybe version 1.0.0-M6 of springAI can work.

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

79684196

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

My problem was with nested async. I needed to comment out that import:

# nest_asyncio.apply()

It looked like a memory issue but in my logs for the jupyter service it was clear that it was async issue:

`

sudo systemctl status jupyter
[sudo] password for demo:
● jupyter.service - Jupyter-Notebook Daemon
     Loaded: loaded (/etc/systemd/system/jupyter.service; enabled; preset: enabled)
     Active: active (running) since Mon 2025-06-30 01:57:29 UTC; 37min ago
   Main PID: 1204921 (jupyter-noteboo)
      Tasks: 16 (limit: 153561)
     Memory: 150.0M (peak: 220.6M)
        CPU: 24.173s
     CGroup: /system.slice/jupyter.service
             ├─1204921 /home/demo/jupyter_env/bin/python3 /home/demo/jupyter_env/bin/jupyter-notebook --no-browser --notebook-dir=/home/demo
             └─1218765 /home/demo/rag/bin/python -Xfrozen_modules=off -m ipykernel_launcher -f /home/demo/.local/share/jupyter/runtime/kernel-c293a975-19f7-443a-801b-00>

Jun 30 02:30:51 demo bash[1218711]:   File "/usr/lib/python3.12/asyncio/base_events.py", line 1972, in _run_once
Jun 30 02:30:51 demo bash[1218711]:     handle = self._ready.popleft()
Jun 30 02:30:51 demo bash[1218711]:              ^^^^^^^^^^^^^^^^^^^^^
Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): to comment
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: texasdave

79684192

Date: 2025-06-30 02:41:28
Score: 6
Natty:
Report link

Shouldn't be using WPF in 2025 you fucking retard

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jonathan Mayers

79684188

Date: 2025-06-30 02:32:26
Score: 3.5
Natty:
Report link

Djjd is sh is mddn songs HD shsj and the same time I xhhd shyd apko bhi nahi hai to offi the same time I will be

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

79684184

Date: 2025-06-30 02:27:25
Score: 2.5
Natty:
Report link

The most likely problem is that the browser is clipping your cube; the 'receding' will be caused by a rectangular clip. If you run the cube in a different environment, the problem will (most likely) disappear.

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

79684177

Date: 2025-06-30 02:14:22
Score: 3.5
Natty:
Report link

nice to meet you all! Today, we are going to talk about the custom dialog "openCustomDialog" in HONOR OS. I believe that many of you will need to use pop-up windows in your development process, and it should not be coupled with the page during use. Today, I will help you all analyze the usage of "openCustomDialog" in detail.

一、First, let's analyze the settings for pop-up windows in Harmony OS. Harmony OS provides some basic design for pop-up windows, but it cannot meet the requirements for diverse designs of pop-ups. However, it offers the method "openCustomDialog" which can be used. This method is based on the "PromptAction" under the UIContext.

1、First, define a context

// Applying Context
private context: common.UIAbilityContext = getContext() as common.UIAbilityContext;
// Tips for Methodology
private promptAction: PromptAction = context.windowStage.getMainWindowSync().getUIContext().getPromptAction()

2、Let's take a look at the parameters of penCustomDialog. dialogContent refers to the content to be displayed, which is the component. options are the parameters related to the pop-up window, such as closing the pop-up window, etc. You can refer to the Harmony OS documentation for detailed descriptions. Here, we mainly discuss the custom components that need to be displayed.

this.promptAction().openCustomDialog(custom,options);

二、The ComponentContent of the custom component has three parameters. Among them, the T type parameter is the key data for data interaction.

uiContext: This is the context of the UI. getUIContext()

builder: It is the WrappedBuilder<[T]> component decorated with @builder.

args: is a parameter of type T

1、"Builder" is a global component, which is the custom component we need to write. The generic type "T" represents the data object type that we need to pass, and "args" represents the data object that needs to be passed.

// custom component
@Builder
export function customBuilder(params: DialogBuilderParams) {
    Text("custom component")
}
// create component
let custom = new ComponentContent(getUIContext(), wrapBuilder,params)
// show component
this.promptAction().openCustomDialog(custom,options);

2、So, basically, this is the completion of a basic pop-up window. Next, let's talk about the parameters that the component needs to pass in. The parameters need to be displayed as 'params', and there are also the close method 'close' and other parameters 'status'.

export interface DialogBuilderParams<T,R>{
  params: T
  close: (data: R) => void
  status?: DialogStatus
}

3、After obtaining the data, it is displayed in the component. The code of the group definition component is modified. params.params is used to display the data, and params.close(true) is used to close the pop-up window.

// custom component
@Builder
export function customBuilder(params: DialogBuilderParams) {
  Column() {
    Text(params.params).width('90%').textAlign(TextAlign.Center).padding(10)
    Blank()
    Divider()
    Text('确认')
      .onClick(() => {
        params.close(true)
      })
      .width('100%')
      .aspectRatio(6)
      .textAlign(TextAlign.Center)
  }
  .width('70%')
  .backgroundColor(Color.White)
}

4、Implement the method for closing the popup window. When it is necessary to pass parameters for processing the close method.

// create component
let custom = new ComponentContent(getUIContext(),wrapBuilder,{
    params: "This is the data to be presented.",
    close: (data: R) => {
        // close dialog
        this.promptAction().closeCustomDialog(custom)
    }
})

Note: The complete code has been submitted to the HarmonyOS Third-Party Library. Use the following command to install.

ohpm install @free/dialog

Calling method

// Prompt Pop-up Window 
Dialog.alert({data:"alert"})
// Middle pop-up window 
Dialog.open({data:"open"})
// Bottom pop-up window 
Dialog.sheet({data:['sheet']})
// Selector Popup Window 
Dialog.picker({data:['picker']})
// Phone call pop-up window 
Dialog.tel("168********")
// Input box popup window 
Dialog.input({data:"input"})
// Time Selection Dialog Box 
Dialog.time({data:new Date()})
// Date selection dialog box 
Dialog.date({data:new Date()})
// Calendar Selection Dialog Box 
Dialog.calendar({data:new Date()})
// Custom Pop-up Window 
Dialog.custom(wrap, params)

If you like this content, please give a little heart!

Reasons:
  • RegEx Blacklisted phrase (2.5): please give
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @builder
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user30867031

79684152

Date: 2025-06-30 01:05:08
Score: 6.5
Natty: 5.5
Report link

for some reason if i have 2 email with with similar subject (i.e email 1 with Subject= #general" & email 2 with subject= #enterprise-general"), the apps Script take the 2 subjects and insert them in the sheet "#general". Is there a way to insert it when is the exact subject into the code? Thanks

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

79684150

Date: 2025-06-30 01:04:07
Score: 1
Natty:
Report link

Since Angular 20 doesn't have a script with @NgModule, you can just import the RouterModule per component like so:

import { Component } from '@angular/core';
import { RouterModule } from '@angular/router';

@Component({
  selector: 'navbar',
  imports: [RouterModule],
  templateUrl: './navbar.html',
  styleUrl: './navbar.scss'
})

export class Navbar {

}

That fixed the error of "Can't bind to 'routerLink' since it isn't a known property of 'a'"

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

79684148

Date: 2025-06-30 00:51:05
Score: 2.5
Natty:
Report link

Here's a fast rolling median implementation that I wrote.

Some people seem to like it:

"We are aware of only one general-purpose median filter implementation that consistently outperforms R: an open source C implementation by AShelly"

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

79684129

Date: 2025-06-29 23:52:53
Score: 1
Natty:
Report link

We saw this error periodically when our Varnish cache was full. Increase the size of the cache fixed it.

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

79684128

Date: 2025-06-29 23:51:53
Score: 2.5
Natty:
Report link

The codeless environment is terrible at doing anything like looping, you can't nest loops for example. I ended up grouping my results into sets of 25, and having a separate zap for each page.

In my data I needed a column with section + page number, section name being the dynamic element and the page number hard coded in, an awful solution but fortunately a working one at least. Fortunately two pages were sufficient.

Both zaps respond to the same (sub-item added) event and fire simultaneously, I can now add 41 subitems in one go.

Finally, I'm new to Monday so I'm sure there are lots of tricks that I have yet to pick up on. A lot of the concepts of how it organise my projects haven't been explained, I just jumped it (had to...) and self taught by playing. A more experienced user might not have quite so fraught experience.

With some equally ugly work arounds it could be possible that looping might be avoidable. My one thought would be to use prepopulated template items with subitems already in place. This lacks flexibility though so is probably only useful in very static environments.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1.5): I'm new
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: RogerB

79684127

Date: 2025-06-29 23:42:51
Score: 3.5
Natty:
Report link

I faced a similar issue while following this VS Code Tutorial of Using GCC with MinGW.

When Clicked on "Run C/C++ file", it threw me the following error:

Executing task: C/C++: g++.exe build active file 
Starting build...
cmd /c chcp 65001>nul && C:\msys64\ucrt64\bin\g++.exe -fdiagnostics-color=always -g "C:\Users\Joy\Documents\VS CODE\programmes\helloworld.cpp" -o "C:\Users\Joy\Documents\VS CODE\programmes\helloworld.exe"
Build finished with error(s).
 *  The terminal process failed to launch (exit code: -1). 
 *  Terminal will be reused by tasks, press any key to close it. 

Also, there was this following pop - up error:
enter image description here

saying "The preLaunchTask 'C/C++: g++.exe build active file' terminated with exit code -1."

Here is my source code:

#include <iostream>
#include <vector>
#include <string>

using namespace std;

int main()
{
    vector<string> msg {"Hello", "C++", "World", "from", "VS Code", "and the C++ extension!"};

    for (const string& word : msg)
    {
        cout << word << " ";
    }
    cout << endl;
}

My USER Path Variables has- C:\msys64\ucrt64\bin

When I pass where g++ in my command prompt, i get C:\msys64\ucrt64\bin\g++.exe

Even I made sure it was EXACTLY how VS Code website said to do it. I have even uninstalled both MSYS2 and VS Code and then reinstalled them. But still, I am not encountering this error. Please help!

Reasons:
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): Please help
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Joy Khandelwal

79684117

Date: 2025-06-29 23:24:47
Score: 4
Natty:
Report link

I can confirm @Kevinoid's suggestion works. What also works is prefixing "%h" instead of or replacing $HOME in the path of file/directory in systemd unit files.

see URL: https://bbs.archlinux.org/viewtopic.php?id=297777

"%h"equivalent to "$HOME", so can make work without /bin/bash -c 'exec part

Both work for me.

Cheers.

Reasons:
  • Blacklisted phrase (1): Cheers
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Kevinoid's
  • Low reputation (1):
Posted by: TheWickerman666

79684105

Date: 2025-06-29 23:02:42
Score: 3.5
Natty:
Report link

i got these error because of the exist of pages and app in src

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

79684103

Date: 2025-06-29 22:52:40
Score: 2.5
Natty:
Report link

This site can’t be reached

localhost refused to connect.

Try:

ERR_CONNECTION_REFUSED

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

79684097

Date: 2025-06-29 22:43:38
Score: 1
Natty:
Report link

The following worked for me,
Apache Spark 3.5.5 is compatible with Python 3.8 to 3.11 (Python 3.11.9 is recommended). Also make sure to add PYSPARK_PYTHON=python as an env variable.

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

79684089

Date: 2025-06-29 22:27:35
Score: 3
Natty:
Report link

Verify if variabile TWO_TASK is set

If it is set, reset it

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bruno Castellani

79684082

Date: 2025-06-29 22:03:29
Score: 1.5
Natty:
Report link
  1. Click on the route you want.
  2. Click the share link button share icon and copy the link.
  3. Go to the shared link (e.g., https://maps.app.goo.gl/ZLrT3Z5ESrsTxCcz5 ).

It will only show one route and no alternative ones.

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

79684077

Date: 2025-06-29 21:49:26
Score: 2
Natty:
Report link

Would you try patchwork and cowplot?

library(ggplot2)
library(patchwork)

p1 <- ggplot(data.frame(x = 2000:2020, y = rnorm(21)), aes(x, y)) +
geom_line() +
theme_classic()

p2 <- ggplot(data.frame(x = 1:15, y = runif(15)), aes(x, y)) +
geom_bar(stat = "identity") +
theme_classic()

library(cowplot)

plot_grid(p1, p2, rel_widths = c(1, 1), align = "v", axis = "tb")
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: MetehanGungor

79684059

Date: 2025-06-29 21:14:18
Score: 1
Natty:
Report link

From my point of view either SHACL Rule or SPIN rule would be an elegant solution to that. However, to make this work, you would need to export Wikidata (or the required domain sub-graph) to a triple store that supports this feature.

There is a project that tries to solve reasoning for Wikidata which is a reasonably (pun intended) complex endeavor: https://www.wikidata.org/wiki/Wikidata:WikiProject_Reasoning

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

79684053

Date: 2025-06-29 21:06:16
Score: 2.5
Natty:
Report link

After 3 days stuck on this problem, and naturally, 15min after crying for help here, I believe I found out how to solve it.
It seems all I needed to do was to use

getRawContent()

instead of

getContent()

for the scriplet to 'copy-paste' the code instead of solving it before assembling it in the file...
this seems to bypass all the limitations of the scriplet printing.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): how to solve
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rafael Fontana

79684049

Date: 2025-06-29 21:00:15
Score: 0.5
Natty:
Report link

It seems a shame nobody has mentioned https://github.com/jsog/jsog-jackson yet. It implements JSON Object Graph format aka JSOG. JSOG handles arbitrary graphs including circular references of any length (subject to Jackson's object nesting depth of course)

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

79684043

Date: 2025-06-29 20:54:13
Score: 2.5
Natty:
Report link
android.app.extra.PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME":"com.rrivenllc.shieldx/.receivers.DeviceAdmin
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Axel Brito

79684033

Date: 2025-06-29 20:35:09
Score: 1
Natty:
Report link

I have Theano working with CUDA 12 and Numpy 1.26.4, all very new. I've been "sort-of" maintaining Theano, and have provided all the changes to https://github.com/pbaggens1/theano_pmb . It's definitely not professionally maintained, but all the changes needed are provided, so that Theano with full GPU support works today. I hope it can help others, and keep Theano alive.

Reasons:
  • Whitelisted phrase (-1): hope it can help
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Paul M Baggenstoss

79684023

Date: 2025-06-29 20:25:06
Score: 2
Natty:
Report link

Line1:[file:///storage/emulated/0/Android/data/com.fazil.htmleditor/files/Documents/https___www_facebook_com_luis_mario_martinez_vega_2025-package-deckofplayingcards/index.html]UncaughtSyntaxError:Unexpectedidentifierlinks[ERROR]Line1:[file:///storage/emulated/0/Android/data/com.fazil.htmleditor/files/Documents/https___www_facebook_com_luis_mario_martinez_vega_2025-package-deckofplayingcards/index.html]UncaughtSyntaxError:Unexpectedtoken*[ERROR]Line1:[file:///storage/emulated/0/Android/data/com.fazil.htmleditor/files/Documents/https___www_facebook_com_luis_mario_martinez_vega_2025-package-deckofplayingcards/index.html]UncaughtSyntaxError:Unexpectedidentifierlinks[ERROR]Line1:[file:///storage/emulated/0/Android/data/com.fazil.htmleditor/files/Documents/https___www_facebook_com_luis_mario_martinez_vega_2025-package-deckofplayingcards/index.html]UncaughtSyntaxError:Unexpectedendofinput[ERROR]Line1:[file:///storage/emulated/0/Android

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Myrna Rodriguez

79684021

Date: 2025-06-29 20:20:04
Score: 2.5
Natty:
Report link

I faced the exact same issue. The only option is to use JNI and building the mediapipe library yourself. I tried doing that and it actually work. The tricky part is building a shared library and exposing the method you actually want.

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

79684017

Date: 2025-06-29 20:14:03
Score: 2.5
Natty:
Report link

Have you tried using setLoginItemSettings ?

app.setLoginItemSettings({
  openAtLogin: true,
  openAsHidden: true,
});
Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: ivox

79684012

Date: 2025-06-29 20:06:01
Score: 4
Natty: 4
Report link

Scan a QR code to view the results here [email protected]

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

79684004

Date: 2025-06-29 19:53:58
Score: 1
Natty:
Report link

In Itext 5.x, we should reshape characters. In other words, we should handle the formats of each Arabic( or Persian) character.

For example, for ب we have 4 formats:

ب isolated

با initial ( start with ب)

آب final (end with ب)

عباس middle (appears in the middle of a word)

I have tested in Java with icu4j( 74.1)

Note: icu4j just supports reshaping Arabic characters. For Persian characters like گچ پژ you should handle them manually.

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

79683997

Date: 2025-06-29 19:40:55
Score: 1
Natty:
Report link

Through using MapStruct, you can define fetchUser method as default one to handle with toEntity process

@Mapper(componentModel = "spring",  
        uses = UserRepository.class)
public interface AddressMapper {
  
  @Mapping(target = "user",
           expression = "java(fetchUser(dto.getUserId(), userRepository))")
  Address toEntity(CreateAddressDTO dto, @Context UserRepository userRepository);

  default User fetchUser(Long id, UserRepository repo) {
    return repo.findById(id)
               .orElseThrow(() -> new EntityNotFoundException("User not found: " + id));
  }
}

Next, you can add these code block shown below to relevant service.

Address address = addressMapper.toEntity(dto, userRepository);
addressRepo.save(address);

I hope you can help you fix your issue.

Reasons:
  • RegEx Blacklisted phrase (3): you can help
  • Long answer (-0.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Sercan Noyan Germiyanoğlu

79683992

Date: 2025-06-29 19:31:53
Score: 0.5
Natty:
Report link

I don't know why, but I just keep trying just in case and now it works. Below is the code that made it function.

/**
 * Create a list.
 * @customfunction
 * @param name string
 * @param args {string[][]}
 */
function datatablex(display: string, ...args: string[][][]): any {
  const entity = {
    type: "Entity",
    text: display,
    properties: {
      Nombre: {
        type: "String",
        basicValue: display,
        propertyMetadata: {
          excludeFrom: {
            cardView: true
          }
        }
      }
    }
  };
  for (let i = 0; i < args[0].length; i += 2) {
    entity.properties[args[0][i + 0]] = {
      type: "Array", // "String",
      elements: args[0][i + 1] // basicValue: value
    };
  }
  return entity;
};
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Enderluck

79683991

Date: 2025-06-29 19:30:52
Score: 1.5
Natty:
Report link

There is an even simpler way to get a subclip::

subclip = clip[10:20]

I'm running moviepy 2.1.2.

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

79683980

Date: 2025-06-29 19:07:47
Score: 1
Natty:
Report link

You can try using dvh instead of percent:

.artplayer-app {
    width: 100%;
    height: 100dvh;
}

Here is some visualization on how it is different from percent and other alternatives - https://blog.stackademic.com/stop-using-100vh-on-mobile-use-these-new-css-units-instead-adf22e7a6ea9

But if the camera notch is a part of the browser window, I don't think it is possible.

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

79683963

Date: 2025-06-29 18:44:42
Score: 1
Natty:
Report link

The HTML tables are likely containing non-breaking spaces.

Try:

flight_details = df.iloc[index, 5].replace('\xa0', ' ').strip()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: keithwalsh

79683948

Date: 2025-06-29 18:28:37
Score: 0.5
Natty:
Report link

ok, today after several attempt i managed out howto fix,

it looks like loading image with

    imageView.setImageBitmap(BitmapFactory.decodeStream(imageId[position]));

causes the problem during recycling of the image, probably for some reason the

InputStream[] imageId

becomes inconsistent, then now i pre-load all images into a Bitmap array and load them to the imageView with

    imageView.setImageBitmap((bitmapArray[position]));

and all works, but still i think there is some kind of bug with ImageView

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

79683945

Date: 2025-06-29 18:21:35
Score: 0.5
Natty:
Report link

<!DOCTYPE HTML >

<HTML>

<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />

<HEAD>

<TITLE>poppy test</TITLE>

<STYLE>* {font-size:1em;box-sizing:border-box;overflow-wrap: break-word;font-family:Arial }

html {scroll-behavior: smooth;text-transform:capitalize;overscroll-behavior: none;}

body{margin:0px;overscroll-behavior:none;background:#000000;

#poppyButtons{position:relative;height:150px;width:150px;border:5px solid olive;}

.pedalHold{position:absolute;top:0px;height:100%;width:40px;border:0px solid lime;}

.poppyPedal{ background: red;border:8px inset rgba(255,0,255,0.5);

;max-width:50px;height:80px;text-align:center;padding:4px;

font-size:1.5em;color:fusia;

border-radius:100%;}</STYLE>

</HEAD>

<BODY>

<DIV ID="poppyButtons">

<DIV class="pedalHold" style="left:50px;transform: rotate(45deg)"><DIV class="poppyPedal">1</DIV></DIV>

<DIV class="pedalHold" style="left:50px;transform: rotate(135deg)"><DIV class="poppyPedal">3</DIV></DIV>

<DIV class="pedalHold" style="left:50px;transform: rotate(270deg)"><DIV class="poppyPedal">6</DIV></DIV>

<DIV class="pedalHold" style="left:50px;transform: rotate(315deg)"><DIV class="poppyPedal">7</DIV></DIV>

<DIV class="pedalHold" style="left:50px;transform: rotate(90deg)"><DIV class="poppyPedal">2</DIV></DIV>

<DIV class="pedalHold" style="left:50px;transform: rotate(180deg)"><DIV class="poppyPedal">4</DIV></DIV>

<DIV class="pedalHold" style="left:50px;transform: rotate(225deg)"><DIV class="poppyPedal">5</DIV></DIV>

<DIV class="pedalHold" style="left:50px;transform: rotate(0deg)"><DIV class="poppyPedal">§</DIV></DIV>

<DIV class="pedalCent" style="position:absolute;left:45px;top:45px;width:50px;height:50px;background: green;border-radius:100%;border:8px inset rgba(0,60,40,0.5)"></DIV>

</DIV>

</BODY>

</HTML>

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

79683943

Date: 2025-06-29 18:20:35
Score: 3
Natty:
Report link

fraction1, fraction2 = input().split()

num1, den1 = fraction1.split('/')

num2, den2 = fraction2.split('/')

print(num1,num2,den1,den2)

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

79683935

Date: 2025-06-29 18:10:32
Score: 2.5
Natty:
Report link

Your Code have Syntax Error

Try out the re-corrected Code

var lastModified = document.lastModified;

document.getElementById("modified").innerHTML = lastModified;

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

79683928

Date: 2025-06-29 17:51:28
Score: 5
Natty: 5
Report link

estava enfrentado esse problema com laravel 12, com a utilização no swagger. A solução acima para mim funcionou

Reasons:
  • Blacklisted phrase (2): solução
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Farley Fernando

79683919

Date: 2025-06-29 17:36:25
Score: 3
Natty:
Report link

Debugging is a major weak point for mathematica, especially for code of any size. Mathematica is very very good at some things, but i am building something medium size and growing and debugging and a few other things made it very difficult and slow to develop. It turned out the one very cool thing Mathematica did for me was handled fine by numerical integration in python using numpy and scipy, and some calculations are actually handled better. With some effort I moved my code to python and will stay there. I will use Mathematica for one-off stuff, or to double-check a few results. I wish I had that advice 9 months ago.

I never got WorkBench (2025) to work with Eclipse on windows. I was tempted to try to write a debugger (I've done that for another platform) but didn't get very far with the research. There isn't a documented interface to the kernel, and I needed to get my actual task done.

Print statements are a very slow and inefficient way to debug. Trace and echo are fancy print statements. There is a debugger for notebooks, but it is very unintuitive and not very powerful. I built a simple system to log messages to a file, but another set of print statements. At least there you can externally filter and import messages without selectively turning things off and on trying to narrow something down. Ive built a more sophisticated logging system with tags on logging statements no another platform, with a way to selectively log tags. That system is good for troubleshoot things in a customer's production environment where you can't debug, but not a great debug tool

Is WorkBench worth another try?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: NemoX

79683906

Date: 2025-06-29 17:03:18
Score: 1.5
Natty:
Report link

Yes, for SIPp load testing with INVITEs and RTP, you absolutely need an XML scenario file. The `uac_pcap.xml` or `uac.xml` are good starting points that you'd then customize with your SBC's details and SDP for RTP.

**Tip:** If writing/editing SIPp XML gets tedious, you might find a GUI tool helpful. My open-source project, **kSipP**, provides a web-based interface to build and run SIPp scenarios visually, including an [online SIPp XML generator](https://kiran-daware.github.io/sipp-xml/). Check out (https://github.com/kiran-daware/kSipP)

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

79683900

Date: 2025-06-29 16:58:16
Score: 1
Natty:
Report link

The callback function passed as an argument to the handleSubmit function takes 2 parameters: data and event. I think now you can easily handle the situation raised in your form. Just place event.preventDefault() at the first line of your callback function; but, be assured that you're passing two parameters to the callback function you're using, not one.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nayem Uddin Biswas

79683890

Date: 2025-06-29 16:41:13
Score: 0.5
Natty:
Report link

I had a similar problem driving me mad. Chrome pointed to the footer being the issue, but it was the main content container above it causing the issue. A React component changed the size of the containing div above the footer pushing the footer down and triggering the CLS issue. In fact, whatever the next element below that container would get blamed for the CLS issue, and the more of them there were the worse the score was.

My solution was to set a min-height for the main content above the "culprit" element.

Claude Code and ChatGPT also could not find this problem when I presented it to them.

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

79683888

Date: 2025-06-29 16:33:11
Score: 1
Natty:
Report link

Use Rakubrew.

curl https://rakubrew.org/install-on-perl.sh | sh
rakubrew build
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Rawley Fowler

79683887

Date: 2025-06-29 16:31:10
Score: 7
Natty: 4.5
Report link

Thanks for sharing this StackOverflow discussion on PDF clipping logic—it’s a fascinating breakdown of how graphics contexts handle shape boundaries. As someone working in digital image editing at PixcRetouch, understanding these low-level rendering principles helps us better optimize our retouching workflows, especially when dealing with vector layers or exporting client assets to PDF. Appreciate the technical depth here!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): StackOverflow
  • Blacklisted phrase (2): Thanks for sharing
  • Contains signature (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: pixcretouch

79683884

Date: 2025-06-29 16:30:09
Score: 4
Natty:
Report link

Solved: You need to close ComPort before changing the baudrate.

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

79683881

Date: 2025-06-29 16:20:07
Score: 1
Natty:
Report link

As of Chrome 134 (2025-03-04), you can now use the closedby="none" attribute as a native solution to prevent modal from being closed by the Esc key.

<dialog closedby="none" id="myModal">
    <h3>Modal Title</h3>
    <p>The modal contents.</p>
</dialog>

<button onclick="document.getElementById('myModal').showModal()">Open Modal</button>

More info: https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog#closedby

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

79683875

Date: 2025-06-29 16:09:05
Score: 3.5
Natty:
Report link

What about text report redirected to standard output?

<coverage>
    <report>
        <text outputFile="/dev/stdout" showOnlySummary="true" />
    </report>
</coverage>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: arczinosek

79683874

Date: 2025-06-29 16:09:05
Score: 1
Natty:
Report link

Using uistack changes the ordering in the legend as well. If you prefer not, then one way is to artificially give the curve that needs to be drawn on top some positive ZData as well (using set(handle, 'ZData', ones(size(get(handle,'XData')))) for example).

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

79683863

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

Make gapSize negative and it makes the progress bar smooth.

enter image description here

LinearProgressIndicator(
    modifier = Modifier
        .height(18.dp)
        .fillMaxWidth(),
    progress = { progress },
    gapSize = (-30).dp
    )
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: 1mpalo

79683858

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

I was able to get the result from chat gpt. UAU. I'm amazed... I suggest you do the same. If your questions are precise CHAT GPT will give you a working solution... I should do that more often =)

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

79683855

Date: 2025-06-29 15:39:58
Score: 1
Natty:
Report link

I was looking for that but it seems Vercel AI SDK doesn't support it. I use Anthropic's SDK to count tokens:
https://docs.anthropic.com/en/docs/build-with-claude/token-counting#how-to-count-message-tokens

import Anthropic from '@anthropic-ai/sdk';

const client = new Anthropic();

const response = await client.messages.countTokens({
  model: 'claude-opus-4-20250514',
  system: 'You are a scientist',
  messages: [{
    role: 'user',
    content: 'Hello, Claude'
  }]
});

console.log(response);

Result:
{ "input_tokens": 14 }

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

79683854

Date: 2025-06-29 15:38:58
Score: 1
Natty:
Report link

you can solve the issue with this code inside the Configure method:


        Description(x =>
        {
            x.ClearDefaultAccepts();
        }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Julian Gr

79683845

Date: 2025-06-29 15:23:54
Score: 3.5
Natty:
Report link

For anyone who cares:

IntelliJ 2025, you can customize your Toolbar. enter image description here

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

79683822

Date: 2025-06-29 14:42:44
Score: 13
Natty: 8
Report link

is there a solution? i have the same problem?

Reasons:
  • Blacklisted phrase (3): is there a solution
  • 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
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is there a solution
  • Low reputation (1):
Posted by: ofek

79683816

Date: 2025-06-29 14:30:41
Score: 2.5
Natty:
Report link

Package motion_sensors is very old. Use the new package like dchs_motion_sensors

See more at https://pub.dev/packages/dchs_motion_sensors

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

79683814

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

I'm leveraging the Decorator pattern in Quarkus to implement functionality equivalent to Spring JPA Specification: https://github.com/VithouJavaMaestro/quarkus-query-sculptor/tree/master

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

79683811

Date: 2025-06-29 14:28:40
Score: 1
Natty:
Report link

It's a shame that a Bash question about such a relevant case remains without a code solution. Therefore, the number-of-times-viewed counter built into stackoverflow.com Questions is converted here into a case-without-code-solution_number-of-times-viewed counter.

Yet it is precisely in this Yes/No [y/n] scenario that this case makes perfect sense. Deliberately allowing the user to enter more characters than required to give a valid answer makes little sense and therefore cannot be considered a relevant option. Thus, the use of the restrictive read-option '-n [digit]' with the exact number of characters to print required is fully justified. It is therefore perfectly consistent that the user must validate their input, in this case by pressing the Enter key, as a typo can happen, and this must be able to be erased, which implies that the backspace-key is not counted by 'read' as a printed character input.

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

79683810

Date: 2025-06-29 14:27:40
Score: 2.5
Natty:
Report link

If you grant rights to one of the views/tables you will be able to use entra id groups for this.

GRANT SELECT view_name TO [Name_of_group];

After this IS_MEMBER('Name_of_group'); will work fine.

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

79683809

Date: 2025-06-29 14:26:39
Score: 2.5
Natty:
Report link

You can try using vercel deployment directly without github intervention:

1 - npm install -g vercel

2 - vercel

Connect vercel to github repo (popup will appear)

Deploy!

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

79683805

Date: 2025-06-29 14:21:38
Score: 3
Natty:
Report link

TM DAVIL 😈

header 1 header 2
cell 1 cell 2
cell 3 cell 4

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

79683796

Date: 2025-06-29 14:08:35
Score: 1
Natty:
Report link

You can send a synthetic keyboard event:

button.dispatchEvent( new KeyboardEvent( 'keyup', { key:'Tab' } ) );
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: CWD Subs

79683795

Date: 2025-06-29 14:06:35
Score: 3.5
Natty:
Report link

Make sure to associate your route table with the S3 Gateway Endpoint — it took me a while to realize that was the issue.

enter image description here

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

79683784

Date: 2025-06-29 13:54:32
Score: 4.5
Natty:
Report link

I’m encountering the same problem when trying to pass data from an MCP client to an MCP server using Spring AI. I haven’t found a solution yet — any help or direction would be greatly appreciated!

MCP Client Code:

@Service
public class ChatbotService {
    protected Logger logger = LoggerFactory.getLogger(getClass());

    private ChatClient chatClient;

    public ChatbotService(ChatClient chatClient) {
        this.chatClient = chatClient;
        logger.info("ChatbotService is ready");
    }

    String chat(String question, String apiKey ) {
        return chatClient
                .prompt()
                .user(question)
                .toolContext(Map.of("apiKey", apiKey))
                .call()
                .content();
    }
}

MCP Server Code:

@Tool(name = "getUserPermissionsByUsername", description = "Get user permissions by username. This tool is used to retrieve the permissions of a user by their username. Must supply the username and an apiKey for authentication.")
private List<String> getUserPermissionsByUsername(@ToolParam(description = "User Name") String username, String apiKey, ToolContext toolContext) {
    try {
        //apiKey not passed at String or at toolContext
        return userProxy.getUserPermissionsByUsername(username);
    } catch (Exception e) {
        return new ArrayList<>();
    }
}
Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): any help
  • RegEx Blacklisted phrase (3): any help or direction would be greatly appreciated
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Raz

79683778

Date: 2025-06-29 13:46:31
Score: 0.5
Natty:
Report link

While it's Rust, I would suggest you to look at my example:

https://github.com/espoal/uring_examples/tree/main/examples/nvme

THe issues lies in the nvme_uring_cmd , try to copy mine

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

79683762

Date: 2025-06-29 13:24:26
Score: 3
Natty:
Report link

What solved it for me was moving the userprofile outside of chrome's default user-data-dir.
There is a recent security update where chrome updates their security. But it applies differently for non standard directory. Here is the link regarding the security update https://developer.chrome.com/blog/remote-debugging-port

Reasons:
  • Blacklisted phrase (1): Here is the link
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): What solve
  • Low reputation (0.5):
Posted by: Martijn Jan Jaap de Bruin

79683754

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

Could you please provide the method you're using to connect to Auth0 and "normally" redirect to your home page? That'll give me a clearer picture of what's going on.

In the meantime, let's try a few things based on my best guess for your problem!

Navigation Approaches

If you're using Flutter's basic Navigator, try this for handling the callback and redirecting:

// After successful authentication and getting your Auth0 callback
void handleAuthCallback(BuildContext context) async {
  // ... process Auth0 response to get user data/tokens ...

  // Ensure the widget is still mounted before navigating
  if (!context.mounted) return;

  // Use pushReplacement to prevent going back to the login screen
  Navigator.of(context).pushReplacement(
    MaterialPageRoute(builder: (context) => const HomePage()),
  );
}

Authentication and Asynchronous Handling

Are you successfully connecting to your database and authenticating correctly with Auth0? Double-check your Auth0 logs or any server-side logs if you have them.

Also, make sure you're awaiting all asynchronous calls! I sometimes forget to add await too, and it can definitely lead to unexpected navigation issues or state problems. 😅

Dynamic Authentication Listener

A robust way to handle authentication state and navigation is by using a StreamBuilder that dynamically listens to your authentication status. This approach automatically re-renders the UI based on whether the user is logged in or out.

For example:

return StreamBuilder<User?>( // Or whatever your user/auth state type is
  stream: auth.authStateChanges(), // Replace 'auth.authStateChanges()' with your actual auth state stream
  builder: (context, snapshot) {
    // If there's data (meaning the user is logged in)
    if (snapshot.hasData && snapshot.data != null) {
      return const HomeScreen(); // Or your main app content
    }
    // If there's no data (user is not logged in)
    else {
      return const AuthScreen(); // Your login/authentication page
    }
  },
);

This setup ensures that your UI always reflects the current authentication status, which helps prevent flickering or incorrect redirects.

Let me know if any of these help, or if you can share more code for your authentication flow!

Reasons:
  • Whitelisted phrase (-1): try this
  • RegEx Blacklisted phrase (2.5): Could you please provide
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Nistroy

79683752

Date: 2025-06-29 13:12:22
Score: 2.5
Natty:
Report link

You can also use the native connector for Snowflake by Renta ETL:
https://renta.im/etl/currency-exchange-rates-snowflake/

They offer enterprise-level paid data sources, but provide them to users for free.

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

79683729

Date: 2025-06-29 12:32:14
Score: 1
Natty:
Report link

i did that from flutter sdk i build android and ios and reacnative above on it. But not something string

https://central.sonatype.com/artifact/com.amwal-pay/amwal_sdk
https://cocoapods.org/pods/amwalpay
https://pub.dev/packages/amwal_pay_sdk
https://www.npmjs.com/package/react-amwal-pay

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

79683720

Date: 2025-06-29 12:07:10
Score: 3.5
Natty:
Report link

I can understand why this website is declining. Deadass asked a question, it's been 3 days now, and nobody pulled up with anything

AI is gonna eat this website for lunch, lol.

Reasons:
  • Blacklisted phrase (1): days now
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: meniman98

79683716

Date: 2025-06-29 12:03:09
Score: 1.5
Natty:
Report link

Add your own custom blocks as components in GrapesJS. Save the generated HTML and CSS to your backend. When rendering, fetch that data, replace dynamic placeholders with reusable React components, and use API calls inside them to load and display real backend data.

I faced serious issues while developing builder, but thankfully I made it dynamic.

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

79683714

Date: 2025-06-29 12:02:08
Score: 5.5
Natty:
Report link

man! I am facing the same issue. Copying from chrome to another place just show the window to terminate or wait option in my arch linux wm-hyprland

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Parvez Hossain

79683689

Date: 2025-06-29 11:04:55
Score: 0.5
Natty:
Report link

This works in firefox 140.0.1 (64-bit) 2025

window.addEventListener("beforeunload", function (e) {  
    return ((e || window.event).returnValue = "\o/");  
}),

Note: ((e || window.event).returnValue this shows warning as depreciated. But it's need for older browsers to work properly.

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

79683688

Date: 2025-06-29 11:04:55
Score: 1.5
Natty:
Report link

Solved this problem by setting up chroma in docker on localhost
And use it with

import chromadb
....
client = await chromadb.AsyncHttpClient(host='http://my_server_host', port=8000)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Carl Brendt

79683675

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

Apologies, I'm very late to the party. I was reading about the HTML accesskey global attribute, which is used to focus on any element using shortcut keys. I'm not sure if this could solve your issue, but you or any fellow developer facing this issue may try.

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

79683664

Date: 2025-06-29 10:34:48
Score: 3
Natty:
Report link

You cannot get your own last seen/online status via Telegram API. It's not exposed for the current user. It's outside the scope of Telegram API.

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

79683663

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

Maybe not relevant anymore but I bumped into the same issue today, I'm not an expert on uv/python but when running the container with:

ENTRYPOINT ["uv", "run", "--verbose", "otel_ex"]

I saw a debug message like: DEBUG Cached revision does not match expected cache info for... as the reason to rebuild the container. I found a way to get it working without the rebuild by using --no-sync with my uv run command in the entrypoint:

pyproject.toml:

[project]
name = "otel-example"
version = "0.1.0"
description = "some-project"
readme = "README.md"
requires-python = ">=3.13"
dependencies = []

[project.scripts]
otel_ex = "otel_example:main"

[build-system]
requires = ["flit_core~=3.2"]
build-backend = "flit_core.buildapi"

[tool.uv]
default-groups = []

Dockerfile:


FROM ghcr.io/astral-sh/uv:python3.13-bookworm-slim
RUN useradd --user-group --home-dir /app --no-create-home --shell /bin/bash pyuser
USER pyuser
COPY --chown=pyuser:pyuser . /app
WORKDIR /app
RUN uv sync --compile-bytecode --frozen
ENTRYPOINT ["uv", "run", "--no-sync", "otel_ex"]

hope this helps!

P.S. With regards to the context, I use gitlab-ci and docker buildx with the kubernetes driver to build the container images and upload them to goharbor. Maybe someone with more knowledge on this topic can add?

Reasons:
  • Blacklisted phrase (1): regards
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Sander

79683660

Date: 2025-06-29 10:25:45
Score: 4
Natty:
Report link

Thank you to Jon Spring for his linked answer:

set position / alignment of ggplot in separate pdf-images after setting absolute panel size

https://patchwork.data-imaginist.com/articles/guides/multipage.html

Using patchwork, I was able to come pretty close.

With patchwork, you can align to plots completely, making their plotting area the same size, no matter their surroundings (legends, axis text, etc.).

By continuing the example from above

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Cobalamin

79683647

Date: 2025-06-29 10:12:42
Score: 2
Natty:
Report link

try this

curl -v 0.0.0.0:8388

11110 is docker's port

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: smith

79683636

Date: 2025-06-29 09:54:38
Score: 2.5
Natty:
Report link

If you're working with Git submodules and managing multiple SSH keys, you might find gitsm useful. It's a simple CLI tool designed to streamline SSH key switching and submodule workflows

https://www.npmjs.com/package/gitsm

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

79683628

Date: 2025-06-29 09:43:36
Score: 4
Natty:
Report link

The php like the one that was the first was a new new new new new new new new new

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

79683622

Date: 2025-06-29 09:27:32
Score: 2
Natty:
Report link

In addition, MARK:ed comments are displayed as headlines in the minimap (menu Editor/Minimap).

enter image description here

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

79683607

Date: 2025-06-29 09:07:28
Score: 2
Natty:
Report link

If you are willing to use the nightly channel, you can use the unstable AsyncDrop feature

Tracking issue

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: iTrooz

79683591

Date: 2025-06-29 08:43:22
Score: 1.5
Natty:
Report link

Well... The SDK includes software features and innovations. Then, a compiler turns it into machine code for a certain processor architecture. As long as the architecture is compatible the compiler will generate machine code that can be executable on an older but compatible processor. Then, the minSdk is a limit that you define that pertains to the software and not the hardware (processor).

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Matt from vision.app

79683590

Date: 2025-06-29 08:42:22
Score: 1
Natty:
Report link
  1. strname Formula:
=Database!$B$5:$B$10

2. gen_addrs Formula:

=Database!$C$5:$C$10

3. Data > Data Validation > Allow: List In the Source, paste this formula:

=IFERROR(FILTER(gen_addrs, strname = C6), gen_addrs)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: lucaRavi

79683584

Date: 2025-06-29 08:25:18
Score: 2.5
Natty:
Report link

In my case i was making changes in ViewModel instead of dbset EF model and was questioning why it was not reflecting .

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

79683576

Date: 2025-06-29 08:00:13
Score: 4.5
Natty: 6
Report link

Just found out about this alternative: https://marketplace.visualstudio.com/items?itemName=danilocolombi.repository-insights

It suits my needs. Maybe it will fit yours... Cheers!

Reasons:
  • Blacklisted phrase (1): Cheers
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nuno Mendes

79683567

Date: 2025-06-29 07:39:09
Score: 2.5
Natty:
Report link

The answer is above, but it seems that I cannot leave a comment or upvote the one above! I spent about 6 hours tackling exactly the same, changing versions of Jersey, method signatures etc, before eventually realising that it was only the Python side to blame after testing the API with Swagger (which I guess I should have done to start with!).

I really think that something stupid is going on on the Python side that should not have wasted neither mine nor somebody else's time!

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Blacklisted phrase (0.5): upvote
  • No code block (0.5):
  • Low reputation (1):
Posted by: Oleg

79683564

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

ok, by the comments, i have a new version of the code. But it still doesnt working


 private async void SendPhonebookToFBoxAction(object obj)
 {
     

     string fritzBoxUrl = "http://fritz.box"; // Default FritzBox URL
     string username1 = settingsModel.FBoxUsername; // Default FritzBox username
     string password1 = AESHelper.DecryptWithDPAPI(Convert.FromBase64String(settingsModel.FBoxPassword.EncryptedPassword)); // Decrypt the password using DPAPI


     var url = "http://fritz.box:49000/upnp/control/x_contact";
     var soapAction = "urn:dslforum-org:service:X_AVM-DE_OnTel:1#SetPhonebookEntry";


     //var handler = new HttpClientHandler();
     //var client1 = new HttpClient(handler);
     var byteArray = Encoding.ASCII.GetBytes($"{username1}:{password1}"); // Create a base64 encoded string for Basic Authentication
     //client1.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(byteArray)); // Set the Authorization header for Basic Authentication

     var handler = new HttpClientHandler
     {
         Credentials = new NetworkCredential(username1, password1)
     };

     using (var client = new HttpClient(handler))
     {

         var numbers = new List<(string, string, int)>
         {
             ("0123456789", "home", 1),
             ("01701234567", "mobile", 2)
         };

         string xml = CreatePhonebookEntryXml("Max Mustermann", numbers);

         //Debug.WriteLine(xml);

         // Implementation for sending phonebook to FritzBox
         /*string newPhonebookEntryData = "<phonebook>" +
                                        "<contact>" +
                                        "<category>0</category" +
                                        "<person>" +
                                        "<realName>Max Mustermann</realName>" +
                                        "</person>" +
                                        "<telephony nid=\"1\">" +
                                        "<number type=\"home\" prio=\"1\" id=\"0\">0123456789</number>" +
                                        "</telephony>" +
                                        "<services/>" +
                                        "<setup/>" +
                                        "<features doorphone=\"0\"/>" +
                                        "</contact>" +
                                        "</phonebook>";*/

         string url1 = "http://fritz.box:49000/upnp/control/x_contact";
         string service = "urn:dslforum-org:service:X_AVM-DE_OnTel:1";
         string action = "SetPhonebookEntry";
         string soapBody = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>" +
                           "<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\"" +
                           " s:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">" +
                           "<s:Body>" +
                           "<u:SetPhonebookEntry xmlns:u=\"urn:dslforum-org:service:X_AVM-DE_OnTel:1\">" +
                           "<NewPhonebookID>1</NewPhonebookID>" +
                           //$"<NewPhonebookEntryID>{string.Empty}</NewPhonebookEntryID>" +
                           $"<NewPhonebookEntryData><![CDATA[{xml}]]></NewPhonebookEntryData>" +
                           "</u:SetPhonebookEntry>" +
                           "</s:Body>" +
                           "</s:Envelope>";

         //Debug.WriteLine($"SOAP Body: {soapBody}"); // Log the SOAP body for debugging

         var content = new StringContent(soapBody, Encoding.UTF8, "text/xml");
         content.Headers.Add("SOAPAction", $"\"{soapAction}\""); // Set the SOAP action header

         var response = await client.PostAsync(url, content);
         var result = await response.Content.ReadAsStringAsync();

         Debug.WriteLine(result);

         
     }
 }
 #endregion


 private string CreatePhonebookEntryXml(
     string name, 
     List<(string number, string type, int prio)> numbers,
     string? email = null,
     int? ringtone = null)
 {
     var telephony = new XElement("telephony");
     int id = 0;
     foreach (var (number, type, prio) in numbers)
     {
         telephony.Add(new XElement("number",
         new XAttribute("type", type),
         new XAttribute("prio", prio),
         new XAttribute("id", id++),
         number
         ));
     }

     var contact = new XElement("contact",
     new XElement("category", "0"),
     new XElement("person",
     new XElement("realName", name)
     ),
     telephony,
     new XElement("services",
     email != null
     ? new XElement("email",
     new XAttribute("classifier", "private"),
     new XAttribute("id", "0"),
     email)
     : null
     ),
     new XElement("setup",
     ringtone.HasValue
     ? new XElement("ringtone", ringtone.Value)
     : null
     ),
     new XElement("mod_time", DateTimeOffset.UtcNow.ToUnixTimeSeconds())
     );

     var phonebook = new XElement("phonebook", contact);
     return phonebook.ToString(SaveOptions.DisableFormatting);
 }
Reasons:
  • Blacklisted phrase (1): doesnt work
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Marko Petsch