79647320

Date: 2025-06-01 07:59:46
Score: 1.5
Natty:
Report link

Great question! Using another animation purely as a reference (without copying or reusing assets directly) is generally acceptable and common in the creative process. Just make sure your final animation is your original work and not a direct replica.

By the way, if you're into game-style characters like in fighting games, check out some cool ideas and character inspiration at Shadow Fight 2 Characters. It might spark some creativity for your next animation!

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

79647318

Date: 2025-06-01 07:57:46
Score: 5
Natty:
Report link

I resently got this problem but i tried everything i deleted the github shit on credential manager set chrome as default browser and reinstalled VS code but still get the error message when trying to login. Does someone know what to do???

2025-06-01 09:48:54.472 [info] [certificates] Removed 11 expired certificates
2025-06-01 09:49:29.241 [error] [default] github.copilot.signIn: TokenResultError [CopilotAuthError]: Timed out waiting for authentication provider to register
    at getSessionHelper (c:\Users\jaja\.vscode\extensions\github.copilot-1.326.0\extension\src\session.ts:84:42)
    at signInCommand (c:\Users\jaja\.vscode\extensions\github.copilot-1.326.0\extension\src\auth.ts:24:5)
    at c:\Users\Mac\.vscode\extensions\github.copilot-1.326.0\extension\src\telemetry.ts:23:13
    at Wb.h (file:///c:/Users/Mac/AppData/Local/Programs/Microsoft%20VS%20Code/resources/app/out/vs/workbench/api/node/extensionHostProcess.js:119:41516) {
  result: {
    reason: 'NotSignedIn',
    message: 'Timed out waiting for authentication provider to register'
  },
  vslsStack: [ CallSite {}, CallSite {}, CallSite {}, CallSite {} ],
  [cause]: undefined
}
Reasons:
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (2): Does someone know
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mac

79647310

Date: 2025-06-01 07:49:43
Score: 1
Natty:
Report link

One way to disable bounces for specific ScrollView is to access the underlying UIScrollView from a SwiftUI hierarchy.

check this link, and this link

struct UIKitPeeker: UIViewRepresentable {
    let callback: (UIScrollView?) -> Void

    func makeUIView(context: Context) -> MyView {
        let view =  MyView()
        view.callback = callback
        return view
    }

    func updateUIView(_ view: MyView, context: Context) { }

    class MyView: UIView {
        var callback: (UIScrollView?) -> () = { _ in }

        override func didMoveToWindow() {
            super.didMoveToWindow()

            var targetView: UIView? = self
            while if let currentView = targetView {
                if currentView is UIScrollView {
                    break
                } else {
                    currentView = currentView.superView
                }
            }
            callback(targetView as? UIScrollView)
        }
    }
}

To use it:

struct ContentView: View {
    var body: some View {
        ScrollView {
            VStack(spacing: 8) {
                Foreach(0..<100, id: \.self) { i in
                    Text("Scroll bounces disabled \(i)")
                }
            }
            .background {
                UIKitPeeker { scrollView in
                    scrollView?.bounces = false
                }
            }
        }
    }
}
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: M_Khater

79647305

Date: 2025-06-01 07:43:41
Score: 5
Natty: 5.5
Report link

Thanks for your sharing. Is the Python code you provided above confirmed to be functional? Without using the ZhiJinPower app, can this Python code continuously connect directly to and read data from the MPPT controller?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Wes Wu

79647299

Date: 2025-06-01 07:37:40
Score: 1.5
Natty:
Report link

You are asking for a formatter which generates unuseful 'whitespaces' in your code!!!

But the expert recommendation is to avoid useless 'whitespacing' as much as possible, and that is what the formatters out there follows while formatting your code.

But if there's a formatter like that, which u want, and that is a BIG IFFFF, that's gotta be a hell of a development mistake...

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

79647293

Date: 2025-06-01 07:29:37
Score: 5
Natty: 6.5
Report link

for next js 15 all the steps are mentioned in this article

https://tarunnayaka.me/Blog/68348f2ccdf34b578f3bdd8e/how-to-deploy-a-nextjs-15-app-to-azure-app-service-easy-deployment-guide

Reasons:
  • Blacklisted phrase (1): this article
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tarun Nayaka

79647291

Date: 2025-06-01 07:23:36
Score: 0.5
Natty:
Report link

Prettier intentionally avoids formatting styles that involve alignment for aesthetic purposes, such as aligning = signs or colons, because its philosophy emphasizes consistency over visual alignment, which can be fragile and harder to maintain.

However, there are other tools and workarounds that can achieve what you're asking for:

✅ Option 1: align-yaml or align-js via custom scripts These are not official tools, but small CLI scripts or packages that parse and align JavaScript objects or variable declarations.

You could write a simple script or use a small utility like:

cli-align

columnify

align-code (not well-maintained but a starting point)

✅ Option 2: Use ESLint with custom rule or plugin Some ESLint plugins support alignment features. For example:

eslint-plugin-align-import

eslint-plugin-sort-destructure-keys

But aligning = in variable declarations isn’t supported out of the box. You could:

Write a custom ESLint rule

Use eslint --fix with tailored rules to preprocess code, then reformat with Prettier

✅ Option 3: Editor Macros / Align Plugins For manual or semi-automated formatting:

VSCode:

Extension: "Align"

Shortcut: Select lines → Ctrl+Shift+P → "Align" → Choose =

Sublime Text:

Plugin: AlignTab or built-in Find > Replace using regex

✅ Option 4: Use ast-grep or code mods For power users, tools like ast-grep or jscodeshift let you match and rewrite code structurally — useful for automating style changes like aligning assignments

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

79647286

Date: 2025-06-01 07:16:34
Score: 1
Natty:
Report link

Here is the tool and approaches that can help:

ESLint + plugin or manual rules While ESLint is mainly for linting, some plugins can help with alignment, like:

eslint-plugin-align-assignments This plugin aligns = and : in variable declarations and object literals.

Install:

npm install --save-dev eslint eslint-plugin-align-assignments

Add to your .eslintrc.js:

module.exports = {
  plugins: ['align-assignments'],
  rules: {
    'align-assignments/align-assignments': ['error', { requiresOnly: false }],
  },
};

Then run:

npx eslint --fix yourfile.js
Reasons:
  • Blacklisted phrase (1): This plugin
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mazin Ali

79647285

Date: 2025-06-01 07:15:33
Score: 1.5
Natty:
Report link
// PropertyChanged Event Handler
    private void thirdLevel_PropertyChanged(object? sender, PropertyChangedEventArgs e)
    {
        // other relevant updates on thirdLevel object's PropertyChanged Event
        ...

        // *** Update StartTime value of subsequent Items in the Collection ***
        if (e.PropertyName == "Duration")
        {
            var index = ThirdLevels.IndexOf(sender as ThirdLevelViewModel);
            for (int i = index + 1; i < ThirdLevels.Count...
        }
    }

It's super easy, any problem?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Lamp

79647283

Date: 2025-06-01 07:11:32
Score: 2
Natty:
Report link

Please disregard the error related to dotnet1; setting useLegacyV2RuntimeActivationPolicy = true is the key.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: JORGE ADRIAN VARGAS GRANDA

79647277

Date: 2025-06-01 07:06:31
Score: 3.5
Natty:
Report link

one's and two's compliment of a positive number is its binary equivalent .

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

79647275

Date: 2025-06-01 06:59:28
Score: 4
Natty: 4.5
Report link

Timer Countdown with progress bar C#

header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ai developer

79647255

Date: 2025-06-01 06:31:21
Score: 1
Natty:
Report link

tf.keras.preprocessing.text.Tokenizer is deprecated in recent versions of TensorFlow. The recommended alternative is to use TextVectorization from tf.keras.layers

USE: from tensorflow.keras.layers import TextVectorization

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

79647254

Date: 2025-06-01 06:25:20
Score: 0.5
Natty:
Report link

I recently came across MagicWords’ cataloguing solution and wanted to share it here for anyone looking to improve their product listings. MagicWords specialises in creating well-structured, detailed, and accurate product catalogues that help businesses showcase their products effectively.

Their cataloguing service covers everything from collecting product data—like names, descriptions, prices, and images—to classifying products into clear categories and subcategories. This makes it easier for customers to find what they need, improving user experience and boosting sales.

What sets MagicWords apart is their focus on quality and consistency. They write engaging product descriptions that highlight key features and benefits, and they add metadata like keywords and tags to improve searchability. Plus, they manage data entry meticulously and perform thorough quality checks to ensure error-free catalogues.

Whether you run an e-commerce store, print catalogue, or digital platform, MagicWords can tailor their service to fit your needs. They also offer ongoing updates to keep your catalogue current.

If you want to streamline your product listings and enhance customer engagement, check out their service here: https://magicwords.in/solution/cataloguing/

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

79647252

Date: 2025-06-01 06:24:20
Score: 2.5
Natty:
Report link

This IS a race condition. Use Assembly Fixtures (https://xunit.net/docs/shared-context#assembly-fixture) or locking mechanism to have an atomic RMW DB operation.

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

79647249

Date: 2025-06-01 06:23:19
Score: 1.5
Natty:
Report link

To find the coordinate of the eye corner using color differences, you'd typically analyze the contrast between the skin and the sclera (white of the eye) or the surrounding areas in a photo. Eye corners often appear as sharp points where color or brightness changes suddenly. This process is commonly used in computer vision or facial recognition. If you're interested in eye-related analysis like this, you might also want to explore tools like baby Eye Color Calculator, which uses genetic and visual data to predict or explore potential eye color outcomes — it's a fun and helpful way to learn more about eyes and how traits like color are passed down!

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

79647235

Date: 2025-06-01 06:05:14
Score: 2
Natty:
Report link

🚀 Discover Cartovia – Your Global Shopping Partner!

🔒 100% Secure | 🌍 Worldwide Shipping | ✅ Verified Products

Join thousands who trust Cartovia for safe, fast, and reliable shopping on Telegram.

🛒 Tap to explore the deals → Cartovia

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

79647233

Date: 2025-06-01 06:01:13
Score: 3.5
Natty:
Report link

check android/gradlew.bat may be deleted by mistake put it back it will work as usual.

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

79647222

Date: 2025-06-01 05:45:08
Score: 0.5
Natty:
Report link

Download and install the nVidia cuDNN library. You may also need the nVidia CUDA Toolkit. For my app, which uses the Microsoft Semantic Kernel, I had to copy the DLL files into the folder with the EXE to make it work.

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

79647220

Date: 2025-06-01 05:42:06
Score: 6 🚩
Natty: 5.5
Report link

Samyar ghodrati bass Samyar ghodrati bass mizanam

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Samyar ghodrati bass

79647207

Date: 2025-06-01 05:07:57
Score: 13.5 🚩
Natty: 6.5
Report link

I'm currently facing the same issue with the Bosch GLM 50 C using flutter_blue_plus. I was able to connect and read static data like device name, but I'm not receiving live distance measurements either. Did you manage to solve this problem? Any guidance would be greatly appreciated. Thanks in advance!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (3): Did you manage to solve this problem
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ebrahim Elnemr

79647203

Date: 2025-06-01 05:00:55
Score: 2.5
Natty:
Report link

It's available under UNIX environment for windows MYSYS2 https://www.msys2.org/docs/pkgconfig/

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

79647202

Date: 2025-06-01 04:59:55
Score: 1
Natty:
Report link

I understood the problem!

Cocos converts the mouse event to the touch event automatically, so events are propagated to the cc.layer, which are touch events.

Event listeners, in the cc.layer, listen for the mouse event.

So, basically, when I trigger the onMouseDown event on the screen, there are 2 events (onMouseDown and onTouchBegan) that are triggered.

There are several approaches to solving this problem. We can manually end mouse events in the ccui.layout. Or we can use the touch events in the cc.layer instead.

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

79647199

Date: 2025-06-01 04:49:53
Score: 3.5
Natty:
Report link

I found patterns of FedEx tracking numbers and many other companies here

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

79647198

Date: 2025-06-01 04:48:53
Score: 2.5
Natty:
Report link

How about using LAST_VALUE() ?

SELECT 
    Country, 
    LAST_VALUE(Date) OVER (PARTITION BY Country ORDER BY Date 
        ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS Last_Date, 
    LAST_VALUE(Rate) OVER (PARTITION BY Country ORDER BY Date 
        ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS Last_Rate 
FROM my_tab;
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: Nanomachines Son

79647193

Date: 2025-06-01 04:45:52
Score: 2
Natty:
Report link

Javascript:javascript:function createMouseEvent(e,t){const n=t.changedTouches[0],c=new MouseEvent(e,{bubbles:!0,cancelable:!0,view:window,detail:t.detail,screenX:n.screenX,screenY:n.screenY,clientX:n.clientX,clientY:n.clientY,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,button:0,buttons:1});t.target.dispatchEvent(c)}document.addEventListener("touchstart",(e=>{createMouseEvent("mousedown",e)})),document.addEventListener("touchmove",(e=>{createMouseEvent("mousemove",e)})),document.addEventListener("touchend",(e=>{createMouseEvent("mouseup",e)}));

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shankar Poojary

79647187

Date: 2025-06-01 04:36:49
Score: 0.5
Natty:
Report link

Just freshening @Charlie Martin's answer for 2025,

let array = [UInt8](repeating: 0, count: 16)

// or if you're into Data

let data = Data([UInt8](repeating: 0, count: 16))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @Charlie
  • High reputation (-1):
Posted by: orion elenzil

79647173

Date: 2025-06-01 04:07:42
Score: 3.5
Natty:
Report link

They haven't yet migrated and my project is built upon ktor 3.x.x

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

79647172

Date: 2025-06-01 04:05:42
Score: 3
Natty:
Report link

There is an app called lunar which might solve your issue. https://lunar.fyi/
Can you check the below links. m1ddc works for M1 macs and the even non M1s
https://github.com/waydabber/BetterDisplay
https://github.com/waydabber/m1ddc

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

79647165

Date: 2025-06-01 03:55:39
Score: 0.5
Natty:
Report link

For those who do need a type also filtering out properties that can be explicitly undefined, there is a simpler solution than the one suggested in the comments:

type PickDefined<T> = {
  [K in keyof T as undefined extends T[K] ? never : K]: T[K];
};
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: aweebit

79647161

Date: 2025-06-01 03:52:38
Score: 1.5
Natty:
Report link

I was able to find a solution based on the PR that is mentioned https://github.com/ng-bootstrap/ng-bootstrap/issues/4828#issuecomment-2925667913

As of today I am running ng-bootstrap in Angular v20

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

79647157

Date: 2025-06-01 03:44:36
Score: 0.5
Natty:
Report link

I ran into something really similar after upgrading Emacs—my ediff setup suddenly felt broken, and I couldn't figure out why the control window was missing. Turned out it was some theme or face setting that didn’t play well with the new frame behavior in Emacs 29. Digging into set-face-attribute calls and checking what lsp-ui was doing helped me fix it eventually. Funny enough, during one of my many debugging breaks, I stumbled across this weird little game called crazy cattle 3d. It’s basically sheep bumping into each other in glorious chaos. Totally random, but weirdly relaxing after wrestling with Emacs config for hours.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alison

79647143

Date: 2025-06-01 03:12:27
Score: 1.5
Natty:
Report link

To trim only trailing slashes use rules from Trailing Slash Problem Apache's guide:

RewriteCond    %{REQUEST_FILENAME}  -d
RewriteRule    ^(.+[^/])$           $1/  [R]

To removes all trailing and duplicates slashes in the path, includes a root of the path, see this post I described: https://stackoverflow.com/a/79647129/6243733

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: GHosT

79647139

Date: 2025-06-01 03:03:25
Score: 3
Natty:
Report link

use uint32_t irrelevant[4] instead of uint32_t irrelevant[3].

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

79647138

Date: 2025-06-01 03:02:25
Score: 1
Natty:
Report link

Wow, that was fast. Thanks to @STerliakov for finding a related post!

The solution is generics. So the BusinessMan declaration becomes

class BusinessMan[BriefcaseType: Briefcase]:
    # snip

    @classmethod
    def from_briefcase(cls, briefcase: BriefcaseType) -> Self:
        # snip

which indicates that from_briefcase() takes a BriefcaseType, which is any subclass of Briefcase.

The declaration for BiggerBusinessMan becomes

class BiggerBusinessMan(BusinessMan[BiggerBriefcase]):
    # snip

    @classmethod
    def from_briefcase(cls, briefcase: BiggerBriefcase) -> Self:
        # snip

which says that BiggerBusinessMan inherits from the variant of BusinessMan where BriefcaseType is BiggerBriefcase.

Type annotations are sublime.

Pleasure doing business!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): solution is
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @STerliakov
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Quantasm

79647124

Date: 2025-06-01 02:15:14
Score: 1.5
Natty:
Report link

You need to import FirebaseFirestore. Importing it will fix the error.

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

79647119

Date: 2025-06-01 02:11:12
Score: 10.5 🚩
Natty: 6.5
Report link

I am looking for something similar. I want my monitor settings to go dim after sunset and be back to normal after sunrise. Can anyone help on this ?

Reasons:
  • Blacklisted phrase (2): I am looking for
  • RegEx Blacklisted phrase (3): Can anyone help
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: justnisar

79647118

Date: 2025-06-01 02:08:11
Score: 5
Natty: 4.5
Report link

You can take a look at [SwiftlyUI](https://github.com/CoderLineChan/SwiftlyUI)

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

79647115

Date: 2025-06-01 02:08:11
Score: 4.5
Natty:
Report link

Look like I needed this variant of Glib::Value<...>:

https://gnome.pages.gitlab.gnome.org/glibmm/classGlib_1_1Value_3_01Glib_1_1RefPtr_3_01Glib_1_1Bytes_01_4_01_4.html

Reasons:
  • Blacklisted phrase (0.5): I need
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: xBACP

79647086

Date: 2025-06-01 00:33:49
Score: 2
Natty:
Report link

Do you know what a multidimensional array looks like in a high level language? It is the same in Assembly language, you just navigate it with a different syntax. Just remember, it will be a fixed-size, single variable type (all ints or doubles or pointers, etc.) From a language like C for example. Not something like JavaScript...

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: SE Foulk

79647081

Date: 2025-06-01 00:26:46
Score: 7.5 🚩
Natty: 6.5
Report link

Did you figure it out? Having this issue as well

Reasons:
  • RegEx Blacklisted phrase (3): Did you figure it out
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Waykzen

79647077

Date: 2025-06-01 00:12:43
Score: 0.5
Natty:
Report link

It's not currently possible as the implementation only supports a subset of what's available through the ICU/Unicode library. However, there is an open issue on tc39's (ECMAScript Technical Committee 39) GitHub repository to support unit prefixes like square, cubic, etc: https://github.com/tc39/ecma402/issues/767

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

79647071

Date: 2025-05-31 23:50:38
Score: 1.5
Natty:
Report link
=XLOOKUP(Analysise!B2,INDIRECT("'"&B3&"'!$B:$B"),INDIRECT("'"&B3&"'!$A:$G"))

This formula works in my sample file with the dropdown for the sheet name in cell B3 of sheet "Analysise".

Result for "Background" in cell B3:

enter image description here

Result for "sheet2" in cell B3:

enter image description here

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

79647057

Date: 2025-05-31 23:27:31
Score: 1.5
Natty:
Report link

OK I was able to get this to work finally!! I just had to follow this guide.

I just updated the Bucker police to the one mentioned in the guide and updated my IAM role to the following:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "chime:*",
                "s3:GetBucketPolicy",
                "s3:GetBucketLocation"
            ],
            "Resource": "*"
        }
    ]
}
Reasons:
  • Blacklisted phrase (1): this guide
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Boubaker Kalfat

79647055

Date: 2025-05-31 23:24:30
Score: 7.5 🚩
Natty: 6.5
Report link

I have a similar question to this.

I am also doing a similar project and I would like the volume HUD from apple to display whenever I increase the volume so that the user can know what their volume is at now. How do I do this?

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar question
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: AK Chithra Sathish

79647054

Date: 2025-05-31 23:19:28
Score: 1
Natty:
Report link

Let me say I love this question! I was an Assembly language officianado back in the day for my company, and there was nothing I loved more than tweaking ASM code down to a gnats ass in size and speed in light years (relative to the 80's and 90's). This would be great question for a college level C or Assembly Language class to explore. The idea that you can look at the actual code generated by the compiler has always been a fantastic tool for learning the voodoo these compiler writers create. These compilers are also the reason us old Assembly language coders are out of business - nowadays there is no time to tweak so much before getting your product out the door. Let there be no doubt, this kind of optimization is fun stuff! The mention of Michael Abrash brought back my old memories, and the mindset he inspired in order to dissect ASM code still works today in higher level languages. Kudos for this question and the example code used to test it.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: SE Foulk

79647040

Date: 2025-05-31 22:47:19
Score: 2.5
Natty:
Report link

for me when change my DNS address this error fixed, probably for proxy or ip or in my case was dns. pls check your network connection.

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

79647017

Date: 2025-05-31 21:48:04
Score: 7.5 🚩
Natty: 6
Report link

enter image description here Объясните почему ошибка? Вроде делаю все по инструкции. Самое интересное не один скрипт не работает от слова вообще, какой бы не вставил.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Владимир Горнухин

79646999

Date: 2025-05-31 21:19:56
Score: 1.5
Natty:
Report link

To make your API receive the custom claim (ahNumber), you need to add it to the access token in the API's app registration, not just to the SPA's ID token.

Quick steps:

  1. Go to Azure Portal > Entra ID > App registrations > your API app

  2. Open Token Configuration and click "+ Add Optional Claim"

  3. Select Access token, choose Custom, and add:

    • Name: ahNumber

    • Source: Attribute

    • Value: user.employeeid

  4. Save and accept the claim policy if prompted

  5. In the API app's Manifest, set "acceptMappedClaims": true

Now the claim will appear in the API’s ClaimsPrincipal and can be accessed like this:
User.FindFirst("ahNumber")?.Value

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

79646998

Date: 2025-05-31 21:19:56
Score: 2
Natty:
Report link

Function works correctly, it changes 0x0001 to 0x0100. And you program shows this. You are taking high byte 01 shifting it right and printing as First byte of course you'll see 1. So what is wrong?

By the way what & 0xff gives here?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: Solt

79646993

Date: 2025-05-31 21:08:53
Score: 1
Natty:
Report link

The issue happens because the column has both cellRenderer and editable: true. When the checkbox is clicked, AG Grid enters edit mode, which interferes with the custom cell layout and causes misalignment or style issues.

To fix this, remove editable: true from the column definition and handle the value update manually inside the cellRenderer's onClick event. This way, the checkbox stays centered and the UI remains stable.

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

79646990

Date: 2025-05-31 21:06:53
Score: 1
Natty:
Report link
  1. Qt and Qwt should be compiled with the same compiler to be abi compatible (same major version of said compiler), if linker complains that it cannot find library it might mean that he ignores provided library because it's not abi-compatible. In c++ you cannot just download library and expect it to work unless you're using package manager like vcpkg or conan or msys2. If you're not using package manager, I recomend you to compile qwt instead of installing it, the process is straightforward and compilation only takes about 10-20 minutes.

Canonical gcc way to specify libraries is with -Ldirectory -lname

LIBS += -LC:/dev/qwt/qwt-6.3.0/lib -lqwt

Where should I define, that I want a static binding of qwt libraries?

You should not, if you link to static library it will be linked statically if you link to dynamic library it will be linked dynamically.

Reasons:
  • Blacklisted phrase (1.5): Where should I
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: mugiseyebrows

79646987

Date: 2025-05-31 21:02:51
Score: 2.5
Natty:
Report link

What worked for me is to create new business.
I know it's probably not ideal - but the important part it works.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Ilan Ts

79646982

Date: 2025-05-31 20:58:50
Score: 2.5
Natty:
Report link

I was encountering a similar error.

The configuration step described here -> (developer android) fixed my issues.

After new 'sync gradle', 'uipackages' appeared in my left panel.

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

79646972

Date: 2025-05-31 20:37:44
Score: 6 🚩
Natty: 6.5
Report link

Can you please provide complete script as per the microsoft doc we cannot configure the agent using service principal still it is expecting token variablE

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please provide
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you please
  • Low reputation (1):
Posted by: sai kishore

79646968

Date: 2025-05-31 20:31:43
Score: 2.5
Natty:
Report link

I have this problem too and don't want use npm ecosystem like integrated with vite and use hmr. I wanted use pure python in django soo find'ed this very simple and useful package django-browser-reload

don't forget if you find helpful this package add a star to this repo.

Reasons:
  • Blacklisted phrase (1): I have this problem
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: mobentu

79646962

Date: 2025-05-31 20:23:41
Score: 1
Natty:
Report link

Thank you again, @Solt, for your assistance in directing me to other techniques.

Here is the logic sequence that did finally work for me:

function firePattern_onTargRand( col, row ){
    var firePattern = 'Random About Target' ;
    var target = [] ;
    var targets = [] ;
    var munitionsCost = 10 ;
    var alreadyTargeted = false ;
    var enumerateTargets = "" ;

    for( i=1 ; i <= munitionsCost ; i++ ){
        do {
            target = [ 
                col + getRandomInteger( 0, 6 ) -3 ,
                row + getRandomInteger( 0, 6 ) -3
            ] ;
            alreadyTargetted = false ;
            for( let j = 0 ; j < targets.length ; j++ ){
                if(
                    targets[j][0] === target[0] &&
                    targets[j][1] === target[1]
                ) {
                    alreadyTargetted = true ;
                    console.log( "duplicate flagged at " + `${j}` + " vs " + `${i}` ) ;
                } ;
            } ; 
        } while( alreadyTargetted === true ) ;

        targets.push( target ) ;
        enumerateTargets = enumerateTargets + "\n[" + target + "]" ;
        } ;

    console.log( "Targetting Pattern:  " + `${firePattern}` + "\nGrid Coordinates:  [" + ` ${col} , ${row} ` + "]\nSalvo Coordinates:\n" + enumerateTargets ) ;
    return targets ;
} ;

And this is the console log generated:

console log of generated messages

One observation I can't avoid making is that there seems to be a high occurrence of duplicates being encountered from what is supposed to be a random generator function!!! Encountering one every now and then, I can understand. But as many as have been observed in a single run of only 10 (20) calls seems to be hard to accept! Is that indicative of an issue with the JavaScript built-in function? But that is for another discussion altogether. :-)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Solt
  • Self-answer (0.5):
Posted by: Eric Marceau

79646952

Date: 2025-05-31 20:04:36
Score: 2
Natty:
Report link

I would have a look at duckdb, which can run queries on CSV files.

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

79646950

Date: 2025-05-31 20:03:36
Score: 3.5
Natty:
Report link

7ef739e8001f31e3453acfea3613472d82ed90485cff26f1e85158806bdbf31b7c8b0ed3ea7702239158b50b95cdf648c745126c458b55f950377c7726a713f7

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

79646937

Date: 2025-05-31 19:47:32
Score: 1.5
Natty:
Report link

Today is a new day and my brain is refreshed, a-new.

I had 2 problems. Fires, I forgot to set apache2 as owner of website 2's default index.html file. When apache2 didn't find anything to return, it moved on to display my other website.

Second of all, I attempted to sign my 2nd site with my first site's credentials. This may have contributed to this issue of Mal-performance.

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

79646936

Date: 2025-05-31 19:46:31
Score: 4.5
Natty: 4.5
Report link

conv_history-1356115527:

https://in.docworkspace.com/d/sIFDkk-e0Ao2m7cEG?sa=601.1074

Open in APP:

https://s.wps.com/i4Pg3wD8Pjqm

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

79646925

Date: 2025-05-31 19:28:27
Score: 4
Natty:
Report link

Have you tried object-fit: cover;?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (2):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: JRT

79646923

Date: 2025-05-31 19:26:22
Score: 9.5 🚩
Natty:
Report link

did you find a solution, im facing the same issue

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Starts with a question (0.5): did you find a solution
  • Low reputation (1):
Posted by: Monsef Monsef

79646920

Date: 2025-05-31 19:24:21
Score: 1.5
Natty:
Report link

Since Logger.log() doesn't help in printing out the values at the line you need to debug. You can go with alert() . Yes it's a bit annoying but works the same when working with webapp

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

79646908

Date: 2025-05-31 19:03:17
Score: 1
Natty:
Report link

So I ended up figuring this out, although I'm not sure if it was the best solution or not.

I had to reinstall WASMedge using an updated install script and specify the path to that .so directly in the install script (LIBCUDART_PATH). That made it recognize CUDA and the GPU, and then I had to mess with context size for memory reasons, and then it was up and running.

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

79646907

Date: 2025-05-31 19:03:17
Score: 2
Natty:
Report link

I’m using Docker Desktop with Kubernetes enabled, so the clusters are managed locally on my machine.
When I run kubectl get services, I get the following output:
enter image description here

I’m trying to connect to SQL Server from my local machine using SSMS. However, even though I have a LoadBalancer service with an external IP (which points to localhost), I’m still unable to connect using localhost,1433.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: issamkh

79646898

Date: 2025-05-31 18:55:14
Score: 4
Natty:
Report link

are you using flexbox? check the display and align-items property of the header's parent element.

https://www.w3schools.com/cssref/css3_pr_align-items.php

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: JRT

79646889

Date: 2025-05-31 18:43:12
Score: 1
Natty:
Report link

If you are using flutter, building in the flutter plugin in vscode gives you a clue (unlike xcode).

From the top of your flutter project, edit ios/Runner.xcodeproj/project.pbxproj and change all instances of

com.example.yourapp

to

com.whatever_matches_your_apple_developer_domain.yourapp

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

79646886

Date: 2025-05-31 18:40:11
Score: 4.5
Natty:
Report link

Have you tried using the width property in the header tag?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: matusz019

79646879

Date: 2025-05-31 18:37:09
Score: 2.5
Natty:
Report link

Can easily be done with IrfanView.

I.e. Image -> Resize/Resample -> Set New Size -> Width [1024] + Height [500] + Units (pixels) -> Ok

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): Can
  • Low reputation (0.5):
Posted by: tim bits

79646878

Date: 2025-05-31 18:36:04
Score: 8 🚩
Natty:
Report link

enter image description here
I am aslo seeing same issue from my side please find above SS:

Reasons:
  • RegEx Blacklisted phrase (1): I am aslo seeing same issue from my side please
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): seeing same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: VINAY TALLA

79646877

Date: 2025-05-31 18:35:04
Score: 1
Natty:
Report link

It took me a couple of hours to get the right configuration, with a lot of trial and error.

This is what I came up with: I had to exclude a couple of transient dependencies globally.

Include these excludes in your configurations block:

configurations {
    configureEach {
        exclude group: 'commons-logging', module: 'commons-logging'
        exclude group: 'org.neo4j', module: 'neo4j-logging'
        exclude group: 'ch.qos.logback', module: 'logback-classic'
    }
}

I did not find a way to exclude those packages only for the tests, but I guess that's not a problem. The first exclude is not strictly necessary for my project to work, but it makes the warning about commons-logging.jar go away.

So I had to use configureEach to remove the dependencys from all scopes, because removing if from testRuntimeOnly or other test scopes did not work for some reason.

Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Chris

79646872

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

When trying to connect to another service from your pods you must use the kubernetes internal DNS service. In the pod that is trying to connect to the host should look something like this instead localhost:

mssql-clusterip-srv.default.svc.cluster.local

if you uses other namespace to deploy your database and services, replace default for the correct value.

can help you understand how it works

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Thomas

79646863

Date: 2025-05-31 18:22:01
Score: 3.5
Natty:
Report link

In v4 you import Tailwind using a regular CSS @import statement, not using the @tailwind directives you used in v3: @import "tailwindcss";

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @import
  • User mentioned (0): @tailwind
  • User mentioned (0): @import
  • Low reputation (1):
Posted by: TuanNg

79646847

Date: 2025-05-31 17:47:53
Score: 2.5
Natty:
Report link

[versions]

ktx = "1.9.0"

[libraries]

androidx-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "kt

x" }

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

79646836

Date: 2025-05-31 17:27:49
Score: 1
Natty:
Report link

his is really just a test of MemoryCache. I could have made it much simpler, removed all of the extra code, and just tested MemoryCache, but this takes into account the possibility of error in the surrounding logic. I only write tests like this to be sure that I'm not making wrong assumptions about how something like this works.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: amir nouri

79646831

Date: 2025-05-31 17:20:47
Score: 1.5
Natty:
Report link

Yes, you're totally right — in the new Google Ads Conversion Tag interface in Google Tag Manager (GTM), the "User-provided data" checkbox for Enhanced Conversions has been removed from the standard "Google Ads Conversion Tracking" tag.

To enable Enhanced Conversions now, you need to add a separate tag using the "Google Ads User-provided Data Event" tag type.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Loïc CHOSSIERE

79646811

Date: 2025-05-31 16:51:39
Score: 0.5
Natty:
Report link

It seems that the problem not in API itself.

The first reason maybe some kind of "sleeping" software which have to wake up and then works for some short time and fall asleep again.

And the second - your networking equipment which looses path to the server and each time spend these 4 seconds to find the network device.

As for http - it must work even faster than https

Reasons:
  • No code block (0.5):
Posted by: Solt

79646807

Date: 2025-05-31 16:47:38
Score: 3
Natty:
Report link

i was getting this

Installation Failed. One prerequisite is not fulfilled

i did this on regedit and installation worked. changed the version to the one mentioned in the alert

Docker Desktop requires Windows 10 Pro/Enterprise/Home version 19044 or above.

enter image description here

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

79646792

Date: 2025-05-31 16:32:34
Score: 1
Natty:
Report link

Believe me, I got the same problem. The problem is the path. React-native-reanimated takes the absolute path at compilation. It means, it is taking your path from the root directory like from start of C drive (if in windows) to the files in the node_modules. The maximum characters for path is 250 although in my case it was taking like 198 or something, it might have some restrictions for that.

I copied the entire project and pasted it in my users directory. The path was like

C:\users\<my-username>\<react-native-project>

This makes the path short and the resolves the error.

Reasons:
  • Blacklisted phrase (1): I got the same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sahil Mane

79646785

Date: 2025-05-31 16:26:32
Score: 2.5
Natty:
Report link

You can fetch your files using this:

https://raw.githubusercontent.com/<owner>/<repo>/<branch-refs>/<path-to-file>

for example to fetch staticSet.json file:

https://raw.githubusercontent.com/jamestroxel/NASA-JPL-NEO/refs/heads/main/assets/data/staticSet.json

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

79646777

Date: 2025-05-31 16:21:30
Score: 4
Natty:
Report link

You should use maven-assembly-plugin to build your project. Read documents about this plugin.

Reasons:
  • Blacklisted phrase (1): this plugin
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SOLoose

79646776

Date: 2025-05-31 16:21:30
Score: 1.5
Natty:
Report link

Plugin 'role-strategy' (Role-based Authorization Strategy) seems to provide this possibility https://plugins.jenkins.io/role-strategy/
Take a look if functionality provided by 'item roles' suits you

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

79646774

Date: 2025-05-31 16:20:30
Score: 2.5
Natty:
Report link

Cause three applies in my case. I switched from the default user model to a custom one after running migrations—midway through the project. To fix the issue, I deleted the database and existing migrations, then reapplied the migrations. That resolved the problem.

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

79646768

Date: 2025-05-31 16:12:28
Score: 0.5
Natty:
Report link

Javascript:

function num_en_fa (str) {
    const num_fa = ["۰", "۱", "۲", "۳", "۴", "۵", "۶", "۷", "۸", "۹"];
    for (let i=0; i<10; i++) {
        str = str.replaceAll(String(i), num_fa[i]);
    }
    return str;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ehsan Paknejad

79646767

Date: 2025-05-31 16:11:28
Score: 1
Natty:
Report link

I had similar issue, while activating venv..

usage: conda-script.py [-h] [–no-plugins] [-V] COMMAND …
conda-script.py: error: argument COMMAND: invalid choice: ‘acivate’ (choose from ‘clean’, ‘compare’, ‘config’, ‘create’, ‘info’, ‘init’, ‘install’, ‘list’, ‘notices’, ‘package’, ‘remove’, ‘uninstall’, ‘rename’, ‘run’, ‘search’, ‘update’, ‘upgrade’, ‘build’, ‘content-trust’, ‘convert’, ‘debug’, ‘develop’, ‘doctor’, ‘index’, ‘inspect’, ‘metapackage’, ‘render’, ‘skeleton’, ‘token’, ‘pack’, ‘env’, ‘repo’, ‘verify’, ‘server’)

please try: conda init zsh

and then close and restart your terminal

this resolved my issue. Happy coding :)

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

79646766

Date: 2025-05-31 16:09:27
Score: 2
Natty:
Report link

Are you also facing an issue with unauthorized 401 errors? I'm experiencing a similar problem. I have an application registered in Azure with the following API permissions: User.Read, openid, offline_access, and Mail.Read.

When I sign in through the web client, the app receives an access token valid for 60 minutes. After the 60 minutes pass, the application tries to send a refresh token request, but it gets a 401 Unauthorized response, and the user is automatically logged out.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Antonio Ferreira

79646762

Date: 2025-05-31 16:02:26
Score: 2.5
Natty:
Report link

generally AND works in the same manner as in your language. When you are speaking, or when you are thinking do you understand how to use AND? Exactly the same sql does.

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

79646759

Date: 2025-05-31 16:01:24
Score: 6.5 🚩
Natty:
Report link

may I ask a question? How to integrate Google Cloud Speech to Text V2 in Android to achieve real-time transcription of real speech into text? It is necessary to distinguish the speaker! It's really difficult to access, do you have a demo that can be provided

Reasons:
  • Blacklisted phrase (1): may I ask
  • RegEx Blacklisted phrase (2.5): do you have a
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hayden

79646755

Date: 2025-05-31 15:52:22
Score: 2
Natty:
Report link
DÜZGÜN MASKE
KIRIŞIK ÖNLEYİCİ ZERO BÜRGÜN
ULİTESİ AİES BORUSU TÜRCÜ
NERESİNCE TERÜK BENZİN SERGİS EN SİPARİŞLER İÇİN 📱 Tel: 0552 571 33 15
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Zero Sillah

79646751

Date: 2025-05-31 15:44:20
Score: 1
Natty:
Report link

I mainly used two ways to measure code execution time between Python scripts or parts of them.

Command line:
python3 -m timeit -n 1 -r 1 -p -u sec "import os; os.system('python3 myprogram.py')"

-m timeit invoke timeit module
-n 1 times you wan to execute the "statement" (== your 'python "program"/script/foo.py')
-r 1 times to repeat the timer (default 5)
-p measure process time, not wallclock time, using internally time.process_time() instead of time.perf_counter(), which is the default. Very handy if your program prompts the user for input at any step, not to count, for example, the time delay introducing input.
-u sec specify a time unit for timer output; can select nsec, usec, msec, or sec

Embedded in code:
time Python module.
As @Jeyekomon comments below the OP, time module is a very flexible, useful, fast and simple alternative putting measurement points wherever you want. Found here How do I get time of a Python program's execution:
import time << put this at the beginning of your code
start_time = time.time() << put this in the place you want to start measuring time. Just a snapshot of instant time.
print("--- %s seconds ---" % (time.time() - start_time)) << put this in the place you want to stop (and print) elapsed time. Just another snapshot of instant time and the subtraction respect to the previous.

Operating system alternative:
time operating system command. Present in Windows or Linux/UNIX. But check-out for implementation particular options and flags (man time).

Joint example using timeit (command-line) and time (Python module functions placed inside my code):
python3 -m timeit -n 1 -r 1 -p -u sec "import os; os.system('python3 myprogram.py')"
Tell me what term of the sequence you want to calculate: 3 (belongs to program prompt)
--- 1.0251998901367188e-05 seconds --- << output from embedded code (time functions)
2 (belongs to program output)
1 loop, best of 1: 0.000448 sec per loop << (shell) output from timeit

Reasons:
  • Blacklisted phrase (1): How do I
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Jeyekomon
  • Low reputation (0.5):
Posted by: nostromo

79646739

Date: 2025-05-31 15:18:15
Score: 1.5
Natty:
Report link

Restore your vehicle’s shine with professional paint correction in San Marcos, CA. Our expert technicians specialize in removing swirl marks, light scratches, oxidation, and other paint imperfections using cutting-edge polishing techniques and high-grade compounds. Whether your car has suffered from harsh weather, automatic car washes, or daily wear and tear, our multi-stage correction process revives the clarity and depth of your paintwork. Perfect for auto enthusiasts and luxury vehicle owners alike, our San Marcos paint correction service ensures a mirror-like finish and prepares your vehicle for long-lasting protection like ceramic coating.

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

79646734

Date: 2025-05-31 15:13:13
Score: 0.5
Natty:
Report link

An approach I tend to prefer more is by specifying the container's name (network_mode):

services:
  mycontainer1:
    image: myregistry/my-container1:latest
    ports: ['6666:7777']
  mycontainer2:
    image: myregistry/my-container2:latest
    network_mode: container:mycontainer1     # <---
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mattia Baldari

79646727

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

Refer to screenshot attached, you should check the Download external resources

Window >> Preferences >> XML
enter image description here

If problem still persists (because https://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd seems to be unreachable) refer to Hibernate issue with using http://www.hibernate.org/dtd on how to load the DTD from classpath that is included in Hibernate JAR

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

79646719

Date: 2025-05-31 15:00:10
Score: 0.5
Natty:
Report link

Docs

The LEFT join returns all rows in the "left" table. Adding the constraint on customers id isn't going to change that fact.

If you want to filter those rows, you need to use a where clause:

SELECT * FROM customers
LEFT OUTER JOIN salesman
ON customers.id = salesman.id
WHERE customers.id = 2
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Zhe

79646714

Date: 2025-05-31 14:52:08
Score: 2
Natty:
Report link

data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAyAAAAZACAYAAAC7mXxHAAAAAXNSR0IArs4c6QAAIABJREFUeF7s3Qd4FNX6wPHf7G56L6QSeu9FmkhHUBRFEb2IXuWqiF2v5c+1Xwv2XrBcC3bFgoqCgIA0kd57CQkESO91d+b/PLO7yWY32U3YJJtk8x6f+9xkd+bMmXfOzL7nnDlnFMMwDAQBQUAQEAQEAUFAEBAEBAFBQBAQBFqAgNQC5xSnFAQEAUFAEBAEBAFBQBAQBAQBQUAQUAkIAyIagiAgCAgCgoAgIAgIAoKAICAICAItRkAYkBZDL04sCAgCgoAgIAgIAoKAICAICAKCgDAgog0IAoKAICAICAKCgCAgCAgCgoAg0GIEhAFpMfTixIKAICAICAKCgCAgCAgCgoAgIAgIAyLagCAgCAgCgoAgIAgIAoKAICAICAItRkAYkBZDL04sCAgCgoAgIAgIAoKAICAICAK

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Waris meer

79646711

Date: 2025-05-31 14:50:07
Score: 1.5
Natty:
Report link

There is now (2025-05-31) a very nice "suspend" button in the Azure Container App Job page:

screenshot of azure portal showing job suspend button

If you suspend the job, the "suspend" button turns into "resume":

screenshot of azure portal showing the resume button

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

79646709

Date: 2025-05-31 14:48:06
Score: 1.5
Natty:
Report link

There's a good and well-maintained VS Code extension now that does syntax highlighting (but not formatting): Wikitext

It looks great:

Image of vs code with wikitext extension

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

79646706

Date: 2025-05-31 14:47:06
Score: 0.5
Natty:
Report link
  1. is a given for everything I'd like to think of as text compression.

  1. Appending would be easy with compression stream/file formats with a clear code, as e.g. LZW; and some way to fill to a, say, octet(byte) boundary.
    Insertion is easy with a fixed dictionary.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): is a give
  • High reputation (-1):
Posted by: greybeard

79646696

Date: 2025-05-31 14:36:04
Score: 2
Natty:
Report link

I have been using this forum for years to successfully answer my own queries, but have never posted anything. I think I may have inadvertantly edited someone else's post instead of posting my own reply, apologies. This is what I intended to post:-

'To simply toggle a shape's visibility

Sub ToggleShape ()
    ActiveSheet.Shapes("MyShape").Visible = not ActiveSheet.Shapes("MyShape").Visible
End Sub

David

Reasons:
  • Contains signature (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: David