79625908

Date: 2025-05-16 20:40:15
Score: 3
Natty:
Report link

i tried the libname test pcfiles way, how ever the char after conversion are built with format. and rows with special characters are not convert .

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

79625904

Date: 2025-05-16 20:38:14
Score: 1
Natty:
Report link

@Kaiido I updated your example to work on safari

const worker = new Worker(generateURL(worker_script));
worker.onmessage = e => {
  const img = e.data;
  if(typeof img === 'string') {
    console.error(img);
  }
  else
    renderer.getContext('2d').drawImage(img, 0,0);
};

function generateURL(el) {
  const blob = new Blob([el.textContent]);
  return URL.createObjectURL(blob);
}
<script type="worker-script" id="worker_script">
  if(self.FontFace) {
    const url = 'https://fonts.gstatic.com/s/shadowsintolight/v7/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQzdcD55TecYQ.woff2'
    // first declare our font-face
    // Fetch font to workaround safari bug not able to make cross-origin requests by the FontFace loader in a worker
    fetch(url).then(res => res.arrayBuffer())
    .then(raw => {
    const fontFace = new FontFace(
      'Shadows Into Light',
      raw
    );
    // add it to the list of fonts our worker supports
    self.fonts.add(fontFace);
    // load the font
    fontFace.load()
    .then(()=> {
      // font loaded
      if(!self.OffscreenCanvas) {
        postMessage("Your browser doesn't support OffscreeenCanvas yet");
        return;
      }
      const canvas = new OffscreenCanvas(300, 150);
      const ctx = canvas.getContext('2d');
      if(!ctx) {
        postMessage("Your browser doesn't support the 2d context yet...");
        return;
      }
      ctx.font = '50px "Shadows Into Light"';
      ctx.fillText('Hello world', 10, 50);
      const img = canvas.transferToImageBitmap();
      self.postMessage(img, [img]);
    })
});
  } else {
    postMessage("Your browser doesn't support the FontFace API from WebWorkers yet");
  }
  
</script>
<canvas id="renderer"></canvas>

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Kaiido
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: ShaMan123

79625899

Date: 2025-05-16 20:32:13
Score: 1.5
Natty:
Report link

Just posting this in case anyone were to stumble on the same problem as me: Requesting an authorization flow from a bash shell and figured out that I may not add quotes (in my case single quotes).

My original (failing) command:

open "https://accounts.spotify.com/authorize?response_type=code&client_id=$SPOTIFY_CLIENT_ID&redirect_uri=$SPOTIFY_REDIRECT_URI&state=$TMP_SFY_STATE&scope='playlist-modify-public'"

My new (working) command:

open "https://accounts.spotify.com/authorize?response_type=code&client_id=d3e985209060474e99247de040967b54&redirect_uri=https://no_spotify_uri&state=$TMP_SFY_STATE&scope=playlist-modify-public"

The differences are the single quotes around my scope value.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Yorick Aelvoet

79625897

Date: 2025-05-16 20:31:12
Score: 8.5 🚩
Natty: 5
Report link

youtube ............................................................................................................................................................

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (3):
  • Filler text (0.5): ............................................................................................................................................................
  • Low entropy (1):
  • Low reputation (1):
Posted by: user30559764

79625896

Date: 2025-05-16 20:29:11
Score: 0.5
Natty:
Report link

Opening a procedure from SSMS using right-click -> Script As -> Alter, uses utf-8. But, opening the same procedure from SSMS using right-click -> Modify, uses utf-16 LE BOM.

I was having the same trouble using GitHub Desktop to view the diffs from the utf-16 files because they're considered binary. While it's a couple of extra clicks through the SSMS UI, it enables Git version diffs and uses half the file size.

Loading the stored procs into Git has to be done using the first method. Once they're in there, then use Git to open them no problem.

This is on SSMS 20.

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

79625892

Date: 2025-05-16 20:25:10
Score: 5
Natty: 5
Report link

I still have the Chrome browser hanging open, even after:

driver.Quit();

is there something else (missing)?

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

79625891

Date: 2025-05-16 20:25:10
Score: 3.5
Natty:
Report link

Using the latest glassfish 7 or payara 6 servers just changing
@Inject to @EJB in the REST resource endpoint classes fixes the problem.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Inject
  • User mentioned (0): @EJB
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: mikee

79625890

Date: 2025-05-16 20:24:09
Score: 1.5
Natty:
Report link

From Visual Studio 2022 Git Changes tool window, I was able to 'View all commits', then select the commit I wanted to edit. Right click on the commit and View Commit Details. After that, I clicked Edit above the message, made the desired changes, and saved them.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: B H

79625883

Date: 2025-05-16 20:16:07
Score: 4.5
Natty: 4
Report link

Anyone who is still looking there is this project.

https://github.com/CoolCoderSuper/visualbasic-language-server

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

79625877

Date: 2025-05-16 20:11:05
Score: 0.5
Natty:
Report link

I had the same problem - Hiding sheet worked in debug mode but not when running the script. Wickets answer put me onto what did work - putting the flush statement BEFORE the hidesheet atatement.

Script operation order:

Reasons:
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: Michael Ruggiero

79625876

Date: 2025-05-16 20:11:05
Score: 1
Natty:
Report link

Your problem could be simpler than most discussions on the thread. The problem you see might look like this:

C:\Users\Dev>git checkout $username@PATH/BRANCH$.git
fatal: not a git repository (or any of the parent directories): .git
C:\Users\Dev>git checkout $username@PATH/BRANCH$.git
error: pathspec '....' did not match any file(s) known to git

Solution? CLONE - not CHECKOUT!!!! :)

C:\Users\Dev>git clone $username@PATH/BRANCH$.git
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Aarthi Rishi

79625875

Date: 2025-05-16 20:10:04
Score: 1.5
Natty:
Report link

This is just an expansion on the great answer from @EdMorton for anyone who wants to wrap it, as a a proof of concept this works:


#!/bin/bash

func() {
        echo "test...stdout - arg 1: $1 - arg 2: $2"
        echo "test...stderr 1" >&2
        echo "test...usrerr" >&4
        echo "test...stderr 2" >&2
        return 1
}

wrap() {
        func_name=$1; shift; func_args=$@

        { em=$($func_name $func_args 4>&2 2>&1 1>&3-); ec=$?; } 3>&1
        
        if [[ ec != 0 ]]; then
                echo "Error code: $ec"
                echo "Captured stderr (not shown):"
                echo "$em"
        else
                echo "There were no errors."
        fi
}

wrap func abc xyz

And the result is:

test...stdout - arg 1: abc - arg 2: xyz
test...usrerr
Error code: 1
Captured stderr (not shown):
test...stderr 1
test...stderr 2
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @EdMorton
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Albert Camu

79625868

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

As per @Mr_Pink comment, I just needed to remove the channel receive. The following works:

package main

import (
    "fmt"
    "os"
    "time"

    hook "github.com/robotn/gohook"
)

func main() {
    fmt.Println("Press q to quit.")
    hook.Register(hook.KeyDown, []string{"q"}, func(e hook.Event) {
        os.Exit(3)
    })
    s := hook.Start()
    hook.Process(s)

    // TODO: While listening for key events with gohook above, I also want to continuously print to the console.
    // How do I get this loop to run, while the above event listener is also active?
    for {
        fmt.Print(".")
        time.Sleep(200 * time.Millisecond)
    }
}
Reasons:
  • Blacklisted phrase (1): How do I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Mr_Pink
  • Self-answer (0.5):
Posted by: Dave Rapin

79625864

Date: 2025-05-16 19:59:01
Score: 2
Natty:
Report link

Indexing everything will slow down inserts to a crawl.

Indexes should be applied to fields with high cardinality, meaning it has several different values.

Many databases support the "explain" command, which will tell you where to index

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

79625863

Date: 2025-05-16 19:59:01
Score: 2
Natty:
Report link

I tried to solve the problem using the command line, in which I change the IP of the computer if the server on which the load balancer fails. That is, server A pings server B for health, and if server B fails, server A runs a command that replaces server A's IP with Server B's IP. Then the system thinks that server A is server B, so it sends a request to it.

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

79625855

Date: 2025-05-16 19:52:59
Score: 5.5
Natty: 5
Report link

I have the exact same problem. Invalidating caches is a temp. solution. I have no idea why it's so slow. Also restarting the dart analysis server also works for a short while.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nefario

79625854

Date: 2025-05-16 19:52:59
Score: 3.5
Natty:
Report link

Solved it! I have to trim out the $_GET['q'] because that may causes spaces in the URL. Thanks everybody.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Don Sevcik

79625845

Date: 2025-05-16 19:48:58
Score: 1.5
Natty:
Report link

Use useSeoMeta() for dynamic meta tags (after fetching data), but it may not show up in SSR unless handled carefully.

For static pages like /about, use definePageMeta() to ensure meta tags are in the server-rendered HTML.

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

79625844

Date: 2025-05-16 19:48:58
Score: 1
Natty:
Report link

from moviepy.editor import VideoFileClip, AudioFileClip

# Video og lydfiler

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

audio_path = "/mnt/data/lokonosisois_simple.mp3"

# Last inn video og lyd

video_clip = VideoFileClip(video_path)

audio_clip = AudioFileClip(audio_path).subclip(0, video_clip.duration)

# Legg lyd på video

video_with_audio = video_clip.set_audio(audio_clip)

# Lagre ny video med lyd

output_path = "/mnt/data/peacock_seal_meme_with_audio.mp4"

video_with_audio.write_videofile(output_path, codec="libx264", audio_codec="aac")

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

79625838

Date: 2025-05-16 19:45:57
Score: 1.5
Natty:
Report link

Interestingly mine connects only if the USB Debugging is also enabled.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Mitulát báti

79625836

Date: 2025-05-16 19:44:57
Score: 1
Natty:
Report link

Other way to do it is using query selector querySelector to select image class and set its src attribute to the new path.

var image1 = document.querySelectorAll("img")[0];
image1.setAttribute("src","/images/image1.png")

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

79625831

Date: 2025-05-16 19:40:55
Score: 1
Natty:
Report link

A weak entity is something that cannot exist without another entity. It depends on a strong entity.

A partial key is a part of the weak entity that helps identify each dependent for the same employee.
But a partial key alone is not enough. It only works when combined with the employee’s ID.

In this case, the Date of Birth (DOB) of the dependent is used as a partial key, because usually, no two dependents of the same employee are born on the same date. And therefore DOB was the best option for selecting the partial key.

So, EmployeeID + Dependent DOB can uniquely identify each dependent.

That’s why DOB is called a partial key — it helps only when combined with EmployeeID.

So,

I. Dependent is a weak entity (bcz it depends on the Employee table)

II. DOB is a partial key (bcz it's not enough by itself, but works as a primary key with E_ID).

III. primary key = (EmployeeID + DOB) becomes the primary key for the Dependent table.


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

79625829

Date: 2025-05-16 19:39:55
Score: 1.5
Natty:
Report link

like this;

deno run -A npm:drizzle-kit

for generate;

deno run -A npm:drizzle-kit generate --name=init
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: İbrahim Ödev

79625821

Date: 2025-05-16 19:32:53
Score: 2.5
Natty:
Report link

Return a JSON object with columns (an array of column names) and rows (an array of arrays - each row is an array of strings/values):

{
  "columns": ["id", "name", "email"],
  "rows": [
    ["1", "Alice", "[email protected]"],
    ["2", "Bob", "[email protected]"]
  ]
}

Maybe like that?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Sanja

79625820

Date: 2025-05-16 19:31:53
Score: 3.5
Natty:
Report link

Thank you so much! Will definitely give this a try. And I'll try adding more crucial information like the error codes and a sample of data

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joshua Butler

79625815

Date: 2025-05-16 19:26:52
Score: 2.5
Natty:
Report link

Subdomain resolutions are a matter for the DNS, not the backend/frontend.

But you can add a *.yourdomain.com and handle the logic server-side

In that case, your question was already answered here Using subdomains in django

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

79625814

Date: 2025-05-16 19:26:52
Score: 2.5
Natty:
Report link

It seems I found my own answer. It seems there was a corrupt user file "C:\Users\UserName\AppData\Local\CompanyName\MyProgram.exe_StrongNam_hvhadjhsa77sde\ProgramVersion\user.config". I deleted this file, and the program loaded successfully on my PC.

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

79625811

Date: 2025-05-16 19:24:51
Score: 1
Natty:
Report link

I tried to use plotly and that was able to give me the result I was looking for -

import plotly.express as px
autompg_multi_index = autompg.query("yr<=80").groupby(['yr', 'origin'])['mpg'].mean().reset_index()
fig = px.bar(autompg_multi_index, x='yr', y='mpg', color='origin', barmode='group', text='mpg')
fig.update_traces(texttemplate='%{text:.2f}', textposition='outside')
fig.show()

Grouped bar chart with labels on top with 2 places after decimal point.

My solution is to abandon hvplot and migrate to plotly.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Abhi

79625801

Date: 2025-05-16 19:19:50
Score: 4
Natty: 4
Report link

Right click status bar and then select "hide progress message" at very bottom.

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

79625787

Date: 2025-05-16 19:08:47
Score: 1.5
Natty:
Report link

https://gist.github.com/lucacasonato/1a30a4fa6ef6c053a93f271675ef93fc

I haven't encountered such a problem, but you can try this.

polyfill.js you can try to download this file and import it from your worker file from your local project path and use it.

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: İbrahim Ödev

79625785

Date: 2025-05-16 19:07:46
Score: 5
Natty: 4.5
Report link

try to use this port, using jsr: https://jsr.io/@hviana/baileys

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

79625779

Date: 2025-05-16 19:03:44
Score: 4.5
Natty:
Report link

This solution here: Update after a Copy Data Activity in Azure Data Factory suggests that you will need to do a dummy select afterward to make the update work.

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

79625776

Date: 2025-05-16 19:02:44
Score: 1.5
Natty:
Report link

In Spring Boot 3 (which uses Spring Framework 6), the MultipartResolver interface has been moved to

org.springframework.web.multipart.support.MultipartResolver
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: El Hadji Ndongo

79625772

Date: 2025-05-16 19:00:43
Score: 2
Natty:
Report link

Try to close your vs code and move your folder using file explorer because it works for me

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Llanz Kenneth Luy

79625770

Date: 2025-05-16 18:59:43
Score: 2
Natty:
Report link

In my (silly) case, after 2 days of troubleshooting I found that the value of 'MinimumLevel' for logging was in CAPS, so i was using DEBUG instead of Debug. Once I changed that my app started working.

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

79625766

Date: 2025-05-16 18:56:42
Score: 1.5
Natty:
Report link

As @choroba pointed out, those aren’t entity references, but character references.

In any case, round-tripping XML/HTML/SGML content is difficult (entities, char refs, whitespace), as most parsers are geared toward access, rather than editorial preservation.

Depending on your actual goal, a different parser or parsing mode could help. Look into XML::LibXML::Reader or other tools that provide access to inner/outer XML.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @choroba
  • Low reputation (1):
Posted by: Chris Maden

79625762

Date: 2025-05-16 18:50:41
Score: 2.5
Natty:
Report link

I found the answer.

I didn't know I needed to make the change to the hosts file on my co-workers computers (not just the computer with XAMPP). I also didn't know I needed to install the certificate onto their computers as well (not just the computer with XAMPP). Once I did both of those things. my co-workers were able to access site.local with https instead of the IP address and http.

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

79625761

Date: 2025-05-16 18:49:40
Score: 1.5
Natty:
Report link
SELECT e.ItemId
      ,Subject
      ,CreatedOn
  FROM ItemBase AS e
      INNER JOIN ItemExtensionBase AS p
      ON e.ItemId = p.ItemId
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: NhaidGhaith

79625753

Date: 2025-05-16 18:40:39
Score: 1.5
Natty:
Report link

I search for this in search engine and found that, some recent articles in different websites, can give you the answer, while they are based on a specific error. So maybe you can ask the same in your favorite search engine and see the recent results about this problem... assuming that the error is the same.

"How to Fix Google Sign-In Error in Flutter with Dart"

Best

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

79625742

Date: 2025-05-16 18:32:37
Score: 1
Natty:
Report link

The most important thing to remember: exceptions must be exceptional!

There are several things missing in the answers above:

  1. Yes, it's harder to ignore exceptions (compared to ignoring error returns). That doesn't stop entirely too many people from writing code that silently "swallows" exceptions, because they were (a) "impossible", (b) inconvenient, or (c) "I'll get to that later". That doesn't mean that error returns are bad, it means that bad coding is bad! (But we knew that!)

  2. The business about "error returns can't return much info" is bogus. Most of what we return are objects. Objects can have all kinds of status information. In fact, they should -- "empty" or "zen" objects with status info is far, far better than returning 'null'.

  3. Exceptions are noisy, and (in my experience of 50 years of coding) produce more code than the equivalent error return checks. Exceptions are also very, very, specific: every little thing that goes wrong gets its own exception. (And -- bad code again -- too many people wrap a whole bunch of different possible exceptions in a single try block... precisely because otherwise the code gets super "noisy".)

    I'd rather (say) do an SQL query, get some results, and then ask "did something fail? What was it?" -- compared to (a) did I get an exception constructing the query, (b) did I get an exception binding the values to the query, (c) get an exception running the query, (d)... I forget. A well-designed object interface with an error return can tell me about any problems in one place -- instead of five.

  4. Exceptions should not be used for control flow! And yet, that kind of code keeps getting written.

  5. Many (admittedly older) library functions throw exceptions at the drop of a hat! One of the worst examples: Java's Integer.parseInt() throws an exception if its argument isn't a parseable number. Ye gods and little fishes! That's just nuts.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Charles Roth

79625715

Date: 2025-05-16 18:12:32
Score: 1
Natty:
Report link

row_number() already gives you a number.

mygenes %>% 
    group_by(gene) %>% 
    mutate(
        isoform_id = paste(gene, row_number(), sep = "_")
    )
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Æzor Æhai -him-

79625707

Date: 2025-05-16 18:06:30
Score: 2
Natty:
Report link

I think the issue is that the res_id field in the attachment model is not being updated when attachment_ids are added before the record is saved.

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

79625706

Date: 2025-05-16 18:04:29
Score: 4.5
Natty:
Report link

Thank you for your helpful response.

  1. Is it possible to feed back the CO or O output into the LUT of the same slice, and then connect the output of the LUT to the DI input of the same CARRY4? (with local routing)

  2. What is your suggestion for redesigning the TDC to avoid using feedback?

  3. I need to implement two delay lines for a Vernier TDC. I plan to use CARRY4 for both lines. As you know, the delay of the first line must be slightly longer than the second one. What do you suggest to increase the delay in the first line?
    My idea was to use internal XOR gates within the CARRY4 of the first line by creating some feedback to add extra delay. But it doesn’t seem to work, and now I’m not sure what to do.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): Is it possible to
  • Blacklisted phrase (1): What is your
  • Whitelisted phrase (-0.5): Thank you for your help
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Alireza Karimian

79625704

Date: 2025-05-16 18:02:28
Score: 2
Natty:
Report link

I wrote a zsh script for this.

It won't speed up the downloading of the logs is self, but as long as you have zsh and gcloud command, it will be very easy to run:

https://gist.github.com/TonyVlcek/1a91e44b8af44afd87f97c78f87bcc34

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

79625686

Date: 2025-05-16 17:52:25
Score: 0.5
Natty:
Report link

Disabling Next Edit Suggestions can be slightly counter-intuitive. The next time a Next Edit Suggestion appears, right-click on the button that appears to the left side of it and click on Settings to go its NES-specific settings. Look for the setting Github Copilot > Next Edit Suggestions > Enabled - this may already be unchecked even if the setting is enabled. Check the field once, then uncheck it, then close and reopen VS Code - you shouldn't see any of these particular suggestions again.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Hashim Aziz

79625680

Date: 2025-05-16 17:46:18
Score: 6 🚩
Natty:
Report link

did u figure this out??

getting similar errors even running --help its stuck until i press CTRL+C

https://pastebin.com/kTg0e1Jq

python -v -m espefuse --help

# C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\__pycache__\contextlib.cpython-313.pyc matches C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\contextlib.py
# code object from 'C:\\Users\\nebbi\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\__pycache__\\contextlib.cpython-313.pyc'
import 'contextlib' # <_frozen_importlib_external.SourceFileLoader object at 0x000001DE58F13290>
import 'msvcrt' # <class '_frozen_importlib.BuiltinImporter'>
import 'subprocess' # <_frozen_importlib_external.SourceFileLoader object at 0x000001DE58E6C650>
Traceback (most recent call last):
  File "<frozen runpy>", line 198, in _run_module_as_main
  File "<frozen runpy>", line 88, in _run_code
  File "C:\Users\nebbi\esp\v5.3.2\esp-idf\components\esptool_py\esptool\espefuse.py", line 11, in <module>
    sys.exit(subprocess.run([sys.executable, '-m', 'espefuse'] + sys.argv[1:]).returncode)
             ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 554, in run
    with Popen(*popenargs, **kwargs) as process:
         ~~~~~^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 1039, in __init__
    self._execute_child(args, executable, preexec_fn, close_fds,
    ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                        pass_fds, cwd, env,
                        ^^^^^^^^^^^^^^^^^^^
    ...<5 lines>...
                        gid, gids, uid, umask,
                        ^^^^^^^^^^^^^^^^^^^^^^
                        start_new_session, process_group)
                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 1551, in _execute_child
    hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
                       ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^
                             # no special security
                             ^^^^^^^^^^^^^^^^^^^^^
    ...<4 lines>...
                             cwd,
                             ^^^^
                             startupinfo)
                             ^^^^^^^^^^^^
KeyboardInterrupt
Traceback (most recent call last):
  File "<frozen runpy>", line 198, in _run_module_as_main
  File "<frozen runpy>", line 88, in _run_code
  File "C:\Users\nebbi\esp\v5.3.2\esp-idf\components\esptool_py\esptool\espefuse.py", line 11, in <module>
    sys.exit(subprocess.run([sys.executable, '-m', 'espefuse'] + sys.argv[1:]).returncode)
             ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 556, in run
    stdout, stderr = process.communicate(input, timeout=timeout)
                     ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 1214, in communicate
    self.wait()
    ~~~~~~~~~^^
  File "C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 1277, in wait
    return self._wait(timeout=timeout)
           ~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 1603, in _wait
    result = _winapi.WaitForSingleObject(self._handle,
                                         timeout_millis)
KeyboardInterrupt
Traceback (most recent call last):
  File "<frozen runpy>", line 198, in _run_module_as_main
  File "<frozen runpy>", line 88, in _run_code
  File "C:\Users\nebbi\esp\v5.3.2\esp-idf\components\esptool_py\esptool\espefuse.py", line 11, in <module>
    sys.exit(subprocess.run([sys.executable, '-m', 'espefuse'] + sys.argv[1:]).returncode)
             ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 556, in run
    stdout, stderr = process.communicate(input, timeout=timeout)
                     ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 1214, in communicate
    self.wait()
    ~~~~~~~~~^^
  File "C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 1277, in wait
    return self._wait(timeout=timeout)
           ~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "C:\Users\nebbi\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 1603, in _wait
    result = _winapi.WaitForSingleObject(self._handle,
                                         timeout_millis)
KeyboardInterrupt
Reasons:
  • RegEx Blacklisted phrase (3): did u figure this out
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): getting similar error
  • Contains question mark (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: lsdlsd88

79625673

Date: 2025-05-16 17:42:16
Score: 2.5
Natty:
Report link

Changing the version to 0.3.7 in plugins.sbt worked for me.

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

79625670

Date: 2025-05-16 17:40:15
Score: 1
Natty:
Report link

This sounds like you are wanting to actually fetch the menu html from another location (even if on you local machine)

To achieve this you'll have to use the javascript fetch protocol. I would try something like this:

 <script>
  // Function to load the menu
  function loadMenu() {
    fetch("<path-on-your-machine-to-the-file>")
      .then((response) => response.text())
      .then((html) => {
        document.getElementById("nav-placeholder").innerHTML = html;
      })
      .catch((error) => {
        console.error("Error loading menu:", error);
      });
  }

  // Load the menu when the page finishes loading
  window.onload = loadMenu;
</script>

This will unblock your ability to fetch the html ... but it introduces another issue. If you are loading this page, as I suspect, in a modern (chrome based) browser it will likely block this request as it does not follow the CORS policy and looks like you are attempting to load resources from another origin.

To fix this you'll likely want to setup a simple web server running locally to serve your files. But to answer this I feel is beyond the scope of the original question.

Here are some tutorials node: - https://expressjs.com/en/starter/hello-world.html python: https://ryanblunden.com/create-a-http-server-with-one-command-thanks-to-python-29fcfdcd240e

Note: I have NOT tested these myself so please proceed with caution. The tutorials look helpful and not too dangerous.

Good luck and happy hacking.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (1): I have NOT tested these myself so please
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jesse Vanderwerf

79625667

Date: 2025-05-16 17:37:14
Score: 2.5
Natty:
Report link

Solve the Problem using Follow this steps:

1. Add on build.gradle.kts(Module:app) in dependencey level:

enter image description here

2. maven(url = java.net.URI("https://jitpack.io")) Add this line on settings.gradle then sync now...

enter image description here

3. Pass your pdfPath on this function:

enter image description here

Today 16-05-2025 -- currently working on this date

Reasons:
  • Blacklisted phrase (1): enter image description here
  • No code block (0.5):
  • Low reputation (1):
Posted by: Arbab Shaikh

79625666

Date: 2025-05-16 17:36:14
Score: 0.5
Natty:
Report link

It's supported. But you're using the wrong selector.It will be powerbi-create-report.

Refer to this MSFT documentation Create an embedded report

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Kotana Sai

79625665

Date: 2025-05-16 17:36:14
Score: 2
Natty:
Report link

I just wrote one where you can extrac all tmld files from a powerbi project and convert it to json
https://pypi.org/project/tmdl-parser/
just pip install it and extract with one line.

where is the github source if you are interested in contributing (or add a stat to it 😊).

https://github.com/Atzingen/tmdl-parser

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gustavo Voltani von Atzingen

79625633

Date: 2025-05-16 17:08:08
Score: 0.5
Natty:
Report link

The element which you bound to a specific height or width, is always of that height & width, even in your given example if you see in inspect mode then you'll find the height & width to be 500px, But the issue which you are facing is happening because of the overflow behavior of the element, the overflow behavior of an element can be defined through the overflow attribute of css, by default It's set to visible, meaning even if any children/content overflows out of your container It'll still be visible as like your facing, to fix it you can set the overflow attribute of the container to hidden, It'll make sure that any content, that gets out of container is not shown, For more information about overflow attribute you might visit this

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

79625627

Date: 2025-05-16 17:04:06
Score: 1
Natty:
Report link

I'm working on something similar and found that combining GEVENT_MAX_BLOCKING_TIME with a custom greenlet.settrace() can help, but the trick is to log only when the block duration exceeds your threshold. You can store the last switch time and compare it inside the trace function to conditionally print the stack trace. Just be sure to set up the trace before starting the hub and apply monkey patching early if you're using it.

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

79625604

Date: 2025-05-16 16:42:01
Score: 2.5
Natty:
Report link

quick update to @Lilith 's answer. Due to a Matplotlib update, the figure should now instead be started with

fig = plt.figure()
ax=fig.add_subplot(projection='3d')
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @Lilith
  • Low reputation (1):
Posted by: Austin Gerlt

79625599

Date: 2025-05-16 16:36:59
Score: 2.5
Natty:
Report link

It turns out that there were issues in the Soap server itself. Once it was fixed, my original version of the code worked just fine with TLS1.2 enabled. The code I pasted in my original post about explicitly setting TLS 1.2 was not needed.

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

79625594

Date: 2025-05-16 16:32:59
Score: 1.5
Natty:
Report link
select A.Street  
from ADRC a
where LENGTH(REGEXP_REPLACE(LTRIM(RTRIM(A.Street)),'[a-zA-Z0-9\-\''\, ]',''))>0
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DRodriguez

79625593

Date: 2025-05-16 16:32:59
Score: 0.5
Natty:
Report link

@melaka's answer works great, even in Swift 6 / iOS 18 / 2025 (yes, rapidly moving platform). I think their answer got downvoted because the sample code is a little undercooked, so here's a more complete example.

In this example, it's loading a local resource and looping, but should work with a remote resource, remove the looper, etc.

import SwiftUI
import AVKit

struct VideoPlayer: View {
    @State private var player: AVQueuePlayer?
    @State private var playerLooper: AVPlayerLooper?
    
    public var resource: String
    public var ext: String

    var body: some View {
        VideoPlayer(player: player)
            .onAppear {
                    DispatchQueue.global(qos: .default).async {
                        let asset = AVURLAsset(url: Bundle.main.url(forResource: resource, withExtension: ext)!)
                        let item = AVPlayerItem(asset: asset)
                        self.player = AVQueuePlayer(playerItem: item)
                        self.playerLooper = AVPlayerLooper(player: player, templateItem: item)
                        player.play()
                    }
            }
    }
}
Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @melaka's
  • High reputation (-1):
Posted by: Eric_WVGG

79625589

Date: 2025-05-16 16:29:58
Score: 2.5
Natty:
Report link

I surely believe that there is a problem with your image you want to upload, because of iOS file handling quirk.

You say "according to iOS Photos App" - are they really jpg files? As far as I know - default is HEIC/HEIF for photos, which will not be recognized by your server. This can cause the error that in your dump you see no values for the "type" key of ["image_file"] array.

On your iPhone device under "Settings" you should check the "Camera" menu and inside the "Formats" submenu. If the "Most Compatible" is ticked, then you save JPEG-s. If "High Efficiency", then it is HEIC/HEIF format. You should try saving a real jpeg file to your photos app, then try to upload that.

Can you check if this solved your problem? If this is not the issue, we can go on further to solve your problem.

Reasons:
  • RegEx Blacklisted phrase (1.5): solved your problem?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Mark

79625587

Date: 2025-05-16 16:28:57
Score: 1.5
Natty:
Report link

Update your API version: Use v3.0 or higher of the Facebook Graph API

Use the correct endpoint: For status updates, you should now use:

/me/feed to post status updates

/{post-id} to read specific posts

Check your API calls: Ensure you're not explicitly requesting v2.4 or lower

Example Correct Implementation Instead of:

GET /v2.4/{status-id} Use:

GET /v10.0/{post-id}

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

79625586

Date: 2025-05-16 16:28:57
Score: 0.5
Natty:
Report link

Yes, Perl variables are backed by internal data structures (called SVs) that include a flag to indicate whether a value is defined. So you're right — Perl keeps track of whether a variable is defined or not. When you use an undefined variable, Perl tries to handle it gracefully: in numeric context it becomes 0, and in string context it becomes an empty string "". But this can easily hide bugs if you're not careful. To catch such mistakes, always use use strict; use warnings; and check with defined($var) when needed.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sakura Yamamoto

79625577

Date: 2025-05-16 16:23:56
Score: 1
Natty:
Report link

nansahu@vault-instance:/vault_demo$ vault server -config=vault_config.hcl

==> Vault server configuration:

Api Address: http://localhost:8200

Cgo:

disabled

Cluster Address: https://localhost:8201

Go Version: go1.17.11

Listener 1: tcp (addr: "0.0.0.0:8200", cluster address: "0.0.0.0:8201", max_request_duration: "1m30s", ma

x_request_size: "33554432", tls: "disabled")

Log Level: info

Mlock: supported: true, enabled: false

Recovery Mode:

false

Storage:

file

Version: Vault v1.11.0, built 2022-06-17T15:48:44Z

Version Sha: ea296ccf58507b25051bc0597379c467046eb2f1

==> Vault server started! Log data will stream in below:

2022-06-26T18:54:52.530Z [INFO] proxy environment: http_proxy="" https_proxy="" no_proxy=""

2022-06-26T18:54:52.530Z [INFO] core: Initializing version history cache for core

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Oscar Ramírez

79625572

Date: 2025-05-16 16:19:55
Score: 2
Natty:
Report link

Thanks, This is a bug and has been fixed in 0.46.1. So please update your package.

Additionally, please note your example will not "work". You won't see anything and it immediately ends 😬

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: ultrafunkamsterdam

79625561

Date: 2025-05-16 16:09:52
Score: 2
Natty:
Report link
let
    StartDate = DateTime.Date(List.Min(tb_ModelFact[Date])),
    EndDate = DateTime.Date(List.Max(tb_ModelFact[Date])),
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Daniel

79625559

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

echo -e __cplusplus | gcc -x c++ -E - | tail -1

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

79625554

Date: 2025-05-16 16:08:51
Score: 0.5
Natty:
Report link

Upon further investigation, it seems that AWS has added a resendSignUpCode function to their “aws-amplify/auth” package that doesn't require a logged-in user to work. The implementation is as follows:

await resendSignUpCode({ username: email });

It works perfectly for me like this

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

79625548

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

In IntelliJ

Settings > Version Control > Commit > (uncheck) Use non-modal commit interface

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Bradley D

79625543

Date: 2025-05-16 16:00:49
Score: 0.5
Natty:
Report link

This is a perfect scenario to introduce a Custom Pipe.

https://angular.dev/guide/templates/pipes

Pipes are useful when you need to call a function from a template. The main advantage is Pipes are memoized, meaning they only recalculate when the input value changes.

Otherwise, it's likely your function will be called every change-detection cycle. Gross!

Just import the pipe into multiple different components to reuse the logic.

Reasons:
  • No code block (0.5):
Posted by: RyanSand20

79625542

Date: 2025-05-16 15:59:49
Score: 1
Natty:
Report link
Use this 

set PYTHONIOENCODING=utf-8
python -c "print(b'\xc3\x96'.decode('utf-8'))" > test.txt
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mani

79625525

Date: 2025-05-16 15:49:46
Score: 3
Natty:
Report link

Is generally used em or px for font sizes. Percentage get the size relative to the window width.

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

79625524

Date: 2025-05-16 15:48:46
Score: 1
Natty:
Report link

Trying to keep browser window open with

chrome_options.add_experimental_option("detach", True)

and makes Chrome jump to a blank page with data: in the URL bar

Tried numerous approaches from Gemini and ChatGPT and nothing works. So thought I'd try you humans?

Python 3.13 and Selenium 4.32, Google Chrome 136.0.7103.93 on MacOS 15.3.2

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kevin Boyd

79625522

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

Yes, you can look up regions with the Google Maps API, but you’ll need a couple of steps to actually grab and draw the boundaries. The Region Lookup API could somehow help you in the process of displaying the boundary of a region as it will return a matched place ID in its response, which you could then use to fetch the boundary data.

What you need to do is use the Data-Driven Styling for Boundaries of Google Maps JavaScript API to draw your polygon. You may view this sample from the documentation to have an idea of how its implemented programmatically. There is also an interactive demo on the documentation where you can try searching for regions live.

For more details on how to make it fully dynamic (i.e. applying Text Search (New) or Place Autocomplete), kindly refer to this documentation as it shows how to stitch all the API calls together so your users can search anywhere and see the boundaries.

NOTE: In the map styles, just ensure to properly enable the feature layers you require to avoid errors.

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

79625518

Date: 2025-05-16 15:42:44
Score: 1
Natty:
Report link

The correct solution would be to use an list of "cars" objects and use one of their public properties (Name/Title)

Of course the car list needs to be marked public

<Picker x:Name="Picker"
    Title="Select a Car"
    ItemsSource="{Binding cars}"
    ItemDisplayBinding="{Binding Name}"
    Grid.Column="0"/>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andru

79625516

Date: 2025-05-16 15:40:44
Score: 1
Natty:
Report link

I solved the issue. Apparently, when I installed react-scripts a piece of the file was not reading. I had to delete node_modules, uninstall all node packages and then reinstall them.

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: Herbert Brown

79625515

Date: 2025-05-16 15:39:43
Score: 4.5
Natty:
Report link

Thanks to @rozsazoltan for your pointers. I was able to solve my problem. Turns out my vite installation was corrupt and incomplete. I setup a new project and moved all my existing codebase in the new project and it is all good now.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @rozsazoltan
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mukul

79625512

Date: 2025-05-16 15:37:43
Score: 1
Natty:
Report link

you can also use csv-for-you npm package

const csv=require("csv-for-you");
function readFile async(filePath){
  const lines = await csv.parse(filePath);
}
readFile("/path/to/your/file.csv");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Michael Scharff

79625506

Date: 2025-05-16 15:35:42
Score: 0.5
Natty:
Report link

When you verify a certificate using cert.Verify(), it relies on Windows' system-level certificate chain (X509Chain) to perform revocation checks (CRL or OCSP). This check tries to download the Certificate Revocation List (CRL) from the internet.

However, if your app is running behind a proxy (such as inside a Docker container), the Windows API performing the revocation check does not automatically use the proxy settings configured in your app. As a result, it cannot reach the revocation server, causing the error "revocation server is offline."

To fix this, you need to configure the proxy for Windows HTTP services inside your Windows Docker container using the following command:

netsh winhttp set proxy <proxy-address:port>

This command sets the system-wide proxy for WinHTTP, which is used by Windows API calls like certificate revocation checks. Once this is configured, the revocation checks should work correctly behind the proxy.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: atikurajib

79625499

Date: 2025-05-16 15:31:41
Score: 2.5
Natty:
Report link

For me this was also happening exactly as described (including the comment) but strangely enough the built version of the application no longer had this issue. You can try to run the built version locally to confirm if it's the same for you.

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

79625496

Date: 2025-05-16 15:29:40
Score: 0.5
Natty:
Report link

Just use a special case for if mynumber is -0 when rounded, like this:

if rounded == -0: rounded = 0
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Starship

79625493

Date: 2025-05-16 15:28:39
Score: 1.5
Natty:
Report link

Non of this work for me.

But with

--all-pods=true

it works without any scripting

kubectl logs daemonsets/fluent-bit --all-containers=true --all-pods=true

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

79625486

Date: 2025-05-16 15:22:38
Score: 3
Natty:
Report link

Turn out this issue is answered here: Stripe , Theme isn't set to use Theme.AppCompat or Theme.MaterialComponents

and it worked; I just needed to rewrite both style.xml

Reasons:
  • Whitelisted phrase (-1): it worked
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: julien belinga

79625478

Date: 2025-05-16 15:19:37
Score: 2.5
Natty:
Report link

actually you need to save the file first in order for the swModel.GetPathName to return something, then for the sheetmetal options, you just need to pass the Bitmask value (refer to the API documentation)

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

79625472

Date: 2025-05-16 15:16:36
Score: 1
Natty:
Report link

In your code, you have self.mod_Indication = QtSql.QSqlQueryModel. You need to add parenthesis to make it work correctly, like self.mod_Indication = QtSql.QSqlQueryModel().

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

79625466

Date: 2025-05-16 15:13:35
Score: 3.5
Natty:
Report link

Please try this service:

https://pasqualefrega.antiblog.com/link2mail

It is possible to get an HTTP link that composes an email.

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Peter

79625461

Date: 2025-05-16 15:08:33
Score: 1.5
Natty:
Report link

I think you must create a folder named static_files in C:\Ansh\ecom\django_project_boilerplate.

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

79625460

Date: 2025-05-16 15:07:33
Score: 1.5
Natty:
Report link
  1. Enter fullscreen (by clicking on the green icon)
  2. Move the toolbar away from the top-left corner
  3. Exit fullscreen

enter image description here

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

79625457

Date: 2025-05-16 15:06:32
Score: 2.5
Natty:
Report link

You can make it reference a variable for sure !

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

79625453

Date: 2025-05-16 15:02:30
Score: 7 🚩
Natty: 6.5
Report link

Can you please share your script, to show how do you implement the Numba function which calls the sorted_eigenvalues function provided by Jérôme.
And have you impelement the parallel part?

Reasons:
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (2.5): Can you please share your
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you please share you
  • Low reputation (1):
Posted by: user30557509

79625452

Date: 2025-05-16 15:02:30
Score: 1
Natty:
Report link

Check where window is used in your code or third-party libraries and guard it so it's only accessed on the client side.

//Wrong: causes error during build
const width = window.innerWidth;

//Right: guard with typeof check
if (typeof window !== 'undefined') {
  const width = window.innerWidth;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Niklas

79625442

Date: 2025-05-16 14:58:29
Score: 2
Natty:
Report link

Found the issue after a lot of fiddling.

The user did not have the correct permissions to perform a SELECT on the profiles table. Now the permissions work as intended.

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

79625432

Date: 2025-05-16 14:55:28
Score: 2
Natty:
Report link

I was able to circumvent this issue by adding the necessary cell information to a string, setting that string to a DataObject using DataObject.SetText, and the DataObject.PutInClipboard.

This avoids this issue for my macro, but doesn't actually solve the issue itself. I'll change the solution if someone is able to post a fix for the original problem.

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

79625429

Date: 2025-05-16 14:54:27
Score: 12
Natty: 7.5
Report link

I am having this same issue and this question is a year old now. were you ever able to figure it out? Any help is appreciated. i cant find it anywhere else. Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help is appreciated
  • RegEx Blacklisted phrase (3): were you ever
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chrissy

79625426

Date: 2025-05-16 14:53:26
Score: 0.5
Natty:
Report link
# dags/mongo_to_gcs_dag.py
from airflow import DAG
from airflow.operators.python import PythonOperator
from datetime import datetime, timedelta

# import your helper from dag_utils
from dag_utils.mongo_to_gcs import stream_mongo_to_gcs

default_args = {
    "owner": "data-eng",
    "start_date": datetime(2025,5,20),
    "retries": 1,
    "retry_delay": timedelta(minutes=5),
}

with DAG(
    dag_id="mongo_to_gcs_stream",
    default_args=default_args,
    schedule_interval="@daily",
    catchup=False,
) as dag:

    stream_task = PythonOperator(
        task_id="stream_mongo_to_gcs",
        python_callable=stream_mongo_to_gcs,
        op_kwargs={
            "mongo_uri":        "{{ var.value.mongo_uri }}",
            "mongo_db":         "pricing",
            "mongo_collection": "raw_prices",
            "gcs_bucket":       "{{ var.value.gcs_bucket }}",
            "gcs_path":         "ingestion/mongo",
        },
    )

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

79625417

Date: 2025-05-16 14:50:25
Score: 0.5
Natty:
Report link

I found this an additional context:

Scratch files and buffers are temporary files but they will persist when you restart IntelliJ IDEA even if you invalidate your caches. However, they will be removed if you restore your default settings or reinstall IntelliJ IDEA.

https://blog.jetbrains.com/idea/2020/11/scratch-files-and-scratch-buffers/

Hope this helps.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ubeydullah Keleş

79625416

Date: 2025-05-16 14:49:25
Score: 0.5
Natty:
Report link

On a WINDOS 11 machine, in cmd terminal I have the new line added (by cmd ?) and if uous use git linux bash terminal on WINDOWS 11 there is no new line ! So the new line is added by cmd and in this case if you do not want an empty line, you have to print a text like

  print("End of program";end="")

Have a nice day !

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: art

79625414

Date: 2025-05-16 14:48:25
Score: 1.5
Natty:
Report link

I will say that LOOKUP could be the best choice. While MAX(IF(... processes all the columns of the sheet and recalculates every time (not convenient in a large workbook) and use a brute-force algorithm, LOOKUP is an internally optimize function and it will also ignore the errors (in this case generated by 1/(LEN(I:I)>0),ROW(I:I) when the cells contain "" ).

Be careful about which version of Excel are you using --> Read chapter 'Improve lookup calculation time' at https://learn.microsoft.com/en-us/office/vba/excel/concepts/excel-performance/excel-tips-for-optimizing-performance-obstructions?source=recommendations

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Irene Veglio

79625402

Date: 2025-05-16 14:39:22
Score: 1.5
Natty:
Report link

I am pretty sure it's not possible. I've also wanted to do something like you but there just seems to be no solution so I'd suggest you use different windows for each ui element and make those windows borderless so it wouldn't be drag-able and wouldn't clutter up the screen. You could also use that transparent bg feature for elements that are close to each other so you wouldn't have to create hundreds of windows for little buttons. I might be a little late for you but maybe some other poor soul could get some use out of this.

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

79625398

Date: 2025-05-16 14:36:21
Score: 1
Natty:
Report link

The issue was simple. The code ordered by the timestamp, but the timestamp only had seconds of resolution.

When generating the timestamps, switching from the custom format string to isoformat:

def get_utc_timestamp_now() -> str:
    # timestamp in a format where alphabetical order is also chronological order
    return datetime.datetime.now(datetime.timezone.utc).isoformat()
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Marc

79625361

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

A solution which can be at the end of python script :

print( "My Last Print", end="" )
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: art

79625360

Date: 2025-05-16 14:18:16
Score: 2
Natty:
Report link

The Mri2922 was coming from an IBM.Data.DB2.iSeries.dll file that was part of the project. Not sure exactly how/why things were happening, but it led me to try and think of how to change how the program was working with the DLL. This app was older and was not making use of NuGet. So instead of relying on the IBM DLL that was part of the build server installation, I set it up to pull from NuGet each build. Doing the build that way resolved my issue.

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

79625357

Date: 2025-05-16 14:17:16
Score: 2
Natty:
Report link

The correct solution seems to be to install gcc again. brew reinstall gcc somehow does not do the trick, but brew uninstall gcc, followed by brew install gcc does. I assume this runs the mkheader script mentioned in the comment by this user as well.

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