Check out a userscript which highlights deleted posts.
GitHub
Date: 2025-11-12 05:01:04
Score: 4
Natty: 5
save me as well, thank you, needs default value.
Reasons:
Blacklisted phrase (0.5): thank youLow length (1.5): No code block (0.5): Single line (0.5): Low reputation (1):
Posted by: Hao Chang
Date: 2025-11-12 04:28:57
Score: 5
Natty:
Reasons:
Probably link only (1): Low length (2): No code block (0.5): Unregistered user (0.5): Low reputation (1):
Posted by: TheBestCoderEverToExist
Date: 2025-11-12 02:54:35
Score: 4
Natty:
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?
Reasons:
Blacklisted phrase (1): Is there a wayProbably 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
Date: 2025-11-12 01:16:15
Score: 4
Natty: 5
i just test my answer here, just avoid me, thanks so much
Reasons:
Blacklisted phrase (0.5): thanksLow length (1.5): No code block (0.5): Single line (0.5): Low reputation (1):
Posted by: Khánh Duy
Date: 2025-11-12 00:41:07
Score: 5
Natty:
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): ThanksBlacklisted phrase (0.5): how can IBlacklisted phrase (1): how can I fix thisRegEx 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
Date: 2025-11-11 21:11:11
Score: 4
Natty:
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
Date: 2025-11-11 20:58:06
Score: 6.5
🚩
Natty: 5.5
could you please share the solution
Reasons:
RegEx Blacklisted phrase (2.5): could you please share the solutionLow length (2): No code block (0.5): Single line (0.5): Low reputation (1):
Posted by: Eng.Aldhamdy
Date: 2025-11-11 20:41:01
Score: 4.5
Natty:
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
Date: 2025-11-11 19:16:35
Score: 4
Natty: 5
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 youBlacklisted phrase (1): Is there a wayLow length (0.5): No code block (0.5): Contains question mark (0.5): Low reputation (1):
Posted by: Acquamarinna
Date: 2025-11-11 18:44:24
Score: 4.5
Natty:
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 linkRegEx Blacklisted phrase (1): check this linkLow length (1): No code block (0.5): Low reputation (1):
Posted by: Daniel Rodriguez
Date: 2025-11-11 17:18:54
Score: 8.5
🚩
Natty: 6.5
Is the issue resolved ? please provide the comment
Reasons:
RegEx Blacklisted phrase (2.5): please provideRegEx 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 isLow reputation (1):
Posted by: jeeva.S
Date: 2025-11-11 17:12:51
Score: 5.5
Natty: 5
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
Date: 2025-11-11 16:14:29
Score: 4
Natty:
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 yourLow length (0.5): Has code block (-0.5): Contains question mark (0.5): Starts with a question (0.5): Can you share youLow reputation (0.5):
Posted by: Omar Alkattan
Date: 2025-11-11 15:33:16
Score: 5
Natty:
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): stackoverflowRegEx Blacklisted phrase (2.5): Do you have aNo code block (0.5): Ends in question mark (2): High reputation (-1):
Posted by: Mo_
Date: 2025-11-11 14:06:56
Score: 4.5
Natty:
I think you need to remove the @Configuration annotation.
Reasons:
Low length (1.5): No code block (0.5): User mentioned (1): @ConfigurationSingle line (0.5): Low reputation (1):
Posted by: ferenc
Date: 2025-11-11 13:18:43
Score: 5
Natty:
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 youLow length (0.5): No code block (0.5): Ends in question mark (2): Self-answer (0.5): Low reputation (1):
Posted by: Coco
Date: 2025-11-11 12:53:35
Score: 7.5
🚩
Natty: 4
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): CheersBlacklisted phrase (1): Is there a wayRegEx Blacklisted phrase (2.5): Do you know howContains 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
Date: 2025-11-11 12:46:32
Score: 4.5
Natty: 4.5
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
Date: 2025-11-11 12:43:27
Score: 6
🚩
Natty:
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 wayLow 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
Date: 2025-11-11 11:48:14
Score: 5
Natty:
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 issueLow reputation (1):
Posted by: lanzi8
Date: 2025-11-11 10:36:56
Score: 4
Natty:
sorry miss click, but i dont know how can i change it
Reasons:
Blacklisted phrase (0.5): how can iLow length (1.5): No code block (0.5): Self-answer (0.5): Single line (0.5): Low reputation (0.5):
Posted by: fladon
Date: 2025-11-11 10:05:49
Score: 4
Natty:
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
Date: 2025-11-11 08:48:29
Score: 4.5
Natty:
That's perfect. Thank you very much for your support. The tests show that it works.
Reasons:
Blacklisted phrase (0.5): Thank youLow length (1.5): No code block (0.5): Self-answer (0.5): Single line (0.5): Low reputation (1):
Posted by: Karl-Heinz
Date: 2025-11-11 08:33:25
Score: 6.5
🚩
Natty: 5.5
i need help with c programming....Is anyone here
Reasons:
Blacklisted phrase (0.5): i needBlacklisted phrase (2.5): i need helpLow length (1.5): No code block (0.5): Single line (0.5): Low reputation (1):
Posted by: aditi jyoti
Date: 2025-11-11 08:33:24
Score: 4.5
Natty:
ok, this suggestion removed the StackOverFlowError exception.
Reasons:
Blacklisted phrase (1): StackOverFlowLow length (1.5): No code block (0.5): Self-answer (0.5): Single line (0.5): Low reputation (0.5):
Posted by: numberfourteen
Date: 2025-11-11 08:26:22
Score: 4
Natty: 4.5
Thank you Barmar! This one is precious.
Reasons:
Blacklisted phrase (0.5): Thank youLow length (2): No code block (0.5): Single line (0.5): Low reputation (0.5):
Posted by: myname
Date: 2025-11-11 08:25:21
Score: 5
Natty:
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
Date: 2025-11-11 08:20:20
Score: 4
Natty:
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 toLow length (0.5): No code block (0.5): Self-answer (0.5): Single line (0.5): Low reputation (1):
Posted by: user25269951
Date: 2025-11-11 07:05:04
Score: 8
Natty:
Thank you very much. I understand now, and it makes sense. Could you post that as an answer?
Reasons:
Blacklisted phrase (0.5): Thank youRegEx Blacklisted phrase (2.5): Could you postLow 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
Date: 2025-11-11 03:02:10
Score: 7
🚩
Natty: 4
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 issueLow length (1): No code block (0.5): Me too answer (2.5): i have the same issueContains question mark (0.5): Single line (0.5): Low reputation (1):
Posted by: TGC
Date: 2025-11-10 23:06:18
Score: 5
Natty: 5.5
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
Date: 2025-11-10 21:27:55
Score: 5
Natty: 4.5
صفحتي على الفيسبوك اتهكىرت وتماه تخير الابريد القتروني وعليها صوري على الفيسبوك والعوز اسبات ابعدل بياناتي الشخصية ورقم الاقومي بتاعي الصفحه بسم فاعل خير وتاريخ الميلاد 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
Date: 2025-11-10 19:25:24
Score: 4
Natty:
Credit risk modeling using python
Reasons:
Low length (2): No code block (0.5): Single line (0.5): Low reputation (1):
Posted by: Subhashish
Date: 2025-11-10 18:39:11
Score: 4.5
Natty: 5
Reasons:
Probably link only (1): Low length (1.5): No code block (0.5): Single line (0.5): Low reputation (1):
Posted by: user2420157
Date: 2025-11-10 17:18:49
Score: 4.5
Natty:
Thanks. I agree that I need to use a condition variable for syncronization.
Reasons:
Blacklisted phrase (0.5): ThanksBlacklisted phrase (0.5): I needLow length (1.5): No code block (0.5): Self-answer (0.5): Single line (0.5): Low reputation (0.5):
Posted by: M Webjorn
Date: 2025-11-10 15:46:21
Score: 4
Natty:
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 youBlacklisted phrase (0.5): I needLow length (1): No code block (0.5): Self-answer (0.5): Low reputation (1):
Posted by: Nathan
Date: 2025-11-10 15:10:10
Score: 4.5
Natty:
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 issueLow reputation (0.5):
Posted by: Eternal Dreamer
Date: 2025-11-10 14:51:04
Score: 5.5
Natty: 4
Reasons:
Blacklisted phrase (1): these linksProbably link only (1): Low length (2): No code block (0.5): Low reputation (1):
Posted by: Sai Saketh
Date: 2025-11-10 14:18:54
Score: 4
Natty:
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
Date: 2025-11-10 13:48:43
Score: 6.5
🚩
Natty:
same issue here. Any hints how to fix it on MacOS and GitHub CI?
Reasons:
RegEx Blacklisted phrase (1): same issueLow length (1.5): No code block (0.5): Ends in question mark (2): Single line (0.5): Low reputation (1):
Posted by: Bo Marley
Date: 2025-11-10 13:39:41
Score: 5.5
Natty:
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 yourLow length (0.5): Has code block (-0.5): Ends in question mark (2): Low reputation (1):
Posted by: Nethan Win
Date: 2025-11-10 13:04:31
Score: 4
Natty:
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 hereLow length (1): No code block (0.5): Unregistered user (0.5): Low reputation (1):
Posted by: someone
Date: 2025-11-10 12:21:17
Score: 11
🚩
Natty: 6.5
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 ableLow length (2): No code block (0.5): Ends in question mark (2): Single line (0.5): Low reputation (1):
Posted by: shayan rezayi
Date: 2025-11-10 12:19:16
Score: 4
Natty: 5
This is it, only disable the hint I don't want! thank you!
Reasons:
Blacklisted phrase (0.5): thank youLow length (1.5): No code block (0.5): Single line (0.5): Low reputation (1):
Posted by: David Mendes
Date: 2025-11-10 11:51:09
Score: 4
Natty:
Here's an answer from the same problem (although it's 10 years ago).
https://stackoverflow.com/a/28069141/3585500
Reasons:
Blacklisted phrase (1): stackoverflowProbably link only (1): Low length (1.5): No code block (0.5):
Posted by: ourmandave
Date: 2025-11-10 10:32:49
Score: 5
Natty:
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
Date: 2025-11-10 08:59:23
Score: 4
Natty: 5
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
Date: 2025-11-10 08:30:15
Score: 5.5
Natty:
@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): @RaniSelf-answer (0.5): Single line (0.5): Looks like a comment (1): Low reputation (1):
Posted by: MaSta
Date: 2025-11-10 08:28:14
Score: 5.5
Natty:
@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 needLow length (0.5): No code block (0.5): User mentioned (1): @DavidSelf-answer (0.5): Single line (0.5): Looks like a comment (1): Low reputation (1):
Posted by: MaSta
Date: 2025-11-10 08:20:11
Score: 6
Natty: 7
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 toLow length (1): No code block (0.5): Ends in question mark (2): Single line (0.5): Low reputation (1):
Posted by: Orbicly
Date: 2025-11-10 07:02:49
Score: 5.5
Natty:
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 issueSingle line (0.5): Low reputation (1):
Posted by: Evan Shareef
Date: 2025-11-10 06:41:44
Score: 6.5
🚩
Natty: 5
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 issueLow length (1): No code block (0.5): Me too answer (2.5): I am also facing the same issueSingle line (0.5): Low reputation (1):
Posted by: Prahalad Parihar
Date: 2025-11-10 06:34:42
Score: 9.5
Natty: 8
@Robin Hossain, have you found a solution to this problem?
Reasons:
RegEx Blacklisted phrase (2.5): have you found a solution to this problemLow length (1.5): No code block (0.5): Ends in question mark (2): User mentioned (1): @RobinSingle line (0.5): Looks like a comment (1): Low reputation (0.5):
Posted by: Mustafa Al-safar
Date: 2025-11-10 04:59:20
Score: 9
🚩
Natty: 5.5
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): ThanksRegEx Blacklisted phrase (3): please helpRegEx Blacklisted phrase (1.5): I'm newNo code block (0.5): Me too answer (2.5): facing same problemLow reputation (1):
Posted by: sudarshan b
Date: 2025-11-10 04:58:20
Score: 4.5
Natty:
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 doLow length (1): No code block (0.5): Low reputation (1):
Posted by: SAURABH KUMAR
Date: 2025-11-10 02:29:45
Score: 5
Natty:
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 IBlacklisted phrase (0.5): I needBlacklisted phrase (1): Is there a wayLong answer (-1): No code block (0.5): Ends in question mark (2): Self-answer (0.5): Low reputation (1):
Posted by: mpa
Date: 2025-11-09 22:28:25
Score: 5
Natty: 4
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
Date: 2025-11-09 20:06:53
Score: 4
Natty:
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): ThanksNo code block (0.5): Ends in question mark (2): Self-answer (0.5): Low reputation (0.5):
Posted by: MABC
Date: 2025-11-09 19:00:40
Score: 4.5
Natty:
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
Date: 2025-11-09 18:00:26
Score: 4
Natty: 4
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ãoBlacklisted phrase (1): nãoLow length (0.5): No code block (0.5): Low reputation (1):
Posted by: Brenio Filho
Date: 2025-11-09 16:05:00
Score: 4
Natty:
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
Date: 2025-11-09 15:02:46
Score: 4
Natty:
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 helpLong answer (-0.5): No code block (0.5): Low reputation (1):
Posted by: Irene RODRIGUEZ RODRIGUEZ
Date: 2025-11-09 14:49:43
Score: 4.5
Natty:
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
Date: 2025-11-09 14:46:42
Score: 4.5
Natty:
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 issueUser mentioned (1): @BeforeClassUser mentioned (0): @BeforeMethodUser mentioned (0): @testLow reputation (1):
Posted by: Irshad Telsang
Date: 2025-11-09 13:17:20
Score: 4.5
Natty:
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
Date: 2025-11-09 12:55:14
Score: 5.5
Natty:
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
Date: 2025-11-09 11:10:53
Score: 5
Natty:
This answer works great! Thank you!
Reasons:
Blacklisted phrase (0.5): Thank youLow length (2): No code block (0.5): Self-answer (0.5): Single line (0.5): Low reputation (1):
Posted by: David
Date: 2025-11-09 10:50:46
Score: 7
🚩
Natty: 5.5
please help you give my diamind please
Reasons:
RegEx Blacklisted phrase (3): please helpLow length (2): No code block (0.5): Single line (0.5): Low reputation (1):
Posted by: Kautirake Iaruru
Date: 2025-11-09 09:09:24
Score: 4.5
Natty: 5
Reasons:
Probably link only (1): Low length (1.5): No code block (0.5): Single line (0.5): Low reputation (1):
Posted by: Yogesh
Date: 2025-11-09 06:27:44
Score: 6.5
🚩
Natty: 5
Is there a way to change color previous active tab ?
Reasons:
Blacklisted phrase (1): Is there a wayLow 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
Date: 2025-11-09 06:07:38
Score: 6.5
🚩
Natty:
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 shareRegEx 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
Date: 2025-11-09 05:11:25
Score: 12.5
🚩
Natty: 6.5
Is there any solution to this? I am also facing the same error.
Reasons:
Blacklisted phrase (1.5): any solutionBlacklisted phrase (1): Is there anyRegEx Blacklisted phrase (1): I am also facing the same errorRegEx 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 errorContains question mark (0.5): Single line (0.5): Starts with a question (0.5): Is there any solution to thisLow reputation (1):
Posted by: Aritro Mukherjee
Date: 2025-11-09 03:53:07
Score: 9
🚩
Natty:
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 forRegEx Blacklisted phrase (2.5): Could you let me knowRegEx 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
Date: 2025-11-09 03:22:01
Score: 5.5
Natty:
@Joakim Danielson, Thanks! Creating another variable to represent the latest value is also a good suggestion!
Reasons:
Blacklisted phrase (0.5): ThanksLow length (1): No code block (0.5): User mentioned (1): @JoakimSelf-answer (0.5): Single line (0.5): Looks like a comment (1): Low reputation (0.5):
Posted by: stephen
Date: 2025-11-09 02:52:55
Score: 14
Natty: 8.5
@BrightLights I am running into same issue, were you able to found any solution?
Reasons:
Blacklisted phrase (1.5): any solutionRegEx Blacklisted phrase (3): were you ableRegEx Blacklisted phrase (2): any solution?Low length (1.5): No code block (0.5): Ends in question mark (2): User mentioned (1): @BrightLightsSingle line (0.5): Looks like a comment (1): Low reputation (1):
Posted by: Mihir Patel
Date: 2025-11-09 02:41:52
Score: 4
Natty:
@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): ThanksLow length (0.5): Has code block (-0.5): User mentioned (1): @WarrenSelf-answer (0.5): Single line (0.5): Looks like a comment (1): Low reputation (0.5):
Posted by: stephen
Date: 2025-11-09 02:36:51
Score: 5.5
Natty:
@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): thanksBlacklisted phrase (1): how do youLow length (0.5): Has code block (-0.5): Contains question mark (0.5): User mentioned (1): @IoremSelf-answer (0.5): Single line (0.5): Looks like a comment (1): Low reputation (0.5):
Posted by: stephen
Date: 2025-11-09 01:35:38
Score: 9.5
🚩
Natty: 5.5
Did you ever find a solution to this?
Reasons:
RegEx Blacklisted phrase (3): Did you ever find a solution to thisLow 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
Date: 2025-11-09 00:31:25
Score: 4.5
Natty:
@GuruStron - yes, that's it - this is what I missed. Thank you!
Reasons:
Blacklisted phrase (0.5): Thank youLow length (1.5): No code block (0.5): User mentioned (1): @GuruStronSelf-answer (0.5): Single line (0.5): Looks like a comment (1): High reputation (-1):
Posted by: boggy
Date: 2025-11-08 23:46:15
Score: 5
Natty:
Reasons:
Blacklisted phrase (0.5): check it outProbably link only (1): Low length (1.5): No code block (0.5): Unregistered user (0.5): Low reputation (1):
Posted by: Ronan
Date: 2025-11-08 23:35:13
Score: 4
Natty:
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
Date: 2025-11-08 21:00:34
Score: 6.5
Natty:
Thanks for the advice, but thats not it, I built both to release.
Reasons:
Blacklisted phrase (0.5): ThanksRegEx Blacklisted phrase (3): Thanks for the adviceLow length (1.5): No code block (0.5): Self-answer (0.5): Single line (0.5):
Posted by: nik
Date: 2025-11-08 19:52:17
Score: 4.5
Natty:
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
Date: 2025-11-08 19:47:16
Score: 5
Natty:
Reasons:
Blacklisted phrase (1): How do youBlacklisted phrase (1): stackoverflowBlacklisted phrase (1): stackoverflow.com/helpProbably link only (1): Low length (2): No code block (0.5): Single line (0.5): High reputation (-2):
Posted by: philipxy
Date: 2025-11-08 17:56:49
Score: 7
🚩
Natty:
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 needBlacklisted phrase (1): stackoverflowProbably link only (1): Low length (1): No code block (0.5): User mentioned (1): @BugFinderSelf-answer (0.5): Single line (0.5): Low reputation (1):
Posted by: robotsnh
Date: 2025-11-08 17:33:43
Score: 5
Natty:
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
Date: 2025-11-08 16:06:21
Score: 4.5
Natty:
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
Date: 2025-11-08 15:21:10
Score: 4.5
Natty:
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
Date: 2025-11-08 14:26:56
Score: 5
Natty:
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 giveLow 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
Date: 2025-11-08 13:56:48
Score: 6
Natty:
Can someone give me an example when dynamic_cast is not broken?
Reasons:
RegEx Blacklisted phrase (2.5): Can someone give meLow 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
Date: 2025-11-08 10:00:46
Score: 4
Natty:
Reasons:
Probably link only (1): Low length (1.5): No code block (0.5): Low reputation (1):
Posted by: Yash Kavaiya
Date: 2025-11-08 09:45:38
Score: 6
🚩
Natty:
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 issueProbably 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
Date: 2025-11-08 09:44:33
Score: 6
🚩
Natty:
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 issueProbably 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
Date: 2025-11-08 09:42:28
Score: 6
🚩
Natty:
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 issueProbably 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
Date: 2025-11-08 08:45:13
Score: 5.5
Natty:
@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): @wohlstadSelf-answer (0.5): Single line (0.5): Looks like a comment (1): Low reputation (0.5):
Posted by: Raymond
Date: 2025-11-08 07:21:55
Score: 4.5
Natty:
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
Date: 2025-11-08 07:21:55
Score: 4.5
Natty:
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): reputationContains signature (1): No code block (0.5): Single line (0.5): Low reputation (1):
Posted by: Big Limos
Date: 2025-11-08 04:50:23
Score: 4.5
Natty:
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 youBlacklisted phrase (0.5): ThanksLow length (1): No code block (0.5): User mentioned (1): @kitt51Self-answer (0.5): Single line (0.5):
Posted by: April_Nara
Date: 2025-11-08 04:31:18
Score: 5
Natty:
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 someLow 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
Date: 2025-11-08 04:03:12
Score: 6
Natty:
Can you post a link to the problem?
Reasons:
RegEx Blacklisted phrase (2.5): Can you postLow 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
Post content sourced from the Stack Exchange . Content is preserved on this site only for reporting and analytics purposes.