79822131

Date: 2025-11-17 09:58:30
Score: 2.5
Natty:
Report link

I'm not sure I follow you. Did I say something which does not make sense? Will try again. I wish to read once from my topic and populate two stores inside my DataProcessor. I find it strange having to manually add myStoreBuilder and myStoreBuilder2 using addStateStore(..) but then only reference one of them when setting up my GlobalStore afterwards. What are the implications of this, and is there another way where I do not have to invoke addStateStore(..) twice, but instead provide a list of store builders when invoking addGlobalStore?

Let me know if my use-case is not clear enough. Thanks!

EDIT(Tried to explain it better in the main post)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Andreas10001

79822127

Date: 2025-11-17 09:58:30
Score: 2.5
Natty:
Report link

That has worked perfectly. the date is being imported from spreadsheet so the only field I was confident on have data was the ID field as a quick look through it showed blanks and duplicates in other fields

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

79822124

Date: 2025-11-17 09:55:29
Score: 2
Natty:
Report link

This appears to be a recent bug in VSCode https://github.com/microsoft/vscode/issues/277174.

The second column is the "Terminal Tabs View" and should be hidden if only one terminal is open.

As a workaround you can drag-and-drop the Terminal Tabs Vew to another location be hidden again. After the first drag operation it remains hidden thereafter.

Thanks to jonsharpe for pointing me in the right direction.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Paul D

79822121

Date: 2025-11-17 09:53:29
Score: 1
Natty:
Report link

So basically, Snapchat doesn’t really send snaps directly from one phone to another. 😅 What happens is your snap first goes up to Snapchat’s servers. From there, it gets sent to the other person’s device. This setup helps them manage things like disappearing messages, notifications, and keeping everything secure. iOS and Android just have some built-in tricks to make it faster, but the server is the middleman every time.

If you’re curious about how Snapchat tracks activity and message delivery between devices, you can check out tools like OnlyTraced that show how Snapchat data and account interactions are monitored. It’s kinda cool to see what info is being sent back and forth behind the scenes.

Hope that clears it up! 👍

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

79822120

Date: 2025-11-17 09:52:28
Score: 7
Natty:
Report link

@PepijnKramer:

use interfaces/dependency injection and inversion of control to keep your design as loosely coupled as possible

I think the initial design above does use dependency injection? Or maybe I misunderstand what that means. The derived FeatureDefaultImpl class uses a constructor to allow the settings class to be injected in, but FeatureBase and SettingsBase are already uncoupled. Could you clarify what you meant?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you clarify what you
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @PepijnKramer
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: josh_eime

79822117

Date: 2025-11-17 09:50:27
Score: 4.5
Natty: 5
Report link

I'm wondering if there is a way to pass the parent pipeline ID as an input instead of a variable?

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

79822113

Date: 2025-11-17 09:47:26
Score: 10.5
Natty:
Report link

@Swift Can you suggest a better name?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you suggest
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Swift
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: PlsHelp

79822111

Date: 2025-11-17 09:46:25
Score: 0.5
Natty:
Report link

Try this:

  1. Flutter clean

  2. Flutter pub get

  3. Flutter run

Alternatively: flutter create . to rerun the android configurations

Reasons:
  • Whitelisted phrase (-2): Try this:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Elijah Agbedam

79822109

Date: 2025-11-17 09:44:25
Score: 1
Natty:
Report link

My PC is set to a Japanese environment, so please take that into consideration.

Microsoft® Word for Microsoft 365 MSO (バージョン 2510 ビルド 16.0.19328.20190) 64 ビット

Since I am using MatchWildcards, the Excel sheet is assumed to contain data as shown below.

Excel Example

A B
------------------ ------------
[Hh]yla [Cc]inerea Hyla cinerea
[Bb]ig [Aa]pple Big apple
ABcd Abcd

In the code in question, the following error occurred:
-----------------------------------

実行時エラー'6182’:

MatchPhrase, MatchWildcards, MatchSoundsLike, MatchAllWordForms,

MatchFuzzy パラメーターは、同時に True に設定することはできません。

-----------------------------------

(1) I am changing the properties of Find for this purpose.(MatchFuzzy = False)
(2)I modified the processing after With Selection.Find.

Changing rng.Text inside a Do While loop results in an infinite loop, so I stored the searched ranges in an array and changed each Range's properties after the search was completed.  

before image

enter image description here

after image

enter image description here

code

Dim myarray_range(1000) As Range  
Dim cnt_ranges As Long  
cnt_ranges = 0  
With Selection.Find  
    .Forward = True  
    .MatchFuzzy = False  
    .MatchWildcards = True  
    .Wrap = wdFindStop  
    .MatchCase = False  
    Do While .Execute(FindText:=myarray(i, 1)) = True  
        Set myarray_range(cnt_ranges) = Selection.Range  
        cnt_ranges = cnt_ranges + 1  
        Debug.Print Selection.Range.Text  
    Loop  
End With  
Dim j As Long  
For j = 0 To cnt_ranges - 1  
    With myarray_range(j)  
        .Font.Italic = True  
        .Font.Bold = True  
        .Font.Color = RGB(200, 187, 0)  
        .Font.Name = "Times New Roman"  
        '.Text = UCase(Left(.Text, 1)) & LCase(Mid(.Text, 2))  
        .Text = myarray(i, 2)  
    End With  
Next j
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Filler text (0.5): ------------------
  • Filler text (0): ------------
  • Filler text (0): -----------------------------------
  • Filler text (0): -----------------------------------
  • Low reputation (1):
Posted by: motosann

79822101

Date: 2025-11-17 09:40:23
Score: 5.5
Natty:
Report link

@jasonharper Maybe I can tweak something. I need to know what tool to target to.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @jasonharper
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
Posted by: jorge is not ai

79822090

Date: 2025-11-17 09:30:20
Score: 2
Natty:
Report link

How often do you need to run this script? It sounds to me like a one-time job. In that case I don't see a reason to optimize anything.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How of
  • High reputation (-1):
Posted by: Jeyekomon

79822083

Date: 2025-11-17 09:24:19
Score: 4
Natty:
Report link

What IDE tool are you using? Eclipse, Netbeans, IDEA?

Eclipse (Dynamic Web Project)

What operating platform are you using? Windows? Linux?

 Windows

Does the index.html in your original description correspond to login.html in your directory tree? Or index.jsp?

It corresponds to login.html
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Vegada Deep

79822078

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

How fast would you like to process those 100,000 files?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How
  • High reputation (-1):
Posted by: Jeyekomon

79822075

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

Add init=False to exclude it from __init__:

id: Mapped[int] = mapped_column(primary_key=True, init=False)

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

79822070

Date: 2025-11-17 09:09:14
Score: 0.5
Natty:
Report link

It is completely legal for two different people named "John Smith" to study in the same year on the same university. The table should have had unique person IDs in the first place. There is no reliable way to recreate them.

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

79822061

Date: 2025-11-17 09:03:13
Score: 3
Natty:
Report link

Thank you @Nas_T, I’ve checked DigiCert’s offering, but so far I haven’t found a plan that fits our scenario at a cost comparable to traditional file-based code signing certificates (PFX), which were only a few hundred euros per year. The cloud signing options seem significantly more expensive, especially when considering frequent builds.
Regarding the AWS KMS + jsign approach, @tresf thank you for sharing that experience, it could be very valuable. Our pipelines run on Azure DevOps, so we probably won’t adopt AWS directly, but if you have any lessons learned that would apply even outside AWS, I would really appreciate it.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Nas_T
  • User mentioned (0): @tresf
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: jeanie77

79822059

Date: 2025-11-17 09:01:12
Score: 3.5
Natty:
Report link

is there no way to fix this, i got really annoy with this as my prj has a lot of OnGUI to check line render , like, it can cause unity layout to crash out

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is there
  • Low reputation (1):
Posted by: Dũng

79822056

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

@Lex Li, you mentioned Microsoft Trusted Signing: I’m not familiar with it yet, but I will look into it. Does Trusted Signing fully replace the need for purchasing an EV certificate from a CA, or does it rely on an underlying certificate issued by a partner CA? If anyone has experience with Trusted Signing in CI/CD pipelines, especially for .NET assemblies, VSTO add-ins, or installer signing, I’d be interested in hearing how it compares.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Lex
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: jeanie77

79822052

Date: 2025-11-17 08:50:09
Score: 1
Natty:
Report link

Note that the project directory tree structure you posted is incorrect; please refer to the content I posted.

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

79822045

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

To replace the HTML of some part of the page with new HTML that has been generated on the server, please use a region with data-wp-router-region and the actions.navigate action from the @wordpress/interactivity-router package.

More info on the docs: https://developer.wordpress.org/block-editor/reference-guides/packages/packages-interactivity-router/

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

79822043

Date: 2025-11-17 08:41:07
Score: 2
Natty:
Report link
var oAction = oModel.bindContext("/read_file(...)", oBindingContext);
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: York Chen

79822041

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

Looking at your sequence diagram, you're actually correct - there are three valid traces, not just two!

Let me explain why:

Valid Traces

(m1!, m2?, m2!, m2?) - left:Client sends m1, Server receives it, Server sends m2 to right:Client, right:Client receives it

(m2!, m1!, m1?, m2?) - Server sends m2 first, then left:Client sends m1, Server receives m1, then right:Client receives m2

(m1!, m2!, m1?, m2?) - left:Client sends m1, Server sends m2, Server receives m1, right:Client receives m2 ✓ This is valid!

Why the third trace is valid

In asynchronous communication (which is typical for sequence diagrams with send/receive notation using ! and ?):

m1! = left:Client sends message m1 (doesn't require immediate receipt)

m2! = Server sends message m2 (doesn't require immediate receipt)

m1? = Server receives message m1

m2? = right:Client receives message m2

Messages can be "in flight" - sent but not yet received. So:

left:Client can send m1 (m1!)

Server can send m2 before receiving m1 (m2!)

Server then receives m1 (m1?)

right:Client receives m2 (m2?)

This is perfectly valid in asynchronous messaging systems where sends are non-blocking and messages can overtake each other or be processed in different orders.

Your book may have overlooked this trace or may be making an unstated assumption about synchronous behavior. But based on standard sequence diagram semantics with asynchronous messaging, you found a valid third trace.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: chunlin yao

79822038

Date: 2025-11-17 08:35:06
Score: 0.5
Natty:
Report link

Except a possibly increased compilation time, I don't see an issue.

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

79822033

Date: 2025-11-17 08:28:04
Score: 4
Natty:
Report link

how exactly would you think to "populate both" without "populating both"?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): how
  • High reputation (-1):
Posted by: Stultuske

79822032

Date: 2025-11-17 08:28:04
Score: 4
Natty: 4.5
Report link

So should we or should we not await params? I'm confused

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

79822026

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

Starting with version 2.262.0 (or so), Flow indeed stopped including standard libraires.
From now on, you have to use flow-typed.

Useful links:
https://flow-typed.github.io/flow-typed/#/
https://flow.org/blog/2016/10/13/Flow-Typed/

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

79822023

Date: 2025-11-17 08:23:02
Score: 2.5
Natty:
Report link

I somehow managed to make it work with

CONTENT     CLOB PATH '<path>/content',
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pierrick Dupas

79822020

Date: 2025-11-17 08:22:01
Score: 4
Natty:
Report link

I’ve just made a tool which works well on Windows PowerShell. You can install it easily and use it right away. Welcome to try it out — and feel free to leave any valuable suggestions!🤩👐🏻

here is link:Alpaca10086zyys/TreeView-PS

Reasons:
  • RegEx Blacklisted phrase (2): any valuable suggestions
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yue Zhang

79822019

Date: 2025-11-17 08:19:00
Score: 6 🚩
Natty: 5
Report link

This helped resolve the issue on my side. Thanks for sharing.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MMuzammil

79822012

Date: 2025-11-17 08:02:56
Score: 0.5
Natty:
Report link

This is probably overly pedantic, but I want to add something to the previous answers: yes, class variables are usually initialized with zero values, but not when they are final. For final variables, you must provide an initializer or initialize them in all constructors, as stated in Java Language Specification 8.3.1.2 (https://docs.oracle.com/javase/specs/jls/se21/html/jls-8.html#jls-8.3.1.2):

A blank final instance variable must be definitely assigned and moreover not definitely unassigned at the end of every constructor of the class in which it is declared, or a compile-time error occurs.

For example, the following code does not compile:

class A {
    final int x;
}
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Fizz Areh

79822007

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

Just use a textarea with align-content: center

textarea {
  align-content: center;
  width: 200px;
  height: 100px;
  background: #f5f5f5;
  border: 1px solid black;
  padding: 5px;
}
<textarea placeholder="I am centered vertically."></textarea>

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

79822004

Date: 2025-11-17 07:48:53
Score: 1.5
Natty:
Report link

In my case I have replaced docker-compose command by docker compose to stop relay on the unwanted binary

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Pi Home Server

79821999

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

One example is when Makefile has newline (\).

OBJECTS = main.o \
        program_1.o \

CFLAGS += -Werror

The Makefile after program_1.o is expecting another target object file because of \n. Remove this and you are good to go.

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

79821996

Date: 2025-11-17 07:42:51
Score: 3
Natty:
Report link

It is unclear whether your directory is called "asset", or "assets".

i am really sorry its a Spealing Mistake it's : assets

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

79821993

Date: 2025-11-17 07:36:49
Score: 0.5
Natty:
Report link

It is unclear whether your directory is called "asset", or "assets".

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

79821991

Date: 2025-11-17 07:32:48
Score: 2.5
Natty:
Report link

I'm having the same issue.

The problem is that libssl-dev is for Linux, not for MingW.

For some libraries you could point to Linux included as mentioned in other answers but you risk that it violate ABI risking weird bugs and BTW it will fail during linking.

You need to have a MingW version, either using a Ubuntu package (I currently cannot find it) or compile OpenSSL from sources.

Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): I'm having the same issue
  • Low reputation (0.5):
Posted by: Frediano Ziglio

79821987

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

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

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

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

79821986

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

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

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

Hope this helps!

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

79821984

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

79821983

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

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

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

79821977

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

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

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

79821976

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

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

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

79821973

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

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

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

79821964

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

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

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

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

79821950

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

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

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

79821949

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

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

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

79821948

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

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

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

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

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

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

79821946

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

#   insteadOf = https://github.com/

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

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

79821942

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

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

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

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

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

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

Content of index.html:

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

79821938

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

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

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

79821937

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

We are using Laravel 5.19

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

79821922

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

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

android:searchHintIcon="@drawable/ic_search_vector"

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

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

79821917

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

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

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

79821911

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

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

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

79821909

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

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

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

79821907

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

it definitely looks possible using this string,

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

this is right out of their User Manual,

CHAPTER 26

Image

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

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

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

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

26.1 Methods

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

Parameters

• href (string) – hyperlink to the image resource

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

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

• attribs (dict) – additional SVG attributes

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

79821905

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

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

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

79821903

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

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

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

79821897

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

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

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

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

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

79821895

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

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

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

79821893

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

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

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

79821891

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

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

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

79821879

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

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

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

79821875

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

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

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

79821873

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

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

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

single line works correctly

type ABC = string;

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

export const A = 5;

multi-line broken

type ABC = string;

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

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

79821869

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

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

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

79821863

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

Blackmagic Camera_3.0.1.0012_APKPure.xapk

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

2 Apl tidak terpasang

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

79821849

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

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

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

79821828

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

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

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

79821825

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

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

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

79821822

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

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

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

79821821

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

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

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

79821817

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

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

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

79821812

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

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

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

Download and open it

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

Then it will be installed

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

79821809

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

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

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

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

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

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

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

79821806

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

Fixed that using this command:

mvn clean install

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

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

79821801

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

This is pretty much how Spring behaves in tests.

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

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

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

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

79821793

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

An Good Script for Analyse your APK File

Check ELF Alignment Script

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

79821791

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

added primary method I'm currently using to parse URLs

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

79821777

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

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

fruit = 'apple'
index = -1

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

79821755

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

Wish I could up vote you twice!

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

79821745

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

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

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

79821744

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

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

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

79821743

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

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

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

79821739

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

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

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

79821734

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

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

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

79821731

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

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

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

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

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

79821730

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

The setting is called View: Toggle Chat:

enter image description here

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

79821728

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

This -NoWait parameter did it for me

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

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

79821723

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

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

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

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

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

79821708

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

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

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

79821694

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

Example

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

btn.reporting=Reporting

btn.excel=Export Excel

max.nbr.line=12

Inside resources directory, you create META-INF directory.

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

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


enter image description here

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

79821691

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

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

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

79821684

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

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

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

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

79821682

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

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

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

79821681

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

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

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

79821669

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

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

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

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

So...

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

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

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

79821666

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

Private oldAddress As String

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

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

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

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

79821649

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

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

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

79821641

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

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

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