79757152

Date: 2025-09-05 21:06:53
Score: 2
Natty:
Report link

chainging the like to

<mesh filename="package://<package_name>/urdf/meshes/....stl"/>

actualy fixed the problem and RVIZ recived the STL location

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

79757144

Date: 2025-09-05 20:46:48
Score: 1
Natty:
Report link

Default mysql port for MAMP is 8889, 8888 is used for apache.

Mysql connection from the command line also requires to specify non-standard port number

mysql -u root -p **** -P 8889
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user31188334

79757136

Date: 2025-09-05 20:36:45
Score: 3.5
Natty:
Report link

STIGViewer 2.18 is not compatible with Mac OS X. However someone on GitHub found a workaround. Here's the link https://github.com/caspiras/Mac_OS_X_STIGViewer

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

79757133

Date: 2025-09-05 20:30:44
Score: 2
Natty:
Report link
    function dviglo(){
        if(startSTOP == true){
            // тело программы
            setTimeout(dviglo, 2000);
        };
    }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Юрий

79757123

Date: 2025-09-05 20:19:41
Score: 3.5
Natty:
Report link

Did you ever check out maximum_position from scipy.ndimage?

The examples straight from their docs

>>> from scipy import ndimage
>>> import numpy as np
>>> a = np.array([[1, 2, 0, 0],
...               [5, 3, 0, 4],
...               [0, 0, 0, 7],
...               [9, 3, 0, 0]])
>>> ndimage.maximum_position(a)
(3, 0)

Features to process can be specified using `labels` and `index`:

>>> lbl = np.array([[0, 1, 2, 3],
...                 [0, 1, 2, 3],
...                 [0, 1, 2, 3],
...                 [0, 1, 2, 3]])
>>> ndimage.maximum_position(a, lbl, 1)
(1, 1)

If no index is given, non-zero `labels` are processed:

>>> ndimage.maximum_position(a, lbl)
(2, 3)

If there are no maxima, the position of the first element is returned:

>>> ndimage.maximum_position(a, lbl, 2)
(0, 2)
Reasons:
  • RegEx Blacklisted phrase (3): Did you ever
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: Tony

79757122

Date: 2025-09-05 20:18:41
Score: 5
Natty:
Report link

This package helps me fix this problem: https://packagist.org/packages/sandersander/composer-link

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

79757121

Date: 2025-09-05 20:18:41
Score: 2.5
Natty:
Report link

These days there are official binaries available for most of packages, for amd64 and arm64 at least, no need to do any package name mangling, see Gentoo Binary Host Quickstart

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

79757109

Date: 2025-09-05 19:47:34
Score: 3
Natty:
Report link
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: RIYAZ ANSARI

79757108

Date: 2025-09-05 19:45:33
Score: 2
Natty:
Report link

I've had this happen because the target device was not charged enough when it booted up. I think it had the processor speed throttled. Additionally, even after I charged it up, it still didn't work - I had to reboot it after charging it up to get it to work.

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

79757104

Date: 2025-09-05 19:39:31
Score: 2
Natty:
Report link

case WM_WINDOWPOSCHANGING: {

WINDOWPOS* p_wnd_pos = reinterpret_cast<WINDOWPOS*>(_l_param);

if (nullptr != p_wnd_pos) {

p_wnd_pos->cx = {desired_width};

p_wnd_pos->cy = {desired_height};

}

return 0; // important: returned result means the message is handled;

} break;

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

79757092

Date: 2025-09-05 19:18:26
Score: 1.5
Natty:
Report link

For anyone who is still wondering how to do this or if it is possible, I have created a React Native Module to solve the issue. The module is a custom implementation based on the native webview. It allows you to intercept all requests and their content including things like request headers, response header, type, etc.

Here is a link to the module: react-native-intercepting-webview

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

79757091

Date: 2025-09-05 19:14:25
Score: 1.5
Natty:
Report link

Building on the answer from @chris

The OP stated:
"...and knowing it is made of just one key/value pair..."

In this case scaling of execution time is irrelevant.

However next(iter(d)) is still faster even with a single key:value pair.

>>> import timeit
>>> setup="d = {'key': 'value'}"
>>> timeit.timeit(stmt='list(d.keys())[0]', setup=setup)
0.14511330000823364
>>> timeit.timeit(stmt='next(iter(d))', setup=setup)
0.07170239998959005
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @chris
  • Low reputation (1):
Posted by: mph10

79757090

Date: 2025-09-05 19:13:24
Score: 0.5
Natty:
Report link

This has been added at some point. The connection string must include AuthType=ManagedIdentity. Example given by Microsoft documentation is

account=<account name>;database=<db name>;region=<region name>;AuthType=ManagedIdentity

but I could not find any official blog post or more detailed information about this feature.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kaarlo Räihä

79757084

Date: 2025-09-05 19:02:22
Score: 1.5
Natty:
Report link
  1. cd into your ios app directory cd {your_project_path}/ios/App
  2. run pod update Sentry/HybridSD
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: eleventhaus

79757075

Date: 2025-09-05 18:38:16
Score: 0.5
Natty:
Report link

I won't go in depth (sorry) but basically I didn't know that hlt would continue after a interrupt, causing my hang to not work.

I loaded my kernel (which is a test kernel currently) at 0x0000:0x7000 which is actually perfectly fine but I used hlt to hang, not knowing that hlt wouldn't actually hang and so the CPU would basically go all the way down to 0x0000:0x7C00 (the bytes were 0x00 for some reason) and something would go wrong in the boot record (unsure what exactly) which caused the jump to disk_error.

Sorry for any grammar mistakes I made (I am in a rush).

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

79757055

Date: 2025-09-05 18:00:07
Score: 2
Natty:
Report link

to me this makes the job

df.index = pd.to_datetime(df.index, dayfirst=True).normalize()
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Leonardo

79757054

Date: 2025-09-05 17:59:07
Score: 0.5
Natty:
Report link
@echo off
setlocal enabledelayedexpansion

REM Obtener la fecha actual desde la variable de entorno %date%
REM Ejemplo de %date%: 09/05/2024 (DD/MM/YYYY) o 05/09/2024 (MM/DD/YYYY) o 2024-05-09 (YYYY-MM-DD)
set fecha=%date%

REM Detectar formato y extraer DD, MM, YYYY
REM Para formato DD/MM/YYYY
set dd=!fecha:~0,2!
set mm=!fecha:~3,2!
set yyyy=!fecha:~6,4!

REM Si tu formato es diferente, ajusta los índices de substrings arriba

set fecha_formateada=!dd!/!mm!/!yyyy!

REM Obtener el día de la semana en inglés
for /f "tokens=1 delims= " %%d in ('date /t') do set dia_en=%%d

REM Traducir el día de la semana al español
set dia_es=Lunes
if /i "!dia_en!"=="Tue" set dia_es=Martes
if /i "!dia_en!"=="Wed" set dia_es=Miércoles
if /i "!dia_en!"=="Thu" set dia_es=Jueves
if /i "!dia_en!"=="Fri" set dia_es=Viernes
if /i "!dia_en!"=="Sat" set dia_es=Sábado
if /i "!dia_en!"=="Sun" set dia_es=Domingo

echo Fecha actual: !fecha_formateada!
echo Dia de la semana: !dia_es!
pause
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: eliseo

79757046

Date: 2025-09-05 17:41:03
Score: 3
Natty:
Report link

Please update Chrome and it should work perfectly fine.

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

79757040

Date: 2025-09-05 17:23:59
Score: 1
Natty:
Report link

import Image from "next/image";

import { motion } from "framer-motion";

export default function ASTRA_Brochure() {

return (

\<div className="bg-gradient-to-b from-sky-900 to-sky-950 text-white min-h-screen p-8 font-sans"\>

  \<div className="max
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user31428890

79757035

Date: 2025-09-05 17:11:56
Score: 2.5
Natty:
Report link

IN_SHORT, just remove this s***t from PATH: %USERPROFILE%\AppData\Local\Microsoft\WindowsApps

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

79757030

Date: 2025-09-05 17:08:55
Score: 1.5
Natty:
Report link

Solved text jitter on button scale by adding
box-shadow (shadow-md in Tailwind).

will-change: transform alone didn't fix it.

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

79757027

Date: 2025-09-05 17:03:53
Score: 0.5
Natty:
Report link

You're better off using cdk deploy --method=prepare-change-set. That's the method we use in order to review changesets before approving execution of them. The benefit of this over cdk synth is 1) as others have mentioned, AWS lookups that determine template values need to be specific to your deployment environment since some things end up hardcoded in the template, and 2) any new S3 asset versions are uploaded during deploy even if you don't execute the changeset, so everything is just ready to go for when you do execute the changeset. So you're not technically executing the generated template file, but you are adding an intermediate step for validation which is usually the goal here.

However, it is also possible to combine the two - run cdk deploy to generate templates and upload assets, and then just ignore the created changeset and manually execute the template file itself.

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

79757022

Date: 2025-09-05 16:56:52
Score: 1.5
Natty:
Report link

Cannot reproduce your output with the latest version online:

clingo version 5.7.2 (6bd7584d)
Reading from stdin
Solving...
Answer: 1
choose(-1)
Optimization: -1
OPTIMUM FOUND

Models       : 1
  Optimum    : yes
Optimization : -1
Calls        : 1
Time         : 0.021s (Solving: 0.00s 1st Model: 0.00s Unsat: 0.00s)
CPU Time     : 0.000s
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Cannot
  • Low reputation (1):
Posted by: Guest

79757021

Date: 2025-09-05 16:56:52
Score: 0.5
Natty:
Report link

You can use pg_sentinel extension which is based on pg_stat_statements and allows to see original query text.

Here is a quick demo.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Slimboy Fat

79757017

Date: 2025-09-05 16:54:51
Score: 1.5
Natty:
Report link

It seems the PrioritizedEpisodeReplayBuffer can't handle complex observations with the custom RLModule for both CTCE and CTDE. However, by using EpisodeReplayBuffer (CTCE/CTDE) and MultiAgentEpisodeReplayBuffer (DTDE), and setting replay_buffer_config={"replay_sequence_length": 1, "replay_burn_in": 0, "replay_zero_init_states": True} and env_runners(batch_mode="complete_episodes"), it works correctly.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nelson Salazar

79757016

Date: 2025-09-05 16:53:51
Score: 1
Natty:
Report link
#include <stdio.h>

a[52514],b,c=52514,d,e,f=1e4,g,h;

main()
{
        for(;b=c-=14;h=printf("%04d",e+d/f))
                for(e=d%-f;g=--b*2;d/=g)
                        d=d*b+f*(h?a[b]:f/5),a[b]=d%--g;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jj yy

79757015

Date: 2025-09-05 16:53:51
Score: 2.5
Natty:
Report link

Okay, looks like I've solved it. There was some kind of cache problem, and by removing the "Recently Used" firebase package, it now is working...in my Test project, my separate Package project, and my actual App project (all different workspaces). So it appear that the issue is resolved.

Thanks for your help @kakaiikaka

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thanks for your help
  • No code block (0.5):
  • User mentioned (1): @kakaiikaka
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Darren Ehlers

79757003

Date: 2025-09-05 16:37:46
Score: 4.5
Natty:
Report link

I found a way, so i am finish!

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

79756990

Date: 2025-09-05 16:14:41
Score: 3
Natty:
Report link

You can use this one, just mak eyour levels the format and done

https://www.tradingview.com/script/aSV6KJAv-Custom-Levels-PTZ/

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

79756989

Date: 2025-09-05 16:13:41
Score: 2
Natty:
Report link

I wrote a plugin that does this https://github.com/tylerriccio33/pl-horizontal/tree/v0.1.4

import polars as pl
from pl_horizontal import arg_max_horizontal

## Return the column name of the maximum value per row
df = pl.DataFrame({
    "a": [1, 2, None],
    "b": [3, None, 1],
    "c": [2, 1, 4]
})
res = df.select(arg_max_horizontal(pl.all(), return_colname=True))
print(res)
assert res.to_series().to_list() == ['b', 'a', 'c']

Benchmarking it against the list concat method I get the attached:
enter image description here

This also has the added benefit of working nicely with lazy dataframes where the columns aren't known beforehand.

EDIT: I just added your example to my test suite :)

def test_arg_max_so() -> None:
    # https://stackoverflow.com/questions/77967334/getting-min-max-column-name-in-polars/
    df = pl.DataFrame(
    {
        "a": [1, 8, 3],
        "b": [4, 5, None],
    }
)

    res = df.with_columns(max = arg_max_horizontal(pl.all(), return_colname=True))

    assert res["max"].to_list() == ["b", "a", "a"]
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tyler Riccio

79756976

Date: 2025-09-05 15:57:32
Score: 6.5 🚩
Natty:
Report link

i have the same issue and i try to set bsNone works but is not goodlinkg!! i try use bsDialog and works fine!!

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

79756959

Date: 2025-09-05 15:37:26
Score: 4
Natty:
Report link

Now you can also display your directory in color. And fully customizable. See codir at www.elgee.be

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

79756957

Date: 2025-09-05 15:35:26
Score: 0.5
Natty:
Report link

Like @Matt's answer, there is a complete example in the documentation of segmented:

################################################################
# ==> 3. segmented quantile regression via the quantreg  package
################################################################

library(quantreg)
data(Mammals)
y<-with(Mammals, log(speed))
x<-with(Mammals, log(weight))
o<-rq(y~x, tau=.9)
os<-segmented.default(o, ~x) #it does NOT work. It cannot compute the vcov matrix..

#Let's define the vcov.rq function.. (I don't know if it is the best option..)
vcov.rq<-function(x,...) {
  V<-summary(x,cov=TRUE,se="nid",...)$cov
  rownames(V)<-colnames(V)<-names(x$coef)
V}

os<-segmented.default(o, ~x) #now it does work
 plot.segmented(os, res=TRUE, col=2, conf.level=.95) 
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Matt's
  • Low reputation (0.5):
Posted by: jiedxu

79756955

Date: 2025-09-05 15:34:26
Score: 1.5
Natty:
Report link

It looks like the issue is that you’re running this as a server script tool events like .Equipped only fire properly inside a LocalScript. If you move the script into the tool and make it a LocalScript, you can grab the player directly using Players.LocalPlayer and then reference their character without needing GetPlayerFromCharacter(). For damaging others or doing server-side checks, you’d just use a RemoteEvent to communicate with the server. By the way, if you’re into Roblox scripting and want to explore some powerful tools, check out Learn more at Rivals Script it’s got a ton of resources that can help.

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

79756948

Date: 2025-09-05 15:20:21
Score: 1.5
Natty:
Report link

You need to understand that your App service and function have different hosting, so you cannot access your file through the file system.

What you could do is to download the script using FTP/FTPs

Or expose this script with function's http endpoint so you can download it.

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

79756946

Date: 2025-09-05 15:20:21
Score: 1
Natty:
Report link

According to this documentation:
https://en.cppreference.com/w/cpp/container/map/emplace_hint.html
which is not exactly the std::set function member you wanted, but it stand.
You are on the right direction.

Anyway, it is better to emplace every new member to speedup the execution. If you don't do that, at every insertion the compiler will create a new temporary element that lasts just the time to be copied into your std::map<int, std::set<int> > container.

So your problem was not the complexity of the insertion itself, but the execution time for creating the objects. Emplace the new elements of your containers if they are not trivial!

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gildos

79756937

Date: 2025-09-05 15:12:19
Score: 2
Natty:
Report link

Please take a look at the documentation here: https://angular.dev/api/core/ComponentFactoryResolver

The componentFactoryResolver was deprecated in v20.

Therefore, you do not have access to the API and the function cannot be found. This will also explain why the error appeared after updating.

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

79756934

Date: 2025-09-05 15:08:18
Score: 2
Natty:
Report link

Explanation why and what changed I found HERE

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

79756931

Date: 2025-09-05 15:03:16
Score: 2
Natty:
Report link

It is strange but the technique with the Path.GetFullPath(...) method doesn't work for me (win 10, LinqPad). For example, Path.GetFullPath("qqq") returns: "C:\Users\Lealan\AppData\Local\Temp\LINQPad8\_qkyubspn\shadow-1\qqq". And also has other issues.

So I write own IsValidPath method:

// Copyright (c) 2025 Lealan
public static bool IsValidPath(string path, in bool canExists = false)
{
    static bool isVolume(in string volume, in bool isExists)
    {
        if (volume.Length != 1 || (isExists && !Directory.Exists($"{volume}:")))
        {
            return false;
        }

        char ch = volume.First();
        return (ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z');
    }

    path = path.Trim();
    if (path.Count(Path.VolumeSeparatorChar) != 1)
    {
        return false;
    }

    int volumeIndex = path.IndexOf(Path.VolumeSeparatorChar);
    if (!isVolume(path.Substring(0, volumeIndex), canExists))
    {
        return false;
    }

    path = path.Substring(volumeIndex + 1);
    if (string.IsNullOrEmpty(path))
    {
        return true;
    }

    char dirSep = path.Count(Path.DirectorySeparatorChar) > 0
        ? path.Count(Path.AltDirectorySeparatorChar) > 0
            ? '\0'
            : Path.DirectorySeparatorChar
        : path.Count(Path.AltDirectorySeparatorChar) > 0
            ? Path.AltDirectorySeparatorChar
            : '\0';
    if (dirSep == '\0' || !path.StartsWith(dirSep) || path.Contains($"{dirSep}{dirSep}"))
    {
        return false;
    }

    path = path.Trim(dirSep);
    if (string.IsNullOrEmpty(path))
    {
        return true;
    }
        
    var invalidChars = Path.GetInvalidFileNameChars();
    return !path.Split(dirSep).Any(s => s.StartsWith(' ') || s.EndsWith(' ') || invalidChars.Any(c => s.Contains(c)));
}
Reasons:
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lealan

79756930

Date: 2025-09-05 15:03:16
Score: 2.5
Natty:
Report link

That's hell of a good question. I had a debate with my teacher on it. He thinks that a one-letter string is NOT a palindrome, but it makes no sense to me and I'm sure one-letter strings DO count as a palindrome.

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

79756928

Date: 2025-09-05 15:02:16
Score: 0.5
Natty:
Report link

I was using PHP mail() to try and send out "activation" emails. The mail was sending, but it wasn't coming into my mailbox. My webhost put it this way...

"So far your tests are failing because what you are using [ php mail() ], is trying to
use the server itself to send out emails and that's an outdated way of
delivering emails, since those are not authenticated, thus are rejected
as modern email providers will only accept authenticated emails coming
from the email provider the domain uses."

Basically, mail() isn't a great way to send out emails. In layman's terms ... other mail servers DON'T LIKE IT. Because its not authenticated, they may flag it your email as SPAM or a potential security risk, and reject it. So, mail() will "successfully" send it ... but it just wont go through. I'm attempting to use PHPMailer myself to resolve the situation...

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

79756918

Date: 2025-09-05 14:53:12
Score: 8 🚩
Natty: 6
Report link

Did you find a solution? I encounter the same issue

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: Chloe

79756916

Date: 2025-09-05 14:51:11
Score: 1
Natty:
Report link

I also faced a similar issue - a java cucumber test trying to interact with an msedgedriver.exe, and then reporting the same error message: "org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code 500. Message: session not created: probably user data directory is already in use, please specify a unique value for --user-data-dir argument, or don't use --user-data-dir".

It turns out that the process was running as an administrator on the windows box, rather than using a user account (with AD credentials), and that seemed to cause the issue. When we ran java using a user account, then cucumber was able to interact with the selenium web driver.

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

79756912

Date: 2025-09-05 14:49:10
Score: 3
Natty:
Report link

Clearing the corrupted database records from localhost resolved the issue for me in local.

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

79756908

Date: 2025-09-05 14:44:09
Score: 3
Natty:
Report link

there a two .gitignore and .git folder in the same folder (maybe by your nodejs client and backend folder) delete one file (especially the one whose is not in the root folder )

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

79756902

Date: 2025-09-05 14:40:08
Score: 3
Natty:
Report link

I've got this message after misswrite 'useExisting' and wrote 'useExiisting' instead (with two 'i')

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

79756886

Date: 2025-09-05 14:26:04
Score: 1
Natty:
Report link

If you have found the route, you should individually route the agent through those points.

For example, shortest route would be A->B->C, however you want the agent to move A->D->E->C. You'd need several move blocks to force the route.

Alternatively, you can have a collection of the route you chose (based on some criteria you've picked), and you loop (using a SelectOutput) on them.

Sample Flow

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

79756885

Date: 2025-09-05 14:26:04
Score: 4
Natty:
Report link

you can clone the repo, then it doesn‘t matter in which workspace the folder is.

Best Regards

Reasons:
  • Blacklisted phrase (0.5): Best Regards
  • Blacklisted phrase (1): Regards
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rombot-dev

79756883

Date: 2025-09-05 14:24:03
Score: 1
Natty:
Report link

I was able to resolve this by making a couple of changes to my setup as follows

Firstly, ensure that you have no typos in your tests or code.
Secondly, check the target membership for the files under test. If a file under test isn't included in the test bundle, you will encounter issues like I did. To do this, if you can't remember if you did it at the point of creating your files, you can follow these steps:

Finally, once you complete the above steps, ensure to clean your build folder. Once you are done cleaning, try to run your tests again; This should trigger a full build of the necessary files.

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

79756881

Date: 2025-09-05 14:20:02
Score: 1.5
Natty:
Report link

Answering 2019 thread in 2025, just to add another Textpad-specific option--record a 'keyboard macro'.

The macro recorder can be turned on via menu, Macros>>Record, or Ctrl+Shift+R. There is also a dark circle button, but may have to be made viewable--don't recall if it's on by default.

Begin recording at the 1st line in file, then hit the {END} key, then {ENTER}, then {RIGHT ARROW}, and end recording. You can save the macro, but if not it will be a "scratch" macro, and immediately accessible via Ctrl+R, which can be held to the end of the file. Or, from the menu, Macros>>Multiplay (Ctrl+F7), and "Repeat to end of file"<--this assumes the last row is terminated, or else it may continue looping (Esc to end). The other multi-play selections can be used too: "Specified number of times", or "Repeat through selection" (requires selecting the text).

Good luck!

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

79756877

Date: 2025-09-05 14:18:01
Score: 1.5
Natty:
Report link

Make sure to use the Enhanced Kotlin for Eclipse plugin by Vladimir V. Bychkov which is a fork of the badly maintained Kotlin Plugin for Eclipse by JetBrains.

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

79756875

Date: 2025-09-05 14:15:00
Score: 2
Natty:
Report link

You can also get word-level timestamps by using speech-to-text APIs that include timing data in their response. I've used AssemblyAI for this - their API returns timestamps for each word during transcription, so you don't need to run forced alignment as a separate step. This can be simpler if you're starting with just audio and need both the text and timing information.

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

79756869

Date: 2025-09-05 14:11:59
Score: 3
Natty:
Report link

I was having same issue(blank page), however I was using Edge before, i just change the browser from edge to chrome, page did worked in Chrome.

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

79756861

Date: 2025-09-05 14:02:56
Score: 3
Natty:
Report link

So the answer to this is simple, android studio did a false positive, the deep links did work and after some time the error is gone.

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

79756858

Date: 2025-09-05 14:00:55
Score: 4.5
Natty: 4.5
Report link

https://your-website.com/administrator/manifests/files/joomla.xml contains the version. As answered in https://joomla.stackexchange.com/a/184

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

79756857

Date: 2025-09-05 14:00:55
Score: 1
Natty:
Report link

I think there is another simpler way to copy slice \

go
newSlice := oldSice[ : ]

the [ : ] means make a copy from the first lo last element.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alaa Ahmad M. Zakaria

79756855

Date: 2025-09-05 13:57:54
Score: 3.5
Natty:
Report link

Circleboom's export retweeters feature gives you their IDs, locations, bios, follower counts, etc.

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

79756850

Date: 2025-09-05 13:51:53
Score: 3.5
Natty:
Report link

You need to put "using namespace bar" after your import line.

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

79756846

Date: 2025-09-05 13:46:51
Score: 1
Natty:
Report link

CMake 3.24 added Path Transformation generator expressions, so this can now be done with generators:

$<PATH:REMOVE_EXTENSION,$<TARGET_FILE_NAME:${lib}>>

In my case I wanted to change the extension, which is also easy to do now:

$<PATH:REPLACE_EXTENSION,$<TARGET_FILE_NAME:${lib}>,new_extension>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dinwiggy

79756844

Date: 2025-09-05 13:44:51
Score: 3.5
Natty:
Report link

This is solved using inspiration from https://stackoverflow.com/questions/28001878/git-fetch-unshallow-gives-fatal-unshallow-on-a-complete-repository-does-n

For Azure DevOps Build Pipelines, you need to go to the build pipelines => Edit => Triggers => YAML => Get sources

Then tick Shallow Fetch and set the depth to 2147483647 as noted by https://stackoverflow.com/a/46477285/780866

Once all this is done, re-run the pipeline and the warning in SonarQube will go away

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

79756843

Date: 2025-09-05 13:43:51
Score: 2
Natty:
Report link

You’re right — it’s wild that streaming apps don’t offer this by default. I ended up using https://tracklist.pro to move my playlists from Spotify to Apple Music, and it worked smoothly.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dawrvar Huyewad

79756833

Date: 2025-09-05 13:32:47
Score: 1.5
Natty:
Report link
<Form
    ...
    scrollToFirstError={{
      behavior: "smooth",
      block: "center",
      inline: "nearest",
    }}
>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Swaraj Nath

79756817

Date: 2025-09-05 13:19:42
Score: 3.5
Natty:
Report link

According to the Excel forum, there is a way:

E1=MMULT(MINVERSE(A1:C3),D1:D3))

Google Sheets has the same functions available for matrix operations.

https://www.excelforum.com/excel-formulas-and-functions/494838-gaussian-elimination.html

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

79756799

Date: 2025-09-05 12:58:36
Score: 2.5
Natty:
Report link

I know Circleboom has a feature called "Export Retweeters". You can view and download the full list of retweeters who reposted a tweet. As an official X Enterprise customer, Circleboom doesn't jeopardize the safety of your Twitter account. Many tools are scams who are targeting to get your Twitter data.

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

79756798

Date: 2025-09-05 12:57:36
Score: 1.5
Natty:
Report link

I went with a workaround as I seem to have reached the limitations of go templ. While injecting content into a rendered template is possible, I faced the issue, that when trying to reach .../item/:id without previously visiting .../items/ the other page contents are not being rendered.

So I stored the data that is being displayed in a session and extract it when redirecting and rendering the new page. That way the user does not notice the reload of the contents that should remain the same when redirecting as I can preload the data from the session storage into the template.

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

79756783

Date: 2025-09-05 12:46:32
Score: 2
Natty:
Report link

I am convinced that reinstalling is the best solution. However we had a forgotten change directory ( cd ) in the .bashrc , so whatever we tried the shell never started in the expected directory.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Rudolf Starosta - Rudi

79756782

Date: 2025-09-05 12:44:31
Score: 0.5
Natty:
Report link

Using Enum.reduce/3 works as well:

map = %{
  "US" => "United States",
  "CA" => "Canada",
  "NL" => "The Netherlands"
}
Enum.reduce(map, %{}, fn {k, v}, acc ->
  Map.put(acc, v, k)
end)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: canelle

79756780

Date: 2025-09-05 12:41:30
Score: 2
Natty:
Report link

Firstly run :
npm install --save-dev cross-env
and change
NODE_ENV=development
to
cross-env NODE_ENV=development

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

79756776

Date: 2025-09-05 12:38:29
Score: 1
Natty:
Report link

As for me i need use

onDownloadButtonClicked()

only once, for generating one report. I just removed js file, and in py file i returned route to standard

/web/pivot/export_xlsx

now, when i download any report, my changes that shoud adds only for one report, will exists in all reports, but for me its not critical.

Reasons:
  • Blacklisted phrase (0.5): i need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Anton

79756773

Date: 2025-09-05 12:35:28
Score: 2.5
Natty:
Report link

This is an old post but here’s an easy way:

  1. Install Firefox

  2. Save it to the On My iPad -> Firefox -> Downloads folder

  3. Open Firefox and select Downloads from the ‘hamburger’ (the three horizontal stacked lines)

  4. Click the ‘download’ in the list which is your html file

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

79756772

Date: 2025-09-05 12:35:28
Score: 4
Natty: 4.5
Report link

How did you go about doing the re-ordering? I am struggling with the same problem for maps, but I cannot get my ordering right without ruining the structure

for example:

This:

var strStatus = map[Status]string{
    StatusInvalid:  "Invalid",
    StatusCreated:  "Created",
    StatusDisabled: "Disabled",
    StatusActive:   "Active",
    StatusInactive: "Inactive",
}

Becomes This:

var strStatus = map[Status]string{StatusActive: "Active", StatusCreated: "Created",
    StatusDisabled: "Disabled",

    StatusInactive: "Inactive", StatusInvalid: "Invalid"}

I don't want to have to do find and replace with and search for commas and so on, so how did you go about maintaining the output format?

Reasons:
  • Blacklisted phrase (1): I am struggling
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Kyle Norris

79756767

Date: 2025-09-05 12:29:26
Score: 1.5
Natty:
Report link

from PIL import Image

import requests

from io import BytesIO

# Đường dẫn ảnh đã tạo từ bước trước (giả định tạm là đã tải về)

# Vì môi trường không lưu ảnh trực tiếp từ image_gen, ta sẽ giả lập tạo file JPG mẫu

# Tạo 1 ảnh đen trống để giả lập kết quả (thay thế bằng ảnh đã chỉnh)

im = Image.new("RGB", (512, 512), color="black")

# Lưu với chất lượng nhẹ hơn cho điện thoại

output_path = "/mnt/data/levi_hair_mobile.jpg"

im.save(output_path, "JPEG", quality=70, optimize=True)

output_path

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

79756766

Date: 2025-09-05 12:27:25
Score: 5.5
Natty:
Report link

I have similar issues with forms in emailjs.

sendEmail(form: NgForm) {
    if (form.valid && this.formRef) {
      emailjs.sendForm('SERVICE_ID', 'TEMPLATE_ID', this.formRef.nativeElement, 'PUBLIC_KEY')
        .then(() => {
          this.successMessage = 'Your message has been sent successfully!';
          this.errorMessage = null;
          form.resetForm();
        }, (error) => {
          this.errorMessage = 'There is an error: ' + error.text;
          this.successMessage = null;
        });
    }
  }

In my code I use correct Service_ID, Template_ID and Public_key, everything works, but it always shows me that formRef is NULL!
Do someone know the solution?

Reasons:
  • Blacklisted phrase (1): I have similar
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have similar issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Perwij Wu

79756764

Date: 2025-09-05 12:23:24
Score: 1.5
Natty:
Report link

How exactly did you create the virtual environment and how did you install the google-cloud-storage package? Did you activate the environment before executing the code?

I tried it in my WSL2 (Ubuntu) and it works:

$ mkdir test
$ cd test
$ python -m venv env
$ . env/bin/activate
$ pip install google-cloud-storage
$ echo "from google.cloud import storage" > test.py
$ python test.py
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: fabriceb

79756758

Date: 2025-09-05 12:16:22
Score: 1.5
Natty:
Report link

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">

<plist version="1.0">

<array>

\<string\>A Quote\</string\>

\<string\>A Quote\</string\>

\<string\>A Quote\</string\>

</array>

</plist>

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Hshjs Njs

79756757

Date: 2025-09-05 12:15:21
Score: 0.5
Natty:
Report link

Why is this only an error in C++

As others commented above, C and C++ are different languages.

Specifically C++ is very different when it comes to creation and destruction of objects (having constructors and destructors).
Also the support for exceptions and stack unwinding makes things a lot more complicated.

Because of these (and possibly additional reasons) it makes sense to me to disallow edge cases that can complicates things unnecessarily.
And so it is invalid in C++.

is there a way I can tell GCC/Clang to allow it?

I don't think so.
But as a workaround (as @Jarod42 commented), you can enclose the definition and initialization of a in a block. This will makes it valid in C++:

int foo() {
    goto lbl;
    {   // <- block start
        int a = 4;
    }   // <- block end
lbl:
    return 5;
}

Live demo - Godbolt

Reasons:
  • Blacklisted phrase (1): is there a way
  • RegEx Blacklisted phrase (0.5): Why is this
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Jarod42
  • Starts with a question (0.5): Why is this on
  • High reputation (-2):
Posted by: wohlstad

79756754

Date: 2025-09-05 12:13:21
Score: 1
Natty:
Report link

I think you're not properly using postgresql concatenation syntax. Try:

AND (LOWER(DESCRIPTION_TEXT) ~* ('\y' || $4 || '\y'))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bending Rodriguez

79756746

Date: 2025-09-05 12:07:19
Score: 1.5
Natty:
Report link

This problem can be simply solved by "react-window" library for viewing huge amount of data without any performance issue.

Read about it here - https://github.com/bvaughn/react-window

This solution will effectively solve your problem, if you have all rows of fixed size. You can basically enclose the whole table inside the react-window component.

And here is the guide how to import it to your respective project- https://www.npmjs.com/package/react-window

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

79756734

Date: 2025-09-05 11:43:13
Score: 2.5
Natty:
Report link

The answer is : (thx Hao Wu)

^\d{4,5}+(,\d{4,5}+)*+$

The + after \d{4,5} makes \d{4,5} possessive, I keep it to avoid backtracking to 4 numbers if 5 matched. The + after (,\d{4,5}+)* makes the group possessive so we keep progressing.

Reasons:
  • Blacklisted phrase (1): thx
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Calvarin Matthieu

79756729

Date: 2025-09-05 11:36:12
Score: 2.5
Natty:
Report link

The newest method is ( Command + H ), That's all ;) Make sure you're on the simulator before using this method.

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

79756727

Date: 2025-09-05 11:35:11
Score: 1
Natty:
Report link

try adding the height: 100% property to html and body.

html {
  overflow: hidden;
  height: 100%;
}

body {
  overflow: auto;
  height: 100%
}

This will cure the problem, but the address bar will always be expanded.

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

79756726

Date: 2025-09-05 11:27:10
Score: 3
Natty:
Report link

Your managed server isn’t stuck due to heap/GC (your dump shows plenty of free memory). The issue is almost certainly classloading/metaspace expansion, JDBC pool initialization, or external lookups (DB/DNS/LDAP). Start with a thread dump + metaspace tuning.

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

79756719

Date: 2025-09-05 11:18:07
Score: 0.5
Natty:
Report link

I started getting this with the error This endpoint is not supported in the new Pages experience in API explorer when I switched my profile to professional mode. Switching off professional mode made the API work again.

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

79756718

Date: 2025-09-05 11:17:07
Score: 2.5
Natty:
Report link

I am surprised the @magicandre1981's advice did not work. To resolve the "Microsoft.CSharp" warning you should add latest PackageReference of "Microsoft.CSharp" to the project which produces the warning. It will "lock" the package version and remove the warning.

There is more in another answer.

Also I suggest reading Microsoft article about how NuGet dependencies are resolved.

Reasons:
  • Blacklisted phrase (1): did not work
  • Has code block (-0.5):
  • User mentioned (1): @magicandre1981's
  • Low reputation (1):
Posted by: Maksim Fedosov

79756712

Date: 2025-09-05 11:06:04
Score: 2
Natty:
Report link

yes, just change the python version 3.10

if you are in colab then you can do it by this code. and during running time please press 1 and click enter.

!sudo apt-get update -y

!sudo apt-get install python3.10 python3.10-dev python3.10-venv -y

!sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 1

!sudo update-alternatives --config python3

!sudo apt-get install python3-pip -y

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

79756706

Date: 2025-09-05 10:59:02
Score: 2
Natty:
Report link

When you use client, it means the component is running in the browser. In this case, you can't directly await fetch because every time it renders, it fetches again and goes into a loop. You have to put fetch in useEffect and store the result in state. When you don't use client, it means the component is server-side. There, you can directly await fetch because it only runs once on the server and doesn't loop again.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you use
  • Low reputation (0.5):
Posted by: Arash

79756703

Date: 2025-09-05 10:58:02
Score: 2.5
Natty:
Report link

After delving around , What worked for;

  1. make sure you have the ksp version with a prefix of the kotlin version

  2. Sync after adding the room library then add the ksp one and sync again, don't sync all together

  3. then ofcourse ensure you are using compatible versions of ksp and kotlin

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

79756698

Date: 2025-09-05 10:55:01
Score: 1.5
Natty:
Report link

Workaround which I don't like but I have nothing else:

Declare it @JvmField and write getter setter manually which is very redundant and prone to errors if I ever rename anything.

@Enumerated(EnumType.STRING)
@Column(nullable = false)
@JvmField
var rStatus: WebsiteStatus = WebsiteStatus.INACTIVE
fun getRStatus(): WebsiteStatus = rStatus
fun setRStatus(value: WebsiteStatus) {
  rStatus = value
}
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @JvmField
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: judos

79756697

Date: 2025-09-05 10:54:01
Score: 1.5
Natty:
Report link

Call

event.completed();

after your dialog is closed by the user:

        dialog.addEventHandler(Office.EventType.DialogEventReceived, (arg) => {
          if ("error" in arg && arg.error === 12006) {
            event.completed();  
          }
        });

Otherwise your action will be unloaded.

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

79756695

Date: 2025-09-05 10:53:00
Score: 3
Natty:
Report link

@alex you got very close to answer but I found later that real culprit behind this was my call to that slider method. Here it was:

textOpacitySlider.addTarget(self, action: #selector(Opacity), for: .allEvents)

I am new to swift and I asked my manager that if calling for all events would be the issue, but he told me that it shouldn't create any mess but when I changed this to this:

textOpacitySlider.addTarget(self, action: #selector(Opacity), for: .touchDragInside)

It started working finely i.e. calling objc function only once! I think .allEvents was tracking

-When user touches slider
-When he changes it
-And when he left his finger up

That's why my method was being called thrice!

Reasons:
  • RegEx Blacklisted phrase (1.5): I am new
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @alex
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Muhammad Asad

79756691

Date: 2025-09-05 10:47:59
Score: 1
Natty:
Report link

Adding the following in the docker file (or settings, or whatever) fixes this. This, of course, needs to be in the FROM base AS final section

    ASPNETCORE_URLS=http://+:8080

I presume a pure function app created via a VS template doesn't set this, whereas a web app does.

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

79756680

Date: 2025-09-05 10:38:57
Score: 1
Natty:
Report link

This is the best solution on XAMPP and WAMP:

XAMPP
[mysqld]
default_character_set=utf8mb4
collation_server=utf8mb4_spanish_ci

WAMP
[mysqld]
character_set_server=utf8mb4    
collation_server=utf8mb4_spanish_ci
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: codzeus

79756678

Date: 2025-09-05 10:38:57
Score: 4.5
Natty: 4.5
Report link

ince most modern .AI files are now PDF-based, and given the advances in 2025, are there any actively maintained Python libraries (beyond ImageMagick/Uniconvertor) that support direct parsing, text extraction, or conversion of .AI files into PNG/JPEG while preserving layers and metadata under Linux?

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

79756674

Date: 2025-09-05 10:34:55
Score: 2.5
Natty:
Report link

this.cd.detectChanges();

This did the trick, injecting private cd: ChangeDetectorRef in constructor made the timely refresh of message on screen

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

79756673

Date: 2025-09-05 10:34:55
Score: 1.5
Natty:
Report link

Taking inspiration from the answer posted by jin-pendragon, I found a solution using np.minimum.reduceat. You need an array of length m containing the slice starting points (so the first element is always 0), let's call it start_indices, and then you can do:

mins = np.minimum.reduceat(myarray, start_indices)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: emengd

79756669

Date: 2025-09-05 10:30:54
Score: 2
Natty:
Report link

There is a successor to the old popbio::logi.hist.plot function in the logihist package. Its logihist function uses ggplot2:

https://cran.r-universe.dev/logihist/doc/manual.html#logihist

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

79756658

Date: 2025-09-05 10:18:51
Score: 2
Natty:
Report link

There is a slim image available: https://airflow.apache.org/docs/docker-stack/index.html

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

79756650

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

I'm rendering client-side app with no SSR and the rest of the app with SSR and first loads of the pages were taking 1s. I thought the problem was with the implementation.

Check functions region, I'm using Vercel and the functions region was set to us-east-1, but my main traffic was going from eu-central-1.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ivan Harašta

79756640

Date: 2025-09-05 10:00:47
Score: 1
Natty:
Report link

Following the comment of @keyboard-corporation I'm posting the solution: use exact tu make it work, in thise cas @keyup.meta.enter.exact.

Reasons:
  • Whitelisted phrase (-2): solution:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @keyboard-corporation
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Rémi Desgrange

79756632

Date: 2025-09-05 09:56:45
Score: 1
Natty:
Report link

I recently ran into the AWS CodeDeploy “stuck on install step” issue, which often happens when a health check detects an unhealthy target. Following advice from the Stack Overflow post, I made sure my EC2 instance and load balancer settings were correctly configured. Interestingly, I hit a similar kind of delay while updating content on the website https://bookclinics.com/article/brain-aneurysm-repair , which made the problem feel all too familiar. It reminded me how small configuration details can cause frustrating slowdowns in both deployment and website updates.

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