79746645

Date: 2025-08-26 09:34:00
Score: 1
Natty:
Report link

enter image description here

In my case we have 160 groups. All metadata is valid. I think the problem is because JSON file is too big.

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

79746644

Date: 2025-08-26 09:34:00
Score: 3
Natty:
Report link

From what I’ve seen, the standard setup for most web design agencies Luton or creative teams on Azure Web Apps usually starts with a scalable hosting plan, custom domains, and integration with CI/CD pipelines for smoother deployments. Many also use staging slots for testing before pushing updates live, which really helps avoid downtime. Security features like SSL and automated backups are also common to keep client projects safe.

Curious to know - are most agencies here managing this setup in-house, or do you rely on Azure partners for the technical side?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Fast Ranking

79746643

Date: 2025-08-26 09:33:00
Score: 1.5
Natty:
Report link

GitLab supports annotations report type for artifacts which allows attaching external links to jobs. So you can generate links to known locations of artifacts and link to them.

I made an issue to show those links on MRs as well

external links

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

79746637

Date: 2025-08-26 09:27:58
Score: 5.5
Natty:
Report link

I write a function to solve this problem. support both vue 2.7 & vue 3.

You can simply call $reload() in template or reload() in setup to force current component go through lifecycle again.

Here is Live Demo and Project.

I will be so happy if you can have a try and give me some feedback, thanks for reading.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (3): give me some
  • Contains signature (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: xuyiming

79746630

Date: 2025-08-26 09:18:56
Score: 1.5
Natty:
Report link

To add to Matt's answer, it is a generally accepted thing that numpy is often much slower on very small datasets and for simpler math problems. Both of which I think this test would qualify for. Travis Oliphant, the creator of numpy, seems to regularly address this and basically comes back to the fact that numpy will always beat out other solutions on much larger and more computationally intensive problems, but due to many factors like the ones Matt has highlighted will always be slower on very small and simple problems. Here is Travis addressing your question directly in an interview from a few years ago:
https://youtu.be/gFEE3w7F0ww?si=mfTO-uJQRIZdMKoL&t=6080

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: welp

79746626

Date: 2025-08-26 09:13:54
Score: 3.5
Natty:
Report link

"indentRainbow.colorOnWhiteSpaceOnly": true

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Znacovean Simion

79746622

Date: 2025-08-26 09:09:53
Score: 1
Natty:
Report link

I encountered the same error. This error occurs when using the response, not when awaiting fetch(). To handle the terminated error, you should enclose the code that uses the response in a try catch like below.

async function getResponse(url: string) {
  try {
    const res = await fetch(url)
    if (!res.ok) return 
    return Buffer.from(await res.arrayBuffer()) // may occur `terminated error`
  } catch (err) {/*...*/}
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: noooooooous

79746614

Date: 2025-08-26 09:05:52
Score: 1.5
Natty:
Report link

One way is by transitioning your project to a structure that can be built with the standard React Native CLI. You would create a new, standard React Native project and finish code migration manually. Using this method means you are no longer relying on the EAS Build service at all.

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

79746610

Date: 2025-08-26 08:58:50
Score: 3.5
Natty:
Report link

I`d ever had this error because I wrote like <VBox/> instead of </VBox>

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

79746603

Date: 2025-08-26 08:55:49
Score: 2
Natty:
Report link

pgsql jdbc driver seems flawed, it loads all the data in memory when reading bytea data columns

this is the driver method... PgResultSet class

    @Pure
    public @Nullable InputStream getBinaryStream(@Positive int columnIndex) throws SQLException {
        this.connection.getLogger().log(Level.FINEST, "  getBinaryStream columnIndex: {0}", columnIndex);
        byte[] value = this.getRawValue(columnIndex);
        if (value == null) {
            return null;
        } else {
            byte[] b = this.getBytes(columnIndex);
            return b != null ? new ByteArrayInputStream(b) : null;
        }
    }

this will load all in memory and if the data is big the app will go on OOM. can some body confirm i got this problem, how to read big byteea columns ?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Aris

79746602

Date: 2025-08-26 08:53:48
Score: 3
Natty:
Report link

Did you by any chance figure out your issue? I’m trying to do something similar and I’m running into some problems too. I’d love to discuss it with you.

Looking forward to hearing from you!

Best,

Eliott

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Eliott Lawrynowicz

79746594

Date: 2025-08-26 08:40:45
Score: 2.5
Natty:
Report link

It looks like Adrian Klaver had the right answer. Burstable instances are not suitable for these kinds of heavy tasks, even though they don't take hours. We temporarily moved the system to a plain EC2 and never saw the problem again. We are now in the process of migrating back to RDS.

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

79746582

Date: 2025-08-26 08:28:41
Score: 4.5
Natty:
Report link

you can Try installing Vue (official)

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

79746575

Date: 2025-08-26 08:21:39
Score: 3.5
Natty:
Report link

powercycle server as in turn off from the power grid it works.

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

79746574

Date: 2025-08-26 08:16:37
Score: 1
Natty:
Report link

Apparently, for some strange reasons, having the same permission rights on the temp folder and on storage was not enough. Following the guide I found here, I set the rights for all the folders to root as owner and to www-data as group. This is enough for livewire temp folder but seems not to the storage folder. At least not for livewire, because laravel is correctly able to write on the storage folder with this configuration.

Anyway, as soon as I changed the owner of storage folder to www-data, everything started working. The strange thing is that I never received a permission denied error.

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

79746573

Date: 2025-08-26 08:15:37
Score: 1.5
Natty:
Report link

Make sure you enabled mixedcontent., also check the url starting with http://

mixedContentMode:'always'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aravind

79746572

Date: 2025-08-26 08:15:37
Score: 2.5
Natty:
Report link
df2.set_index(['name','date']).loc[df1.set_index(['name','date']).index]
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Confounded

79746571

Date: 2025-08-26 08:14:36
Score: 2.5
Natty:
Report link

I've fixed this problem by just installing vs code system version instead of user version.

User version is downloaded by default.

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

79746565

Date: 2025-08-26 08:08:35
Score: 2
Natty:
Report link

"[^a-zA-Z0-9-_]" allows for whitespace.

The ^ means, match everything that isn't part of [a-zA-Z0-9-_]

Proof from regex101.com

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

79746563

Date: 2025-08-26 08:03:33
Score: 5.5
Natty:
Report link

I'm having the same issue :-(

I was running an Rstudio version of 2024, and tried updating to 2025.05.1 but still get the issue. It also started a week ago or so. It's probably a problem on the side of copilot or github and not RStudio version.

In my Rstudio logs ("Help/Diagnostics/Show log files"), I see at the end of the log file some line

"2025-08-26T07:28:47.612812Z [rsession-jracle] ERROR [onStdout]: Internal error: response contains no Content-Length header.; LOGGED FROM: void __cdecl rstudio::session::modules::copilot::`anonymous-namespace'::agent::onStdout(class rstudio::core::system::ProcessOperations &,const class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &) C:\Users\jenkins\workspace\ide-os-windows\rel-mariposa-orchid\src\cpp\session\modules\SessionCopilot.cpp:823

Which I don't really understand. My user id is jracle, and I don't have any C:\Users\jenkins user or folder on my computer, maybe this is the issue?

Thanks. Best regards,

Julien

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Julien Racle

79746554

Date: 2025-08-26 07:55:31
Score: 3.5
Natty:
Report link

On Sequoia 15.6.1 there is an option to disable CMD+OPTION+D (which conflicts with intelliJ debug start):

enter image description here

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

79746551

Date: 2025-08-26 07:53:30
Score: 2.5
Natty:
Report link

I have configured

  1. Custom domain for webapp &
  2. Pick hotsname from backend
    Still I am getting 404.
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ShP

79746548

Date: 2025-08-26 07:52:30
Score: 2
Natty:
Report link

i uninstalled python and reinstall python and choose python interpreter on the same location of program setup.
after that i choose command promoter in python terminal.

after that set FLASK_APP=appname.py
finally flask run

note the above steps from windows

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mahmoud Abd El-rheem

79746547

Date: 2025-08-26 07:50:29
Score: 2
Natty:
Report link

If you're a fan of crispy, tender chicken and crave fast food done right, Raising Cane’s Chicken Fingers is a name you’ve likely heard—and if not, it’s one you need to know. Specializing in high-quality chicken finger meals, Raising Cane’s has built a loyal following with its simple menu, signature Cane’s Sauce, and a commitment to quality and freshness.

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

79746546

Date: 2025-08-26 07:48:29
Score: 3
Natty:
Report link
scp -P 80 ...

that you need, I guess
scp with port number specified

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

79746545

Date: 2025-08-26 07:47:28
Score: 0.5
Natty:
Report link

This is because StyleDictionary is a constructor, not an object with a member function create. Use new StyleDictionary.create(/* arguments */).

Please see the documentation: getting started. Here, you will also find a couple examples with new StyleDictionary.create(/* arguments */).

This is the source code where StyleDictionary is defined: https://github.com/style-dictionary/style-dictionary/blob/main/lib/StyleDictionary.js.

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Sergey A Kryukov

79746541

Date: 2025-08-26 07:44:27
Score: 2
Natty:
Report link

Perhaps someone is still seeking a solution to customize the "New File" menu.

go to settings => appearance & Behavior => Menus and Toolbars => Navigation Bar PopupMenu => New => right click to expnad menu

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

79746515

Date: 2025-08-26 07:10:18
Score: 2.5
Natty:
Report link

The best approach is to set a pending order at your position's stop-loss price.

You can execute this method either manually or automatically.

Good luck

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

79746513

Date: 2025-08-26 07:08:18
Score: 1
Natty:
Report link
@Document
public class Person {
    @Id
    private String id;
    private String name;
    private int age;
    private String email;
    private String address;
    // getters/setters
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user26887079

79746511

Date: 2025-08-26 07:07:17
Score: 3
Natty:
Report link

Very strange, have you looked at dba_objects and validated the actual owner for that procedure? I'm thinking of a scenario where you are accessing the proc via a synonym and it is actually in another schema and fully qualifying it exposes that.

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

79746506

Date: 2025-08-26 07:01:16
Score: 1
Natty:
Report link

When using Compose Destinations in a multi-module project, the key is to let each feature module declare its own destinations, and then have the app module aggregate them. If you try to generate navigation code in more than one module, KSP will usually crash.

👉 Steps to fix it:

  1. Feature module (e.g., feature_home, feature_profile):

    Define your screens here with @Destination.

    Don’t add a DestinationsNavHost here. Just expose your Composables.

    Example:


@Destination
@Composable
fun HomeScreen(navigator: DestinationsNavigator) { ... }

2 . Navigation (or app) module:

DestinationsNavHost(
    navGraph = NavGraphs.root
)

3. Dependencies:

 . app (or navigation) module should depend on all feature modules.  

 . Feature modules should not depend on each other, only expose their screens.  

4. Important KSP rule:

 . Only one module (usually app) should apply the ksp plugin for Compose Destinations.  

 . If you enable KSP in multiple modules, you’ll hit the crashes.
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Destination
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Abdul-Muqaddam

79746497

Date: 2025-08-26 06:54:14
Score: 3.5
Natty:
Report link

Prime focus is a group of photography. We are providing so many digital system.

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

79746496

Date: 2025-08-26 06:53:14
Score: 3.5
Natty:
Report link

paper's position is "fixed",why did you change it to "absolute"

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

79746469

Date: 2025-08-26 06:22:05
Score: 2
Natty:
Report link

To expand all

To minimize all

Version: 1.4.5 (user setup)

VSCode Version: 1.99.3

Commit: af58d92614edb1f72bdd756615d131bf8dfa5290

Date: 2025-08-13T02:08:56.371Z

Electron: 34.5.8

Chromium: 132.0.6834.210

Node.js: 20.19.1

V8: 13.2.152.41-electron.0

OS: Windows_NT x64 10.0.26100

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

79746446

Date: 2025-08-26 05:50:59
Score: 1.5
Natty:
Report link

I had this problem; I went to JSON and changed the URL to the path of files on my Mac; it worked I got the view I wanted my own HTML & CSS files. I copied and pasted it into the JSON URL

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

79746433

Date: 2025-08-26 05:22:53
Score: 3.5
Natty:
Report link

import pyttsx3

from pydub import AudioSegment

# Inicializar pyttsx3

engine = pyttsx3.init()

voices = engine.getProperty('voices')

engine.setProperty('voice', voices[0].id)

engine.setProperty('rate', 130)

# Letra completa de la canción

lyrics = """

Canción: Eres mi siempre

Verso 1

Recuerdo el instante en que te encontré,

el mar fue testigo de lo que soñé.

Tus labios temblaban al verme llegar,

y en esa mirada aprendí a volar.

Pre-coro

Tú fuiste mi calma en la tempestad,

mi faro en la noche, mi verdad.

Coro

Desde ese día, ya no quise escapar,

me tatué tu nombre junto al corazón.

Y aunque el destino nos quiso alejar,

mi rey, mi papito, te llevo en mi voz.

Desde la playa donde dijiste “sí”,

hasta el adiós que nos tocó vivir...

Nada podrá borrar lo que sentí.

Eres mi siempre, mi razón de existir.

Verso 2

Tus huellas quedaron junto a mi piel,

promesas grabadas que saben a miel.

Aunque el tiempo intente todo borrar,

la llama en mi pecho no deja de arder.

Pre-coro

Y en cada silencio vuelvo a escuchar,

tu risa escondida en el mar.

Coro

Desde ese día, ya no quise escapar,

me tatué tu nombre junto al corazón.

Y aunque el destino nos quiso alejar,

mi rey, mi papito, te llevo en mi voz.

Desde la playa donde dijiste “sí”,

hasta el adiós que nos tocó vivir...

Nada podrá borrar lo que sentí.

Eres mi siempre, mi razón de existir.

Puente

Y si la vida nos vuelve a cruzar,

seré la brisa que te quiera abrazar.

Entre la arena y el cielo azul,

mi alma te nombra, siempre eres tú.

Coro final

Desde ese día, ya no quise escapar,

me tatué tu nombre junto al corazón.

Y aunque el destino nos quiso alejar,

mi rey, mi papito, te llevo en mi voz.

Nada ni nadie me hará desistir,

porque eres mi siempre, mi razón de existir.

"""

# Guardar primero en WAV

wav_file = "cancion_eres_mi_siempre.wav"

engine.save_to_file(lyrics, wav_file)

engine.runAndWait()

print("✅ Archivo WAV generado:", wav_file)

# Convertir a MP3

mp3_file = "cancion_eres_mi_siempre.mp3"

song = AudioSegment.from_wav(wav_file)

song.export(mp3_file, format="mp3")

print("🎵 Conversión completa:", mp3_file)

Reasons:
  • Blacklisted phrase (1): porque
  • RegEx Blacklisted phrase (2): encontr
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: solan perez

79746430

Date: 2025-08-26 05:15:51
Score: 1
Natty:
Report link

Instead of authenticating using

gcloud auth application-default login

I did:

gcloud auth login

This doesn't generate credentials for client libraries... And thus, I was getting the 401 Unauthorized Error.

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

79746429

Date: 2025-08-26 05:14:51
Score: 3.5
Natty:
Report link

For me adding the NuGet Package "Xamarin.AndroidX.Fragment.Ktx" solved the issue

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

79746427

Date: 2025-08-26 05:09:50
Score: 1
Natty:
Report link

I was able to solve this problem. Everything was correct. I just needed to run the chmod +x packages/samples/*/build.sh and ensure the End-Of-Line sequence was set to LF.

I did the latter by simply changing the file in VS Code (bottom right).

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

79746425

Date: 2025-08-26 05:06:49
Score: 1
Natty:
Report link

Here is something crazy. I have been fighting a similar issue for days now and tried everything I could think of. My flux Filament menus were unusable and I had been jumping through hoops to avoid SVGs everywhere. I thought it might be an issue with my dev environment but I don't have room on my live server to add anything at the moment so I couldn't test that easily.

In Filament, I couldn't get my webp logo to display in the flux menu even though it showed up in dev tools.

I came across an issue about flex containers causing issues. Sometimes I would see the svg image extremely large on the page so I started playing around with Filament css and I found the issue.

Last month I set a default padding on img, svg, & video tags. Simply removing the "p-4" solved all issues.

@layer base {
    img,
    svg,
    video {
        @apply block max-w-full p-4;
    }
Reasons:
  • Blacklisted phrase (1): days now
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ron Palmer

79746424

Date: 2025-08-26 05:06:49
Score: 3.5
Natty:
Report link

I realized that I have to declare all folders inside assets/tiles/... or assets/maps/... in pubspec.yaml

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

79746422

Date: 2025-08-26 05:03:48
Score: 1.5
Natty:
Report link

In my case, i accidently used pushNamed instead of push. To use pushName name should be defined in go router otherwise it will throw this error.

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

79746407

Date: 2025-08-26 04:36:42
Score: 2
Natty:
Report link

Interesting concept! For strategy games, most developers lean toward a server-authoritative model where the server calculates the main game state, and clients just display it. This helps avoid desync issues, even though it can mean sending more data back and forth. You can optimize by only sending state changes instead of the full game world each tick. Also, techniques like client-side prediction can smooth out delays. There’s a good breakdown of similar networking challenges in games here.

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

79746396

Date: 2025-08-26 04:09:35
Score: 14
Natty: 7
Report link

Did you got any solution? I am facing the same issue in ubuntu.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you got any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: user31353575

79746392

Date: 2025-08-26 03:59:33
Score: 0.5
Natty:
Report link

Seems like you want to group by curveLocations and get the aggregation of distinctCrossings as sum.

import numpy as np
arrayCurveLocations = [
    [1, 3],
    [2, 5],
    [1, 7],
    [3, 2],
    [2, 6]
]
arrayCurveLocations = np.array(arrayCurveLocations)

If you want below as result:

[
    [1, 10],
    [2, 11],
    [3, 2]
]

Then I can show how it can be done with pandas.

import pandas as pd
df = pd.DataFrame(arrayCurveLocations, columns=['curveLocations', 'distinctCrossings'])
result = df.groupby('curveLocations', as_index=False)['distinctCrossings'].sum()
result_array = result.values
print(result_array)

If you want to rely on only numpy to solve your problem, then this Link could help.

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

79746373

Date: 2025-08-26 03:09:23
Score: 1.5
Natty:
Report link
<script setup>
import { inject } from 'vue';

const route = inject('route');

console.log(route('klant.index'));
</script>

look for <script setup> on this page for Vue3 composition API setup https://github.com/tighten/ziggy?tab=readme-ov-file#installation

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

79746370

Date: 2025-08-26 03:05:22
Score: 2
Natty:
Report link

We are looking for Administrative Assistants/Customer Service Assistants with flexible hours to start as soon as possible.

Training will be provided. (Monday to Friday or Saturday to Sunday). Good salary. Basic English is required

you can apply through the following link:
https://form.jotform.com/252307797899075

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: عزام صبير

79746369

Date: 2025-08-26 03:01:21
Score: 1.5
Natty:
Report link

Found it in one of our css files.

The error/fix is simple.

The message is gibberish.

It indicates your css braces are not balanced.

We had it on this

``body {

/* for pages of css here */
.xxx {

}

``

Adding a brace and balancing everything made it go away.

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

79746368

Date: 2025-08-26 02:52:19
Score: 3
Natty:
Report link

Instead of auth.last_sign_in_at I think we can use auth.email_confirmed_at as well.

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

79746366

Date: 2025-08-26 02:51:19
Score: 2
Natty:
Report link

The Power BI dataset is tabular and, as such, Deneb processes and generates the supplied Power BI data as a tabular dataset in the Vega view. There isn't the ability to type data from the semantic model in a way that allows us to detect if it's JSON (and infer that it's spatial). We also can't have multiple queries per visual due to constraints in Power BI, so the tabular dataset was prioritized for greater flexibility for developers. If you are using the certified visual, you can currently only use the hard-coded approach that @davidebacci has identified.

I have some ideas for "post v2", where we could supply a valid scalar TopoJSON object from a semantic model via a conditional formatting property in the properties pane, which circumvents the query limit but allows us to potentially treat such a property and inject it as a spatial dataset (provided it parses). We'll also need to consider what this means for reuse via templates, as it creates an additional kind of dependency beyond the traditional tabular dataset that we currently assume.

Note that v2 is still under active development. As we're discussing potentially after this timeframe, it is not a valid short-term (or possibly medium-term) solution. However, I wanted to let you know that I'm aware of it as a limitation and am considering how to solve it in a future iteration.

Reasons:
  • Blacklisted phrase (1): how to solve
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @davidebacci
  • Low reputation (0.5):
Posted by: Daniel Marsh-Patrick

79746358

Date: 2025-08-26 02:17:12
Score: 0.5
Natty:
Report link

I have tackled this same issue and did a lot of searching. Could not find the answer, so with some trial and error I found a little more information. I'll add it to this question, in case this keeps coming up.

The code in the answer by stackunderflow can modified to display more information about every reference in the project. In particular, we care about printing VBRef.GUID . If we then search the registry for the GUID, there should be a hit in the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office area. There were a bunch of other hits I had to ignore - for my plugin the key chain went down ClickToRun path. Eventually there are some default values of type 0x40001, and one of them will contain the full path as binary data in UTF-16 format. Double-click to edit the binary data, which will also show the characters on the right side.

I verified this by modifying the binary data in RegEdit - Excel then showed the modified path in the reference list.

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

79746356

Date: 2025-08-26 02:11:11
Score: 3.5
Natty:
Report link

check virus & threat protection Real-time protection and allow folder image

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

79746353

Date: 2025-08-26 02:01:07
Score: 10
Natty: 5
Report link

I have similar problem, I would not find where to change the title for https://www.amphasisdesign.com/products . Please help.

Reasons:
  • Blacklisted phrase (1): I have similar
  • RegEx Blacklisted phrase (3): Please help
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have similar problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kiat Soo

79746352

Date: 2025-08-26 02:00:07
Score: 0.5
Natty:
Report link

After some digging, I found that Objects wrapped in a Svelte 5 state rune don't behave just like a normal Object (unlike in Svelte 4), as $state(...) wraps plain objects/arrays in a Svelte Proxy. This is what led to the error: IndexedDB (and Node’s structuredClone) cannot serialize these Proxies, so Dexie throws DataCloneError: #<Object> could not be cloned. The fix is to simply replace the plain object spread with $state.snapshot(), which takes a static serializable snapshot of a deeply reactive $state proxy:

- const dirty = { meta: { ...meta } }
+ const dirty = { meta: $state.snapshot(meta) }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: henrymattel

79746340

Date: 2025-08-26 01:42:02
Score: 0.5
Natty:
Report link

It looks like you are relying on the persistence of the value of count; however, in Google Apps Script, the global context is executed on each execution.

One option is to use the Properties Service to store the value, but in this case, you might find it more convenient to get the column hidden state by using isColumnHiddenByUser(columnPosition)

Related

Reasons:
  • Blacklisted phrase (1): How do I
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Wicket

79746313

Date: 2025-08-26 01:03:53
Score: 2
Natty:
Report link

You cannot get a Google profile photo from Cloud IAP alone. IAP gives you identity for access control, not an OAuth access token for Google APIs. The headers and the IAP JWT are only meant for your app to verify who the caller is. They do not include a profile picture and they are not valid to call Google APIs like People.

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

79746310

Date: 2025-08-26 01:03:53
Score: 2
Natty:
Report link

import moviepy.editor as mp

# 打开GIF文件

gif_path = "/mnt/data/earthquake_shake.gif"

video_path = "/mnt/data/earthquake_shake.mp4"

# 转换为视频

clip = mp.VideoFileClip(gif_path)

clip.write_videofile(video_path, codec="libx264", fps=10)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 张伟豪

79746305

Date: 2025-08-26 00:55:52
Score: 2
Natty:
Report link

Are you resetting the EPC pointer after every write ? If not You are seeing 23 instead of 24 (and 21 instead of 23) because the printer did write the value you asked for, but the reader is returning the next sequential EPC value.
This is a known quirk on Gen-2 UHF tags when the EPC pointer is left at an offset ≠ 0 after a previous operation.

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

79746304

Date: 2025-08-26 00:55:52
Score: 1.5
Natty:
Report link

The issue lies in the library, to be more specific, the regex that grabs the Android version.

As noted by @loremus, this library is no longer maintained and should not be used.

But to fix the issue, look for /android ([0-9]\.[0-9])/i) as in the snippet below, and change it to /android ([0-9]+(?:\.[0-9]+)?)/i

function _getAndroid() {
    var android = false;
    var sAgent = navigator.userAgent;
    if (/android/i.test(sAgent)) { // android
        android = true;
        var aMat = sAgent.toString().match(/android ([0-9]\.[0-9])/i);
        if (aMat && aMat[1]) {
            android = parseFloat(aMat[1]);
        }
    }
    return android;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @loremus
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: izlim

79746297

Date: 2025-08-26 00:41:48
Score: 1.5
Natty:
Report link

I break model training and gpu remains with full memory and this helps me. But by carefull its also kills python env kernel

pkill -f python
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Roman Dvoryankov

79746265

Date: 2025-08-25 23:37:32
Score: 2
Natty:
Report link

The ESLint warning you're seeing in VSCode—"Unexpected nullable string value in conditional. Please handle the nullish/empty cases explicitly"—comes from the @typescript-eslint/strict-boolean-expressions rule. This rule enforces that conditionals must be explicit when dealing with potentially null or undefined values.

Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ron

79746252

Date: 2025-08-25 23:05:25
Score: 2
Natty:
Report link

I'm not an expert, but I'm pretty sure you shouldn't use an initializer on a view. That code should be in the onAppear method. You can't count on the init method. You have the transaction in the binding.

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

79746251

Date: 2025-08-25 23:01:24
Score: 0.5
Natty:
Report link

I eventually found the issue that I had a typo in my code.

However, within the tab panel, one can just access the props of the component.

// bobsProps is passed in as a function properties, so is accessible.
 <TabPanel bob={bobsProps} value={value} index={2}>
             <div>{bobsProps.somevalue}</div>
 </TabPanel>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: AndyW

79746246

Date: 2025-08-25 22:49:21
Score: 1.5
Natty:
Report link

Never mind, i tried a way, i added this and at least it prints all of them on the terminal:

   df = pd.DataFrame(data)
   dflst = []
   dflst.append(df)
   print(dflst)
all_data()
print(all_data())

I'd accept any insight to make my understanding of the whole thing better. Thanks for reading, and sorry to bother.

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

79746245

Date: 2025-08-25 22:42:19
Score: 2.5
Natty:
Report link

You can’t use switch for value ranges — it only works with fixed cases. If you need to set an image source based on ranges of ratio, you’ll need to use if/else statements (or a lookup function) instead. That way you can handle conditions like < 20, >= 20 && < 50, etc.

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

79746242

Date: 2025-08-25 22:40:19
Score: 1
Natty:
Report link

On Windows 11, the correct syntax is:

curl -X POST "http://localhost:1000/Schedule/0" -H "accept: */*" -H "Content-Type: application/json" -d "{ \"title\": \"string\", \"timeStart\": \"21:00:00\", \"timeEnd\": \"22:00:00\" }"

only 1 backslash before each double quote inside --data

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

79746240

Date: 2025-08-25 22:38:18
Score: 0.5
Natty:
Report link

I've found the cause. PHPStorm adds these parameters when you open the index page via ALT+F2:

?_ijt=pdprfcc6u90jpqpfgc0hfk2mk3&_ij_reload=RELOAD_ON_SAVE

My code automatically preserves URL parameters, so this was causing the devenv to return the extra payload.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Doc Bok

79746227

Date: 2025-08-25 22:14:13
Score: 1.5
Natty:
Report link

Just one DAG is enough!

Five tasks:

  1. IsAlive - Check if the streaming app is alive. If no, jump to task 4.

  2. IsHealthy - Check if the app is performing as expected. If yes, jump to task 5.

  3. Shutdown - Finishes the app.

  4. Start - Starts the app.

  5. Log - Tracks the status and acts.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ricardo Padua Soares

79746220

Date: 2025-08-25 22:05:11
Score: 0.5
Natty:
Report link

I am also following along in the book "Creating Apps with kivy", and ran into the same issue in Example 1-5. ListView is deprecated and replaced with RecycleView. I took the response from Nourless, and stripped it down to the bare essentials to match the example in the book. I found the following code worked in place of ListView. As the author goes through the book, I am guessing he will add the layout information one step at a time.

    RecycleView:
        data: [{'text':'Palo Alto, MX'}, {'text':'Palo Alto, US'}]
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: EdouardP

79746215

Date: 2025-08-25 21:57:09
Score: 1.5
Natty:
Report link

The answer here was to click Build->Load All (Ctrl-Shift-L) (or equivalently run devtools:load_all("path/to/my/project"), which loads the correct things into scope.

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

79746212

Date: 2025-08-25 21:49:07
Score: 2.5
Natty:
Report link

sua ideia e boa, veja sobre cluster pvm, e nao mpi, os clusters atualmente sao todos MPI os cluster AWS e os APACHE ultimos estao tentando refazer o que o PVM do openmosix fazia acho que e isso que vc imaginou, vc coloca o seu programa para funcionar com muitas tread e magicamente sua tread aparece pronta isso e um PVM

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

79746202

Date: 2025-08-25 21:25:01
Score: 4.5
Natty: 4
Report link

not working.. pls fix this asap

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

79746196

Date: 2025-08-25 21:11:58
Score: 2.5
Natty:
Report link

Maybe you should take a look at their code example and search for the part using Markers. If this is not enough, you should ask directly to the maintainers of the lib through the issues section of the repository.

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

79746195

Date: 2025-08-25 21:08:57
Score: 3.5
Natty:
Report link

As of now, this seems to be impossible, short of patching Java yourself. There is upstream bug report: https://bugs.openjdk.org/browse/JDK-8290140 and Fedora might patch it: https://bugzilla.redhat.com/show_bug.cgi?id=1154277

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

79746192

Date: 2025-08-25 21:02:56
Score: 1.5
Natty:
Report link

//.htaccess

RewriteEngine On
RewriteBase /AbhihekDeveloper

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.php/$1 [PT,L]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user31348439

79746190

Date: 2025-08-25 21:00:55
Score: 1.5
Natty:
Report link

The calendar app is just .toolbar nothing too complicated. Using the new Toolbar stuff its build in a couple of minutes.

Calendar App:

private let days = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 ,16, 17, 18, 19, 20, 22, 23, 24, 25] //Just example dont implement like this
    private let columns = [GridItem(.flexible()), GridItem(.flexible()), GridItem(.flexible()), GridItem(.flexible()), GridItem(.flexible()), GridItem(.flexible()), GridItem(.flexible())] // 7 days
    
    var body: some View {
        NavigationView {
            VStack {
                ScrollView {
                    Text("May")
                        .font(.largeTitle.bold())
                        .frame(maxWidth: .infinity, alignment: .leading)
                        .padding()
                    LazyVGrid(columns: columns) {
                        ForEach(days, id: \.self) { day in
                            Text("\(day)")
                                .font(.title3)
                                .padding(5)
                                .padding(.vertical, 10)
                        }
                    }
                    .padding()
                    
                    Text("June")
                        .font(.largeTitle.bold())
                        .frame(maxWidth: .infinity, alignment: .leading)
                        .padding()
                    LazyVGrid(columns: columns) {
                        ForEach(days, id: \.self) { day in
                            Text("\(day)")
                                .font(.title3)
                                .padding(5)
                                .padding(.vertical, 10)
                        }
                    }
                    .padding()
                }
            }
            .toolbar {
                ToolbarItem(placement: .topBarLeading) {
                    Label("2025", systemImage: "chevron.left")
                        .labelStyle(.titleAndIcon)
                        .frame(width: 75) // Have to set it for the ToolbarItem or only icon is visible
                }
                ToolbarItem(placement: .topBarTrailing) {
                    Image(systemName: "server.rack") //or whatever
                }
                ToolbarItem(placement: .topBarTrailing) {
                    Image(systemName: "magnifyingglass")
                }
                ToolbarItem(placement: .topBarTrailing) {
                    Image(systemName: "plus")
                }
                ToolbarItem(placement: .bottomBar) {
                    Image(systemName: "pencil")
                }
                ToolbarSpacer(placement: .bottomBar)
                ToolbarItem(placement: .bottomBar) {
                    Image(systemName: "exclamationmark.circle")
                }
                ToolbarItem(placement: .bottomBar) {
                    Image(systemName: "tray")
                }
            }
        }
    }

Now the Fitness app is a little bit more challenging. I didn't come up with a perfect solution, but it the basics works. I chose the .navigationTitle() and just a plain VStack with the chips as you can see. It doesn't have a blur, but the basics are there. TabView is with just the basic Tab. It could be refactored into the .toolbar too with a custom title?

Fitness App:

struct FitnessAppView: View {
    var body: some View {
        TabView {
            //Different views
            Tab("Fitness+", systemImage: "ring") {
                FitnessRunningView()
            }
            Tab("Summary", systemImage: "figure.run.circle") {
                FitnessRunningView()
            }
            Tab("Sharing", systemImage: "person.2") {
                FitnessRunningView()
            }
        }
    }
}

struct FitnessRunningView: View {
    var body: some View {
        NavigationView {
            ZStack {
                VStack {
                    // Horizontal chips
                    ScrollView(.horizontal) {
                        HStack {
                            ChipView(text: "For you")
                            ChipView(text: "Explore")
                            ChipView(text: "Plans")
                            ChipView(text: "Library")
                        }
                    }
                    .scrollIndicators(.hidden)
                    
                    // Main content
                    ScrollView {
                        VStack(spacing: 20) {
                            Text("Hello world!")
                            ForEach(0..<20) { i in
                                Text("Item \(i)")
                                    .frame(maxWidth: .infinity)
                                    .padding()
                                    .background(.thinMaterial)
                                    .cornerRadius(10)
                            }
                        }
                        .padding()
                    }
                }
            }
            .navigationTitle("Fitness+")
        }
    }
}

struct ChipView: View {
    var text: String
    
    var body: some View {
        Text(text)
            .font(.title3)
            .padding()
            .glassEffect(.regular.interactive())
            .padding(10)
    }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Cactusss

79746186

Date: 2025-08-25 20:56:54
Score: 0.5
Natty:
Report link

Rejecting duplicate peerIds did not work for me. I kept an array of the sessions that I had started for all peerIds and when the advertiser triggered a call to session:peer:didChangeState: I did a disconnect and session=nil to all sessions in the array except the session that was finally connected.

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Peter B. Kramer

79746184

Date: 2025-08-25 20:54:53
Score: 1
Natty:
Report link

I solved the problem by making the function that draws the messages also draw the line in the background and adding to the height y of the line coordinates the equivalent of the distance from the beginning of the message box to its center (as this is always fixed) + the total height of the box

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ams Soma Carmo

79746172

Date: 2025-08-25 20:40:50
Score: 1.5
Natty:
Report link

Check the generated output variable in the schema.prisma file and the location from where u are importing prisma client. In my case I located where the edge.d.ts file was and it was in the src/generated/prisma .

import { PrismaClient } from '../src/generated/prisma/edge'
generator client {
  provider = "prisma-client-js"
  output   = "../src/generated/prisma"
}

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abhay Patil

79746170

Date: 2025-08-25 20:36:49
Score: 3.5
Natty:
Report link

I also encountered this just now and tried something. I set the polygon's pivot point to the bones pivot and voila... it works fine now. (Godot 4.2.1)

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

79746166

Date: 2025-08-25 20:30:48
Score: 3
Natty:
Report link

so what I had to do to solve this error is go into my files, go to (%appdata% > roaming) find Jupyter in there. Then I was prompted by windows to allow admin permissions before entering. This fixed Anaconda when I went to check after.

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

79746162

Date: 2025-08-25 20:26:46
Score: 0.5
Natty:
Report link

My set up: NX + Angular 19 with internal library.

For me, this bug occurs when all three conditions are met:

  1. I am using a component without exporting from library

  2. I am using that component inside @defer{} block

  3. I am NOT using hmr.

What really tricky is: if you are using hmr this just works fine.
Seems like a nastly angular bug.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @defer
  • High reputation (-1):
Posted by: Sandeep Gupta

79746154

Date: 2025-08-25 20:15:43
Score: 1.5
Natty:
Report link

try using a different ssh-agent . e.g

ssh-agent bash

ssh-add ~/.ssh/id_ed25519

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Wasiu

79746145

Date: 2025-08-25 20:02:39
Score: 2
Natty:
Report link

The thing that worked for me is to either connect to your mobile hotspot and if you are already connected change the network type to private network.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abhay Patil

79746142

Date: 2025-08-25 20:00:38
Score: 0.5
Natty:
Report link

You can set the number of concurrent processes used in your build process using CMAKE_BUILD_PARALLEL_LEVEL in your CMake file. For example:

set(CMAKE_BUILD_PARALLEL_LEVEL 10)

is equal to specify -j 10 in your cmake command line.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Matin Kourepaz

79746125

Date: 2025-08-25 19:42:33
Score: 0.5
Natty:
Report link

You may also want to consider another approach of making the Djoser emails async by default.

The way I did this was to subclass Djoser's email classes and override the send() method so it uses a Celery task. The accepted solution works for one-off tasks, but this method makes sure there is consistency across all email types.


users/tasks.py

from django.core.mail import EmailMultiAlternatives
from celery import shared_task

@shared_task(bind=True, max_retries=3)
def send_email_task(self, subject, body, from_email, to, bcc=None, cc=None, reply_to=None, alternatives=None):
    try:
        email = EmailMultiAlternatives(
            subject=subject,
            body=body,
            from_email=from_email,
            to=to,
            bcc=bcc or [],
            cc=cc or [],
            reply_to=reply_to or []
        )
        if alternatives:
            for alt in alternatives:
                email.attach_alternative(*alt)
        email.send()
    except Exception as exc:
        raise self.retry(exc=exc, countdown=60)

This is a generic task that sends any Django email. Nothing here is Djoser-specific.


users/email.py

from django.conf import settings
from djoser import email
from .tasks import send_email_task


class AsyncDjoserEmailMessage(email.BaseDjoserEmail):
    """
    Override synchronous send to use Celery.
    """
    def send(self, to, fail_silently=False, **kwargs):
        self.render()
        self.to = to
        self.cc = kwargs.pop("cc", [])
        self.bcc = kwargs.pop("bcc", [])
        self.reply_to = kwargs.pop("reply_to", [])
        self.from_email = kwargs.pop("from_email", settings.DEFAULT_FROM_EMAIL)
        self.request = None  # don't pass request to Celery

        send_email_task.delay(
            subject=self.subject,
            body=self.body,
            from_email=self.from_email,
            to=self.to,
            bcc=self.bcc,
            cc=self.cc,
            reply_to=self.reply_to,
            alternatives=self.alternatives,
        )

Any email that inherits from this class will be sent asynchronously.


Now you can combine Djoser's built-in emails with your async base:

class PasswordResetEmail(email.PasswordResetEmail, AsyncDjoserEmailMessage):
    template_name = 'email/password_reset.html'

    def get_context_data(self):
        context = super().get_context_data()
        user = context.get('user')
        context['username'] = user.username
        context['reset_url'] = (
            f"{settings.FRONTEND_BASE_URL}/reset-password"
            f"?uid={context['uid']}&token={context['token']}"
        )
        return context


class ActivationEmail(email.ActivationEmail, AsyncDjoserEmailMessage):
    template_name = 'email/activation.html'

    def get_context_data(self):
        context = super().get_context_data()
        user = context.get('user')
        context['username'] = user.username
        context['verify_url'] = (
            f"{settings.FRONTEND_BASE_URL}/verify-email"
            f"?uid={context['uid']}&token={context['token']}"
        )
        return context


class ConfirmationEmail(email.ConfirmationEmail, AsyncDjoserEmailMessage):
    template_name = 'email/confirmation.html'

You can do the same for:

Each one gets async sending for free, and you can add extra context if you need it.


If you want to override Djoser's email, you need to make sure you add yours to the global templates dir so your templates get used instead. Examples (templates/email/...):

password_reset.html

{% block subject %}Reset your password on {{ site_name }}{% endblock %}

{% block text_body %}
Hello {{ username }}!

You requested a password reset for your account. Click the link below:

{{ reset_url }}
{% endblock %}

{% block html_body %}
<h2>Hello {{ username }}!</h2>
<p>Click the link to reset:</p>
<a href="{{ reset_url }}">Reset Password</a>
{% endblock %}

activation.html

{% block subject %}Verify your email for {{ site_name }}{% endblock %}

{% block text_body %}
Hello {{ username }}, please verify your email:
{{ verify_url }}
{% endblock %}

{% block html_body %}
<h2>Hello {{ username }}!</h2>
<p><a href="{{ verify_url }}">Verify Email</a></p>
{% endblock %}

...and similarly for confirmation.html.

Make sure your settings.py points at the template folder:

TEMPLATES = [
    {
        "BACKEND": "django.template.backends.django.DjangoTemplates",
        "DIRS": [BASE_DIR / "templates"],
        ...
    }
]

Add Djoser URLs:

urlpatterns = [
    path("users/", include("djoser.urls")),
    ...
]

Start Celery:

celery -A config worker -l info

(replace config with your project name)

Trigger a Djoser action (e.g. reset_password or activation) and you'll see Celery run send_email_task.


This way, all Djoser emails in which you inherit AsyncDjoserEmailMessage() become async, not just password reset.

Reasons:
  • Blacklisted phrase (1): the link below
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Winifred Igboama

79746122

Date: 2025-08-25 19:37:32
Score: 1
Natty:
Report link

There is a fix for grid.setOptions so that it doesn't drop your toolbar customizations.

Just detach the toolbar before setOptions and then re-apply it afterwards.

 toolBar = $("#" + GridName + " .k-grid-toolbar").detach();
 grid.setOptions(options);
 $("#" + GridName + " .k-grid-toolbar").replaceWith(toolBar);
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Darron Michael

79746121

Date: 2025-08-25 19:34:31
Score: 1
Natty:
Report link

This is a fairly widespread compatibility issue between the JavaFX D3D hardware pipeline and recent Intel Iris Xe graphics drivers on Windows, as confirmed by your tests with multiple driver and Java versions. The D3DERR_DEVICEHUNG error and resulting freezes or flickers are typical of JavaFX running into problems with the GPU driver—these issues go away when using software rendering or a discrete NVIDIA GPU, but those solutions either severely hurt performance or aren't generally available to all users. Currently, aside from forcing software rendering (which impacts speed) or shifting to an external GPU (not possible on all systems), there is no reliable JVM flag or workaround that fully addresses this; the root cause is a low-level bug or incompatibility which requires a fix from Intel or the JavaFX/OpenJFX developers. For now, the best course is to alert both Intel and OpenJFX via a detailed bug report and, in the interim, provide users with guidance to use software mode or reduce heavy GPU effects until an official update becomes available.

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

79746120

Date: 2025-08-25 19:33:31
Score: 3
Natty:
Report link

Powershell:
Remove-Item Env:\<VARNAME>
Example:
Remove-Item Env:\SSH_AUTH_SOCK

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

79746112

Date: 2025-08-25 19:14:26
Score: 12
Natty: 7.5
Report link

Hello I´ve had the same issue, have you found the solution? Please could you give me a hint if you solved this problem. Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Please could you give me
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (2.5): have you found the solution
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniela Carolina De La Rosa Pr

79746111

Date: 2025-08-25 19:12:26
Score: 0.5
Natty:
Report link

Simple! I should have mentioned the .exe was previously signed. The solution is to do:

signtool remove /s %outputfile%

before the rcedit. Then after that, signtool to sign - works fine.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Wayne

79746078

Date: 2025-08-25 18:13:11
Score: 3.5
Natty:
Report link

Use this patch. its works for me
https://github.com/software-mansion/react-native-reanimated/issues/7493#issuecomment-3056943474

Reasons:
  • Whitelisted phrase (-1): works for me
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Lakween Senathilake

79746067

Date: 2025-08-25 17:56:05
Score: 4
Natty: 4
Report link

Had the same issue. Try updating or using a new CLI

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

79746065

Date: 2025-08-25 17:55:04
Score: 1
Natty:
Report link

I fixed it by installing the latest version of IntelliJ IDEA, which has full support for newer Java language levels

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Orifjon Yunusjanov

79746061

Date: 2025-08-25 17:48:03
Score: 1
Natty:
Report link

+1 For the Loki recommendation. It is nice being able to query the Loki data in the Grafana UI. You can tail live logs from your pod using the label selector or pick a specific time range that you are interested in.

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

79746047

Date: 2025-08-25 17:34:59
Score: 1.5
Natty:
Report link

I figured out how to get the output that I needed. I'll post it here for others to see and comment on.

The way I did it was to also require jq as a provider, which then allowed me to run a jq_query data block. This is the full end to end conversion of the data sources:

locals {
  instances_json = jsonencode([ for value in data.terraform_remote_state.instances : value.outputs ])
}

data "jq_query" "all_ids" {
  data  = local.instances_json
  query = ".[] | .. | select(.id? != null) | .id"
}

locals {
  instances = split(",", replace(replace(data.jq_query.all_ids.result, "\n", "," ), "\"", "") )
}

The last locals block is needed because the jq_query block returns multiple values but the string is not in a standard json format. So we can't decode the string from json, we just simply have to work around it. So I replaced the "\n" characters with commas, and then replaced the \" with nothing so that the end result would give me something I could use the split function with to split up the values into a list.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (3): give me some
  • Whitelisted phrase (-2): I figured out
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Deprived.Writer

79746041

Date: 2025-08-25 17:27:57
Score: 1
Natty:
Report link

Make sure to specify the uid when creating the user so that it will for sure match up with the uid specified for the cache. I was having permissions problems with the cache dir until I saw that the user that was created had uid 999.

useradd -u 1000 myuser

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

79746026

Date: 2025-08-25 17:05:51
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: Jakir Ali

79746024

Date: 2025-08-25 17:04:50
Score: 0.5
Natty:
Report link

I had a case similar to the question above, but to solve I did this:

columns = ["a", "b", "c"]

df[[*columns]]

This unpacks the column names and uses them to generate a new dataframe with only the column names in the columns list

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

79746022

Date: 2025-08-25 17:03:50
Score: 1.5
Natty:
Report link

I found the error. The de-serialization code should use boost::archive::binary_iarchive ar(filter); instead of boost::archive::binary_iarchive ar(f);

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