79757336

Date: 2025-09-06 04:54:37
Score: 3
Natty:
Report link

I don't know why it happens, but you can delete the .git folder and initialize the repo again. This is the only thing I can do for this problem.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 16 Trần Nguyên Khang

79757321

Date: 2025-09-06 04:08:28
Score: 1.5
Natty:
Report link

I'm facing the same issue, but I'm not using react-native-image-crop-picker at all, it's even failing for fresh new RN project.

then I found out that my system ruby has some problem. I removed system cocoapods, switched to use rbenv , and reinstall cocoapods again with ruby from rbenv.

now it's fine

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm facing the same issue
  • High reputation (-1):
Posted by: Duc Trung Mai

79757316

Date: 2025-09-06 03:56:25
Score: 4
Natty:
Report link

i have same issue with you.
we can not send gmail in railway as a trail user
So i have create a api to send like a third-service using pythonanywhere
and in railway, just call as an api to pythonanywhere
Hope it help you

Reasons:
  • Whitelisted phrase (-1): Hope it help
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): i have same issue
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31430966

79757308

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

Try This also It worked in my case.

Add '<_ExtraTrimmerArgs>--keep-metadata parametername</_ExtraTrimmerArgs>' in Property group section inside the .csproj file of client Project.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): Try This
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user3820036

79757304

Date: 2025-09-06 03:11:15
Score: 1
Natty:
Report link

You had already closed the bracket in the print of your if block

print((temperature) # remaining code

you should make them in whole single context as pyhron is assumin that if is already closed so elif needed

print((temperature + "fdeg=" + temp))
elif # this will work fine
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Somanshi Jain

79757287

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

Can you uncover the colour green

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Abilio Ngomane

79757279

Date: 2025-09-06 01:52:59
Score: 1
Natty:
Report link

Sorry all for raising an issue where none existed. My previous code was also treating slices as views, but just by dumb luck -- because of the specific programming logic -- I was not reading the changed elements of A and hence not aware of the problem. The input used to construct A changed recently, making it so that I was seeing the changed elements now, and I thought this was new behavior. Please consider this closed.

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

79757275

Date: 2025-09-06 01:38:56
Score: 3
Natty:
Report link

thanks to all who contributed! It took me a while for me to realize but the actual error has nothing to do with the code itself, but rather which file the auto-grader was checking. In other words, my file name had a typo in it so the terminal command I was using (check50 cs50/problems/2022/python/outdated) was checking the wrong file over and over again. Appreciate all the responses, guess moral of the story is be careful with your file names LOL

Reasons:
  • Blacklisted phrase (0.5): thanks
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31409481

79757269

Date: 2025-09-06 01:12:50
Score: 4
Natty:
Report link

https://gaybingo.live/justpleasure1234

https://api.x.com/oauth/authorize?oauth_callback=https%3A%2F%2Fstreamyard.com%2Fredirect%2Ftwitter%3FteamId%3DzcNTuRZXp9DQsv3fCZPa1avU%26entryPoint%3Ddestination_page%26popupId%3DsbXIHzrILku3%26returnTo%3D%252Fredirect%252Fpopup_success%26state%3D%257B%2522stateCsrf%2522%253A%2522Mp4EUgDTAlnBIaT2FOECoiaZ%2522%257D&oauth_token=77JlBQAAAAABOKzqAAABmRx-aQk

https://xpornium.net/embed/dragon intelligence and my chatterbate profile on my phone with my chatterbate profile picture of my things so far so good 👍

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

79757267

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

Remember that &(&1 * &2) is just "syntax sugar". The following are equivalent:

1- Anonymous Function (fn ... -> ... end)

Enum.reduce([1,2,3,4], fn a, b -> a * b end)

2- Capture Anonymous Function (&...)

Enum.reduce([1,2,3,4], &(&1 * &2))

3- Capture Named Function (def ... do ... end)

Enum.reduce([1,2,3,4], &multiply/2)

# ...

def multiply(a, b) do
  a * b
end

The Capture Anonymous Function syntax (#2) is nice and concise but as @coderVishal pointed out, mostly useful for short, easy-to-understand expressions

If you have a more complicated expression -- or (as you discovered) if you need more than one captured function in a single line -- then it is time to switch to longer fn-style anonymous functions (#1) or make regular functions and use them by name (#3)

In @sobolevn's example, he used #2 for the outer Enum.reduce and then #3 for the inner multiply

Enum.map([[1,2],[3,4]], &Enum.reduce(&1, fn(x, acc) -> x * acc end)) 

Helpful links:

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @coderVishal
  • User mentioned (0): @sobolevn's
  • Low reputation (0.5):
Posted by: Bukov

79757265

Date: 2025-09-06 01:02:47
Score: 2.5
Natty:
Report link

Why not access the data directly? If you are using NextJS as a backend..

Or if it's a client component:

actions.ts:

'use server'
import { db } from '@/lib/db' // Your database client
 
export async function fetchUsers() {
  const users = await db.user.findMany()
  return users
}

component.ts:

'use client'
import { fetchUsers } from '../actions'
 
export default function MyButton() {
  return <button onClick={() => fetchUsers()}>Fetch Users</button>
}

https://nextjs.org/docs/app/api-reference/directives/use-server#using-server-functions-in-a-client-component

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why not
  • Low reputation (1):
Posted by: JGabT

79757264

Date: 2025-09-06 00:59:46
Score: 1.5
Natty:
Report link

Using numpy.indices and numpy.stack

import numpy
shape = (6,2,8,7)
array_of_positions = numpy.stack(numpy.indices(shape), axis = len(shape))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Christopher Pratt

79757252

Date: 2025-09-06 00:24:38
Score: 3.5
Natty:
Report link

I have a similar issue with the CloudFormation Linter extension, when you rename a file - it complains the original file is missing and there’s no way to get rid of it, except for closing and opening up the workspace folder.

I’m still trying to figure out how RooCode is able to add an “Explain with Roo” item when you right click on something in the Problems panel, so I can raise PR to implement.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): I have a similar issue
  • Low reputation (0.5):
Posted by: flipcode

79757251

Date: 2025-09-06 00:23:38
Score: 2
Natty:
Report link

So the issue was that the frame being sent out is the heartbeat frame, and if there is no NMT master to ack it, then the stack isn't treating the frame as being sent anyway, so the buffer is overflowing with the heartbeat messages. If a sniffer is active on the bus, the warnings go away. I ended up editing the code to change that warning to "warn once" so I don't keep getting that spammed out when only one CAN device is active on the bus.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Christopher Theriault

79757245

Date: 2025-09-06 00:10:35
Score: 2
Natty:
Report link

I was running into this same issue. The channel was filling up and the reader was stuck. In fact, I came back to this SO thread several times hoping someone had an idea. I finally realized the logic immediately following the read operation (within the read loop) was blocking the next read. In your particular example, I would ensure the logging and DoSomethingAsync is not blocking.

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

79757239

Date: 2025-09-05 23:45:30
Score: 0.5
Natty:
Report link

So, that's my solution and I foresee it might be useful for others facing similar issues on Mac. I recently switched from Linux and everything seems to be so buggy here ;)

I have experimented with different versions of this gem for some time and found out that the next patch version works just fine for me. So, as a temporary solution, cause updating the whole project's dependencies would be a huge step, I did the following:

# Checking the current gem installation path
bundle show grpc
<myhomedir>/.asdf/installs/ruby/3.2.4/lib/ruby/gems/3.2.0/gems/grpc-1.74.0-arm64-darwin

# Installing the next patch version of the gem
gem install grpc --version=1.74.1 --platform=arm64-darwin

# Removing the old version
rm -rf <myhomedir>/.asdf/installs/ruby/3.2.4/lib/ruby/gems/3.2.0/gems/grpc-1.74.0-arm64-darwin

# Faking the new version to act like a previous version via a symlink
ln -s <myhomedir>/.asdf/installs/ruby/3.2.4/lib/ruby/gems/3.2.0/gems/grpc-1.74.1-arm64-darwin <myhomedir>/.asdf/installs/ruby/3.2.4/lib/ruby/gems/3.2.0/gems/grpc-1.74.0-arm64-darwin

It all started to work now.

Feel free to suggest your workarounds for the situations like that.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing similar issue
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: zinovyev

79757234

Date: 2025-09-05 23:36:28
Score: 2
Natty:
Report link

Okay turns out the issue is something related to commas in the URL not playing nice. Not sure about the specifics but replacing raw commas in the URL with their encoded version (%2C) makes everything as normal.

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

79757233

Date: 2025-09-05 23:33:27
Score: 3
Natty:
Report link

^\h*\d+ used this many times today because gemini cli insisted i should copy the code and linenumbers everytime work but only one line at the time.

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

79757227

Date: 2025-09-05 23:20:24
Score: 1
Natty:
Report link

Visual Studio now provides a mechanism to do this automatically called public project content. In your library project properties, set the Public Include Paths property to a list of paths with shared header files. Once done, these directories will be automatically added to Include Paths in all projects referencing your library project—no need to include or configure anything there, just having a project reference is enough.

Here's a short guide from Microsoft's documentation: Reuse header units among projects

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

79757225

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

You can construct it as an array of tuples and use the array builder syntax to see if that works faster. Something like:

im_arr = [(1 - (r[x] / 10813),)*im_elev[x] for x in r_sorted]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Richard

79757213

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

Hi do you mind sharing the wording you uses for your appeal? Apple likes strong-arming Reader Apps into using IAP

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mugen

79757208

Date: 2025-09-05 22:34:14
Score: 2
Natty:
Report link
REM Determinar AM o PM
set ampm=AM
if !hora! GEQ 12 set ampm=PM
if !hora! GTR 12 set /a hora=!hora!-12
if !hora! EQU 0 set hora=12
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Eliseo

79757192

Date: 2025-09-05 22:03:07
Score: 5.5
Natty:
Report link

I have the same problem. You can let the messages come from the bottom with

display: flex;
flex-direction: column-reverse;

for the container. But I want the first message appears at the top. If the area ist full than the all next messges appear at the bottom and pull the previuos messages to he top. With this code all messages appear unfortunatlly at the bottom

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Stan

79757180

Date: 2025-09-05 21:50:03
Score: 3.5
Natty:
Report link

use with_ymd_and_hms() as ymd_opt() is deprecated

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

79757176

Date: 2025-09-05 21:45:02
Score: 4
Natty: 4
Report link

Take screen shot. Open in IrfanView. Print to Adobe. Open in PDF2XL.

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

79757172

Date: 2025-09-05 21:40:00
Score: 2
Natty:
Report link

I posted this question on Microsoft Learn too and it was answered.: https://learn.microsoft.com/en-us/answers/questions/5543600/retrieve-a-certificate-by-id-in-apim-policy

The Certificate can only be obtained using the thumbprint, so automating the KV secret when rotating the certificate is the only answer at the moment.

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

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