79807864

Date: 2025-11-03 12:29:37
Score: 3.5
Natty:
Report link

Interesting, I was just curious because I was thinking of how they actually develop/test the software in a company like Nintendo.

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

79807858

Date: 2025-11-03 12:25:36
Score: 1
Natty:
Report link
import axios from 'axios';


const source = axios.CancelToken.source();


axios.get('/api/data', {
  cancelToken: source.token
}).then(response => {
 
}).catch(error => {
  if (axios.isCancel(error)) {
    console.log(error.message);
  } else {
    console.log( error.message);
  }
});

source.cancel();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: putaoshu

79807850

Date: 2025-11-03 12:11:33
Score: 2
Natty:
Report link

Countdown to December 2025? Will the Microsoft team delay this again for another year? I've lost patience and developed my own workaround which combines AppleScript for Menu items, Keyboard Maestro and the use of special references in Categories to get around this. The MacOS Outlook client is however a flaky mess (even without scripting involved)

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Olivier

79807836

Date: 2025-11-03 11:58:30
Score: 3.5
Natty:
Report link

Found solution to my issue by chance - I had setup my elastic search with no security:
https://discuss.elastic.co/t/elasticsearch-8-5-0-docker-fail-elasticsearch-reset-password/318575

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

79807835

Date: 2025-11-03 11:57:29
Score: 5
Natty:
Report link

Is it possible to return a variable in the if (condition)? Like doing if (var variable = SomeFunction() != null) return variable;.

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (0.5):
Posted by: Bamsen

79807822

Date: 2025-11-03 11:45:26
Score: 0.5
Natty:
Report link

The default in hypothesis is to use the normal distribution (df = Inf) so the modification below results in identical p-values.

(mepvalue <- marginaleffects::hypotheses(mod, "b4 >= 0", df=df)$p.value)
all.equal(pvalue, mepvalue[1]) # TRUE
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Stephen

79807813

Date: 2025-11-03 11:38:24
Score: 4
Natty:
Report link

"Jo777: Ketegangan, keseruan, kemenangan."

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Widi Kidiw

79807800

Date: 2025-11-03 11:24:20
Score: 5
Natty: 6
Report link

Hyy , i am also running on same issue, but i have 2 different VM's using one for airflow and one for spark, i have given spark host ip as driver ip host, still i get teh same error, any idea why??

Reasons:
  • Blacklisted phrase (0.5): why?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Amith Kulkarni

79807798

Date: 2025-11-03 11:21:20
Score: 0.5
Natty:
Report link

C++11 brace initialization lets you create a zero of any integral type, if that type has a single identifier, like uint32_t. For unsigned int you'd need a type alias. You can then invert all bits via ~.

auto flags = ~ uint32_t{};
using my_flag_type = unsigned int;
auto flags = ~ my_flag_type{};
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jens

79807794

Date: 2025-11-03 11:18:19
Score: 0.5
Natty:
Report link

In Filament V4 you are able to do something like this:

...UserResource::infolist($schema)->record($user)->getComponents(),

Maybe this can help you.

I'm not sure if this is the way it is supposed to be used, but it works.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: مردين

79807792

Date: 2025-11-03 11:16:18
Score: 1.5
Natty:
Report link

if someone stumble on this post in the future and have this problem i found a quick detour solution.

is to wrap the canvasInstance with vue `markRaw()` https://vuejs.org/api/reactivity-advanced#markraw to prevent it to be converted to a proxy this solved the issue for me.

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

79807790

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

Yes , you can look out the xmpp_plugin: https://pub.dev/packages/xmpp_plugin
Go through the services which are available for that plugin in documentation.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: JEEVAN H G

79807783

Date: 2025-11-03 11:06:16
Score: 2.5
Natty:
Report link
const [users, setUsers] = useState<User[]>([]);

Try out
http://react-typescript-cheatsheet.netlify.app/

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

79807778

Date: 2025-11-03 11:02:14
Score: 6 🚩
Natty: 5
Report link

Is it possible to customize the style of the text in the heads-up notification by changing the colour of the text, etc, by sending HTML content in the title and body if I am using React Native Expo and Notifee?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Japjyot Suri

79807759

Date: 2025-11-03 10:42:09
Score: 1.5
Natty:
Report link

This step can help it work:

  1. Open cmd with administrator privileges.Input the code in the below

  2. rd /s /q "%ProgramData%\Microsoft\VisualStudio\Packages"
    
  3. Open Visual studio installer,click the update one.

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

79807758

Date: 2025-11-03 10:42:09
Score: 1
Natty:
Report link

Currently, I have a system with a server, and multiple clients (clients can come and go). There is a single configuration that lists all the expected clients with their settings. For clients that are not in that list, a default empty settings should be sent.

Therefore I'm using singleton pattern for the default settings, because each not-listed client shares the same settings, and should access it when connects and ask for their settings. Default settings defined as a constant.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: zerocukor287

79807749

Date: 2025-11-03 10:35:07
Score: 3
Natty:
Report link

enter image description here

Here the answer to your question. The thing that you had missing is DATA which means that pattern starts with ANY type of Data until it finds your specific LogRecord.Security and then it puts the value into the variable severity

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

79807748

Date: 2025-11-03 10:33:07
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4/phaplet
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Prem

79807735

Date: 2025-11-03 10:23:04
Score: 3
Natty:
Report link

import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.view.View; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void startGame (View view){ Intent intent = new Intent(MainActivity.this, OyunBasladi.class); startActivity(intent); finish(); } }

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Override
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31805679

79807711

Date: 2025-11-03 09:59:00
Score: 3.5
Natty:
Report link

You can just... use script element with src attribute.

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

79807707

Date: 2025-11-03 09:53:58
Score: 2.5
Natty:
Report link

Forgot to update this. The issue was due to the priority being set at 255. As soon as this was lowered it worked as expected.

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

79807703

Date: 2025-11-03 09:48:57
Score: 0.5
Natty:
Report link

You can set the functionTimeout option in the host.json file.

The host.json affects also the local development.

As described in the host.json reference for functionTimeout you can set it to:

{
    "functionTimeout": "-1"
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ado

79807693

Date: 2025-11-03 09:32:53
Score: 0.5
Natty:
Report link

The above issue is quite old now but the problem can still occur.

We encounter the same type of issue : an automatic reload at the end of the startup, impacting singletons, repositories and so on that do not like to be reloaded.
It happens for us only under Docker when Linux volume mountings get performed over Windows.

What happens is that the JBoss deploy scanner logic detects that the last modified date of the <war file>.deployed does not match the one of the <war file> : it therefore redeploy the war. The difference is at the millisecond level.

The root cause is in the org.jboss.as.server.deployment.scanner.FileSystemDeploymentService.
When the war is successfully deployed, the <war file>.deployed gets created and its last modified date is set with the one of the <war file>. All fine except that the File.setLastModified is OS dependent as mentioned by the Java API : the millisecond precision may be lost, which is the case here when the JDK executed within the container is accessing the <war file>.deployed hosted on the mounted volume. Windows and Linux do handle the millisecond precision on file attributes : it seems therefore that the Docker mounting layer does not (to be investigated). We do use Rancher Desktop 1.22 and also faced the same issue with D4W10 (since 2022).

To verify it if you get the same reload issue than us : change (manually) your <war file> last modified date to a timestamp with 000 milliseconds. It will not reload at the end of the startup.

Our solution/workaround so far is to change the timestamp of the war file when the docker-compose is performed (a bit tricky). Another way is to do it at war build time (tricky as well).

The best solution - a JBoss fix - would be to store the <war file> timestamp within the <war file>.deployed file and read it on each deployment scanner execution.
As such milliseconds would be kept.

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

79807688

Date: 2025-11-03 09:24:51
Score: 2
Natty:
Report link

you should use background workers
As per you conditions
IF read and write is high use Redis or celery
a multi-queue system
or if there is a message passing between the end points
then use Kafka
this will enhance the
workflow and also reduce the
response time

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

79807685

Date: 2025-11-03 09:20:50
Score: 1.5
Natty:
Report link

I had this error too, but replaced "gemini-1.5-flash" with the following code. It works fine now.


    modelName = "gemini-2.5-pro"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: faribakhandani

79807682

Date: 2025-11-03 09:15:48
Score: 3.5
Natty:
Report link

if you want fundamental this channel for you.

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

79807678

Date: 2025-11-03 09:10:47
Score: 0.5
Natty:
Report link

As far as I know there are no libraries that optimize code for J.

On the other hand, there are certain functions and primitives in J that are optimized very well, the best example of course being the i. or iota function. Furthermore the compiler itself can detect patterns and optimize them (Dyalog APL is also well known for this). There are also patterns that are faster than others. The j for c programmers book in general has much information about optimization, the chapter https://www.jsoftware.com/help/jforc/performance_measurement__tip.htm in particular is probably the best resource out there.

In summary, most optimization tasks are best left to the compiler, and if you have a particular bottleneck, see if you can't improve the pattern of your functions.

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

79807675

Date: 2025-11-03 09:09:46
Score: 2
Natty:
Report link

It all came down to Using the bar magnifier option. https://www.tradingview.com/pine-script-docs/concepts/strategies/#bar-magnifier

In this case, price action does not follow the broker emulator rules, but rather the price action of the lower timeframes.

When disabling the bar magnifier, I get the expected behavior from the broker emulator.

enter image description here

enter image description here

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

79807658

Date: 2025-11-03 08:48:41
Score: 1
Natty:
Report link

Finally rsqrt() made its way into C23 [https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3220.pdf], and a couple more years later it has been implemented in glibc 2.42 [https://sourceware.org/glibc/manual/2.42/html_node/Exponents-and-Logarithms.html#index-rsqrt].

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

79807655

Date: 2025-11-03 08:45:40
Score: 1
Natty:
Report link

Four years later, rsqrt() made its way into C23 [https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3220.pdf], and a couple more years later it has been implemented in glibc 2.42 [https://sourceware.org/glibc/manual/2.42/html_node/Exponents-and-Logarithms.html#index-rsqrt].

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

79807653

Date: 2025-11-03 08:41:39
Score: 0.5
Natty:
Report link

The behavior you are experiencing seems to match the documentation. It explains that if you disable prorations (by using proration: 'none'), a new invoice will be generated for the full amount, which could lead to overcharging your customer.

After you reset the billing cycle anchor, Stripe immediately sends an invoice. Enable proration to credit the customer for any days already paid in the previous period. Disabling proration might result in overcharging your customer.

This behavior appears to be specific to subscriptions created in classic mode.

However, with subscriptions created in flexible mode, the desired result will be achieved (using the same Update Subscription code), with no invoice generated and the billing cycle reset to 'now'.  I managed to test this with test clocks on my account and got the same results.

I would suggest that you create Subscriptions in flexible mode or migrate your Subscriptions to flexible mode. However, if your Subscriptions are required to be created in classic mode, you can try changing the billing period by using a trial period, though this will require a few additional steps listed here.

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

79807652

Date: 2025-11-03 08:37:37
Score: 6 🚩
Natty: 5
Report link

Is it possible to customize the style of the text in the heads-up notification by changing the colour of the text, etc, by sending HTML content in the title and body if I am using React Native Expo and Notifee?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Japjyot Suri

79807651

Date: 2025-11-03 08:35:36
Score: 2.5
Natty:
Report link

I was able to fix the problem myself... I always started my Python script via the Visual Studio Code terminal. On macOS, VS Code apparently did not have permission to search for devices on the local network. Therefore, the request was blocked. The setting can be found under “System Settings” => “Privacy & Security” => “Local Network.” The switch must be flipped for VS Code.

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

79807643

Date: 2025-11-03 08:23:33
Score: 7
Natty:
Report link

@Lakasz: Those MIN_BY/MAX_BY functions appear to be exactly what I am looking for... but they don't seem to be supported in Pyspark 2.3 (which is in HDP 2.6.5). That's unfortunate.

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Lakasz
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: BeaverFever

79807642

Date: 2025-11-03 08:20:33
Score: 1.5
Natty:
Report link

This is actually meant as a humorous easter egg to symbolize that Python will never stoop so low (pun highly intended) as to use braces rather than indentation like C-style languages.

from __future__ import braces

ERROR!
Traceback (most recent call last):
  File "<main.py>", line 1
SyntaxError: not a chance
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: DereferencedNullPointer

79807639

Date: 2025-11-03 08:14:31
Score: 0.5
Natty:
Report link

A simple solution is: in keycloak-main/js run frontend admin-ui by this command:

pnpm --filter @keycloak/keycloak-admin-ui run dev

and for backend in keycloak-main/js/apps/keycloak-server run by this command:

pnpm start --admin-dev

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: inred

79807635

Date: 2025-11-03 08:09:29
Score: 4
Natty:
Report link

You can modify the logcat view Image

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

79807619

Date: 2025-11-03 07:57:26
Score: 0.5
Natty:
Report link

As you found, setting .setProfile("EN16931") or .setProfile("EXTENDED") is mandatory for French Factur-X compliance. Here's a quick reference for choosing the right profile:

Factur-X Profiles:

For the French mandatory e-invoicing (starting Sept 2026), you must use EN16931 profile minimum to pass validation with Plateformes Agréées (PA/PDP).

Common pitfall: Don't forget to validate both PDF/A-3 conformance AND XML Schematron rules (250+ business rules). VeraPDF only checks PDF structure, not invoice semantics.

Alternative approach: If maintaining Mustang integration becomes complex (especially for Schematron validation, auto-completion from SIRET, or multi-PA/PDP compatibility), you can externalize this via REST API. For example, FactPulse API accepts PDF + invoice metadata and returns compliant Factur-X (disclaimer: I'm the founder, but it's open for integration regardless of your stack).

Documentation:

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

79807617

Date: 2025-11-03 07:56:26
Score: 1
Natty:
Report link

The only correct answer is: you don't. It is a catch22 rabbithole. In short, your script shouldn't be used for authorisation but the account that runs the script. In other words, if your script invokes a SQL database, that shouldn't be password based authentication but Windows Authentication. Anyways, probably the closest you can come is using DPAPI (Data Protection API) on your own script. For this, see dupplicate How to securely store a password for a script run every day using a Windows task scheduler?.

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: iRon

79807610

Date: 2025-11-03 07:38:22
Score: 3
Natty:
Report link

If configuring dpkg doesn’t work, and you get the same error again and again, execute

$ sudo rm /var/lib/apt/lists/lock

$ sudo rm /var/cache/apt/archives/lock

$ cd /var/lib/dpkg/updates

$ sudo rm *

$ sudo apt-get update

These commands generall are a permanent fix.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): get the same error
  • Low reputation (0.5):
Posted by: smuzoen

79807607

Date: 2025-11-03 07:37:22
Score: 2.5
Natty:
Report link

Did a workaround by going to .dbtools/filters/project.filters and passed the script below inside the body:

export_type <> 'APEX_APPLICATIONS'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): Did a
  • Low reputation (1):
Posted by: Matěj Alex

79807605

Date: 2025-11-03 07:24:19
Score: 6.5
Natty:
Report link

@Gus I've included those definitions

Reasons:
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @Gus
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Timeless0007297

79807603

Date: 2025-11-03 07:23:18
Score: 0.5
Natty:
Report link
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: user1222589

79807592

Date: 2025-11-03 07:00:13
Score: 1.5
Natty:
Report link

same problem for me in android studio

showing video unavailable error code 15

YouTubePlayerView youTubePlayerView = findViewById(R.id.youtubePlayerView);
getLifecycle().addObserver(youTubePlayerView);

youTubePlayerView.addYouTubePlayerListener(new AbstractYouTubePlayerListener() {
    @Override
    public void onReady(YouTubePlayer youTubePlayer) {
        String videoId = "dQw4w9WgXcQ";
        youTubePlayer.loadVideo(videoId, 0);
    }
});
Reasons:
  • RegEx Blacklisted phrase (1): same problem
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sakthibala TS

79807570

Date: 2025-11-03 05:57:00
Score: 1
Natty:
Report link

The error message “playbook-vault error: Please pip install hvac to use the hashi_vault lookup module” indicates that the hvac Python package is missing. To fix this, you just need to install it using the following command:

pip install hvac

This information was provided by the professional team at AC Maintenance UAE.

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

79807568

Date: 2025-11-03 05:56:00
Score: 3.5
Natty:
Report link

Please, check this sample on how to use pdfHtml ConvertToElements, this is exactly what you are asking for. https://github.com/itext/itext-publications-samples-dotnet/blob/develop/itext/itext.publications/itext.publications.htmlsamples/itext/samples/htmlsamples/chapter07/C07E02_CombineHtml2.cs

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

79807566

Date: 2025-11-03 05:51:59
Score: 1.5
Natty:
Report link

To change the sender address when sending an email using TIdSMTP (Indy components in Delphi), you must set the From and Sender properties of the TIdMessage object before calling TIdSMTP.Send.

At iDigitalArpita, we simplify such tech and marketing integrations while offering the best digital marketing services in Odisha to help your business grow efficiently.

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

79807562

Date: 2025-11-03 05:33:55
Score: 3
Natty:
Report link

Go to APIs & Services → Quotas in Google Cloud Console, find Generative Language API, select Predict long-running requests per project per day, and click Request increase.

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

79807553

Date: 2025-11-03 05:08:50
Score: 1
Natty:
Report link

After reloading VsCode's workspace, a new target/ folder was created in a wrong path that was conflicting with the original one.

Removing the newly created target/ folder fixed the issue.

Paths in toml files should be checked

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

79807549

Date: 2025-11-03 05:00:48
Score: 2
Natty:
Report link

on other hands, some time git or whatever text editor you are using, changes the end line of .sh files from LF to CRLF, when this happens docker can't find the file because linux, so you should to change the file to LF and save. That happened to me🤒

If you use vs code you can change it at the below bar.

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

79807542

Date: 2025-11-03 04:47:45
Score: 2
Natty:
Report link

check this invisibility issue is due to the the darkmode. set isDarkModeEnabled={false} then check whether the date will display or not

Also add the the display prop to the style, this may solve the blank picker issue.

check this out:

react-native-modal-datetime-picker showing only current date

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

79807534

Date: 2025-11-03 04:32:42
Score: 1
Natty:
Report link

The problem here is with the something's in your question. Those somethings are kind of important. Is it a circle? a sphere? a cylinder? a triangle? an AABB? an OBB? a plane?

The basic principle is to start from two equations; one for a point on the ray, and one for the something.

Sometimes we can use simultaneous equations directly to say:

RayPos + RayDir * d   -   EquationForPointOnTheSomething == 0

Or, you use a distance test:

std::distance((RayPos + RayDir * d), (EquationForPointOnTheSomething)) == 0

In both cases, you need to solve for 'd' (Which hopefully will boil down to something nice to solve, like a quadratic equation). In some cases, you may find you need to solve a multivariate equation, e.g.

RayPos + RayDir * d   -   BezierPatchEquation(u, v) == 0

In this case, you'll need to solve for d, u, & v at the same time. Assuming that this is in 3D, that should work nicely using a JacobianMatrix.

RayCircle example

Equation for a circle at the origin: x^2 + y^2 = r^2 Equation for point on a ray: RayPos + RayDir * d

Combined: (RayPos.x + RayDir.x * d)^2 + (RayPos.y + RayDir.y * d)^2 = r^2

Now expand out the brackets:

RayPos.x^2 + 2*RayPos.x*RayDir.x*d + RayDir.x^2*d^2 + 
RayPos.y^2 + 2*RayPos.y*RayDir.y*d + RayDir.y^2*d^2 - r^2 = 0

Factoring out d^2, d, and the constants:

d^2 * (RayDir.x^2 + RayDir.y^2) + 
d   * (2*(RayPos.x*RayDir.x + RayPos.y*RayDir.y)) +
1   * (RayPos.x^2 + RayPos.y^2 - r^2)  = 0

We can simplify further, by noticing that these are dot products:

d^2 *   dot(RayDir, RayDir) + 
d   * 2*dot(RayDir, RayPos) +
1   *  (dot(RayPos, RayPos) - r^2)  = 0

So now we have a standard quadratic polynomial, of the form ax^2 + bx + c = 0, where a,b,c are:

a =   dot(RayDir, RayDir)
b = 2*dot(RayDir, RayPos)
c =   dot(RayPos, RayPos) - r^2

Pass into the quadratic formula, voila!

Interestingly, if you use the dot product form, this would also work for a Ray/Sphere test. If you want to ray test against a circle that is not at the origin, subtract the circle position from the ray position first.

Now for the complicated part....

Your game world will be constructed from a large soup of differing primitives: Spheres, Planes, Boxes, triangles, quads, etc.

To find the closest intersection, you need to test the Ray against ALL of those primitives, to find the one with the closest intersection. As your game world complexity increases, the computation time will typically rise exponentially.

How to fix that??

Typically you need to start with some form of spatial partitioning scheme. (E.g. BSP trees, Quad trees, Oct Trees, Kd Trees, AABB trees, Portals, and many many more!). With any luck, that spatial partitioning scheme should be able to reduce the amount of objects you need to test against, hopefully keeping you within a reasonable CPU budget.

With a lot of work, you can usually find a way to batch up similar ray test types, potentially optimize them with SIMD, or throw in batches at a GPU compute shader.

The other alternative, is to simply use an existing physics engine (e.g. Havok, PhysX, Bullet), because they've already done the hard work for you!

Reasons:
  • Blacklisted phrase (1.5): any luck
  • RegEx Blacklisted phrase (1.5): How to fix that??
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: robthebloke

79807533

Date: 2025-11-03 04:29:41
Score: 1.5
Natty:
Report link

This question is old, but people still see issues in generating war file for external tomcat, for this i have created the project which will generate the war for external tomcat. it has docx file as well for the changes.

https://github.com/Komalprasad/Jhipster-Demo

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

79807532

Date: 2025-11-03 04:29:41
Score: 3.5
Natty:
Report link

Thanks for helping with an answer.

Just to clarify this question a bit more.

The 2 steps in my input `Supplier` do not run SEPARATELY FOR EACH REQUEST. Like, when 10 concurrent requests come, suppose the `read from cache` for request 1 runs, then the `read from cache` for request 2, then their `write in cache` steps. I want READ-THEN-WRITE separately for each request.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ashutosh Verma

79807526

Date: 2025-11-03 04:09:37
Score: 2
Natty:
Report link

This website explains almost everything there is about raycasting, including how it works and the math behind it:

https://lodev.org/cgtutor/raycasting.html

You could also check out some YouTube videos on it, but that website should answer nearly anything about raycasting.

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

79807523

Date: 2025-11-03 04:06:35
Score: 5
Natty:
Report link

enter image description here

hi i developed this effect fade at edge you can try it

https://pub.dev/packages/fog_edge_blur

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 8. Bùi Thanh Hải

79807518

Date: 2025-11-03 03:49:32
Score: 2
Natty:
Report link

Update, on Safari, this work. But not for Chrome and Edge on macOS


      video::-webkit-media-text-track-display-backdrop {
        background-color: transparent;
      }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Van Minh FPT

79807514

Date: 2025-11-03 03:35:28
Score: 4
Natty:
Report link

hi i developed this effect fade at edge you can try it

https://pub.dev/packages/fog_edge_blur

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 8. Bùi Thanh Hải

79807505

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

Possible workaround:

  1. Check for the key combination in FormKeyDown and remove the text to the left of the cursor position

  2. Remove the special character in position 1 in the FormKeyUp

However, should just work by default :-)

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

79807502

Date: 2025-11-03 02:59:21
Score: 0.5
Natty:
Report link

Since I solved it, let me share how to fix this issue.
At very beginning, I tried to install Boost library through vcpkg(i.e. vcpkg install boost). With this, both configure and build are working. But I got an error when this code↓ run. So I decided to complie boost by myself.

desc.add_options()("memory-lock", po::bool_switch()->default_value(false),"Lock memory pages to prevent swapping");

According to the command line used when compiling Boost manually, I updated my VS2022 settings↓.
1. Configuration Properties → Advanced → Use of MFC → Use MFC in a Static Library
2. Configuration Properties → Advanced → Use Debug Libraries → Yes
3. Configuration Properties → C/C++ → Code Generation → Runtime Library → Multi-threaded Debug DLL

Then no error comes out when building my project.
And I don't recommend using Boost Debug installed by vcpkg...

Reasons:
  • Whitelisted phrase (-2): I solved
  • RegEx Blacklisted phrase (2): But I got an error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Matt WU

79807500

Date: 2025-11-03 02:51:19
Score: 4
Natty:
Report link

This dumb shit didn’t even work why the fuck would you make me add eggs fuck this shit I’m playing kahhot and another thing why the fuck would you make me make acc for this shit this damn thing don’t even work and the review are god damn WORNG I’m sueing meet me in court hoe and also I hate the way you look yeah dusty ass how you look like shit just like those damn eggs this shit I will get my money when I see you in court hoe 1.2 billion dollars cha Ching

Reasons:
  • Blacklisted phrase (2): fuck
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Caleigha

79807492

Date: 2025-11-03 02:33:15
Score: 3
Natty:
Report link

Press CTL+Shift+P for Windows for Opening VSCode Control Panel, select Ask Github Copilot

enter image description here

Alternatively pression Ctrl+Alt+I from vscode window

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

79807491

Date: 2025-11-03 02:27:14
Score: 0.5
Natty:
Report link

Finally I reached a solution, which maybe dumb but the easiest way to escape the problem.

>>> `import rpy2`
>>> try: 
>>>     `from rpy2.robjects.packages import importr`
>>> finally:
>>>     `from rpy2.robjects.packages import importr` 

The try will test the code. Of course, it fails with the same error message. If the code without a try then it will stop there and all code after that won't run. Now a try & finally lines will repeat the code two times to guarantee the lines after finally will run without stops or other error messages.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ke Nan

79807489

Date: 2025-11-03 02:25:13
Score: 0.5
Natty:
Report link

After some trial and error, I discovered that Android Studio's Android view only appears once the android-ui module builds successfully. If the module fails to sync or compile, the IDE doesn't recognize it as an Android module, and the Android view disappears. The key changes were to use agp = "8.13.0" and kotlin = "2.0.21". Even though Kotlin warns that AGP 8.13.0 is beyond tested range, these warnings can be suppressed. Once the android-ui module built successfully, Android Studio recognized it and restored the Android view. This behavior seems tied to plugin resolution and Gradle sync, it was very disconcerting.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sildeag

79807488

Date: 2025-11-03 02:24:12
Score: 5
Natty:
Report link

idk fecfecve efvefvcvvvvvvvvvvvvvvvvvvvvvvvv ffffffffffffffffffffffffffffffffffffeeefcec

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Filler text (0.5): vvvvvvvvvvvvvvvvvvvvvvvv
  • Filler text (0): ffffffffffffffffffffffffffffffffffff
  • Low entropy (1):
  • Low reputation (1):
Posted by: Wahyu K

79807481

Date: 2025-11-03 02:14:10
Score: 1.5
Natty:
Report link
  1. '.csr' is the certificate signing request you send to the CA.
  2. '.cer' is the public certificate issued by the CA.
  3. '.pem' is a text-based container for certificates or keys.
  4. '.jks' is a Java keystore used to store keys and certs for Java apps.
  5. '.p12' (PKCS#12) bundles your private key and certificate chain together, which is why SoapUI needs it for authentication.
Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sheikh Wahab Mahmood

79807480

Date: 2025-11-03 02:03:08
Score: 3
Natty:
Report link

try it this code and some thingI'm developing a b2c ecommerce in Medusa js for my degree exam, it is the first approach with this technology and

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

79807469

Date: 2025-11-03 01:32:02
Score: 3.5
Natty:
Report link

Just mentioning we are experiencing the same issue. At this stage we don't have a solution but will be trying to redeploy and will update once it's done.

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

79807467

Date: 2025-11-03 01:27:00
Score: 0.5
Natty:
Report link

I created Parall, a macOS utility that lets you run multiple independent instances of any app, including Qt Creator.

Each shortcut bundle made with Parall launches the target app in its own isolated environment - separate HOME directory, environment variables, and settings. That means you can open several Qt Creator instances at the same time, each with different projects, plugins, or configurations, and they won't interfere with each other.

enter image description here

It requires no Terminal commands or duplicated app folders - just create the shortcut and launch.

The app is available in the Mac App Store and approved by Apple.

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

79807459

Date: 2025-11-03 01:01:54
Score: 7.5 🚩
Natty:
Report link

I am also facing the same issue with eclipe. I am trying to run a cucumber feature file and it is throwing error "Failed to run behave for validation. Check that behave is installed and the behave command is configured correctly in preferences." I am not working with Behave. Rather, i am trying to run Cucumber framework.

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): i am trying to
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aruna Jeevanantham

79807458

Date: 2025-11-03 00:48:51
Score: 4
Natty:
Report link

For those who still can't find it, here is where it is:
enter image description here

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

79807457

Date: 2025-11-03 00:48:51
Score: 1.5
Natty:
Report link

If you run https://onlinegdb.com/H4h7KQMcIo which uses A() ? B() ? C() : D() : E() it prints A first and then B and then C

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

79807437

Date: 2025-11-02 23:41:38
Score: 6 🚩
Natty:
Report link

Yay! @mmann It works now! Installed without a hitch. Please let me know when you update to 3.14; I will hold off on updating my Python install until then.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @mmann
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: MetroPietro

79807436

Date: 2025-11-02 23:41:38
Score: 3
Natty:
Report link

Posted a question. How to detect use of std::string short string optimization? As a question How to detect use of std::string short string optimization? As a question

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • High reputation (-2):
Posted by: Loki Astari

79807431

Date: 2025-11-02 23:23:34
Score: 1
Natty:
Report link

I got this error:

Error: Cannot find module @rollup/rollup-linux-x64-gnu. npm has a bug related to optional dependencies

And this one worked for me:

rm -rf node_modules package-lock.json

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

79807430

Date: 2025-11-02 23:18:33
Score: 4.5
Natty: 5
Report link

I was going crazy over this, thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user3794653

79807423

Date: 2025-11-02 22:58:28
Score: 0.5
Natty:
Report link

Using datetime

import datetime

mjd = 51_544 + (datetime.datetime(2018,1,16, 2,19,40, 195) - datetime.datetime(2000, 1, 1)) / datetime.timedelta(1)
# 58134.096990743

jd = 2_451_545 + (datetime.datetime(2018,1,16, 2,19,40, 195) - datetime.datetime(2000, 1, 1, 12)) / datetime.timedelta(1)
# 2458134.596990743

For the reverse conversion from JD to UTC see https://stackoverflow.com/a/79807419/11769765.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Friedrich -- Слава Україні

79807417

Date: 2025-11-02 22:33:23
Score: 2.5
Natty:
Report link

Django Rest Framework use DjangoModelPermissions on ListAPIView

That's where the answer was, but I did not recognize it at first. So basically, DjangoModelPermissions does not check view_model, and simply allows all GET, OPTION and HEAD requests, regardless of permissions.

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

79807412

Date: 2025-11-02 22:26:21
Score: 1
Natty:
Report link

So, to rotate the image by 90 degrees clockwise, the idea is to manually place each pixel in its new position. You’d first create a new blank image with the dimensions swapped from the original—so if the original is 360x480, the new one will be 480x360. Then, for each pixel in the original image, you figure out where it should go in the rotated version. The pixel at position (x, y) in the original moves to (y, width-1-x) in the new image. This way, you get the 90-degree rotation.

The tricky part is making sure you don’t end up with coordinates that are out of bounds in the new image. While your approach works, it's not the most efficient for larger images since you’re manually moving each pixel. A faster way would be to use something like the Pillow library, which has built-in functions for rotating images more efficiently.

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

79807406

Date: 2025-11-02 22:12:18
Score: 1
Natty:
Report link

I have solved this problem.

I still don't know why calling arecord with the device plughw:0,0 produced audio from the microphone at that time, however, first of all I recognized the real sound card(card 1, hence hw:1 or plughw:1), and also based on the previous answer from user @user31256271, I removed the setting of the internal buffer size and the data transfer period (I thought that in fact these are the values that I should work with when reading data: buffer size in bytes, etc.).

Reasons:
  • Whitelisted phrase (-2): I have solved
  • No code block (0.5):
  • User mentioned (1): @user31256271
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: svec

79807403

Date: 2025-11-02 21:59:15
Score: 1.5
Natty:
Report link

Try running explicitly with bash:

bash ./subscript.sh

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

79807385

Date: 2025-11-02 21:15:05
Score: 6
Natty:
Report link

@ThomA I see that some discussions get up/downvotes somehow, seems unrelated to the thumbs up/down - how does one vote on them?

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @ThomA
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Dale K

79807378

Date: 2025-11-02 21:07:03
Score: 0.5
Natty:
Report link

"help you build a static HTML document" from what? Data? Code? An example of what you are trying to do would go a long way toward making your question more answerable.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: ysth

79807377

Date: 2025-11-02 21:06:03
Score: 2
Natty:
Report link

If anyone just wants to try it locally, you can downgrade the APM Server version in the YAML file to any version before 8 — for example, version 7.x.
The main issue is that in version 8, the template can’t be generated, whereas it works in version 7.

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

79807375

Date: 2025-11-02 21:03:02
Score: 2.5
Natty:
Report link

"Here is a snippet of my ngspice code"

You will do better on this site if you include your complete code.

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

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): stackoverflow.com/help
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-2):
Posted by: ravenspoint

79807364

Date: 2025-11-02 20:38:57
Score: 0.5
Natty:
Report link

I added a function to create variable width buffers in pygeoops: pygeoops.buffer_by_m.

It is based on the function I wrote above, but made a bit more robust, and it uses the Z or M values present in a shapely LineString for the distances.

I also has support for multilines and very experimental support for polygons.

It is a very first version, so most likely there will be bugs... but feedback is very welcome.

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

79807329

Date: 2025-11-02 19:40:41
Score: 0.5
Natty:
Report link

Since your dedicated GPU broke, the emulator's default settings for hardware acceleration are probably incompatible with your new integrated graphics setup, causing the "endless load loop" and boot failure. You need to force the emulator to use a more compatible software rendering mode or a different hardware rendering setting.

  1. Open the Device Manager (or AVD Manager) in Android Studio/IntelliJ.
  2. Find the AVD you are trying to launch (e.g., the API 24 image).
  3. Click the Edit pencil icon next to the AVD.
  4. Scroll down to the Emulated Performance section.
  5. Change the Graphics setting. If it is set to Automatic or Hardware, change it to Software. This forces the emulator to use the CPU for rendering, bypassing any integrated GPU incompatibilities.
  6. Save the AVD and launch it again. If it boots successfully, this was the issue.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Max

79807324

Date: 2025-11-02 19:25:38
Score: 0.5
Natty:
Report link

There is another possibility that in .gitconfig, there is a user configuration for another account (in my case, my corporate account instead of the personal one); just make sure that user has ownership of the inputted access token.

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

79807315

Date: 2025-11-02 19:15:35
Score: 4
Natty:
Report link

@Loki are you being blocked from re-asking as a question now? Perhaps because this wall-of-noise has the same title?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Loki
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Drew Dormann

79807313

Date: 2025-11-02 19:05:33
Score: 0.5
Natty:
Report link

Can't seem to delete. Have flagged to moderators.

Want to re-ask as a question. I have a solution.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): Can't
  • High reputation (-2):
Posted by: Loki Astari

79807310

Date: 2025-11-02 18:56:30
Score: 1.5
Natty:
Report link

I had the same problem but it was solved by these steps:

1: composer clear-cache

2: composer self-update

3: composer install

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

79807309

Date: 2025-11-02 18:55:30
Score: 3
Natty:
Report link

check the vs code cache and also remove the vs code temp data and restrat the system it might work

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

79807305

Date: 2025-11-02 18:53:29
Score: 8 🚩
Natty: 5
Report link

I'm doing the same project but I using STM32F1, standard periph lib and keilc. I configured I2S but I cannot see pulse in SCK pin (PB13). Can u help me to fix this, I can not read the signal from inmp441

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): help me to fix
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (3): Can u help me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Do Quang Vinh

79807296

Date: 2025-11-02 18:31:24
Score: 2.5
Natty:
Report link

This worked for me, thank you so much!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Calvorejas

79807291

Date: 2025-11-02 18:26:23
Score: 3
Natty:
Report link

I appreciate your frustration, especially in the deleted comment. That's why SO has relied on [mre] for its entire existance. Please read : Why should I provide a Minimal Reproducible Example, even for a very simple SQL query?

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: MatBailie

79807279

Date: 2025-11-02 17:46:14
Score: 1.5
Natty:
Report link

running pod update inside the ios dir worked for me

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Adheil Gupta

79807278

Date: 2025-11-02 17:46:14
Score: 3.5
Natty:
Report link

Creating a Modern Team Site using the SP API via App Only Tokens does not work. In order to create a Modern Team Site you must use Microsoft Graph API to do this. So use our Graph module instead of the SP Module.

You can see the Microsoft docs here.

https://learn.microsoft.com/en-us/sharepoint/dev/solution-guidance/security-apponly#what-are-the-limitations-when-using-app-only

In case this link goes bad, it says: "Creating modern team sites does not support app-only when you use the SharePoint API for it."

We've noted this in our docs as well.

enter image description here

https://pnp.github.io/pnpjs/sp/sites/#create-a-modern-team-site

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Beau Cameron

79807268

Date: 2025-11-02 17:27:10
Score: 2.5
Natty:
Report link

You need to say ADD FOREIGN KEY, not just FOREIGN KEY. (See https://www.w3schools.com/mysql/mysql_foreignkey.asp). It will probably look like

ALTER TABLE course
ADD FOREIGN KEY (student_id)
REFERENCES students(student_id);
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: PT-Hrothgar

79807250

Date: 2025-11-02 16:42:00
Score: 4
Natty:
Report link

My apologies, that was a mistake on my part. The result calculated by SymPy is correct. See https://mathworld.wolfram.com/QuadraticInvariant.html.

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

79807249

Date: 2025-11-02 16:39:58
Score: 7.5 🚩
Natty: 5
Report link

Hello did you find solution for this ? im in the same situation right now

Reasons:
  • RegEx Blacklisted phrase (3): did you find solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: vasik