79624784

Date: 2025-05-16 08:39:10
Score: 6.5 🚩
Natty:
Report link

I'm using TCP to capture XML data, including plate numbers, and JPG images. Why does the arming screen list the vehicle number, but I'm unable to capture it in the TCP socket for some vehicles? Can anyone help me with this? It seems that some vehicles trigger the transmission of the packet, while others do not, resulting in intermittent capture.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can anyone help me
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TAN

79624783

Date: 2025-05-16 08:39:10
Score: 2
Natty:
Report link

I solved this problem, axi bram controller does not adjust address size properly

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vina

79624781

Date: 2025-05-16 08:37:10
Score: 5
Natty:
Report link

Since I can't add a "Comment" yet due to reputation, I have to write here.

Writing this in Immediate window:

?Cells(Rows.Count, 1).End(xlUp).Row

So yes "table" would be better solution for your needs.

But my need is opposite of his, I need last "filtered" row on "Table"!? Is there any simple solution like this?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Jelovac Maglaj

79624780

Date: 2025-05-16 08:37:10
Score: 0.5
Natty:
Report link
npm install --save-dev @types/react@latest

Solved the issue for me, install type for the latest react version in your case react 19

Reasons:
  • Whitelisted phrase (-1): in your case
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: liben hailu

79624771

Date: 2025-05-16 08:28:07
Score: 0.5
Natty:
Report link

Enable Developer Tools on the iPhone : Open Safari on your iPhone: Go to Settings > Safari and scroll down to Advanced. Enable "Show Develop Menu": Make sure the "Show Develop Menu" option is toggled on.

Connect your iPhone to your MacBook : Physical Connection: Use a USB cable to connect your iPhone to your MacBook. Trust the Connection: You may need to trust the device on both the iPhone and the Mac to establish the connection.

Open Safari on your MacBook : Go to Safari > Preferences > Advanced: Make sure "Show Develop menu in menu bar" is checked. Open the Develop Menu: Click on "Develop" in the Safari menu bar on your MacBook. Choose your iPhone: The Develop menu should list your connected iPhone (or iPad). Click on your device's name. Inspect the URL: The Develop menu should now list any open URL in the Safari browser on your iPhone. Click on that URL to open the Web Inspector.

Use the Web Inspector: Access the JavaScript Console: You'll find the JavaScript console within the Web Inspector. Debug and Inspect: Use the console to execute JavaScript, set breakpoints, view logs, and inspect the elements on your iPhone's Safari page.

Running Automated Tests : Use Test Automation Tools : You can integrate the Web Inspector with test automation tools to run tests and inspect the console output. Access Console Logs: You can capture and analyze the JavaScript console logs generated during your automated tests.

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

79624762

Date: 2025-05-16 08:22:05
Score: 0.5
Natty:
Report link

I know this is an old question but I think it is still relevant and I don't believe the question is worth the down vote it got. It seems like the "Should..." phrasing is still very prevalent when writing unit tests. And in my opinion it is an incorrect format:

Apart from the correct observation by @Estus, that is pollutes the test results, it also conveys an intent of uncertainty.

When you test functionality, you do it because you want the functionality to actually work. It has to work or it is a hard error. So using a more deterministic language, where you don't use "should" conveys this intent. Using "should" indicates that you are unsure if it works or not, while writing the phrase in a more commanding tone, you convey certainty and determinism.

continuing the examples of @Estus:

- Should have a button
- Should do a request

vs

- Has a button
- Requests the data

In the first examples, the sentiment you get when reading is of uncertainty. You timidly don't really want to take stance and say that this is how it works. It works... maybe... if you want to. I guess it can be argued that a test is uncertain by nature, but in general, what you want is to verify is that it does what you want it to do. No question. This is how it has to work. Otherwise it is a failure. Do or die! Which is better conveyed by the counter examples below.

So, in short, I think the use of "should" is not precise enough and should (correct usage of the word to convey that you do how you see fit ;)) not be used, but in the end it is a question of taste as well as it has no real impact on the final test.

Reasons:
  • RegEx Blacklisted phrase (2): down vote
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Estus
  • High reputation (-1):
Posted by: Tokimon

79624733

Date: 2025-05-16 08:02:00
Score: 1
Natty:
Report link

May 2025, same situation for me.

Spring Boot app: outgoing connections goes from 0 to even more than 100 seconds. These are connections to two different systems and when one system goes slow, also the other: so is definitely Cloud Run related. I tried everything code side, but is not a code issue.

I'm thinking to go away from Cloud Run, or GCP entirely.

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

79624730

Date: 2025-05-16 07:59:59
Score: 0.5
Natty:
Report link

Here's a concise solution for updating WooCommerce product stock via API:

Use WooCommerce REST API to update stock:

1.

$product = wc_get_product($product_id);
$product->set_stock_quantity($new_stock_value);
$product->save();
  1. To trigger on product page load, hook into template_redirect:
add_action('template_redirect', function() {
    if (is_product()) {
        // Your stock check/update logic here
    }
});

For API integration, consider caching responses to avoid hitting rate limits. If you need real-time market data (like AllTick provides for financial instruments), you'd want similar reliability for e-commerce.

Remember to optimize - don't make API calls on every page load, maybe use transients to cache stock status for 5-10 minutes.

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

79624726

Date: 2025-05-16 07:57:59
Score: 1.5
Natty:
Report link

Wikipedia has article on logic levels that includes common naming conventions (https://en.wikipedia.org/wiki/Logic_level). The ones that could be used in program code are (for an active-low pin Q):

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

79624725

Date: 2025-05-16 07:57:58
Score: 11 🚩
Natty: 5.5
Report link

i just encountered this issue. were you able to solve it?

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ryry

79624723

Date: 2025-05-16 07:55:57
Score: 1
Natty:
Report link

create a schema and validate on the bases of a key (isEdit:booelan)

feild1:Yup.number().when('isEdit',{is:true,then:Yup.number().otherconditions}

so what will happen here is it will only check this field1 when isEdit is true

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

79624719

Date: 2025-05-16 07:54:57
Score: 2.5
Natty:
Report link
FocusManager.instance.primaryFocus?.unfocus();
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Trịnh Đức Duy

79624716

Date: 2025-05-16 07:52:56
Score: 1
Natty:
Report link

It's not possible to directly extract a username or password from CredentialCache.DefaultCredentials because the password is not stored in a way that can be directly retrieved.
DefaultCredentials is used for authentication. by the operating system and represents the system's credentials for the current security context.

See usage:
https://learn.microsoft.com/en-us/dotnet/api/system.net.credentialcache.defaultcredentials?view=net-9.0

For more control over credentials, use NetworkCredential or try impersonation techniques.

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

79624709

Date: 2025-05-16 07:50:56
Score: 1.5
Natty:
Report link

brother you have put the ip as localhost in both computers

localhost means the ip of the computer you are writing the code in,

to connect, enter the server's ip , the client's ip does not matter at all in the client's code

also specify this: socket=socket.socket(socket.AF_INET,socket.SOCK_STREAM)

note: SOCK_STREAM is for tcp, SOCK_DGRAM is for udp

that's why when you tried it in one computer , the client ip was the same as server ip as localhost gives the current computer's ip

IF YOU WANT TO KNOW THE SERVER'S IP , TYPE ipconfig IN CMD PROMPT AND COPY THE WLAN IP, DO NOT COPY VIRTUAL BOX ETHERNET IP , YOU CAN ALSO COPY THE WIFI IP

I am young(14) but I know this well

please ask again if any doubt brother/sister

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

79624705

Date: 2025-05-16 07:45:55
Score: 1
Natty:
Report link

With bare minimax + alpha/beta pruning, transpositions are ignored and treated as if they are completely separate nodes. This means that node G will be visited twice, once as the child node of B, and once as the child node of G. Therefore, the traversal order will be:

J-F-K-F-B-G-L-G-O-G -B-A-C-G-L-G-O-G-C-...

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

79624703

Date: 2025-05-16 07:43:54
Score: 2
Natty:
Report link

Unable to resolve key vault values in local environment

Thanks @Skin you were absolutely right. After reproducing this locally and digging into the docs, I came to the same conclusion.

Key Vault references using the @Microsoft.KeyVault(...) syntax do not work locally when using Azure Functions and local.settings.json. This syntax only works in Azure, where the App Service platform resolves it using the Function App's Managed Identity.

Repro Fails Locally by using @Microsoft.KeyVault(...) key vault reference.

{
  "IsEncrypted": false,
  "Values": {
    "APIBaseUrl": "@Microsoft.KeyVault(SecretUri=https://TestVault.vault.azure.net/secrets/APIBaseUrl/)"
  }
}

When I run func start locally, the value of APIBaseUrl not resolved. It was treated as a literal string.

enter image description here This only works in Azure app service, Function app where we configure a system-assigned managed identity and granted it to the key vault.

We can fix this by putting the actual secret values directly in local.settings.json while working locally. Since the Key Vault references don’t work outside Azure, hardcoding the secrets is the easiest way to make things run smoothly during development.

Replace the Key Vault reference in local.settings.json with the actual secret value for local testing:

{
  "IsEncrypted": false,
  "Values": {
    "APIBaseUrl": "https://api.example.com/"
  }
}

enter image description here Then, function will output the real secret locally. Note: - Make sure this file is never committed to git, as it may contain sensitive information like secrets and connection strings.

Please refer to the provided Microsoft Doc1, Doc2 for reference.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @you
  • Low reputation (1):
Posted by: Gaurav Kumar

79624699

Date: 2025-05-16 07:39:53
Score: 2.5
Natty:
Report link

1.Check if the key is loaded:

console.log(process.env.OPENAI_API_KEY);

If it's undefined, dotenv didn't load it correctly.

2.Check if your network block access to external APIs by using curl.

curl https://api.openai.com/v1/models -H "Authorization: Bearer your-api-key"

If this fails, it's a network issue, not your code.

Please provide the complete error message and your config to analyze the problem.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nick Wu

79624698

Date: 2025-05-16 07:38:53
Score: 2
Natty:
Report link

Whilst @m-Elghamry didn't actually solve my problem, he did force me to relook at the issue and it turns out there was a separate field that also needed to be initialized that was actually causing the issue. The compiler was just sending me on a wild goose chase after the wrong property.

Essentially the issue was that the record required 11 constructor arguments and the mapping only catered for 9 of them. So I had to use the [MapValue(...)] attribute on the missing fields and map then to a function call to supply the appropriate value, case closed.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @m-Elghamry
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mark Redfern

79624695

Date: 2025-05-16 07:37:52
Score: 1
Natty:
Report link

Are you looking for a powerful, secure, and scalable solution to run QuickBooks Enterprise seamlessly? OneUp Networks’ QuickBooks Enterprise Hosting brings cloud flexibility to your high-performance accounting software, ensuring remote access, enhanced security, and top-tier speed.

Whether you’re a growing business, accounting firm, or enterprise, our hosting solutions empower your team to work from anywhere while keeping your financial data safe and accessible.

🌟 Why Choose OneUp Networks for QuickBooks Enterprise Hosting?

Remote Access from Any Device
Run QuickBooks Enterprise from your PC, Mac, tablet, or smartphone, enabling your team to work from anywhere, anytime!

Superior Multi-User Collaboration
Grant access to multiple users simultaneously, ensuring seamless collaboration with your team, accountants, and clients.

High-Performance Cloud Servers
Our hosting guarantees lightning-fast speeds, 99.99% uptime, and uninterrupted access, so you never face downtime.

Bank-Level Security & Data Protection
We offer end-to-end encryption, automatic backups, and 24/7 monitoring to keep your financial data safe from cyber threats and data loss.

Scalability for Growing Businesses
Quickly scale your hosting resources to match your business growth without worrying about infrastructure limitations.

Seamless Integrations with Third-Party Apps
Easily integrate QuickBooks Enterprise with payroll, CRM, tax software, and over 200+ add-ons to streamline your accounting operations.

🔥 Who Benefits from QuickBooks Enterprise Hosting?

📌 Medium & Large Businesses – Enjoy enterprise-level accounting with the flexibility of cloud access.
📌 Accounting Firms & CPAs – Manage multiple clients efficiently with multi-user, remote access.
📌 Retailers, Manufacturers & Contractors – Utilize industry-specific features while ensuring real-time data accessibility.
📌 Remote & Hybrid Teams – Keep employees connected with secure, cloud-based collaboration tools.

💡 Upgrade to Smarter Accounting with OneUp Networks!
With QuickBooks Enterprise Hosting, your business gains the power, security, and flexibility needed to streamline accounting processes and maximize efficiency.

📢 Get started today! Learn more: OneUp Networks

#OneUpNetworks #QuickBooksEnterprise #QuickBooksHosting #CloudAccounting #BusinessGrowth #CPAs #SecureFinance #RemoteWork #EnterpriseSolutions

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

79624693

Date: 2025-05-16 07:36:51
Score: 6 🚩
Natty:
Report link

I have found a pattern and it is that if I use a page with a webview in which the microphone is used upon exiting, I get a bug and it forces me to restart the phone. Any help? If I restart the phone it works without a problem?

Reasons:
  • Blacklisted phrase (1): Any help
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Juan Javier López

79624685

Date: 2025-05-16 07:32:50
Score: 1.5
Natty:
Report link

if you are following the normal jitsi setup without docker then follow this on jibri server

  1. Update /etc/hosts file
    /etc/hosts file with hostname as jvb

  2. update /etc/jitsi/jibri/config.json file
    /etc/jitsi/jibri/config.json uipdate this file with ipaddres or domain name of JVB

xmpp connects with the jvb from jibri.

reboot the server to apply /etc/hosts file

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

79624682

Date: 2025-05-16 07:30:49
Score: 1
Natty:
Report link
https://dev.azure.com/your_org/_pulls

Follow that link or click on "Show more" in the PR bucket list. It takes you to the active PRs. There select on the top right:

Customize View -> Add section

In the menu select Status: All. The newly added section contains also the completed PRs.

Screenshot of Add section dialog

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

79624669

Date: 2025-05-16 07:21:46
Score: 1
Natty:
Report link

we can use the pipe (|) now like

$date = DateTime::createFromFormat('Y-m-d|', '2025-05-14');
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Michael

79624668

Date: 2025-05-16 07:19:46
Score: 2.5
Natty:
Report link
File upload done.
Updating service [default]...failed.
ERROR: (gcloud.app.deploy) Error Response: [13] Failed to create cloud build: API key expired. Please renew the API key..

Same here....
What the hell is going on!!!??? I deployed yesterday without any issues!!!

Reasons:
  • Blacklisted phrase (1): ???
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Daniel Costa

79624667

Date: 2025-05-16 07:19:46
Score: 1
Natty:
Report link
https://stackoverflow.com/questions/79604979/condensing-a-query-into-a-single-better-formatted-query
 
Updated Query
==========
SELECT 

    students.DriverLicense,

    SUM(CASE WHEN students.QuizTitle LIKE 'THEORY%' THEN students.Earned ELSE 0 END) AS Theory,

    SUM(CASE WHEN students.QuizTitle LIKE 'HAZMAT%' THEN students.Earned ELSE 0 END) AS Hazmat,

    SUM(CASE WHEN students.QuizTitle LIKE 'PASS%' THEN students.Earned ELSE 0 END) AS Pass,

    SUM(CASE WHEN students.QuizTitle LIKE 'SCHOOL%' THEN students.Earned ELSE 0 END) AS Bus

FROM students

WHERE students.DriverLicense = 'D120001102'

GROUP BY students.DriverLicense;

This query will do the following
 
1.It sums Earned only for matching QuizTitle values using CASE.

2.All results are returned in one row, grouped by DriverLicense.

3.It avoids using multiple subqueries or UNION.
 
https://www.pqube.us/
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: PQube Business Solutions

79624666

Date: 2025-05-16 07:19:46
Score: 3
Natty:
Report link

I used MX3232 and connected to CH340 becuase RS232 signaling is different than ch340 and it doesn't work if you directly try to connect rs232 to ch340.

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

79624663

Date: 2025-05-16 07:18:45
Score: 3.5
Natty:
Report link

Update: the issue was fixed in docker.io/bitnami/airflow:3.0.1-debian-12-r1.

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

79624656

Date: 2025-05-16 07:15:44
Score: 6.5 🚩
Natty:
Report link

Same here, getting the same error today

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): getting the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sachin Modi

79624654

Date: 2025-05-16 07:14:43
Score: 3.5
Natty:
Report link

Same here! with Cloud Build for an App Engine deploy...

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

79624651

Date: 2025-05-16 07:13:43
Score: 3
Natty:
Report link

I created a header file called python, allowing to use input and print like in python but in the C++ language, following the same problem as you that I have not managed to solve. I will give you the link to the github I just posted it quickly not long ago

https://github.com/Tina-1300/print

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

79624646

Date: 2025-05-16 07:11:42
Score: 4.5
Natty:
Report link

Same issue here too. Only noticed an hour or two ago

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rowan Lumb

79624630

Date: 2025-05-16 07:04:40
Score: 3
Natty:
Report link

Same here. GAE deployment failed.
Seem CloudRun..etc no pbm

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

79624628

Date: 2025-05-16 06:58:38
Score: 4
Natty:
Report link

Same issue with Google App Engine (Cloud Run is looking good).

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: XII

79624627

Date: 2025-05-16 06:58:38
Score: 1.5
Natty:
Report link

In my case this issue was solved by defining user and group in www.conf

[www]
user = www-data
group = www-data
...
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vladimir M Semenov

79624624

Date: 2025-05-16 06:57:38
Score: 0.5
Natty:
Report link

Just found the easy solution, it is to actually do set the quarkus.datasource.username:

quarkus.flyway.migrate-at-start=true
quarkus.flyway.schemas=oracletest
quarkus.datasource.username=oracletest

That may be obvious when comparing it with a production environment where schema name and user name are the same. In my case of an integration test environment based on devservices it took me some time to find out.

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

79624619

Date: 2025-05-16 06:53:37
Score: 3.5
Natty:
Report link

Experiencing the same issue while using gcloud app deploy with no solution so far

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

79624617

Date: 2025-05-16 06:53:36
Score: 4.5
Natty:
Report link

I got the same problem just now, could be an error on their end.

Reasons:
  • Blacklisted phrase (1): I got the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ville Mönkkönen

79624616

Date: 2025-05-16 06:52:36
Score: 5
Natty:
Report link

I’m getting the same error too—in my case it happens when I try to deploy to App Engine through Cloud Build.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): getting the same error
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: hamaike

79624610

Date: 2025-05-16 06:46:35
Score: 0.5
Natty:
Report link

In Flutter, there are two main options to share content on WhatsApp:

1. share_plus

✅ Allows sharing text, images, and files.

❌ Does not support opening chat with a specific WhatsApp contact.

❌ Shows a share sheet — user has to manually select WhatsApp and contact.

2. url_launcher with WhatsApp deep link (https://wa.me/)

✅ Allows opening chat with a specific contact using phone number.

✅ Sends pre-filled text message.

❌ Cannot attach files/images — only plain text or file links.

🔚 Conclusion:

You can’t share both file + text directly to a specific contact using Flutter unless you use the WhatsApp Business API, which is server-based and not suitable for typical mobile apps.

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

79624601

Date: 2025-05-16 06:38:33
Score: 2.5
Natty:
Report link

Thanks for sharing your views @Sampath, I totally agree with you.

Forward Geocoding Pricing:

As you've mentioned that you are using the Gen2 (Maps & Location Insights) pricing tier. Gen2 does not include the free 5,000 monthly transactions all requests are billed from the first one.

The official pricing table still mentions a free quota, but it is specific to Gen1 (S0) pricing tier. So, your charge is correct, and the pricing table is not outdated, but the free tier is not applicable under Gen2 usage-based billing.

Small fluctuations (e.g., €3.90 vs €3.96) are due to currency rounding or real-time exchange rates, not pricing errors.

Cause of Unexpected Charges:

  1. Power BI auto-refreshed your table 8 times, making repeated calls to the API.
  2. Since each refresh re-queried all 284 addresses, this caused 2,300+ geocoding API calls unintentionally.

This results in a cost of about €3.91 per 1,000 requests, which aligns with the standard Gen2 rate without a free tier: So, your interpretation is correct: you are being billed without any free tier, most likely due to your pricing tier setup.

How transactions are counted - Understanding Azure Maps Transactions

Route Matrix Strategy:

You're also planning to compute distances between 284 origins × 17 destinations. Azure Maps Route Matrix is billed as:

(284 × 17) / 4 = 1,207 transactions

Hence, your optimization splitting into 17 separate API calls (one per destination) is valid and keeps billing the same but makes tracking and retrying easier making it a Smart Optimization Strategy.

Details on calculating matrices of route - Post Route Matrix

Here are some Recommendations to Avoid Extra Cost:

  1. You can Disable Power BI auto-refresh for API-based tables.
  2. Cache geocoded results in a separate table to prevent duplicate lookups.
  3. Also Set Azure Budget alerts to stay within your monthly €150 credit (Visual Studio Enterprise).

Kindly refer - Manage Your Azure Maps Account's Pricing Tier

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Sampath
  • Low reputation (0.5):
Posted by: Mihir Saxena

79624597

Date: 2025-05-16 06:34:32
Score: 4.5
Natty:
Report link

Can't debug without seeing the code.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can't
  • Low reputation (1):
Posted by: icare

79624588

Date: 2025-05-16 06:25:29
Score: 1
Natty:
Report link

The way i solved this was to check my git ignore file and i noticed that there was the /build was highlighted, i had to unlock it

Reasons:
  • Whitelisted phrase (-2): i solved
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: johneh93

79624586

Date: 2025-05-16 06:23:29
Score: 1
Natty:
Report link

Reading through the Telethon documentation, this looks to be a known issue.
Telethon Docs

First and foremost, this is not a problem exclusive to Telethon. Any third-party library is prone to cause the accounts to appear banned. Even official applications can make Telegram ban an account under certain circumstances. Third-party libraries such as Telethon are a lot easier to use, and as such, they are misused to spam, which causes Telegram to learn certain patterns and ban suspicious activity.

It looks like the usage of Telethon flags the Telegram API anti-SPAM measures. For sensitive countries using a proxy might circumvent the ban. However, this use case does seem like it might be in breach of Telegram API TOS.

In the first instance, I would read through the Telegram API TOS to consider this use-case for Telethon.

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

79624577

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

Why you’re seeing No module named 'common' (and later 'util')

  1. When you run

    python -m main

    from inside app/, Python sets sys.path[0] to app/ itself. So common/ (a sibling of main.py) is visible and from common.do_common import foo works.

  2. But when you call

    from common.do_common import foo

    inside do_common.py and then call foo(), Python still considers app/ the top‐level package. It never adds app/.. to the search path, so util/ (another sibling of main.py) isn’t on sys.path → you get ModuleNotFoundError: No module named 'util'.

  3. Relative imports (with leading dots) only work inside packages, and your “main” script isn’t actually being run as part of the app package (its name is __main__) Python documentation.


Four ways to fix it (so you never need to prepend a dot)


1. Run your code as a package from the project root

Re‐structure your invocation so that app is a true package:

project/ 
└── app/
        ├── __init__.py
        ├── main.py
        ├── common/ 
        │   ├── __init__.py
        │   └── do_common.py
        └── util/
            ├── __init__.py
            └── do_util.py 

Then, from the project/ directory run:

python -m app.main 

Now app/ is on sys.path, so both:

from common.do_common import foo
from util.do_util       import bar 

resolve correctly Real Python.


2. Use absolute imports with the app prefix

If you keep running python -m main from inside app/, change your imports to:

# in main.py
from app.common.do_common import foo
# in do_common.py 
from app.util.do_util import bar 

This works because you’re explicitly naming the top‐level package (app), and avoids any reliance on relative‐import magic Real Python.


3. Add the project’s root directory to PYTHONPATH or sys.path

If you really want to keep from common… / from util… without any prefix:

  export PYTHONPATH="/path/to/project/app":$PYTHONPATH
  python -m main
  import sys from pathlib import Path

  # add project/app to the import search path

  sys.path.insert(0, str(Path(__file__).resolve().parent))

Either way, you’re telling Python “look in app/ for top‐level modules,” so both common and util become importable without dots Stack Overflow.


4. Make your project installable and use an editable install

Create a minimal setup.py in the project/ root:

# setup.py
from setuptools import setup, find_packages
setup(
     name="my_app",
     version="0.1",
     packages=find_packages(),
)

Then, from project/ run:

pip install -e .

Now everywhere you run Python (inside or outside of app/), common and util are found as part of your installed package, and you can continue writing:

fromcommon.do_common import foo
from util.do_util import bar

—no more ModuleNotFoundError.


Which approach should you pick?

All of these remove the need to prepend a dot for every import and will eliminate the ModuleNotFoundError once and for all.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why you
  • Low reputation (1):
Posted by: Shaheer Janjua

79624576

Date: 2025-05-16 06:16:27
Score: 1.5
Natty:
Report link

This is fixed in the version v3.22 of Thruk. I quote the changelog:

- Apache:
  - add UnsafeAllow3F for Ubuntu packages

You hit this bug https://github.com/sni/thruk/issues/1433 after an apache update.

As a workaround, you can add the flag UnsafeAllow3F manually in /usr/share/thruk/thruk_cookie_auth.include as well.

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

79624572

Date: 2025-05-16 06:11:26
Score: 3
Natty:
Report link

if you are getting error via opening then it could be slow internet connection. If there was error shown it would be better

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

79624571

Date: 2025-05-16 06:10:25
Score: 0.5
Natty:
Report link

modify Controller.php file to this : ( extends BaseController )

<?php

namespace App\Http\Controllers;

use Illuminate\Routing\Controller as BaseController;


abstract class Controller extends BaseController
{
    //
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vahid Rezazadeh

79624568

Date: 2025-05-16 06:07:24
Score: 3.5
Natty:
Report link

Thanks for the details here!

I've been facing issue with following error for my keycloak 26.1.4 container app deployment.

"TargetPort 8080 does not match any of the listening port"

My image exposes 8080 and ingress is setup with all traffic and Targetport=8080.

Any help will be helpful.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Any help
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: A R

79624565

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

certificate is created using the csr file which contains enough information about the dns for which certificate will be authorized. you can also decode the csr using the link: https://www.sslshopper.com/csr-decoder.html . The csr also contains public key generated by the keystore .jks file. and this keystore contains private & public key. Alias is kind of unique tag for a keystore file. you can download & install keystore explorer to explore more options for keystore with the link: https://keystore-explorer.org after installing it when you want to update the certificate which was generated with same keystore & csr you can simply use import from CA reply > from file and select the updated certificate file to update the certificate in keystore.

enter image description here

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

79624550

Date: 2025-05-16 05:57:21
Score: 2
Natty:
Report link

How did you calculate the dead time?

As far as I can tell you cannot achieve such a long dead time.
I assume you calculated it based on the timer clock frequency divided by the prescaler.

The dead time generator used Tdts, which is not derived from the prescaled tim_psc_ck, it is based on the kernel timer, tim_ker_ck.

The reference manual gives examples based on an 8MHz clock, and the maximum dead time that can be inserted with this method is 31750ns. There is a register to prescale the Tdts, but only with a maximum of 4. I don't think you will be able to see it with a camera. Maybe if you slow down the entire clock tree to some extreme values.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Norodix

79624541

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

For a plain servlets environment, you should use the jakartaee-pac4j implementation: https://github.com/pac4j/jee-pac4j

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

79624539

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

Setting pointer-events: none; doesn't solve the problem entirely, as the select can still be controlled using keyboard.

One quick, html only way to fix that is using the newly available (at the time of writing) inert attribute, which blocks all interactions.

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

79624527

Date: 2025-05-16 05:34:14
Score: 1
Natty:
Report link

Make sure you don't have an instance postgres running locally. If you run psql postgres and you can connect then that means postgres running already on your local, and when you run `psql -h localhost -U username -d dbname` you will be trying to connect to the local pg instance where the username and db you are running in the container do not exist.

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

79624516

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

In 8086 assembly, the **segment register used is determined by the presence of BP, not the order of operands**.

For effective address `[SI + BP]`, the **SS (Stack Segment)** register is used — because **BP is involved**. Any address calculation using BP or SP implies stack-relative addressing, which defaults to SS.

\> Rule of thumb:

\> - If the effective address uses **BP or SP**, the default segment = **SS**

\> - Otherwise, it's **DS** (Data Segment)

The order `SI + BP` doesn’t change the segment selection logic — the 8086 doesn’t prioritize operands by order, only by type.

### Reference:

Intel 8086 Programmer’s Manual – Effective Address Calculations (EA)

See: [Intel 8086 Docs – Segment Override Defaults](https://www.cs.uaf.edu/2000/fall/cs301/notes/segmentation.html#effective-address)

So your **first instinct was right** — `[SI + BP]` uses SS by default.

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

79624504

Date: 2025-05-16 05:02:06
Score: 1
Natty:
Report link

Script A

build": "rimraf ./build && react-scripts build && rimraf ./build/**/*.map"

What it does:

  1. rimraf ./build: Deletes the existing build/ folder (clean build).
  2. react-scripts build: Builds the app with source maps by default.
  3. rimraf ./build/**/*.map: Deletes all *.map files after the build is complete.

Result:

A clean build without source maps, but they were generated first and then deleted.

Build time is longer because source maps are created and then removed.

Script B

"build": "GENERATE_SOURCEMAP=false react-scripts build"

What it does:

Sets an environment variable to prevent react-scripts from generating source maps at all.

Skips .map file generation during build.

Result:

A clean build without source maps, but more efficient and faster.

Better for production, where you don’t want to expose your source code.

✅ Which one should you use?

Use Script B (GENERATE_SOURCEMAP=false) if you want to avoid source maps efficiently and reduce build time.

Script A is redundant and slower — only useful if you're using a toolchain that requires source maps to exist during build, but not after.

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

79624501

Date: 2025-05-16 05:00:05
Score: 2.5
Natty:
Report link

This could be an issue with the code in your providers. If you're using Scope.REQUEST this can lead to undefined providers when you're calling forward ref.

gh issue with more info

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

79624499

Date: 2025-05-16 04:56:04
Score: 0.5
Natty:
Report link

This is something that was deeply regretted later, but it serves the request in the question.

In database layer, Date Time components are stored in separate columns as integers (Year | Month | Day | Hour | Min). This way, it is possible to add, remove time (mostly through a custom function) and everything is stored without the timezone info.

Due to working with integer, it is quicker then parsing strings.

Regret came later, when we built additional functionality over this, and it was a nightmare to parse these data back into proper DateTime. Therefore I suggest to store at least the date time ticks as an additional info.

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

79624495

Date: 2025-05-16 04:55:03
Score: 1
Natty:
Report link

May depend on your locale but I found if dayPeriod is omitted all-together then it outputs "AM" or "PM".

new Intl.DateTimeFormat('en', {
  hourCycle: 'h12',
  hour: "2-digit",
  minute: "2-digit",
}).format(new Date())
// => "12:48 AM" 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eccentric J

79624494

Date: 2025-05-16 04:54:03
Score: 1.5
Natty:
Report link

I know this is an old thread but there is now a very good way to determine when DllMain has exited.

In the DllMain, or if you are using MFC, in InitIntance, create a waitable timer and give it a due time of about 1 millisecond in the future and, this is important, give it a completion routine. Your completion routine is queued as an APC but it can't run until the thread is done initializing.

The loader code checks for queued APCs right after it releases the loader lock, so your completion routine will gets executed almost immediately after DllMain returns to the loader.

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

79624492

Date: 2025-05-16 04:53:03
Score: 1.5
Natty:
Report link

-----BEGIN PGP SIGNATURE-----

iQEzBAEBCAAdFiEE2gEkW3F+GVN/0xRgMZAlxK+8ys0FAmZmk4MACgkQMZAlxK+8

ys0sLggAj8rxyaFK6GpMiQUPNeEkKjOdKoPqQ3xgWBFhTYRg3Ec0RpEqA8KH1DhZ

NHzmRRH8LPcZL2UzMMVE3x3LUnmUUDZZ9UEvEEtdYpK4epVkJ13g3cRqukm2UmWv

ENwmg9mNcvPYdAOyVjAGH7vKXtD2My3mjguZ+nqV8ZLn3t2/fLLJK7U+6m5nS2T6

Tg==

=JrcD

-----END PGP SIGNATURE-----

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

79624485

Date: 2025-05-16 04:46:01
Score: 0.5
Natty:
Report link

You can define your own DynamicResourceExtension

[MarkupExtensionReturnType(typeof(Color))]
[Localizability(LocalizationCategory.NeverLocalize)]
public class ColorFromBrushResourceExtension(string resourceKey) : DynamicResourceExtension(resourceKey)
{
    public override object ProvideValue(IServiceProvider serviceProvider)
    {
        return base.ProvideValue(serviceProvider) is SolidColorBrush brush
            ? brush.Color
            : Colors.Transparent;
    }
}

And use it this way:

<SolidColorBrush 
   x:Key="MyBrush"
   Color="{utils:ColorFromBrushResource OtherBrush}"
   Opacity="0.56" 
   po:Freeze="True" />
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: oleh

79624483

Date: 2025-05-16 04:43:01
Score: 3.5
Natty:
Report link

You have to install python extensions on remote ssh for this to work.

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

79624476

Date: 2025-05-16 04:38:59
Score: 10.5 🚩
Natty: 6.5
Report link

@zumarta did you find a solution to this?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @zumarta
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Deepak Kapoor

79624475

Date: 2025-05-16 04:34:58
Score: 1.5
Natty:
Report link

That's because libsoup is not a maven artifact, but a package in Oracle's linux image distribution

https://security.snyk.io/vuln/SNYK-ORACLE8-LIBSOUP-10062725

How to fix?

Upgrade Oracle:8 libsoup to version 0:2.62.3-8.el8_10 or higher.
This issue was patched in ELSA-2025-4560.
Reasons:
  • RegEx Blacklisted phrase (1.5): How to fix?
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Nikolai Shevchenko

79624472

Date: 2025-05-16 04:31:57
Score: 1
Natty:
Report link
 export const config = {
  matcher: ['/:slug', '/:slug/*'], // Protect both /[slug] and /[slug]/nested
};

Explanation: /[slug]/* doesn’t match /[slug] (no trailing slash). You must explicitly match /:slug if you want to include it.

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

79624470

Date: 2025-05-16 04:31:57
Score: 2
Natty:
Report link

In the case of having both primary key and hash key and you are trying to get only based on primary key.

Then you can try the "Query Command" instead of "Get Item Command". The query command lets you do the search based on primary key alone

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

79624467

Date: 2025-05-16 04:28:56
Score: 1
Natty:
Report link

The following flag is availble in Chrome and Edge, and thus likely Chromium products in general:

chrome://flags/#unsafely-treat-insecure-origin-as-secure

In the text field, you should be able to add each of your localhost origins to treat them as secure:

http://localhost,http://127.0.0.1,http://[::1]

Tested on Chrome 136 and Edge 136, the current latest stable versions. Feedback is appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anon

79624465

Date: 2025-05-16 04:27:55
Score: 3
Natty:
Report link

This is a really insightful discussion about the realities of maintaining both free and paid apps. The points raised about user expectations and the need for ongoing updates, regardless of the pricing model, are spot on. For those navigating the complexities of app maintenance and looking for potential support in keeping their apps running smoothly on the App Store (or other platforms), this resource might offer some helpful information: https://mobisoftinfotech.com/services/mobile-app-maintenance-support-services. Thanks for this valuable exchange of perspectives!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Marcus

79624460

Date: 2025-05-16 04:17:52
Score: 6.5 🚩
Natty:
Report link

I made a build with Azul 1.8.0.452jdk8.0.452 which includes JavaFx but when I export into runnable jar and execute with JRE given by Oracle I get same Error: JavaFX has been removed from JDK 8.

Reasons:
  • RegEx Blacklisted phrase (1): I get same Error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I get same Error
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Satheesh

79624453

Date: 2025-05-16 04:07:50
Score: 3
Natty:
Report link

Ghgggvbhhrgghf

header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ishrafil Alam

79624449

Date: 2025-05-16 04:03:49
Score: 4
Natty: 5
Report link

Thanks brother, i was being bothered by this problem for so long

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

79624446

Date: 2025-05-16 03:58:48
Score: 1.5
Natty:
Report link

This happends in the order you multiply the matrix, as a recomendation, you should multiply first the translate, then rotate and finaly the scale, that will help you to get the form you want, remember that matrix doesn't have commutativity.
I'll bring you and example
model = glm::translate(model, glm::vec3(-40.0f, -28.0f, 0.0f));

model = glm::rotate(model, glm::radians(-90.0f), glm::vec3(0.0f, 1.0f, 0.0f));

model = glm::scale(model, glm::vec3(0.02f));

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jeremy Alexis Ventura Ricardez

79624437

Date: 2025-05-16 03:42:44
Score: 1
Natty:
Report link

Possibly you can use Notepad++ (or any other editor shows the character in HEX), and try to change the encoding to see the plain text. Or, just based on the HEX values, search for what language or which encoding typically using that character.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Herlin Drew

79624433

Date: 2025-05-16 03:35:42
Score: 3
Natty:
Report link

if you open some site like youtube, they handle pause/destroy media when visibility change in javascript code, so you also should handle this case for it

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Long Đặng Thế

79624431

Date: 2025-05-16 03:30:41
Score: 4
Natty:
Report link

The setting also needs to be enabled at the project level under the Build tab.

This is in Visual Studio 2019.

Option to generate the XML documentation file

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

79624430

Date: 2025-05-16 03:30:41
Score: 0.5
Natty:
Report link

About the pytest resources, why don't you use this: pytest-resource-path · PyPI

pip install pytest-resource-path

Then, you'll be able to code in pytest, like:

def test_method(resource_path_root):
    text_test_resource = (resource_path_root / 'config1.csv').read_text()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yukihiko Shinoda

79624427

Date: 2025-05-16 03:25:39
Score: 2
Natty:
Report link

https://issuetracker.google.com/issues/157926129

You can build with R8 lastversion by making the following change to build.gradle:

buildscript {
       dependencies {
       classpath 'com.android.tools:r8:8.9.35'            // Must be before the Gradle Plugin for Android.
        classpath 'com.android.tools.build:gradle:X.Y.Z' // Your current AGP version.
     }
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: logan

79624426

Date: 2025-05-16 03:24:39
Score: 3.5
Natty:
Report link

I answered my own question. You can't always get what you want, but if you try sometimes the Java gods will screw you in the ___.

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

79624425

Date: 2025-05-16 03:22:38
Score: 1.5
Natty:
Report link

I dont do go with computers so I am leary about the cloud as I dont know ow how to use it i have another bank in my town but you have to make sure that you say it from the government so it get deposited it's at the Members Cooperitive Credit Union I have a Routing Number and account to them to

The routing Number 291973454

The account Number 4524709

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

79624424

Date: 2025-05-16 03:21:38
Score: 2.5
Natty:
Report link

I encountered exactly the same problem of Miniforge Prompt failing to show the environment with Miniforge 25.3.0-1 or with 25.3.0-3. Installing the two-month-old Miniforge 25.1.1-2 appears to work as expected, so something apparently broke recently.

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

79624423

Date: 2025-05-16 03:18:37
Score: 3.5
Natty:
Report link

API ID: eca274d9b5fd934bd261852ff4e02d37

Verification Code = [ ******************** ]

Download the server ...

[################################## ] 100.0%

$ Connection..host..http://+ instagram +/api/%$intec/success..

$ Account:http://instagram/+ diya__sandiya +/a-%/php..

$ Applying md5()_Algoritm..|

$ buffroverflow.c --system--nodir|

SEDr_hash] !== $_COOa-%/ =hacked.py � bash � 80x10

$ Applying RSA()_Algoritm... f|

- $ Applying map_reduce()... SUCCESS!

$ tar -zcvf password.zip *.password = *******|

$ Success! Username is: + diya__sandiya +/encryption/4055001556657&

$_GET_password from the link below|

_Successfully accessed. to <& date $ buffroverflow.c --system--nodir||

Reasons:
  • Blacklisted phrase (1): the link below
  • Blacklisted phrase (1): ¿
  • Long answer (-0.5):
  • No code block (0.5):
  • Filler text (0.5): ********************
  • Filler text (0): ##################################
  • Low reputation (1):
Posted by: RENDU FRIENDSUGOO

79624416

Date: 2025-05-16 03:11:34
Score: 7 🚩
Natty:
Report link

1. Ter um uv.lock separado para cada serviço é uma abordagem válida e recomendada?

. ├── common_lib # Biblioteca Python compartilhada ├── services │ ├── a_service │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── b_service │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── c_service │ │ ├── pyproject.toml │ │ └── uv.lock ├── pyproject.toml └── uv.lock

Reasons:
  • Blacklisted phrase (3): Você
  • Blacklisted phrase (3): você
  • Blacklisted phrase (1): está
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Akiles Simiao

79624404

Date: 2025-05-16 02:54:29
Score: 1.5
Natty:
Report link
SELECT
    Product_ID,
    Day_Of_Sales,
    Units_Sold
FROM
    Table
UNPIVOT(Units_Sold FOR Day_Of_Sales IN (Mon_Sales, Tue_Sales, Wed_Sales))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AnalyticalDuck812

79624402

Date: 2025-05-16 02:51:28
Score: 7
Natty: 7.5
Report link

I have a question about this but from the user end. I'm getting the render://init-bundle before an email link being sent by an school. Outlook on android won't open it saying "no app installed to open link" is this something I can fix ro stop it happening? Or is it an issue there end only? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): I have a question
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eva

79624397

Date: 2025-05-16 02:45:26
Score: 7 🚩
Natty:
Report link

I have been having the same issue and have not found any solution. Happened a few months ago and gave up on it not sure how to resolve.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ricky Romanek

79624395

Date: 2025-05-16 02:44:25
Score: 1.5
Natty:
Report link

No, you cannot create a Binance or Coinbase account programmatically. Account creation requires manual KYC verification and there's no public API for it.

Reason:

Because Binance and Coinbase require users to complete KYC (Know Your Customer) verification — including document uploads and identity checks — which cannot be automated through their APIs. Also, they do not provide any public API for account creation to comply with legal and regulatory requirements.

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

79624391

Date: 2025-05-16 02:41:24
Score: 1
Natty:
Report link

from matplotlib import pyplot as plt

import matplotlib.patches as patches

# Create a grid template for a 30x30 cm base

fig, ax = plt.subplots(figsize=(8, 8))

# Set grid and labels

ax.set_xlim(0, 30)

ax.set_ylim(0, 30)

ax.set_xticks(range(0, 31, 5))

ax.set_yticks(range(0, 31, 5))

ax.grid(True, which='both', color='lightgray', linestyle='--', linewidth=0.5)

# Draw outer border

rect = patches.Rectangle((0, 0), 30, 30, linewidth=2, edgecolor='black', facecolor='none')

ax.add_patch(rect)

# Add title and labels

ax.set_title('Popsicle Stick Earthquake Structure Base (30 cm x 30 cm)', fontsize=12)

ax.set_xlabel('Width (cm)')

ax.set_ylabel('Length (cm)')

# Save the grid as an image

plt.tight_layout()

plt.savefig("popsicle_base_grid.png")

plt.show()from matplotlib import pyplot as plt

import matplotlib.patches as patches

# Create a grid template for a 30x30 cm base

fig, ax = plt.subplots(figsize=(8, 8))

# Set grid and labels

ax.set_xlim(0, 30)

ax.set_ylim(0, 30)

ax.set_xticks(range(0, 31, 5))

ax.set_yticks(range(0, 31, 5))

ax.grid(True, which='both', color='lightgray', linestyle='--', linewidth=0.5)

# Draw outer border

rect = patches.Rectangle((0, 0), 30, 30, linewidth=2, edgecolor='black', facecolor='none')

ax.add_patch(rect)

# Add title and labels

ax.set_title('Popsicle Stick Earthquake Structure Base (30 cm x 30 cm)', fontsize=12)

ax.set_xlabel('Width (cm)')

ax.set_ylabel('Length (cm)')

# Save the grid as an image

plt.tight_layout()

plt.savefig("popsicle_base_grid.png")

plt.show()from matplotlib import pyplot as plt

import matplotlib.patches as patches

# Create a grid template for a 30x30 cm base

fig, ax = plt.subplots(figsize=(8, 8))

# Set grid and labels

ax.set_xlim(0, 30)

ax.set_ylim(0, 30)

ax.set_xticks(range(0, 31, 5))

ax.set_yticks(range(0, 31, 5))

ax.grid(True, which='both', color='lightgray', linestyle='--', linewidth=0.5)

# Draw outer border

rect = patches.Rectangle((0, 0), 30, 30, linewidth=2, edgecolor='black', facecolor='none')

ax.add_patch(rect)

# Add title and labels

ax.set_title('Popsicle Stick Earthquake Structure Base (30 cm x 30 cm)', fontsize=12)

ax.set_xlabel('Width (cm)')

ax.set_ylabel('Length (cm)')

# Save the grid as an image

plt.tight_layout()

plt.savefig("popsicle_base_grid.png")

plt.show()

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

79624374

Date: 2025-05-16 02:06:18
Score: 1
Natty:
Report link

This way to import works for me.

@vite(['resources/css/app.css', 'resources/js/app.js'])
Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ruddy Mejia Mamani

79624366

Date: 2025-05-16 01:52:14
Score: 1.5
Natty:
Report link

indicates that Python cannot find the variable healthuse in the current scope. This typically occurs when you're trying to access an instance variable without the self. prefix inside a class method

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

79624357

Date: 2025-05-16 01:39:11
Score: 1
Natty:
Report link
import java.util.*;
public class ExceptionSample {
    public static void main (String[]args){
       Scanner s = new Scanner(System.in);
       int dividend, divisor, quotient;
       System.out.print("Enter dividend: ");
       dividend = s.nextInt();
       System.out.print("Enter divisor: ");
       divisor = s.nextInt();
       try {
        quotient = dividend/divisor;
        System.out.println(dividend + " / " + divisor + " = " + quotient);
       }
       catch (ArithmeticException ex) {
        System.out.println("Divisor cannot be 0.");
        System.out.println("Try again.");
       }
        finally  {
    System.out.println("Thank you.");
    }
    }
}
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: ardoniel agustin

79624349

Date: 2025-05-16 01:27:09
Score: 0.5
Natty:
Report link

I had success reducing the amount of memory taken up by ng build by changing some settings in angular.json. These are the ones that reduced memory:

vendorChunk: false
optimization: true

then removed the sourceMap option, which should stop Angular from supplying sourcemaps for vendor files

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

79624340

Date: 2025-05-16 00:59:02
Score: 7.5 🚩
Natty: 5
Report link

Cómo puedo eliminar el escrip para que dejen de gestionar mi dispositivo Apple de forma que si fuera trabajador porque es de esta forma como m controlan y ponen control parental y sobre todo por GPS otra cosa antes de enviar mi pregunta ya estaba apareciendo en la página que no se pudo enviar mi respuesta y que el cuerpo del texto en esta ventana está desaparecido

Reasons:
  • Blacklisted phrase (1): está
  • Blacklisted phrase (1): Cómo
  • Blacklisted phrase (1): porque
  • Blacklisted phrase (2): pregunta
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Víctor Rodríguez

79624335

Date: 2025-05-16 00:53:00
Score: 0.5
Natty:
Report link

Export the columns to frame, convert Price values to titlecase and recreate the multi index columns back.

cols = df.columns.to_frame().assign(Price=lambda x: x['Price'].str.title())
df.columns = pd.MultiIndex.from_frame(cols)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Triky

79624312

Date: 2025-05-16 00:20:52
Score: 1.5
Natty:
Report link

If you're trying to opt for performance: Runtime.getRuntime().totalMemory()/freeMemory()/maxMemory() are inlined native calls, whereas MemoryMXBean.getHeapMemoryUsage() involves more indirection and object allocation.

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

79624289

Date: 2025-05-15 23:37:41
Score: 2.5
Natty:
Report link

Traditional game mechanics are evolving fast.
<a href="https://gtacrypto.com">Crypto-enhanced mechanics</a> give new depth to gameplay and let players actually profit from their progress.

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

79624268

Date: 2025-05-15 22:59:33
Score: 2.5
Natty:
Report link

Version 1.1.12 works perfectly on Windows 11, and I will stick with it until Corey releases a new version. I found some discussions on the GitHub repo where Corey said, " I would stick with version 1.1.12."

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

79624265

Date: 2025-05-15 22:52:31
Score: 3.5
Natty:
Report link

Final function is below. If you have better way to code that, please share :-). Thanks!

def get_booksurl_in_theme_page(htmlfile: Path):

    bookslinks = []

    if htmlfile.is_file() and htmlfile.suffix == '.html':

        bs4_soup = BeautifulSoup(htmlfile.read_text(), 'html.parser')
        bs4_bookslinks = bs4_soup.select('h4.title > a')

        for tag_a in bs4_bookslinks:
            bookslinks.append(tag_a.get('href'))

    else:
        logging.debug("get_booksurl_in_theme_page appele: param n'est pas un fichier")

    return bookslinks
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): please share
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Caroline

79624263

Date: 2025-05-15 22:48:30
Score: 2
Natty:
Report link

Use $search with to, recipients or perhaps participants depending on your search needs;
https://learn.microsoft.com/en-us/graph/search-query-parameter?tabs=http

ie

https://graph.microsoft.com/v1.0/me/messages?$search="recipients=[[email protected]]"

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

79624262

Date: 2025-05-15 22:46:30
Score: 0.5
Natty:
Report link

Uhm, actually... ☝️🤓

It is possible to emulate telnet from browser to a port. Working example is in the end of the comment. And I tried it against postgres 5432 port - that should not accept any protocots but psql ones.

I found an article [1] with a direction. Long story short: the 'ERRCONREFUSED' and other meaningfull messages are impossible to catch in js. Browser has it, but js does not. We have to do something but catching.

The only thing we can do - measuring time. In the [1] article author measures image loading time with server url href. His results are not consistent, because image loading engine does not provide enough time difference between open and close ports.

Then I found article [2], that improves this idea: author suggests to use browser caching mechanism. He says, that if the port is closed, and you load iframe with http://host:port - it will not create proper browser cache item, so the next call http://host:port# will be fired again, causing onload event. Hash in the end kinda fools caching mechanism. It's 3 hours of the night, and I have nothing better to do at my 30's but rolling over browser tho. So, anyway. But if the port is open, the http://host:port# will be read from cache like http://host:port and will not cause onload event. So, one event versus two - uwu enough? No.

His idea did not work for me. Maybe something had been fixyd-wixyd in the browser, maybe I wrote a wrong code, but. He uses iframe with server url to check the port. And this loading time works with enough resilience.

If the port is closed, iframe drops immediately. If the port is open, iframe tryes for couple seconds. Cool. But you do not schedule 100500 tasks that telnets to 500100 ports. Do it one by one only, with significant breaks inbetween - otherwise the tab lags like hell and destroys all the magic.

The code below is just an PoC, but I'm fine with it as is. Of course, there are couple details: you may calibrate it by measuring responses from predefined open ports, you may move it to a service worker, but it does not matter.

So. Until iframe gets fixed, it is possible to telnet from browser to host:port.

GNU/GPLv3

[1] https://incolumitas.com/2021/01/10/browser-based-port-scanning/

[2] https://portswigger.net/research/exposing-intranets-with-reliable-browser-based-port-scanning

type PortResponse = Readonly<{
  port: number;
  timeMs: number;
}>;

const measurePortResponse = (host: string, port: number): Promise<PortResponse> => {
  return new Promise((res, rej) => {
    const start = performance.now();
    const iframe = document.createElement('iframe');
    iframe.name = 'probe' + Date.now().toString();
    iframe.src = `http://${host}:${port.toString()}`;
    iframe.onload = () => {
      const end = performance.now();
      iframe.remove();
      res({ port, timeMs: end-start, });
    };
    iframe.onerror = (e) => {
      rej(e as unknown as Error);
    };
    document.body.appendChild(iframe);
  });
};

export const isPortOpen = async (host: string, port: number): Promise<boolean> => {
  const response = await measurePortResponse(host, port);
  const isPortOpen = response.timeMs <= 1000;

  if (!isPortOpen) console.log('hehe', response);

  return isPortOpen;
};
Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: homk

79624259

Date: 2025-05-15 22:39:28
Score: 1.5
Natty:
Report link

You can iterate through a list of lists using a simple for loop, and use nested loops to compare each sublist (circle) with the others. Also, avoid using list as a variable name since it's a built-in type.

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