79713699

Date: 2025-07-24 16:45:39
Score: 6
Natty: 4.5
Report link

https://www.youtube.com/watch?v=rIaaH87z1-g

I also had similar question, and this video helped a lot!

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): this video
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eric Dong

79713695

Date: 2025-07-24 16:42:38
Score: 1.5
Natty:
Report link

What is the difference between SXSSFWorkbook and XSSFWorkbook?

SXSSFWorkbook is designed for writing data into xlsx file (and only appending is supported). This is what you really wanna use when it comes to creating large xlsx files to avoid loading all the data into memory. So you can create SXSSFWorkbook based on XSSFWorkbook, but you can only append data (create new rows). No modifications of existing rows allowed.

XSSFWorkbook can do both reading and any kind of modifications. But it uses memory to store all rows. So it's not very good choice if you wanna deal with larg xlsx files.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What is the
  • Low reputation (0.5):
Posted by: Pavel Ryabykh

79713691

Date: 2025-07-24 16:37:36
Score: 1
Natty:
Report link

Based on this reddit comment mentioned by @rixtech, this is the CSS style automatically inserted by DuckDuckGo extension or DuckDuckGo browser to hide empty spaces when ads are blocked.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @rixtech
  • Single line (0.5):
  • High reputation (-2):
Posted by: weakish

79713689

Date: 2025-07-24 16:35:35
Score: 2
Natty:
Report link

I can find this functionality in an old version of the docs, but not in the most recent.

The docs also state the following,

The Web IDE, however, lacks a native runtime environment where you could compile code, run tests, or generate real-time feedback.

but it seems that workspaces offer similar functionality.

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

79713668

Date: 2025-07-24 16:17:31
Score: 1
Natty:
Report link

Using range, you can iterate through num.

num = int(input("Enter a number : "))
count = 0
for i in range(1,num+1):
    if num!= 0:
        num = num//10
        count=count+1
print(count)  
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Diya

79713661

Date: 2025-07-24 16:13:30
Score: 0.5
Natty:
Report link

You need to clear error handling.

Nexti:
    On Error GoTo -1
    Next i

Unfortunately, I cannot explain why this is necessary. However, I do know that a good rule of thumb when error handling is to clear it as soon as you don't need it anymore. My educated guess is that once the error handling has been followed, it won't be followed a second time until it's be "re-set". Hopefully someone can shed some light on this behavior for all of us!

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: TehDrunkSailor

79713660

Date: 2025-07-24 16:13:30
Score: 0.5
Natty:
Report link

Finally...

When I executed from sqlplus i've done it by
sqlplus username/password@sid @script.sql <- works

In PLSQL Developer i run CODE from script.sql <- not working.

Turned out that the problem is in coding.


utl_http.set_header(l_http_request, 'Content-Type', 'application/json; charset=utf-8');

when I changed it to


    utl_http.set_header(l_http_request, 'Content-Type', 'application/json; charset=WINDOWS-1250');

It works. I do not know why - could SQLPlus changing by default file coding? Most important thing that this is working.
Closed.
God is great!

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: q4za4

79713649

Date: 2025-07-24 16:07:28
Score: 1
Natty:
Report link

Methods can be chained in Rust paying attention on fulfilling the ownership rules. For example: functions that return a void valued cannot be chained because when the function ends it drops the values from the memory preventing to have a dangling reference.
The rest of the combinations are derive because you can have only 1 mutable reference and N immutable of the same struct. In general terms methods can be chained like:

Function return self &self $mut self
( ) ❌ Not allowed ❌ Not allowed ❌ Not allowed
Self ✅ Ok ✅ Ok ✅ Ok
&Self ❌ Not allowed ✅ Ok ❌ Not allowed
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Omar Mejia Tinajero

79713643

Date: 2025-07-24 16:00:27
Score: 1
Natty:
Report link

So... just for future reference, depending on your IdP software, group membership is usually present in the JWT token used for authentication in the form of a JWT claim.

As the other answers stated the standard does not define what the JWT claim containing groups will be called, but you can capture and decode the OIDC JWT token and see what your implementation calls it, though you will have to request the appropriate scope.

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

79713627

Date: 2025-07-24 15:43:23
Score: 1.5
Natty:
Report link

you should to install v3
command:
npm install -D tailwindcss@3 postcss autoprefixer
then:
npx tailwindcss init -p

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

79713626

Date: 2025-07-24 15:42:23
Score: 4.5
Natty: 4.5
Report link

В моем случае был косяк, что SingleChildScrollView обернут в виджет Column, у которого у поперечной оси стоит центровка

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

79713607

Date: 2025-07-24 15:23:19
Score: 1.5
Natty:
Report link

In my case, org.glassfish.jersey.core:jersey-server:2.35 is missing in class path although client and core dependencies are present.

Removed all com.sun.jersey dependencies, javax.ws.rs:jsr311-api:jar:1.1.1 and added all glassfish jersey dependencies fixed the issue

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

79713587

Date: 2025-07-24 15:10:15
Score: 3.5
Natty:
Report link

You need to remove the border before exporting the chart. In your With block, include this line:

.Chart.ChartArea.Format.Line.Visible = msoFalse


As a side note, if you plan to ask more questions on StackOverflow in the future, I strongly recommend learning about Minimal Reproducible Examples:

https://stackoverflow.com/help/minimal-reproducible-example

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): stackoverflow.com/help
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: TehDrunkSailor

79713578

Date: 2025-07-24 15:02:11
Score: 6
Natty: 5
Report link

For more info and a solution to your answer i highly recommend reading this blog it helped me

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: moses

79713576

Date: 2025-07-24 15:00:11
Score: 1
Natty:
Report link

I believe retval is missed:

[id(0x00000ba3), propget]
HRESULT sessionPlaylistCount([out, retval] long* pVal);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vladyslav Litunovsky

79713573

Date: 2025-07-24 14:58:10
Score: 5.5
Natty:
Report link

hi i have an crud project for where i can create,read,update and delete them.But i wanna to add an picture's users .

Reasons:
  • RegEx Blacklisted phrase (2): hi i have a
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: solange

79713569

Date: 2025-07-24 14:57:10
Score: 3
Natty:
Report link

Ignore my ignorance and pretend I was never here. When I wrapped the results of the two decimal/currency outputs in TO_CHAR() is worked. Thanks for looking, but remember, I was never here.

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

79713563

Date: 2025-07-24 14:53:08
Score: 3.5
Natty:
Report link

Have you touched the boot address configuration on your board ? Because maybe you are flashing correctly in the ram but booting in the flash.

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

79713562

Date: 2025-07-24 14:53:08
Score: 1
Natty:
Report link

What's the datatype of your variables, {totalamount}, {netamountnotax}?
Also, {totalamount}-({totalamount}-{netamountnotax}) cancels-out to just {netamountnotax}, regardless of what {totalamount} is:
5-(5-4)=4
If you're trying to get just the tax amount, you'll just need:
{totalamount}-{netamountnotax}

I feel like if they're decimal/currency, you need to take the single quotes away from '0.00'.
If the environment requires strict types, you may have to cast 0 to decimal/currency, whatever your other variables are.

Hope this helps.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What's the
  • Low reputation (1):
Posted by: Corster

79713559

Date: 2025-07-24 14:50:08
Score: 1
Natty:
Report link

Yep, I’ve run into this before. Usually it happens when the WCF service reference files aren’t properly saved or included in the project.

A few things to check:

  1. Make sure the generated files are there (like Reference.cs, .svcmap, etc.) inside the Service References/<YourService> folder, and that they’re actually included in the project (not just sitting in the folder).

  2. Check your web.config. when you add a service reference, it writes endpoint configs there. If those are missing or didn’t get saved, the proxy won’t work next time you open the project. If it keeps happening, you can try using svcutil.exe to generate the proxy manually instead of relying on the “Add Service Reference” tool.

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

79713542

Date: 2025-07-24 14:35:04
Score: 0.5
Natty:
Report link

✅ 1. Passing Multiple Variables from Controller

In your controller, you can pass multiple variables using:

return view('your_view_name', [

'name' =\> 'Khushali',

'age' =\> 24,

'city' =\> 'Rajkot'

]);

Or using compact()

$name = 'Khushali';

$age = 24;

$city = 'Rajkot';

return view('your_view_name', compact('name', 'age', 'city'));

---

✅ 2. Accessing Multiple Variables in Blade

In your Blade file (your_view_name.blade.php), you can directly access those variables:

<p>Name: {{ $name }}</p>

<p>Age: {{ $age }}</p>

<p>City: {{ $city }}</p>

---

✅ 3. Using Loops or Arrays

If you pass an array or collection:

return view('your_view_name', [

'users' =\> \[

    \['name' =\> 'Amit', 'age' =\> 30\],

    \['name' =\> 'Khushali', 'age' =\> 24\]

\]

]);

In Blade:

@foreach ($users as $user)

\<p\>{{ $user\['name'\] }} is {{ $user\['age'\] }} years old.\</p\>

@endforeach

---

✅ 4. Using @isset or @if

To check if a variable is set before using:

@isset($city)

\<p\>City: {{ $city }}\</p\>

@endisset

@if(isset($name))

\<p\>Hello, {{ $name }}\</p\>

@endif

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @foreach
  • User mentioned (0): @isset
  • Low reputation (1):
Posted by: Khushali Vasoya

79713541

Date: 2025-07-24 14:33:03
Score: 2.5
Natty:
Report link

It might be because of larger size of PDF.

Try with giving pageRange parameter with devtools.send();

Example : Optional.of("1-3")

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

79713536

Date: 2025-07-24 14:29:02
Score: 4
Natty: 4.5
Report link

Using Devarts SQLComplete addon will solve this issue..enter image description here

https://www.devart.com/dbforge/sql/sqlcomplete/download.html

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

79713519

Date: 2025-07-24 14:20:00
Score: 1
Natty:
Report link

proc sql;

create table data as

select

date_column format YYMMDDN.

, column_1

, column_2

, column_3

from source_table;

quit;

https://documentation.sas.com/doc/en/ds2pg/3.2/p0bz5detpfj01qn1kz2in7xymkdl.htm

here are the other types of date formats you can use in SAS enterprise i think YYMMDDN. gives you the YYYYMMDD format you are looking for...

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

79713511

Date: 2025-07-24 14:11:58
Score: 4
Natty: 4
Report link

Add "stateCode" to your spans parameter:

https://router.hereapi.com/v8/routes?apiKey=API_KEY&origin=32.20618,-110.96474&destination=40.391537,-104.681168&routingMode=fast&transportMode=truck&avoid[features]=ferry&exclude[countries]=MEX,CAN&units=imperial&return=polyline,summary,actions,instructions&spans=countryCode,stateCode,length,truckAttributes,notices&truck[trailerCount]=1&via=40.014984,-105.270546

Sample response

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

79713505

Date: 2025-07-24 14:08:56
Score: 1
Natty:
Report link

Windows won't show duplicate SSIDs for the reason you described. They are multiple APs broadcasting the same SSID to increase coverage area, and allow for roaming. Windows treats this as one network for a better user experience, based on the wifi chip and driver it will choose the most powerful signal with the same SSID. There is an option for this under your wifi chip advanced settings, usually called 'roaming aggressiveness', which defines how often Windows will prefer to switch to a better AP.

As for other networks not showing at all in Windows, I think you may be right. I've had weak networks not show up unless I disable wifi for a few seconds and enable it again.

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

79713503

Date: 2025-07-24 14:08:56
Score: 1
Natty:
Report link

Try using MmCopyVirtualMemory

Works without disabling WP.
Requires a signed driver (Microsoft WHQL-signed or test-signed in Debug mode).

`

NTSTATUS WriteKernelMemory(PVOID TargetAddress, PVOID SourceAddress, SIZE_T Size) {
    SIZE_T BytesWritten;
    return MmCopyVirtualMemory(
        PsGetCurrentProcess(), SourceAddress,
        PsGetCurrentProcess(), TargetAddress,
        Size, KernelMode, &BytesWritten
    );
}

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Fang Guo Ming

79713494

Date: 2025-07-24 14:02:55
Score: 1
Natty:
Report link

How to write isNumeric function in Golang?

@Tiago César Oliveira mentioned "Inf" or "infinity", so "NaN" could be a problem too.
Mixed it all together (only want numbers, nothing else).

func IsNumeric(s string) bool {
    value, err := strconv.ParseFloat(s, 64)
    if err != nil {
        return false
    }

    return !(math.IsInf(value, 0) || math.IsNaN(value))
}
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Tiago
  • Low reputation (0.5):
Posted by: Robert

79713493

Date: 2025-07-24 14:01:54
Score: 0.5
Natty:
Report link

To attempt reproducing this, I created the following to generate the output/song.wav file:

import numpy as np
import wave
import os

os.makedirs("output", exist_ok=True)
wav_path = "output/song.wav"

duration_sec = 3
sample_rate = 16000
tone_freq = 440

t = np.linspace(0, duration_sec, int(sample_rate * duration_sec), False)

tone = 0.5 * np.sin(2 * np.pi * tone_freq * t[:sample_rate])
silence = np.zeros(sample_rate * 2)
audio = np.concatenate([tone, silence])

audio_int16 = (audio * 32767).astype(np.int16)

with wave.open(wav_path, 'w') as f:
    f.setnchannels(1)
    f.setsampwidth(2)
    f.setframerate(sample_rate)
    f.writeframes(audio_int16.tobytes())

With the dummy file, if I run the current script, I get an output of:
('noise', 0.0, 1.0)

('noEnergy', 1.0, 2.98)

For context, this is using Python 3.11 which matches the version you're running based on the logs, and using Tensorflow 2.19. When using Python 3.11, the lowest version of Tensorflow that can be used is 2.14.0 (all lower versions don't have the compatibility tag cp311 ), which also runs successfully.

Regarding version compatibility speculation and using the tf.compat.v1 utility functions for resetting the graph, inaSpeechSegmenter doesn't have a Tensorflow pin and in the documentation mentions supporting 3.7 - 3.12. The associated Dockerfile is using Tensorflow 2.8 as well, suggesting the current implementation isn't using the Tensorflow 1 API.

For better clarification, can you provide the versions of each library you're using? This error is more typical in TensorFlow 1.x when modifying a finalized static graph, as others have pointed out. If you're using TensorFlow 2.x, the load_model() function should work in eager mode unless you're loading a model saved in a legacy TF1 format or calling it in a constrained execution context (e.g., inside a @tf.function, or using a mixed session/graph setup in another snippet of code within the module).

Reasons:
  • RegEx Blacklisted phrase (2.5): can you provide
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: danielcahall

79713490

Date: 2025-07-24 14:00:54
Score: 3
Natty:
Report link

I'm not doing all that to test your code, but try using DVH instead of VH

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

79713487

Date: 2025-07-24 13:59:54
Score: 2.5
Natty:
Report link

You coul load the Markedown into a QTextDocument, use toHTML to convert it to HTML, then apply the HTML to another QTextDocument, which you had previously set with a stylesheet of your making. This might not be as efficient as above, but it is undoubtedly less time-consuming and easier to maintain.

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

79713481

Date: 2025-07-24 13:51:52
Score: 1.5
Natty:
Report link

In Applesoft Basic a variable name is represented by a letter followed by additional letters and numbers (e.g. X, XY, X1, XYZ, ...), but only the first two of them are meaningful, the following ones are ignored.

Therefore, XY and XYZ in my list are referring to the same memory area XY and are, basically, the same variable.

The same happens in the original listing, where REVERSE and RE are referring to the same memory area RE, because the additional characters VERSE are not meaningful.

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

79713478

Date: 2025-07-24 13:49:50
Score: 6
Natty:
Report link

What exactly do you want to do with the function?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: David Calabuig

79713475

Date: 2025-07-24 13:47:50
Score: 2
Natty:
Report link

One need NOT go through all of that!

Right click on the notepad icon,

[I keep mine right in the TaskBar since I use notepad frequently.]

When the dropdown menu appears, Right-Click "NotePad",

Then, Left Click on "Run as administrator",

When the "Do you want to allow....." message pops up, Click on the "YES."

A blank NotePad will Appear.

On the upper left side Click on [File],

Then, Click on [Open] inside the dropdown menu.

A new blank window will appear where you will tell it what and where to "open."

Ultimately, You want to open the following:

C:\Windows\System32\drivers\etc\

The host file is a hidden file. To unhide it, follow the procedure on the next line:

Once you are in "/etc/" then, Change the "Text documents (.txt)" within the bottom-right corner of the page to "All files (*.*)

Now, click on the "host" file.

Be extremely careful because this is a System file!

Make sure that you opened the first notepad as "Administrator!" You will not be allowed to change or add anything to the 'host' file unless you do!

Fter you delete lines or add lines, just click [x], close the file.

If all is OK the host file will close and save the changes on it's own.

Good luck.

~ Minister ThunderWolfe

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Minister ThunderWolfe

79713469

Date: 2025-07-24 13:46:49
Score: 8.5
Natty: 7.5
Report link

Can you help me create at least the login part?

I am using Expo Go, so what should I set for redirectUri?

And in Azure, what URL should I set for Expo?

Once that works, is it also gonna work for the production build?

Or for that, what do I have to replace?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can you help me
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you help me
  • Low reputation (1):
Posted by: Naveen Prajapati

79713466

Date: 2025-07-24 13:44:47
Score: 7
Natty: 6.5
Report link

I apologize, but I have a question related to the topic: if my project does not allow me to upload new versions of my front end due to a problem with the SDK, is there any way I can force this update from my backend or from a console like Firebase or Appstore Connect?

Reasons:
  • Blacklisted phrase (1.5): I have a question
  • Blacklisted phrase (1): is there any
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sebastian Giraldo

79713465

Date: 2025-07-24 13:43:46
Score: 1.5
Natty:
Report link

I was able to fix that by adding the filter to the file pointer.

stream_filter_append($fp, 'convert.iconv.UTF-16/UTF-8//IGNORE', STREAM_FILTER_READ);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Adrian

79713462

Date: 2025-07-24 13:42:46
Score: 2.5
Natty:
Report link

Blazor Server App - Azure AD Authentication + Azure SQL Access Token Integration

This project is a Blazor Server You can Check Here.

https://github.com/asheeshthakur/BlazorAzureADAuth

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

79713458

Date: 2025-07-24 13:42:46
Score: 3
Natty:
Report link

Id1620274238 miss my ID my hack no use my ID suspend ID name Google bro hello Garima Shri baat no hacking

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

79713452

Date: 2025-07-24 13:38:45
Score: 2.5
Natty:
Report link

To those who ask why on earth would you want to disable it.. To be able to play games without accidentally turning it on, clearly your brain doesn't get enough oxygen to realise that

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

79713451

Date: 2025-07-24 13:38:45
Score: 3
Natty:
Report link

The issue may be due to <BrowserRouter> being inside the <App /> component, Moving <BrowserRouter> to the (main.jsx) can fixes the issue.

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

79713438

Date: 2025-07-24 13:32:43
Score: 1
Natty:
Report link

For anyone else stumbling upon this you can add the below parameter to your publish profile and it will fix the issue:

<AspnetCompileMergeIntermediateOutputPath><short path></AspnetCompileMergeIntermediateOutputPath>

ex: 
<AspnetCompileMergeIntermediateOutputPath>c:\compile\</AspnetCompileMergeIntermediateOutputPath>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jim

79713423

Date: 2025-07-24 13:25:40
Score: 1.5
Natty:
Report link

You can do PKCE flow which is suitable for "public clients" if you are looking for SSO with Okta only.

This tutorial should cover the basics though it's for Vue - https://developer.okta.com/blog/2019/08/22/okta-authjs-pkce

Reasons:
  • Blacklisted phrase (1): This tutorial
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Philipp Grigoryev

79713422

Date: 2025-07-24 13:24:40
Score: 1
Natty:
Report link

I had this issue because Chrome all of a sudden decided page needs to be translated. I disabled the translation and these errors went away.

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

79713417

Date: 2025-07-24 13:20:38
Score: 3
Natty:
Report link

error: "/data/user/0/ru.iiec.pydroid3/app_HOME/.pyprivate/Pyahmed.so" is 64-bit instead of 32-bit

[Program finished]

android

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

79713416

Date: 2025-07-24 13:20:38
Score: 1
Natty:
Report link

Both height: 100vh; and height: calc(100vh); look similar, but there can be a small difference in behavior on some browsers, especially on mobile.

height: 100vh; sets the element height to 100% of the viewport. But on some mobile browsers, it may include the browser's address bar, causing extra space or scroll.

height: calc(100vh); is usually used for calculations like calc(100vh - 60px), but even using calc(100vh) alone can help fix layout issues in some browsers because it forces the browser to reflow or re-calculate the value.

I Mean :-

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

79713408

Date: 2025-07-24 13:14:37
Score: 3
Natty:
Report link

Picking HTTP version: HTTP/2 solved the issue for me.

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

79713404

Date: 2025-07-24 13:12:36
Score: 1
Natty:
Report link

For a one-off requirement the path of least resistance I feel would be

  1. load it into a local copy of Oracle installed on your local machine using the external table method.

  2. Take a datapump export of the table you loaded in

  3. Use the s3_integration option to use datapump instead to load in your data as described here - https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Oracle.Procedural.Importing.DataPump.html

For a repeating requirement I would use DMS serverless here

  1. Load your CSV file(s) into a S3 bucket

  2. Configure your solution using Terraform or another IAC method to easily reproduce the config as needed

  3. Use the DMS serverless option to help reduce the operational overhead associated with a DMS configuration https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Serverless.html

  4. DMS does support S3 as a source https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.S3.html and Oracle as a target https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.html

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

79713401

Date: 2025-07-24 13:09:36
Score: 2.5
Natty:
Report link

Just create a pseudo connection to the pipe by calling CreateFile. It will unblock the pending ConnectNamedPipe call and you can terminate the thread/application.

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

79713395

Date: 2025-07-24 13:05:35
Score: 5
Natty: 5
Report link

u can download from here manually: https://www.kaggle.com/datasets/changethetuneman/openpose-model?resource=download

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

79713389

Date: 2025-07-24 13:01:33
Score: 1.5
Natty:
Report link

It depends on the load and server capacity and properties. But if i were you if possible i prefer to use a heap table to load. Indexes can be slowing down to write operations. Bulk copy is a good approach to load big data. (SqlBulkCopy (C#), or BULK INSERT on SQLServer)

If you prefer you have a primary key best practice then at least except the primary key do not add any indexes. You will be getting better performance for this.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Can Yıldırmaz

79713382

Date: 2025-07-24 12:54:32
Score: 1.5
Natty:
Report link

I just want to add another answer that would have helped me had I found it here. If your configuration of your api controller is with [Route("api/[controller]/[action]")] and you also declare specific routes on each of your various api actions (functions / methods) that doesn't match that design then it may not properly find the action and produce the same 404. So get rid of the routes on the various actions and it will work.

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

79713377

Date: 2025-07-24 12:52:31
Score: 2
Natty:
Report link

Got the same problems (Using Literal for showing embedded pdf inside aspx page)

Some pages are blanks, some pages are missing some parts of text. (But if I open this pdf to new browser window - everything is ok)

P.S. mime type set correct

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

79713371

Date: 2025-07-24 12:47:29
Score: 0.5
Natty:
Report link

Thanks all for the comments!

It's really easier than I think:

-- check if an arc intersects a circle
local function isArcCircleIntersection(arc, circle, rightDir)
    -- arc.x, arc.y, arc.radius is a first circle
    local intersectionPoints = findCircleIntersections(arc, circle) -- returns array of collision points
    for _, point in ipairs(intersectionPoints) do
        local angle = math.atan2(point.y - arc.y, point.x - arc.x)
        local da1 = normalizeAngle(angle - arc.angle1) -- above
        local da2 = normalizeAngle(arc.angle2 - angle) -- below
        if rightDir then -- the other direction
            da1, da2 = da2, da1
        end
        if da1 >= 0 and da2 >= 0 then
            return true -- the given angle was between of two angles
        end
    end
    return false
end

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

79713366

Date: 2025-07-24 12:43:28
Score: 2
Natty:
Report link

Try with:

mvc.perform(get("/api/v1/balance")).andExpect(status().isOk())
                .andExpect(jsonPath("$.balance").value(balance)));
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Lil

79713364

Date: 2025-07-24 12:42:28
Score: 5.5
Natty: 4.5
Report link

I have a similar problem with response.Flush, although not with a database. I have nailed the problem down to requests using Connection: close. These always hang for minimum half a second up to 2 seconds. It's not a problem when Connection is set to Keep-alive, or, when Protocol is set to HTTP1.1 and no connection header is set (because default then is Keep-alive).

Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • No code block (0.5):
  • Me too answer (2.5): I have a similar problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rune Jensen

79713359

Date: 2025-07-24 12:40:27
Score: 1.5
Natty:
Report link

OK so the answer was partially thanks to @musicamante and partially thanks to AI, so I wrote in my table class init this code

self.header.sectionResized.connect(self.auto_n_manual_resize)

then wrote the class attribute _recursionCheck = False

and then modifies the resize method to this

    def auto_n_manual_resize(self):
        if self._recursionCheck:
            return
        self._recursionCheck = True
        self.header.setStretchLastSection(False)
        widget_width = self.wordsTable.contentsRect().width()
        column0 = self.header.sectionSize(0)
        column1 = self.header.sectionSize(1)
        scroll = self.wordsTable.verticalScrollBar().sizeHint().width()
        verHeadWidth = self.wordsTable.verticalHeader().sizeHint().width()

        available_width = (
            widget_width - verHeadWidth - scroll - 90
        )  # the 3rd col should be 90 pix wide

        denom = column0 + column1 or 1
        if denom == 0:
            column0 = column1 = 1
            denom = 2
        col0_W_per = column0 / denom
        col1_W_per = column1 / denom

        newCol0Width = int(col0_W_per * available_width)
        newcol1Width = int(col1_W_per * available_width)

        self.wordsTable.setColumnWidth(0, newCol0Width)
        self.wordsTable.setColumnWidth(1, newcol1Width)
        self.wordsTable.setColumnWidth(2, 90)

        self.header.setMinimumSectionSize(60)
        self.header.setMaximumSectionSize((available_width))

        self.header.setStretchLastSection(True)
        self._recursionCheck = False

so now with the recursion check from @musicamante to prevent any recursion loop errors and moving the resize connection to init that gets called only once per resize without any connection/disconnection the program runs without any warning or error

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @musicamante
  • User mentioned (0): @musicamante
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tar-Eruntalion

79713358

Date: 2025-07-24 12:39:26
Score: 3
Natty:
Report link

You can't. As the error message says, GCF Gen1 does not support Node.js 22. The table on this documentation page confirms that (notice how Node.js 22 only has "2nd gen" in the "Generation" column):

enter image description here

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Matt Kantor

79713356

Date: 2025-07-24 12:35:24
Score: 6
Natty: 5.5
Report link

calc 100vh 50 % of 1000px =500px=....?

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

79713353

Date: 2025-07-24 12:33:23
Score: 8.5
Natty: 6.5
Report link

That was for the app(s), how about the /admin that gives this unrendered view any solution for it?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution for it?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John

79713350

Date: 2025-07-24 12:32:22
Score: 1
Natty:
Report link
from functools import partial
from typing import Annotated

from pydantic import AfterValidator, BaseModel


def validate_smth(value: str, context: str) -> str:
    if value == "test":
        print(f"Validated {value}")
    else:
        raise ValueError(f"Value {value} is not allowed in context {context}")
    return value


class MyModel(BaseModel):
    field: Annotated[str, AfterValidator(partial(validate_smth, context="test"))]


MyModel.model_validate({"field": "test"})
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Alexander Konukhov

79713348

Date: 2025-07-24 12:31:21
Score: 4
Natty:
Report link

from IPython.display import Video

video = Video("path/to/mp4")

display(video)

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 蔣德美

79713346

Date: 2025-07-24 12:29:20
Score: 1.5
Natty:
Report link

The best way to handle this is with Shopify Webhooks. They let your app automatically get a POST request when events like “order fulfilled” or “product updated” happen.

If you are on Shopify Plus, you can also use Shopify Flow to set up triggers without writing code, super helpful for simple automations.

But for most apps and custom logic, webhooks are the way to go.

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

79713336

Date: 2025-07-24 12:22:19
Score: 0.5
Natty:
Report link

In case you do not need an "indepth" conversion you can simply cast via list():

>>> import numpy as np  
>>> a=np.array(\[\[1,2,3\],\[4,5,6\]\])
>>> list(a)
[array(\[1, 2, 3\]), array(\[4, 5, 6\])\]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: B.R.

79713335

Date: 2025-07-24 12:22:19
Score: 3
Natty:
Report link

Even though the question is old AF, if anyone is still having the same issue (and even though the given answers provide a workaround for said issue) the answer to the question what the problem is, is the following:

When passing values by reference to a foreach it is important to unset the reference after the foreach is done as the reference to the last item of the array is still existing, even after the loop is done.
In that case the value behind that remaining reference is updated with all values of the iterable that is provided ($items in this case) until the last value of the array includes the second to last value.

This is why in the given scenario a "duplicate" is shown, when having 2 items and the reason why only the first item and twice the second item is shown with 3 items.

The behavior is known and documented in the PHP docs

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (0.5):
Posted by: Mr.Moe

79713331

Date: 2025-07-24 12:18:18
Score: 2
Natty:
Report link

The issue even if you have installed it in your node project (let's say using npm) then also you need to have the actual graphics processing binaries installed on your system!
brew install graphicsmagick

So, if it works locally for you make sure to install it on the prod server as well

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

79713328

Date: 2025-07-24 12:15:17
Score: 2
Natty:
Report link

Nice to read this!! Here trying something similar. Tried with your equations and got this! changing nticks to 1000 and parameter t limit to 10! it seems nice....

draw3d(nticks = 1000, parametric (x(t), y(t), z(t), t, 0, 10));

(I'm trying to plot the axis of a structural beam flexured in two dimensions, like two functions and one variable.

input and result of helicoid

Sorry for my previous post, image was not loaded.
Ignacio Capparelli

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

79713324

Date: 2025-07-24 12:13:16
Score: 2
Natty:
Report link

Respected SHAYAN, your report against specimen 24072025:CA5971R (LFTP) is ready However, your remaining reports are still pending. Please check online or bring original bill to lab/collection unit to collect.

AKUH

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mohammad Farhan Attari

79713318

Date: 2025-07-24 12:08:15
Score: 0.5
Natty:
Report link

I had a similar error. Above solution worked for me.

if time_stretch1:
        rate = np.random.uniform(0.8, 1.2)  # stretch between 80% and 120%
        audio_data = librosa.effects.time_stretch(audio_data, rate=rate)

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SAH

79713297

Date: 2025-07-24 11:56:12
Score: 0.5
Natty:
Report link
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: castelinos

79713295

Date: 2025-07-24 11:55:11
Score: 1
Natty:
Report link

Looking at your code, the "Maximum update depth exceeded" error is occurring because of an infinite loop in your useRowSelect hook implementation. The issue is in how you're adding the selection column.

Here's the code you need to replace:

1. Move IndeterminateCheckbox outside your component (place it before export default function Table7):

// Move this OUTSIDE and BEFORE your Table7 component
const IndeterminateCheckbox = React.forwardRef(
    ({ indeterminate, ...rest }, ref) => {
        const defaultRef = React.useRef()
        const resolvedRef = ref || defaultRef

        React.useEffect(() => {
            resolvedRef.current.indeterminate = indeterminate
        }, [resolvedRef, indeterminate])

        return (
            <input type="checkbox" ref={resolvedRef} {...rest} />
        )
    }
)

IndeterminateCheckbox.displayName = 'IndeterminateCheckbox';

2. Remove the IndeterminateCheckbox definition from inside your Table7 component (delete the entire const IndeterminateCheckbox = React.forwardRef(...) block that's currently inside your component).

3. Fix the empty data display:

Replace:

{page.length === 0 ?
    <MDDataTableBodyCell>
        Nenhum Registro Encontrado
    </MDDataTableBodyCell>

With:

{page.length === 0 ?
    <TableRow>
        <MDDataTableBodyCell colSpan={headerGroups[0]?.headers?.length || 1}>
            Nenhum Registro Encontrado
        </MDDataTableBodyCell>
    </TableRow>

4. Fix the PropTypes at the bottom:

Replace:

rowClasses: PropTypes.string,

With:

rowClasses: PropTypes.func,

That's it! These are the minimal changes needed to fix the infinite loop error.

Reasons:
  • RegEx Blacklisted phrase (2): Encontrado
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chris

79713290

Date: 2025-07-24 11:52:11
Score: 0.5
Natty:
Report link

If you have Watchman installed, please remove it.
It can cause issues with newer React Native versions and is best avoided.

To uninstall Watchman, run:
brew uninstall watchman

Then, clean your project and rebuild:

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

79713289

Date: 2025-07-24 11:50:10
Score: 0.5
Natty:
Report link

If you have Watchman installed, please remove it.
It can cause issues with newer React Native versions and is best avoided.

To uninstall Watchman, run:
brew uninstall watchman

Then, clean your project and rebuild:

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

79713281

Date: 2025-07-24 11:45:08
Score: 2.5
Natty:
Report link

Fwssr gggewdtrde FF 😙😃tr 🙃😙💯🥲🥲🥲❣️❣️😚😚😁😁😁😙😁😧😃🙂😁😁😁😚🥸😵😥x gg😪😝 rr tg wa w we h tte TT rr dt fr a DC we free ffgggft de FF ft gg fgwwtr st h gg gttf wey gg tr gf bftatrshtdg hai d DC fes do FF se FF f FF e r DD ssraityvhe tghi hy x

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

79713271

Date: 2025-07-24 11:33:06
Score: 0.5
Natty:
Report link

How about get your data first and do the RANK thing on temp table if possible?

Besides, your query is waiting for paralleism also, so i added OPTION (MAXDOP 1) to get rid of it. So your Clustered Index Seek operation also will be done serially (If you check the plan carefully it is also effecting)

Sorting is effecting too much so instead of doing it in a big query, it can be easier to do it in a temp table which your data is already taken there in this query. This can be accelareting the performance of RANK() operator also.

SELECT * INTO #MainData
 FROM
 (
SELECT
                                 REC.INPATIENT_DATA_ID
                               --, RANK() over (Partition by PATS.PAT_ENC_CSN_ID, MEAS.FLO_MEAS_ID order by RECORDED_TIME) 'VITALS_RANK' 
                               , MEAS.RECORDED_TIME
                               , PATS.PAT_ENC_CSN_ID
                               , PATS.PAT_ID
                               , PATS.CONTACT_DATE
                               , MEAS.FLO_MEAS_ID
                               , PATS.DEPARTMENT_ID
                               , PAT.IS_TEST_PAT_YN
                               , PATS.HOSP_DISCH_TIME
                               , PATS.HOSP_ADMSN_TIME
                         FROM CLARITY.DBO.IP_FLWSHT_REC  REC
                         LEFT OUTER JOIN CLARITY.DBO.PAT_ENC_HSP PATS ON PATS.INPATIENT_DATA_ID = REC.INPATIENT_DATA_ID 
                         LEFT OUTER JOIN CLARITY.DBO.CLARITY_DEP AS DEP ON PATS.DEPARTMENT_ID = DEP.DEPARTMENT_ID
                         LEFT OUTER JOIN CLARITY.DBO.PATIENT_3 PAT ON PAT.PAT_ID = PATS.PAT_ID  
                         LEFT OUTER JOIN CLARITY.DBO.IP_FLWSHT_MEAS MEAS ON REC.FSD_ID = MEAS.FSD_ID
)

SELECT INPATIENT_DATA_ID
                               , RANK() over (Partition by PAT_ENC_CSN_ID, FLO_MEAS_ID order by RECORDED_TIME) 'VITALS_RANK' 
                               , RECORDED_TIME
                               , PAT_ENC_CSN_ID
                               , PAT_ID
                               , CONTACT_DATE
                               , FLO_MEAS_ID
                               , DEPARTMENT_ID
                               , S_TEST_PAT_YN
                               , HOSP_DISCH_TIME
                               , HOSP_ADMSN_TIME
                               FROM #MainData
                               OPTION (MAXDOP 1)
                               
DROP TABLE #MainData
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Can Yıldırmaz

79713270

Date: 2025-07-24 11:32:06
Score: 0.5
Natty:
Report link

=> When you are using {{!! !!}} multiple variables you must be concatenate(.).

correct syntax is bellow

{!! ucfirst($shippingMethod['title']) . ' (' . $shippingMethod['duration'] .') '.

(webCurrencyConverter($shippingMethod['cost'])) !!}

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

79713256

Date: 2025-07-24 11:22:03
Score: 2
Natty:
Report link

You have to write a string type Correctly
Your error is due to string not being defined — JavaScript is case-sensitive, and in Mongoose, the type should be String (with an uppercase S), not string

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

79713252

Date: 2025-07-24 11:17:02
Score: 1
Natty:
Report link

For me, disabling the SimilarWeb chrome extension solved the issue as they are overriding the fetch function.

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

79713247

Date: 2025-07-24 11:15:01
Score: 0.5
Natty:
Report link

I understand your concern. I went through the same struggles. Note that import_export works great for simple import/export like you would do with a database table but it is very unsuitable for customizing and advanced import or export. My recommendation is to use django-admin-action-forms for doing the import/export selection (ask the user for options etc.) and xlsxwriter for creating the Excel. At the end you are much more flexible and faster.

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

79713246

Date: 2025-07-24 11:15:01
Score: 2
Natty:
Report link

The Only Solution: To Reset the Modem

Reasons:
  • Whitelisted phrase (-2): Solution:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alperen Çetin

79713240

Date: 2025-07-24 11:11:59
Score: 4.5
Natty:
Report link

adapter.bondedDevices.forEach {it.alias} ...

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

79713226

Date: 2025-07-24 11:03:57
Score: 1.5
Natty:
Report link

I ran into the exact same issue recently, Swagger loaded fine but no endpoints showed after publishing. Deleting the bin and obj folders before republishing fixed it for me. Seems like stale builds can cause this kind of weird behavior.

Give that a shot and let me know if it helps, happy to assist further if it doesn't.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Idowu Olusegun Kelvin

79713223

Date: 2025-07-24 11:00:55
Score: 7.5
Natty:
Report link

Revised Prompt

Goal: Revise the Stack Overflow question to clearly state the goal and desired outcome, provide necessary background details, and ensure the prompt is concise and clear.

Background: The original question is about importing the Pinecone client in Python, but the provided solution is incorrect. The goal is to revise the prompt to focus on the specific issue with importing the Pinecone client, highlighting the incorrect initialization method and providing a clear solution based on the official documentation and Pinecone library.

Desired Outcome: The revised prompt should clearly state the goal, provide necessary background details, and ensure the prompt is concise and clear.

Revised Prompt:

Importing Pinecone Client in Python: Correct Initialization Method

I am trying to import the Pinecone client in Python, but I am getting an error. The code I am using is:

from pinecone import Pinecone

pinecone = Pinecone(api_key='my_api_key', environment='us-west1-gcp')

However, I am getting an error saying that the Pinecone class is not found. I have checked the official Pinecone documentation and it seems that the correct way to initialize the client is using the pinecone.init() function.

Can you please help me revise the code to correctly import and initialize the Pinecone client in Python?

Expected Outcome: A revised code snippet that correctly imports and initializes the Pinecone client in Python, using the pinecone.init() function as per the official documentation.

Note: Please provide a concise and clear answer, focusing on the specific issue with importing the Pinecone client and providing a clear solution based on the official documentation and Pinecone library.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I am trying to
  • Whitelisted phrase (-1): solution is
  • RegEx Blacklisted phrase (2.5): Please provide
  • RegEx Blacklisted phrase (3): Can you please help me
  • RegEx Blacklisted phrase (1): I am getting an error
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Pooja Mishra

79713222

Date: 2025-07-24 10:59:54
Score: 2
Natty:
Report link

You can customize the user's default locale like described here:

https://developer.apple.com/documentation/foundation/locale/components

var components = Locale.Components(identifier: "en_GB")
components.firstDayOfWeek = .monday
let locale = Locale(components: components)

.environment(\.locale, locale)
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: flitzer

79713221

Date: 2025-07-24 10:57:52
Score: 8.5
Natty: 5.5
Report link

The same.. Did you find solution or how you handle this?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Балушка Владислав

79713214

Date: 2025-07-24 10:53:51
Score: 0.5
Natty:
Report link

I was getting a 403 error with the message "Request had insufficient authentication scopes" when using the Google Generative AI (Gemini) API with OAuth. The issue was caused by using an outdated scope: https://www.googleapis.com/auth/generative-language.peruserquota. To fix it, I replaced it with the correct scope: https://www.googleapis.com/auth/generative-language.retriever. I also made sure to include the header x-goog-user-project with my Google Cloud Project ID in the API call. After updating the scope and adding the header, the API started working as expected. Make sure your OAuth consent screen is set up properly and the Generative Language API is enabled in your project.

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

79713212

Date: 2025-07-24 10:53:51
Score: 1
Natty:
Report link

To get the full path of a target output in a CMake managed project using the File API, the most reliable way is to check the "artifacts" field in the target.json. This usually includes the relative or absolute path to the built output like executables or libraries. If it's a relative path, you can safely prepend it with the paths.build value. Avoid relying only on nameOnDisk, as it gives just the base file name. This approach has worked well in my scripts for collecting target outputs.

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

79713211

Date: 2025-07-24 10:53:51
Score: 2.5
Natty:
Report link

if you need to start again your existing stopped container run this command
{ docker run -i --name Container_Name / ID Image-Name}

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

79713208

Date: 2025-07-24 10:50:50
Score: 1.5
Natty:
Report link

Maybe not matching the topic completely, but related:
If a colour code in Excel is e.g. #AABBCC, it needs to be turned around to #CCBBAA for Power BI to show the same colour (sigh).
Or, less ambiguous: #A1B2C3 => #C3B2A1 ;-)

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

79713204

Date: 2025-07-24 10:48:49
Score: 7.5
Natty: 7
Report link

I need this connection to access the google sheets to ms access, is it possible you teach me the step by step ..thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): thanks in advance
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31134658

79713198

Date: 2025-07-24 10:45:48
Score: 1.5
Natty:
Report link

The layered nature of web servers means multiple components can enforce size limits:

Browser → sends request

Reverse Proxy/Load Balancer → may have size limits

Kestrel/IIS → enforces MaxRequestBodySize

ASP.NET Core → enforces FormOptions limits

Your Controller → RequestSizeLimit attribute

Each layer can terminate the connection, and earlier terminations result in network errors rather than HTTP error responses.

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

79713194

Date: 2025-07-24 10:44:48
Score: 2
Natty:
Report link

It's a bit but i found the the solution.

if (activeRecordId && model.canRevertRecord( activeRecord ) ) {
  model.revertRecords( [activeRecord] );
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Abdullah

79713191

Date: 2025-07-24 10:44:48
Score: 1.5
Natty:
Report link

I want to clarify something. So basically, what you want is, when your Monster spotted the player, you want the monster to chase the player?

My suggestion is to use signals and groups.

func ready():
connect("body_entered", chase) #the syntax may differ depends on the godot version

func chase(body):
if body.is_in_group("players"):
player_path = body.get_path()

If you have any more questions please ask. I just started leaning godot last year so there is a chance that i get things wrong but this is what I learned and it works for me.
I just wanted to connect to people.

Reasons:
  • Whitelisted phrase (-1): works for me
  • 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: Swecle

79713181

Date: 2025-07-24 10:29:45
Score: 2
Natty:
Report link

I'm late to the party, but maybe it will help some future devs with the same issue. I made a working example here. Take a look and use if it helps you out.

Can drag from react-grid-layout to another, and even if they are childs of each other. https://codesandbox.io/p/sandbox/react-dnd-grids-4vc9gl

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

79713180

Date: 2025-07-24 10:26:44
Score: 3
Natty:
Report link

empty_df = df.filter("false")

This is easy way to have some empty dataframe thats copy schema of another

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

79713170

Date: 2025-07-24 10:21:42
Score: 4
Natty: 5
Report link

Thanks for the solution. It was giving build error for me

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ashu nagrale

79713160

Date: 2025-07-24 10:17:41
Score: 0.5
Natty:
Report link

What you’re seeing is:

Why it happens On macOS, the underlying Cocoa implementation of pywebview sometimes renders the title as part of the window content as well as in the titlebar, due to the way the NSWindow/NSView components are integrated if not all window management is handled natively by your code.

Proposed fix : Do not set the title using create_window, and set it afterwards

For example :

import webview

def set_my_title(window):
   # window refers to the window object you created
   window.set_title("blah")

window = webview.create_window(
             "",  # empty title set for the webpage
             f"http://localhost:{port}",
             width=1400,
             height=900,
             min_size=(800, 600),
             on_top=False
)

webview.start(set_my_title, window)  # set title here
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What you
  • Low reputation (1):
Posted by: snal

79713159

Date: 2025-07-24 10:17:41
Score: 2.5
Natty:
Report link

You're smartly leveraging Angular Universal for SSR and Yoast SEO for rich metadata, ensuring your headless WooCommerce setup stays SEO-friendly with PerfectSEOAgency. Your dynamic SeoService bridges backend metadata with frontend rendering for optimal search engine visibility.

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

79713151

Date: 2025-07-24 10:09:39
Score: 4
Natty:
Report link

Thanks a lot for the link to that forum, swapping the low and high bytes and returning to the magic numbers stated above created a clear image!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jan van der Kuyl

79713148

Date: 2025-07-24 10:07:38
Score: 0.5
Natty:
Report link

Google Drive API Scopes

If you can revisit the documentation for the api that you are using to download a file, you will see that it requires either of the three Authorization Scopes but reading further at this documentation we can see that the scope that is meant for downloading is https://www.googleapis.com/auth/drive.readonly which is restricted, and such scopes requires authorization for security reasons

TL;DR

It is not possible to bypass authorization of restricted scopes when downloading files, in Security perspective, you would not want anyone to just download your file in Google Drive.

One approach you can possibly take is to file a Feature Request though again, this is a security risk and most likely will not get that much attention but it is worth trying.

References:

Authorization Scopes

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