79576144

Date: 2025-04-15 22:54:49
Score: 1.5
Natty:
Report link

Like @cafce25 said RUSTFLAGS='--cfg getrandom_backend="wasm_js"' trunk serve in the CLI works.

But, if you're tired of doing it the whole time and just want to use trunk serve (and also make it easier for other people working on your project), I'd recommend to add a cargo config.

Create a .cargo directory with config.toml inside with:

[target.wasm32-unknown-unknown]
rustflags = ["--cfg", "getrandom_backend=\"wasm_js\""]
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @cafce25
  • Low reputation (1):
Posted by: Shader

79576130

Date: 2025-04-15 22:44:46
Score: 3.5
Natty:
Report link

Just checking in my analytics and privacy systems folder and I came across this piece in the given file format, just curious as to my timing is definitely not in accordance

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

79576129

Date: 2025-04-15 22:43:46
Score: 1
Natty:
Report link

from pydub import AudioSegment

from scipy.io import wavfile

import numpy as np

# Simulate the creation of an "anfotonio" style gospel ballad audio (as placeholder)

# Generate a simple sine wave as placeholder content

duration_seconds = 5 # short placeholder audio

sampling_rate = 44100

frequency = 440 # A4 note

t = np.linspace(0, duration_seconds, int(sampling_rate * duration_seconds), endpoint=False)

audio_wave = 0.5 * np.sin(2 * np.pi * frequency * t)

audio_wave = (audio_wave * 32767).astype(np.int16) # Convert to 16-bit PCM

# Save as WAV file

output_path = "/mnt/data/sandy_bob_anfotonio_gospel_ballad.wav"

wavfile.write(output_path, sampling_rate, audio_wave

)

output_path

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

79576115

Date: 2025-04-15 22:35:43
Score: 1
Natty:
Report link

In my case, the workaround was to change the interpreter version from 3.12 to 3.11 and the moviepy version to

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

79576114

Date: 2025-04-15 22:34:43
Score: 1
Natty:
Report link

The best answer I have come up with is to use named semaphores in pairs. The second one of the pair is used to count processes waiting on the first. You post to the second just before waiting on the first, incrementing the count. When you are done, you do a wait on the second semaphore just before doing the post to the first, releasing it. The wait on the counting semaphore will never actually wait, because the first thing that thread did was to increment it. Instead it just decrements the count of threads using the first semaphore. Any monitoring process can open the counting semaphore and use getvalue to check the count.

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

79576111

Date: 2025-04-15 22:32:42
Score: 1.5
Natty:
Report link

This is the solution that I found:
(If you have an OS build in solution please let me know)

  1. Get file2clip utility
    Download from github.com/rostok/file2clip or compile it yourself (C#).

  2. Add to yazi.toml config

[[manager.prepend_keymap]]
on = "y"
run = [ "shell --block -- file2clip %*", "yank" ]

How to use:

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: rubStackOverflow

79576109

Date: 2025-04-15 22:31:42
Score: 2
Natty:
Report link

Assuming your SCP is in raw JSON then ${PARTITION} has no meaning — are you trying to use the CloudFormation AWS::Partition pseudo parameter? Try hardcoding aws instead.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Nev Stokes

79576107

Date: 2025-04-15 22:28:41
Score: 0.5
Natty:
Report link

Avalanche recently renamed the option --staking-enabled to a more general one --sybil-protection-enabledUnfortunately, they did not mention the renaming in the new documentation.

So, the correct options are ``--network-id=local --snow-sample-size=1 --sybil-protection enabled=false`

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

79576106

Date: 2025-04-15 22:27:40
Score: 3
Natty:
Report link

An answer has been found for the causes by @kgoebber and posted at https://github.com/Unidata/MetPy/issues/3790#issuecomment-2807622049.

The cause for both the unreasonably large negative and positive CAPE values were from the mixing-ratio calculation at levels above at least 10 hPa levels, where normal sounding would not be able to reach. By limiting the calculations to levels below 100 hPa (kgoebber) or 50 hPa (my test), the unreasonable values disappear.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @kgoebber
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Xingang Fan

79576101

Date: 2025-04-15 22:19:39
Score: 2
Natty:
Report link

According to the godartsass doc:

Note: The v2.x.x of this project targets the v2 of the Dart Sass Embedded protocol with the sass exexutable in releases that can be downloaeded here. For v1 you need to import github.com/bep/godartsass and not github.com/bep/godartsass/v2.

You have to install dart-sass standalone binary instead of dart-sass-embedded. It's also important to not have JavaScript SASS (installed with e.g. npm i -g sass) version in a $PATH - you will also get the same error, because sass --embedded is not available in this version. You should be able to pass dart-sass binary location in godartsass.Options.

I was just struggling with this issue and finally realized what caused the problem.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): also get the same error
  • Low reputation (0.5):
Posted by: MarcinC

79576100

Date: 2025-04-15 22:19:39
Score: 1
Natty:
Report link

I think this should achieve your goal

let some_on_click_handler = Callback::new(move |evt: FretClickEvent| {
    if let Some(node) = error_text_node_ref.get() {
      // access the current style
      let style = window().get_computed_style(&node).unwrap().unwrap();
      let animation_name: String = style.get_property_value("animation-name").unwrap();

      // [...] do something with this information

      // change the style
      node.style("animation-name: shake");
    }

    // some other logic for setting error_text..
});

First, you get all the current styling of an element using Window's get_computed_style() (Rust binding by web_sys of the JS function) and then use get_property_value() to access a specific CSS style value.

Then, to set the style you use the style() which you found yourself. You can e.g. pass it a dynamically created String.


instead I want to access the style and change one property on it

What you're asking for here is mutable reference to a specific style, and this is impossible as far as I know.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shader

79576096

Date: 2025-04-15 22:16:38
Score: 0.5
Natty:
Report link

Spark does not support creating a persistent view using a DataFrame, this is not limited to PySpark.

This is because a persistent view is backed by a "view text", essentially a cleaned SQL query. DataFrames, OTOH, only produces an in-memory query plan without a SQL query in text format, and therefore cannot back a persistent view.

With Spark Connect, now we have a stable API to represent query plans. It would be an interesting project to support this feature by persisting the serialized query plan instead of SQL query text.

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

79576091

Date: 2025-04-15 22:05:36
Score: 2
Natty:
Report link

For issues pertaining to "Got permission denied while trying to connect to the Docker daemon socket at..." I had that resolved by adding myself to the docker group:

sudo usermod -a -G docker $USER

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

79576090

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

It seems that you might experience the one of the following scenario:

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

79576088

Date: 2025-04-15 22:03:34
Score: 4
Natty:
Report link

Used Batch Interceptor and it works.

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

79576074

Date: 2025-04-15 21:56:32
Score: 3
Natty:
Report link

bootstrap node

header 1 header 2
header node
headed node
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: jawad swati

79576072

Date: 2025-04-15 21:56:32
Score: 0.5
Natty:
Report link

This library "BlackSheep" is helpful for converting ObjectList to Excel file.

This NuGet package simplifies the process of exporting data from your .NET applications to Excel files. It allows you to convert a list of objects directly into an Excel spreadsheet, saving you the hassle of manual file creation and formatting.
https://www.nuget.org/packages/BlackSheep

Reasons:
  • No code block (0.5):
Posted by: Nihar Sarkar

79576071

Date: 2025-04-15 21:55:32
Score: 0.5
Natty:
Report link

I had the same error where setting backButtonHidden on the first page lead to a freeze when swiping back from a second page. I found two things that fixed it:

  1. Switching title to inline mode

  2. Root cause for me was I set .becomeFirstResponder() on a textView in the second page and moving this to be more tightly tailored to the UITextView's lifecycle lead to fixing the issue/

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

79576067

Date: 2025-04-15 21:52:31
Score: 3
Natty:
Report link

It looks like I can do it this way:

PERMISSIONS=$(stat -c %a $FILE)
.......
chmod $PERMISSIONS $FILE

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

79576064

Date: 2025-04-15 21:49:30
Score: 0.5
Natty:
Report link

I literally just ran into this . . .

My issue was that I had created a custom build (for reasons), but I had spaces in my build configuration. I had "Release for Andy". This gets buried in your bin folder. Looks like msbuild or xamarin didn't like that. Changing the name of the build configuration (create a new one as a rename doesn't work), to one without spaces solved it for me.

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

79576061

Date: 2025-04-15 21:44:29
Score: 6
Natty: 8
Report link

This is exactly what I needed !! However my code stops after one copy, so it works for Copy 01 but than it exits. Do you know what this could be?

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user15079730

79576059

Date: 2025-04-15 21:43:28
Score: 0.5
Natty:
Report link

You probably did not set your api key.
You can confirm using the following:

import getpass
import os

if "OPENAI_API_KEY" not in os.environ:
    os.environ["OPENAI_API_KEY"] = getpass.getpass("Enter your OpenAI API key: ")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adeva1

79576056

Date: 2025-04-15 21:39:27
Score: 2.5
Natty:
Report link

You can try right-clicking on the "incompatible" project in the Solution Explorer and selecting "Reload Project".

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

79576052

Date: 2025-04-15 21:35:26
Score: 1
Natty:
Report link

Adding this in case anyone is looking to use the filter function to filter out not visible cells without using a helper column.
You can combine ROWS, SEQUENCE and INDIRECT to force excel to feed an array into and out of SUBTOTAL (or whatever other function you like). In my opinion this is easiest in a LET function, but up to your use case. Example below.

Working backwards, [YourArray] is passed to ROWS to grab how many rows are in your array. This is then used by SEQUENCE to make an array of row numbers, using 1 column, 1 step and start position of 1. This is then combined with the column letter (in the example below this is E) into an address string for each row number passed from SEQUENCE, creating an array of strings {"E1";"E2";"E3";....}.
This array is passed to INDIRECT in A1 format which outputs as an array of cell address' {E1;E2;E3;....}.
SUBTOTAL then takes the array of address' and evaluates each individual address before returning it to the array. If E1 & E3 are visible and E2, the array will look like this {1;0;1;...}.
It then passes the array to FILTER as a TRUE FALSE for each cell in the column.

Example:
=FILTER([YourArray],SUBTOTAL(3,INDIRECT("E"&SEQUENCE(ROWS([YourArray]),1,1,1),TRUE)),"")

Note: This formula checks for visible rows.

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

79576042

Date: 2025-04-15 21:26:24
Score: 0.5
Natty:
Report link

As mentioned already by Mikael Eliasson, once you have run your query, you can left click on a data cell and do CTRL+A, to select all your data (except not the headers),

then hold down CTRL+SHIFT and press 'C', this copies all your data including Headers,

then go into Excel and paste your data into a new Excel document. Job done.

Or you can right-click on your data to show the pop up menu, then "Select All", then "Copy with Headers". Then paste into an new Excel document.

enter image description here

Added this as I feel more precedence should be given to his last comment (I initially missed it and found this answer by trial and error myself)

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

79576037

Date: 2025-04-15 21:19:22
Score: 2.5
Natty:
Report link

Using @mike-m's suggestion correctly, i.e.:

On the `<ToggleButton>` itself, you would use `style="@android:style/Widget.Button.Toggle"`, not the theme.

got me going. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @mike-m's
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: mmo

79576029

Date: 2025-04-15 21:14:20
Score: 2.5
Natty:
Report link

We had the same issue and it turned out someone had added a capacitor plugin for firebase. Not exactly sure which one, I think "FirebaseAuthentication". This plugin was not used when we built it for web and android which is why it worked, but for some reason it picked it up during the ios build and it broke the app.

Reasons:
  • Blacklisted phrase (1): This plugin
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ionic-helper-123

79576027

Date: 2025-04-15 21:11:20
Score: 3.5
Natty:
Report link

If you select text from the first character onwards, the number of characters you select will be visible next to your line/col number. Awfully hacky!

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: bobbytables

79576021

Date: 2025-04-15 21:04:18
Score: 0.5
Natty:
Report link

Extending jamessan answer

Unquote next quoted string on line that's enclosed in double quotes

For visual-block selection, patternwise rather than linewise, double to single

For visual-block selection, patternwise rather than linewise, removing

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

79576018

Date: 2025-04-15 21:01:17
Score: 1
Natty:
Report link

I recommend reading Vladimir Khorikov's excellent post: https://enterprisecraftsmanship.com/posts/database-versioning-best-practices/.

The main choice is between state based and migration based.

I'd recommend Database Projects (for MSSQL) aka dacpac for state based and DBUp for migration based.

If you have money to spend look into https://www.red-gate.com/products/flyway/

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

79576017

Date: 2025-04-15 21:01:17
Score: 1.5
Natty:
Report link

You can't use parenthesis in your strings do it like this:

console.log("This is how you do it --> \'")

You need to use \' instead of '.

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

79576011

Date: 2025-04-15 20:49:13
Score: 1.5
Natty:
Report link

You can try using item.field to access the property field of item

const item = {'field': 2};
console.log(`${item.field}`)

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

79576010

Date: 2025-04-15 20:48:13
Score: 1.5
Natty:
Report link

curl http://localhost:3000/hello?id=123

Proper short-hand way to use curl with query params is to encapsulate url in quotes. Try:

curl "http://localhost:3000/hello?id=123"

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

79575994

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

I ran into the same exception (but not with Quarkus). For me, it was caused by 2 different versions of log4j on the classpath... make sure you only have one version in your dependency hierarchy.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: N. M. Folts

79575993

Date: 2025-04-15 20:36:00
Score: 7 🚩
Natty: 5
Report link

looking for the same thing. any luck?

Reasons:
  • Blacklisted phrase (1.5): any luck
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Brandon Austin

79575988

Date: 2025-04-15 20:30:59
Score: 3.5
Natty:
Report link

Azure AI Search now supports metrics facets and hierarchical facets. Please see more here: https://learn.microsoft.com/en-us/azure/search/search-faceted-navigation-examples#facet-hierarchy-example

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

79575987

Date: 2025-04-15 20:29:58
Score: 3.5
Natty:
Report link

var randomVariable = Math.floor(Math.random() * (6-1) + 1);

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: FRANCISCO IGNACIO IRARRZABAL H

79575984

Date: 2025-04-15 20:28:58
Score: 1
Natty:
Report link

So I found a workaround. I realised that the GIF url context variable was not being updated.

So in the context hook I extracted the array of urls from the backend and I added that in as another context variable.

Then I used a currentIndex variable that is I used in the context to move to the next question to access the elements in my urls array.

That way I just extracted the urls and put them in an array and then passed that through context and looped through the array to extract the relevant gif url

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

79575980

Date: 2025-04-15 20:23:49
Score: 0.5
Natty:
Report link

It should be the following query-generating code.

sender = aliased(User)
recipient = aliased(User)
query = (
    select(Message)
    .join(sender, Message.id_from == sender.id)
    .join(recipient, Message.id_to == recipient.id)
    .options(contains_eager(Message.sender.of_type(sender)),
             contains_eager(Message.recipient.of_type(recipient)))
    .order_by(direction(sender.id))
)

Found it here

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

79575979

Date: 2025-04-15 20:22:45
Score: 5
Natty: 5.5
Report link

I had a similar problem. For me, I had to split my dataset, otherwise when I went to change my date data into a YMD format, it turned everything into NA's. Is there an upper limit on the number of rows/entries?

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

79575973

Date: 2025-04-15 20:15:42
Score: 10.5 🚩
Natty: 5
Report link

Did you find a solution? Because i'm having the same problem... I mean, i can see the home page but everytime i have to comunicate with a controller and going to another url, i have a 500, and no more information, no logs, no laravel log... i don't know what else to do. I tried making an example controller with a simply method for try in the IONOS host, but it didn't work. Everything works locally but not when i try in IONOS. I tried modifying the .htaccess as your answers say but it didn't do anything :(

Reasons:
  • Blacklisted phrase (1): i'm having the same problem
  • Blacklisted phrase (1): :(
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): i'm having the same problem
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: Alvaro

79575969

Date: 2025-04-15 20:13:41
Score: 1.5
Natty:
Report link

I had the same issue and deleting Debug/Release did not help but deleting the obj folder resolved my issue :)

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Eru

79575966

Date: 2025-04-15 20:13:41
Score: 2.5
Natty:
Report link

In the most recent version of scikit-learn (v1.4) they added support for missing values to RandomForestClassifier when the criterion is gini (default).

Source: https://scikit-learn.org/dev/whats_new/v1.4.html#id7

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

79575965

Date: 2025-04-15 20:13:41
Score: 2
Natty:
Report link

In my response to a similar question, I mentioned that you can do this using surveydown. Since you specifically asked "Do you know any similar projects that would be a good start", I feel it's appropriate to point you to surveydown as a possible solution. I am the surveydown maintainer, and some of my responses are getting flagged as promotion, so I'm trying to be careful here and make sure I am actually answering your question and not be perceived as simply promoting the project. In this case, I think it's fair to suggest surveydown as a possible solution since that is exactly what was asked.

In any case, to be even more specific, here's any example of a survey where the questions gets displayed based on responses to other questions. I'm not sure if this kind of question dependency is what you want but it's an example.

To implement this. You would need a survey.qmd and app.R file. First, start with a generic template using sd_create_survey(). Then edit the files.

In the survey.qmd file, you could have something like this:

---
format: html
echo: false
warning: false
---

```{r}
library(surveydown)
```

::: {#welcome .sd-page}

# Sushi Survey

```{r}
sd_question(
  type = "mc_multiple",  # For multiple selection
  id = "sushi_rating",
  label = "On a scale from 1-3, how much do you love sushi?",
  option = c(
    "1" = "1",
    "2" = "2", 
    "3" = "3"
  )
)

# Question that shows conditionally if user selected "1"
sd_question(
  type = "mc",
  id = "really_question",
  label = "Really?",
  option = c(
    "Yes" = "yes",
    "No" = "no"
  )
)

# Question that shows conditionally if user selected "2"
sd_question(
  type = "mc",
  id = "test_question",
  label = "Test",
  option = c(
    "Yes" = "yes",
    "No" = "no"
  )
)

sd_next()
```

:::

::: {#end .sd-page}

# Thank you!

Thank you for completing the survey.

:::

Then in your app.R file, something like this:

library(surveydown)

# Connect to database or use preview mode
db <- sd_db_connect(ignore = TRUE)

server <- function(input, output, session) {
  
  # Conditionally show questions based on sushi rating
  sd_show_if(
    # Show "really_question" if user selected "1"
    "1" %in% input$sushi_rating ~ "really_question",
    
    # Show "test_question" if user selected "2"
    "2" %in% input$sushi_rating ~ "test_question"
  )
  
  # Main server function
  sd_server(db = db)
}

shiny::shinyApp(ui = sd_ui(), server = server)
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2.5): Do you know any
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jhelvy

79575955

Date: 2025-04-15 20:08:39
Score: 5.5
Natty: 5
Report link

If I want to select inserting an image into the tab bars, hope do I do it? Instead of the bar just being a solid color, I want it to be a bunch of tiny Cinnamorolls! Perhaps you would know?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Purdence Henry

79575953

Date: 2025-04-15 20:05:37
Score: 5.5
Natty:
Report link

I only need the whole screen to zoom but I dont know how to do it can someone tell me with python pygame. also I use techsmart

Reasons:
  • RegEx Blacklisted phrase (2.5): can someone tell me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Brixton Ottley

79575950

Date: 2025-04-15 20:05:37
Score: 3.5
Natty:
Report link

I found a solution. Steps to Generate LinkKit.framework.dSYM Manually.
Make sure to follow each step.
https://github.com/jorgefspereira/plaid_flutter/issues/148#issuecomment-2807321076

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

79575930

Date: 2025-04-15 19:52:32
Score: 3
Natty:
Report link

For it was that i forgot to change namespace in build.gradle. you have to change both application id and namespace

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

79575926

Date: 2025-04-15 19:47:30
Score: 0.5
Natty:
Report link

Try to use a service account and authenticate with a Bearer token on your backend to call the ReCAPTCHA Enterprise API:

Tip: Try replacing %7B and &7D with your actual project-id and %7BAPI_KEY%7D with your raw API key. Do not enclosed them to {} or use it

From:

https://recaptchaenterprise.googleapis.com/v1/projects/%7BPROJECT_ID%7D/assessments?key=%7BAPI_KEY%7D

To:

https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/assessments?key=API_KEY

If you’ve recently upgraded to Enterprise but haven’t updated your verification backend, that’s likely the source of your issue.

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

79575922

Date: 2025-04-15 19:44:29
Score: 0.5
Natty:
Report link

The Angular DatePipe automatically converts UTC to local timeszone. I specifiy you need to put the timezone:

<td class="px-4 py-2">{{ meal.date | date: 'fullDate' }}</td>

This worked since my dates are stored in UTC

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

79575918

Date: 2025-04-15 19:42:29
Score: 0.5
Natty:
Report link

I was getting this error:

[Error: UNKNOWN: unknown error, open 'blah\accounts\page.js'] {
admin:dev:   errno: -4094,
admin:dev:   code: 'UNKNOWN',
admin:dev:   syscall: 'open',
admin:dev:   path: 'blah\accounts\\page.js'
admin:dev: }

C:\Program Files\N-able Technologies\AVDefender\EPSecurityyService.exe /blah/page.js FILE LOCKED WITH WRITERS

Salient part of img: C:\Program Files\N-able Technologies\AVDefender\EPSecurityyService.exe /blah/page.js FILE LOCKED WITH WRITERS

Using ProcessMontior I was able to figure out that AVDefender (aka BitDefender) was intermittently locking my files and causing my next dev server to be super slow when compiling and to randomly crash when compiling.

IT pushed an update today that installed AVDefender at 11:00 a.m. and that's when my problems started. Uninstalled it and got IT to whitelist me so it doesn't reinstall and the problem is solved.

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

79575912

Date: 2025-04-15 19:38:27
Score: 2.5
Natty:
Report link

The problem was that I was trying to listen from the wrong IRQ number. I thought using IRQ 1 was good enough, since it was reading GPU interrupts. However, it turned out to be disk interrupts - my bad. Anyways, placing virtio-mouse-device on bus.2 and listening from IRQ 3 made reading the mouse interrupts possible. Huge thanks to @CraigEstey.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • User mentioned (1): @CraigEstey
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Nascity

79575900

Date: 2025-04-15 19:30:24
Score: 8 🚩
Natty: 5.5
Report link

facing similar issue, any insights on the final resolution?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing similar issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nithin T L

79575899

Date: 2025-04-15 19:30:24
Score: 2
Natty:
Report link

I can't see all the error log but in my case I have an error raised because the distutils module has been deprecated in Python 3.10 therefore pip cant buid wheels.

To workarround you can avoid building dlib from source and install a precompiled wheel, or use Anaconda and execute install -c conda-forge dlib

Reasons:
  • RegEx Blacklisted phrase (1): I have an error
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: tanatos_05

79575898

Date: 2025-04-15 19:30:24
Score: 1.5
Natty:
Report link

This issue is caused by the theme used in styles.xml. Because Theme.AppCompat.Light.NoActionBar has no action bar there is nothing for the menu to show on. Using a theme without the .NoActionBar such as Theme.MaterialComponents.Light will fix this.

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

79575896

Date: 2025-04-15 19:29:22
Score: 11 🚩
Natty:
Report link

Can you share more info how you got this working?
I have an existing Spring Boot Rest Microservices.
I'm trying to add a new API that uses GraphQL.

The issue I'm having is allowing GraphiQL test site and IntrospectionQuery through.
But my new api uses the same path (like: books/api/graphQL).

Spring Boot SecurityFilterChain layer can allow some of this through, but how do I add one through and not the other one?

If I do leave it open, I add in the @PreAuthorize for my security, its not sending down the authorization token but some anonymous token or object. Then our security layer doesn't know what that is and crashes.

Have you found a way to allow the test graiphQL -- IntrospectionQuery path to work to get the schema, but still block or authenticate other paths.

Reasons:
  • Blacklisted phrase (1): how do I
  • RegEx Blacklisted phrase (2.5): Can you share
  • RegEx Blacklisted phrase (2.5): Have you found a way to allow the test graiphQL
  • RegEx Blacklisted phrase (2): working?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @PreAuthorize
  • Starts with a question (0.5): Can you share
  • Low reputation (1):
Posted by: Aron Christensen

79575891

Date: 2025-04-15 19:24:20
Score: 0.5
Natty:
Report link

As an alternative, ncol is often more logical if you are dealing with datasets:

d <- seq(1,100)
matrix(d, ncol = 10) # Don't use byrow here or the data will be transposed.

You can also use ncol() to obtain the number of columns from some other dataframe. ncol = ncol(df_1)

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

79575866

Date: 2025-04-15 19:09:16
Score: 1
Natty:
Report link

enter image description here

f1 = figure;

x = linspace(0, 2*pi);

hold on;
plot(x, sin(x));
plot(x, sin(x * .5), '--');
plot(x, cos(x));
plot(x, cos(x * .5),':');
hold off

legend([f1.CurrentAxes.Children(1), f1.CurrentAxes.Children(2)], 'p1', 'p2', Location='NorthEastOutside');
legend(copyobj(f1.CurrentAxes, f1), [f1.CurrentAxes.Children(3), f1.CurrentAxes.Children(4)], 'p3', 'p4', Location='SouthEastOutside');
f1.CurrentAxes.Visible = 'off';

This approach does not create extra variables but uses the Graphics Object Hierarchy of the figure.

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

79575858

Date: 2025-04-15 19:01:14
Score: 2
Natty:
Report link

I created a free tool to do this here: https://nixnoob.com/svg_webp I also created a short post about it that includes a sample svg. The original png version is 6.12 MB and the WebP compressed version is 340 KB.

One thing to note is that Inkscape does not support embedded webp in svg so if you open an svg that has embedded webp images in Inkscape you will see the image placeholder that has a red circle with an X in the middle. You can still edit the svg and save and the embedded webp will still work in the browser.

I am thinking of adding a tool to reverse the process as well.

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

79575853

Date: 2025-04-15 18:58:13
Score: 1
Natty:
Report link

This is a very batshit thing on ios. It’s not they idle the app when minimise, this is ok. This is batshit because of i can’t run the in game download large file on background when game is minimised, rather I have to keep open my game splash screen. Bro, who does that!!! Even when the in game still says this will continue downloading data when even it is background. Even after that ios pause the download when game minimised. Ok for small size. When large size is downloading i can’t even go to other app by my minimising current app!! It will pause the download. What a irritated thing!! ios multitasking is super sucks.

*using 16 pro, my background app refresh is turned on and running ios 18.4 stable. Still i am suffering with this thing. Downloading one punch man in game data which is almost 6Gb. And I have to wait in the splash screen and stay away from minimising, stupid!!!

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

79575845

Date: 2025-04-15 18:49:11
Score: 2
Natty:
Report link

You should be doing './admwebntech/assets/images/logo_adm.png' rather than '/admwebntech/assets/images/logo_adm.png' Because './' is the current directory (and '../' is the directory before)

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

79575838

Date: 2025-04-15 18:43:09
Score: 0.5
Natty:
Report link

You need to format the string to the given format.

df_pandas['Reported'] = pd.to_datetime(df_pandas['Reported'])
df_pandas['Reported'] = df_pandas['Reported'].dt.strftime('%d/%m/%Y %H:%M:%S')
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Harsh

79575796

Date: 2025-04-15 18:20:03
Score: 2.5
Natty:
Report link

curl --proto '=https' --tlsv1.2 -sSfL https://solana-install.solana.workers.dev | bash

It is the command I've tried recent days ago.
And working perfect

Plz check.

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

79575791

Date: 2025-04-15 18:16:02
Score: 2.5
Natty:
Report link

fixed ---

I changed to a while loop and hard-reset the bin index after every full iteration of the inner loop. The code now does what it needs to do :D

LENGTH = len(rawdata)  # dimension of problem
      
bindex=0
dindex=0
while bindex<=2:
    while dindex<=LENGTH-1:
        if dfbins.loc[bindex][1] < dfrawdata.loc[dindex][0] < dfbins.loc[bindex][3]:
            emptyarray[bindex].append(dfrawdata.loc[dindex][1])  
        dindex = dindex + 1
    dindex = 0
    bindex = bindex +1  

This above block does it for 2 bins only because while bindex <=2

I can change that condition and it will do the whole data.

But it's still very slow.

For a problem where len(bins) = 450 and len(rawdata)=160000 it needs optimisation.

So the question is: how to more elegantly (pythonically) write a piece of python code that does the same as what I wrote?

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

79575784

Date: 2025-04-15 18:10:00
Score: 3
Natty:
Report link

I often have the same issue: a GA "Date + Hour" dimension in a time chart ends up with only a Date granularity. When this happens, one can notice that the dimension tooltip does indicate a "(Date)" suffix:

Tooltip on the Dimension field indicates the time granularity

This tooltip suffix actually gives the hint on how the granularity used by the chart.

To change this, click on the left part of the dimension field to edit it (the little calendar icon turns into a pen icon). From there you can change the type of the field to "Date & Time > Date Hour". This should change the time chart back to the expected "Days + Hours" granularity.

If one then hovers on the dimension field, the tooltip should no longer have the "(Date)" suffix.

For reference, the Looker Studio docs has some more info on changing fields types. There are some limitations apparently.
https://cloud.google.com/looker/docs/studio/dates-and-times

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Low reputation (0.5):
Posted by: Raphaël Moll

79575779

Date: 2025-04-15 18:06:59
Score: 3
Natty:
Report link

I could be mistaken, but I believe @logger.catch is suppressing your exception and continuing with the program. I apologize if I'm misunderstanding.

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

79575753

Date: 2025-04-15 17:51:55
Score: 3.5
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4

Azan

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

79575752

Date: 2025-04-15 17:50:54
Score: 4.5
Natty:
Report link

Azan

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Muhammad azan

79575747

Date: 2025-04-15 17:47:52
Score: 5
Natty:
Report link

This is answerdadadadadadadadadad

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Capybara

79575735

Date: 2025-04-15 17:40:49
Score: 4
Natty: 5
Report link

I've built a web app that allows you to deploy & automate simple python scripts in a matter of seconds at www.funx10n.com. Let me know if you need any help getting started!

Reasons:
  • Blacklisted phrase (1): any help
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nick Lisauskas

79575729

Date: 2025-04-15 17:36:48
Score: 1.5
Natty:
Report link

The update in the OP help me resolve the same issue in this environment:

Explanation

Fix

Reasons:
  • Blacklisted phrase (1): help me
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: badams

79575723

Date: 2025-04-15 17:32:46
Score: 1.5
Natty:
Report link

My requirement is a simple one. I just want to evaluate a text expression like the following:

'(((456883×45877)+533)/899955)'

To do this in a stored function I have had to write nearly 400 lines of code. Whereas to do this in a stored procedure, using SP_EXECUTESQL, requires only five lines of code.

Surely Microsoft could allow the use of SP_EXECUTESQL, if it only results in the output of a numeric value.

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

79575719

Date: 2025-04-15 17:26:44
Score: 2.5
Natty:
Report link

Please note that in Windows 8.1, installing AEHD v.1.7 may damage the system, including complete inoperability.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Никитос

79575718

Date: 2025-04-15 17:25:43
Score: 5
Natty: 7
Report link

hay alguna actualización para resolver que se incluya en el endpoint con twillio whatsapp reciba las tarjetas creadas con lex v2?

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

79575715

Date: 2025-04-15 17:22:42
Score: 3
Natty:
Report link

Use "cloudinary": "^1.41.3" above version of cloudinary and try to run npm i again, then the dependancy will installed correctly.

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

79575714

Date: 2025-04-15 17:22:42
Score: 1
Natty:
Report link

Thank you for your replies.

I tried creating a simple HTML file on my desktop:


<form method="post" action="http://127.0.0.1:8000/zip-folder/155">
<input type="submit">
</form>

This one downloads the file correctly, so it wouldn't be a token issue? By integrating this same code into my script, the file is generated but doesn't start the download.

I modified my script to better display the logs.

<?php
namespace App\Controller;

use Psr\Log\LoggerInterface; 

use App\Entity\Product; // Utilise ton entité Product ici
use Symfony\Component\HttpKernel\KernelInterface;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\ResponseHeaderBag;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use ZipArchive;
use RecursiveIteratorIterator;
use RecursiveDirectoryIterator;
use FilesystemIterator;

class DownloadZipController extends AbstractController // N'oublie pas de déclarer ta classe héritant de AbstractController
{
    #[Route('/zip-folder/{id}', name: 'zip_folder', methods: ['POST'])]
    public function zipFolder(Product $entity, KernelInterface $kernel, LoggerInterface $logger): Response
    {
        $projectDir = $kernel->getProjectDir();
        $sourceDir = $projectDir . '/public/download/' . $entity->getId();
        $zipDir = $projectDir . '/var/zips/';

        // Vérification de l'existence du répertoire source
        if (!is_dir($sourceDir)) {
            throw new \Exception("Dossier source introuvable: " . $sourceDir);
        }

        // Création du répertoire de destination si nécessaire
        dump("Répertoire source : " . $sourceDir);
        $logger->info("Répertoire source : " . $sourceDir);
        if (!is_dir($zipDir)) {
            mkdir($zipDir, 0777, true); // Vérifie les permissions
        }

        // Création du nom de fichier zip
        $randomName = bin2hex(random_bytes(10)) . '.zip';
        $zipPath = $zipDir . $randomName;
        dump("Chemin du fichier ZIP : " . $zipPath);
        $logger->info("Chemin du fichier ZIP : " . $zipPath);

        // Création de l'archive zip
        $zip = new ZipArchive();
        if ($zip->open($zipPath, ZipArchive::CREATE) !== true) {
            throw new \Exception("Impossible d'ouvrir le fichier zip");
        }

        // Parcours des fichiers à zipper
        $files = new RecursiveIteratorIterator(
            new RecursiveDirectoryIterator($sourceDir, FilesystemIterator::SKIP_DOTS),
            RecursiveIteratorIterator::LEAVES_ONLY
        );

        foreach ($files as $file) {
            $filePath = $file->getRealPath();
            // Optionnellement, afficher les fichiers ajoutés
            dump("Ajout du fichier : " . $filePath); // Vérifie chaque fichier ajouté
            $relativePath = substr($filePath, strlen($sourceDir) + 1);
            $zip->addFile($filePath, $relativePath);
        }

        // Fermeture de l'archive
        $zip->close();

        // Vérifie si le zip a bien été créé
        dump("Zip créé avec succès : " . $zipPath);

        // Générer un nom de fichier aléatoire pour le téléchargement
        $downloadName = bin2hex(random_bytes(10)) . '.zip';  // Nom aléatoire pour le téléchargement
        dump("Nom du fichier pour le téléchargement : " . $downloadName);
        $logger->info("Nom du fichier pour le téléchargement : " . $downloadName);

        // Retourne le fichier zip pour le téléchargement
       // return $this->file($zipPath, $downloadName, ResponseHeaderBag::DISPOSITION_ATTACHMENT);
       try {
        $logger->info("Début du téléchargement du fichier : " . $zipPath);
        return $this->file($zipPath, $downloadName, ResponseHeaderBag::DISPOSITION_ATTACHMENT);
    } catch (\Exception $e) {
        $logger->error("Échec du téléchargement du fichier : " . $zipPath . ". Erreur : " . $e->getMessage());
        throw $e; // Relance l'exception pour que Symfony gère l'erreur
    }


    }
}

Here are the logs:

[2025-04-15T19:09:19.640675+02:00] request.INFO: Matched route "zip_folder". {"route":"zip_folder","route_parameters":{"_route":"zip_folder","_controller":"App\\Controller\\DownloadZipController::zipFolder","id":"155"},"request_uri":"http://127.0.0.1:8000/zip-folder/155","method":"POST"} []
[2025-04-15T19:09:19.648390+02:00] security.DEBUG: Checking for authenticator support. {"firewall_name":"main","authenticators":2} []
[2025-04-15T19:09:19.648430+02:00] security.DEBUG: Checking support on authenticator. {"firewall_name":"main","authenticator":"Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"} []
[2025-04-15T19:09:19.649218+02:00] security.DEBUG: Authenticator does not support the request. {"firewall_name":"main","authenticator":"Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"} []
[2025-04-15T19:09:19.649248+02:00] security.DEBUG: Checking support on authenticator. {"firewall_name":"main","authenticator":"Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"} []
[2025-04-15T19:09:19.649383+02:00] security.DEBUG: Authenticator does not support the request. {"firewall_name":"main","authenticator":"Symfony\\Component\\Security\\Http\\Authenticator\\Debug\\TraceableAuthenticator"} []
[2025-04-15T19:09:19.668764+02:00] doctrine.INFO: Connecting with parameters array{"use_savepoints":true,"driver":"pdo_mysql","idle_connection_ttl":600,"host":"127.0.0.1","port":3306,"user":"XXXX","password":null,"driverOptions":[],"defaultTableOptions":{"collation":"utf8mb4_unicode_ci"},"dbname":"XXXX","serverVersion":"10.4.32-MariaDB","charset":"utf8mb4"} {"params":{"use_savepoints":true,"driver":"pdo_mysql","idle_connection_ttl":600,"host":"127.0.0.1","port":3306,"user":"XXXX","password":null,"driverOptions":[],"defaultTableOptions":{"collation":"utf8mb4_unicode_ci"},"dbname":"XXXX","serverVersion":"10.4.32-MariaDB","charset":"utf8mb4"}} []
[2025-04-15T19:09:19.674579+02:00] doctrine.DEBUG: Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.slug AS slug_3, t0.priority AS priority_4, t0.masked AS masked_5 FROM category_shop t0 WHERE t0.masked = ? ORDER BY t0.priority ASC (parameters: array{"1":0}, types: array{"1":1}) {"sql":"SELECT t0.id AS id_1, t0.name AS name_2, t0.slug AS slug_3, t0.priority AS priority_4, t0.masked AS masked_5 FROM category_shop t0 WHERE t0.masked = ? ORDER BY t0.priority ASC","params":{"1":0},"types":{"1":1}} []
[2025-04-15T19:09:19.682093+02:00] doctrine.DEBUG: Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.slug AS slug_3, t0.content AS content_4, t0.online AS online_5, t0.subtitle AS subtitle_6, t0.price AS price_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9, t0.attachment AS attachment_10, t0.category_id AS category_id_11, t0.fk_designer_id AS fk_designer_id_12 FROM product t0 WHERE t0.id = ? (parameters: array{"1":"155"}, types: array{"1":1}) {"sql":"SELECT t0.id AS id_1, t0.title AS title_2, t0.slug AS slug_3, t0.content AS content_4, t0.online AS online_5, t0.subtitle AS subtitle_6, t0.price AS price_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9, t0.attachment AS attachment_10, t0.category_id AS category_id_11, t0.fk_designer_id AS fk_designer_id_12 FROM product t0 WHERE t0.id = ?","params":{"1":"155"},"types":{"1":1}} []
[2025-04-15T19:09:21.727992+02:00] app.INFO: Répertoire source : C:\xampp\htdocs\CultsV3/public/download/155 [] []
[2025-04-15T19:09:23.756200+02:00] app.INFO: Chemin du fichier ZIP : C:\xampp\htdocs\CultsV3/var/zips/922b28fc15001c3b5ca8.zip [] []
[2025-04-15T19:09:31.920133+02:00] app.INFO: Nom du fichier pour le téléchargement : 212cfb68d0739fc75668.zip [] []
[2025-04-15T19:09:31.920249+02:00] app.INFO: Début du téléchargement du fichier : C:\xampp\htdocs\CultsV3/var/zips/922b28fc15001c3b5ca8.zip [] []
[2025-04-15T19:09:31.943752+02:00] doctrine.INFO: Disconnecting [] []

Indeed, it may be easier to go through a link.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: FloW76

79575711

Date: 2025-04-15 17:20:42
Score: 0.5
Natty:
Report link

This way is working perfectly fine for me:

<%= f.input :unit_name, 
   collection: @units.map { |u| [u, u] },
   as: :select,
   input_html: { class: 'select2' },
   prompt: 'prompt'
%>

'input_html: { class: 'select2' }' Line is making the select2 work

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

79575710

Date: 2025-04-15 17:17:41
Score: 2
Natty:
Report link

Just noting that our new survey platform, surveydown, is designed to create surveys using plain text in a Quarto doc that render into a shiny app. I think it could solve what you're looking for here.

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

79575704

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

While Dev tools is open,

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

79575702

Date: 2025-04-15 17:14:40
Score: 2
Natty:
Report link

My original question was posted 11 days ago. Since it did not get a definitive answer, I posted a reformulated version (with some additions about where the error occurs and the corresponding message) on another forum. I thought it would be of interest for the readers of my original question to also post the reformulated version here (it feels a bit awkward now). Anyway, I got an answer. Here it is:

https://forum.qt.io/post/824619

Thanks everyone for your time.

@AhmedAEK: I had made an attempt using multiprocessing before trying the approach above using QApplication deletion that I thought would be a simpler option. It was half-working. Now that I know this simpler approach cannot work, I will go back to the multiprocessing version. Thanks for your suggestion which encourages me to do so.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @AhmedAEK
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: eric d.

79575700

Date: 2025-04-15 17:13:40
Score: 1.5
Natty:
Report link
import yfinance as yf
data = yf.download("MNQ=F", interval="1m", start="2025-04-01", end="2025-04-08")
print(data)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: yohans shegaw

79575696

Date: 2025-04-15 17:13:40
Score: 2.5
Natty:
Report link

I'm adding here that our new platform, surveydown, is something to check out and could easily implement a simple survey like this as a shiny app.

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

79575695

Date: 2025-04-15 17:13:40
Score: 0.5
Natty:
Report link

This site is pretty helpful. You can upload an entire csv file of latitudes & longitudes, and it will process the elevation data to an output file.

https://toolbox.nextgis.com/t/deminpoints

For the elevation dataset, you can choose between the following: GMTED2010 resolution- 7.5 sec (about 250 meters), GEBCO resolution - 15 sec (about 500 meters), ALOS World 3D - 30 meters.

I just used it to generate elevation data for lat/long coordinates for ≈ 42,500 US zip codes. It took a bit longer than expected, but they have an option to notify by email when the process finishes so you don't have to sit around waiting for it.

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

79575694

Date: 2025-04-15 17:12:39
Score: 0.5
Natty:
Report link

Consider using include-cleaner in clang-tidy with cmake: https://clangd.llvm.org/design/include-cleaner

set_target_properties(${library_name} PROPERTIES CXX_CLANG_TIDY
                            "${CLANG_TIDY};--header-filter=.*<whatever you want to filter for>.*")

Note that you might need to include a .clangd file in your project.

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

79575691

Date: 2025-04-15 17:12:39
Score: 1
Natty:
Report link

You were already on the right track and found the detailed configuration file but missed the global one. ;-)

.ansible-lint does what you asked for: Exclude rules (tags) for all files.

There are other options of potential interest to you, like excluding specific paths from linting.

See the chapter Ansible-lint configuration in the docs.

Here's an example for skipping a few rules for all files:

# .ansible-lint
skip_list:  # or 'warn_list' to print warnings
  - experimental  # all rules tagged as experimental
  - var-spacing
  - unnamed-task

HTH, Uwe

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Uwe

79575689

Date: 2025-04-15 17:10:38
Score: 6.5 🚩
Natty: 5
Report link

I watched this video and was solve.

https://youtu.be/9R9rBZgeRmA

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Blacklisted phrase (1): this video
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hidro

79575686

Date: 2025-04-15 17:09:37
Score: 4
Natty:
Report link

The following code worked, the original issue was raised long back , do we have any alternate solution than resetting security flags?

       // Send the request with body if present
       BOOL sendResult = false;
       bool retry = false;
       do
       {
           retry = false;

           sendResult = WinHttpSendRequest(
               hRequestRaw,
               WINHTTP_NO_ADDITIONAL_HEADERS,
               0,
               (bodyVector.empty() ? NULL : static_cast<LPVOID>(bodyVector.data())),
               (bodyVector.empty() ? 0 : static_cast<DWORD>(bodyVector.size())),
               (bodyVector.empty() ? 0 : static_cast<DWORD>(bodyVector.size())),
               NULL
           );
           // no retry on success, possible retry on failure
           if (sendResult == FALSE)
           {
               DWORD sendError = GetLastError();

               // (1) If you want to allow SSL certificate errors and continue
               // with the connection, you must allow and initial failure and then
               // reset the security flags. From: "HOWTO: Handle Invalid Certificate
               // Authority Error with WinInet"
               // http://support.microsoft.com/default.aspx?scid=kb;EN-US;182888
               if (sendError == ERROR_WINHTTP_SECURE_FAILURE)
               {
                   DWORD dwFlags =
                       SECURITY_FLAG_IGNORE_UNKNOWN_CA |
                       SECURITY_FLAG_IGNORE_CERT_WRONG_USAGE |
                       SECURITY_FLAG_IGNORE_CERT_CN_INVALID |
                       SECURITY_FLAG_IGNORE_CERT_DATE_INVALID;

                   if (WinHttpSetOption(
                       hRequestRaw,
                       WINHTTP_OPTION_SECURITY_FLAGS,
                       &dwFlags,
                       sizeof(dwFlags)))
                   {
                       retry = true;
                   }
               }
               // (2) Negotiate authorization handshakes may return this error
               // and require multiple attempts
               // http://msdn.microsoft.com/en-us/library/windows/desktop/aa383144%28v=vs.85%29.aspx
               else if (sendError == ERROR_WINHTTP_RESEND_REQUEST)
               {
                   retry = true;
               }
           }
       } while (retry);
Reasons:
  • RegEx Blacklisted phrase (2.5): do we have any
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Vipul P

79575678

Date: 2025-04-15 17:07:35
Score: 6.5
Natty:
Report link

I have followed all the steps you have mentioned but , Still I am getting the same error.All this occurs while updating my system.

Reasons:
  • RegEx Blacklisted phrase (1): I am getting the same error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Niki Mehta

79575677

Date: 2025-04-15 17:07:34
Score: 1.5
Natty:
Report link

I notice some anomalies in your double and single quotation use:
n+2 quotation marks are required to render n quotation marks in compile.(""" => ") and ("""" =>"").

Counting characters after removing the asterisks:
There is an extra single quote at position 52 between n1 and n2
There is a rendered double quote pair at position 61 and again at position 116 where there is only a double quote single in the hardcode line.

Overall I would not read the contents of all parameters in the hardcode line as a single string block. That will give you a missing parameters error.
Rather code each parameter as an equivalent string to the hardcode version. Commas separating parameters should be outside of the string block. That would at least give you a baseline comparison between the two versions.

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

79575672

Date: 2025-04-15 17:02:33
Score: 3.5
Natty:
Report link

Dose anyone have some update on that issue, Im in the same situation :/

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

79575669

Date: 2025-04-15 17:00:31
Score: 7 🚩
Natty: 5.5
Report link

Is there a way to extract the boundaries of the confidence or prediction intervals at a certain x value, eg. x = 3 ?

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

79575658

Date: 2025-04-15 16:56:30
Score: 1.5
Natty:
Report link

split address into components, or parse address, break down address

javascript api : https://github.com/hassansin/parse-address

perl api https://metacpan.org/release/TIMB/Geo-StreetAddress-US-1.04/view/US.pm

article : https://www.smarty.com/articles/address-parsing

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

79575653

Date: 2025-04-15 16:51:28
Score: 3
Natty:
Report link

The best solution I think is to use a future to fetch all events when the app resumes.

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

79575650

Date: 2025-04-15 16:47:27
Score: 2.5
Natty:
Report link

Is TagUI developed by AI Singapore?
Here's example code and output.

for n from 1 to 10
    if n % 2 equals to 0
        echo `n`
tagui for_loops.tag -nobrowser
START - automation started
2
4
6
8
10
FINISH - automation finished

I read the following manual page about for loops.
[TagUI] https://tagui.readthedocs.io/en/latest/main_concepts.html#for-loops

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user28644649

79575630

Date: 2025-04-15 16:35:24
Score: 1.5
Natty:
Report link

How do you want the data to look? you can create a formatted table with tabulate. I did something similar with WLC output recently but exported it to mongodb as its based on json files, much easier to pull the data and use with what ever you want.

I would use tabulate very simple to use

https://pypi.org/project/tabulate/

header = ["User", "WLANID", "UserType"]
wlcdata = [
        ["user1", "2","Guest"],
        ["user2", "3","Guest"]       
        ]


mytable =tabulate(wlcdata, header, tablefmt="pretty")
print(mytable)
Reasons:
  • Blacklisted phrase (1): How do you
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How do you
Posted by: onxx

79575628

Date: 2025-04-15 16:35:24
Score: 0.5
Natty:
Report link

Just to throw another option out there, this is pretty straightforward with index(match()) also.

Presuming you have the data like this (and adjust as necessary if you don't, including across different sheets):

3 tables of data, achievement group 1 in columns A/B/C, achievement group 2 in columns E/F/G, results in columns I/J/K.  Each group is ordered as Branch/Achievement/Points

Your max points column (k) would be:

=IF(MAX(INDEX($C$2:$C$4,MATCH(I2,$A$2:$A$4,0)),INDEX($G$2:$G$4,MATCH(I2,$E$2:$E$4,0)))=INDEX($C$2:$C$4,MATCH(I2,$A$2:$A$4,0)),INDEX($C$2:$C$4,MATCH(I2,$A$2:$A$4,0)),INDEX($G$2:$G$4,MATCH(I2,$E$2:$E$4,0)))

Your max achievements column (j) would be:

=IF(MAX(INDEX($C$2:$C$4,MATCH(I2,$A$2:$A$4,0)),INDEX($G$2:$G$4,MATCH(I2,$E$2:$E$4,0)))=INDEX($C$2:$C$4,MATCH(I2,$A$2:$A$4,0)),INDEX($B$2:$B$4,MATCH(I2,$A$2:$A$4,0)),INDEX($F$2:$F$4,MATCH(I2,$E$2:$E$4,0)))

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

79575615

Date: 2025-04-15 16:28:21
Score: 0.5
Natty:
Report link

I'm not really sure what the root cause of this is but I've had a similar problem that is resolved by using this bit of code instead of ensureDeferred

def as_deferred(f):
    return Deferred.fromFuture(asyncio.ensure_future(f))

I found this to be the best guidance about mixing twisted and asyncio
https://meejah.ca/blog/python3-twisted-and-asyncio

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kevin R.

79575609

Date: 2025-04-15 16:23:19
Score: 1.5
Natty:
Report link

I would at a minimum make sure you can change the value by both dragging and tapping and test it out with VoiceOver and Talkback to make sure the standard slider controls are working. Compare yours with a standard HTML slider people will be used to using. W3C has some examples of custom slider implementations that work ok with VoiceOver, though the value isn’t read if I double tap, hold, and drag to change the value, so there’s some room for improvement there. You could probably fix that with an aria live region that dynamically updates the value when it’s changed. I would also try it out with voice control software, here are the instructions for sliders in Windows built in voice control.

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

79575606

Date: 2025-04-15 16:19:18
Score: 0.5
Natty:
Report link

You can use VS 'Find and Replace' feature. Just press Ctrl + Shft + H and it opens up the screen. Here you can replace values within all contents of a directory and exclude certain files as well.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: jgonz1

79575601

Date: 2025-04-15 16:15:17
Score: 3.5
Natty:
Report link

you need 6 rotation angles:

X to T, Y, Z

Y to T, Z

Z to T

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