79804921

Date: 2025-10-30 15:22:23
Score: 3
Natty:
Report link

If you're are looking for more nice presentation features for Pdf-files, you may check out MagicPresenter (https://apps.apple.com/us/app/magicpresenter/id6569250589). It allows you to add presenter notes to PDFs and view them in presenter mode during your presentation. You can even scribble "magic" annotations directly on your slides. These are only visible to you. I found this super handy for remembering what I want to say.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lea

79804895

Date: 2025-10-30 14:59:16
Score: 0.5
Natty:
Report link

Thank you all. The problem was that the term "global b" shoud have been at the begining of all the funkcions.

import tkinter,time

canvas=tkinter.Canvas(width=500,height=500,bg="white")
canvas.pack()

canvas.create_text(250,250,text="00:00:00",font="Arial 70 bold")

def cl_e():
    global b
    b=False
    clock()

def cl_s():
    global b
    b=True
    clock()

def clock():
    global b
    h=0
    m=0
    s=0
    while b:
        canvas.delete("all")
        if s<60:
            s+=1
            time.sleep(1)           
        elif m<60:
            s=0
            m+=1
        else:
            s=0
            m=0
            h+=1
        if h<10 and m<10 and s<10:
            canvas.create_text(250,250,text="0"+str(h)+":0"+str(m)+":0"+str(s),font="Arial 70 bold")
        elif h<10 and m<10 and s>=10:
            canvas.create_text(250,250,text="0"+str(h)+":0"+str(m)+":"+str(s),font="Arial 70 bold")
        elif h<10 and m>=10 and s<10:
            canvas.create_text(250,250,text="0"+str(h)+":"+str(m)+":0"+str(s),font="Arial 70 bold")
        elif h<10 and m>=10 and s>=10:
            canvas.create_text(250,250,text="0"+str(h)+":"+str(m)+":"+str(s),font="Arial 70 bold")
        elif h>=10 and m<10 and s<10:
            canvas.create_text(250,250,text=str(h)+":0"+str(m)+":0"+str(s),font="Arial 70 bold")
        elif h>=10 and m<10 and s>=10:
            canvas.create_text(250,250,text=str(h)+":0"+str(m)+":"+str(s),font="Arial 70 bold")
        elif h>=10 and m>=10 and s<10:
            canvas.create_text(250,250,text=str(h)+":"+str(m)+":0"+str(s),font="Arial 70 bold")
        else:
            canvas.create_text(250,250,text=str(h)+":"+str(m)+":"+str(s),font="Arial 70 bold")
        canvas.update()

start=tkinter.Button(text="Start",command=cl_s)
end=tkinter.Button(text="End",command=cl_e)
start.pack()
end.pack()
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Faith

79804887

Date: 2025-10-30 14:45:13
Score: 0.5
Natty:
Report link

SNOWFLAKE.ACCOUNT_USAGE.QUERY_HISTORY is a view. and also account admin has no access to the source. I guess you may challenge the security parameters of that view but I am not sure it will do the work.

Instead, I would consider to execute a predefined task that will extract this data into a table the app can access. it will take a few seconds of delay but you will get the data.

make sure in the CREATE TASK to RUN AS OWNER without a schedule.
then EXECUTE IMMEDIATE <TASK_NAME>;

I hope it will work for you

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): is a
  • Low reputation (1):
Posted by: YGoldner

79804853

Date: 2025-10-30 14:18:06
Score: 1
Natty:
Report link

Thanks for your answer. This helped me in finding the solution, which was actually fairly obvious ;)

if ((PhotoMetric == PHOTOMETRIC_MINISWHITE) || (PhotoMetric == PHOTOMETRIC_MINISBLACK) || (SamplesPerPixel == 1)) {
    if (BitsPerSample == 1)
        Type = PRESCRENED_TIFF_IMAGE;
    else
        Type = MONOCHROME_TIFF_IMAGE;
} else if (SamplesPerPixel == 4) {
    if (PhotoMetric == PHOTOMETRIC_SEPARATED)
        Type = CMYK_TIFF_IMAGE;
    else
        Type = OTHER_TIFF_IMAGE;
} else
    Type = OTHER_TIFF_IMAGE;
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bart Theelen

79804848

Date: 2025-10-30 14:12:04
Score: 2
Natty:
Report link

Found the issue... The EditContext being set to new(Search) was triggering a new edit context upon field entry

EditContext="new(Search)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Connor

79804845

Date: 2025-10-30 14:09:03
Score: 1
Natty:
Report link

Finally found what is wrong:

 ...
        "lint": {
          "builder": "@angular-eslint/builder:lint",
          "options": {
            "lintFilePatterns": [
              "src/**/*.ts",
              "src/**/*.html"
            ]
          }
        }
...

Notice the absence of forward slashes before the 2 paths in the "lintFilePatterns" section.

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

79804843

Date: 2025-10-30 14:07:03
Score: 0.5
Natty:
Report link

If someone today needs to Create a Document in Cosmos DB, POST a key both in the header and body like this:


const headers = {
    'x-ms-documentdb-partitionkey': '["yourPartitionKey"]'
};

const body = JSON.stringify({
    id: 'someid',
    partitionKey: 'yourPartitionKey'
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andrew Elans

79804834

Date: 2025-10-30 13:54:59
Score: 0.5
Natty:
Report link

What topics can I ask about here? -> Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.

Reasons:
  • Blacklisted phrase (1): can I ask
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: derHugo

79804813

Date: 2025-10-30 13:29:52
Score: 3
Natty:
Report link

<html>

<head>

<title>my first web page</title>

</head>

<body>

This is my first web page

</body>

</html>

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

79804811

Date: 2025-10-30 13:25:52
Score: 0.5
Natty:
Report link

In my case it was because one of my properties on my DTO was of type ReadOnlyCollection<T> which caught me out. Changing to the type of List<T> fixed it for me as this CAN be assigned to. ReadOnlyCollection cannot!

enter image description here

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

79804793

Date: 2025-10-30 13:08:48
Score: 1.5
Natty:
Report link

It is possible.
With nth-last-child()

nth-last-child(-n+2)

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

79804775

Date: 2025-10-30 12:50:42
Score: 2.5
Natty:
Report link

I'm closing it.

I can import a component with react but not mui dependencies. Issues is from Mui

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

79804773

Date: 2025-10-30 12:49:42
Score: 5.5
Natty:
Report link

Thanks @kgoodrick, your answer works perfectly. Just one addition: I had to change axis(False) to axis(None) for it to work. If you post it as an answer (not a comment), then I can click the "accept" button :-)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @kgoodrick
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: MaximJ

79804772

Date: 2025-10-30 12:48:41
Score: 1.5
Natty:
Report link

The correct approach for handling large, non-code assets (like databases, media files, or large configuration sets) in a Tauri application is to use Resources combined with the Asset Protocol.

This method is critical because it keeps your application binary (.exe, .app, etc.) small and manageable, bundling the large files separately but automatically alongside the binary in the final installer (.msi, .dmg, etc.).

For a full, step-by-step implementation guide covering the setup and the usage of the files, you can refer to this guide, where I summarized all the necessarry configurations:

GitHub Issue Comment Detailing Tauri Resource Setup

This ensures your users get a single, professional installer package with all the necessary large files correctly located and accessible at runtime.

Reasons:
  • Blacklisted phrase (1): this guide
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: BlueManCZ

79804764

Date: 2025-10-30 12:38:39
Score: 1.5
Natty:
Report link

we encounter this problem too. we found that some duplicate symbol causes wrong link,link from _text to data. As a result,out of range.finally,we use llvm-objcopy to deal the .o files,where use and define this symbol, rename the conflict symbol. successfully build.

i recommend firstly use the Zy Zhao's answer successfully build your project to get the linkmap. then use the linkmap.txt and the error description to find out which symbol is duplicated.good luck

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

79804759

Date: 2025-10-30 12:34:38
Score: 0.5
Natty:
Report link

Ended up using ScriptUtils

ScriptUtils.executeSqlScript does the job.

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

79804755

Date: 2025-10-30 12:31:37
Score: 3
Natty:
Report link

I think this code run on local browser . During developement the camera access is silently denied. Its need domain host .

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

79804754

Date: 2025-10-30 12:27:36
Score: 0.5
Natty:
Report link

In my case, I was sending HttpServletRequest to @Async method then execute call getRequestURI() inside this method (in a different thread). This is giving me not reliable result and sometimes I got null . I modified the behavior and used a static utility method to extract requestUri (extraction in the same thread) then passing the extracted value to @Async method, I got reliable and expected result in this scenario and solved my problem.

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

79804752

Date: 2025-10-30 12:27:36
Score: 2.5
Natty:
Report link

Thanks, that's what I was missing, I thought @Value was exclusive to env vars and props, apparently Spring does inject command line args

except, it looks like it works in this format

-Dspring-boot.run.arguments="--p=foo"

with

@Value("${p}")
String p;

Thanks again!

This is much more straightforward

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Value
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Iqbal

79804747

Date: 2025-10-30 12:21:35
Score: 4
Natty:
Report link

After google for a bit, I found solution only for Chrome in this article, you will need to install a google extension called "Let Me out", it will disable that pop up forever.

Reasons:
  • Blacklisted phrase (1): this article
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jeff_On_Mars

79804739

Date: 2025-10-30 12:14:33
Score: 3.5
Natty:
Report link

After migrating to PgDog, everything is working correctly.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: B A.J Amar

79804737

Date: 2025-10-30 12:12:32
Score: 6
Natty:
Report link

Do you have an implementation of the recipe you describe that you can share? Maybe your current implementation can be optimized? Or: would it be an option to run it in parallel to speedup your processing?

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have an
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
Posted by: Pieter

79804735

Date: 2025-10-30 12:11:32
Score: 3
Natty:
Report link

But Zabbix monitors the server not the website.

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

79804734

Date: 2025-10-30 12:10:31
Score: 1
Natty:
Report link

To interact with your conversational agent you have to use Dialogflow CX libraries. Actually, Dialogflow CX is being deprecated tomorrow October 31 in favor of these conversational agents, and if you see the conversational agent UI is the same as Dialogflow CX but expanded with more generative AI functionalities such as playbooks.

The method to interact with an agent by text is called "detect intent". You have a node.js sample here: https://cloud.google.com/dialogflow/cx/docs/quick/api#detect-intent-nodejs

But you need to make sure that you are authenticating properly when you do the call to the API. That means that if you are executing the call from your local machine, you have to be logged in gcloud as a user with the corresponding permissions or use a service account with those permissions and add the google credentials in the request.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: M. Rodríguez

79804730

Date: 2025-10-30 12:05:30
Score: 0.5
Natty:
Report link

I have added the following block of code in the Info.plist inside the

CFBundleURLTypes

It gives permission for my domain so every api call which is using the domain i have mention will work and not get failed, i have tried this solution and it works.

        <key>CFBundleURLTypes</key>
        <array>
            <dict>
                <key>CFBundleURLName</key>
                <string>app.appname.in</string>
                <key>CFBundleURLSchemes</key>
                <array>
                    <string>YourAppName</string>
                </array>
            </dict>
        </array>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rutuja Mogal

79804726

Date: 2025-10-30 12:03:29
Score: 4.5
Natty:
Report link

Hercules
https://www.hw-group.com/product-version/hercules

This one can help you

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

79804723

Date: 2025-10-30 11:58:27
Score: 0.5
Natty:
Report link

According to official documentation PyCharm 2025.2 supports python 2.7.

You can try selecting an existing interpreter (not venv) and see if it works.

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

79804721

Date: 2025-10-30 11:58:27
Score: 1
Natty:
Report link

Sounds like an encoding issue. Those can be tricky. More info would help, like .. code and parameters used to call the api, the api version, etc..

Have you verified the response from google translate actually contains the content you think it does ...? Depending on response format, it might contain html entities like ign&#243;relo instead of all characters ignórelo like you're expecting. Try using cfdump to view the full http response, including html entities (not visible using a simple cfoutput).

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

79804716

Date: 2025-10-30 11:50:25
Score: 1
Natty:
Report link

If I set debug to 3, the output is (values 10 (10 1 2)). So, high optimization made the inconsistent output (values 0 (10 1 2)). In addition, I should've carefully check the warning message about a literal by SBCL.

The ocean of Common Lisp is so deep :o

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

79804708

Date: 2025-10-30 11:41:23
Score: 2.5
Natty:
Report link

trackAll is not an available event function anymore, the second import method works fine and using an event like ahoy.trackView(); proved that my setup was ready to work.

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

79804706

Date: 2025-10-30 11:37:22
Score: 0.5
Natty:
Report link

After trying countless things, including reinstalling PowerShell, I found the problem and the solution.

The folder c:\windows\system32\powershell was missing from my computer. Reinstalling PowerShell didn't restore it. To fix it, simply run: Install-PowerShellRemoting.

From that moment on, everything worked as it should.

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

79804694

Date: 2025-10-30 11:17:17
Score: 1.5
Natty:
Report link

Just for the sake of completeness of the thread, since 1.33, and due to this enhancement proposal, Kubernetes supports native sidecars, which is a pattern for deploying sidecar containers in pods. Native sidecars are init containers with Always being used as their restart policy. This blog post from istio shows how you could enable istio to inject sidecar containers as native sidecars.

Reasons:
  • Blacklisted phrase (1): This blog
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: mohammad hosein bahmani

79804687

Date: 2025-10-30 11:13:16
Score: 4
Natty:
Report link

Settings > Editor > Color Scheme.

Here a screenshoot from my intellij:

inttelliJ screenshot

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

79804686

Date: 2025-10-30 11:12:15
Score: 2
Natty:
Report link

just add a zStack at top inside body,
and give it your desire color,
that's it.
it will work fine !!!!

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

79804682

Date: 2025-10-30 11:10:14
Score: 1
Natty:
Report link

Add 'https://www.youtube-nocookie.com' in origin

 _controller = YoutubePlayerController(
   params: const YoutubePlayerParams(
     showControls: true,
     mute: false,
     showFullscreenButton: true,
     loop: false,
     origin: 'https://www.youtube-nocookie.com', // add this line
   ),
 );

_controller.loadVideoById(videoId: YoutubePlayerController.convertUrlToId("https://www.youtube.com/watch?v=_57oC8Sfp-I")??'');
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: AFAQ AWAN

79804681

Date: 2025-10-30 11:09:14
Score: 1
Natty:
Report link

Update based on @h3llr4iser answer:

<?php

namespace App\Services;

use App\Entity\MyEntity;
use Vich\UploaderBundle\FileAbstraction\ReplacingFile;
use Vich\UploaderBundle\Handler\UploadHandler;

final class ExternalImageUploader
{
    public function __construct(private UploadHandler $uploadHandler)
    {
    }

    public function copyExternalFile(string $url, MyEntity $entity)
    {
        $newfile = tempnam(sys_get_temp_dir(), 'prefix_');
        copy($url, $newfile);
        $uploadedFile = new ReplacingFile($newfile);

        $entity->setImageFile($uploadedFile);
        $this->uploadHandler->upload($entity,'imageFile');
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @h3llr4iser
  • Low reputation (1):
Posted by: moux2003

79804672

Date: 2025-10-30 10:58:12
Score: 1
Natty:
Report link

Another reason that causes my misunderstanding was the use of a literal list. In the updated part of the question, the literal list '(25 30 35) is used.

Similarly, when I execute the following code in SBCL

(let ((lst '(0 1 2)))
  (setf (car lst) 10)
  (values
   (car lst)
   lst))

The output is

0
(10 1 2)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dhnam

79804670

Date: 2025-10-30 10:56:11
Score: 2
Natty:
Report link

A simple solution is to put the tabcontrol inside a panel and make the tabcontrol slightly bigger than the panel (4 pixels per border).

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mats Kristiansson

79804668

Date: 2025-10-30 10:55:09
Score: 7 🚩
Natty:
Report link

Can you clarify what is not working on narrow screens? As it looks and works fine on 344px here: enter image description here

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you clarify what
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (0.5):
Posted by: Andrzej Bułeczka

79804663

Date: 2025-10-30 10:49:08
Score: 0.5
Natty:
Report link

So, by how you say they are 'practically' identical, the Category, Product and Reviews might differ in their fields? You could try and get create an inheritance hierarchy where they all inherit from some base, abstract Description-class and then use various mapping strategies to get that into the DB, but that does feel wrong to me too.

Have you considered a third option, a Table Translation that just contains a single piece of text to be translated? In other words, instead of having the unique key be (category/product/review_id, language_id)) which loads an object with multiple fields for your various translations, have it be (category/product/review_id, language_id, text_key)). Something like:

(categoryId/productId/reviewId) language_id text_key text
someId en title BEST PRODUCT EVER
someId en description I really like this product
someOtherId de title Acme Staubsauger (Rot)

When a User with locale 'en' loads the Product X, you just select every translation where id = productXId and language_id = 'en' and load it in a Map which your application can use. This way, a Review can have different fields that need to be translated without modifying the DB-Definition. Likewise, if at some point you decide a ProductDescription needs a new translatable text, you simply insert it into this table and you're good to go.

Optionally, the single Id column can be three columns with nullable foreign key constraints, if you want the enhanced correctness that gives. See this question for various ways you could do that, or alternatives.

Upsides:

Downside:

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: user25718310

79804659

Date: 2025-10-30 10:46:07
Score: 3
Natty:
Report link

I was facing this error too, I simply just deleted my node_modules folder and installed it again and the error was gone for me. Hopefully, this quick fix works for you aswell!

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

79804656

Date: 2025-10-30 10:42:06
Score: 3.5
Natty:
Report link

I decided to switch to Quartz because Hangfire simply does not support this. Quartz is definitely more powerful and offers more control. It's also easier to implement.

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

79804648

Date: 2025-10-30 10:35:04
Score: 5.5
Natty:
Report link

@Shawn Thank you for explaining why the code works with uninterned symbols, which I was not familiar with.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Shawn
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: dhnam

79804647

Date: 2025-10-30 10:33:04
Score: 3
Natty:
Report link

VPNs should fix the region issue but Google Play isn't reliable in terms of auto updates

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

79804645

Date: 2025-10-30 10:31:03
Score: 2
Natty:
Report link

I found the analogy between Magic and Coding very apt. Coding is very much like casting spells in a strange language making a machine do anything really, to a layperson that is wizardry.

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

79804644

Date: 2025-10-30 10:31:03
Score: 1
Natty:
Report link

The issue is caused by flex-wrap: wrap. When the content is too long to fit on one line, flexbox wraps the second <span> to a new line.

To keep both spans on the same line regardless of the length, you can remove flex-wrap: wrap or add flex-wrap: nowrap (this prevents wrapping).

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

79804633

Date: 2025-10-30 10:13:59
Score: 4
Natty:
Report link

I wrongly chose the type of question as "General Advice/Other", as @Shawn commented. I tried to change the type, but it cannot be changed.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Shawn
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: dhnam

79804626

Date: 2025-10-30 10:08:58
Score: 1.5
Natty:
Report link

"What are the kinds of practical difficulties you've run into when implementing Microfrontends?" Is it really that or are you rather looking for problems and solutions that arise when refactoring from monolith to a more "microservice"-ish architecture?

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

79804623

Date: 2025-10-30 10:03:57
Score: 3.5
Natty:
Report link

https://springdoc.org/#scalar-support You can use Scalar alternatively!

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shane O'Connor

79804615

Date: 2025-10-30 09:59:56
Score: 0.5
Natty:
Report link

You have already applied borderTopWidth: 2, and the remaining borders are set to 0, so you can directly use borderColor: 'rgb(225, 225, 225)' instead of borderTopColor: 'rgb(225, 225, 225)'. That worked for me.

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

79804607

Date: 2025-10-30 09:52:55
Score: 1
Natty:
Report link

Answering this old thread because I stumbled over it when I was too lazy to browse my project doc:

Be sure to run git config core.hooksPath <path to your git hooks> in the project root to tell IntelliJ where to find your git hooks.

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

79804601

Date: 2025-10-30 09:46:53
Score: 1
Natty:
Report link

Turns out that upgrading the version of cbindgen from 0.24 to the latest on the project's GitHub page (0.29) made the problem go away. It's still not clear to me what the issue actually was, but if anyone else follows the same tutorial and encounters the same error, hopefully this will show up in a web search as a solution.

Reasons:
  • Blacklisted phrase (0.5): the same tutorial
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: NoodleCollie

79804594

Date: 2025-10-30 09:40:51
Score: 1
Natty:
Report link

just like the other answer: use the npm package: material-symbols

inside globals.css file:

@import "tailwindcss";
@import "material-symbols"; /* <-- add this line */

somewhere in your project:

<span className="material-symbols-outlined" style={{ fontSize: 32 }}>thumb_up</span>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: felixreithmaier

79804582

Date: 2025-10-30 09:30:49
Score: 3.5
Natty:
Report link

.sql is common for all db queries, except norelational db )

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

79804572

Date: 2025-10-30 09:20:46
Score: 4
Natty:
Report link

For anyone coming across this problem, batch just posted an update to fix this issue in 11.1.0

https://doc.batch.com/developer/sdk/react-native/sdk-changelog

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

79804565

Date: 2025-10-30 09:15:44
Score: 2
Natty:
Report link

In answers before any character includes nonprintable characters and blancs you can filter a string by using tr -dc

Example:

echo -en "\x09H\x09ello\x0A\x0AHello\x20\x0A" | tr -dc [:alpha:]

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

79804557

Date: 2025-10-30 09:09:42
Score: 2
Natty:
Report link

When you listen to the ExpressCheckoutElement's click event you need to call the resolve() or the reject() function that you got from the handler event within 1sec max. You need to remove any complex code you have that may delay the call of one of these functions within the 1 sec window.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you
Posted by: os4m37

79804553

Date: 2025-10-30 09:01:40
Score: 0.5
Natty:
Report link

I was having the same problem—no native arm64 simulators were showing up at all for the iOS 26. As a desperate move to try and get any simulator to work, I downloaded an older iOS runtime, but even those only appeared in my list labeled as (Rosetta).

That's when I found this. Removing arm64 from Build Settings > Excluded Architectures fixed it immediately.

It's likely that newer versions of Xcode (like 26) only download the native arm64 simulator runtime by default, and not the older Intel x86_64 one.

My project, with that old build setting, and stop forcing the Intel build, I'm assuming @Fourth's suggestion to run xcodebuild -downloadPlatform iOS -architectureVariant universal would also work by forcing Xcode to download all the runtimes.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Fourth's
  • Low reputation (0.5):
Posted by: Magnus Nygaard Lund

79804545

Date: 2025-10-30 08:54:37
Score: 2.5
Natty:
Report link

I set different subnet of ACA under the same VNet of the private link of the ACR.
It worked now.
ref: https://learn.microsoft.com/en-us/azure/container-apps/custom-virtual-networks?tabs=workload-profiles-env

Reasons:
  • Whitelisted phrase (-1): It worked
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jeff_Azure_is_Your_Dad

79804543

Date: 2025-10-30 08:51:37
Score: 3.5
Natty:
Report link

Coba Sekarang – Rasakan Keseruannya di JO777!

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

79804541

Date: 2025-10-30 08:51:36
Score: 2
Natty:
Report link

Smartstore.NET is a solid choice if you’re comfortable with .NET and want modularity. Always use plugins instead of editing the core, it’ll make upgrades much easier. For performance, caching and async loading help a lot with medium-load stores. This post on Creceri eCommerce Development also gives a good overview of building scalable and flexible online stores.

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

79804540

Date: 2025-10-30 08:50:36
Score: 1
Natty:
Report link

event.reject() is not a valid function on the event object, due to outdated documentation. Remove the onClick handler, - instead use the confirmPayment() method of the elements object after fetching the payment intent's client_secret from your server.

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

79804530

Date: 2025-10-30 08:34:32
Score: 2
Natty:
Report link

If you want a language lawyer-style answer:

As said in [intro.abstract]/p1:

The semantic descriptions in this document define a parameterized nondeterministic abstract machine. This document places no requirement on the structure of conforming implementations. In particular, they need not copy or emulate the structure of the abstract machine. Rather, conforming implementations are required to emulate (only) the observable behavior of the abstract machine as explained below. 6

The footnote 6 says that the above is the so called "as-if" rule:

This provision is sometimes called the "as-if" rule, because an implementation is free to disregard any requirement of this document as long as the result is as if the requirement had been obeyed, as far as can be determined from the observable behavior of the program. For instance, an actual implementation need not evaluate part of an expression if it can deduce that its value is not used and that no side effects affecting the observable behavior of the program are produced.

That said, the implementation only needs to make sure the observable behavior is correct. Look at [intro.abstract]/p6:

The least requirements on a conforming implementation are:

  • Accesses through volatile glvalues are evaluated strictly according to the rules of the abstract machine.
  • At program termination, all data written into files shall be identical to one of the possible results that execution of the program according to the abstract semantics would have produced.
  • The input and output dynamics of interactive devices shall take place in such a fashion that prompting output is actually delivered before a program waits for input. What constitutes an interactive device is implementation-defined.

These collectively are referred to as the observable behavior of the program.

[Note 2 : More stringent correspondences between abstract and actual semantics can be defined by each implementation. — end note]

That's the definition of "observable behavior". The difference produced by the StoreStore optimization you described does not fall into any of these categories.

Reasons:
  • Blacklisted phrase (1): this document
  • Blacklisted phrase (1): This document
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: GKxx

79804523

Date: 2025-10-30 08:28:31
Score: 1.5
Natty:
Report link

Yes, your approach looks good and safe. You’re correctly using a Ktor client plugin to attach the UUID header, handling synchronization with a Mutex, and caching it properly to avoid repeated reads. Just make sure your SecureStorage uses something secure like EncryptedSharedPreferences or the Android Keystore so the ID stays protected across restarts.

Here’s the official Ktor documentation for reference:

👉 Ktor Client Plugins

👉 Creating a Custom Client Plugin

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

79804520

Date: 2025-10-30 08:25:29
Score: 7.5 🚩
Natty:
Report link

Title:
Unable to send email using Microsoft Graph API with personal account — 401 APIError

Body:
Hi, I'm trying to send an email from my personal Microsoft account using the Graph API. Here's what I've done so far:

However, when I try to send the email, I get the following error: kiota_abstractions.api_error.APIError: APIError Code: 401

Message: The server returned an unexpected status code and the error registered for this code failed to deserialize: <class 'NoneType'>

Has anyone faced this issue before? Is there something specific I need to configure for personal accounts to send mail via Graph API?

Any help would be appreciated. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help would be appreciated
  • RegEx Blacklisted phrase (1): I get the following error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: jaya

79804518

Date: 2025-10-30 08:22:28
Score: 3.5
Natty:
Report link

Bgdvbfhusgjtmteunzbb

header 1 header 2
cell 1 cell 2
cell 3 cell 40
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Tohid

79804517

Date: 2025-10-30 08:18:27
Score: 1.5
Natty:
Report link

Brifly

cat 1.txt | sed -E "s/(.{1})/\1\n/g" | sort | uniq

Example:

cd /dev/shm/

echo "Hello_world" > /dev/shm/1.txt

cat 1.txt

cat 1.txt | sed -E "s/(.{1})/\1\n/g" | sort | uniq -с

S means substitute

S/str2replace/replacment/g g-means globaly

() is groupe

dot means any character

{1} exactly 1 character

All together

s/(.{1})/\1\n/g means replace any character exactly one with itself and char(10) that represents newline.

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

79804510

Date: 2025-10-30 08:12:25
Score: 0.5
Natty:
Report link

Your code is almost correct and you are going in right way. But you can follow given steps to completely understand mapping from Entity to DTO using MapStruct.

-> Modify below line with your actual line (Just modify given line only in your interface).

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

79804508

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

Do you have default values set for completed_at and updated_at?
In your migration, both of these fields are marked as nullable, so you should make them nullable in your Data class as well, like this:

public function __construct(
    public User $creator,
    public TaskCategory $taskCategory,
    public TaskPriorityEnum $priority,
    public string $title,
    public string $slug,
    public string $content,
    public bool $completed,
    public ?\DateTime $completed_at,
    public ?\Date $deadline_at,
    public \DateTime $created_at,
    public ?\DateTime $updated_at,
)

also u can try ?\Carbon\Carbon

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

79804499

Date: 2025-10-30 07:55:22
Score: 1
Natty:
Report link

I figured out, that I have to wait for the responsd, mostly: SEND OK but somtimes due to Serial communication, only a _ prompt appears, which is equivalent for OK and waiting for next chunk of data.

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

79804489

Date: 2025-10-30 07:41:18
Score: 0.5
Natty:
Report link

While @Jarod42 's answer is the right one for the given problem, I found a new way to approach the problem using C++26's expansion statements:

The unnamed structs should be tied in a tuple. We'll use a static_assert to check that all constants in the enum is associated with a type. Then we can use C++26's expansion statements, i.e. template for to loop through the tuple of unnamed structs:

static constexpr auto objects = std::tie(foo, bar, baz);

// Validate that all object types have corresponding parameter structs
consteval bool validate_all_objects_defined()
{
    
    for(uint8_t type_val = 0; type_val < MyType::TYPE_COUNT; ++type_val)
    {
        bool found = false;
        template for(constexpr auto& obj : objects)
        {
            if constexpr(myrequirement<decltype(obj)>)
            {
                if(obj.type() == type_val)
                {
                    found = true;
                }
            }
        }
        if(!found) return false;
    }
    return true;
}

static_assert(validate_all_objects_defined(), 
    "Not all object types have corresponding parameter definitions!");

template<MyType servo_type>
constexpr auto& get_instance()
{

    template for(constexpr auto& obj : objects)
    {
        if constexpr(myrequirement<decltype(obj)> && obj.type() == servo_type)
        {
            return obj;
        }
    }
    
    // This should never be reached due to the static_assert above
    std::unreachable();
}

This way, the users only have to add a constant to the enum, define a structure and add it to the tuple, and adding a constant without defining a new type gives an explicit compile error:

<source>:63:43: error: static assertion failed: Not all object types have corresponding parameter definitions!
   63 | static_assert(validate_all_objects_defined(),

Complete DEMO

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Jarod42
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: grybouilli

79804482

Date: 2025-10-30 07:30:15
Score: 2.5
Natty:
Report link

[Ctrl + Shift + S], will open up [Save As] window, with current file name selected.

[Ctrl +C] copy it.

[Esc] to close window.

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

79804478

Date: 2025-10-30 07:22:14
Score: 0.5
Natty:
Report link

Solution is very simple. You just need to follow step by step class attributes with it's required types. As per your request, you are facing an issue regarding JSON Parse Error. You just need to use long value instead String value. Because, in your ProductMaterial class you are using long type and here you are using String value. So, this is the main issue. Just use necessary data type value with id and try again with same request, you will not face same issue again.

Your request :

Your JSON :

{
  "sku": "PRD-001",
  "name": "Test Produkt",
  "materials": [
    {
      "id": -1,
      "material": {
        "id": "52a92362-3c7b-40e6-adfe-85a1007c121f",
        "description": "Material 1",
        "costPerUnit": 1,
        "inStock": 1
      },
      "unitsPerProduct": 1
    },
    {
      "id": -1,
      "material": {
        "id": "8a0d57cc-d3bd-4653-b50f-d4a14d5183b3",
        "description": "Material 4",
        "costPerUnit": 0.25,
        "inStock": 4
      },
      "unitsPerProduct": 1
    }
  ],
  "sellPrice": "1.2"
}

New Sample JSON (Try and Check) :

{
  "sku": "PRD-001",
  "name": "Test Produkt",
  "materials": [
    {
      "id": -1,
      "material": {
        "id": 1,
        "description": "Material 1",
        "costPerUnit": 1,
        "inStock": 1
      },
      "unitsPerProduct": 1
    },
    {
      "id": -1,
      "material": {
        "id": 2,
        "description": "Material 4",
        "costPerUnit": 0.25,
        "inStock": 4
      },
      "unitsPerProduct": 1
    }
  ],
  "sellPrice": "1.2"
}
Reasons:
  • Whitelisted phrase (-1): Solution is
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): face same issue
  • Low reputation (0.5):
Posted by: Satyajit Bhatt

79804463

Date: 2025-10-30 07:00:08
Score: 2
Natty:
Report link

I'm also learning about this stage division issue, especially the .count().

Unlike the accepted answer, I think the three stages are the three operations:
reading data,
repartition(4),
and .count().

Because .repartition(4) will trigger a shuffle.

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

79804461

Date: 2025-10-30 06:57:07
Score: 0.5
Natty:
Report link

# --------------------------------------------

# Program: Count Passed and Failed Students

# --------------------------------------------

# Step 1: Create a list of exam scores for 25 students

scores = [45, 78, 32, 56, 89, 40, 39, 67, 72, 58,

      91, 33, 84, 47, 59, 38, 99, 61, 42, 36,

      55, 63, 75, 28, 80\]

# Step 2: Set the minimum passing score

passing_score = 40

# Step 3: Initialize counters for passed and failed students

passed = 0

failed = 0

# Step 4: Go through each score in the list

for score in scores:

\# Step 5: Check if the student passed or failed

if score \>= passing_score:

    passed += 1       # Add 1 to 'passed' count

else:

    failed += 1       # Add 1 to 'failed' count

# Step 6: Display the results

print("--------------------------------------------")

print("Total number of students:", len(scores))

print("Number of students passed:", passed)

print("Number of students failed:", failed)

print("--------------------------------------------")

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Filler text (0.5): --------------------------------------------
  • Filler text (0): --------------------------------------------
  • Filler text (0): --------------------------------------------
  • Filler text (0): --------------------------------------------
  • Low reputation (1):
Posted by: Joe

79804452

Date: 2025-10-30 06:46:05
Score: 2.5
Natty:
Report link

Humbly: I wrote a thing and the kernel (6.12) will compile on macOS.

brew install archie2x/cross-make-linux
brew install llvm lld
PATH="$(brew prefix llvm)/bin:$PATH"
cd linux
cross-make-linux [normal make arguments]

See https://github.com/archie2x/cross-make-linux
Basically same thing as Yuping Luo above and
https://seiya.me/blog/building-linux-on-macos-natively

There are at least three patches to linux to do this directly:
https://www.phoronix.com/news/Linux-Compile-On-macOS

https://www.phoronix.com/news/Building-Linux-Kernel-macOS-Hos

And Seiya (blog above) patch: https://github.com/starina-os/starina/blob/d095696115307e72eba9fe9682c2d837d3484bb0/linux/building-linux-on-macos.patch

I think that will just do it without cross-make-linux (haven't tested) though the tool will ensure you have gmake / gsed / gnu find, etc. etc.

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

79804451

Date: 2025-10-30 06:42:04
Score: 3.5
Natty:
Report link

Are there any Microsoft or industry best practices that discourage storing serial or license information in the Uninstall key?

You should not store anything in a location not owned by you, unless specifically instructed by the owning app to do so.

Create your own key, i.e. [HKEY_LOCAL_MACHINE] or [HKEY_CURRENT_USER]/[Your-Company]/[Your-App] and store any and all information about the app there. In your WiX configuration, be sure to clean it up on uninstallation.

Be careful to use [HKEY_LOCAL_MACHINE] or [HKEY_CURRENT_USER] correctly, depending on whether the installation is per-machine or per-user.

Use of the registry is however not as widespread as it once was, since cross-platform requirements often make it unsuitable as a mechanism. We're mostly back to storing such things in the file system, or at times in the app database. I recommend storing it in a file in %LOCALAPPDATA%\[Your-Company]\[Your-App] on Windows and the corresponding places on other platforms, if any.

Since this key is accessible to users (especially those with local admin privileges), could this expose license or customer-sensitive data

It certainly exposes the license number, but it only exposes what you write there. If it's customer sensitive depends on what's in the number, but it is not likely unless you use the customer's social security number or credit card number as a license number ;-) .

If this is not advisable, what would be a more secure method of storing such data? (For example, encrypting serial key)

It depends on how you view the license key, but typically you should not view it as a secret in the sense that it requires encryption. You can't really encrypt it securely without things getting complicated, and in the end, if the user has access to the decryption key, so does anyone else running as the user.

Normally you would view a serial number or license key to be something of value, under the custody of the user, and have the license agreement state how the license key may be used.

A common practice for offline license verification is to create a license key by including something tying it to the user or the users system perhaps an email-address, a name or a hardware identifier, and then digitally sign it before delivering it. The app then verifies it has a valid license with an embedded public key (which is not a secret). The license key can still be stolen or misused, but if it's discovered the source can be determined.

A signed license key is my personal preference. If online access is ok, a revocation server may be contacted to ensure that the license key has not been disabled, but personally I think it is overkill unless the license is perpetual and misuse causes you direct costs, not just lost revenue. One of the the beautiful things about software is that the marginal cost of producing a copy is essentially zero, so typically a stolen license key only causes you potentially lost revenue and in most cases not even that as the user using a stolen license key is unlikely to purchase it anyway under any circumstances unless you really created a must-have killer app with no alternatives.

If you are interested, I have made a nuget package for .NET, that handles signing and verification of a software license.

Alternatively, perform online verification if suitable, where the user signs in to the app in a cloud service, and receives some form of indication or token back if the user is licensed to use the app.

There's more that can be said and many nuances, but this should be a start.

Reasons:
  • RegEx Blacklisted phrase (3): does anyone else
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Xecrets

79804445

Date: 2025-10-30 06:35:02
Score: 1.5
Natty:
Report link

In addition to Zzz0_o, you should also add

$ echo "flush ruleset" > backup.nft

in the first line to delete the old rule set, otherwise you will end up with duplicate rules.

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

79804435

Date: 2025-10-30 06:11:57
Score: 3
Natty:
Report link

You could use df[:, [index]] if you know the column position.

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

79804426

Date: 2025-10-30 05:54:54
Score: 0.5
Natty:
Report link

-locale is still supported, but it’s currently ignored in newer JDKs (known bug JDK-8222793).
To force English output, use JVM options instead:

javadoc -J-Duser.language=en -J-Duser.country=US ...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lavi Kumar

79804402

Date: 2025-10-30 04:56:41
Score: 1.5
Natty:
Report link

I have create one of the project by using concept talk with other processes via a mechanism like COM for example : https://github.com/GraphBIM/RevitMCPGraphQL But the limit here is you need install an plugin in revit to listen event and send code execute from outside Revit

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

79804400

Date: 2025-10-30 04:51:40
Score: 2.5
Natty:
Report link

I made a lot of different changes until I was finally able to

build for android again. I will list them below, following these I hope you can solve your problem as well.

0- Make sure to create a backup of your entire project, we'll be deleting a ton of stuff.

1- Inside your Project folder, delete the Library and Temp folders. Temp folder is only visible when the editor is running.

2- There seems to be something wrong with package resolution. the default one tries to run a bat file that does not exist. One way is to create or download it yourself but I did that with no luck. The progress was still stuck on 0% but this time with no errors. instead, Install unity jar resolver (Github: https://github.com/googlesamples/unity-jar-resolver) I installed it using GIT from package manager (https://github.com/googlesamples/unity-jar-resolver?tab=readme-ov-file#install-via-git-url)

3- I got hundreds of errors in my console after the previous step. what you want to do now is to delete the folder called "MobileDependencyResolver" from your Assets folder. You'll be shown a messagebox about re-importing it, click yes and let it process everything.

4- Now you'll have a new option in the Assets menu (top bar in unity editor) called External Dependency Manager. Assets > External Dependency Manager > Android Resolver > Force Resolve

Click force resolve once, then try to build for android again.

Notes:
in the process I also deleted .gradle and .android folders from my user folder (C:\Users\<username>) but I don't think it affected the outcome.

Other useful links:
https://discussions.unity.com/t/win32exception-at-resolving-android-dependencies-cannot-find-file-gradlew-bat/904380

Reasons:
  • Blacklisted phrase (1): no luck
  • RegEx Blacklisted phrase (1.5): resolver?
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: DarkDuck

79804398

Date: 2025-10-30 04:47:39
Score: 2
Natty:
Report link

check out https://pub.dev/documentation/flutter_native_splash/latest/flutter_native_splash/FlutterNativeSplash/preserve.html and the corresponding .remove

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

79804395

Date: 2025-10-30 04:38:36
Score: 1
Natty:
Report link

Thank you Charlieface, for the query, you gave me what I wanted. I altered a bit to get the results I wanted. I have to test this further, and this is just the part of the problem. I will have to check this with entire query and test it. This is just 1 code, in reality there are 5 types of code in table t1 with individual include and exclude conditions in ranges for each of the codes. I believe this is what I wanted:

SELECT *
FROM table1 t1
Left Join table2 t2_x on t1.Code between t2_x.FromCode and t2_x.ToCode and t2_x.IsExcluded = 1
WHERE t2_x.ID is NULL 
    AND NOT EXISTS (SELECT 1
    FROM table2 t2
    WHERE t2.IsExcluded = 0)

UNION ALL

SELECT *
FROM table1 t1
WHERE EXISTS (SELECT 1
  FROM table2 t2
  WHERE t1.Code BETWEEN t2.FromCode AND t2.ToCode
  AND t2.IsExcluded = 0)
AND NOT EXISTS (SELECT 1
    FROM table2 t2_x
    WHERE t1.Code BETWEEN t2_x.FromCode AND t2_x.ToCode
    AND t2_x.IsExcluded = 1);
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Amit Nerurkar

79804389

Date: 2025-10-30 04:19:32
Score: 1.5
Natty:
Report link

If you want to find functions that are used only in tests or not used at all, IntelliJ alone can’t fully do it.
The IDE doesn’t semantically distinguish between production code and tests when building its usage graph.

ts-prune is a CLI tool that scans your TypeScript project and lists all exported symbols that are never imported or used and it has ability to ignore test files.

npm install -D ts-prune
npx ts-prune "src" --ignore "src/**/*.test.ts"

Please use it once.

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

79804378

Date: 2025-10-30 03:54:27
Score: 2
Natty:
Report link

You can do this with:

-webkit-text-security: disc
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Samuel Luis De La Cruz

79804375

Date: 2025-10-30 03:42:24
Score: 1.5
Natty:
Report link

Sorry for replying just now not knowing the question was posted 14 years ago when hardware technology was not as advanced as now (2025).

But for helping others improve their fast sorts (quicksort, shellsort, mergesort and others), I would post the results that I achieved yesterday ( 29Oct2025 ). Sort done using Shellsort compiled using Microsoft Visual Studio's C++ that was executed on an Intel i7-1355U CPU ( mobile computer CPU that draws only 15w of electricity ) with 16GB of memory. Base CPU speed is 1.7 Ghz.

  1. 20.733 secs for 200 million records

  2. 9.007 secs for 100 million records

  3. 0.87 secs for 10 million recods

  4. 0.078 secs for 1 million records

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

79804368

Date: 2025-10-30 03:33:22
Score: 1.5
Natty:
Report link

A WordPress theme installation error usually occurs due to one of the following reasons: Incorrect File Format that uploading a .zip theme file, not an extracted folder. WordPress only accepts zipped theme files. File Size Limit Some hosting providers limit the maximum upload size. If the theme is large, increase the upload size limit or install via FTP. Missing style.css File Every WordPress theme must contain a style.css file in the root folder. If it’s missing, the theme will fail to install. Theme Conflicts or Duplicates .If the same theme or version already exists, WordPress may block installation. Try deleting the old version first. Server Configuration Issues Sometimes PHP version, memory limits, or permissions cause the error. Updating your PHP or adjusting permissions can help. Uploading to the Wrong Section – Make sure you upload themes under Appearance → Themes → Add New, not under Plugins.

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

79804360

Date: 2025-10-30 03:09:17
Score: 1.5
Natty:
Report link

Don't know about Java ( because I have not coded in Java since 1998 ).

However using an Intel i7-1355U (mobile i7 CPU, 1.7Ghz base speed) with 16GB of memory, I was able to sort 200 million DWORDs ( 4 bytes unsigned integer ) in 20.563 secs using Shellsort ( normally slower than Quicksort ). The codes were compiled using Visual Studio's C++.

So your implementation is definitely flawed ( unoptimised somewhere ).

Microsoft would not allow me to sort 300 million records so cannot tell you anything beyond this limitation. Sometimes I could sort 250 million records.

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

79804358

Date: 2025-10-30 03:05:16
Score: 3
Natty:
Report link

Yeah, just ran into this:

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

79804349

Date: 2025-10-30 02:44:11
Score: 2.5
Natty:
Report link

I encountered the same problem even I used the Xcode26 Xcode26.0.1 Xcode26.1(https://developer.apple.com/forums/thread/805547)

after two days try I fixed this problem by followed the methods in this article(https://medium.com/@sergey-pekar/how-to-fix-annoying-xcode-26-not-building-swiftui-previews-error-cannot-execute-tool-metal-due-49564e20357c)

I think there is still has a bug for install Metal Toolchain at least for those migrated from Xcode26 Beta

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): medium.com
  • Whitelisted phrase (-2): I fixed
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: xdyang

79804345

Date: 2025-10-30 02:38:10
Score: 3
Natty:
Report link

This is some concept you can work around without attach and debug around :

  1. Using RevitAddinmanager : https://github.com/chuongmep/RevitAddInManager

Revit AddinManager update .NET assemblies without restart Revit for developer.

  1. Using Proof of concept that it is possible to run and debug unit tests in Visual Studio with remote execution inside Revit.
  1. Using hot reload concept : https://learn.microsoft.com/en-us/visualstudio/debugger/hot-reload?view=vs-2022

4 . Attach to a process is good just in case you are opening Revit and the process is test for sometime need, but it's not high recommend for this case

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

79804341

Date: 2025-10-30 02:21:06
Score: 2.5
Natty:
Report link

Cuando se usa un nombre de conexión con caracteres no ASCII, el archivo XML puede quedar, en este caso, indicas que utilizaste un nombre chino en la conexion de base de datos, Renombra las conexiones con nombres simples, Evita usar caracteres no ASCII, nombres sin acentuación, si usas Windows, puedes editar el Edita el archivo Spoon.bat,Antes de ejecutar Java "set JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8", guarda y reinicia Spoon esto es para forzar que todos los archivos de tipo XML se lean/escriban con configuración UTF8, espero aue te funione, exitos...

Reasons:
  • Blacklisted phrase (2): espero
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Oscar Vasquez Estrada

79804335

Date: 2025-10-30 02:00:01
Score: 3.5
Natty:
Report link

do you using "Activity" Component in your code? if i Rendered 2 Acivitity Component than that error is came out in console.

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

79804331

Date: 2025-10-30 01:32:55
Score: 4.5
Natty: 4.5
Report link

SAY BLESS ME ON TELEGRAM JUST Click

https://t.me/GRUTWQCcf455

https://t.me/GRUTWQCcf455

https://t.me/GRUTWQCcf455

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

79804330

Date: 2025-10-30 01:30:55
Score: 2.5
Natty:
Report link

It just records the cell or sheet context where the named item was originally created, and it does not affect what the name actually refers to. You can safely ignore it when editing the name or value.

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

79804327

Date: 2025-10-30 01:18:52
Score: 4
Natty:
Report link

if anyone is having the same problem in VS2022, go to the Docker Desktop app → Settings → Resources → WSL Integration. I noticed that I didn’t have any distro installed, so I installed Ubuntu using `wsl --install Ubuntu` and it worked!

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Heitor Lima

79804325

Date: 2025-10-30 01:15:51
Score: 1.5
Natty:
Report link

As ShaolinShane said, I set different subnet of ACA under the same Vnet of the private link of the ACR.
It worked now.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jeff_Azure_is_Your_Dad

79804321

Date: 2025-10-30 00:58:48
Score: 1
Natty:
Report link

i did it like that. I Think is better and simple too, here the proposed solution doesn't worked in godot 4.3

            foreach (var child in GetChildren())
            {
                if (child is IState) _states.Add(child as IState);
            }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: leonardo meneghin

79804308

Date: 2025-10-30 00:07:37
Score: 1
Natty:
Report link

a better solution :

add_action('woocommerce_single_product_summary', function() {
    global $product;

     if ( ! $product->is_in_stock() ) { 
         echo '<a href="' . home_url( 'contact' ) . '">Contact us</a>'; 
     }
    
}, 31);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hicham EL ALAOUI