79821987

Date: 2025-11-17 07:30:47
Score: 2
Natty:
Report link

I made a small tool to convert Embed SVG to Inline.

https://sshadkany.github.io/svgInliner/

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

79821986

Date: 2025-11-17 07:29:47
Score: 1.5
Natty:
Report link

I found an answer for my Next.js web app:

Stop your client server -> Navigate to Date & time settings in Windows -> Click Sync Now -> Then restart your server.

Hope this helps!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dylan Carver

79821984

Date: 2025-11-17 07:23:46
Score: 0.5
Natty:
Report link
MyApp
│
├── src/                       
│   └── com/
│       └── example/
│           └── servlets/
│               ├── LoginServlet.java
│               └── OtherServlets.java
│
├── Webapp/             
│   ├── login.html
│   ├── index.jsp
│   ├── css/
│   │   └── style.css
│   ├── js/
│   │   └── script.js
│   └── assets/
│       └── images/
│           └── headerlogo.png
│
├── WEB-INF/                   
│   ├── web.xml               
│   └── lib/                
│
└── build/                    
this is my entire structure
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vegada Deep

79821983

Date: 2025-11-17 07:23:46
Score: 1
Natty:
Report link

Can you add a minimal reproducible example I can't reproduce the clippy warning you get.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you add
  • High reputation (-2):
Posted by: cafce25

79821977

Date: 2025-11-17 07:16:44
Score: 4.5
Natty:
Report link

how can I connect with them , there is no any email or other communication method for developers

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how can I
  • Low reputation (1):
Posted by: Vladimir Meliksetyan

79821976

Date: 2025-11-17 07:15:43
Score: 3
Natty:
Report link

How do you know that Jeff Rogers and Jeff A Rogers are the same person? People are unique but names aren't.

Reasons:
  • Blacklisted phrase (1): How do you
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do you
  • High reputation (-1):
Posted by: user19077881

79821973

Date: 2025-11-17 07:10:42
Score: 0.5
Natty:
Report link

Have a look at the US Census Soundex system, designed for exactly this.

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

79821964

Date: 2025-11-17 06:55:39
Score: 1
Natty:
Report link

This is because of pip install requirments file error, verify your deployment logs and build errors in Azure-->App service-->Deployment-->Deployment Center-->Logs.

Open the latest build. After deployment it will take few min to complete the setup and app is available after completing the necessary setup.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Muni Chittem

79821950

Date: 2025-11-17 06:28:33
Score: 2
Natty:
Report link

You can use both http and stream nginx servers on port 443, see this thread: How to combine nginx "stream" and "http" for the same servername?

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Ivan Shatsky

79821949

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

OpenSCAD only does geometry. The closest it gets to attached material properties is that you can specify a RGB color for each object - and that's not even preserved by all export formats.

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

79821948

Date: 2025-11-17 06:21:32
Score: 1
Natty:
Report link

There is a very simple solution to this: using a regular if-statement in place of the in-line

if dogCount == 0 {
    print("No Dogs?!")
} else {
    print("I have ^[\(dogCount) dog](inflect: true)")

This code performs normally, at the cost of not being so concise.

Many use cases for labels for buttons, menus, and pickers benefit from in-line if-statements, which this solution unfortunately does not do a big favor in solving.

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

79821946

Date: 2025-11-17 06:21:32
Score: 2
Natty:
Report link
#[url "[email protected]:"]

#   insteadOf = https://github.com/

you can try above method about the gitconfig file,maybe this insteadOf config distrouble the xcode. Authentication failed because no credentials were provided" when loading Quick

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

79821942

Date: 2025-11-17 06:01:27
Score: 1
Natty:
Report link

Yes — MyApp is the name of the project, and the folder structure is:

MyApp/
   webapp/
      asset/
         images/
            headerlogo.png
      index.html

http://localhost:8080/MyApp/index.html?
→ The page loads correctly, but the image still does not appear.

<img src="images/logo.png">?
That was just an example. My actual tag is:

<img src="asset/images/headerlogo.png">

Content of index.html:

<!DOCTYPE html>
<html>
<head>
    <title>Test</title>
</head>
<body>
    <h1>Hello</h1>
    <img src="asset/images/headerlogo.png" alt="Logo">
</body>
</html>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vegada Deep

79821938

Date: 2025-11-17 05:49:25
Score: 4.5
Natty:
Report link

@muraya Did you use an AI to generate that "answer"?

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

79821937

Date: 2025-11-17 05:49:25
Score: 0.5
Natty:
Report link
BadMethodCallException
 
  Method Illuminate\Database\MySqlConnection::getDoctrineConnection does not exist.
 
  at vendor\laravel\framework\src\Illuminate\Macroable\Traits\Macroable.php:115
    111▕      */
    112▕     public function __call($method, $parameters)
    113▕     {
    114▕         if (! static::hasMacro($method)) {
  ➜ 115▕             throw new BadMethodCallException(sprintf(
    116▕                 'Method %s::%s does not exist.', static::class, $method
    117▕             ));
    118▕         }
    119▕
 
  1   database\migrations\2019_04_01_103035_rename_datasource_account_id_engagement_id.php:22
      Illuminate\Database\Connection::__call("getDoctrineConnection", [])
 
  2   vendor\laravel\framework\src\Illuminate\Database\Migrations\Migrator.php:514
      RenameDatasourceAccountIdEngagementId::up()

We are using Laravel 5.19

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

79821922

Date: 2025-11-17 05:13:18
Score: 0.5
Natty:
Report link

SearchView from the android.widget, the onlything that work for me is use custom icon in the xm

android:searchHintIcon="@drawable/ic_search_vector"

And in the ic_search_vector change background color as per the theme(dark or light one)

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

79821917

Date: 2025-11-17 05:02:16
Score: 2.5
Natty:
Report link

You'll need to iterate month by month to get all cloud recordings because Zoom only lets you query cloud recordings in 1-month periods (even though you can go back as far as your account’s recordings exist)

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

79821911

Date: 2025-11-17 04:41:12
Score: 2
Natty:
Report link

EV code signing only works if your provider supports storing the private key in Azure Key Vault. Currently, only DigiCert and GlobalSign offer EV certificates that are Key Vault compatible.

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

79821909

Date: 2025-11-17 04:36:10
Score: 4
Natty:
Report link

Please clarify the following things - is MyApp the name of the parent folder of webapp? What happens when you access http://localhost:8080/MyApp/index.html? What is <img src="images/logo.png">? What is the content of index.html?

Reasons:
  • RegEx Blacklisted phrase (2.5): Please clarify
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-1):
Posted by: ProgrammersBlock

79821907

Date: 2025-11-17 04:34:10
Score: 1
Natty:
Report link

it definitely looks possible using this string,

Image._init_(href, insert=None, size=None, **extra)

this is right out of their User Manual,

CHAPTER 26

Image

class svgwrite.image.Image(href, insert=None, size=None, **extra)

The image element indicates that the contents of a complete file are to be rendered into a given rectangle within

the current user coordinate system. The image element can refer to raster image files such as PNG or JPEG or

to files with MIME type of “image/svg+xml”.

26.1 Methods

Image._init_(href, insert=None, size=None, **extra)

Parameters

• href (string) – hyperlink to the image resource

• insert (2-tuple) – insert point (x, y)

• size (2-tuple) – (width, height)

• attribs (dict) – additional SVG attributes

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

79821905

Date: 2025-11-17 04:31:09
Score: 8 🚩
Natty: 5
Report link

Which code above is the correct one , could anyone tell how to use turtle inside a class and when do we use self and when not?

Reasons:
  • RegEx Blacklisted phrase (2.5): could anyone tell how
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Which code
  • Low reputation (1):
Posted by: abdellatif abdelmoumene

79821903

Date: 2025-11-17 04:22:07
Score: 2.5
Natty:
Report link

Google merchant center does not read product-level shipping from JSON-LD. It only accepts product shipping from Feed-level shipping attributes like (XML, API, or Google Sheets), Account-level shipping settings, Shipping overrides and Content API shipping attributes.

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

79821897

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

This is now a few years old. However, if you're still looking for an answer:

(Visual Studio 2022): In Test Explorer, goto Settings, TestAdapterForGoogleTest, General. Then, for PrintTestOutput (in the pane on the right), select True.

That will now get the cout outputs to show up when you see the output in Visual studio and select Tests as the output you want to see.

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

79821895

Date: 2025-11-17 04:02:03
Score: 1
Natty:
Report link

Just iterate through xml.etree.ElementTree.Element directly:

for hasgame in root:
    xmlDictionary[hasgame[0].text] = hasgame[1].text
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: shmnff

79821893

Date: 2025-11-17 03:53:01
Score: 3.5
Natty:
Report link

My answer with using SwiftUI Shape
https://mishimay.github.io/moon-shape-in-swift/

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

79821891

Date: 2025-11-17 03:51:00
Score: 3.5
Natty:
Report link

My answer with using SwiftUI Shape
https://mishimay.github.io/moon-shape-in-swift/

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

79821879

Date: 2025-11-17 03:22:54
Score: 5.5
Natty: 5
Report link

I'm trying to control e62 led display controller. I didn't have SDK unable to find. Please tell me where can I get the SDK file.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please tell me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TARUN KUMAR S

79821875

Date: 2025-11-17 03:07:51
Score: 0.5
Natty:
Report link

You should use the DN as the username. It's unique. The CN is not.

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

79821873

Date: 2025-11-17 03:01:49
Score: 1
Natty:
Report link

caused by the TypeScipt TextMate grammar not supporting multi-line function typeparameters correctly

heres the repo https://github.com/microsoft/TypeScript-TmLanguage/issues
and a similar issue https://github.com/microsoft/TypeScript-TmLanguage/issues/1048

single line works correctly

type ABC = string;

export type Foo =  {
  extend<ABC extends string,> (): string;
};

export const A = 5;

multi-line broken

type ABC = string;

export type Foo =  {
  extend<
    ABC extends string,
  > (): string;
};

export const A = 5;
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: RedCMD

79821869

Date: 2025-11-17 02:42:45
Score: 1
Natty:
Report link

Ok, so first of all, pseudo is strictly CSS I believe. However, you can still target it using

input.pause[pseudo="-webkit-media-controls-play-button"] { background: url("funkypattern.png"); }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Charles Wang

79821863

Date: 2025-11-17 02:25:42
Score: 2.5
Natty:
Report link

Blackmagic Camera_3.0.1.0012_APKPure.xapk

1 INSTALL_FAILED_OLDER_SDK: Requires newer sdk version #33 (current version is #31)

2 Apl tidak terpasang

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

79821849

Date: 2025-11-17 01:49:34
Score: 0.5
Natty:
Report link

This was because ComboBoxItem.HorizontalContentAlignment is set to Left by default. The issue can be fixed by applying a global style such as:

new Style(s => s.Is<ComboBoxItem>())
{
    Setters =
    {
        new Setter(ComboBoxItem.HorizontalContentAlignmentProperty, HorizontalAlignment.Stretch),
    },
});
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: zacoons

79821828

Date: 2025-11-17 00:58:23
Score: 0.5
Natty:
Report link

https://github.com/divinity76/exe2swf.html is probably the easiest way, it runs directly in your web browser, written in HTML5/javascript.

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

79821825

Date: 2025-11-17 00:52:21
Score: 2
Natty:
Report link

Are you compiling with optimisation? I'm wondering if it could be because the compiler may be ignoring ABI conformance for the purposes of debuggability at -O0.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: p011yr011n

79821822

Date: 2025-11-17 00:38:18
Score: 0.5
Natty:
Report link

Really smooth scrolling (viewport "clings" to el):

let done = false;
function updateScroll() {
    ref.scrollIntoView({ block: "nearest" });
    if (!done) requestAnimationFrame(this);
}
requestAnimationFrame(updateScroll);
setTimeout(() => done = true, 150); // 150ms
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: horsey_guy

79821821

Date: 2025-11-17 00:35:17
Score: 2
Natty:
Report link

You will not be able to capture that data on other devices since the Samsung Health SDK is only available on Samsung Watches and other manufacturers (e.g. Google, Oppo) do not provide similar SDKs.

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

79821817

Date: 2025-11-17 00:26:15
Score: 2
Natty:
Report link

Well, the console hangs because VSCode sends a long block of text without “bracketed paste,” causing R to freeze. What you can do is enable "r.bracketedPaste": true in your VSCode settings fixes the issue. This works for the standard R terminal and may help if using Radian as well.

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

79821812

Date: 2025-11-17 00:14:13
Score: 1.5
Natty:
Report link

For Xcode 26.1 (and similar version), this tool is bundled in Additional Tools.

https://developer.apple.com/download/all/?q=Additional%20Tools

Download and open it

Additional_Tools_for_Xcode_26.1.dmg > Hardware > Network Link Conditioner.prefPane

Then it will be installed

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: v.ng

79821809

Date: 2025-11-17 00:03:10
Score: 2
Natty:
Report link

Because I needed to use concatenations of ~300 variables, I finally found out that simply putting new lines among the variables worked and avoided the error:

c(var1, var2, .... var100, var101, var102, ... var 200) # This will not work

c(var1, var2, .... var100,

var101, var102, ... var 200) # This will work

It is unclear to me why this happens, but I hope this empirical finding helps someone. It took me a long time to find a solution.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ivan

79821806

Date: 2025-11-17 00:02:10
Score: 2
Natty:
Report link

Fixed that using this command:

mvn clean install

What it does: compile your code, run any tests, and create the JAR file in the target directory

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

79821801

Date: 2025-11-16 23:23:01
Score: 1
Natty:
Report link

This is pretty much how Spring behaves in tests.

The test context does its own thing and ignores the excludes from the main app.

JPA was still on the classpath, so Spring Test basically went “ok, let’s fire up Hibernate and a datasource”, and then it blows up because there is no database.

Once you remove the JPA dependencies, Spring stops freaking out and everything works fine.

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

79821793

Date: 2025-11-16 23:04:58
Score: 3.5
Natty:
Report link

An Good Script for Analyse your APK File

Check ELF Alignment Script

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Alex - Exaland Concept

79821791

Date: 2025-11-16 22:57:56
Score: 3.5
Natty:
Report link

added primary method I'm currently using to parse URLs

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

79821777

Date: 2025-11-16 22:16:47
Score: 1
Natty:
Report link

You can also add in a break at the end of your code, see below:

fruit = 'apple'
index = -1

while index <= len(fruit):
    letter = fruit[index]
    print(letter)
    index = index - 1
    if index == len(fruit)*-1:
        break
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Josh Sepic

79821755

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

Wish I could up vote you twice!

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

79821745

Date: 2025-11-16 20:51:27
Score: 0.5
Natty:
Report link

[1] [2] Body must be at least 30 characters; I entered 7.

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

79821744

Date: 2025-11-16 20:51:27
Score: 2.5
Natty:
Report link

I was also having the same issue and "terminal.integrated.tabs.hideCondition": "singleTerminal" doesn't seem to work, so i just disabled it all together: "terminal.integrated.tabs.enabled": false and just use the dropdown menu that shows up after disabling tabs

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

79821743

Date: 2025-11-16 20:49:26
Score: 3.5
Natty:
Report link

For .NET 10 try using @rendermode InteractiveWebAssembly(prerender: false) instead of InteractiveWebAssemblyRenderMode(prerender: false) because the rendering pipeline has been changed in .NET 10.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @rendermode
  • Single line (0.5):
  • Low reputation (1):
Posted by: Asif Rabbani

79821739

Date: 2025-11-16 20:42:24
Score: 2.5
Natty:
Report link

After a lot of searching, a custom OPEN API is needed with python code in order to search the id correctly.
Same applies with BigQuery but using sql and then a yalm to interpret the data to the agent.

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

79821734

Date: 2025-11-16 20:34:22
Score: 1.5
Natty:
Report link

The issue was my assignment of the postorder. I needed to use push_back in the postorder function instead and reverse after assigning.

for (u32 i = 0; i < m_nodes.size(); ++i) {
    m_nodes[rev_postdom[i]].m_postorder = i;
}
std::reverse(rev_postdom.begin(), rev_postdom.end());
rev_postdom.pop_back();
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DeepQuantum

79821731

Date: 2025-11-16 20:26:20
Score: 2
Natty:
Report link

For anyone who comes here in the future with a similar problem ...

As mentioned before, adding indexes made little difference on it's own, with the query as it stood.

However, I then changed my query to use apoc.coll.different() and apoc.coll.max() and this made a huge difference.

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

79821730

Date: 2025-11-16 20:23:20
Score: 0.5
Natty:
Report link

The setting is called View: Toggle Chat:

enter image description here

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

79821728

Date: 2025-11-16 20:14:18
Score: 1
Natty:
Report link

This -NoWait parameter did it for me

Get-Service -Computer $User -Name $_[0] | Stop-Service -NoWait

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

79821723

Date: 2025-11-16 20:06:15
Score: 0.5
Natty:
Report link

Often, a user might bump into permissions errors when trying to install gems on the same Ruby version that came installed on your OS. That version is usually "protected", it's meant to be used for common operations required by your system and you'd be better off avoiding to rely on it for your apps. Technically, you could do some workarounds, like sudoing the commands to force them to run, but it's not recommended to do so as you can end up messing up with basic configs.

The recommended way is to install Ruby through a package manager (such as Mise, as recommended the official docs link you shared in your original message).

By doing so, you'll install a Ruby version that's isolated from your OS and you should then have permissions to manipulate it as you wish.

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

79821708

Date: 2025-11-16 19:36:09
Score: 4
Natty:
Report link

See also Is equality testing possible between two infinite data structure in Haskell?.

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

79821694

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

Example

In spring boot project, you have three warning with application.properties file:

btn.reporting=Reporting

btn.excel=Export Excel

max.nbr.line=12

Inside resources directory, you create META-INF directory.

Inside META-INF directory, you create : additional-spring-configuration-metadata.json file.

{"properties": [
  {
    "name": "btn.reporting",
    "type": "java.lang.String",
    "description": "'btn.reporting' ihm button to create reporting from datas"
  },
  {
    "name": "btn.excel",
    "type": "java.lang.String",
    "description": "'btn.excel' ihm button to load datas from data base to create Excel file"
  },
  {
    "name": "max.nbr.line",
    "type": "java.lang.String",
    "description": "'max.nbr.line' max number line to print in ihm"
  }
]}


enter image description here

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

79821691

Date: 2025-11-16 19:02:00
Score: 1.5
Natty:
Report link

In 2025 they are now storing the depth map(s) via concatenating multiple JFIFs after the main image. If you split those you can get the original image and the depth maps from Pixel Camera photos. Source and sample code: https://github.com/dragon66/icafe/issues/90#issuecomment-758031710

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Martin Rauscher

79821684

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

Godot Officially supports GDscript it's custom programming language and C# which is the industry standard for game development.

You can add plugins to unofficially support programming in python but given the python like nature of GDscript i would just recommend using GDscript. Godot Documentation is well structured and in depth and troubleshooting in a programming language which is not well used by the community will be harder

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

79821682

Date: 2025-11-16 18:51:57
Score: 6 🚩
Natty:
Report link

Brah nodriver's issues are open on github, what the fuck are you talking about? Ask the devs, cuz. I'm pretty sure it's an issue with nodriver

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Faggot Puncher

79821681

Date: 2025-11-16 18:51:57
Score: 3.5
Natty:
Report link

Well, I simply made a right click on the main.java of the Project HomeAutomaterHelper and said under "Build Path" -> "Use as Source Folder". Then I deleted the old src Folder.

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

79821669

Date: 2025-11-16 18:34:53
Score: 1
Natty:
Report link

It's a pretty simple answer that seems to be down to MacOS thinking for itself.

SublimeText saves the file as makefile.cpp, even when I tell it not to append .cpp

Then, when I go and rename the file (removing the .cpp), MacOS doesn't delete the .cpp, it just hides the extension!

So...

I have to 'Get Info', deselect 'hide extensions', then delete the extension there... every time I save the makefile; which kinda defeats the object.

I'll have a poke around and see if I can stop MacOS and SublimeText conspiring against me.

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

79821666

Date: 2025-11-16 18:32:53
Score: 0.5
Natty:
Report link
Option Explicit

Private oldAddress As String

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    On Error Resume Next

    ' Prevent drag fill by breaking the selection extension
    If oldAddress = Selection.Address Then
        Exit Sub
    End If
    
    oldAddress = Selection.Address
End Sub

Private Sub Worksheet_Change(ByVal Target As Range)
    On Error GoTo exitsafe
    If Application.EnableEvents = False Then Exit Sub
    Application.EnableEvents = False

    ' --- Detect autofill drag (Excel always delivers big block change)
    If Target.Cells.CountLarge > 1 And Application.CutCopyMode = False Then
        Application.Undo
        MsgBox "Drag Fill is disabled on this sheet.", vbExclamation
        GoTo exitsafe
    End If
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ahmed Magdy Tpozada

79821649

Date: 2025-11-16 18:04:46
Score: 2.5
Natty:
Report link

Updates from MacOS Sequoia 15.6.1:
In MacOS system: top-left apple icon, click > System settings > Desktop and Dock > "Windows" section > Prefer tabs when opening documents: "Always"
MacOS Settings > Desktop and Dock settings
In JetBrains IDE: Apparance & Behaviour > System settings > Project > Open project in: "New Window"
JetBrains IDE: Apparance & Behaviour, System settings, Project: Open project in: "New Window"

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Miguel M. Serrano

79821641

Date: 2025-11-16 17:57:44
Score: 4
Natty:
Report link

Thanks @laurenz-albe , you're a legend. I take it that once the db hits the threshold (200M in my case) for template1, the autovacuum to freeze is fairly harmless (and quick) because it's a tiny db? And I'm hoping to upgrade to pg18 soon so can't wait to have less maintenance burden.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @laurenz-albe
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: Ali

79821638

Date: 2025-11-16 17:54:43
Score: 3
Natty:
Report link

Sorry for the late answer, proj4.defs("EPSG:23031","+proj=utm +zone=31 +ellps=intl +towgs84=-87,-98,-121,0,0,0,0 +units=m +no_defs +type=crs");

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

79821632

Date: 2025-11-16 17:46:41
Score: 3
Natty:
Report link

I have an existing link, I should be able to change a calendar event with an existing google meet link. Such a simple feature, Google fails to provide.

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

79821624

Date: 2025-11-16 17:26:36
Score: 4.5
Natty:
Report link

Ohhh ok thank you @user207421 (i don’t know how to reply to people here). I know this example sounds weird, but it’s because my real DB is for school, and i don’t want to put any questions about it here so i don’t get flagged for plagiarism lol, this was the closest example i could think to it.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @user207421
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Theo

79821623

Date: 2025-11-16 17:25:35
Score: 0.5
Natty:
Report link

It seems like this works as expected -- thanks to @mkrieger1:

syllable = pp.Group(C + V + pp.Opt(C + pp.FollowedBy(C)) + pp.Opt(C + pp.FollowedBy(pp.WordEnd())))

Works for gaba, banana, bar, ba:

gaba -> [['g', 'a'], ['b', 'a']]
banana -> [['b', 'a'], ['n', 'a'], ['n', 'a']]
bar -> [['b', 'a', 'r']]
ba -> [['b', 'a']]
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: sventechie

79821622

Date: 2025-11-16 17:25:35
Score: 3.5
Natty:
Report link

Try minapi 24. Worked for me...!

Reasons:
  • Whitelisted phrase (-1): Worked for me
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jibs

79821621

Date: 2025-11-16 17:23:35
Score: 0.5
Natty:
Report link

It seems to be an issue with the TextMate grammar file for TypeScript for VS Code.

It doesn't properly support the extends keyword, here is an open issue portraying the same behavior https://github.com/microsoft/TypeScript-TmLanguage/issues/1048

The workaround you found seems to be working

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

79821610

Date: 2025-11-16 17:07:31
Score: 4
Natty:
Report link

+1 Naim: Thanks for the idea of "semidecidability”!

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

79821600

Date: 2025-11-16 16:51:27
Score: 4
Natty:
Report link

I have a similar problem, but since my initial issue was simply organizing multiple classes into a "namespace," this is what I've come up with:

class A:
    pass

class B:
    other = A 

class Foo:
    A = A
    B = B
Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar problem
  • Low reputation (0.5):
Posted by: nikicat

79821597

Date: 2025-11-16 16:47:26
Score: 1
Natty:
Report link

Python interprets:

[ x1 * ( y3 - y2) + x2 * ( y1 - y3 ) + x3 * ( y2 - y1 )]

as a list, as it is surrounded by square brackets [ ]. That is why your program points out that it is dividing two lists. You may have used them like you would use in math, but the correct way is to use only parenthesis on expressions like this.

So your a should be:

a = ( x1 * ( y3 - y2) + x2 * ( y1 - y3 ) + x3 * ( y2 - y1 )) / (( x1 - x2) * ( x1 - x3) * ( x2 - x3))

Which works properly.

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

79821596

Date: 2025-11-16 16:45:25
Score: 1.5
Natty:
Report link

I also had this problem and i somehow solved it by uninstalling my Antivirus. I used Norton 360 and it got really annoying and slowed my pc down so i uninstalled it and somehow that solved the problem. hope that helps!

Reasons:
  • Whitelisted phrase (-1): hope that helps
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: RiddleNeon

79821590

Date: 2025-11-16 16:34:23
Score: 3.5
Natty:
Report link

Check my dm on Reddit, I think I have the answer to this

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

79821588

Date: 2025-11-16 16:31:22
Score: 2.5
Natty:
Report link

Read the this blog for the explanation you seek: https://andreas.scherbaum.la/post/2024-06-19_understanding-vacuum-vacuum-template0-and-transaction-id-wraparound/

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

79821583

Date: 2025-11-16 16:22:20
Score: 1.5
Natty:
Report link

I ended up guessing on *forcing* users of my React.js library to enable enhanced wheel-roll scrolling explicitly into every parent group tag they need to. So .scrollTop/Left alone isn't entirely reliable unless you've a width/height to provide the component with.

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

79821572

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

All queries are made of intermediate "steps"; by the "programmer"; or the SQL engine. Most queries are just "added to" until they become incomprehensible. If one starts out with using "intermediate" queries and / or "temp tables", the "granularity" makes them more maintainable and re-usable. And surprisingly (or not) will outperform whatever the engine had trouble untangling. I see a lot of "I just wrote the biggest SQL query ever in one statement!" Yes; and that involves stored procedures.

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

79821563

Date: 2025-11-16 15:48:12
Score: 1.5
Natty:
Report link

What finally worked was adding this to the composer.json file:

{
"repositories": [
    {
        "type": "composer",
        "url": "https://repo.packagist.org",
        "options": {
            "ssl": {
                "verify_peer": false,
                "allow_self_signed": true,
                "cafile": "D:/xampp_7_4_33/apache/bin/curl-ca-bundle.crt",
                "capath": "D:/xampp_7_4_33/apache/bin"
            }
        }
    }
]
}

This solution was found in this post: Composer Curl error 60: SSL certificate problem: unable to get local issuer certificate (search for "Composer Specific Solutions").

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: guntersammet

79821555

Date: 2025-11-16 15:39:09
Score: 0.5
Natty:
Report link

That is an issue with the WAS LRU cache, disable it where it corresponds (not Hibernate)

Resources → JDBC → Data sources → [your datasource] → Connection pool properties → Statement cache size

If you analyze the stack trace the issue goes out of hibernate after having done it's job, not because Hibernate needs to do something on JDBC.

Reasons:
  • No code block (0.5):
Posted by: Raul Lapeira Herrero

79821553

Date: 2025-11-16 15:37:09
Score: 1.5
Natty:
Report link

I think my expectations were a bit unusual. I wanted a grid, which auto sizes every column to minimum its own content size (min-content/auto) and afterwards distributed the remaining space in each track between every column in every track.

repeat(auto-fit, minmax(auto, 1fr)

Grid does not seem to support different column sizes across grid tracks. Which kind of makes sense, but I first expected that to be possible.

I thought grid could look at the maximum content size of its items, to know the largest column. Then use that as an automatic value for minimum in minmax. Layout all the columns, then distribute remaining space with 1fr max. Is there a reason something like this is not possible?

repeat(auto-fit, minmax(max-content, 1fr)

The alternative is then using flexbox, using row direction, wrap and cross axis alignment of start or something like that. I guess that is perfectly valid.

But I thought 2D: I should use grid. However in this case flexbox fits, as mdn suggests, since I want to layout from "content out".

grid vs flexbox: grid page

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Clockworks

79821547

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

Please do not use AI text generators for rewriting questions (or answers, for that matter). AI generated content is not allowed on Stack Overflow.

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

79821546

Date: 2025-11-16 15:23:05
Score: 1.5
Natty:
Report link

Give your AI a constantly running control loop so it can think even when no one speaks. This loop checks the world state and decides what to do next independently, while the LLM is used only occasionally for planning. Small behaviours, such as movements or reactions, should be handled by simple code, not the LLM.

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

79821544

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

From Source (Linux and Mac)

  1. Download the latest release from https://github.com/cs50/libcs50/releases

  2. Extract libcs50-*.*

  3. cd libcs50-*

  4. sudo make install

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

79821537

Date: 2025-11-16 15:07:01
Score: 1
Natty:
Report link

Best way i found out is to use thic command

open "$(xcrun simctl get_app_container booted com.your.bundle.id data)"

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

79821536

Date: 2025-11-16 15:07:01
Score: 3.5
Natty:
Report link

I had a very similar problem that mostly went away after I increased Corner and End-Cap Vertices from 0 to something higher (like 5)

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

79821535

Date: 2025-11-16 15:06:00
Score: 2.5
Natty:
Report link

This error usually occurs when the schema of our database changes, and indexDB is unable to create the new objectStore. In my case, I upgraded my DB version, and the error disappeared.

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

79821531

Date: 2025-11-16 14:47:56
Score: 1.5
Natty:
Report link

I don't use dd-wrt anymore, because I changed hardware. The firmware beta's are still being built for a large number of devices. The other download page and then beta shows the last bits from the 12th of November, 4 days ago.

How well it is maintained, I don't know. But it's still fresh. https://dd-wrt.com/support/other-downloads/?path=betas%2F2025%2F11-12-2025-r62606%2F

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

79821514

Date: 2025-11-16 14:06:45
Score: 3.5
Natty:
Report link

As what @ihor mentioned, your path may cause the problem, for me it was because of Arabic folder name in path, you need to keep the path valid for console with no quotations.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @ihor
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Muhammad Aaref Al-Shami

79821512

Date: 2025-11-16 14:05:44
Score: 0.5
Natty:
Report link

To make it work normally I just had to set my guild_id on my commands, so they are forced for this server only :

@bot.tree.command(guild=guild_id, name='leave', description='Leave vc')
async def leave_call(interaction: discord.Interaction):
    vc = discord.utils.get(bot.voice_clients, guild=interaction.guild)
    if vc and vc.is_connected():
        if isinstance(vc, voice_recv.VoiceRecvClient):
            vc.stop_listening() 
            await vc.disconnect() 
            await interaction.response.send_message("Disconnected.", ephemeral=True)
        else:
            await interaction.response.send_message("Not connected.")

It's now working instantly and the logs returns the good value :

PS D:\MyBot> py main.py
2025-11-11 19:02:49 INFO discord.client logging in using static token
2025-11-11 19:02:50 INFO discord.gateway Shard ID None has connected to Gateway (Session ID: some_session_id).
Connected as My-Bot#1111
7 commands synced on server My(correct)-Guild-ID
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: skrylexx_

79821511

Date: 2025-11-16 14:02:43
Score: 3.5
Natty:
Report link

There is still an issue existing in expo-mail-composer : https://github.com/expo/expo/issues/37740
hope we solve it soon.

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

79821509

Date: 2025-11-16 13:58:42
Score: 3
Natty:
Report link

Take a look at AsyncCoreBluetooth. I think they are doing what you seek for.

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

79821491

Date: 2025-11-16 13:28:33
Score: 4.5
Natty:
Report link

Reducing PostgreSQL CPU load using sqlalchemy

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

79821484

Date: 2025-11-16 13:21:31
Score: 1.5
Natty:
Report link

This is ridiculous.

Our company has tens of thousands of users.

It is way too expensive to fetch all to resolve 1000 of email addresses.

And at the same time Slack has API limits, so we cannot call them one by one.

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

79821482

Date: 2025-11-16 13:20:31
Score: 3
Natty:
Report link

If you use a git, and just made a change to the relevant file, make sure you have 'git add'ed the change.

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

79821471

Date: 2025-11-16 12:50:22
Score: 1
Natty:
Report link

I could not comment on the answer by @Chris, therefore the new post.

The direction command has it's limitations. The directions can only be set when the nodes in the subgraph are not connected to anything outside the subgraph. Else, the top level layout is used.

See: https://docs.mermaidchart.com/mermaid-oss/syntax/flowchart.html#limitation

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Chris
  • High reputation (-1):
Posted by: Spenhouet

79821466

Date: 2025-11-16 12:41:21
Score: 3
Natty:
Report link

Same here, it doesn't bother me that fdroid cannot resolve the host name, i suggest that the fdroid store doesn't display the error

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

79821462

Date: 2025-11-16 12:34:19
Score: 1.5
Natty:
Report link

I'm from Germany.

It doesn't help. I entered my Austin, Texas (for testing purposes) data and was located using https://whatismyipaddress.com/, and it showed me in Germany, even though geo.de was changed.

I then investigated and found out that there are settings/scripts (on servers) that still send the data from the point of entry. While the exact location can't be determined, the country of origin can be identified.

Even with Tor, my home country was correctly displayed in 4 out of 10 cases.

I then used a VPN, and my country was displayed in 1 out of 10 cases.

So the claim that you don't leave any data when browsing via fake IPs or a VPN is a lie. Otherwise, the FBI, BKA, and other agencies wouldn't be able to track down and arrest people on the dark web. It's only a matter of time, and anyone who believes that Firefox, Chrome, VPNs, or internet providers don't have and send data from the original location is very gullible.

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

79821457

Date: 2025-11-16 12:27:17
Score: 1
Natty:
Report link

That happend because PrimeNg table doesn't have all the data as you do slicing on the first lazy event you can pass the whole data to the table and use paginator property with the table, as all the operations happens from the client side.

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

79821445

Date: 2025-11-16 12:19:14
Score: 3.5
Natty:
Report link

i get same problem in Windows with Rider and MAUI 10 with this setup

first img

i fix by adding in Settings | Toolset and Build | MSBuild global properties the params: AndroidSdkDirectory and JavaSdkDirectory with the same path of default SDK and JAVA in first screenshot

second img

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i get same problem
  • Low reputation (1):
Posted by: fabio1999ita