79816020

Date: 2025-11-10 19:55:33
Score: 1
Natty:
Report link

I don't really understand what you're trying to do and how it relates to Vim's Python options.

I'd encourage you to come up with a minimal reproducible example that shows what you're trying to accomplish and how it fails. At this point, you'll most likely have a question that's fit to be posted as a "traditional" Q&A and I'd also encourage you to do so. Delete this question once you'll have posted it.

If you manage to post a little bit of code with expected and actual behaviors, this community should be able to come up with an answer that will be useful for you as well as future readers.

Having said that, inheriting a virtual environment from the calling shell (and thus relying that somebody activated it outside of Vim) does not seem like a good idea to me. I'd take measures to make sure it works no matter from what environment Vim was called.

BTW, I'm glad you found my answer to the other question useful. Did you notice there's another answer by phd that seems to be close to what you want to accomplish?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Friedrich

79816018

Date: 2025-11-10 19:52:32
Score: 1
Natty:
Report link

You can just format with high precision and cut the string to the desired number of characters (Python 3):

f"{value:.6f}"[:8]

Note that it doesn't handle overflow well; in this case numbers that require more than 8 digits.

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

79816014

Date: 2025-11-10 19:45:29
Score: 1.5
Natty:
Report link

I was able to do this using the selectionColumnStyle prop!

The column will not be visible if you provide display: 'none' as the style to this prop.

<DataTable
    //...other props
    selectedRecords={mySelectedRecords}
    selectionColumnStyle={{ display: 'none' }}
/>

and you still get the nice highlighting

first row of DataTable showing no checkbox

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ngood97

79816010

Date: 2025-11-10 19:43:29
Score: 1.5
Natty:
Report link

Angular's zoneless change detection relies on Signals to inform the component when to redraw.

Implement HousingLocationList as a Signal and see if that works.

https://angular.dev/guide/signals

Reasons:
  • Low length (1):
  • No code block (0.5):
Posted by: Ryan Sandberg

79816008

Date: 2025-11-10 19:39:27
Score: 2
Natty:
Report link

When using @lru_cache avoid returning mutable, i.e. use tuples instead of lists.
E.g.


from functools import lru_cache

@lru_cache
def fib_lru(n):
    # Fibonacci sequence
    if n < 2:
        res = [1, 1]
    else:
        res = fib_lru(n - 1)
        res.append(res[-1] + res[-2])
    return res

fib_lru(3)   # [1, 1, 2, 3]
fib_lru(9)   # [1, 1, 2, 3, 5, 8, 13, 21, 34, 55]
fib_lru(3)   # [1, 1, 2, 3, 5, 8, 13, 21, 34, 55]    ! oops!  previous state returned :(
fib_lru(11)  # [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144]
fib_lru(9)   # [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144]   ! oops!  previous state returned :(


# fix it by replacing lists with tuples
@lru_cache
def fib_lru_t(n):
    if n < 2:
        res = (1, 1)
    else:
        res = fib_lru_t(n - 1)
        res = *res, res[-1] + res[-2]
    return res

fib_lru_t(3)   # (1, 1, 2, 3)
fib_lru_t(9)   # (1, 1, 2, 3, 5, 8, 13, 21, 34, 55)
fib_lru_t(3)   # (1, 1, 2, 3)    OK!
fib_lru_t(11)  # (1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144)
fib_lru_t(9)   # (1, 1, 2, 3, 5, 8, 13, 21, 34, 55)    OK!

Btw using `lru_cache` makes a real difference:

%timeit fib(100)        
# 9.49  μs  ± 151 ns per loop (mean ± std. dev. of 7 runs, 100,000 loops each)
%timeit fib_lru_t(100)  
# 50.1 _ns_ ± 0.464 ns per loop (mean ± std. dev. of 7 runs, 10,000,000 loops each)
Reasons:
  • Blacklisted phrase (1): :(
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @lru_cache
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: RCanDo

79816005

Date: 2025-11-10 19:32:26
Score: 2.5
Natty:
Report link

This is a perfect candidate for the techniques/technology detailed in my article MongoDB Text Search: Substring Pattern Matching Including Regex and Wildcard, Use Search Instead (Part 3) - we have just recently released (formerly only Atlas) Search and Vector Search into Community and available also for Enterprise. You can control the indexing and querying in very precise and scalable ways.

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

79816004

Date: 2025-11-10 19:32:26
Score: 1.5
Natty:
Report link
when I use taskkill.exe the system tells me -error invalid query-
my wish is to stop a program called Gif Viewer that uses gif animation from my application
i think that program activates a process that cannot be stopped by this command.
am i right
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Predrag Živković

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

79815991

Date: 2025-11-10 19:13:20
Score: 1
Natty:
Report link

You can just read the input, convert it to an integer and use it directly as the column name.
Here is a simple example:

df = pd.DataFrame({1: [10, 20, 30],2: [40, 50, 60]})

x = int(input("enter your value here: ")) 

A = df[x]

print(A)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kasra Khaksar

79815990

Date: 2025-11-10 19:09:19
Score: 2.5
Natty:
Report link

You made may day. I was was searching aroud and finally got the solution with this "tick" for the "Override local DNS." After switching on (what is not obvious for me) and adding local domain name, holding pi-hole DNS, to local name (ex: local_name.domain) everything is working as expected.

Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: liutas4x4

79815976

Date: 2025-11-10 18:49:14
Score: 0.5
Natty:
Report link

It won't let me comment on the answer that worked for me, but I need to add context.

If you have "type": "commonjs", in your package.json, remove it helped me with same error

I've been trying to learn webpack lately and keep running into the same error in every tutorial. The difference is that with npm init -y the package.json file now adds a default "type": "commonjs" ; I guess it didn't before. I still don't understand why there are 3 states to this setting when declaring it only gives you 2 options, but "null" or not having the setting is the winner.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1): It won't let me comment
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Josh Brooker

79815970

Date: 2025-11-10 18:42:12
Score: 3.5
Natty:
Report link

https://github.com/huukhuong/react-native-zebra-rfid-barcode

For me its works! I already one solution to rfid thats work, but now i find this library with both.

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

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

79815965

Date: 2025-11-10 18:36:10
Score: 3
Natty:
Report link

Can I change the size of the glyph?

I can set the size of the text contained in the bullet point but not the size of the bullet itself and this is driving me crazy

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can I
  • Low reputation (0.5):
Posted by: Apache81

79815942

Date: 2025-11-10 18:01:01
Score: 3
Natty:
Report link

Sorry, but I don't get the intention of your post. Why not create a github repo with a readme documentation?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: herrstrietzel

79815933

Date: 2025-11-10 17:54:59
Score: 3
Natty:
Report link

I was getting the same error when replacing some MyISAM tables. I found that running FLUSH TABLE db.table fixed the issue.

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

79815931

Date: 2025-11-10 17:52:59
Score: 2
Natty:
Report link

This link explains why this happens only with some email marketing campaigns: https://github.com/DataDog/browser-sdk/issues/2715#issuecomment-2359950290

We've found that these always seem to be coming from Azure, and the initial links being followed seem to be variations of links that were sent out in emails.

...

We think that what's happening is that an email scanner, possibly part of Outlook, is doing some sort of pre-check of links

Reasons:
  • Blacklisted phrase (1): This link
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: alvaro avila

79815929

Date: 2025-11-10 17:49:58
Score: 2.5
Natty:
Report link

Just adding as an answer that I when I got this error, I cleaned and built my solution and it resolved the error. Try a Clean then Build before more complicated steps.

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

79815917

Date: 2025-11-10 17:31:53
Score: 3.5
Natty:
Report link

It would seem there is an issues with my .js for Font Awesome. For now I'll just use the free script links until I can solve it.

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

79815916

Date: 2025-11-10 17:26:52
Score: 2.5
Natty:
Report link

A 500 error usually means something’s off on the server side, not the fetch itself double-check your PHP for unexpected output or missing headers. For testing and experimenting safely with async calls, I’ve found TD777 really helpful to simulate requests and debug responses before hitting the live API.

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

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

79815910

Date: 2025-11-10 17:16:48
Score: 1
Natty:
Report link

I also faced the same 503 error in my all the websites, I uninstalled and reinstalled the IIS web server, but it did not resolve the 503 issue, I deleted the http, WAS and WSVC3 Registry, It got suggested by Grock AI ...but it was my big mistake after deleting registry, it could not be recreated through commands, and Now I faced another issues these services are now showing missing while restarting webserver, I just left every AI suggestion behind, Just checked my all other servers to find same server OS and after trying around 50 server I got the same version OS just exported the above registry keys form this and imported in my problematic server, rebooted the server and magic was done 503 error gone. but While reinstalling webserver it recreated (i previously renamed the old file) appicationhost.config file and only 30 sites came back in IIS they were also having issues like SSL binding, coding issues but after minor changes I made 100 website live, but my client got happy said, no issue I will manage with others, important are live that is enough.

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

79815903

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

cPanel’s Exim mail server is not a full outbound relay resolver; if a domain exists locally, Exim will try and deliver locally (or reject if no mailbox exists). It does not consult external MX records when it believes the domain is hosted locally.

Both domains exist in cPanel (so Exm sees them as local).
Cloudflare handles incoming mail routing (MX record)

Outbound email is being sent through the same instance, resulting in "550 No Such User" because Exim tried local delivery before consulting the MX for the recipient domain.

To fix this, the email server must treat those domains as remote for delivery, even though they are hosted on the same server.

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

79815900

Date: 2025-11-10 17:06:45
Score: 2
Natty:
Report link

Thank you @ColinMurphy for commenting the answer above. Removing line 13 from faust-tutorial-blueprint.json fixed the issue. Once that line was removed, I was able to npm run wp-dev and install those plugins through the wordpress UI.

I believe this was a Windows 11 problem, but have not confirmed one way or the other.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • User mentioned (1): @ColinMurphy
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jillian Hoenig

79815885

Date: 2025-11-10 16:49:40
Score: 0.5
Natty:
Report link

How to import a local config file (like lint-staged.config.js) in all Nx apps

If you want to use the same config file (for example lint-staged.config.js) in different apps inside your Nx workspace, you can create a TypeScript path alias.

  1. Open your tsconfig.base.json (or tsconfig.base.ts if using TypeScript config).

  2. Inside compilerOptions, add a new alias under "paths":

{
  "compilerOptions": {
    "paths": {
      "@project-name/lint-config": ["lint-staged.config.js"]
      // other existing paths...
    }
  }
}
  1. Now you can import this file from anywhere in your Nx workspace:
import rootConfig from '@project-name/lint-config';

Nx and TypeScript will automatically resolve the alias to your config file. If it doesn’t work right away, restart your TypeScript server or rebuild the project.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Smirnov Evgeny

79815881

Date: 2025-11-10 16:46:39
Score: 1
Natty:
Report link

On github you'll find 2 official Android samples

# 1 https://github.com/android/location-samples/tree/main/LocationUpdatesBackgroundKotlin (since Aug 23, 2023 outdated)

#2 https://github.com/android/platform-samples/tree/main/samples/location

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

79815879

Date: 2025-11-10 16:43:38
Score: 3.5
Natty:
Report link

Simple CNAME redirects are not allowed for APEX domains.

See https://serverfault.com/questions/613829/why-cant-a-cname-record-be-used-at-the-apex-aka-root-of-a-domain

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

79815875

Date: 2025-11-10 16:39:37
Score: 1
Natty:
Report link

You should use a For Each ws In ThisWorkbook.Worksheets loop, skip the report sheet, and call your existing logic inside it.

For Each ws In ThisWorkbook.Worksheets
    If ws.Name <> ActiveSheet.Name Then Call LoadDataFor(ws)
Next ws
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tuhin Shaikh

79815869

Date: 2025-11-10 16:36:36
Score: 3
Natty:
Report link

Found the solution now:

        public enum EnabTextEnum {No, Yes};
        private EnabTextEnum enabTextEnum;
        [Description("Determines whether the toggle switch's text is hidden or not"), Category("Appearance"), DefaultValue("No"), Browsable(true)]
        public EnabTextEnum EnableText
        {
            set { enabTextEnum = value; }
            get { return enabTextEnum; } 
        }

Now I need to add some action for when the property is changed in the designer. Not sure where to put the code. Into the user control class, as an event? Directly into the property's code?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: MaSta

79815867

Date: 2025-11-10 16:34:36
Score: 1
Natty:
Report link

How do I properly compare a string date with a datetime object in Python?

You can't; that's what the error is telling you.

Instead, convert the strings to datetime. See How do I parse an ISO 8601-formatted date and time? For non-ISO formats, see Convert string "Jun 1 2005 1:33PM" into datetime

Reasons:
  • Blacklisted phrase (1): How do I
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How do I
  • High reputation (-2):
Posted by: wjandrea

79815854

Date: 2025-11-10 16:24:33
Score: 3
Natty:
Report link

Try wrapping all your content in a container div, apply the scale to that container, and keep any fixed elements outside of it.

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

79815837

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

There are 360keys triggers VLC to show spherical video as spherical video. But they stored in exif data. And, as I figure out, exif and metadata is different things. And, ffmpeg can't deal with exif at all.

And, yes, EXIFTOOL)

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

79815836

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

Seems like the locking can't handle the large number of files. Seems to work better to break it into chunks. For Unreal running it per sub directory seems to work.

for /F %i in ('dir /ad /b /s') do p4 -r 5 -v net.maxwait=60 reconcile -f -m -I "%i\*" >>p4rec.txt 2>&1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user31852028

79815824

Date: 2025-11-10 16:03:27
Score: 0.5
Natty:
Report link

The CPU spikes occur because increasing maxEntriesLocalHeap raises memory pressure and makes eviction (LRU management) more expensive. When caches constantly hit their limits, Ehcache must frequently scan and evict entries, causing higher GC activity and CPU usage. Splitting caches adds overhead from multiple eviction threads and metadata management, making the spikes more visible and the application less responsive.

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

79815821

Date: 2025-11-10 15:59:26
Score: 3.5
Natty:
Report link

that makes sense, I was afraid spawning a subprocess from inside the python program would be considered bad practice

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

79815820

Date: 2025-11-10 15:57:25
Score: 1
Natty:
Report link

That's an amazing point @Alexander Wiklund I agree, I think I'll just pass all the refs.

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

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

79815807

Date: 2025-11-10 15:45:21
Score: 0.5
Natty:
Report link

Ultimately, I took the advice from one of the comments, and just queried the HTML of the page.

// Directly check for the existence of .ag-filter-wrapper
const filterDialog = document.querySelector(".ag-filter-wrapper");
if (filterDialog) {
  console.log("Filter dialog is open, delaying data reload.");
  return;
}

This accomplished what I needed, which was halting my update routine if the filter was still open.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Sean Duggan

79815795

Date: 2025-11-10 15:34:18
Score: 2.5
Natty:
Report link

There is now a restart button under the database Maintenance tab: enter image description here

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

79815794

Date: 2025-11-10 15:34:18
Score: 1
Natty:
Report link

I think this could be the answer : https://serverfault.com/questions/648262/filesmatch-configuration-to-restrict-file-extensions-served

It says that the FileMatch is before the DirectoryIndex so you have to add your root to the allowed strings

<FilesMatch "(^$)|^.*\.(css|html?|js|pdf|txt|gif|ico|jpe?g|png|pl|php|json|woff|woff2|eot|svg|map)$">
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: François Breton

79815782

Date: 2025-11-10 15:24:14
Score: 2
Natty:
Report link

For those looking for this in the future using neovim. Pasting with shift+p will preserve the original copied text when pasting in visual mode.

May have not been a thing at the time of this post, but it works now.

version: NVIM v0.11.3

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

79815775

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

@Arshad What happens if the URL never contains "example"? The Assert is never reached... so why even have it? Also, you have .assertTrue() but your assert comment is negative which makes no sense... it contradicts the assert.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Arshad
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: JeffC

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

79815765

Date: 2025-11-10 15:08:09
Score: 3
Natty:
Report link

I'm running windows 10. I have the following extensions added to VSC.

Code Runner
HTML CSS SUPPORT
JavaScript(ES6)
Live Preview
Live Server
PHP Server (brapifra)
PHP Intelephense

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

79815764

Date: 2025-11-10 15:08:09
Score: 1
Natty:
Report link

After using Redux in React, I wasn't a fan - it quickly got out of hand - centralized state management can become cumbersome very quickly in my experience.

I came across your question while searching for state management options for Blazor. I found one that I'm going to test out, it looks to have a React Context kind of feel to it.

b-state:
https://github.com/markjackmilian/b-state

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Daedalusℂodes

79815761

Date: 2025-11-10 15:06:09
Score: 1
Natty:
Report link

After some more messing around it seems like the C# by Microsoft extension was causing the issue.
Reading the extension i saw this:

How to use OmniSharp?

If you don’t want to take advantage of the great Language Server features, you can revert back to using OmniSharp by going to the Extension settings and setting dotnet.server.useOmnisharp to true. Next, uninstall or disable C# Dev Kit. Finally, restart VS Code for this to take effect.

After I did that it no longer caused the vars to be replaced.

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

79815759

Date: 2025-11-10 15:06:09
Score: 3
Natty:
Report link

Can you explain why these automated tests are sending your program SIGQUIT in the first place, please? Normally, automated requests for a process to shut down cleanly as soon as possible should use SIGTERM, not SIGQUIT.

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

79815757

Date: 2025-11-10 15:05:08
Score: 3.5
Natty:
Report link

Just wanted to say 12 years later, I am now dealing with this issue.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: kiran bailey-stokes

79815752

Date: 2025-11-10 15:00:06
Score: 1.5
Natty:
Report link
# Instale antes (se ainda não tiver):
# pip install wordcloud matplotlib pillow numpy requests

from wordcloud import WordCloud
import matplotlib.pyplot as plt
from matplotlib import font_manager
import numpy as np
from PIL import Image
import requests
from io import BytesIO

# Dicionário de palavras com pesos
palavras = {
    "EDUCAÇÃO
Reasons:
  • Blacklisted phrase (1): não
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: romildo guimaraes

79815750

Date: 2025-11-10 15:00:06
Score: 1.5
Natty:
Report link

Installer Process Explorer

Lancer Process Explorer en administration

Chercher le process bloquée

. Kill Process Tree.

Find Handle → chercher le DLL bloqué → Close Handle.

Désactiver Hot Reload dans Rider.

Dans Rider: Settings → Debugger → activer “Detach instead of Kill”.

. Stopper le debug avec “Detach”, pas le carré rouge.

Exécuter taskkill /PID <id> /F /T si nécessaire.

. Si encore blo

qué: utiliser pskill <pid>.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ayoub Gmati

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

79815744

Date: 2025-11-10 14:50:03
Score: 0.5
Natty:
Report link

I just encountered this one, running a project that sit almost a year, I'm running 8.3 and having this:
zsh: segmentation fault php artisan migrate:fresh --seed. Fixed by changing my php version from 8.3 to 8.4.

I'm also using laravel herd, so it's much easier to switch.

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

79815738

Date: 2025-11-10 14:46:02
Score: 0.5
Natty:
Report link

I found the following JAR files in the <Eclipse_folder>/plugin directory:

com.ibm.icu_58.2.0.v20170418-1837.jar

com.ibm.icu_77.1.0.jar

I deleted com.ibm.icu_77.1.0.jar, and Eclipse started working fine for me.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shubham Patil

79815727

Date: 2025-11-10 14:37:00
Score: 3
Natty:
Report link

The problem is that I did not have permission to write to the cmi directory. So first I had to be given write permission for the cmi directory.

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

79815721

Date: 2025-11-10 14:31:58
Score: 3
Natty:
Report link

You are using the expo sdk 52 which the targetSdkVersion will be the 34.
https://docs.expo.dev/versions/v53.0.0#support-for-android-and-ios-versions
make sure that your app is using expo sdk 53 at least.

and you are configuring in the wrong way the targetSDKversion, now is in app.json
https://docs.expo.dev/versions/latest/sdk/build-properties/#example-appjson-with-config-plugin

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yure Ribeiro Felicio

79815720

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

Is the goal to prevent the generation of dumps or to prevent the premature termination of the program? Are you saying that automated tests report failure because they see a dump generated, not because the program terminated prematurely?

Reasons:
  • 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 the
  • High reputation (-2):
Posted by: Eric Postpischil

79815711

Date: 2025-11-10 14:26:57
Score: 2.5
Natty:
Report link

Ok, the fixer is back under a different name in Visual Studio version: Insiders [11201.2].
The name of the fixer is now "Add required braces for single line-control statements"

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

79815703

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

It might be that you also need the --no-kill=off option. From the man page:

Do not automatically terminate a job if one of the nodes it has been allocated fails.

Tasks launched using this option will not be considered terminated (e.g. -K, --kill-on-bad-exit and -W, --wait options will have no effect upon the job step).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Antti Leppänen

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

79815687

Date: 2025-11-10 14:08:50
Score: 3.5
Natty:
Report link

disableNativeAutomation: true, if using testcafe

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

79815682

Date: 2025-11-10 14:03:48
Score: 2.5
Natty:
Report link
=SUMPRODUCT(range_of_Names="A";MONTH(range_of_dates)=MONTH(Date_Cell))

or

=SUM((range_of_Names="A")*(MONTH(range_of_dates)=MONTH(Date_Cell)))

@Mayukh, isn't it?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: rotabor

79815671

Date: 2025-11-10 13:55:46
Score: 2.5
Natty:
Report link

$GLOBALS['TYPO3_CONF_VARS']['FE']['addRootLineFields'] .= ',description,keywords';
$TYPO3_CONF_VARS['FE']['addRootLineFields'] .= ',description,keywords';

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

79815670

Date: 2025-11-10 13:55:46
Score: 1.5
Natty:
Report link

Thank you Estus you make a fair point. In this application it is possible for the user to change the BackendContext value, and for example switch betwen looking at dev and production. Yes, I could set it as a global variable, but that does not feel to me the "React way".

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

79815665

Date: 2025-11-10 13:52:46
Score: 1
Natty:
Report link

You can try to solve this using the split() function to tokenize both AttributeMask (by commas) and ChangeData (by tildes). Then, apply regexp functions to extract only the elements where AttributeMask contains '10049', and match them with the corresponding value from ChangeData based on position.

I leave you here some useful documentation:

Hope this helps!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: bklein

79815664

Date: 2025-11-10 13:51:45
Score: 2
Natty:
Report link

Thanks for the suggestion! I get that SPAs aren’t the best for SEO, so using an SSG framework like Next.js, Gatsby, or Remix makes sense. Since my app already uses react-router-dom, I’ll check out the nasa-gcn/remix-seo package; it seems like an easy way to handle SEO. Really appreciate the tip about automatic sitemap generation too!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sameera Herath

79815663

Date: 2025-11-10 13:49:45
Score: 0.5
Natty:
Report link

Fix for provisioning profile and certificate issue causing CodeSign failure

I've encountered a provisioning profile error and tried multiple times to create and install certificates manually, but the issue remain as same.

What worked for me was:

  1. Open Xcode → Settings → Accounts and select your team.
  2. Click Manage Certificates.
  3. Click the “+” button in the lower-left corner and select the following certificates:
    • Apple Development
    • Apple Distribution
    • Developer ID Application
    • Developer ID Installer
Reasons:
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Md. Faysal Ahmed

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

79815656

Date: 2025-11-10 13:41:42
Score: 2
Natty:
Report link

Unfortunately I don't think this is possible as the compiler will find a common supertype such as "Any" and use it. You could have concrete functions to do this for common types that you use but the generic version will always allow type widening due to how Kotlin's type inference works.

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

79815655

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

Thank you for the comment. Adding +0 to have the regression through the origin works for the deming package but the deming package relies on the maximum likelihood estimation and not on least squares.

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

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

79815651

Date: 2025-11-10 13:37:40
Score: 2.5
Natty:
Report link

I finally found the problem...
The trigger had no problem at all. The issue came from our UPDATE script which was badly written and was updating all rows even if no modifications were done...

The trigger was then updating the "ModifiedTimeStamp" for all rows, which was perfectly right.

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

79815641

Date: 2025-11-10 13:26:37
Score: 0.5
Natty:
Report link

You are supposed to use langchain_mcp_adapters.client.MultiServerMCPClient:

from asyncio import new_event_loop # for turning async code into sync one
from langchain_mcp_adapters.client import MultiServerMCPClient

class MyAgent:
    
    def __init__(self):
        self.event_loop = new_event_loop()

        client = MultiServerMCPClient({
            "my_service": {
                "transport":"streamable_http",
                "url":"http://localhost:3000/mcp"
            },
            # other services ...
        })

        self.agent = create_react_agent(
            model=...,
            system_prompt=...,
            tools=self.event_loop.run_until_complete(client.get_tools()) = [],
            checkpointer=...
        )

This keeps a persistent reference to the resources and will open a new connection for each tool call.

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

79815635

Date: 2025-11-10 13:19:35
Score: 2.5
Natty:
Report link

@JonasH: the idea is to have a complete set of controls on a tabpage and hide certain ones, if needed. The resulting gaps should be closed by moving the remaining (visible) controls up. A solution found on the internet proposed to remove the controls instead of hiding them.

However, adding and removing them dynamically seems no problem. I imagine this to be the same like hide/unhide, but you need a reference. The approach with the tag was an alternative because reading the control's name/type that was removed recently didn't work well.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @JonasH
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: MaSta

79815631

Date: 2025-11-10 13:15:34
Score: 1
Natty:
Report link

I would do it like this:

library(ggplot2)
library(nlme)
data(Orthodont)

model <- lm(distance ~ age * Sex, data = Orthodont)
Orthodont$resid <- resid(model)

ggplot(Orthodont, aes(x = as.factor(age), y = resid, fill = Sex)) +
  geom_boxplot(alpha = 0.6) +
  coord_flip() +
  labs(
    x = "Age",
    y = "Residuals",
    title = "Residuals by Age",
    subtitle = "Colored by Sex (Equivalent to lattice::bwplot)"
  ) +
  theme_minimal() +
  scale_fill_manual(values = c("steelblue", "tomato"))

enter image description here

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

79815623

Date: 2025-11-10 13:05:31
Score: 2.5
Natty:
Report link

Search Shortcut in Figma :

Platform Shortcut
Mac ⌘ + /
Windows / Linux Ctrl + /
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Kishan Dobariya

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

79815602

Date: 2025-11-10 12:45:24
Score: 0.5
Natty:
Report link

I had this issue after updating WAMP server to 3.3.8. No error anywhere, not even in windows events, checked valid libcrypto-3-x64.dll and libssl-3-x64.dll libs - all fine. After upgrading to latest apache 2.4.65 from older 2.4.51, curl loaded properly. See related issue.

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

79815581

Date: 2025-11-10 12:27:19
Score: 1.5
Natty:
Report link

The function WindowInspector.getGlobalWindowViews() is publicly available as of SDK Q (v29).

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

79815575

Date: 2025-11-10 12:21:18
Score: 2.5
Natty:
Report link

You can skip this sentence because my answer must be 30 characters long; and the answer is:

"Shift + I"

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

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

79815557

Date: 2025-11-10 12:04:12
Score: 1.5
Natty:
Report link

You may find that MongoDB Search (via Atlas, Community, and Enterprise) can help with regex queries. Here's an article that details the various techniques and best practices: MongoDB Text Search: Substring Pattern Matching Including Regex and Wildcard, Use Search Instead (Part 3)

One idea could be to use index-time analysis to index the date patterns of interest and then be able to find those quickly (match all docs that contain such a value).

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

79815553

Date: 2025-11-10 11:54:10
Score: 1
Natty:
Report link

try maxHeight, it worked for me. both in style and itemStyle

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: apol

79815550

Date: 2025-11-10 11:52:09
Score: 0.5
Natty:
Report link

The correct answer is to use [nzDropdownMatchSelectWidth] as per the documentation. Check it out here:

https://ng.ant.design/components/select/en

My code now looks like this:

        <nz-form-item>
          <nz-form-label [nzSpan]="6">{{ 'common.client' | translate }}</nz-form-label>
          <nz-form-control [nzSpan]="18">
            <nz-select formControlName="clientId" nzPlaceHolder="{{ 'common.show-everything' | translate }}" nzShowSearch nzAllowClear [nzDropdownMatchSelectWidth]="false">
              @for(client of this.entityListsService.clients(); track client.value ) {
                <nz-option [nzValue]="client.value" [nzLabel]="client.text ?? ''"></nz-option>
              }
            </nz-select>
          </nz-form-control>
        </nz-form-item>

This changes my dropdown from this (dependent on the title attribute you see to the right):

enter image description here

To this (width is now changed to whatever the widest option is):

enter image description here

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
Posted by: Jon Koeter

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

79815545

Date: 2025-11-10 11:45:07
Score: 1.5
Natty:
Report link

Instead of downgrading Scipy, I did a find/replace in called .py files and changed the line:

from scipy import interp

to:

from numpy import interp

It seems that everything is working now, but with every version upgrade of libraries calling scipy.interp, additional edits will be necessary.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Miha Kočevar

79815541

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

If your environment (.env) isn’t loading, check the file path, ensure it’s in the project root, and restart your server.

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

79815535

Date: 2025-11-10 11:28:03
Score: 2.5
Natty:
Report link

@Posix, one thing you probably would like to avoid in any case, is the increase assignment operator (+=) for building strings as it is ineffective.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • User mentioned (1): @Posix
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: iRon

79815531

Date: 2025-11-10 11:25:02
Score: 3.5
Natty:
Report link

I found the answer by updating the ttkbootstrap version.

pip install -U ttkbootstrap

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

79815529

Date: 2025-11-10 11:24:01
Score: 3
Natty:
Report link

I accept it is not possible as there is no way to get a reference to the unconstrained generic class.

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

79815528

Date: 2025-11-10 11:24:01
Score: 1.5
Natty:
Report link

@sirtao, good question, you might formally post that one. I did some quick testing from a scalar, type casting, performance view and from a first sight, it looks like there isn't a practical difference but maybe someone might come up with one considering PowerShell has some specific quirks...

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @sirtao
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: iRon

79815526

Date: 2025-11-10 11:23:01
Score: 2
Natty:
Report link

i tried a sample .riv file it's look good to me. it's working for me. can you check with your animation?

here is my code and animation.

animation link: https://rive.app/community/files/24532-45875-posture-animation/

import SwiftUI
import RiveRuntime

struct ContentView: View {
    // Initialize the Rive view model with the file name and optionally the artboard
    @StateObject var riveModel = RiveViewModel(fileName: "1animation", artboardName: "soldier selection")

    var body: some View {
        // Display the animation
        riveModel.view()
            .frame(width: 300, height: 300)
    }
}

#Preview {
    ContentView()
}

enter image description here

i seen some difference in your animation can you please check with you animation.

Reasons:
  • RegEx Blacklisted phrase (1): i seen some difference in your animation can you please
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Jatin

79815521

Date: 2025-11-10 11:15:59
Score: 3.5
Natty:
Report link

The comment suggested by @TasoP - was on the right track i.e. windows anti virus is getting in the way. Btw- tried anti virus exclusion on folder but did not work.
My solution was to move (or clone etc.,) my code repo into WSL linux directory itself, instead of mounting it as windows folder.

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @TasoP
  • Low reputation (0.5):
Posted by: semaphore

79815520

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

Late answer (seven years after the initial question), but I think it can be useful.

The rationale for changing the name from convert to magick was, I think, that Microsoft Windows already provides a "convert" command. The Windows convert command is used for converting a file system type (e.g. FAT) into another (e.g. NTFS).

Of course, one wants to avoid the confusion. Before that, one was probably reduced to specify the full path of the imagemagick command on Windows systems, or to run the command in a console prompt with a special path for imagemagick.

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

79815519

Date: 2025-11-10 11:13:59
Score: 1.5
Natty:
Report link

The js-undefined is not under my control.
Therefore the question is on How to handle it best.

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

79815496

Date: 2025-11-10 10:51:53
Score: 1
Natty:
Report link

The script kas-container is essentially a wrapper that runs kas inside a container on your local machine. This is useful if you want to reproduce the build on different hosts. It provides isolation, a deterministic build environment, and prevents contamination of the host system. At the end of the day, it runs kas just like you would on your host.

On the other hand, kas runs directly on your machine. In this case, you need to ensure that all required tools and configurations are installed correctly, and there is a risk of affecting your host system if something goes wrong.

It might seem that kas-container is always the better option, but that is not necessarily true. For example, in a CI/CD environment where the runner itself is already inside a container (like Docker), using kas-container introduces the “Docker-in-Docker” problem. In such cases, it is better to use plain kas.

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

79815494

Date: 2025-11-10 10:51:53
Score: 2
Natty:
Report link

still not working showing this error

 ---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
/tmp/ipython-input-3913369503.py in <cell line: 0>()
      3 # Retrieved 2025-11-10, License - CC BY-SA 4.0
      4 
----> 5 from paddleocr import PaddleOCR, draw_ocr
      6 from PIL import Image
      7 from IPython import display

ImportError: cannot import name 'draw_ocr' from 'paddleocr' (/usr/local/lib/python3.12/dist-packages/paddleocr/__init__.py)

---------------------------------------------------------------------------
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.

To view examples of installing some common dependencies, click the
"Open Examples" button below.
---------------------------------------------------------------------------
Open Examples
Reasons:
  • Blacklisted phrase (2): still not working
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: pragyan lamba

79815490

Date: 2025-11-10 10:47:52
Score: 1
Natty:
Report link
$serverCookiePaths = @(
    "$env:APPDATA\RabbitMQ\.erlang.cookie",
    "$env:WINDIR\system32\config\systemprofile\AppData\Roaming\RabbitMQ\.erlang.cookie"
)

$userCookiePath = "$env:USERPROFILE\.erlang.cookie"

foreach ($path in $serverCookiePaths) {
    if (Test-Path $path) {
        Copy-Item $path $userCookiePath -Force
        Write-Host "content of these files .erlang.cookie synchronized."
        break
    }
}
rabbitmq-service.bat stop
rabbitmq-service.bat start
rabbitmqctl.bat status
rabbitmq-plugins.bat enable rabbitmq_management
Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): check this link
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: nguyen

79815486

Date: 2025-11-10 10:41:51
Score: 3.5
Natty:
Report link

What is a "syslog" in Windows context?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What is a
  • High reputation (-2):
Posted by: siggemannen

79815484

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

To achieve persistent anchoring of 3D models in Vuforia after the image target is recognised, you need to transition from image-based tracking to world-based tracking. The key is to use Vuforia's Anchor system. When your image target is first detected, you can create a new `AnchorBehaviour` at the target's position in the world.

This anchor becomes a fixed point in the real world, calculated by Vuforia's internal understanding of the environment. Your 3D models should then be made children of this anchor object. Once this parent-child relationship is established, the models will remain fixed in the virtual world space, independent of the original image target's visibility. The models will now stay in place as the user moves the device, allowing for free exploration of the environment around the anchored content. This approach effectively decouples the models from the image tracker, using the device's spatial awareness to maintain their position.

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