79763220

Date: 2025-09-12 17:45:04
Score: 2
Natty:
Report link

Everything You Need to Know About Walmart Gift Cards

enter image description here

Walmart gift cards are one of the most convenient and versatile ways to shop, save, or share with others. Whether you’re looking for the perfect present, a reward option, or simply a way to manage your own shopping, Walmart gift cards are a practical choice.

✅✅ Apply Now

What is a Walmart Gift Card?

A Walmart gift card is a prepaid card that can be used to purchase items at Walmart stores, Walmart.com, and even at Sam’s Club. Available in both physical and digital (eGift card) forms, it gives recipients the freedom to choose from thousands of products — groceries, electronics, clothing, household goods, and more.

Benefits of Walmart Gift Cards

How to Get a Walmart Gift Card

You can purchase them at Walmart stores, on Walmart’s website, or from authorized retailers. They’re available in custom amounts, allowing you to load the balance that fits your budget.

Checking Your Balance

It’s easy to keep track of your balance online at Walmart.com, through the Walmart app, or by calling their customer service.

Final Thoughts

Walmart gift cards offer both convenience and flexibility, making them one of the most practical gift solutions available today. Whether you’re treating yourself or surprising someone else, a Walmart gift card ensures the freedom to choose exactly what’s needed.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Denise H. Winters

79763219

Date: 2025-09-12 17:42:03
Score: 2.5
Natty:
Report link

turns out it was a problem with the draw color idk why but it worked when i tried setting the draw color to black before SDL_RenderClear()

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Theo Morton

79763216

Date: 2025-09-12 17:40:02
Score: 3.5
Natty:
Report link

I am also getting that error, and I believe it may be related to the data you are scraping. If it is a dynamically generated array and you are specifying specific data to scrape (i.e. defining the size of the df you are creating), the tensor module reports it as an error which may prevent acquiring the correct data. Look into how to allow a dynamic df, even if you are consistently getting the data you want with your current code.

Reasons:
  • RegEx Blacklisted phrase (1): I am also getting that error
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jeff P

79763210

Date: 2025-09-12 17:29:00
Score: 1
Natty:
Report link

firstOrNull() is a Kotlin extension function that works on kotlin.collections.Iterable<T>

but productDetailsList is a Java List<ProductDetails> (from the Play Billing library).

Convert to Kotlin collection first

val firstProduct: ProductDetails? = productDetailsList
    ?.toList()
    ?.firstOrNull()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): is a
  • Low reputation (0.5):
Posted by: harsh bangari

79763207

Date: 2025-09-12 17:23:58
Score: 2.5
Natty:
Report link

Missing categories.

android.intent.category.HOME and android.intent.category.DEFAULT

For more information: https://developer.android.com/reference/android/content/Intent

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

79763197

Date: 2025-09-12 17:11:55
Score: 2
Natty:
Report link

🎁 Don’t miss your chance to join the Walmart Gift Card Giveaway! 🛒 With a free Walmart gift card, you can shop for groceries, electronics, clothing, and so much more—all without spending a dime. ✨ It’s simple, fun, and the perfect way to save while enjoying the products you love. 🔑 Enter today and unlock the opportunity to win big at Walmart! 🏆

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Denise H. Winters

79763170

Date: 2025-09-12 16:32:45
Score: 7 🚩
Natty: 5
Report link

Has there been any resolution to this? Have the same issues and it comes back as well.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Have the same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John

79763156

Date: 2025-09-12 16:14:40
Score: 0.5
Natty:
Report link

Maybe you're packaging you dependencies wrong. for adding layer to the lambda function you should follow the below steps:

mkdir -p openapi/python && cd openapi/python

pip install openapi -t .

zip -r openapi.zip openapi/

then upload the zip. please confirm that this step is ok.

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

79763153

Date: 2025-09-12 16:11:39
Score: 3
Natty:
Report link

Got it working, I was using BO Id in place of client id, corrected it & it worked

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sujata

79763152

Date: 2025-09-12 16:11:39
Score: 0.5
Natty:
Report link

As mentioned above, ARR_WORDS is used internally in the definition of ByteString and Text. Since this question is specifically about profiling heap usage, I want to add the following. ARR_WORDS is specifically pinned data, which is data that the garbage collector cannot copy and move to new blocks in order to compactify the heap.

This can cause heap fragmentation (i.e., lots of memory allocated for the heap, but not many live objects on the heap). I found this Well-Typed blog post to be extremely helpful in understanding how ARR_WORDS can affect the heap: https://www.well-typed.com/blog/2020/08/memory-fragmentation

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

79763150

Date: 2025-09-12 16:10:39
Score: 0.5
Natty:
Report link

Here is my solution without using value_box function of library(bslib) library(bsicons).

output of code


title: "Count N" format: dashboard server: shiny


#| context: setup

library(shiny)
library(shinyWidgets)
library(tidyverse)

data <- tibble::tibble(a = c(1, 2, 3)) # The data should always be retrieved from a server when the dashboard starts later, that's why I need the server context

{.sidebar width="20%"}

 

 sliderInput(
      inputId = "myValue",
      label = "custom slider",
      min = 1,
      max = 50,
      value = 30
    )


 

Row {height="20%"}

#| title: "n1"
#| icon: "trash"
#| color: teal

 textOutput("n1")
#| content: valuebox
#| title: "n4"
#| icon: pencil
#| color: teal

 textOutput("n4")

Row {height="30%"}

Column {.tabset}

#| content: valuebox
#| title: "n2"
#| icon: music
#| color: teal

 textOutput("n2")
#| content: valuebox
#| title: "n2"
#| icon: music
#| color: teal

 textOutput("n2")

Fixed Value: n3

#| content: valuebox
#| title: "Fixed Value: n3"
#| icon: "trash"
#| color: "danger"



textOutput("myFixValue")

Column {height="70%"}

#| title: "Dynamic Value Depends on Slider"


textOutput("myValueText")

 
#| context: server

 

  n <- data |> nrow() |> as.character()
  
 

  output$n1 <- renderText(n)
  output$n4 <- renderText(paste0("my new value:", " ", n))
  
   output$n2 <- renderText(n)
  
  n3 <- 99 |> as.character()
  
  output$myFixValue <- renderText(n3)
  
  output$myValueText <- renderText({  input$myValue})
  
Reasons:
  • Blacklisted phrase (0.5): I need
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: OkkesDulgerci

79763144

Date: 2025-09-12 16:04:37
Score: 4.5
Natty:
Report link

In addition to check the Security groups for both Loadbalancer and the ec2 instances, also you should make sure the the target group you defined for the ec2 instances listen on correct port. otherwise please give more data

Reasons:
  • RegEx Blacklisted phrase (2.5): please give
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Saleh

79763138

Date: 2025-09-12 15:58:35
Score: 0.5
Natty:
Report link

Given that your payload structure implemented ("mutable-content": 1 in aps and the image URL in fcm_options) is directly aligned with the Firebase documentation, it's possible the issue lies on the client-side of your Flutter application.
This might shed some light: https://rnfirebase.io/messaging/ios-notification-images

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

79763130

Date: 2025-09-12 15:52:30
Score: 11.5 🚩
Natty:
Report link
Hi, I have the same problem as you, have you solved it?
Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (2): have you solved it
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 龚羿豪

79763122

Date: 2025-09-12 15:46:28
Score: 1.5
Natty:
Report link

I was getting the same run_results pattern. It seems like the reason is that in dbt cloud the dbt docs command always runs last, so it overwrites the actual command you want the artifact from. To fix this, untick the "Generate docs on run" option.

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

79763107

Date: 2025-09-12 15:30:24
Score: 0.5
Natty:
Report link

An official method seems to be there now:

https://github.com/awsdocs/elastic-beanstalk-samples/blob/main/configuration-files/aws-provided/instance-configuration/cron-leaderonly-linux.config

###################################################################################################
#### This configuration file allows a cron job to run only on one Linux instance in the environment.
#### 
#### The script "/usr/local/bin/test_cron.sh" will sort and compare the current instances in the
#### Auto Scaling group and if it matches the first instance in the sorted list it will exit 0.
#### This will mean that this script will only exit 0 for one of the instances in your environment.
####
#### The second script is an example of how you might use the "/usr/local/bin/test_cron.sh" script
#### to execute commands and log a timestamp to "/tmp/cron_example.log".
####
#### A cron example is setup at "/etc/cron.d/cron_example" to execute the script 
#### "/usr/local/bin/cron_example.sh" every minute. A command is also run upon each deployment to 
#### clear any previous versions of "/etc/cron.d/cron_example" by removing 
#### "/etc/cron.d/cron_example.bak".
####
#### Note that for the first script to gather the required information, additional IAM permissions
#### will be needed to be added to a policy attached to the instance profile used by the instances
#### in the environment. The policy shown below will grant the access needed. Note that the default
#### instance profile for Elastic Beanstalk is "aws-elasticbeanstalk-ec2-role".
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eric Muijs

79763091

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

You have to disable the required action "Verify Profile" in the authentication settings. In the admin user interface, you can find the authentication settings in the left navigation bar. On the authentication page, you can access the required actions via the equally named header.

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

79763088

Date: 2025-09-12 15:08:19
Score: 0.5
Natty:
Report link

Found the solution:

${{ if eq(product, 'ProductA') }}:
Reasons:
  • Whitelisted phrase (-2): solution:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Peter-Paul

79763086

Date: 2025-09-12 15:06:18
Score: 1.5
Natty:
Report link

I found the next elegant way in modern react

const [iover, toggleIover] = useReducer((prev) => !prev, false)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Maxim Isaev

79763081

Date: 2025-09-12 15:02:17
Score: 1.5
Natty:
Report link

Well what's the linking error you are having?

You may refer to the example_glfw_opengl3/Makefile but you probably already did as your Cmakefile seems generally sensible.

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

79763078

Date: 2025-09-12 14:56:16
Score: 1.5
Natty:
Report link

First of all take a look at the scaler. Keep in mind to scale the data persistent. Based on you non-scaled price you are running into the issue woth your high RMSE.

I would suggest a consistent scaling. You don't have to scale always the same - it depends on the use case. But this non-scaled Y results in the high value.

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

79763068

Date: 2025-09-12 14:44:13
Score: 2.5
Natty:
Report link

I’m currently working on a mental health services website (https://clvpsych.com/) and I want to make sure the design is not only functional but also supportive for users who may be experiencing stress, anxiety, or other challenges.

From a development and UI/UX perspective, what are the best practices to:

I’d appreciate advice, resources, or examples from developers who have worked on healthcare or wellness-related websites.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Robert Smith

79763051

Date: 2025-09-12 14:23:09
Score: 0.5
Natty:
Report link

Now I’ve figured out what was going “wrong” — thanks for the valuable comments from user555045 and fuz!

Yes, this behavior is expected: on Haswell, IMUL is issued only on Port 1, which aligns with the observed results and also matches what uiCA shows.

The root cause of the “strange” interference in the loop containing the ADD instruction wasn’t the ADD itself — it was the JNZ. On Haswell, only one branch instruction can be taken per cycle, so two JNZ instructions cannot be executed "simultaneously" from two loops. The JNZ (macro-fused with DEC) is issued on Port 6, and when Port 6 is enabled in Intel PCM, we can observe where the “missing” µOps are actually landing on the CPU.

Here are two loops running simultaneously on Hyper-Threaded cores:

; Core 0
.loop:
    add r10, r10
    dec r8
    jnz .loop

; Core 1
.loop:
    imul r11, r11
    dec r8
    jnz .loop

And the result is including Port 6:

Time elapsed: 998 ms
Core | IPC | Instructions  |  Cycles  | RefCycles | PORT_0  | PORT_1  | PORT_5  | PORT_6
   0   1.98        7115 M     3590 M      3493 M    1148 M    1944 K    1222 M    2371 M
   1   1.00        3582 M     3589 M      3492 M     816 K    1193 M     593 K    1194 M

If I terminate the IMUL loop on Core 1 and leave only Core 0 running with ADD, then:

Core | IPC | Instructions  |  Cycles  | RefCycles | PORT_0  | PORT_1  | PORT_5  | PORT_6
   0   2.85          10 G     3643 M      3546 M    1132 M    1157 M    1175 M    3470 M
   1   0.81          55 M       68 M        67 M    9157 K    8462 K    9094 K    6586 K

This explains everything (at least for me).

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Andrey Dmitriev

79763047

Date: 2025-09-12 14:18:08
Score: 0.5
Natty:
Report link

I was encountering a similar issue while using Portainer. I had pulled the image using the Docker command line but once I attempted to deploy the updated image Portainer threw the "access forbidden" error on the "/manifest" endpoint.

The solution was to add the registry to Portainer itself, rather than logging in through the Docker CLI.

See the Portainer instructions for adding a registry: https://docs.portainer.io/admin/registries/add

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

79763044

Date: 2025-09-12 14:16:07
Score: 2
Natty:
Report link

We can do this by divide and conquer, firstly sort the n lines in increasing order of slopes, then recursively find the upper envelop of first n/2 and last n/2 lines.

The combine step will require us to merge these upper envelops. They will only intersect at a unique point say x (why?), now all we have to do is find x. We can do it using two pointers, initialise them to the start of both upper envelop, now find the point of intersection of these lines say z, let u,v be their point of discontinuity in the envelop, if z<u and z<v return z else if z<u and z>v increment right pointer, else if z<v z>u increment left pointer else increment both pointers.

since the combine step takes O(n)

Time compleixty will be O(nlogn)

Reasons:
  • Blacklisted phrase (0.5): why?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user30538902

79763042

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

I know this is an old post, but someone might come across it like I did when having the same behaviour on a cPanel hosting server. In my case, I had forgotten that my domain was going through Cloudflare and they were caching my content to speed up performance. When you are entering a url for a resource that you are sure you have deleted and it still comes up, there's caching going on somehwere. That can be at the user (browser) level, hosting server level, or even at the domain level as it is if you use Cloudflare or something similar.

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

79763019

Date: 2025-09-12 13:47:00
Score: 3
Natty:
Report link

you can use free api for this
chek link:https://rapidapi.com/moham3iof/api/email-validation-scoring-api

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

79763014

Date: 2025-09-12 13:42:59
Score: 2
Natty:
Report link

Is this what you're looking for?

import re
s = "ha-haa-ha-haa"
m = re.match(r"(ha)-(haa)-\1-\2", s)
print(m.group())

This outputs

ha-haa-ha-haa

as expected

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is this
  • High reputation (-1):
Posted by: JRiggles

79763001

Date: 2025-09-12 13:34:56
Score: 1
Natty:
Report link

There is now a NuGet package that manages the registry for you to allow easy file extension association: dotnet-file-associator

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

79763000

Date: 2025-09-12 13:33:56
Score: 1
Natty:
Report link

There is now a NuGet package that manages the registry for you to allow easy file extension association: dotnet-file-associator

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

79762998

Date: 2025-09-12 13:32:56
Score: 1
Natty:
Report link

There is now a NuGet package that manages the registry for you to allow easy file extension association: dotnet-file-associator

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

79762997

Date: 2025-09-12 13:31:55
Score: 2
Natty:
Report link

One possible solution I am considering is to use pthread_self() as a pthread_t value that is guaranteed not to be one of the spun-off threads.

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

79762995

Date: 2025-09-12 13:30:55
Score: 0.5
Natty:
Report link

This is a known issue with the Samsung Keyboard (not Flutter and not your code).

The workaround is: set keyboardType: TextInputType.text for all fields and use persistent FocusNodes.

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

79762990

Date: 2025-09-12 13:24:54
Score: 1.5
Natty:
Report link

If none of the solutions here worked for you, here's what finally solved it for me: I discovered that "Emulate a focused page" was enabled in Chrome DevTools few months ago and forgot about it. I was using DevTools to debug the visibilitychange event, but DevTools itself was preventing the event from firing by emulating constant focus. Two hours of my life gone.

Emulate a focused page setting

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

79762987

Date: 2025-09-12 13:21:52
Score: 11.5 🚩
Natty: 5.5
Report link

Did you get the solution?
Please share it, I am facing the same issue and not able to figure yout

Reasons:
  • RegEx Blacklisted phrase (2.5): Please share
  • RegEx Blacklisted phrase (3): Did you get the solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Nitesh

79762985

Date: 2025-09-12 13:18:51
Score: 4.5
Natty:
Report link

When looking more into it, it seems like there was no requests on the web app for an extended time period, so the solution was to go :
web app -> config -> always on -> on

enter image description here

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: jack spiratos

79762977

Date: 2025-09-12 13:09:49
Score: 1.5
Natty:
Report link

In Angular SurveyJS Form Library, a question is rendered by the Question component (question.component.ts/question.component.html). This component contains various UI elements. For instance, the component which render question errors, the header component which may appear above or under the main content and the component which renders the main question content.

When you register a custom question type and implement a custom renderer, you actually override the question content component.

Based on your explanation, I understand that you wish to customize the appearance of SurveyJS questions. If you wish to modify the appearance of SurveyJS questions, we suggest that you create a custom theme using the embedded Theme Editor. A custom theme contains various appearance settings such as colors, element sizes, border radius, fonts, etc.
If you cannot create 100% identical forms by using a custom theme, the next step to try is to modify the form CSS using corresponding API: Apply Custom CSS Classes.

Unfortunately, the entire question component cannot be overridden at the moment. If you plan to override the entire question component, take note that all SurveyJS question UI features will be unavailable; in particular, you would require to handle responsiveness and render question errors, etc. Please let me know if you would like to proceed with overriding the entire question component.

I suggest that you use default SurveyJS question types and align a question title on the left and introduce the space between the title and an input field by placing a question within a panel and specifying questionTitleWidth. For example: View Demo.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: JaneJane

79762971

Date: 2025-09-12 13:04:47
Score: 2
Natty:
Report link

Create a 1/18 scale commercialized figurine of the car in the picture, in a realistic style, in a real environment. The figurine is placed on a computer desk. The figurine has a transparent acrylic base, with no text on the base. The content on the computer screen is the Blender modeling process of this figurine. Next to the computer screen is a TAMIYA style toy packaging box printed with the original artwork.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Санжар Ғұбайдолла

79762967

Date: 2025-09-12 13:02:47
Score: 1.5
Natty:
Report link

You can add an additional hover delay in your settings.json file:

  "editor.hover.delay": 2000,
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Deniz

79762963

Date: 2025-09-12 12:56:45
Score: 2
Natty:
Report link

It's not missing, you deleted it.

The file was in your .gitignore and you deleted your local, untracked copy. That's why it's not in git history. This is standard practice.

Your app still runs because Spring is loading config from somewhere else.

Look for application.yml in src/main/resources.

Look for a profile-specific file, like application-dev.properties.

Check your run configuration's VM arguments for --spring.config.location or -Dspring.profiles.active.

Recreate the file and move on.

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Tvätt-Olof

79762962

Date: 2025-09-12 12:56:45
Score: 3.5
Natty:
Report link

Just had the same issue on dbt cloud. Seems like a bug to me.

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

79762960

Date: 2025-09-12 12:54:44
Score: 3
Natty:
Report link

I have recently made it working with using cookies where you send timestamp and mac in separate cookies and it works fine

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

79762954

Date: 2025-09-12 12:53:44
Score: 3
Natty:
Report link

Use MAX(CASE…) with GROUP BY.

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

79762948

Date: 2025-09-12 12:44:40
Score: 2.5
Natty:
Report link

OneHotEncoder(handle_unknown="ignore")

# as it is code

x_train, x_test, y_train, y_test = train_test_split(x,y, test_size=0.25, random_state=42)

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

79762947

Date: 2025-09-12 12:43:40
Score: 1.5
Natty:
Report link

When you used InMemoryUserDetailsManager, security stored not the user object itself, but UserDetails which was safe and serialization does not have necessary. However with JPA Auth Server objects that contain OAuth2Authorization use ser via jackson there is a problem that jackson does not trust that class custom user. Consequently leading to 2 approaches, i guess, jackson Mixin like

public abstract class UserMixin {
    @JsonCreator
    public UserMixin(@JsonProperty("username") String username,
                     @JsonProperty("password") String password) {}
}

then in your config class register that Mixin. Second (much easier) add constructor to requered fields with @JsonCreator to your costr. and for every parameter @JsonProperty

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @JsonCreator
  • User mentioned (0): @JsonProperty
  • Starts with a question (0.5): When you use
  • Low reputation (1):
Posted by: JZARGO

79762939

Date: 2025-09-12 12:36:38
Score: 5
Natty:
Report link

have you tried to use sql mock ?

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nanda nur septama

79762938

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

pgAdmin doesn't create PostgreSQL servers, it provides a GUI to access and manage them, which is why you don't see a "create server" button - such a button existed in earlier versions but was poorly named.

Server groups are folders to organise your registered connections.

To add an existing server, right click your server group of choice, then "Register > Server...", and enter the connection details.

Some installations of pgAdmin may come bundled with a PostgreSQL server too, in which case you will have likely configured this server and set the credentials during installation. Alternatively, you may want to run your server through Docker, a VPS, or a managed Postgres hosting service, then register it in pgAdmin.

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

79762929

Date: 2025-09-12 12:29:36
Score: 3
Natty:
Report link

I managed to come up with a solution, AWS ElastiCache seems like it doesn't support localhost so I ran the api with a docker container so we can setup valkey, and it works like a charm, it also didn't affect the deployed api which is great.

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

79762926

Date: 2025-09-12 12:27:35
Score: 0.5
Natty:
Report link

Here is an alternative method of showing that this generates a uniform distribution of permutations.

Given a certain sequence of randint calls for Fisher-Yates, suppose we got the reversed sequence of calls for our modified algorithm.

The net effect is that we perform the swaps in reverse order. Since swaps are self-inverse, it follows that our modified algorithm produces the inverse permutation of the Fisher-Yates algorithm. Since every permutation has an inverse, it follows that the modified algorithm produces every permutation with equal probability.

(Incidentally, since rand() % N is not actually equiprobable (though the error is very slight for small N), this shows that both the standard FIsher-Yates algorithm and the modified algorithm are equally "bad", in that the set of probabilities for permutations is identical to each other (though this still assumes the PRNG is history-independent, but that's also not quite true).)

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

79762924

Date: 2025-09-12 12:25:34
Score: 1
Natty:
Report link

I was in a similar situation when I was skeptical about sharing my code. So before sharing my code I wanted to create another copy or create a copy of my repo with code. So below are the steps I followed.

  1. Create a copy of the project in your local file system

  2. Then go inside the project folder and manually delete the .git and the associated git folders

  3. Now open the project in Visual Studio.

  4. The from the bottom right extensions add the project to Git Repository and create a new Repository

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

79762922

Date: 2025-09-12 12:23:34
Score: 0.5
Natty:
Report link

Writing up what worked for me in the end, in case it helps anyone. It's probably obvious to people familiar with Doxygen, but it wasn't to me. Many thanks to @Albert for pushing me towards bits of the Doxygen documentation that I didn't know were there!

I have a file Reference.dox and the INPUT tag in my doxyfile points to it. In it I have:

/*! \page REFDOCS Reference Documents

    Comments in the code refer to the following documents:
...
*/

There are various possibilities for the "..."

1. \anchor

    \par My copy of the Coding Guidelines
    \anchor MISRA

    \par
    Hard-copy version is on Frank's desk.

This works. The Reference Documents page has the title "MISRA guidelines" and the instructions. In the documentation for the code, I get "it's coded like this to comply with rule XYZ in MISRA" and the "MISRA" is clickable. Clicking it takes me to the Reference Documents page. There, "My copy of the Coding Guidelines" is a paragraph heading in bold, and the instructions are indented below.

2. \section

    \section MISRA My copy of the Coding Guidelines

    Hard-copy version is on Frank's desk.

This works too. In the documentation for the code, I get "it's coded like this to comply with rule XYZ in My copy of the Coding Guidelines", and again that is a clickable link that gets me to the Reference Documents page. There, the heading "My copy..." is followed by the instruction text.

With a couple of documents on the page, I think this is a bit easier to read because I don't have \par all over the place.

There are probably other possibilities that I don't know about but these (probably the latter) will do for me.

Incidentally: if you get to https://www.doxygen.nl/manual/commands.html you can expand the "Special Commands" in the left sidebar to give a clickable list of the commands so you can get to them quickly. There is an alphabetical list of commands at the top of the page, but it's a long page so you don't see it, and the sidebar list is right there. BUT THE SIDEBAR LIST IS NOT ALPHABETICAL! When I was told about e.g. \cite it took me ages to find it because somehow I believed the list was alphabetical, and it was way off the bottom of the screen instead of being near the top of the list. When I found it, \anchor was right there too.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): worked for me
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Albert
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Frank Peelo

79762916

Date: 2025-09-12 12:18:33
Score: 1.5
Natty:
Report link

I would suggest you do the following:-

  1. Login to your GITHub account

  2. Then go to the Repositories.

  3. Now go to the Settings

  4. Then go down to the Danger Zone section.

  5. There you will find the option to Delete

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

79762914

Date: 2025-09-12 12:18:33
Score: 1.5
Natty:
Report link

If you get some like from the api, the problem which i faced was i coped the curl from the documentation
and then used it. The problem is the curl is deformed and the data in body should be in params instead of body.

as  {
      "error": {
        "code": 1,
        "message": "An unknown error occurred"
      }
    }

Try copying the curl and use an AI ( like chatGpt ) and say the curl is malformed and i am unbale to hit it in the terminal please fix.

so,

curl -s -X GET \
  -F "metric=likes,replies" \
    -F "access_token=<THREADS_ACCESS_TOKEN>"
"https://graph.threads.net/v1.0/<THREADS_MEDIA_ID>/insights" 

will be converted into something like the following (which works!)

curl -s -X GET "https://graph.threads.net/v1.0/<threads_post_id/insights?metric=likes,replies&access_token=<token>"
Reasons:
  • RegEx Blacklisted phrase (1): i am unbale to hit it in the terminal please
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Sarfaraz

79762912

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

For me the only format that worked was "MM/DD/YYYY HH:MM" with no extra leading zeros and using a 24 hour clock, so "7/14/2022 15:00" worked but "07/14/2022 3:00 PM" did not.

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

79762909

Date: 2025-09-12 12:10:30
Score: 0.5
Natty:
Report link

In your package's pubspec.yaml:

flutter:
  fonts:
    - family: TwinkleStar
      fonts:
        - asset: assets/fonts/TwinkleStar-Regular.ttf

In your widget:

Text(
  'Hello World',
  style: TextStyle(
    fontFamily: "packages/sdk/TwinkleStar",
    fontSize: 24,
  ),
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Talha

79762905

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

Hii: Lusia

So it’s just:
link click → run function se(...) with those values.

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

79762901

Date: 2025-09-12 12:01:28
Score: 2
Natty:
Report link

ggMarginal has groupColour = TRUE and groupFill = TRUE which allows to take the groups from the initial ggplot.

library(ggplot2)
library(ggExtra)

p <- ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +
  geom_point()

ggMarginal(p, type = "density", groupColour = TRUE, groupFill = TRUE)

enter image description here

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

79762898

Date: 2025-09-12 11:57:27
Score: 0.5
Natty:
Report link

If your goal is to have two-dimensional, always visible scrollbars, currently Flet doesn’t support this feature out of the box. I ran into the same limitation, so I created an extension for Flet that adds true two-dimensional scrollbars and some additional functionality. It might help in your case: Flet-Extended-Interactive-Viewer.

With normal Flet, you can have two scrollbars, but one of them only appears at the end of the other, which isn’t ideal for some layouts.

Reasons:
  • Whitelisted phrase (-1): in your case
  • No code block (0.5):
  • Low reputation (1):
Posted by: Florian Hock

79762897

Date: 2025-09-12 11:56:27
Score: 1
Natty:
Report link

After hours fiddling with this, I post the question, then find a fix!

I had to SSH in to the box and edit extension.ini to add extension = php_openssl.so

After re-uploading that, it gave me the option in:

Web Station > Script Language Settings > [profile] > Edit > Extensions > openssl

I swear the option was there and was ticked before, but was now unticked. Reselected, saved, and it works....

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

79762895

Date: 2025-09-12 11:56:27
Score: 1.5
Natty:
Report link

I figured it out. I had to delete the neon directory and rerun the generation.

Reasons:
  • Whitelisted phrase (-2): I figured it out
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: sylvesterasa

79762875

Date: 2025-09-12 11:41:23
Score: 3
Natty:
Report link

Aapko existing tags use karne padenge jo already maujood hain. Aapke topic ke liye kuch relevant general tags ho sakte hain

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

79762860

Date: 2025-09-12 11:24:20
Score: 1.5
Natty:
Report link

Currently, Flet doesn’t support this feature out of the box. I ran into the same limitation, so I created an extension for Flet that adds two-dimensional scrollbars and some additional functionality. It might help in your case: Flet-Extended-Interactive-Viewer

Reasons:
  • Whitelisted phrase (-1): in your case
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Florian Hock

79762846

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

Actually - I already have an answer, that worked ... so someone can find it useful.

It helped when I deleted all *.dbmdl and *.jfm files within solution folder and subfolders, then restarted VS and rebuild.

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

79762836

Date: 2025-09-12 10:55:12
Score: 5
Natty:
Report link

It seems this issue was picked up by the maintainer and fixed in version 65.11.2 (big thanks if you are seeing this!) https://github.com/pennersr/django-allauth/commit/5ef542b9004e808253f8cd9f2dbae0bb27365984

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: krikkaa

79762833

Date: 2025-09-12 10:48:10
Score: 1
Natty:
Report link

Version 48.5.0 of the .NET library is pinned to API version 2025-08-27.basil[0]. This means that all requests initiated by the SDK use that API version by setting the version header[1], which overrides your account’s default API version. Effectively, this means that all requests made with that SDK version use that API version.

API version 2025-03-31.basil introduced a breaking change[2], which removed the payment_intent field from the Invoice object (due to the introduction of support for multiple partial Invoice Payments).

For API versions 2025-03-31.basil, and later, the first PaymentIntent's client_secret can now be accessed from the Invoice object in invoice.confirmation_secret.client_secret [3]. You should use this instead of invoice.payment_intent.client_secret.

[0] https://github.com/stripe/stripe-dotnet/blob/master/CHANGELOG.md#4850---2025-08-27

[1] https://docs.stripe.com/api/versioning

[2] https://docs.stripe.com/changelog/basil/2025-03-31/add-support-for-multiple-partial-payments-on-invoices

[3]https://docs.stripe.com/changelog/basil/2025-03-31/add-support-for-multiple-partial-payments-on-invoices#use-for-payment-element-integrations

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

79762825

Date: 2025-09-12 10:43:09
Score: 3.5
Natty:
Report link

cat "./--spaces in this filename--"

That's it

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

79762816

Date: 2025-09-12 10:34:07
Score: 1.5
Natty:
Report link

i can able to fetch subscription names based on the parameter1

resourcecontainers
| where type == "microsoft.resources/subscriptions"
| where name contains ({Environment})
| project name
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: kalyani

79762814

Date: 2025-09-12 10:29:06
Score: 1.5
Natty:
Report link

You have to declare a string containing the call, then execute:

    cExec = "call sp_change_password('" + password + "','" + id_user + "') ;"
    EXECUTE IMMEDIATE :cExec ;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andrea Ricci

79762809

Date: 2025-09-12 10:19:03
Score: 0.5
Natty:
Report link

Another location would be Jetbrains' github repo for jdk8: https://github.com/JetBrains/jdk8u_jdk/blob/master/src/share/classes/com/sun/jndi/ldap/LdapCtx.java .

Pros: directly browse the source

Cons: bigger due to git repo if downloaded, no binaries

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

79762802

Date: 2025-09-12 10:09:00
Score: 5.5
Natty: 4
Report link

drones not working ? you ain't the problem, the place you are buying from is . Check MAVDRONES , most trusted and DGCA certified drone company . buy enterprise drone

Reasons:
  • RegEx Blacklisted phrase (2): working ?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aman Das

79762800

Date: 2025-09-12 10:09:00
Score: 2.5
Natty:
Report link

For the collector in deployment mode. If no log found, you can exec to the pod and check the failure reason under /var/log/opentelemetry/dotnet

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

79762796

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

Depending on where your application picks up the date from, I had a similar problem solved by:

function date { /bin/date -d "yesterday"; }

or could likely use alias.

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

79762793

Date: 2025-09-12 10:02:55
Score: 6.5 🚩
Natty:
Report link

Good day.

I've the same problem.
I've trying all the solutions of the above commets but without result.
The image is less of 300kb and the resolution is 1024x768 pixel.
The length of title and description are within the limits given above and the image is with the full url in https.

I includes the screenshot of my phone.
As you can see the preview in the sharing phase is displayed correctly, but then on WhatsApp the space appears at the top for a moment and then it turns white.
I tried with another site on a different server (which I did not) and on WhatsApp you can see the preview with title, description and photos.
Could it depend on the chmode of the photo which is 666?

enter image description here

enter image description here

Reasons:
  • Blacklisted phrase (1): Good day
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): 've the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: stefano errani

79762792

Date: 2025-09-12 10:01:55
Score: 2
Natty:
Report link

Open your package manager and upgrade App UI package to a newer version. Check the Version tab to see the latest versions. In my case App UI version was 1.3.1 and I've upgraded to 2.1.1.

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

79762791

Date: 2025-09-12 10:01:54
Score: 8 🚩
Natty: 6
Report link

I am a little bit late but I have faced the same problem trying to expose thanos-sidecar service to a remote Thanos querier.

Thanks to your help I managed to make the grpcurl list to work but unfortunately on the querier side I still have this error :

Did you find a way to make it work end to end ?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Did you find a way to
  • RegEx Blacklisted phrase (1): I still have this error
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Agarov

79762790

Date: 2025-09-12 10:00:53
Score: 6.5 🚩
Natty: 5
Report link

I am also looking for an answer to OP question. Anything would be appreciated. :)

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (2): I am also looking
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Soe Whaty

79762787

Date: 2025-09-12 09:57:51
Score: 4
Natty: 6
Report link

blablabla blebleble blublublu a blebleblebleble zuuubiiii

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

79762783

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

As other comments suggest, setting the height at 100% solves the issue, but introduces many others. What I found out is that it is worse when the keyboard is opened and closed.

Other thing I noticed on the header of my application, which has position: fixed but is being scrolled out of the view, is that if I get the bounding client rect the Y value is negative, so I tried something like this:

const handleScroll = () => {
  const headerElement = document.getElementById("app-header");
  const {y} = headerElement.getBoundingClientRect();
  if (y !== 0) {
    headerElement.style.paddingTop = `${-y}px`;
  }
};
window.addEventListener("scroll", handleScroll);

The problem here is that after ~800px are scrolled down the Y value is 0 again but the element is still outside of the screen, so this fix becomes useless.

I see this issue affecting multiple pages, from their own apple website to this stack overflow page and basically every page with a fixed element on it, but I cannot find this issue being tracked by Apple. Is there any support page where this has been reported?

Reasons:
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (1): Is there any
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Andres Ballester

79762780

Date: 2025-09-12 09:49:48
Score: 2
Natty:
Report link

Whether you're editing documents, reviewing content, or checking for plagiarism, Online Text Comparison Tool is a simple yet powerful solution for quickly detecting changes between two texts. With an intuitive, clean interface, this free online diff checker helps you compare two versions of text and highlight every single change—clearly and instantly.

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

79762778

Date: 2025-09-12 09:48:48
Score: 0.5
Natty:
Report link

You can also use Column comments directly in the model property. If repeating the string is a problem for you, extract it into a common const

const string usernameDescription = "This is the username";

[Comment(usernameDescription)]
[Description(usernameDescription)]
public string Username { get; set; }    
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Carlos Araujo

79762772

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

In case there's future travelers, I found this to be that kafka was disabled in my test configuration. Supposedly this stops the @Introduction method interceptor being registered during application startup, which then causes this cryptic exception to be thrown.

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

79762768

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

There is at least one case when one SHOULD NOT squash: renaming files AND changing them "too much" will make git lose the link between the original file and the renamed one.
In this scenario one should:

For code files I also prefer to separate formatting / changes from actual change so that it's directly visible what part of the logic has changed and this information would get buried within one big change when squashing (AND it makes cherry-picking much easier).

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

79762760

Date: 2025-09-12 09:30:43
Score: 1
Natty:
Report link
sim - find similarities in C, Java, Pascal, Modula-2, Lisp, Miranda, 8086 assembler code or in text files

Run sim_text(or appropiate utility for code) in the directory containing files and it outputs diff-like report. Debian package is similarity-tester.

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

79762754

Date: 2025-09-12 09:27:42
Score: 4.5
Natty: 5
Report link

can i share widget json file. think you

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can i share
  • Low reputation (1):
Posted by: user28937647

79762753

Date: 2025-09-12 09:26:42
Score: 1
Natty:
Report link

The minimal example was not representing the issue I had.
- the first comment was right. Without using of ptr_global, the example is useless for debugging. When using ptr_global, the value will be set. The issue was identical, so I expected the example to be representative. Somehow it was, but this is hard to explain.
- Nevertheless I was confused about accessing pointers and values in "data"- and "prog"-memory. I mixed it up unintentionally. Now I use the functions of "avr/pgmspace.h" for access.

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

79762750

Date: 2025-09-12 09:24:41
Score: 4
Natty:
Report link

i want to answer this question and i have new account so i cannot able to answer where something like this question is posted

solution

run following commands one by one in terminal of your project dir

flutter upgrade

flutter clean

flutter pub get

then attach your physical "ios" device and run

Reasons:
  • Blacklisted phrase (0.5): i cannot
  • RegEx Blacklisted phrase (1): i want
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mayuddin Rathod

79762739

Date: 2025-09-12 09:17:39
Score: 4
Natty:
Report link

you cant export like this

you need to import the component first and then export https://a810-dobnow.nyc.gov/Publish/DocumentStage/New%20License/L00032773/[email protected]/Social%20Security%20card/Social%20Security_bSJ5llzhhJCPAQhtMBaD_b72d54d113.pdf?V=81

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

79762736

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

Just found the solution as explained in my commentary in my original post !

The problem was that one of the IPs used by my server by default had been temporarily blacklisted (because shared through many clients) on the platform where I deployed my backend (Render).

So I just added a specific IP rolling system for those export requests and now it's working perfect, so maybe try it out or at least check your app's IP status !

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

79762731

Date: 2025-09-12 09:11:37
Score: 3
Natty:
Report link

This feature is not yet supported. see here

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: lei zhang

79762730

Date: 2025-09-12 09:10:36
Score: 1
Natty:
Report link

I had the same problem and found this workaround by chance.

The guest Windows 11 got Internet connection by these two steps (inside the guest vm):

  1. Edit the classic properties of IP version 4

  2. Set DNS to the IP address of the router

IP v4 DNS

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

79762724

Date: 2025-09-12 09:07:35
Score: 5
Natty:
Report link

It was related with this bug, a space instead of empty string in the back bar button for title did solve the problem: https://stackoverflow.com/questions/77764576/setting-backbuttondisplaymode-to-minimal-breaks-large-title-animation#:~:text=So%20we%20think,button%20title%20present%20at%20all

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Paulo Silva

79762708

Date: 2025-09-12 08:56:32
Score: 1.5
Natty:
Report link

Maybe i should have asked sooner

var invoiceService = new InvoiceService();
    var invoice = await invoiceService.GetAsync(subscription.LatestInvoice.Id, new InvoiceGetOptions
    {
      Expand = ["payments.data.payment.payment_intent"]
    });

    var clientSecret = invoice.Payments.Data.FirstOrDefault()?.Payment?.PaymentIntent?.ClientSecret;

This was my solution if anybody from stripe sees this can you provide better answer ? And maybe update c# examples they are written in .net 6 we are getting .net 10 an you could also use minimal apis now to mimic node style

Reasons:
  • RegEx Blacklisted phrase (2.5): can you provide
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Dživo Jelić

79762707

Date: 2025-09-12 08:55:32
Score: 1
Natty:
Report link

If you are having problems compiling a submodule (for example simple_knn) when using CUDA 11.8 and Visual Studio 2022, the issue is usually caused by an unsupported MSVC compiler version.
CUDA 11.8 officially supports MSVC 14.29 (VS2019) up to MSVC 14.34 (early VS2022). Newer compilers like MSVC 14.43 are not recognized and will trigger
SOLUTION :

  1. Open the Visual Studio Installer.

  2. Under Visual Studio 2022, click Modify.

  3. Go to the Individual components tab.

  4. Search for: MSVC v143 - VS 2022 C++ x64/x86 build tools (14.34 )

  5. Install it

  6. Re-run pip install submodules/diff-gaussian-rasterization

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

79762701

Date: 2025-09-12 08:47:30
Score: 1.5
Natty:
Report link

If you don't mind the temporary working tree change :

git stash & git stash apply

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

79762695

Date: 2025-09-12 08:42:29
Score: 1
Natty:
Report link

It is 2025, we are awaiting Windows 12, and still we have applications that use Video for Windows API and should be maintained because they "have worked admirably for many years". So I was tasked to write a VfW codec for a novel video compression format.

To help developers like me to master this relict technology, Microsoft supplies a full reference documentation on Video for Windows API. The section Using the Video for Windows, subsection Compressing Data gives a detailed account on how to compress the input data but stops short of teaching how to write compressed data to the avi file. To rule out possible errors of my VfW codec, I tried to make an AVI file with RLE compressed data, but equally failed: in every frame, the count of bytes written by AVIStreamWrite (returned with the plBytesWritten parameter) was a fixed value for all frames, this value greater than dwFrameSize parameter returned with a ICCompress call, which I pass through a AVIStreamWrite call with the cbBuffer parameter. An Internet search on this problem immediately presented me with a reference to the SO post Is it possible to encode using the MRLE codec on Video for Windows under Windows 8? by David Heffernan. This post immediately solved my problem:

We do still need to create the compressed stream, but we no longer write to it. Instead we write RLE8 encoded data to the raw stream.

As this SO question-and-answer stops short of writing a real RLE8 encoder (`Obviously in a real application, you'd need to write a real RLE8 encoder, but this proves the point`), and being grateful for this helpful QA, I post a code excerpt that does exactly use a real RLE8 encoder

    unsigned char* bits = new unsigned char[bmi->biSizeImage];
    LPVOID lpInput = (LPVOID)bits;
    HRESULT hr;
    for (int frame = 0; frame < nframes; frame++)
    {
        for (int i = 0; i < bmi->biSizeImage; ++i)
            bits[i] = (frame + 1) * ((i + 5) / 5);
        ICCompress(hIC, 0, lpbiOut, lpOutput, lpbiIn, lpInput,
            &dwCkID, &dwCompFlags, frame, bmi->biSizeImage, dwQuality, NULL, NULL);
        hr = AVIStreamWrite(pStream, frame, 1, lpOutput, lpbiOut->biSizeImage,
            AVIIF_KEYFRAME, &lSamplesWritten, &lBytesWritten);
        if (hr != S_OK)
        {
            std::cout << "AVIStreamWrite failed" << std::endl;
            return 1;
        }
    }

I'm going to replace the comment line `// Write compressed data to the AVI file` of the Using the Video for Windows' subsection Compressing Data with this code sample as soon as possible. For completeness, here I attach the code sample of how to write compressed data to the AVI file:

// runlength_encoding.cpp : This file contains the 'main' function. 
// Program execution begins and ends there.
// based on learn.microsoft.com articles on Using the Video Compression Manager 
// and SO post https://stackoverflow.com/questions/22765194/
// also see 
// https://learn.microsoft.com/en-us/windows/win32/api/wingdi/ns-wingdi-bitmapinfoheader
// why bmi size should be augmented by the color table size
// `However, some legacy components might assume that a color table is present. 
// `Therefore, if you are allocating 
// `a BITMAPINFOHEADER structure, it is recommended to allocate space for a color table 
// `when the bit depth is 8 bpp or less, even if the color table is not used.`
//

#include <Windows.h>
#include <vfw.h>
#include <stdlib.h>
#include <iostream>

#pragma comment(lib, "vfw32.lib")

int main()
{
    RECT frame = { 0, 0, 64, 8 };
    int nframes = 10;

    const char* filename = "rlenc.avi";
    FILE* f;
    errno_t err = fopen_s(&f, filename, "wb");
    if (err)
    {
        printf("couldn't open file for write\n");
        return 0;
    }
    fclose(f);

    AVIFileInit();

    IAVIFile* pFile;
    if (AVIFileOpenA(&pFile, filename, OF_CREATE | OF_WRITE, NULL) != 0)
    {
        std::cout << "AVIFileOpen failed" << std::endl;
        return 1;
    }

    AVISTREAMINFO si = { 0 };
    si.fccType = streamtypeVIDEO;
    si.fccHandler = mmioFOURCC('M', 'R', 'L', 'E');
    si.dwScale = 1;
    si.dwRate = 15;
    si.dwQuality = (DWORD)-1;
    si.rcFrame = frame;
    IAVIStream* pStream;
    if (AVIFileCreateStream(pFile, &pStream, &si) != 0)
    {
        std::cout << "AVIFileCreateStream failed" << std::endl;
        return 1;
    }

    AVICOMPRESSOPTIONS co = { 0 };
    co.fccType = si.fccType;
    co.fccHandler = si.fccHandler;
    co.dwQuality = si.dwQuality;
    IAVIStream* pCompressedStream;
    if (AVIMakeCompressedStream(&pCompressedStream, pStream, &co, NULL) != 0)
    {
        std::cout << "AVIMakeCompressedStream failed" << std::endl;
        return 1;
    }

    BITMAPINFOHEADER    bihIn, bihOut;
    HIC                 hIC;

    bihIn.biSize = bihOut.biSize = sizeof(BITMAPINFOHEADER);
    bihIn.biWidth = bihOut.biWidth = si.rcFrame.right;
    bihIn.biHeight = bihOut.biHeight = si.rcFrame.bottom;
    bihIn.biPlanes = bihOut.biPlanes = 1;
    bihIn.biCompression = BI_RGB;        // standard RGB bitmap for input 
    bihOut.biCompression = BI_RLE8;      // 8-bit RLE for output format 
    bihIn.biBitCount = bihOut.biBitCount = 8;  // 8 bits-per-pixel format 
    bihIn.biSizeImage = bihIn.biWidth * bihIn.biHeight;
    bihOut.biSizeImage = 0;
    bihIn.biXPelsPerMeter = bihIn.biYPelsPerMeter =
        bihOut.biXPelsPerMeter = bihOut.biYPelsPerMeter = 0;
    bihIn.biClrUsed = bihIn.biClrImportant =
        bihOut.biClrUsed = bihOut.biClrImportant = 256;

    hIC = ICLocate(ICTYPE_VIDEO, 0L,
        (LPBITMAPINFOHEADER)&bihIn,
        (LPBITMAPINFOHEADER)&bihOut, ICMODE_COMPRESS);

    ICINFO ICInfo;
    ICGetInfo(hIC, &ICInfo, sizeof(ICInfo));

    DWORD dwKeyFrameRate, dwQuality;
    dwKeyFrameRate = ICGetDefaultKeyFrameRate(hIC);
    dwQuality = ICGetDefaultQuality(hIC);

    LPBITMAPINFOHEADER   lpbiIn, lpbiOut;

    lpbiIn = &bihIn;

    DWORD dwFormatSize = ICCompressGetFormatSize(hIC, lpbiIn);
    HGLOBAL h = GlobalAlloc(GHND, dwFormatSize);
    lpbiOut = (LPBITMAPINFOHEADER)GlobalLock(h);
    ICCompressGetFormat(hIC, lpbiIn, lpbiOut);

    LPVOID lpOutput = 0;
    DWORD dwCompressBufferSize = 0;
    if (ICCompressQuery(hIC, lpbiIn, lpbiOut) == ICERR_OK)
    {
        // Find the worst-case buffer size. 
        dwCompressBufferSize = ICCompressGetSize(hIC, lpbiIn, lpbiOut);

        // Allocate a buffer and get lpOutput to point to it. 
        h = GlobalAlloc(GHND, dwCompressBufferSize);
        lpOutput = (LPVOID)GlobalLock(h);
    }

    DWORD dwCkID;
    DWORD dwCompFlags = AVIIF_KEYFRAME;
    LONG  lNumFrames = 15, lFrameNum = 0;
    LONG lSamplesWritten = 0;
    LONG lBytesWritten = 0;

    size_t bmiSize = sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD);
    BITMAPINFOHEADER* bmi = (BITMAPINFOHEADER*)malloc(bmiSize);
    ZeroMemory(bmi, bmiSize);
    bmi->biSize = sizeof(BITMAPINFOHEADER);
    bmi->biWidth = si.rcFrame.right;
    bmi->biHeight = si.rcFrame.bottom;
    bmi->biPlanes = 1;
    bmi->biBitCount = 8;
    bmi->biCompression = BI_RGB;
    bmi->biSizeImage = bmi->biWidth * bmi->biHeight;
    if (AVIStreamSetFormat(pCompressedStream, 0, bmi, bmiSize) != 0)
    {
        std::cout << "AVIStreamSetFormat failed" << std::endl;
        return 1;
    }

    unsigned char* bits = new unsigned char[bmi->biSizeImage];
    LPVOID lpInput = (LPVOID)bits;
    HRESULT hr;
    for (int frame = 0; frame < nframes; frame++)
    {
        for (int i = 0; i < bmi->biSizeImage; ++i)
            bits[i] = (frame + 1) * ((i + 5) / 5);
        ICCompress(hIC, 0, lpbiOut, lpOutput, lpbiIn, lpInput,
            &dwCkID, &dwCompFlags, frame, bmi->biSizeImage, dwQuality, NULL, NULL);
        hr = AVIStreamWrite(pStream, frame, 1, lpOutput, lpbiOut->biSizeImage,
            AVIIF_KEYFRAME, &lSamplesWritten, &lBytesWritten);
        if (hr != S_OK)
        {
            std::cout << "AVIStreamWrite failed" << std::endl;
            return 1;
        }
    }

    if (AVIStreamRelease(pCompressedStream) != 0 || AVIStreamRelease(pStream) != 0)
    {
        std::cout << "AVIStreamRelease failed" << std::endl;
        return 1;
    }
    if (AVIFileRelease(pFile) != 0)
    {
        std::cout << "AVIFileRelease failed" << std::endl;
        return 1;
    }

    std::cout << "Succeeded" << std::endl;
    return 0;
}
Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: V.V.T

79762688

Date: 2025-09-12 08:38:29
Score: 0.5
Natty:
Report link

The given solutions are wrong as it will match the following and come with a wrong result:

ABCD

ABCDE

It will duly delete both ABCD and leave the E

The correct solution is: (obvioulsy first sort the whole file alphabetically)

^(.*)(\R\1)+\R

and replace with blank (i.e. nothing)

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: user3211098

79762667

Date: 2025-09-12 08:11:21
Score: 1.5
Natty:
Report link

Here are the missing files for your Botanic Bazar e‑commerce website. কপি করে আলাদা আলাদা ফাইলে রেখে দিন ⬇️


index.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Botanic Bazar</title>
  </head>
  <body>
    <div id="root"></div>
    <script type="module" src="/main.jsx"></script>
  </body>
</html>

package.json

{
  "name": "botanic-bazar",
  "version": "1.0.0",
  "private": true,
  "scripts": {
    "dev": "vite",
    "build": "vite build",
    "preview": "vite preview"
  },
  "dependencies": {
    "lucide-react": "^0.452.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0"
  },
  "devDependencies": {
    "@vitejs/plugin-react": "^4.2.1",
    "tailwindcss": "^3.4.0",
    "vite": "^5.2.0"
  }
}

main.jsx

import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./index.css";

ReactDOM.createRoot(document.getElementById("root")).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);

index.css (Tailwind setup)

@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  font-family: sans-serif;
}

👉 এবার কী করবেন:

  1. সব ফাইল এক ফোল্ডারে রাখুন (যেমন botanic-bazar)।

  2. টার্মিনাল খুলে লিখুন:

    npm install
    npm run dev
    
    
  3. ব্রাউজারে গিয়ে http://localhost:5173 ওপেন করলে সাইট চালু হবে ✅


আপনি কি চান আমি আপনাকে Vercel-এ আপলোড করার স্টেপগুলো স্ক্রিনশট/চিত্র আকারে সাজিয়ে দিই? তাহলে একদম ভিজ্যুয়ালি ফলো করতে পারবেন।

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: Tapas Pal

79762665

Date: 2025-09-12 08:09:20
Score: 2
Natty:
Report link

I faced the same issue today. Steps to solve:

  1. Open new vsCode

  2. Disable and remove the WSL extension from Visual Studio Code

  3. Uncheck auto update for the WSL extension

  4. Click on the settings gear and install the older version

Fixed!

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

79762661

Date: 2025-09-12 08:06:19
Score: 2
Natty:
Report link

I had maybe similar SqlBuilTask failures, without detailed errors, on VS2019 and after renaming my projects and folders, so this may not be the same case, but ..

for me it helped when I deleted all *.dbmdl and *.jfm files within solution folder/subfolders, and then restarted VS and rebuild.

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

79762656

Date: 2025-09-12 07:59:18
Score: 1
Natty:
Report link

😡 This is not secure:

"SmtpSettings": {
  "Host": "smtp.office365.com",
  "Port": 111,
  "Username": "[email protected]",
  "Password": "mymymy123*123*123",
  "EnableSsl": true
}

😇 This is more secure:

"SmtpSettings": {
  "Host": "smtp.office365.com",
  "Port": 111,
  "Username": "[email protected]",
  "Password": "hashedPassword(like: 7uhjk43c356xrer1)",
  "EnableSsl": true
}

You should not set critical datas like passwords, (even usernames), in your config files. It can be dockerfile or appsettings.json. You should not.

You must create encrypted values. When you read config, you convert hashed data to raw value.

✍️ See this: https://stackoverflow.com/a/10177020/19262548

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muhammed YILMAZ