79817349

Date: 2025-11-12 05:01:04
Score: 4
Natty: 5
Report link

save me as well, thank you, needs default value.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hao Chang

79817336

Date: 2025-11-12 04:28:57
Score: 5
Natty:
Report link

The best answers can be seen from here.

https://chatgpt.com/

https://chatgpt.com/

https://chatgpt.com/

https://chatgpt.com/

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: TheBestCoderEverToExist

79817283

Date: 2025-11-12 02:54:35
Score: 4
Natty:
Report link

I changed how outlines are created in the geometry shader.

void generateOutlineForTrianglec() {
    float overlap_factor = u_thickness + 1;
    
    for(int edge = 0; edge < 3; edge++) {
        int i0 = edge;
        int i1 = (edge + 1) % 3;
        
        vec4 v0 = gl_PositionIn[i0];
        vec4 v1 = gl_PositionIn[i1];
        
        vec4 edge_center = (v0 + v1) * 0.5;
        vec4 edge_vector = v1 - v0;
        
        vec4 extended_v0 = mix(edge_center, v0, overlap_factor);
        vec4 extended_v1 = mix(edge_center, v1, overlap_factor);
        
        vec2 edge_dir = normalize((extended_v1.xy / extended_v1.w) - (extended_v0.xy / extended_v0.w));
        vec2 edge_normal = vec2(-edge_dir.y, edge_dir.x);
        
        for(int i = 0; i < 4; i++) {
            vec4 pos;
            float offset;
            
            if(i < 2) {
                pos = extended_v0;
                offset = (i == 0 ? 0.5 : -0.5);
            } else {
                pos = extended_v1;
                offset = (i == 2 ? 0.5 : -0.5);
            }
            
            pos.xy += edge_normal * u_thickness * offset * pos.w;
            
            gl_Position = pos;
            fColor = vec4(0.0, 0.0, 1.0, 1.0);
            fTextureCoord = vTextureCoord[i0];
            EmitVertex();
        }
        EndPrimitive();
    }
}

but the intersections of each outline do not work well.

Is there a way to clean up the intersections in the outline?

zoom out

zoom in

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: asdbvvc

79817262

Date: 2025-11-12 01:16:15
Score: 4
Natty: 5
Report link

i just test my answer here, just avoid me, thanks so much

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Khánh Duy

79817247

Date: 2025-11-12 00:41:07
Score: 5
Natty:
Report link

Thanks!

Also how can I fix this?:

>>> print(config["Desktop Entry"]["Exec"])

File "/usr/lib/python3.13/configparser.py", line 462, in _interpolate_some
  raise InterpolationSyntaxError(
  ...<2 lines>...
      "found: %r" % (rest,))
configparser.InterpolationSyntaxError: '%' must be followed by '%' or '(', found: '%u'
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): how can I fix this
  • RegEx Blacklisted phrase (1.5): how can I fix this?
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: AlwaysNur

79817120

Date: 2025-11-11 21:11:11
Score: 4
Natty:
Report link

I stumbled across a tutorial on the internet which clarified things for me, and backed up what you said.
https://github.com/Basel-Dawoud/Recipes-Examples-BootlinTutorial?tab=readme-ov-file#src_uri

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

79817106

Date: 2025-11-11 20:58:06
Score: 6.5 🚩
Natty: 5.5
Report link

could you please share the solution

Reasons:
  • RegEx Blacklisted phrase (2.5): could you please share the solution
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eng.Aldhamdy

79817093

Date: 2025-11-11 20:41:01
Score: 4.5
Natty:
Report link

You release is so old and unsupported since 2019, that the official docs don't even mention the available Python packages for Version 12: Available Python versions - Ubuntu for Developers

Python 3 was added to Ubuntu only at version 14.10 - Python/3 - Ubuntu Wiki

Is there a good reason to remain on that version, considering hundreds of exploitable security vulnerabilites - Canonical Ubuntu Linux 12.04 security vulnerabilities, CVEs?

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: orbanbalage

79817039

Date: 2025-11-11 19:16:35
Score: 4
Natty: 5
Report link

Thank you so much for sharing this.

Is there a way to modify this snippet to hide all Custom Attributes from view? We only want to display the global attributes on the product pages.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Is there a way
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Acquamarinna

79817011

Date: 2025-11-11 18:44:24
Score: 4.5
Natty:
Report link

I wrote a Custom Progressbar Component for FMX, check this link: https://github.com/dani36652/Delphi-FMX-CustomProgressBar

You can set Fill, X and YRadius and other options.

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): check this link
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Daniel Rodriguez

79816943

Date: 2025-11-11 17:18:54
Score: 8.5 🚩
Natty: 6.5
Report link

Is the issue resolved ? please provide the comment

Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • RegEx Blacklisted phrase (1.5): resolved ?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is the is
  • Low reputation (1):
Posted by: jeeva.S

79816941

Date: 2025-11-11 17:12:51
Score: 5.5
Natty: 5
Report link

When you changed the path, did you change the user path or the system path? Did you check the other path too?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Barry Stone

79816867

Date: 2025-11-11 16:14:29
Score: 4
Natty:
Report link

Can you share your vite.config.js file?
If you are using inject:

import inject from '@rollup/plugin-inject';
export default defineConfig({
    plugins: [
        inject({ // This should be first under plugins array
            $: 'jquery',
            jQuery: 'jquery',
        }),
        ...

Remove it!

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share your
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you share you
  • Low reputation (0.5):
Posted by: Omar Alkattan

79816824

Date: 2025-11-11 15:33:16
Score: 5
Natty:
Report link

You thought right, it's an "experiment" the company behind the site does: Opinion-based questions alpha experiment on Stack Overflow

I'm happy to help you with any questions, but the answer will be buried in the discussion, instead of up voted to the top, like you're used to from stackoverflow. So it's not as useful for future users...

Do you have a concrete recipe where it's not clear?

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (2.5): Do you have a
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Mo_

79816740

Date: 2025-11-11 14:06:56
Score: 4.5
Natty:
Report link

I think you need to remove the @Configuration annotation.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Configuration
  • Single line (0.5):
  • Low reputation (1):
Posted by: ferenc

79816680

Date: 2025-11-11 13:18:43
Score: 5
Natty:
Report link

Thank you GuiFalourd,

This is part of a large terraform infrastructure deployment, so the state file already has a lot of resource blocks to handle. So, for this isolated scheduled apply and destruction, in this case of an Azure Bastion Host, is there another method that won't cause state file issues?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Coco

79816654

Date: 2025-11-11 12:53:35
Score: 7.5 🚩
Natty: 4
Report link

I've maybe a follow up question. Currently, the default OpenMP version in GCC 15.2.0 is still 201511 ... i.e. 4.5. Is there a way to change that?
LLVM allows for the flag -fopenm-version=60 for switching to OpenMP version 6.0. Despite ChatGPT's claim, gcc does not accept this command-line option.

Do you know how this can be accomplished in GCC? Does one have to change something in the sources and rebuild GCC? I've tried setting _OPENMP to 202111 e.g. in different places, and rebuild GCC. But without success, yet.

Any idea is very welcome.

Cheers, Martin

Reasons:
  • Blacklisted phrase (1): Cheers
  • Blacklisted phrase (1): Is there a way
  • RegEx Blacklisted phrase (2.5): Do you know how
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Martin

79816648

Date: 2025-11-11 12:46:32
Score: 4.5
Natty: 4.5
Report link

This cookie-button stuff is annoying, I developed a generalized popup-closer. have a look at the closepopup-routines

https://github.com/dornech/utils-seleniumxp/blob/main/src/utils_seleniumxp/webdriver_addon.py

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

79816643

Date: 2025-11-11 12:43:27
Score: 6 🚩
Natty:
Report link

is there a way to let multiple boards feed into a bigger one? For example the screenshot of Fabio where there is a "dev boards" and a "produto boards" that you can combine in a bigger board? Where tasks or epics from dev and produto are shown in the same board?

Reasons:
  • Blacklisted phrase (1): is there a way
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): is there a
  • Low reputation (1):
Posted by: Yuri de Ridder

79816591

Date: 2025-11-11 11:48:14
Score: 5
Natty:
Report link

I do face the same issue in Chrome browser Version 142.0.7444.135 (Official Build) (64-bit)
Screenshot Devtools

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): face the same issue
  • Low reputation (1):
Posted by: lanzi8

79816515

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

sorry miss click, but i dont know how can i change it

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: fladon

79816485

Date: 2025-11-11 10:05:49
Score: 4
Natty:
Report link

I thought since Yocto Project is a tool for building, it should be posted here.

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

79816406

Date: 2025-11-11 08:48:29
Score: 4.5
Natty:
Report link

That's perfect. Thank you very much for your support. The tests show that it works.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Karl-Heinz

79816391

Date: 2025-11-11 08:33:25
Score: 6.5 🚩
Natty: 5.5
Report link

i need help with c programming....Is anyone here

Reasons:
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (2.5): i need help
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: aditi jyoti

79816390

Date: 2025-11-11 08:33:24
Score: 4.5
Natty:
Report link

ok, this suggestion removed the StackOverFlowError exception.

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

79816380

Date: 2025-11-11 08:26:22
Score: 4
Natty: 4.5
Report link

Thank you Barmar! This one is precious.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: myname

79816379

Date: 2025-11-11 08:25:21
Score: 5
Natty:
Report link

And there is no need to 'create/instantiate' the SomeManager in the constructor of the bean class?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: numberfourteen

79816373

Date: 2025-11-11 08:20:20
Score: 4
Natty:
Report link

Yes, absolutely, but the package deming with the function deming() does not use least squares it uses maximum likelihood estimation to find the best fit of coefficients. Therefore, I am trying to find a package which uses least squares and with the option of getting the regression through the origin.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user25269951

79816318

Date: 2025-11-11 07:05:04
Score: 8
Natty:
Report link

Thank you very much. I understand now, and it makes sense. Could you post that as an answer?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2.5): Could you post
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: pietro

79816205

Date: 2025-11-11 03:02:10
Score: 7 🚩
Natty: 4
Report link

really related? why do you have .gitignore file in strapi directory? because i have the same issue and do not have .gitignore file in the server.

Reasons:
  • Blacklisted phrase (1): i have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TGC

79816115

Date: 2025-11-10 23:06:18
Score: 5
Natty: 5.5
Report link

Lightsail bucket now support CORS configuration, please refer to: https://docs.aws.amazon.com/en_us/lightsail/latest/userguide/configure-cors.html

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

79816063

Date: 2025-11-10 21:27:55
Score: 5
Natty: 4.5
Report link

صفحتي على الفيسبوك اتهكىرت وتماه تخير الابريد القتروني وعليها صوري على الفيسبوك والعوز اسبات ابعدل بياناتي الشخصية ورقم الاقومي بتاعي الصفحه بسم فاعل خير وتاريخ الميلاد 18 5 1984 ولوعاوز اسماء الاصدقاء الاعله الصفحه أكتب اسميهم

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: Aasdfs

79816002

Date: 2025-11-10 19:25:24
Score: 4
Natty:
Report link

Credit risk modeling using python

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

79815967

Date: 2025-11-10 18:39:11
Score: 4.5
Natty: 5
Report link

Check this official URL about this trick: https://www.trustindex.io/review-widget-customization-beyond-the-editor/

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

79815911

Date: 2025-11-10 17:18:49
Score: 4.5
Natty:
Report link

Thanks. I agree that I need to use a condition variable for syncronization.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: M Webjorn

79815808

Date: 2025-11-10 15:46:21
Score: 4
Natty:
Report link

Not sure I understand the question siggemannen. Syslog as in Syslog messages passed via network.

JonasH, I think this is basicly exactly what I needed! Thank you so much!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Nathan

79815767

Date: 2025-11-10 15:10:10
Score: 4.5
Natty:
Report link

I've been facing the same issue ;

In my case, the target SDK was 21, while stderr has been introduce in Android NDK from SDK 23.

Setting to SDK 23 or above fixed the issue.

Github issue/source

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (0.5):
Posted by: Eternal Dreamer

79815745

Date: 2025-11-10 14:51:04
Score: 5.5
Natty: 4
Report link

Mongo recommendation

Found these links as well:

https://mongodb.com/docs/drivers/csharp/current/crud/bulk-write?tck=mongodb_ai_chatbot

https://mongodb.com/docs/drivers/csharp/current/crud/transactions?tck=mongodb_ai_chatbot

Reasons:
  • Blacklisted phrase (1): these links
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sai Saketh

79815699

Date: 2025-11-10 14:18:54
Score: 4
Natty:
Report link

toHaveTextContaining() is deprecated in WDIO v9. Instead use toHaveText(). Full document reference is: https://webdriver.io/docs/api/expect-webdriverio#tohavetext

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

79815661

Date: 2025-11-10 13:48:43
Score: 6.5 🚩
Natty:
Report link

same issue here. Any hints how to fix it on MacOS and GitHub CI?

Reasons:
  • RegEx Blacklisted phrase (1): same issue
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bo Marley

79815653

Date: 2025-11-10 13:39:41
Score: 5.5
Natty:
Report link

Generally it should look like this:

services:
    name:
    image:
    volumes:
        - <source_path_in_pc>:<destination_path_in_container>

volumes also overrides the existing path in the container if it exist

why do you think it's a problem with the volumes?
can you send your docker-compose.yaml?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you send your
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Nethan Win

79815622

Date: 2025-11-10 13:04:31
Score: 4
Natty:
Report link

for me work solution with adding define symbol USE_STDPERIPH_DRIVER in project properties (MCU/MPU GCC Compiler->Preprocessor ->define symbols)

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: someone

79815574

Date: 2025-11-10 12:21:17
Score: 11 🚩
Natty: 6.5
Report link

were you able to find a way????

Reasons:
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (1): were you able to find a
  • RegEx Blacklisted phrase (3): were you able
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: shayan rezayi

79815571

Date: 2025-11-10 12:19:16
Score: 4
Natty: 5
Report link

This is it, only disable the hint I don't want! thank you!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David Mendes

79815548

Date: 2025-11-10 11:51:09
Score: 4
Natty:
Report link

Here's an answer from the same problem (although it's 10 years ago).

https://stackoverflow.com/a/28069141/3585500

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
Posted by: ourmandave

79815479

Date: 2025-11-10 10:32:49
Score: 5
Natty:
Report link

Maybe this is helpful: How to plot normal vectors in each point of the curve with a given length?

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

79815373

Date: 2025-11-10 08:59:23
Score: 4
Natty: 5
Report link

Use android studio's profiler to profile your app

https://developer.android.com/studio/profile

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

79815344

Date: 2025-11-10 08:30:15
Score: 5.5
Natty:
Report link

@Rani: Oh, how stupid of me! I'm more of a beginner, but this shouldn't have happened, to init lastcontrol every time. I only focused the IF/ELSE, not the event itself.

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

79815341

Date: 2025-11-10 08:28:14
Score: 5.5
Natty:
Report link

@David: it's a toggle switch, a binary button. IF runs if the button is true and ELSE runs if the button is false again. But since this handles the same button, I need the last used control's name in both, IF and ELSE.

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

79815329

Date: 2025-11-10 08:20:11
Score: 6
Natty: 7
Report link

I am trying to register my app through SoundCloud for developers and got redirected to a google form. Is it safe ?

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Orbicly

79815281

Date: 2025-11-10 07:02:49
Score: 5.5
Natty:
Report link

Just to let others know if they are facing the same issue. You can try in Kaggle if you face this issue in colab.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Evan Shareef

79815273

Date: 2025-11-10 06:41:44
Score: 6.5 🚩
Natty: 5
Report link

I am also facing the same issue with my report, and I checked all the filters in Google Analytics & Power BI are the same. Still, the total does not match.

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Prahalad Parihar

79815262

Date: 2025-11-10 06:34:42
Score: 9.5
Natty: 8
Report link

@Robin Hossain, have you found a solution to this problem?

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found a solution to this problem
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Robin
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Mustafa Al-safar

79815200

Date: 2025-11-10 04:59:20
Score: 9 🚩
Natty: 5.5
Report link

I'm new bee.
When I am using Robin 54030 projection world map facing same problem, Polygons are closing themselves from one side to the other.
Second scale in km/miles shows as invalid when using the Robinson/Wagner VII projection. please help how to rectify. I have tried many ways, but it hasn't been solved.

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): please help
  • RegEx Blacklisted phrase (1.5): I'm new
  • No code block (0.5):
  • Me too answer (2.5): facing same problem
  • Low reputation (1):
Posted by: sudarshan b

79815198

Date: 2025-11-10 04:58:20
Score: 4.5
Natty:
Report link

A problem occurred evaluating project ':react-native-reanimated'

There is an issue coming up, but when I installed react-native-reanimated, it came up. What should I do for this

Reasons:
  • Blacklisted phrase (2): What should I do
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: SAURABH KUMAR

79815139

Date: 2025-11-10 02:29:45
Score: 5
Natty:
Report link

If I understand your reply correctly, it doesn't address what I'm trying to do. I don't have multiple apps trying to share a file.

On my previous phone, some of my apps created/read/updated app-specific files. Those files were located in "Internal Storage" (not in any subfolder of Internal Storage). As a result, those files were accessible from both my phone's file manager and my PC's file manager (when connected to my phone) if I needed to copy/delete/edit them from outside my apps.

It's my understanding that, when I move my apps to the new phone, the apps (which still need to use the info in those files) can only access files that are in "/data/user/0/myApp/files". So I need to copy my files from "Internal Storage" on my previous phone to "/data/user/0/myApp/files" on my new phone.

I guess my first question should be: Is there a way for my apps on my new phone to access files in "Internal Storage"? If so, then I could simply copy the files over to my new phone. But, if my apps can't access "internal Storage', then how can I copy my files into "/data/user/0/myApp/files" on my new phone so my apps can access them?.

Does this clarify my question?

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): Is there a way
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: mpa

79815059

Date: 2025-11-09 22:28:25
Score: 5
Natty: 4
Report link

onclick="location.href='About:blank';"

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Igor

79814995

Date: 2025-11-09 20:06:53
Score: 4
Natty:
Report link

Thanks! A follow-up question:

If the CreditLine (or Financing) entity only holds stable attributes like the ID, would it also contain a list of its Snapshots?

Should getters and all domain logic (like calculations) stay in the CreditLine class and delegate to the latest snapshot, or live directly in the Snapshot and the Credit Line class just have methods to add and retrieve a snapshot?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: MABC

79814975

Date: 2025-11-09 19:00:40
Score: 4.5
Natty:
Report link

sudo apt install python3-scriptforge

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

79814948

Date: 2025-11-09 18:00:26
Score: 4
Natty: 4
Report link

Corrigi usando na .env uma opção chamada "Transaction Pooler" do Supabase. A conexão deu tudo certo após isso. Pois parece que o IPv6 não é totalmente suportado no meu Ubuntu, então temos que usar algo como IPv4.

Transaction Pooler e usa a string de conexão fornecida, geralmente com a porta 6543

Imagem da opção no Supabase

Reasons:
  • Blacklisted phrase (1): então
  • Blacklisted phrase (1): não
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Brenio Filho

79814894

Date: 2025-11-09 16:05:00
Score: 4
Natty:
Report link

React Router V6 has a backwards compatibility package. Perhaps that's a middleground worth exploring?

https://reactrouter.com/6.30.1/upgrading/v5

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Alexander Wiklund

79814857

Date: 2025-11-09 15:02:46
Score: 4
Natty:
Report link

I'm also just getting started with coding and recently came across the idea of contributing to open source. At first, I had no clue where to begin, but after doing a bit of digging, I realized you don’t need to work for a company to contribute.

What I’ve been doing is checking out projects on GitHub that seem interesting—especially ones using the language I’m learning. I look for issues labeled “good first issue” or “beginner friendly.” Those are perfect for people like us who are just starting out.

You don’t need to be an expert. You can help by fixing small bugs, improving documentation, or even just asking if there’s something you can do. Most open source communities are super welcoming and happy to guide you.

So yeah, if you’re thinking of jumping in, go for it! We’re all learning. Good luck!

Reasons:
  • RegEx Blacklisted phrase (3): You can help
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Irene RODRIGUEZ RODRIGUEZ

79814848

Date: 2025-11-09 14:49:43
Score: 4.5
Natty:
Report link

I believe this is an iOS 26.1 bug unfortunately :(

https://bugs.webkit.org/show_bug.cgi?id=301994

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

79814844

Date: 2025-11-09 14:46:42
Score: 4.5
Natty:
Report link

I'm also facing the same issue, tests runs just fine with direct class name or even direct package reference, but as soon as I try to run with groups then it fails with null pointer exception.

I noticed that, when groups are included in xml then it even not going for @BeforeClass and @BeforeMethod methods from superclass which is overridden in test class and that is the reason test is trying to execute before initializing the web drivers and ended up with null pointer exception.

I've tried to rename the methods in superclass to avoid collision but none worked. With same configuration it runs fine if I remove the groups from testng xml suite.

Note that group names are correctly specified in the @test.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm also facing the same issue
  • User mentioned (1): @BeforeClass
  • User mentioned (0): @BeforeMethod
  • User mentioned (0): @test
  • Low reputation (1):
Posted by: Irshad Telsang

79814799

Date: 2025-11-09 13:17:20
Score: 4.5
Natty:
Report link

To answer my own question, OpenLayers doesn't allows dispatching custom events. cf. https://github.com/openlayers/openlayers/issues/14667

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

79814787

Date: 2025-11-09 12:55:14
Score: 5.5
Natty:
Report link

I have resolved it. I found a project that it can bypass it. https://github.com/JustLikeCheese/NexToast.

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

79814744

Date: 2025-11-09 11:10:53
Score: 5
Natty:
Report link

This answer works great! Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David

79814729

Date: 2025-11-09 10:50:46
Score: 7 🚩
Natty: 5.5
Report link

please help you give my diamind please

Reasons:
  • RegEx Blacklisted phrase (3): please help
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kautirake Iaruru

79814687

Date: 2025-11-09 09:09:24
Score: 4.5
Natty: 5
Report link

this is a wonderful article that I think answers your question https://betweendata.io/posts/secure-spring-rest-api-using-keycloak/

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

79814633

Date: 2025-11-09 06:27:44
Score: 6.5 🚩
Natty: 5
Report link

Is there a way to change color previous active tab ?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is there a
  • Low reputation (0.5):
Posted by: user2573099

79814624

Date: 2025-11-09 06:07:38
Score: 6.5 🚩
Natty:
Report link

Got it — that “flash of light background” when switching to or loading dark mode is a common issue, and you’re right that it’s usually a kind of FOUC (Flash of Unstyled Content).

Before diving into fixes, could you share the following?

1. The way you’re currently handling dark mode (e.g., CSS prefers-color-scheme, JS toggle, or CSS class like .dark on <html>).

2. Whether you’re using a framework (like React, Next.js, Astro, etc.) or plain HTML/CSS/JS.

3. The part of your code that sets the dark/light theme (HTML head + relevant CSS/JS).

Once I see that, I can pinpoint why the flash is happening and give you an exact fix (for example, inlining a script in the <head> that applies the theme before paint).

If you want, you can paste or upload the code for:

your <head> section, and

your dark mode script or CSS toggle code.

Would you like me to explain the general reasons and fixes for this issue first (so you can understand the concept), or do you want to go straight into fixing your specific code?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you share
  • RegEx Blacklisted phrase (1.5): fixing your specific code?
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Jonoub Jonoubi

79814604

Date: 2025-11-09 05:11:25
Score: 12.5 🚩
Natty: 6.5
Report link

Is there any solution to this? I am also facing the same error.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (1): I am also facing the same error
  • RegEx Blacklisted phrase (2): any solution to this?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same error
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any solution to this
  • Low reputation (1):
Posted by: Aritro Mukherjee

79814581

Date: 2025-11-09 03:53:07
Score: 9 🚩
Natty:
Report link

Could you let me know if you got this working? Are you using the Home, Professional, Education, or Enterprise version of Windows?

I've got some intermittent issues too. I am looking for a solution that is consistent and reliable.

Reasons:
  • Blacklisted phrase (2): I am looking for
  • RegEx Blacklisted phrase (2.5): Could you let me know
  • RegEx Blacklisted phrase (2): working?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Bill Woodford

79814579

Date: 2025-11-09 03:22:01
Score: 5.5
Natty:
Report link

@Joakim Danielson, Thanks! Creating another variable to represent the latest value is also a good suggestion!

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

79814569

Date: 2025-11-09 02:52:55
Score: 14
Natty: 8.5
Report link

@BrightLights I am running into same issue, were you able to found any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): were you able
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @BrightLights
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Mihir Patel

79814563

Date: 2025-11-09 02:41:52
Score: 4
Natty:
Report link

@Warren Burton, Thanks! Yes, I'm sure it's a sorting performance problem. Each time the user tap the app, there're tens to hundreds of calculations are working depending on the latest sorted value. I have tried to use async/await, the result is not that good, still feels stuck.

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

79814561

Date: 2025-11-09 02:36:51
Score: 5.5
Natty:
Report link

@Iorem ipsum, thanks! If you do not use relationship arrays, how do you design SwiftData models? Like this question, historyValueList should be a series of values, it seems there's no other way to store many values in SwiftData.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): how do you
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Iorem
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: stephen

79814545

Date: 2025-11-09 01:35:38
Score: 9.5 🚩
Natty: 5.5
Report link

Did you ever find a solution to this?

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution to this
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Adam Nemecek

79814527

Date: 2025-11-09 00:31:25
Score: 4.5
Natty:
Report link

@GuruStron - yes, that's it - this is what I missed. Thank you!

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

79814511

Date: 2025-11-08 23:46:15
Score: 5
Natty:
Report link

I asked GPT5-Thinking-High, I would check it out:

https://chatgpt.com/s/t_690fd4917bb48191b7caf4000522f6d0

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ronan

79814508

Date: 2025-11-08 23:35:13
Score: 4
Natty:
Report link

the shc is available for alpine:edge, but it's in the testing repo

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

79814447

Date: 2025-11-08 21:00:34
Score: 6.5
Natty:
Report link

Thanks for the advice, but thats not it, I built both to release.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks for the advice
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: nik

79814416

Date: 2025-11-08 19:52:17
Score: 4.5
Natty:
Report link

I can't repost for another 1.30h

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

79814413

Date: 2025-11-08 19:47:16
Score: 5
Natty:
Report link

How can you represent inheritance in a database? How do you effectively model inheritance in a database? etc etc etc How much research effort is expected of Stack Overflow users? https://stackoverflow.com/help

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

79814357

Date: 2025-11-08 17:56:49
Score: 7 🚩
Natty:
Report link

Solved (in the comments, by @BugFinder, profile https://stackoverflow.com/users/687262/bugfinder): I needed to go to "Build Profiles" under File

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @BugFinder
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: robotsnh

79814339

Date: 2025-11-08 17:33:43
Score: 5
Natty:
Report link

With OVMF prebuilt by https://github.com/rust-osdev/ovmf-prebuilt/ it works well.

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

79814292

Date: 2025-11-08 16:06:21
Score: 4.5
Natty:
Report link

Is it a good example of dynamic_cast https://developernote.com/2025/11/an-interface-segregation-principle-isp-example/ ? Does it break some principles?

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is it a
  • High reputation (-1):
Posted by: Dmitriano

79814266

Date: 2025-11-08 15:21:10
Score: 4.5
Natty:
Report link

Does it mean that on POSIX cxxxxx are to be eschewed in favour of plain xxxxx.h?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Nil Admirari

79814231

Date: 2025-11-08 14:26:56
Score: 5
Natty:
Report link

Could you give one simple example where dynamic_cast is really needed and does not violate some principles?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you give
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dmitriano

79813236

Date: 2025-11-08 13:56:48
Score: 6
Natty:
Report link

Can someone give me an example when dynamic_cast is not broken?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can someone give me
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can someone give me an
  • High reputation (-1):
Posted by: Dmitriano

79813098

Date: 2025-11-08 10:00:46
Score: 4
Natty:
Report link

Now you can access conversation history via API

https://docs.cloud.google.com/dialogflow/cx/docs/reference/rpc/google.cloud.dialogflow.cx.v3beta1#conversationhistory

enter image description here

enter image description here

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

79813087

Date: 2025-11-08 09:45:38
Score: 6 🚩
Natty:
Report link

I have the same issue, I have fixed it by replacing the old npm viewPager deprecated package with the new react-native-pager-view package.

Deprecated Package: https://npmjs.com/package/@react-native-community/viewpager

New Package: https://www.npmjs.com/package/react-native-pager-view

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
Posted by: Vishal Pawar

79813086

Date: 2025-11-08 09:44:33
Score: 6 🚩
Natty:
Report link

I have the same issue, I have fixed it by replacing the old npm viewPager deprecated package with the new react-native-pager-view package.

Deprecated Package: https://npmjs.com/package/@react-native-community/viewpager

New Package: https://www.npmjs.com/package/react-native-pager-view

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
Posted by: Vishal Pawar

79813084

Date: 2025-11-08 09:42:28
Score: 6 🚩
Natty:
Report link

I have the same issue, I have fixed it by replacing the old npm viewPager deprecated package with the new react-native-pager-view package.

Deprecated Package: https://npmjs.com/package/@react-native-community/viewpager

New Package: https://www.npmjs.com/package/react-native-pager-view.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
Posted by: Vishal Pawar

79813052

Date: 2025-11-08 08:45:13
Score: 5.5
Natty:
Report link

@wohlstad I did not see any "regular" or "normal" option. Please be more accurate.

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

79813015

Date: 2025-11-08 07:21:55
Score: 4.5
Natty:
Report link

Is there a real difference in trading conditions between standard brokers and Earnforex? Some traders believe spreads are higher on Islamic accounts, while others say the service is identical except for the swap-free feature. What’s your experience?

https://www.earnforex.com/ar

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is there a
  • Low reputation (1):
Posted by: uzair gohar

79813014

Date: 2025-11-08 07:21:55
Score: 4.5
Natty:
Report link

Big Limos is a world-renowned leader in the design and manufacturing of custom-built limousines, luxury SUVs, and specialty vehicles. With a strong reputation for quality, craftsmanship, and innovation, Big Limos transforms ordinary vehicles into extraordinary masterpieces of comfort, style, and performance. Every limousine created by Big Limos is a reflection of precision engineering and artistic excellence, built to meet the highest standards of luxury transportation around the globe.

Reasons:
  • RegEx Blacklisted phrase (1.5): reputation
  • Contains signature (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Big Limos

79812979

Date: 2025-11-08 04:50:23
Score: 4.5
Natty:
Report link

Thank you for the break-down as I was reading into the word 'all' when it would be better explained with 'each' as the all was presumptuous to summation. Thanks again @kitt51.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @kitt51
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: April_Nara

79812972

Date: 2025-11-08 04:31:18
Score: 5
Natty:
Report link

Can you post some images of your app? Preferably an image of how it looks on Mac and another of how it looks on Windows?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you post some
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you post some
  • High reputation (-2):
Posted by: Abra

79812963

Date: 2025-11-08 04:03:12
Score: 6
Natty:
Report link

Can you post a link to the problem?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you post
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you post a
  • High reputation (-2):
Posted by: Abra