79668732

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

Here are several ways to optimize training performance:

What I’ve shared are just a few of the available solutions. The YOLO website offers more comprehensive and detailed strategies for improving training performance. You can refer to the following link: https://github.com/ultralytics/ultralytics/blob/main/docs/en/yolov5/tutorials/tips_for_best_training_results.md

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

79668723

Date: 2025-06-17 08:45:04
Score: 4.5
Natty:
Report link

I think it because of the keyboard

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

79668716

Date: 2025-06-17 08:41:02
Score: 4
Natty: 5
Report link

Have you tried edgecolors="face" ?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (2):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AlexCionca

79668713

Date: 2025-06-17 08:39:02
Score: 2.5
Natty:
Report link

Other price replacement modes only works when you have multiple subscriptions and you're switching between them, not ONE subscription with multiple base plans.

Reference: https://developer.android.com/google/play/billing/subscriptions#change

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

79668709

Date: 2025-06-17 08:38:01
Score: 3
Natty:
Report link

As of August 2022, Microsoft now allows the Visual Studio Build Tools to be used for compiling C and C++ open source projects without requiring a license, even for commercial/enterprise users:

https://devblogs.microsoft.com/cppblog/updates-to-visual-studio-build-tools-license-for-c-and-cpp-open-source-projects/

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

79668708

Date: 2025-06-17 08:37:01
Score: 0.5
Natty:
Report link

Using the latest version of plotly=6.1.2 and plotly.express=1.30.0, I was able to just remove the to_pandas() and your code just worked as is. This is because plotly, natively support polars now.

import plotly.express as px
import polars as pl

tidy_df_pl = pl.DataFrame(
    {
        "x": [10, 10, 10, 20, 20, 20, 30, 30, 30],
        "y": [3, 4, 5, 3, 4, 5, 3, 4, 5],
        "value": [5, 8, 2, 4, 10, 14, 10, 8, 9],
    }
)

print(tidy_df_pl)
pivot_df_pl = (
    tidy_df_pl.pivot(index="x", on="y", values="value")
)
print(pivot_df_pl)

fig = px.imshow(pivot_df_pl)
fig.show()

As an alternative, you can also plot the heatmap with seaborn=0.13.2, which also supports polars now.

import seaborn as sns
sns.heatmap(pivot_df_pl, annot=True)

example histogram from seaborn

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

79668705

Date: 2025-06-17 08:34:00
Score: 2
Natty:
Report link

I managed to resolve this after contact with the AWS support by adding "--provenance=false" together with "--output type=docker" as arguments to the docker buildx build commands. This made it build in the V2 format supported by SageMaker. In our case the building was done via the aws-ecr circle-ci orb, using "extra_build_args", but adding the "--provenance==false" may help in other build environments too.

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

79668701

Date: 2025-06-17 08:30:59
Score: 2
Natty:
Report link

That's a really helpful explanation from Answer 1... my error seems to include:

https://www.example.com/

https://example.com/

https://www.example.com/index.html

https://example.com/index.html

but there is only one file index.html to have a canonical tag...

If I add to index.html, why does the console keep showing the 4 examples above? In my head it should just display all 4 as https://www.example.com/ and never see the others... But doesn't seem to be the case...

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jason Robinson

79668700

Date: 2025-06-17 08:29:59
Score: 1
Natty:
Report link

You have to replace enable_lazy_ghost_objects: true by enable_native_lazy_objects: true in config/packages/doctrine.yaml :

doctrine:
    orm:
        auto_generate_proxy_classes: true
        naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
        enable_native_lazy_objects: true
        auto_mapping: true

See https://github.com/doctrine/orm/issues/11950 and https://github.com/doctrine/orm/pull/11853

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

79668699

Date: 2025-06-17 08:28:58
Score: 2
Natty:
Report link

For me using /wp-json/wp/v2/ at the end of the URL worked.

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

79668681

Date: 2025-06-17 08:11:54
Score: 2
Natty:
Report link

It looks we can set GRPC_SSL_TARGET_NAME_OVERRIDE_ARG using CreateCustomChannel but it would be also good to have option to completely skip name verification

grpc::ChannelArguments args;

args.SetSslTargetNameOverride("alias.namespace.svc.cluster.local");

args.SetString(GRPC_SSL_TARGET_NAME_OVERRIDE_ARG, "alias.namespace.svc.cluster.local");

grpc::CreateCustomChannel(addr + ":" + port, channel_creds, args);

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

79668680

Date: 2025-06-17 08:11:53
Score: 2.5
Natty:
Report link

Same thing happened to me with 2.26.0 - non proxy related issue.

Solved it by 'uninstalling the latest while it said there where 2 versions available.
The latest update was 12.06.2025 -> uninstall this one on windows 11.

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

79668673

Date: 2025-06-17 08:05:52
Score: 2.5
Natty:
Report link

While agreeing with Kaushik's answer giving height might not be always desirable, even with MediaQuery, You might think wrapping your widget with LayoutBuilder or wrapping whole ExpansionTile with SingleChildScrollView

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

79668669

Date: 2025-06-17 08:02:51
Score: 2
Natty:
Report link

https://github.com/nextauthjs/next-auth/issues/11544#issuecomment-2538494101

I used this fix. Change your middleware to be

export default await auth((req) => {
  // my custom logic here
})
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Drew Williams

79668653

Date: 2025-06-17 07:51:48
Score: 2.5
Natty:
Report link

Try setting .frame(maxWidth:) for the content in the swipe action

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

79668649

Date: 2025-06-17 07:46:47
Score: 1.5
Natty:
Report link

These may help in future,

This uses the logical OR operator with assignment to accomplish the same thing in one line. If calls[ev] exists and is truthy, it assigns that value to list. If it doesn't exist or is falsy, it creates a new empty object, assigns it to calls[ev], and then assigns that same object to list.

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

79668639

Date: 2025-06-17 07:43:45
Score: 1.5
Natty:
Report link

using round

function floorWithPrecision($value, $precision = 1) {
    return round($value - ( 0.5 / ( 10 ** $precision ) ), $precision, PHP_ROUND_HALF_UP);
}

/*
As a function
*/

echo floorWithPrecision(49.955, 2);

/*
49.95
*/

echo PHP_EOL;

/*
Same but no function both are keeping float
*/

echo round(49.955-0.005, 2, PHP_ROUND_HALF_UP);

/*
49.95
*/
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Björn

79668635

Date: 2025-06-17 07:40:44
Score: 2.5
Natty:
Report link

In our case, a Cognito WAF rule was blocking due to NoUserAgent

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

79668633

Date: 2025-06-17 07:38:43
Score: 1
Natty:
Report link

To make it world accessible you will also have to connect it to a internet connection and it should have a public accessible address just as any other web server.

If you really need access control aren't you better of handing out passes and attaching some sort of card reader to it to verify user has access as is the common case with barriers.

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

79668628

Date: 2025-06-17 07:35:42
Score: 1.5
Natty:
Report link

Unfortunately, your request can only be done with Navisworks Desktop and its API. There is no Cloud version. You can refer to this sample from my colleague.

https://github.com/xiaodongliang/Navisworks-api-unit-samples/blob/main/ExportNWDAutomation/Program.cs

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

79668621

Date: 2025-06-17 07:31:41
Score: 2
Natty:
Report link

Change the ad unit id to:

ca-app-pub-3940256099942544/9257395921

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

79668617

Date: 2025-06-17 07:24:39
Score: 2
Natty:
Report link

Pycharm is built for python projects and so you will definately not get a good experience when you try using it for flutter development.

Visual studio code, Android Studio or Intellij IDEA would work fine after you install the flutter and dart plugins/extensions. Personally, I use vscode

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

79668596

Date: 2025-06-17 07:09:34
Score: 5
Natty: 4
Report link

We oped a case @Microsoft and need votes now:
Post adaptive card and wait for a response not returning Message ID if it fails with Action Time out · Community

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Microsoft
  • Low reputation (1):
Posted by: S T SmallTalk

79668590

Date: 2025-06-17 07:03:33
Score: 2.5
Natty:
Report link

If you're deciding between Django and React for full-stack development, seeing how a real project is structured might help. I’ve built my portfolio using React for the frontend and FastAPI for the backend—it's a practical example of separating frontend and backend concerns in a full-stack setup.

You can view it here:
https://jerophin-portfolio.vercel.app

It may give you clarity on how modern frontend frameworks like React integrate into full-stack workflows.

Reasons:
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jerophin

79668583

Date: 2025-06-17 06:59:32
Score: 2
Natty:
Report link

wao amazing. finally this case is solved. thanks to Roy who open this case in this forum and Guscarr, thanks the solution is very solving.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Karbilah Barakah

79668582

Date: 2025-06-17 06:58:31
Score: 2
Natty:
Report link

The error is literally telling you the problem is not the input dtype but the input formatting:

"--custom_input_op_name_np_data_path is not specified, all input OPs must assume 4D tensor image data. INPUT Name: image_repr INPUT Shape: [1, 768] INPUT dtype: float32"

Your model is not using a 4D tensor image data as input currently, but one with the shape [1, 768]. I recommend testing the "--custom_input_op_name_np_data_path" argument first and see if that is enough to complete the quantization process. By the way, is your model using an image as input?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
Posted by: Mr K.

79668581

Date: 2025-06-17 06:56:31
Score: 1.5
Natty:
Report link

sizeof: calculates size in bytes of: variable, functions, arrays... depends on it's type and value.

your two functions is similar but in one is "unsigned" and in the other is just "char", difference in that is "unsigned" means values is only >= 0; it's dont make variables larger or smaller in size.

this is how much size in language C, of "unsigned char" and "char":

char : one symbol. Have 1 bytes (8 bit).

unsigned char : one symbol. Have 1 bytes (8 bit). Any value from 0 to 255

If you have other question or if i need to add something ask in comments!

Reasons:
  • Blacklisted phrase (0.5): i need
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ScriptScorpion

79668578

Date: 2025-06-17 06:51:30
Score: 2.5
Natty:
Report link

Have you read the Firebase documentation on how to set up code to receive messages? For specifically, check out the Foreground Messages and the Background Messages. I followed that instruction and I was able to receive notifications.

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

79668574

Date: 2025-06-17 06:46:28
Score: 1.5
Natty:
Report link

Why not

constexpr void noop(std::string_view)
{
}

int main()
{
    noop("just for demonstrating usage of this noop implementation");
    return 0;
}

?

It also allows for a non-comment comment string, similar to static_assert.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why not
  • Low reputation (0.5):
Posted by: yau

79668566

Date: 2025-06-17 06:40:26
Score: 4.5
Natty:
Report link

Dear My Man Guscarr thanks for solution its done clear

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roy Leinad

79668562

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

I have faced the same problem and stuck for 2 hours and only solution is to recheck the files .And in file do not create something like microprocessor like this file because ultralytics already contain this file and due to this you recive the error

here is error
ImportError: cannot import name 'YOLO' from partially initialized module 'ultralytics'
And this is my project structure "machine learning /object detection/multiprocessing.py"
and error is "ultralyticstorchmultiprocessing (your file) → ultralytics again..."

solution is :

change its name

rename from multiprocessing.py to something else, like my_process.py.

also what is circular import ?

A circular import is when:

    File A imports File B

    File B imports File A
Reasons:
  • Whitelisted phrase (-1): solution is
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: k_ninja

79668561

Date: 2025-06-17 06:37:25
Score: 0.5
Natty:
Report link

I had the same issue, and what I did was install the yarn without --frozen-lockfile flag and the yarn-lock file got updated, and then I included this flag in my CI/CD code and it worked.

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

79668552

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

That sounds like overfitting. Your model is "too complex" for your training data. It learns the few training examples by heart but it cannot generalize. Think of a 9th-order polynominal that you try to fit a line with 9 Datapoints. Its corret at your support points but does wild swings everywhere else.

Thats why the training accuracy gets better and better (your support points), but validation stays a a low level (everywhere else).

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

79668540

Date: 2025-06-17 06:18:21
Score: 3
Natty:
Report link

I think it'd be better if you create a simple demo to illustrate the problem. It'll make the solution easier to find.

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

79668528

Date: 2025-06-17 06:05:17
Score: 2.5
Natty:
Report link

Your API works on the emulator because it maps localhost to your PC, but on a physical device, use your PC’s local IP instead of localhost and make sure the firewall allows the port.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Syed Shah Mir Ali Kazmi

79668521

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

I went to the folder and did shift + right click.

Then pressed open with terminal.

Then wrote there "code ."

And a new window appeared and it worked for me..

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aditya Kumar

79668510

Date: 2025-06-17 05:45:11
Score: 1
Natty:
Report link

This error usually happens when you're installing the web3 package (or a dependency like lru-dict) and Python is trying to build a C extension, but your system doesn't have the required C++ compiler properly set up — even if you think you have the Microsoft Build Tools installed.

Here’s how to solve it step by step on Windows:

1. Install the Required C++ Build Tools (Visual C++ 14.0+)

Even if you've already installed some build tools, you may still be missing the C++ workload specifically.

Steps:


2. Upgrade Pip, Setuptools, and Wheel

pip install --upgrade pip setuptools wheel

This ensures you're using versions that handle modern pyproject.toml builds better.


3. Use a Precompiled Wheel (Avoid Compilation Altogether)

If you want to avoid compiling lru-dict yourself:

pip install lru-dict==1.1.8 --only-binary :all:

Then install web3:

pip install web3

This may work if there's a prebuilt binary available for your system.


4. Use a Clean Virtual Environment

Sometimes dependencies clash. Run:

python -m venv web3env web3env\Scripts\activate pip install --upgrade pip pip install web3


5. Alternative: Use WSL (Windows Subsystem for Linux)

If nothing else works, using WSL (Ubuntu on Windows) will let you avoid these Windows-specific compilation issues.


6. (Optional) Use conda Environment

If you use Anaconda or Miniconda:

conda create -n web3env python=3.11 conda activate web3env pip install web3

Conda environments often resolve C dependency issues more smoothly.


If you still face problems, let me know your:

Reasons:
  • Blacklisted phrase (1): how to solve
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jessica Lane

79668507

Date: 2025-06-17 05:43:11
Score: 4
Natty:
Report link

enter image description here in Visual studio already have option Debug -> Attach to Process , just click and select yout Revit instance

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vu Truong Giang

79668499

Date: 2025-06-17 05:32:09
Score: 2
Natty:
Report link

So I also tried it with the sample Python implementation of the National Rail community and it did also not work. Hence I am 100% the error lies in the Zeep package parsing.

Workaround: I used the Zeep HistoryPlugin in order to receive the raw XML from the request. Then i manually parsed the type, using lxml package, into my Zeep reponse. This works pretty good if you only need one or two additional types.

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

79668492

Date: 2025-06-17 05:21:06
Score: 2
Natty:
Report link

# [email protected]

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Jassim

79668491

Date: 2025-06-17 05:17:05
Score: 10 🚩
Natty: 4.5
Report link

estoy teniendo actualmente el mismo problema, mi sistema de 24vCPU + 48 GB de RAM, al llegar al 70% de uso de CPU y 20 de Load Average, a pesar de no notar saturación, empieza a generar degradación y lentitud, ya descarte BD ya que verifiqué en nginx que solicitudes que tardan más de 2 segundos en responder, en la BD no figuran en slow query, o valido que las querys que hace dicha solicitud procesan en menos de 500 ms, por lo que infiero que la lentitud y saturación es de backend directamente, me podrías indicar que mejora aplicaste y si te funcionó para aprovechar mejor los recursos?
Ya que de momento incrementé la capacidad de mi servidor a 48vCPU + 96 GB de RAM pero aún así llega al 25% y pasa nuevamente esto en ciertos momentos donde observo muchas solicitudes golpeando mi backend con la misma similitud que describí anteriormente y observo que no está aprovechando el poder de procesamiento correcto.

Reasons:
  • Blacklisted phrase (1): está
  • Blacklisted phrase (2): estoy
  • RegEx Blacklisted phrase (2.5): mismo
  • RegEx Blacklisted phrase (2.5): misma
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Alberto

79668479

Date: 2025-06-17 05:00:00
Score: 10.5 🚩
Natty: 4
Report link

did you find answer, I have same issue

Reasons:
  • RegEx Blacklisted phrase (3): did you find answer
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find answer
  • Low reputation (1):
Posted by: Rashmi

79668473

Date: 2025-06-17 04:54:58
Score: 1
Natty:
Report link
public virtual static TSelf operator +(TSelf left, TSelf right) =>
    TSelf.Create(left.Value + right.Value);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: FSO931s

79668467

Date: 2025-06-17 04:34:55
Score: 2
Natty:
Report link

Thank you for your example code.

Here is the script modified from yours, but did not work.

@ECHO OFF
SETLOCAL
rem The following settings for the directories and filenames are names
rem that I use for testing and deliberately includes spaces to make sure
rem that the process works using such names. These will need to be changed to suit your situation.

SET sourcedir=d:\test
SET destdir=d:\test\result
SET filename1=%sourcedir%\sample.log

SET "beginfence=========IPMI Sensor Info Begin========"
SET "endfence=========IPMI Sensor Info End========"
SET /a outfilenum=0
SET "output="
FOR /f "usebackqdelims=" %%y IN (%filename1%) DO (
 SET "line=%%y"
 CALL :outline
 ECHO x%%y|FIND "%endfence%">NUL
 IF ERRORLEVEL 1 (
  ECHO x%%y|FIND "%beginfence%">NUL
  IF NOT ERRORLEVEL 1 (
    SET "output=Y"
    SET /a outfilenum+=1
    CALL :outline
   )
 ) ELSE (
  rem endfence found
  SET "output="
 )
)

GOTO :EOF

:outline
IF DEFINED output >>"%destdir%\filebase_%outfilenum%.log" ECHO %line%
GOTO :eof
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jacky Lee

79668460

Date: 2025-06-17 04:23:52
Score: 2.5
Natty:
Report link

I ran the following command in CMD:netstat -ano | findstr :8088

And got this result:TCP 192.168.1.14:8088 13.107.219.254:443 CLOSE_WAIT 10652

Fix Option 1: Kill the process holding the port

taskkill /PID 10652 /F

Fix Option 2: Change your Spring Boot port

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

79668436

Date: 2025-06-17 03:27:39
Score: 3
Natty:
Report link

As the internet continues to evolve, professionals must adapt to new devices to remain competitive. One technology that is becoming increasingly popular among professionals is Node js development. Node.js is a platform that allows creators to build ascendable, fast, and efficient applications. By hiring a Node.js development company, professionals can take advantage of this technology and achieve significant benefits. In this article, I will discuss the benefits of hiring a Node js development company, how Node.js development can take your business to the next level, the services offered by Node.js development companies, case studies of successful Node.js projects, best practices for Node.js development, project management for Node.js projects, pricing models for Node.js development, and how to choose the right Node.js development company for your business.
enter image description here

for more information visit https://idealpost.co.uk/

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ideal Post

79668431

Date: 2025-06-17 03:20:38
Score: 2.5
Natty:
Report link

[Observable] is no longer under active development. It is largely unused in the JDK, and has, for the most part, been superseded by the 1.1 Beans/AWT event model.

https://bugs.openjdk.org/browse/JDK-8154801

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

79668429

Date: 2025-06-17 03:15:36
Score: 1.5
Natty:
Report link

As you have already replaced the url and hosted it ec2 at aws but when calling it from lambda functions, outcome has been null or no value.

It might be due to aws service configuration, try running the function and ec2 in same VPC network.

For ec2 check the security for inbound rules as by default its restricted by aws - any outside request.

Check for Role to access EC2 by lambda functions for Auth.

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

79668422

Date: 2025-06-17 03:07:34
Score: 0.5
Natty:
Report link

GitHub Actions "Artifact storage quota has been hit" – Fix (Short Guide)

  1. Check Usage:
    Go to:
    https://github.com/<owner>/<repo>/settings/actions

  2. Delete Artifacts:
    Use GitHub CLI:

    bash
    

    CopyEdit

    gh run list gh run delete <run-id>

  3. Clear Cache:

    bash
    

    CopyEdit

    gh cache list gh cache delete <cache-id>

  4. Use API if needed:
    List & delete:

    bash
    

    CopyEdit

    curl -H "Authorization: token TOKEN" https://api.github.com/repos/<owner>/<repo>/actions/artifacts curl -X DELETE https://api.github.com/repos/<owner>/<repo>/actions/artifacts/<id>

  5. Wait a few hours:
    GitHub may take time to update usage.

  6. Still stuck?
    👉 Contact GitHub Support

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Husnain Ansari

79668420

Date: 2025-06-17 03:04:33
Score: 4.5
Natty: 5
Report link

What is the issue here? I try to point to a local project

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What is the is
  • Low reputation (1):
Posted by: Robinson

79668417

Date: 2025-06-17 02:58:32
Score: 1
Natty:
Report link

Although this issue has been a long time ago, I still have some experiences to share. Even when using the latest arm-none-eabi-gcc toolchain, fpv5-d16 and fpv5-sp-d16 can result in differences in the generated assembly code. When using fpv5-d16, some functions with strange construction and building methods may use double precision supported instructions such as vcvt.f64.s32. This instruction will cause the MCU that supports single precision FPU which I have chosen to enter HardFault. According to ARM's introduction, the FPU carried by Cortex-M7 core supports single and double precision options, so it is necessary to confirm the type of FPU from the reference document of the selected CPU.

Of course, I am also curious about how this compilation option works on clang. It seems that clang only has options for fpv5-d16. I haven't completed the compilation process using clang yet, but I suspect that clang has optimized the code generation for FPU.

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

79668412

Date: 2025-06-17 02:40:28
Score: 1
Natty:
Report link

Another solution could be:

SELECT
    COUNT(DISTINCT products_never_sold)*100.0/ COUNT(DISTINCT product_category) AS pct_product_categories_never_sold
FROM (

    SELECT
        product_category
        , (CASE WHEN SUM(units_sold) IS NULL THEN product_category END) AS products_never_sold
    FROM product_classes pc
    LEFT JOIN products p
        ON pc.product_class_id = p.product_class_id
    LEFT JOIN sales s
        ON s.product_id = p.product_id
    GROUP BY 1

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

79668411

Date: 2025-06-17 02:37:27
Score: 5.5
Natty:
Report link

We also have the same problem as you guys. Please reply if you find a fix!
Another note I have to add to this: The phones that fail to load symbols also fail to show input textures on renderdoc.
So I'll add to the list of phones:
Not working:
S25 ultra
S25
S23 Ultra
Red magic 10 p

Working:
Pixel fold
Pixel 9,8,7,6
OnePlus 11

Reasons:
  • Blacklisted phrase (1.5): Please reply
  • No code block (0.5):
  • Me too answer (2.5): also have the same problem
  • Low reputation (1):
Posted by: Jaydev

79668404

Date: 2025-06-17 02:26:25
Score: 1
Natty:
Report link

I had the same issue where variable colours/pylance would seem to just stop working randomly.

I found the issue was that pyright was indexing too many files (working in many repos at the same time, and some other podman related folders). I included a pyrightconfig.json file at the root of my workspace and excluded the paths with loads of files that I wasn't using at the time and it seemed to fix the issue straight away.

pyright info: https://github.com/microsoft/pyright/blob/main/docs/configuration.md

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

79668403

Date: 2025-06-17 02:25:25
Score: 0.5
Natty:
Report link

In my case I had multiple build variants. So, I had to:

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

79668400

Date: 2025-06-17 02:13:22
Score: 3.5
Natty:
Report link

Looks like they changed it again I couldn't find it for a while so I am posting this in case it helps the next person.

enter image description hereenter image description here

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

79668393

Date: 2025-06-17 01:59:18
Score: 1
Natty:
Report link

I used Beautiful Soup https://www.crummy.com/software/BeautifulSoup/bs4/doc/
I'm doing a Python course, if I'm wrong, sorry (I'm learning)

# pip install beautifulsoup4 
# import beautifulsoup4
from bs4 import BeautifulSoup

# Read the contents of the HTML file
with open("./website.html") as file:
    contents = file.read()
    
# Parse the HTML content using BeautifulSoup
soup = BeautifulSoup(contents, "html.parser")
print(soup) # print the entire HTML document

# Print the title of the HTML document
print(soup.title)  # <title>My Website</title>
print(soup.title.string)  # My Website
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rafael Menchaca

79668371

Date: 2025-06-17 01:12:07
Score: 1.5
Natty:
Report link

I compiled with the Prod profile, rather than the Dev profile, and it now works.

Presumption: The Dev profile does not package all files into Docker image, so are not found when you run in another environment. That is a guess. If you can enlighten me as to what happens that would be appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Ribeye

79668359

Date: 2025-06-17 00:41:00
Score: 4
Natty:
Report link

(not a solving) I'm also trying to find it.

Name of the ringtone I want to find: Beat Plucker.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: alsotryingtofind1

79668353

Date: 2025-06-17 00:27:58
Score: 1
Natty:
Report link

I know this is an old thread, and already addressed by more than one answer ... but I wanted to add one more consideration.

I found this thread because my C# app was executing fairly simple queries, but very slowly. While I was reading through this great info, I started a new query in my app ... and it resolved nearly immediately.

What had changed? I'd closed the Discord app. Could be a memory usage issue, I suppose, but I'm willing to just blame Discord for being a resource hog. :)

Sharing this in case it helps anyone else in my situation...

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Scott Marshall

79668351

Date: 2025-06-17 00:18:56
Score: 3.5
Natty:
Report link

Since this is C++, the calling parameters are significant to selecting the exact variation of the function to call. That is, function names can be overloaded and use different parameters, or parameters of different types.

Are you sure you are calling the function with the right number and types of parameters?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Alan Mick

79668350

Date: 2025-06-17 00:16:55
Score: 2
Natty:
Report link
automatic_stock_export_conversion($stock_export_id)

The function was calling twice from somewhere else.

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

79668349

Date: 2025-06-17 00:16:55
Score: 1.5
Natty:
Report link

I have resolved this issue while disconnected the VPN. One more thing, go to computer network connection and find proxy setting and turn off proxy setting and set the internet connection with automatic default.

Thank you very much for helping the community.

Your answer to that problem was very helpful, as I couldn't install Flask with the pip command (pip install Flask).

pip: ERROR: Could not install packages due to an OSError: Missing dependencies for SOCKS support.

Line: 1 Character: 1

+ pip install request -i http://pypi.douban.com/simple --trusted-host p ...

+ CategoryInfo: NotSpecified: (ERROR: Could no... SOCKS support.:String) [], RemoteException

+ FullyQualifiedErrorId: NativeCommandError

WARNING: There was an error checking the latest version of pip.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Boris Perez

79668341

Date: 2025-06-16 23:45:50
Score: 5
Natty: 4.5
Report link

Take a look at this link: exactly what you need

https://codemia.io/knowledge-hub/path/set_up_of_hyperledger_fabric_on_2_different_pcs

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

79668328

Date: 2025-06-16 23:18:44
Score: 0.5
Natty:
Report link

Using the following versions worked for me:

Hope that helps!

Reasons:
  • Whitelisted phrase (-1): Hope that helps
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Emily

79668321

Date: 2025-06-16 23:02:40
Score: 2
Natty:
Report link

There are compiler plugins for gcc and clang that randomize struct layouts (Randstruct). This is primarily used in the Linux Kernel: https://lwn.net/Articles/722293/

The clang PR: https://reviews.llvm.org/D121556

I'm unsure if these plugins have support for C++ structs/classes but it might be possible.

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

79668312

Date: 2025-06-16 22:45:36
Score: 0.5
Natty:
Report link

This just says anything that's not an alphanumeric or a space and replace it with nothing.

@search_query = @search_query.tr('^A-Za-z0-9 ', '')

RUBY:001 > "sdfl &8~~!".tr('^A-Za-z0-9 ','')
"sdfl 8"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jeremy Gunter

79668308

Date: 2025-06-16 22:35:34
Score: 2
Natty:
Report link

You cannot send messages to a chat if using Application permissions. Configure your app with delegated permissions and enable "Public client flows" Then you will be able to send messages.

Remember to assign the following delegated permissions:

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

79668302

Date: 2025-06-16 22:21:30
Score: 0.5
Natty:
Report link

In my case, I wasn't able to edit the shortcode, so I added wpcf7_form_id_attr filter in my functions.php file like following:

add_filter('wpcf7_form_id_attr', fn() => 'wpcf7-' . WPCF7_ContactForm::get_current()->id());
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nashi

79668298

Date: 2025-06-16 22:20:30
Score: 2
Natty:
Report link

I had the same issue, I just clicked on TBAddUser under C:\Program Files\Oracle\BI Publisher\BI Publisher Desktop\DotNetInstallFiles, it added the user and opened a Word, it shows the BIPublisher Ribbon.

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

79668297

Date: 2025-06-16 22:20:30
Score: 2.5
Natty:
Report link

You should type in a row: =SUM(VALUE(A1:A2)) and then press ctrl+shift+enter

Maybe it works.

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

79668274

Date: 2025-06-16 21:56:22
Score: 1.5
Natty:
Report link

Welcome to stackoverflow!

Expected functionality as per CORS

Cross-origin resource sharing (CORS) is a mechanism to safely bypass the same-origin policy, that is, it allows a web page to access restricted resources from a server on a domain different than the domain that served the web page.

Origin webserver has not allowed sharing. Unlikely that they will if asked so try another method to grab the .psd file.
IFRAME
or via a proxy
or your own file downloader script running on your own web server then link to that local file instead.
as per another answer here.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: social

79668272

Date: 2025-06-16 21:51:21
Score: 3
Natty:
Report link

I hope I get you right and it will help you or other people who face the same issue.

I was trying to figure how to set matrix dinamically 'cause I have to check services' dirs that have been changed and save services' names, than run pipeline for each service. This is what I did:

I have the first job that defines what kind of services I have to rerun (define_changed_service) and the second job (trigger_test_services) which triggers this artifact:

define_changed_service:
  image: alpine:latest
  stage: build-push
  before_script:
    - apk add --no-cache git grep sed coreutils
    - which git grep sed sort
  script:
    - SERVICES=$(git diff --name-only origin/main...HEAD | grep -E '^([^/]+/){3}(src|\.docker)/' | sed -E 's@^([^/]+/[^/]+/[^/]+)/.*@\1@' | sort -u | sed 's@/@-@g' | paste -sd "," -)
    - echo "Services $SERVICES"
    - echo "test-services:" > matrix.yml
    - echo "  parallel:" >> matrix.yml
    - echo "    matrix:" >> matrix.yml
    - |
      echo "$SERVICES" | tr ',' '\n' | while read srv; do
        echo "      - SERVICE: $srv" >> matrix.yml
      done
    - echo "  script:" >> matrix.yml
    - echo "    - echo \"Running tests for service \$SERVICE\"" >> matrix.yml
    - cat matrix.yml
  artifacts:
    paths:
      - matrix.yml
  
trigger_test_services:
  stage: build-push
  needs:
    - job: define_changed_service
      artifacts: true
  trigger:
    include:
      - artifact: matrix.yml
        job: define_changed_service
    strategy: depend

AND IT WORKS! I can believe I actually DID IT. I run into my browser history and went here to post the answer. This is my first answer on stackoverflow, lol. Enjoy. Let me now if it will help. I added screenshots on the off-chance
My pipeline

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): face the same issue
  • Low reputation (1):
Posted by: Антон Фокин

79668271

Date: 2025-06-16 21:50:21
Score: 3.5
Natty:
Report link

Do you have the ispac files from a previous good build? I exported my problem children from the SSISDB, and used the create new project from ispac file option in visual studio. They converted just fine that way, then could replace the project that wasn't working.

Oh and I also needed to change the db connections to use the new oledb drivers. Since 2019 was the last change exit for that version.

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have the
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Rawheiser

79668266

Date: 2025-06-16 21:35:18
Score: 1
Natty:
Report link

You can try disabling Enable Enterprise Plus features under the Query insights part of the instance settings and check whether you are able to access query insights. Also ensure that your project has the following roles:

If the issue still persists, consider filing a bug issue so that the engineering team can look into it. Note that there’s no specific timeline when the fix will be available.

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

79668257

Date: 2025-06-16 21:28:16
Score: 1
Natty:
Report link

@jezrael 's solution is correct, but uses a deprecated alias for Seconds:

Deprecated since version 2.2.0: Aliases H, BH, CBH, T, S, L, U, and N are deprecated in favour of the aliases h, bh, cbh, min, s, ms, us, and ns.

df['Date'] = pd.to_datetime(df['Date']).dt.floor('s')
Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @jezrael
  • Low reputation (1):
Posted by: dano314159

79668250

Date: 2025-06-16 21:18:14
Score: 1
Natty:
Report link

For whoever struggles with similar issues with Bash name references, the good starting point is Greg's wiki:

Name reference variables are the preferred method for performing variable indirection. Older versions of Bash could also use a ! prefix operator in parameter expansions for variable indirection. Namerefs should be used unless portability to older bash versions is required. No other shell uses ${!variable} for indirection and there are problems relating to use of that syntax for this purpose. It is also less flexible.

With that, it becomes important to understand the dynamic scoping of Bash (thanks @jhnc) which is not particularly emphasized, but (qouting the same):

Indirection can only be achieved by indirectly evaluating variable names. IOW, you can never have a real unambiguous reference to an object in memory; the best you can do is use the name of a variable to try simulating the effect. Therefore, you must control the value of the ref and ensure side-effects such as globbing, user-input, and conflicting local parameters can't affect parameter names. Names must either be deterministic or validated in a way that makes certain guarantees. If an end user can populate the ref variable with arbitrary strings, the result can be unexpected code injection.

And importantly on main Bash page of Greg's wiki:

Name references are created with declare -n, and they are local variables with local names. Any reference to the variable by its local name triggers a search for a variable with the name of its content. This uses the same dynamic scope rules as normal variables. So, the obvious issues apply: the local name and the referenced name must be different. The referenced name should also not be a local variable of the function in which the nameref is being used.

The workaround for this is to make every local variable in the function (not just the nameref) have a name that the caller is unlikely to use.

Further, from Bash manual:

Local variables "shadow" variables with the same name declared at previous scopes. For instance, a local variable declared in a function hides a global variable of the same name: references and assignments refer to the local variable, leaving the global variable unmodified. When the function returns, the global variable is once again visible.

The shell uses dynamic scoping to control a variable’s visibility within functions. With dynamic scoping, visible variables and their values are a result of the sequence of function calls that caused execution to reach the current function. The value of a variable that a function sees depends on its value within its caller, if any, whether that caller is the "global" scope or another shell function. This is also the value that a local variable declaration "shadows", and the value that is restored when the function returns.

For example, if a variable var is declared as local in function func1, and func1 calls another function func2, references to var made from within func2 will resolve to the local variable var from func1, shadowing any global variable named var.

And to top this all off, I had quite a roller coaster ride with declare and its switches.

The issue is that it appears it's setting or unsetting variable attributes, but not all switches are equal in that sense:

Using ‘+’ instead of ‘-’ turns off the attribute instead, with the exceptions that ‘+a’ and ‘+A’ may not be used to destroy array variables and ‘+r’ will not remove the readonly attribute. When used in a function, declare makes each name local, as with the local command, unless the -g option is used. If a variable name is followed by =value, the value of the variable is set to value.

One option that stands out is -g that really is NOT an attribute and therefore has to be repeated every time when manipulating other attributes or otherwise one is operating on a differently (scoped) variable.

Another less logical is -n which has confusing documentation:

-n Give each name the nameref attribute, making it a name reference to another variable. That other variable is defined by the value of name. All references, assignments, and attribute modifications to name, except for those using or changing the -n attribute itself, are performed on the variable referenced by name’s value. The nameref attribute cannot be applied to array variables.

This attribute also "disappears" when not reused, e.g. one cannot global_array=(x y z); f() { declare -n refarray; refarray=global_array; declare -r refarray; echo "${refarray[*]}"; }; f as the second -r loses one the array, it would need to go again with -rn.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @jhnc
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Albert Camu

79668248

Date: 2025-06-16 21:13:12
Score: 1
Natty:
Report link
from threading import Thread
Thread(target=Ui_MainWindow(), daemon=True).start()
if __name__ == '__main__':
    main()

use a dict that contains shared parameters of both applications.

shared_parameter = {
    '....': ...
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zahnpasta mit Fluorid macht Sc

79668246

Date: 2025-06-16 21:12:11
Score: 0.5
Natty:
Report link
def find_closest_enemy(enemies, player_pos):
    closest = None
    min_dist = float('inf')
    for enemy in enemies:
        dist = ((enemy[0] - player_pos[0])**2 + (enemy[1] - player_pos[1])**2)**0.5
        if dist < min_dist:
            min_dist = dist
            closest = enemy
    return closest

def aim(player_pos, enemy_pos):
    direction = (enemy_pos[0] - player_pos[0], enemy_pos[1] - player_pos[1])
    print(f"Aiming at direction: {direction}")

enemies_positions = [(120, 150), (200, 180), (140, 160)]
player_position = (130, 140)

target = find_closest_enemy(enemies_positions, player_position)
aim(player_position, target
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30818061

79668244

Date: 2025-06-16 21:11:11
Score: 1.5
Natty:
Report link
Okay, I have another question

I was trying to use your program on a different web page
of the same website.. but I could not generate the output..
This is the url of the new page : 

"https://www.cocorahs.org/ViewData/ListDailyPrecipReports.aspx"

NOW, this new web page has checkboxes.. 
I think that's where I'm messing up.. 
I did a view page source and looked up the html tag names but it seems 
I am missing something very conceptual.. I am wondering what it might be !! 

This is my code. What changes should I make to it ?
Thank You !!

import requests
from bs4 import BeautifulSoup
from requests_html import HTMLSession

import pandas as pd
from io import StringIO

from datetime import datetime

session = requests.Session()

response = session.get('https://www.cocorahs.org/ViewData/ListDailyPrecipReports.aspx')

soup = BeautifulSoup(response.content, "html.parser")
view_state = soup.find("input", {"name": "__VIEWSTATE", "value": True})["value"]
view_state_generator = soup.find("input", {"name": "__VIEWSTATEGENERATOR", "value": True})["value"]
event_validation = soup.find("input", {"name": "__EVENTVALIDATION", "value": True})["value"]

response = session.post('https://www.cocorahs.org/ViewData/ListDailyPrecipReports.aspx', data={
    "__EVENTTARGET": "",
    "__EVENTARGUMENT": "",
    "__LASTFOCUS": "",
    "VAM_Group": "",
    "__VIEWSTATE": view_state,
    "VAM_JSE": "1",
    "__VIEWSTATEGENERATOR": view_state_generator,
    "__EVENTVALIDATION": event_validation,
    "obsSwitcher:ddlObsUnits": "usunits",
    "frmPrecipReportSearch:ucStationTextFieldsFilter:tbTextFieldValue": "FL-BV-163",
    "frmPrecipReportSearch:ucStationTextFieldsFilter:cblTextFieldsToSearch:0": "checked",
    "frmPrecipReportSearch:ucStationTextFieldsFilter:cblTextFieldsToSearch:1": "",
    "frmPrecipReportSearch:ucStateCountyFilter:ddlCountry": "allcountries",
    "frmPrecipReportSearch:ucDateRangeFilter:dcStartDate:di": "6/13/2025",
    "frmPrecipReportSearch:ucDateRangeFilter:dcStartDate:hfDate": "2025-06-13",
    "frmPrecipReportSearch:ucDateRangeFilter:dcEndDate:di": "6/16/2025",
    "frmPrecipReportSearch:ucDateRangeFilter:dcEndDate:hfDate": "2025-06-16",
    "frmPrecipReportSearch:ddlPrecipField": "GaugeCatch",
    "frmPrecipReportSearch:ucPrecipValueFilter:ddlOperator": "LessEqual",
    "frmPrecipReportSearch:ucPrecipValueFilter:tbPrecipValue:tbPrecip": "0.15",
    "frmPrecipReportSearch:btnSearch": "Search",
})

table = BeautifulSoup(response.content, "html.parser").find("table", id="ucReportList_ReportGrid")

if table is None:
    raise RuntimeError("table#ucReportList_ReportGrid not found")

df = pd.read_html(StringIO(str(table)))[0]

print(df)
Reasons:
  • Blacklisted phrase (0.5): Thank You
  • Blacklisted phrase (1): another question
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: new_coder

79668221

Date: 2025-06-16 20:52:06
Score: 2.5
Natty:
Report link

The biggest benefit in my opinion is that ListItem renders as <li> by default, whereas ListItemButton does not. This makes it easier to navigate the page if you're using a screen reader, making the website more accessible.

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

79668211

Date: 2025-06-16 20:39:02
Score: 3
Natty:
Report link

Check your power source is stable. (change it) That's how I got rid of this NaN issue. Nasty little serial port FTDI device that had 3.3v must have been spiking or similar.

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

79668203

Date: 2025-06-16 20:33:01
Score: 3.5
Natty:
Report link

I solve that importing css from flowbite by cdn and js turbo.min.js by importmap

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

79668202

Date: 2025-06-16 20:33:01
Score: 1
Natty:
Report link

Turns out I had to simply untick the Size option in the StyledSettings dropdown:

Delphi Programming IDE Object Inspector

And now my font size is working!

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Shaun Roselt

79668200

Date: 2025-06-16 20:33:01
Score: 1
Natty:
Report link

When rendering text in most HTML elements, browsers collapse multiple whitespace characters (spaces, tabs, newlines) into a single space by default. To preserve line breaks and display multi-line text, wrap the content in a <pre></pre> tag.

<pre><textarea name="Reply" id="replyTextarea"> </textarea></pre>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: I'm NOT a programmer

79668191

Date: 2025-06-16 20:25:59
Score: 1
Natty:
Report link
  1. VS Code runs web files in a browser rather than executing it directly, which essentially guarantees prevention of suspicious activity, but in local files, it doesn't have direct access to that recourse and needs to be more secure.

  2. As the VS Code documentation puts it, "...Both the welcome view and the notification contain the Manage Unsafe Repositories command [under the Workspace section] that lets you review the list of potentially unsafe repositories, mark them as safe, and open them. The Manage Unsafe Repositories command is also available in the Command Palette (⇧⌘P (Windows, Linux Ctrl+Shift+P))." There should be a popup that asks you if you would like to trust this folder or trust the parent folder.

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

79668185

Date: 2025-06-16 20:23:59
Score: 1.5
Natty:
Report link
my_anova3 <- mixed(data ~ Group*Session*Condition 
                   + (Session+Condition|PID),  
                   data=my_data)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user2887751

79668178

Date: 2025-06-16 20:14:56
Score: 2
Natty:
Report link

The IBM SPSS Exact Tests handbook says:

"Calculating the exact p value can be memory-intensive. If you have selected the exact

method and find that you have insufficient memory to calculate results, you should first

close any other applications that are currently running in order to make more memory

available. If you still cannot obtain exact results, use the Monte Carlo method."

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

79668170

Date: 2025-06-16 20:08:55
Score: 0.5
Natty:
Report link

I add this task to my `build.gradle.kts` files:

tasks.register("printRuntimeClasspath") {
    println(sourceSets.main.get().runtimeClasspath.asPath)
}

and then call java builds using:

java -cp $( ./gradlew --quiet printRuntimeClasspath ) com.example.MyEntryPoint
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Randall

79668169

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

I have been facing the same issue of NativeWind not working in a project initiated without it and Expo SDK 53 for weeks but glad I finally found a way around it.

I think this, https://www.nativewind.dev/docs/guides/troubleshooting, is a great starting point for debugging. First clear the cache using the command "npx expo start --clear" then proceed with the other debugging steps.

When I ran this command, "npx tailwindcss --input <input.css> --output output.css," the output.css file was empty, even while I had my global.css file with the Tailwind import directives. Then I thought, "There must probably be something wrong with the installation." I also tried verifying the NativeWind installation using the guide here, https://www.nativewind.dev/docs/guides/troubleshooting#verifying-nativewind-installation, but it gave an error.

Then, I deleted my node_modules folder and reinstalled the entire package using the command "npm i" and then followed the NativeWind manual setup guide again, following the guide here: https://www.nativewind.dev/docs/getting-started/installation. I previously had Tailwind CSS in the dependency instead of devDependencies.

Also, I updated my tailwind.config.js file correctly to contain the app and component folders.

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{js,jsx,ts,tsx}", "./components/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {},
},
plugins: [],
}

Following the details carefully in the installation guide should help a lot, and be sure to verify the NativeWind installation, https://www.nativewind.dev/docs/guides/troubleshooting#verifying-nativewind-installation.

`import { verifyInstallation } from "nativewind";

export default function AuthScreen() {
const nativewind = verifyInstallation();
console.log("nativewind: ", nativewind);
// remaining code`

It now logs the below, showing it has been correctly installed and configured

`LOG NativeWind verifyInstallation() found no errors
LOG nativewind: true`

I hope this helps someone.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (0.5):
Posted by: oyerohabib

79668164

Date: 2025-06-16 19:58:52
Score: 2
Natty:
Report link

If anyone in the future runs into this issue:

  1. Install Visual Studio 2019,
  2. Instal SQL Server Integration Services via the extension menu in VS 2019,
  3. Open the SSIS project in question, open properties, change deployment target to SQL Server 2022,
  4. (Possibly optional) Upgrade all packages by right clicking on the ssis folder and chosing the upgrade option.

After this, I have been able to open my project in Visual Studio 2022 Community [preview] without getting any of the errors from before.

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

79668160

Date: 2025-06-16 19:56:51
Score: 1
Natty:
Report link

The best way to get good performance on develop and builded working is adding zone.js conditionally at start of server.ts:

if (environment.production) {
  await import('zone.js');
}

I couldnt find a way to import only on build using angular.json.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sergio Fernández

79668155

Date: 2025-06-16 19:51:50
Score: 3
Natty:
Report link

I know this might be an old post, but I am running into a different issue.

If I have wo websites: Default Web Site and TestSite1. Default Web Site has a good SSL Certificate bound to the site. Now, when I execute the following PowerShell script for TestSite1:

New-WebBinding -Name $SiteName -Protocol $Protocol -IPAddress $IPAddress -Port $Port -HostHeader $Hostname -SslFlags $SslFlags

I see the bindings in IIS for TestSite1, with *|443|Site1, but I also see the certificate that is bound to Default Web Site.

Default Web Site Bindings: *|443|Default.com
TestSite1 Bindings: *|443|Site1

The script continues to bind the cert:

$binding = Get-WebBinding -Name $SiteName -Protocol $Protocol
$null = $binding.AddSslCertificate($Thumbprint, $StoreName)

Now both the Default Web Site and TestSite1 have been updated with the thumbprint for the new cert.

Any ideas how to bind the cert to the new bindings? Or better yet, why is the new binding already set to a cert?

Reasons:
  • Blacklisted phrase (1): Any ideas
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Bob P

79668153

Date: 2025-06-16 19:50:50
Score: 2
Natty:
Report link

Thank you everyone for your help. Sorry for late response. The simple solution that i found was instead of doing optionss = Options(), do optionss = ChromeOptions()

So simple but yet so weird

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: NicolasSurfer

79668150

Date: 2025-06-16 19:49:49
Score: 1.5
Natty:
Report link

You could try moving the timer into its own Repository and then pass that repository to the other pages.

Every time you switch to a page that would stop the timer, use its VM to stop it. Then start it again once you go back to the page that should be running it.

Another option is to put the timer in the UI page so that when a navigation triggers you can start/stop it there.

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

79668115

Date: 2025-06-16 19:16:41
Score: 1.5
Natty:
Report link
.Include(x => x.FooDetails.FooDetailsInfo)

little bit simpler

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

79668112

Date: 2025-06-16 19:14:41
Score: 1
Natty:
Report link

I'm not sure, but I think the solution to this problem is to use Git and a disciplined branching strategy.

The basic idea is that you maintain a mainline branch containing stable code (that is not 'in edition').

When anyone wants to make any changes, they take a branch off the mainline and change that.

Everybody has a stable base for their change branches, and thus everyone, at all times, can have a branch that (in between actual edits) is fully compilable.

Does this help? (I might be missing the point, of course.)

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

79668111

Date: 2025-06-16 19:12:40
Score: 0.5
Natty:
Report link

It sounds like your Raspberry Pi is hanging or freezing right when cv2.imshow() is called — the window shows up black, small, and the system becomes unresponsive. That's definitely not normal OpenCV behavior, especially for a simple image display.

Here’s a breakdown of what could be going wrong and how to fix or debug it:


Likely Cause: OpenCV GUI backend and Raspberry Pi GUI conflict

OpenCV’s imshow() relies on a GUI environment (like X11 on Linux). If your Raspberry Pi is:

Then imshow() has no display to show the window, and trying to do so can cause serious issues (including freezes).


Solutions

1. Check if you're running in GUI mode

Make sure you're running your script from a desktop environment on the Pi:


2. Test a minimal OpenCV window

Before running your full function, test this:

import cv2
import numpy as np

img = np.zeros((300, 600, 3), dtype=np.uint8)
cv2.imshow("Test", img)
cv2.waitKey(0)
cv2.destroyAllWindows()

If even this causes the Pi to hang or show a black window → the issue is with the OpenCV GUI backend setup.


3. Use cv2.namedWindow() explicitly

Try specifying the window type before imshow():

cv2.namedWindow("Confirm Images (Front & Back)", cv2.WINDOW_NORMAL)
cv2.imshow("Confirm Images (Front & Back)", combined_img)

This gives more control over how OpenCV creates the window and can prevent weird size or render bugs.


4. Don't move the window manually

The cv2.moveWindow() call may cause issues on limited environments. Try commenting this out:

# cv2.moveWindow("Confirm Images (Front & Back)", 1, 1)

It’s not needed unless you know the Pi's screen resolution and want precise placement.


5. Avoid waitKey(0) in non-interactive environments

Instead of waiting forever for a key press, try a timeout:

key = cv2.waitKey(5000)  # wait 5 seconds
if key == ord('y'):
    print("Images confirmed.")
elif key == ord('n'):
    print("Retaking images...")
else:
    print("No key pressed. Defaulting to confirm.")

6. Print debug info before GUI

Before calling imshow(), print out image shapes and check for None:

print(f"Front image shape: {front_img.shape}")
print(f"Back image shape: {back_img.shape}")

This confirms the images loaded and resized properly.


Alternative: Save the image and preview in another way

If OpenCV GUI keeps failing, save and preview:

cv2.imwrite("combined.jpg", combined_img)
print("Saved combined image. Please open 'combined.jpg' manually to confirm.")
Reasons:
  • Blacklisted phrase (1): what could be
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Balkishan Mandal

79668110

Date: 2025-06-16 19:12:40
Score: 2.5
Natty:
Report link

in cmd window (running as an administrator)
PATH %PATH%;%AppData%\npm

This will add it to the path for the current user.

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

79668107

Date: 2025-06-16 19:09:39
Score: 0.5
Natty:
Report link

I fixed this error by adding [Organization]\Project Collection Valid Users as 'Contributor' to the feed's permissions.

It's a bit confusing. Some would say that this is too broad, but it's not worth my time to troubleshoot it. Shame on Microsoft for making it so complicated.

If you have some time and you'd like to apply a more granular permission, I recommend that you review this link: How do I set the build authorization scope for my project?

Reasons:
  • Blacklisted phrase (1): How do I
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-2): I fixed
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Jim G.