79663908

Date: 2025-06-12 17:25:28
Score: 3.5
Natty:
Report link

This seems to be related the Astro VSCode extension. Possibly a bug. I was able to get rid of it by disabling the extension, reloading the window and re-enabling.

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

79663906

Date: 2025-06-12 17:23:27
Score: 5.5
Natty: 4.5
Report link

enter image description here
this will solve your problem

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aakash Nirwan

79663901

Date: 2025-06-12 17:19:26
Score: 3
Natty:
Report link

There are a lot of Invoke-RestMethod commands in these steps, could you break and narrow down to which invoke command is failing? That would make it easier to figure out and fix.

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Prathista Ilango

79663900

Date: 2025-06-12 17:19:26
Score: 1
Natty:
Report link

Google Search has a webpage where you can check the sitemap you produced with Django. It's not directly accessible if you don't know the steps to reach it. Please save the file sitemap.xml and submit it. This should enable you to debug your error.

The Explanation can be found here:

The webpage for the test of sitemaps can be found here:

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

79663898

Date: 2025-06-12 17:16:25
Score: 1
Natty:
Report link

When I faced issues running a calculator using a YACC compiler, the problem usually came down to syntax errors, missing tokens, or linking issues between YACC and the accompanying lexical analyzer (typically written using Lex or Flex).

First, I made sure my .y file had a proper grammar definition for expressions, numbers, and operators. Then, I confirmed that the tokens used in the YACC file were correctly defined in the Lex file. One common mistake I made early on was mismatching token names—for example, using NUMBER in YACC but defining it as num in Lex.

Another issue I ran into was forgetting to compile and link both files properly. The correct order matters:

lex calc.l

yacc -d calc.y

cc lex.yy.c y.tab.c -o calc -ll

If you skip the -d flag with YACC, the y.tab.h file (which defines tokens) won’t be generated, leading to missing token definition errors during compilation.

Also, make sure you’ve handled precedence and associativity rules for operators. If you get shift/reduce or reduce/reduce warnings, it's often because operator precedence isn't clearly defined.

Debugging with yydebug or inserting print statements helped me trace how tokens were parsed and identify where things were going wrong.

If you’re stuck, feel free to share your .y and .l files—happy to help you debug.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Leo

79663894

Date: 2025-06-12 17:15:24
Score: 0.5
Natty:
Report link

You need to explicitly launch the 64-bit version of mmc.exe with the path to dsa.msc, bypassing redirection.

objShell.Run "C:\Windows\SysNative\mmc.exe dsa.msc", 1, False

SysNative is a virtual alias that allows 32-bit processes to access the real 64-bit System32 folder.

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

79663886

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

If the CPython 3.8.5 installation doesn’t show up in “Programs and Features,” then yes, manually removing it is the way to go. Here’s what you should do to completely remove it:

1. Delete the installation folder: This is usually something like C:\Python38 or wherever it was installed.

2. Clean up the PATH: Remove any references to that Python version in the System Environment Variables (like PATH and PYTHONPATH).

3. Registry cleanup: Open regedit and check for any leftover entries: HKEY_LOCAL_MACHINE\SOFTWARE\Python HKEY_CURRENT_USER\Software\Python. You can also search the registry for PythonCore\3.8 and carefully remove it if it points to this specific install.

4. File associations (optional): If .py or .pyw files are still opening with the old Python version, you might want to reconfigure file associations.

Once you’ve done all that, your system should be clean and ready for a fresh Python install without conflicts. Just make sure to restart your PC afterward to ensure all environment variables and registry changes take effect.

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

79663882

Date: 2025-06-12 16:59:21
Score: 0.5
Natty:
Report link

Nvm figured it out, the problem was that I was importing org.jetbrains.compose.ui.tooling.preview.Preview, but instead I should've been importing androidx.compose.desktop.ui.tooling.preview.Preview. After changing the third import line in my example code, it worked.

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

79663879

Date: 2025-06-12 16:58:21
Score: 0.5
Natty:
Report link

I found out that `stack` has its separate `msys2` which is not visible by `cabal`.

I installed `openblas` in msys2 here `C:\ghcup\msys64` as described and it is working now.

Another important point is that `openblas` flage should be used: `cabal run -f openblas`.

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

79663874

Date: 2025-06-12 16:54:19
Score: 4
Natty: 5.5
Report link

I can't properly know how it works? I'm looking at Canva APK.

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

79663867

Date: 2025-06-12 16:45:17
Score: 1.5
Natty:
Report link

Upgrading mintty fixes this bug.

I was experiencing this when using a very old Cygwin install (pre-2015) on Windows and was using the undo hack. We just realized recently that upgrading Cygwin (which upgrades mintty) fixes this issue. The old Cygwin was using mintty 1.1.1 and the latest uses mintty 3.7.8. mintty 3.7.8 does not have this issue and both the old and the new were both using VIM 8.2. So the mintty side upgrade fixes the bug.

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

79663865

Date: 2025-06-12 16:44:16
Score: 7.5
Natty: 7
Report link

I have the same problem... where do you inclut the code string address ? I'm not a programmer...

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rene Kauffmann

79663864

Date: 2025-06-12 16:44:16
Score: 4.5
Natty: 6
Report link

What do you mean by arrow between two lines and not two events? To get the arrow in general you will need to create a flow entity if that is the question.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What do you mean
  • Low reputation (1):
Posted by: Pri

79663846

Date: 2025-06-12 16:24:10
Score: 1
Natty:
Report link

This could very well be an implementation issue. sweights used to support only unbinned fits, as for a long time unbinned fits where the only possibility in zfit. It could very well be possible that, as binned fits became available, simply nobody thought of this option.

I would therefore suggest to head over to hepstats and report it there or better, suggest a fix. To try out what works, simply change it locally (it's probably an easy fix?) and suggest it in an issue, most likely a PR will gladly be accepted.

Reasons:
  • RegEx Blacklisted phrase (1.5): fix?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: jonas-eschle

79663845

Date: 2025-06-12 16:21:08
Score: 8 🚩
Natty: 5
Report link

I’m encountering an issue when using the terra package in R in visual code within a Conda environment. When I run R from the interactive terminal (e.g., directly launching R or using the R extension in VSCode), I get the following error when assigning a CRS to a raster:

GDAL Error

r <- rast(nrows=10, ncols=10, xmin=0, xmax=10, ymin=0, ymax=10, crs="EPSG:4326")
Error: [rast] empty srs
In addition: Warning message:
In new_CppObject_xp(fields$.module, fields$.pointer, ...) :
  GDAL Error 1: PROJ: proj_create_from_database: Cannot find proj.db

However, when I run commands via a bash script or directly in the bash terminal, I dont have problems and I can verify that the proj.db file exists and that the PROJ_LIB environment variable is correctly set.

Here’s what I’ve tried so far:

Despite this, the error persists only when running R interactively or inside VSCode, but not when running commands from bash or shell scripts.

Does anyone know why the interactive environment and bash might behave differently with respect to environment variables and locating proj.db? How can I ensure that R correctly recognizes proj.db in all contexts?

Thanks in advance for any help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): any help
  • RegEx Blacklisted phrase (2): Does anyone know
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1): I get the following error
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Claudia Verónica Leal Medina

79663843

Date: 2025-06-12 16:20:08
Score: 3
Natty:
Report link

Edit: I was able to figure it out, I needed to download the newest version of base R, not RStudio -- now install.packages(ggbrace) works!

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jackson

79663837

Date: 2025-06-12 16:16:06
Score: 3
Natty:
Report link

it happens to me tool in File > Add Package Dependencies
enter image description here

I forgot to choose in "Add to Target", right now its None, so it wont be able to find by compiler and complaining "No such module 'Stripe"

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

79663833

Date: 2025-06-12 16:12:04
Score: 3
Natty:
Report link

You have Pygame Zero mode turned on.

In the "Run" menu, there is an option for "Pygame Zero mode". Uncheck this option, and the screen will not appear. enter image description here

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

79663826

Date: 2025-06-12 16:04:02
Score: 0.5
Natty:
Report link

Why does digits end up empty

The glob expression [^0-9]* matches a non-digit characters [^0-9] and then matches any characters *. Just like echo [^0-9]* would match a file named abc-123.

How to get only the digits from a bash variable?

Remove the erroneous *.

digits=${both//[^0-9]/}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Why do
  • High reputation (-2):
Posted by: KamilCuk

79663824

Date: 2025-06-12 16:01:02
Score: 2.5
Natty:
Report link

<?php

if ($Autopost == "1");

{

<body onLoad="mail.submit()">

<form method="POST" name="mail" class="adjacent" action="./Script/addmaillist.php">

<input type="hidden" name="email" value="<?php echo $email; ?>">

<input type="hidden" name="genre" value="<?php echo $genre; ?>">

</form>

}

?>

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

79663815

Date: 2025-06-12 15:50:59
Score: 1.5
Natty:
Report link

I solved the problem by moving the @SessionScoped annotation to the method I was implementing.

That annotation is not usable in the context of the whole interface.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @SessionScoped
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Valerio Storch

79663810

Date: 2025-06-12 15:45:58
Score: 2
Natty:
Report link

My company is a little odd in that we use the first 2 numbers as the "major release". The first number is the 2 digit year, and the second number is the release of that year, so for a "24.2.1.3" release, "24.2" is the major, ".1" is the minor, and ".3" is a patch. All of this is internal, most of our customers use our service to present their web sites, so this is mostly for our internal teams to keep track of what version each of our clients are on. Even for those clients that host their own sites still use our support teams, so knowing what version of the software they are on is critical to us and them.

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

79663808

Date: 2025-06-12 15:44:58
Score: 1
Natty:
Report link

The quick fix is to change 'As Visio.Application' to 'As Object', and change visOpenRW to 32

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

79663803

Date: 2025-06-12 15:38:56
Score: 1
Natty:
Report link

For any Windows users: cpan isn't available in Git Bash, so you can create /usr/share/perl5/vendor_perl/Authen/SASL.pm manually from the source with nano and an administrative shell. I still don't have send-mail working though - seems like SMTP support isn't great for outlook.com accounts with aliases.

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

79663794

Date: 2025-06-12 15:30:53
Score: 13 🚩
Natty: 6.5
Report link

Excuse me, how were you able to solve the problem? I'm having the same problem.

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Moisés Romero

79663786

Date: 2025-06-12 15:27:47
Score: 6.5 🚩
Natty:
Report link

I have the same issue, I tried "./file1/file2/file3.jpg","/file1/file2/file3.jpg", "file1/file2/file3.jpg" nothing works when I open it from my file system

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: b. w.

79663784

Date: 2025-06-12 15:26:46
Score: 4.5
Natty:
Report link

Function.executeUserEntryPoint

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bruno Daniel

79663782

Date: 2025-06-12 15:24:45
Score: 3
Natty:
Report link

The Reason I Got the error because of some extension on my Google Chrome just read the error what kind and also check the name of the location where it's located and find it what kind of and where's the folder located

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

79663781

Date: 2025-06-12 15:24:45
Score: 3.5
Natty:
Report link

After another attempt at updating the SDK from 2.3 to 3.2 and changing to FirebaseMessaging.DefaultInstance.SendEachForMulticastAsync(message) it is now working.

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

79663780

Date: 2025-06-12 15:24:45
Score: 0.5
Natty:
Report link

In newer versions of Dnn, you can access directly the Profile property of UserInfo:

UserInfo user = PortalSettings.Current.UserInfo;
if(user.Profile != null)
{
string city = user.Profile.City;
string country = user.Profile.Country;
// etc...
}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mario Vázquez

79663774

Date: 2025-06-12 15:20:44
Score: 2
Natty:
Report link

When you want your website to pass INP Mobile Web Vitals

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • High reputation (-1):
Posted by: Denis

79663771

Date: 2025-06-12 15:19:44
Score: 5
Natty:
Report link

This is working in 2025 with python==3.12. and mitmproxy==12.1.1

https://stackoverflow.com/a/79660673/13312704

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ivorybabe

79663761

Date: 2025-06-12 15:11:41
Score: 1
Natty:
Report link

In your database config file
app/Config/Database.php
add the following to your $default connection array:

'schema'   => 'rqhse',

This sets the PostgreSQL search_path to rqhse, public automatically when connecting.

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

79663759

Date: 2025-06-12 15:11:41
Score: 0.5
Natty:
Report link

A session is valid for 24 hours. Docs unfortunately don't include this information.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Beppe C

79663755

Date: 2025-06-12 15:09:40
Score: 5
Natty:
Report link

@Mikael Öhman Sir, I tried running this code

begin
    using QuadGK, IntervalArithmetic
    f(x) = interval(1,2)/(1+interval(2,3)*x)
    quadgk(f, 0, 1)
end

but got this error

ArgumentError: `isnan` is purposely not supported for intervals. See instead `isnai`

Stacktrace:
  [1] isnan(::Interval{Float64})
    @ IntervalArithmetic ~/.julia/packages/IntervalArithmetic/wyiEl/src/intervals/real_interface.jl:110
  [2] evalrule(f::typeof(f), a::Int64, b::Int64, x::Vector{Float64}, w::Vector{Float64}, wg::Vector{Float64}, nrm::typeof(LinearAlgebra.norm))
    @ QuadGK ~/.julia/packages/QuadGK/7rND3/src/evalrule.jl:38
  [3] (::QuadGK.var"#8#11"{typeof(f), Tuple{Int64, Int64}, typeof(LinearAlgebra.norm), Vector{Float64}, Vector{Float64}, Vector{Float64}})(i::Int64)
    @ QuadGK ~/.julia/packages/QuadGK/7rND3/src/adapt.jl:54
  [4] ntuple
    @ ./ntuple.jl:48 [inlined]
  [5] do_quadgk(f::typeof(f), s::Tuple{Int64, Int64}, n::Int64, atol::Nothing, rtol::Nothing, maxevals::Int64, nrm::typeof(LinearAlgebra.norm), _segbuf::Nothing, eval_segbuf::Nothing)
    @ QuadGK ~/.julia/packages/QuadGK/7rND3/src/adapt.jl:52
  [6] (::QuadGK.var"#50#51"{Nothing, Nothing, Int64, Int64, typeof(LinearAlgebra.norm), Nothing, Nothing})(f::Function, s::Tuple{Int64, Int64}, ::Function)
    @ QuadGK ~/.julia/packages/QuadGK/7rND3/src/api.jl:83
  [7] handle_infinities
    @ ~/.julia/packages/QuadGK/7rND3/src/adapt.jl:189 [inlined]
  [8] #quadgk#49
    @ ~/.julia/packages/QuadGK/7rND3/src/api.jl:82 [inlined]
  [9] quadgk(::Function, ::Int64, ::Int64)
    @ QuadGK ~/.julia/packages/QuadGK/7rND3/src/api.jl:80
 [10] top-level scope
    @ ~/Documents/Julia Jupyter Codes/Interval Integration/jl_notebook_cell_df34fa98e69747e1a8f8a730347b8e2f_W4sZmlsZQ==.jl:4

How to resolve this issue?

Reasons:
  • RegEx Blacklisted phrase (1.5): How to resolve this issue?
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Sir
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: RPS

79663743

Date: 2025-06-12 15:01:37
Score: 3.5
Natty:
Report link

I've resolved this, by exlcuding the header in the first place, leaving me with only checkboxes in the range, which I can then set their value

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

79663741

Date: 2025-06-12 14:58:36
Score: 2.5
Natty:
Report link

Meanwhile you have this option -sColorConversionStrategy=UseDeviceIndependentColor

Maybe that helps?

See also this bug report: https://bugs.ghostscript.com/show_bug.cgi?id=707450

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

79663737

Date: 2025-06-12 14:56:35
Score: 0.5
Natty:
Report link

For System.Text.Json these are your options, give them a try:

public class Person {
  [JsonInclude] public string Name;
  public string Role { get; set; }
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: AlanK

79663722

Date: 2025-06-12 14:47:32
Score: 1
Natty:
Report link

In matplotlib version 3.10 I could solve this issue using the length argument: plt.quiver(..., length=0.01).

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

79663720

Date: 2025-06-12 14:44:31
Score: 2.5
Natty:
Report link

Just now, AWS added an options to disable session tags. This options is found in the "Pod Identity Association" section of the Access section of the EKS cluster.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Artium

79663713

Date: 2025-06-12 14:40:30
Score: 2.5
Natty:
Report link

A quick fix that worked for me was to uninstall and then reinstall the Shopify.ruby-extensions-pack extension.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: aymen mehrez

79663705

Date: 2025-06-12 14:37:29
Score: 3.5
Natty:
Report link

thats called pagination you should learn it and you will get your answer (pagination like infinite scrolling,tabular pagination...)

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

79663704

Date: 2025-06-12 14:35:28
Score: 1.5
Natty:
Report link

I don't know why but I can't get this to work. I think it's in my data.

I created a collection

ClearCollect(MyData;Filter(MySource;!IsError(DateValue(FabDate))))

to filter the "bad" lines and it is OK.

Now my gallery items are:

GroupBy(Filter(MyData; DateValue(FabDate)<= Today());'Machine';GroupRef)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Medestrac

79663700

Date: 2025-06-12 14:33:28
Score: 2
Natty:
Report link

You can also take a look at using PCT , either to run the .P that you wrote or using the https://github.com/Riverside-Software/pct/wiki/PCTSchemaDoc task .

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

79663694

Date: 2025-06-12 14:29:27
Score: 1
Natty:
Report link

You're getting the error because your id column in MySQL isn't set as AUTO_INCREMENT. Even though you use @GeneratedValue, the DB itself must be configured to auto-increment. let Hibernate recreate the table with:

spring.jpa.hibernate.ddl-auto=update

or you can alter table to make it support auto-increment :

ALTER TABLE role MODIFY id BIGINT AUTO_INCREMENT;

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @GeneratedValue
  • Low reputation (0.5):
Posted by: gdoura mohamed

79663688

Date: 2025-06-12 14:27:26
Score: 2
Natty:
Report link

Look at Opaque pointer; in the book Design Patterns, it's referred to by the term Cheshire Cat, which is also commonly known as the Pimpl idiom. This Stack Overflow answer provides an explanation of its practical usage.

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

79663687

Date: 2025-06-12 14:27:26
Score: 3.5
Natty:
Report link

It looks similar to a known issue in JetBrains AI Assistant: https://youtrack.jetbrains.com/issue/LLM-16647. The fix should be available in the latest 2025.2 EAP build: https://www.jetbrains.com/rider/nextversion.

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

79663685

Date: 2025-06-12 14:24:25
Score: 1
Natty:
Report link

I'm trying to apply this to my Windows 10 sandbox and all goes well for steps #1 and #2 but Step #3 fails. Any ideas?

dism /online /Cleanup-Image /RestoreHealth
PS C:\Windows\system32> dism /online /Cleanup-Image /RestoreHealth

Deployment Image Servicing and Management tool
Version: 10.0.19041.3636

Image Version: 10.0.19041.5917


Error: 87

The cleanup-image option is unknown.
For more information, refer to the help by running DISM.exe /?.

The DISM log file can be found at C:\Windows\Logs\DISM\dism.log

I can provide the dism.log if necessary but I think the problem is that there is no cleanup-image option for dism, I only see related Cleanup-Mountpointsand Cleanup-Wim which I don't know if they serve the same purpose.

PS C:\Windows\system32> .\Dism.exe /?

Deployment Image Servicing and Management tool
Version: 10.0.19041.3636


DISM.exe [dism_options] {Imaging_command} [<Imaging_arguments>]
DISM.exe {/Image:<path_to_offline_image> | /Online} [dism_options]
         {servicing_command} [<servicing_arguments>]

DESCRIPTION:

  DISM enumerates, installs, uninstalls, configures, and updates features
  and packages in Windows images. The commands that are available depend
  on the image being serviced and whether the image is offline or running.


GENERIC IMAGING COMMANDS:

  /Split-Image            - Splits an existing .wim file into multiple
                            read-only split WIM (SWM) files.
  /Apply-Image            - Applies an image.
  /Get-MountedImageInfo   - Displays information about mounted WIM and VHD
                            images.
  /Get-ImageInfo          - Displays information about images in a WIM, a VHD
                            or a FFU file.
  /Commit-Image           - Saves changes to a mounted WIM or VHD image.
  /Unmount-Image          - Unmounts a mounted WIM or VHD image.
  /Mount-Image            - Mounts an image from a WIM or VHD file.
  /Remount-Image          - Recovers an orphaned image mount directory.
  /Cleanup-Mountpoints    - Deletes resources associated with corrupted
                            mounted images.

WIM COMMANDS:

  /Apply-CustomDataImage  - Dehydrates files contained in the custom data image.
  /Capture-CustomImage    - Captures customizations into a delta WIM file on a
                            WIMBoot system. Captured directories include all
                            subfolders and data.
  /Get-WIMBootEntry       - Displays WIMBoot configuration entries for the
                            specified disk volume.
  /Update-WIMBootEntry    - Updates WIMBoot configuration entry for the
                            specified disk volume.
  /List-Image             - Displays a list of the files and folders in a
                            specified image.
  /Delete-Image           - Deletes the specified volume image from a WIM file
                            that has multiple volume images.
  /Export-Image           - Exports a copy of the specified image to another
                            file.
  /Append-Image           - Adds another image to a WIM file.
  /Capture-Image          - Captures an image of a drive into a new WIM file.
                            Captured directories include all subfolders and
                            data.
  /Get-MountedWimInfo     - Displays information about mounted WIM images.
  /Get-WimInfo            - Displays information about images in a WIM file.
  /Commit-Wim             - Saves changes to a mounted WIM image.
  /Unmount-Wim            - Unmounts a mounted WIM image.
  /Mount-Wim              - Mounts an image from a WIM file.
  /Remount-Wim            - Recovers an orphaned WIM mount directory.
  /Cleanup-Wim            - Deletes resources associated with mounted WIM
                            images that are corrupted.

FFU COMMANDS:

  /Capture-Ffu            - Captures a physical disk image into a new FFU file.
  /Apply-Ffu              - Applies an .ffu image.
  /Split-Ffu              - Splits an existing .ffu file into multiple read-only
                            split FFU files.
  /Optimize-Ffu           - Optimizes a FFU file so that it can be applied to storage
                            of a different size.

IMAGE SPECIFICATIONS:

  /Online                 - Targets the running operating system.
  /Image                  - Specifies the path to the root directory of an
                            offline Windows image.

DISM OPTIONS:

  /English                - Displays command line output in English.
  /Format                 - Specifies the report output format.
  /WinDir                 - Specifies the path to the Windows directory.
  /SysDriveDir            - Specifies the path to the system-loader file named
                            BootMgr.
  /LogPath                - Specifies the logfile path.
  /LogLevel               - Specifies the output level shown in the log (1-4).
  /NoRestart              - Suppresses automatic reboots and reboot prompts.
  /Quiet                  - Suppresses all output except for error messages.
  /ScratchDir             - Specifies the path to a scratch directory.
Reasons:
  • Blacklisted phrase (1): Any ideas
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: fernan

79663670

Date: 2025-06-12 14:14:21
Score: 3
Natty:
Report link

I had a similar problem due to a "terminate-unmatched-request" set as true in my API Management. Turns out that swagger and server were not exchanging security-policies properly and the API management terminated, as the attribute says, the unmatched request. I am still investigating details, but these links, I hope, may help you.
https://learn.microsoft.com/en-us/azure/api-management/cors-policy#attributes
https://learn.microsoft.com/en-us/answers/questions/1527379/empty-response-body-in-api-management-developer-po

Reasons:
  • Blacklisted phrase (1): these links
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Pablo

79663669

Date: 2025-06-12 14:14:21
Score: 1
Natty:
Report link
const checkLocale = async (lang: string) => {

    const {[lang]: locale} = await import('date-fns/locale');

    if (locale) {
        registerLocale(lang, locale)
        setDefaultLocale(lang);
    }

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

79663668

Date: 2025-06-12 14:12:21
Score: 3.5
Natty:
Report link

What is the definition of AppState? Does it use the singleton pattern?
What does "add a variables" refer to?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What is the
  • Low reputation (0.5):
Posted by: RockyDon

79663663

Date: 2025-06-12 14:08:20
Score: 1.5
Natty:
Report link

You can also change it via the CLI

npm run dev -- --port 3000
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Victor Eke

79663660

Date: 2025-06-12 14:07:19
Score: 13.5 🚩
Natty: 5.5
Report link

I have the exact same question, were you able to solve it?

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same question
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jzzj eight

79663658

Date: 2025-06-12 14:06:18
Score: 2.5
Natty:
Report link

You should use the `validate` step instead, see https://docs.gatling.io/concepts/checks/#validate

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Stéphane LANDELLE

79663650

Date: 2025-06-12 14:00:16
Score: 2.5
Natty:
Report link

add "-Xbinary=stripDebugInfoFromNativeLibs=false" this param to Konan compile maybe work. and you should add `kotlin.native.isNativeRuntimeDebugInfoEnabled=true` line to `local.properties` file and rebuild Kotlin/Native runtime

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

79663625

Date: 2025-06-12 13:40:10
Score: 1.5
Natty:
Report link

Found the answer myself: use regsub on host

http-request set-var(txn.host) hdr(Host)
acl internal_set var(txn.host) -m end -i .internal.example.net

http-request redirect code 301 prefix https://%[var(txn.host),regsub(example.net,internal.example.net,g)] unless internal_set
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Hans-Georg Bork

79663624

Date: 2025-06-12 13:40:10
Score: 2.5
Natty:
Report link

I was experiencing this same issue, and was able to resolve it by reducing the number of slots in the Airflow pool. Initially beginning with a single digit number of slots, and then building up to a sustainable number.

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

79663623

Date: 2025-06-12 13:40:10
Score: 1
Natty:
Report link

Fix for Project Explorer Font (Windows/Linux):

1. Go to:

Window → Preferences → General → Appearance → Colors and Fonts

2. Expand:

"View and Editor Folders" or "Basic" section

3. Look for:

4. Select Tree Font → Click Edit…

Happy Learning!!

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

79663621

Date: 2025-06-12 13:40:10
Score: 1
Natty:
Report link

In the end, I concluded there was no easy out, so I created a subclass of Grid tailored to be placed inside an ItemsControl's ItemsPanel (With IsItemsHost = "True"), and which would dynamically modify the ColumnDefinitions/RowDefinitions by using GetItemsOwner and GetItemsSource to get the weights of each collection item and setting the width/height of the definitions to that weight with GridUnitType_Star.

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

79663618

Date: 2025-06-12 13:37:09
Score: 0.5
Natty:
Report link

You aren't actually having a PHP problem.

The HTTP 405 error is being caused by your web server (Apache, Nginx, VS Code's static server, etc.), which is rejecting your POST request because it isn't set up to accept it.

HTTP 405 = "Method Not Allowed": The server is only permitting GET requests, but your browser is sending a POST.

You're serving pages via file:// or the built-in web server in Visual Studio Code, neither of which support POST.
POST requests to that endpoint are blocked by your real HTTP server.
The PHP code isn't yours. Your server is preventing POST.
Use the appropriate server: PHP -S localhost:8000 or an Apache/Nginx configuration.
Sort your files into distinct folders, such as send_email.php and index.html.
Diagnostics: Verify that POST is permitted by looking through error logs and server configurations.

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

79663617

Date: 2025-06-12 13:37:09
Score: 2
Natty:
Report link

The reason of your problem is you don't use @Entity class annotation for your class.

True code is :

@Entity
public class Role {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Entity
  • Low reputation (1):
Posted by: Ali İhsan TAŞDELEN

79663615

Date: 2025-06-12 13:36:08
Score: 6 🚩
Natty:
Report link

I’m working on a similar setup with Firebase Auth + callable functions from Flutter.

Thanks for sharing your IAM config in detail, it helps clarify what the limits of Firebase v2 callable functions are compared to v1. I’m wondering if you’ve tried using App Check or another token-based identity for Cloud Run?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Marcos

79663614

Date: 2025-06-12 13:36:07
Score: 2.5
Natty:
Report link

Reducing allocated storage in AWS RDS for PostgreSQL is not supported directly, because RDS does not allow reducing the allocated storage size once it has been increased — even if your actual data size is much smaller.

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

79663609

Date: 2025-06-12 13:32:06
Score: 2.5
Natty:
Report link

I have to this problem and i move all to init i mean you successor from container for example and all porpitas is of container and ween you call it that build the container

if you have mor solution i thank you

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: yysh79

79663608

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

You can use Expanded, flexible, Fitted box for responsive ui.

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

79663598

Date: 2025-06-12 13:21:03
Score: 4.5
Natty:
Report link

I don't know why, but for some reason today it is working, I suppose that it was something with their servers.

enter image description here

Reasons:
  • 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: Milton Calderon

79663596

Date: 2025-06-12 13:20:03
Score: 3
Natty:
Report link

If you're account-admin, create one project where you assign to yourself all roles. Then use GET PROJECT USERS to know the id's

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

79663593

Date: 2025-06-12 13:17:02
Score: 2.5
Natty:
Report link

If both users have the same category and color in their category list then both should see the same color.

there's a tool to manage the categories automatically.

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

79663592

Date: 2025-06-12 13:16:01
Score: 2
Natty:
Report link

Yes, I believe this is a browser issue. Try clearing your browser cache

Also, 23.10.0 is fairly old. I would recommend upgrading to 23.10.5 for some bug fixes, one of which might in fact be this issue

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

79663589

Date: 2025-06-12 13:14:01
Score: 1
Natty:
Report link

I've had a look and seen the issue. Try these steps as they solved the issue for me:

Add this to your VS Code settings.json:

{
    "vue.enableTakeOverMode": true
}

This gives IntelliSense for:

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

79663587

Date: 2025-06-12 13:12:00
Score: 2.5
Natty:
Report link

For those who roaming for answer.

Most common issue is mismatch native code with js bundle. Just recheck npm versions and rebuild native side (development client in expo)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Владимир Snowdigital

79663577

Date: 2025-06-12 12:54:56
Score: 1
Natty:
Report link

Another possibility would be to set the -D properties as part of the JAVA_OPTS String:

 env:     
    - name: JAVA_OPTS
      value: >-
       -Ddb.username=$(DATABASE_USER)
       -...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Feanor

79663573

Date: 2025-06-12 12:51:55
Score: 2
Natty:
Report link

Fixed the Problem - The thing was I had to manually go to settings , app and select my project app then go to permissions and had to allow the permission for audio and images . After the permissions are given to the app manually from the android phone . I was able to select the files and the files were loaded fine.

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

79663557

Date: 2025-06-12 12:42:52
Score: 3.5
Natty:
Report link

We wrote a new R package that allows to estimate 'unconditional quantile regressions' and RIF regressions for other distributional statistics: https://cran.r-project.org/web/packages/rifreg/index.html

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

79663553

Date: 2025-06-12 12:41:52
Score: 1
Natty:
Report link

The page is protected by Cloudflare, try using a casual user agent such as: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36

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

79663547

Date: 2025-06-12 12:37:51
Score: 1.5
Natty:
Report link

Solved by changing file "mm.txt" to:

$root /home/test/my_dir    
std     
my_module    
./my_headers.hpp

and locating "my_headers.hpp.gcm" file in

"./,/my_headers.hpp"

Note: the comma directory in "./,/my_headers.hpp" is not a typo, it is needed.

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

79663546

Date: 2025-06-12 12:37:51
Score: 0.5
Natty:
Report link
Expanded(
  child: CloudWidget(
    child: Text(
      'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
      softWrap: false,           // Prevents text from wrapping to the next line
      overflow: TextOverflow.ellipsis, // Handles overflow with '...' truncation
      style: TextStyle(          // Optional: Add styling for clarity
        fontSize: 16,
        fontWeight: FontWeight.normal,
      ),
    ),
  ),
)

1. Why Expanded?

2. TextOverflow Options
Select how to manage overflow:

3. softWrap: false

4. Best Practices

Semantics(  
    label: 'Full text: ABCDEFGHIJKLMNOPQRSTUVWXYZ',  
    child: Text(/*. */),
)

When to Use This Pattern

Common Pitfalls

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Jignesh Pandav

79663543

Date: 2025-06-12 12:36:50
Score: 1.5
Natty:
Report link

Building functionality similar to an existing app involves understanding its core features, user experience, and the technologies behind it. During my academic journey at MITSDE, I gained foundational knowledge in areas like IT Management, Software Project Management, and Digital Business Strategy, which has helped me approach app development more strategically.

At MITSDE, we learn how to analyze system requirements, break down features into manageable modules, and identify the right tools and frameworks for development. Whether it’s user authentication, data integration, or API connectivity, the courses equip students with practical insights into building scalable, user-friendly digital solutions.

Thanks to this learning, I’ve been able to explore how to recreate app features using platforms like Firebase, React Native, or Python-based backends — all with a clear understanding of project scope, resource management, and real-world application.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: MIT School Distance Education

79663535

Date: 2025-06-12 12:31:48
Score: 1
Natty:
Report link

I know I'm kind of late to this, but you could try adding .zip to repl url.
For example if you have a repl called testing and your username is monet, the download path would be: https://replit.com/@monet/testing.zip

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

79663528

Date: 2025-06-12 12:29:47
Score: 1
Natty:
Report link

Here the command that work for me

sudo apt install texlive-latex-base texlive-latex-recommended texlive-fonts-recommended texlive-latex-extra
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Maodo Diop

79663527

Date: 2025-06-12 12:28:47
Score: 2.5
Natty:
Report link

The problem with adding a new state and assigning it to the items is the history. If you do so the old state will remain for the past. This means any diagram showing number of items in a specific state at a certain time will show old and new state (old up to the point you applied the change) new from this point of time on.

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

79663524

Date: 2025-06-12 12:26:46
Score: 1.5
Natty:
Report link
Theme(
 data: Theme.of(context).copyWith(dividerColor: Colors.transparent),
 child:ExpansionTile(
     title:...,
     children:[],
 ),
 ),
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: being_ billo

79663502

Date: 2025-06-12 12:12:42
Score: 3.5
Natty:
Report link

I think the problem here is that you have your adapter read method in the wrong order. Can you confirm if the following fixes it?

CartHive read(BinaryReader reader) {
    return CartHive(
      (reader.readMap()).cast<String, int>(), // this should be the second arg
      (reader.readMap()).cast<String, String>(), // this should be the first arg
      (reader.readMap()).cast<String, int>(),
    );
  
Reasons:
  • RegEx Blacklisted phrase (1.5): fixes it?
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: underhill

79663496

Date: 2025-06-12 12:05:39
Score: 13 🚩
Natty: 6
Report link

I want to upgrade my 3 node redis sentinel server groups and 6 node cluster server groups. There will be major version changes for both sides. For example, I have server groups with versions 5, 6 and 7 for seperate groups, I will upgrade them to 8. How should I do the order for these? Should I upgrade the slaves or masters first? When I tried to upgrade the major version before, the cluster status failed due to version mismatch. I came across your post while doing research. Can you help me with that? Thanks in advanve!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): How should I
  • RegEx Blacklisted phrase (3): Thanks in advanve
  • RegEx Blacklisted phrase (3): Can you help me
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Se7eN

79663488

Date: 2025-06-12 12:00:37
Score: 0.5
Natty:
Report link

Primereact gives for that an other Component, the Dropdown component.

Read the Documentation: https://primereact.org/dropdown/ .

-----------------------------------------------------------------------------

if you want to select multiple items in MultiSelect but as default just one item selected, do this:

you should add the just the Value, which is in your options objectsarray.

// for Javascript
   
 const [selected, setSelected] = useState(["Grapes"]);

// for Typescript

    type Option = {label: string, value: string}
    const [selected, setSelected] = useState<Option[], string[]>(["Grapes"]);

For more selected items as default, you should just add a new string in the Array of the useState().

All added strings should be available in your Options Objectsarray!

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Filler text (0.5): -----------------------------------------------------------------------------
  • Low reputation (1):
Posted by: Hasan Kahya

79663486

Date: 2025-06-12 11:58:36
Score: 0.5
Natty:
Report link

spannende Frage – solche unsichtbaren bzw. schwer erkennbaren Zeichen können in Excel wirklich tückisch sein!

Die Formeln, die du bereits verwendest, sind ein sehr guter Ansatz für einzelne Zielzeichen wie den langen Gedankenstrich (–), die geschwungene Apostrophe (’) oder auch das ï in „naïve“. Wenn du weitere unsichtbare Zeichen wie z. B. das geschützte Leerzeichen (Unicode U+00A0) oder ähnliche Sonderzeichen identifizieren möchtest, kannst du deine bestehende Formel einfach erweitern. Wichtig ist dabei, dass du das jeweilige Zeichen korrekt einfügst – viele dieser Zeichen lassen sich nicht direkt auf der Tastatur eingeben und sehen aus wie normale Leerzeichen.

Für das geschützte Leerzeichen könntest du z. B. diese Variante nutzen (das Zeichen wurde hier direkt eingefügt, also einfach kopieren):

=IFERROR(TRANSPOSE(TEXTSPLIT(TEXTJOIN(", ", TRUE, IF(ISNUMBER(FIND(" ", A6:I1000)), CHAR(64+COLUMN(A6:I1000)) & ROW(A6:I1000), "")), ", ", , TRUE)), "No matches found") 

Falls du dir unsicher bist, welches Zeichen du gerade eingefügt hast, kannst du auch =CODE(ZELLE) verwenden, um den numerischen Wert zu prüfen (z. B. 160 für U+00A0).

Alternativ oder ergänzend kannst du auch ein kleines VBA-Skript verwenden, um verdächtige Zeichen in einem Zellbereich systematisch zu durchsuchen – vor allem, wenn du eine größere Liste von problematischen Unicode-Zeichen im Blick hast. Wenn du möchtest, kann ich dir gerne eine Vorlage dafür schreiben.

Ein weiteres nützliches Tool zur Analyse von unsichtbaren Zeichen ist übrigens der Unicode-Viewer von SoSciSurvey, den du auch verlinkt hast – sehr hilfreich zur Verifizierung!

Viele Grüße und gutes Gelingen bei der Analyse
Matthias

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

79663480

Date: 2025-06-12 11:56:36
Score: 1.5
Natty:
Report link

As of TypeScript 5.8 this is not possible. See #49552 and the issues it links to.

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

79663475

Date: 2025-06-12 11:54:35
Score: 0.5
Natty:
Report link

SOLVED: Power BI to Oracle Refresh Fails with ORA-03113: end-of-file on communication channel

I'm posting this detailed answer because my team and I finally solved this exact issue. The solution was not in Power BI or a database permission, but a specific conflict between our Oracle Client's protocol and our corporate firewall.

This was the final step after a long troubleshooting process, and hopefully, it can help someone else.

The Symptoms

The Diagnosis: Firewall vs. Oracle Protocol

After working with our IT department, we found the root cause in our Check Point firewall logs. The firewall was dropping packets with the following message:

"TCP segment with urgent pointer. Urgent data indication was stripped."

The problem was a conflict:

  1. Oracle's Protocol (SQL*Net): Uses TCP packets with the URG flag for its "Out-of-Band Break" mechanism, which can be used to cancel long-running queries.

  2. Our Firewall's Policy: By default, our Check Point firewall considered packets with the URG flag a security risk and was terminating the connection whenever it detected them during the large data transfer.


Our Solution: Modifying the Oracle Client Configuration

Instead of changing the corporate firewall policy, we chose to fix this on the client side, as it was faster for us to implement. We instructed our Oracle client to simply not use this "out-of-band" mechanism.

Here are the exact steps that worked for us:

  1. Identify the Correct Client Software: The machine running Power BI Desktop was using the Oracle Client for Microsoft Tools (OCMT).

  2. Locate the sqlnet.ora File: We needed to edit the sqlnet.ora configuration file. We found it inside the OCMT installation directory. The path was: [ORACLE_CLIENT_INSTALL_DIRECTORY]\network\admin (For example: C:\oracle\product\19.0.0\client_1\network\admin)

    Note: If the sqlnet.ora file does not exist in this folder, you can simply create it as a new, empty text file.

  3. Add the Configuration Parameter: We opened the sqlnet.ora file with a text editor and added the following line:

    DISABLE_OOB=ON
    
    
  4. Apply Changes: We saved the sqlnet.ora file and then restarted Power BI Desktop.

After this change, the full data refresh worked perfectly without any ORA-03113 errors.

Alternative Solution (Firewall-Side)

For completeness, the other possible solution is to have the network security team create an exception in the firewall. This would involve modifying the security policy (in our case, for Check Point) to allow TCP packets with the URG flag, but only for the specific traffic between the Power BI client/gateway and the Oracle database server.

I hope our experience helps other users facing this frustrating issue

Reasons:
  • Whitelisted phrase (-1): solution is
  • Whitelisted phrase (-2): Solution:
  • RegEx Blacklisted phrase (2): urgent
  • RegEx Blacklisted phrase (2): Urgent
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pablo Luque

79663462

Date: 2025-06-12 11:44:31
Score: 1.5
Natty:
Report link

There exists an extension for OpenGL ES 2.0 from NVIDIA, called GL_NV_framebuffer_blit.

Examples of devices that support it can be found in the list here:
https://opengles.gpuinfo.org/listreports.php?extension=GL_NV_framebuffer_blit.

Some other GLES 2.0 devices also seem to report GL_ANGLE_framebuffer_blit, though:
https://opengles.gpuinfo.org/listreports.php?extension=GL_ANGLE_framebuffer_blit
https://opengles.gpuinfo.org/listreports.php?extension=ANGLE_framebuffer_blit

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

79663454

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

Please try
sudo npm install -g @angular/cli

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

79663442

Date: 2025-06-12 11:31:28
Score: 1
Natty:
Report link

Fixed in Redisson 3.8.0 and higher.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Nikita Koksharov

79663440

Date: 2025-06-12 11:31:28
Score: 2.5
Natty:
Report link

In some case when a repo cloned using HTTP (not with SSH) the pre-commit hook not working. I really don't have idea why it happens.

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

79663435

Date: 2025-06-12 11:25:26
Score: 1.5
Natty:
Report link
  1. Yes

  2. Because even resolved Promises schedule .then() handlers as microtasks. They don’t run "immediately".

  3. I don't think so

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

79663432

Date: 2025-06-12 11:24:26
Score: 1.5
Natty:
Report link

The root cause is that Microsoft.Identity.Web does not fall back to DefaultAzureCredential like manual calls do. Instead, it strictly requires the Azure Workload Identity setup to be fully correct

The AKS pod must be annotated with the correct client ID of the user-assigned managed identity.

Suppose your user-assigned managed identity Client ID is: <MANAGED_IDENTITY_CLIENT_ID> replace this. Ex:

kubectl annotate serviceaccount <SERVICE_ACCOUNT_NAME> \
  -n <NAMESPACE> \
  azure.workload.identity/client-id=<MANAGED_IDENTITY_CLIENT_ID>

The Azure AD App Registration must have a properly configured Federated Identity Credential that matches the pod's Kubernetes service account (system:serviceaccount:<namespace>:<serviceaccount>). create the Federated Identity Credential:

Ex:

az identity federated-credential create \
  --name workload-identity-federated-cred \
  --identity-name <MANAGED_IDENTITY_NAME> \
  --resource-group <RESOURCE_GROUP> \
  --issuer "https://kubernetes.default.svc.cluster.local" \
  --subject "system:serviceaccount:<NAMESPACE>:<SERVICE_ACCOUNT_NAME>" \
  --audiences api://AzureADTokenExchange

The Azure Workload Identity webhook must be running in the AKS cluster to inject the identity token file into the pod. Check if the webhook is installed in your AKS cluster:

kubectl get pods -n azure-workload-identity-system

pods like azure-wi-webhook-xxxxxx are running.

Check if Token File is Injected in Pod:

kubectl exec <POD_NAME> -n <NAMESPACE> -- ls /var/run/secrets/azure/tokens/

You should see azure-identity-token

Your manual DefaultAzureCredential call works because it uses multiple sources like the IMDS endpoint, but Microsoft.Identity.Web only reads from the expected federated token file which may be missing or improperly configured resulting in IDW10109.

Reference: https://learn.microsoft.com/en-us/azure/aks/workload-identity-overview?tabs=dotnet

Please let me know if you have any doubts, I will be glad to help you out.

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

79663431

Date: 2025-06-12 11:24:26
Score: 1.5
Natty:
Report link

This worked for me: update your installation of pandoc.

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

79663427

Date: 2025-06-12 11:21:25
Score: 0.5
Natty:
Report link

SOLVED: Power BI to Oracle Refresh Fails with ORA-03113: end-of-file on communication channel

Body of your Stack Overflow answer:

I'm posting this detailed answer because my team and I finally solved this exact issue. The solution was not in Power BI or a database permission, but a specific conflict between our Oracle Client's protocol and our corporate firewall.

This was the final step after a long troubleshooting process, and hopefully, it can help someone else.

The Symptoms

The Diagnosis: Firewall vs. Oracle Protocol

After working with our IT department, we found the root cause in our Check Point firewall logs. The firewall was dropping packets with the following message:

"TCP segment with urgent pointer. Urgent data indication was stripped."

The problem was a conflict:

  1. Oracle's Protocol (SQL*Net): Uses TCP packets with the URG flag for its "Out-of-Band Break" mechanism, which can be used to cancel long-running queries.

  2. Our Firewall's Policy: By default, our Check Point firewall considered packets with the URG flag a security risk and was terminating the connection whenever it detected them during the large data transfer.


Our Solution: Modifying the Oracle Client Configuration

Instead of changing the corporate firewall policy, we chose to fix this on the client side, as it was faster for us to implement. We instructed our Oracle client to simply not use this "out-of-band" mechanism.

Here are the exact steps that worked for us:

  1. Identify the Correct Client Software: The machine running Power BI Desktop was using the Oracle Client for Microsoft Tools (OCMT).

  2. Locate the sqlnet.ora File: We needed to edit the sqlnet.ora configuration file. We found it inside the OCMT installation directory. The path was: [ORACLE_CLIENT_INSTALL_DIRECTORY]\network\admin (For example: C:\oracle\product\19.0.0\client_1\network\admin)

    Note: If the sqlnet.ora file does not exist in this folder, you can simply create it as a new, empty text file.

  3. Add the Configuration Parameter: We opened the sqlnet.ora file with a text editor and added the following line:

    DISABLE_OOB=ON
    
    
  4. Apply Changes: We saved the sqlnet.ora file and then restarted Power BI Desktop.

After this change, the full data refresh worked perfectly without any ORA-03113 errors.

Alternative Solution (Firewall-Side)

For completeness, the other possible solution is to have the network security team create an exception in the firewall. This would involve modifying the security policy (in our case, for Check Point) to allow TCP packets with the URG flag, but only for the specific traffic between the Power BI client/gateway and the Oracle database server.

I hope our experience helps other users facing this frustrating issue

Reasons:
  • Whitelisted phrase (-1): solution is
  • Whitelisted phrase (-2): Solution:
  • RegEx Blacklisted phrase (2): urgent
  • RegEx Blacklisted phrase (2): Urgent
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pablo Luque

79663424

Date: 2025-06-12 11:19:24
Score: 2
Natty:
Report link

for development : `chmod 777 -R .`

but in production it's very serious and any devops who deployed it now the answer

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

79663385

Date: 2025-06-12 10:53:15
Score: 0.5
Natty:
Report link

When you click on the ⓘ here:

file path patterns input

You'll see that the field header is misleading ("folders"), because this input will allow for file type patterns, too, e.g.:

*.cs; *.js; /src/api/*/*DataAccess/*
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • High reputation (-1):
Posted by: Oliver

79663384

Date: 2025-06-12 10:53:15
Score: 1.5
Natty:
Report link

<img src="{{cdn '/content/carousel/1920x600-3.jpg'}}" width="1920" height="600">

This will load the image from the BigCommerce CDN dynamically based on your store’s environment.

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

79663365

Date: 2025-06-12 10:42:12
Score: 1
Natty:
Report link

std::erase, std::erase_if are placed in the headers of containers for which they're overloaded: std::erase_if(std::vector) placed in <vector>, std::erase_if(std::list) placed in list, etc.

P.S. While reading a book part on standard library algorithms author didn't mention this, so I assumed erase and erase_if were in <algorithm> header - that's false.

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