79797378

Date: 2025-10-23 03:58:05
Score: 2.5
Natty:
Report link
pip install dotenvcheck

Check this package at https://pypi.org/project/dotenvcheck/

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

79797377

Date: 2025-10-23 03:56:05
Score: 0.5
Natty:
Report link

When you got a range object from selection(like `myRange=mySelection.getRangeAt(0)`), send the range to this function:

function getSelectedText(range: Range):string {
    const div = document.createElement('div');
    div.appendChild(range.cloneContents());
    // we need get style by window.getComputedStyle(), 
    // so, it must be append on dom tree.
    // here is <body>,or some where that user can't see.
    document.body.appendChild(div);
    const it = document.createNodeIterator(div);
    let i;
    while (i = it.nextNode()) {
        // remove `user-select:none` node
        if (i.nodeType === Node.ELEMENT_NODE && window.getComputedStyle(i).userSelect === 'none') i.remove();
    }
    const cpt: string = div.innerText;
    div.remove();
    return cpt;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: callmenp

79797374

Date: 2025-10-23 03:43:02
Score: 3.5
Natty:
Report link

CanCanCan combined with Rolify can do wonders.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): CanCanCan
  • Low reputation (0.5):
Posted by: ldlgds

79797371

Date: 2025-10-23 03:40:01
Score: 0.5
Natty:
Report link

You don’t need jQuery for this — Angular animations can handle it cleanly.

Your main goal is to make one text slide out, another slide in, and swap them after the animation.

You can do that with a simple animation trigger and an event callback that updates the text when the animation finishes.

Here’s a minimal working example (Angular 19): import { Component } from '@angular/core';

import { bootstrapApplication } from '@angular/platform-browser';

import { trigger, state, style, transition, animate } from '@angular/animations';

import { provideAnimations } from '@angular/platform-browser/animations';

@Component({

selector: 'app-root',

animations: [

trigger('slide', \[

  state('up', style({ transform: 'translateY(-100%)', opacity: 0 })),

  state('down', style({ transform: 'translateY(0)', opacity: 1 })),

  transition('up \<=\> down', animate('300ms ease-in-out')),

\]),

],

template: `

\<h3\>Angular animation: sliding text\</h3\>

\<div class="box"\>

  \<div

    class="panel"

    \[@slide\]="state"

    (@slide.done)="onDone()"

  \>

    {{ currentText }}

  \</div\>

\</div\>

\<button (click)="animate()"\>Animate\</button\>

\<button (click)="reset()"\>Reset\</button\>

`,

styles: [`

.box { position: relative; height: 60px; overflow: hidden; }

.panel { position: absolute; width: 100%; text-align: center; font-size: 18px; background: #f6f6f6; }

button { margin: 6px; }

`],

})

export class App {

state: 'up' | 'down' = 'down';

currentText = 'Login';

nextText = 'Welcome 1';

count = 1;

animate() {

this.state = this.state === 'down' ? 'up' : 'down';

}

reset() {

this.count++;

this.nextText = \`Welcome ${this.count}\`;

this.animate();

}

onDone() {

if (this.state === 'up') {

  this.currentText = this.nextText;

  this.state = 'down'; // reset position

}

}

}

bootstrapApplication(App, { providers: [provideAnimations()] });

How it works:

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Component
  • Low reputation (1):
Posted by: Kawishka

79797370

Date: 2025-10-23 03:36:00
Score: 4
Natty:
Report link

Hi I have overcome this with this stackblitz.

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

79797368

Date: 2025-10-23 03:29:59
Score: 1
Natty:
Report link

Here is a convenient wrapper function:

def re_rsearch(pattern: re.Pattern[str], *args, **kwargs) -> re.Match[str] | None:
    m = None
    for m in pattern.finditer(*args, **kwargs):
        pass
    return m
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: enwioa

79797367

Date: 2025-10-23 03:24:58
Score: 1
Natty:
Report link

I checked with the JetBrains dotCover team, and they informed me that running coverage to IIS was supported until version 2025.2. In 2025.2, support for IIS was removed due to technical reasons. It may be restored in an upcoming release, likely in 2025.3, but this has not been confirmed yet.

Please find the link to the reference below.

Discussion link

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: KR Akhil

79797362

Date: 2025-10-23 03:02:53
Score: 0.5
Natty:
Report link

Here's a workaround solution I've came to disable NSScrollPocket:

public extension NSScrollView {
    func disableScrollPockets() {
        guard #available(macOS 26.0, *) else { return }
        setValue(0, forKey: "allowedPocketEdges")
        setValue(0, forKey: "alwaysShownPocketEdges")
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: goldwalk

79797340

Date: 2025-10-23 02:19:44
Score: 3.5
Natty:
Report link

Color preview

The official link: https://learn.microsoft.com/en-us/dotnet/api/system.windows.media.colors?view=windowsdesktop-9.0

(Must be at least 30 chars to post an answer.)

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

79797335

Date: 2025-10-23 01:48:37
Score: 3
Natty:
Report link

that error means u used an invalid flag --allow in your Docker build command and maybe u can try excecute this command with not that

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

79797333

Date: 2025-10-23 01:42:36
Score: 0.5
Natty:
Report link

Jekyll had the same issue with wdm gem in their own Gemfile, and at some point they changed it to:

gem 'wdm', '~> 0.1.1', :install_if => Gem.win_platform?
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Hakanai

79797332

Date: 2025-10-23 01:41:36
Score: 1.5
Natty:
Report link

Hey I have a example for you :

component child:

<script setup lang="ts">
  const emit = defineEmits(['update:email','update:password'])
  const handleEmail = (event: Event) => {
    const target = event.target as HTMLFormElement
    emit('update:email', target.value)
  }
  const handlePassword = (event: Event) => {
    const target = event.target as HTMLFormElement
    emit('update:password', target.value)
  }
</script>
<template>
  <div class="loginContainer">
    <input type="email" placeholder="Email address" @input="handleEmail" />
    <Divider/>
    <input type="password" placeholder="Password" @input="handlePassword" />
  </div>
</template>

component parent:

template:

<template>
  <div class="background">
    <span class="title">Sign in to ConnectCALL</span>        
    <div style="display: flex; flex-direction: column; gap: 20px; width: 500px; margin: 20px;">
      <FormsEmailAndPassword @update:email="handleEmail" @update:password="handlePassword" />
      <div style="text-align: end;">
        <ButtonLinkButton title="Forgot Password?" @click="redirectToRecoverPage" :isLoading="isLoading" />
      </div>
      <ButtonRegularButton title="Sign In" @click="initAuth" :isLoading="isLoading" />
      <ButtonRegularButton title="Register" variant="secondary" @click="redirectToSignUp" backgroundColor="white" :isLoading="isLoading" />
    </div>
  </div>
</template>

script:

const handleEmail = (value: string) => {   
    email.value = value    
  }
  const handlePassword = (value: string) => {
    password.value = value
  }

I hope thats help you

Reasons:
  • RegEx Blacklisted phrase (2): Hey I have
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jovanny Ruiz

79797330

Date: 2025-10-23 01:29:33
Score: 2.5
Natty:
Report link

If the passkey is for an account at the IdP which is a different party than your app, you need to use a system web view for the sign in.

https://passkeys.dev/docs/reference/android/#webviews

https://passkeys.dev/docs/reference/ios/#webviews

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

79797324

Date: 2025-10-23 01:19:31
Score: 5.5
Natty:
Report link

Are you trying to have the username underneath the items in the small design?

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

79797323

Date: 2025-10-23 01:17:30
Score: 4.5
Natty:
Report link

I just built https://www.commitcompare.dev/ to get the compare URL and diff files easily!

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

79797317

Date: 2025-10-23 00:57:26
Score: 1.5
Natty:
Report link

So It might be useful for someone else, So apparently JsonBin.io has a bad curl request info in documentation. Instead of double quotes "" use single quotes '' for the X-Master-Key or X-Access-Key header. and the Curl request passes without 401 error. Hope it helps somebody

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dren Mullafetahu

79797316

Date: 2025-10-23 00:57:26
Score: 2.5
Natty:
Report link

I am encountering the same issue. when running like this graph.microsoft.com/v1.0/me/messages?$filter=internetMessageId eq '<[email protected]>' i am getting a status code 404 not found. But i know the email is present in the inbox. Any lead on it will help.

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

79797315

Date: 2025-10-23 00:56:25
Score: 4.5
Natty:
Report link

I made a step by step video implementing Entra external ID. Maybe it can help you.

https://youtu.be/MKGIKcCpQ0o?si=32ubvjCKCL-R1fGz

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: EmiFala

79797314

Date: 2025-10-23 00:54:24
Score: 0.5
Natty:
Report link

The following improves upon just simple cp -a in that it does not include the devDependencies, so function.zip can be 10x smaller.

cp package.json dist/
npm install --prefix ./dist --omit=dev
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jjurach

79797308

Date: 2025-10-23 00:41:21
Score: 4
Natty: 5
Report link

Allowed IP subnet in storage account fixed the issue.. 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: Balan Nachimuthu

79797307

Date: 2025-10-23 00:40:21
Score: 0.5
Natty:
Report link

Try adding modal={true} to Popover

return (
    <Popover modal={true}>

This is because calendar becomes non interactive due to pointer event conflicts caused by how Radix UI (the underlying library) handles modal overlays and portals

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

79797298

Date: 2025-10-23 00:03:13
Score: 0.5
Natty:
Report link

I had a similar situation. I deleted a git, recreated it, refreshed it. All the files showed in Unstaged Changes. Plus and Double Plus did not appear to move them into Staged Changes.

So I Restarted Eclipse and then when I clicked inside an open editor for one of the files, suddenly the files all appeared in Staged Changes. That is because of the Link with Editor state being enabled. I was able to change files and move from Unstaged to Staged as usual. I was able to make the first commit at that point with no issues.

It seemed necessary to Restart to update the view, which seemed not to update otherwise. After that, clicking the Repository in the Git Repositories tab (View) would probably have revealed the same as clicking in an editor.

Eclipse 2025-09 (4.37.0) Build id: 20250905-1456.

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

79797294

Date: 2025-10-22 23:38:07
Score: 1
Natty:
Report link

If anyone encounters this issue, simply add symbolConfiguration to the DisplayRepresentation.Image as follows:

.init(systemName: name, tintColor: color, symbolConfiguration: .preferringMulticolor())

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: J.Doe

79797287

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

I recently started learning cpp and i encountered with this problem
which i searched for and understood it need some configurations on json file and building exe file of the code to be able to run and debug
which i found out C/C++ Compile Run
extention will automatically do it all
https://marketplace.visualstudio.com/items?itemName=danielpinto8zz6.c-cpp-compile-run

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

79797284

Date: 2025-10-22 23:09:58
Score: 0.5
Natty:
Report link

If you're using WorkManager, you may also need to specifically add the Foreground Service Type to the third parameter of the ForegroundInfo method:

ForegroundInfo(INSERT NOTIFICATION ID HERE, INSERT NOTIFICATION OBJECT HERE, ServiceInfo.FOREGROUND_SERVICE_TYPE_LOCATION)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user16118981

79797261

Date: 2025-10-22 22:15:47
Score: 1
Natty:
Report link

No, you cannot link enterprise and personal accounts because they use different user authentication.

Proof by cases:

Case 1: Attempt to link enterprise/personal via enterprise account.

Sign in to <enterprise>.github.com via LDAP. Upon sign in, select top right pfp button --> Add Account

Redirects you to enterprise sign in, personal account credentials invalid.

Case 2: Attempt to link enterprise/personal via personal account.

Sign in to github.com. Upon sign in, select top right pfp button --> Add Account

Redirects you to non-enterprise GH, enterprise creds invalid.

Try to get around it and get back to me if you do. Would love to show (obfuscated ofc) my enterprise work on personal in pursuit of that full green graph.

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

79797260

Date: 2025-10-22 22:14:47
Score: 1.5
Natty:
Report link

I was totally broken when the love of my life left me it was so hard for me i almost gave up if not for a friend who directed me to DR ODESHI a very good and powerful man who helped me bring back the love of my life and now he treat me with so much love and care, you can contact him via email [email protected] or

https://wa.me/+2347011823004

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

79797259

Date: 2025-10-22 22:14:47
Score: 2
Natty:
Report link

I actually created an extension to search all elements on requests and responses of queries. But it's only available as a Chrome extension.

It is able to search even through Payload. I created it as a week-end project recently and kept iterating on it since if it's of actually any help for you.

The chrome extension is called "Network Deepscan" and you can find it here

enter image description here

Reasons:
  • Blacklisted phrase (1): any help
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Knighto05

79797258

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

Reorder factor levels. For example:

XP_DATA$LANGUAGE = factor(XP_DATA$LANGUAGE, levels=c("Spanish", "Italian", "English")) 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Reinhold Kliegl

79797253

Date: 2025-10-22 21:59:43
Score: 5
Natty:
Report link

Currenlty, having the same issue with my Jetson Nano Dev. Kit.
Could you be so kind to send me the full file.

Got the same issue while compiling.

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

79797229

Date: 2025-10-22 21:04:29
Score: 1
Natty:
Report link

The issue wasn’t with the code itself, but with the expression. It should be 1/ng instead of ng.
That change makes a big difference, since using 1/ng keeps the values on a proper scale and ensures the determinant is non-zero.
After fixing it to 1/ng, it works as expected.

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

79797206

Date: 2025-10-22 20:29:21
Score: 2
Natty:
Report link

Try PHP CRUD API Generator. Expose your MySQL/MariaDB database as a secure, flexible, and instant REST-like API. Features optional authentication (API key, Basic Auth, JWT, OAuth-ready),
OpenAPI (Swagger) docs, and zero code generation.

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

79797196

Date: 2025-10-22 20:22:18
Score: 1
Natty:
Report link
Did you try

select title from recipe join ingredient as i1 on recipe.recipeId= i1.recipeId join ingredient as i2 on recipe.recipeId= i2.recipeId
where (i1.ingredient = "egg" and i1.amount = 2) and i2.ingredient = "water" ;

?
Reasons:
  • Whitelisted phrase (-2): Did you try
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Stanislav Kikot

79797187

Date: 2025-10-22 19:54:11
Score: 2
Natty:
Report link
windows_capture is faster than mss, at least in windows
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Cristian Jorge A. Kusch

79797185

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

I have resolved a similar issue by deleting and then re-adding the server folder of my project.

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

79797184

Date: 2025-10-22 19:49:09
Score: 0.5
Natty:
Report link

The solution is to add a stopBy: end right after the kind so it looks for not just immediate children but anything that can match, including any descendant and siblings.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Ilan Schemoul

79797175

Date: 2025-10-22 19:36:05
Score: 0.5
Natty:
Report link

The comments from Harold and amalloy are spot on: floats is the correct way to type hint a float array.

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

79797174

Date: 2025-10-22 19:35:05
Score: 1
Natty:
Report link

Well, if you created the Unix socket in $PWD, you cannot expect it to be in the location configured by postgresql.conf or the default location.

Try

createdb --host=$PWD mydb

Your are just horsing around and experimenting, right?

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

79797173

Date: 2025-10-22 19:33:04
Score: 2
Natty:
Report link

Ok, how to fix this to know: Use the bug to

complex it. Go to the account to authorize and manage some

of your apps by the admin's console.

If you are a manager or an admin, please enter

your full password. Then, after that, clear all

of your cookies, Ask an admin to allow you to unblock all

of your apps.

Please use a console, By a user console to be made by cards to

valid apps. tap the approved for you button, then tap sign in to

do in the steps. If you can't access this app blocked, then

go to the chrome web store.

Within a few minutes, the admin's console

will unblock all of the apps within your time.

Thanks! my app is all fine now!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: smayan

79797162

Date: 2025-10-22 19:17:59
Score: 8.5 🚩
Natty: 6
Report link

do you have any update on this, i am also having similar query on how to achieve this

Reasons:
  • Blacklisted phrase (1): update on this
  • Blacklisted phrase (1): how to achieve
  • RegEx Blacklisted phrase (2.5): do you have any
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: kalyan

79797158

Date: 2025-10-22 19:14:58
Score: 0.5
Natty:
Report link

In my opinion, this is a common trade-off with gSOAP. Static arrays give better performance but do not produce WSDL that is fully WS-I compliant due to the SOAP-ENC:Array dependency, which many validators reject. Using dynamic arrays (with __size and *ptr) keeps your WSDL clean and compliant but adds overhead. One solution is to use dynamic arrays in the interface (for WSDL compliance), but internally convert them to fixed-size arrays for processing — a kind of wrapper approach. It's not perfect, but it gives you the best of both worlds.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Off Nulls

79797156

Date: 2025-10-22 19:09:57
Score: 1
Natty:
Report link

You can open the Command Palette and search for “Preferences: Open Workspace Settings (JSON)”.

Then, to ensure auto-formatting is turned off, set the following setting to false:

"omnisharp.enableEditorConfigSupport": false
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ashutosh Mishra

79797152

Date: 2025-10-22 19:04:55
Score: 1
Natty:
Report link

You have mismatched version of airbyte-cdk and base image. In the new version of airbyte-cdk, the manifest_declarative_source.py has moved to "legacy" folder. Your base image is still importing the old path(No legacy folder exists).

You can do:

Downgrade CDK to match base image : airbyte-cdk = "6.59.0"

or

you can upgrade the latest base image 4.0+ (if its exists)

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

79797145

Date: 2025-10-22 18:54:53
Score: 2.5
Natty:
Report link
typeof spellTypes [number]['label']

will do, thanks to Jonrsharpe.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Arnaud

79797143

Date: 2025-10-22 18:48:51
Score: 0.5
Natty:
Report link

Use ImageMagick. You can either call it directly, or register the DLL and call it via VBA.

Whichever way you do it, this is the command you want to run:

identify -format %Q filename.jpg
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andrew

79797138

Date: 2025-10-22 18:46:51
Score: 1
Natty:
Report link

Your doubt is completely fine.

Please note that, MongoDB do not undo write operation on the successful written nodes members. It wait until the wtimeout time and return the writeConcern error or successful.

Technically, writeConcern is a acknowledgement mechanism if your data written to the how many member of mongod should confirm receipt to be consider as successful by the driver.

If a write concern fails, it often means that the write was accepted by the primary, but the requested level of acknowledgment was not recieved. Incase if you need only write should happen if writeConcern is successful, unfortunately there is no built-in option to "undo" writes if the write concern fails. Your application logic must check the write concern response and handle potential partial success if strict durability is essential.

Thanks, Darshan

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Darshan J

79797129

Date: 2025-10-22 18:37:48
Score: 1.5
Natty:
Report link

I was able to achieve something realllyyyy close with this custom clear segmented picker: https://gist.github.com/programVeins/c8af54eeaabe2406c81feb4bb606351d

The only missing thing is: the text/labels on the selected pill doesn't get distorted by the glass effect, as the pill is simply like an overlay that is swipable, tappable and bounces very well like the liquid glass that it is.

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

79797127

Date: 2025-10-22 18:35:47
Score: 1.5
Natty:
Report link

I found out how to fix it, not what causes it really.

it is fixed by adding

event.stopPropagation();

and

event.preventDefault();

It was triggered by some sort of propagation to the add button for some reason

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

79797125

Date: 2025-10-22 18:31:45
Score: 4
Natty:
Report link

Trying some of the methods mentioned here should help: https://github.com/orgs/community/discussions/162702

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

79797108

Date: 2025-10-22 18:05:38
Score: 1
Natty:
Report link

Go to your Docusign account, go to settings, find the Connect menu (left) and find the configuration for PowerAutomate and make sure you have the correct URL in there:enter image description here

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

79797104

Date: 2025-10-22 17:58:36
Score: 2
Natty:
Report link

In your form you have name and sur name but in the function you validating name and password due to which its giving password validation and redirecting to the same page so just add the password field in the form and it will work,

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

79797100

Date: 2025-10-22 17:54:35
Score: 2.5
Natty:
Report link

Not sure if there is still interest on this thread, but there is now a free tool that allows you to do this for Cornerstone or any other LMS that supports SCORM. It also supports xAPI, https://xapi.io/

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

79797099

Date: 2025-10-22 17:54:35
Score: 5
Natty: 6.5
Report link

A few years later, but this guide is a great explanation of what's going on:

https://community.databricks.com/t5/technical-blog/deep-dive-streaming-deduplication/ba-p/105062

Reasons:
  • Blacklisted phrase (1): this guide
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Juan Manuel Muñoz Betancur

79797093

Date: 2025-10-22 17:44:32
Score: 1.5
Natty:
Report link

terminal.integrated.copyOnSelection does the job — found from https://vanwollingen.nl/copy-text-from-your-vscode-terminal-by-selecting-it-b99f2a4e9709.

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

79797085

Date: 2025-10-22 17:29:28
Score: 1.5
Natty:
Report link

I encountered the same issue with my azure functions. Occasionally, I would get a 404 error when trying to access them. When I checked the Azure portal and refreshed the page, all my functions appeared to be gone almost as if they have been deleted. Redeploying the functions resolved the issue, and everything started working normally again. It was strange, but I noticed this tended to happen roughly once a month. It seems that if there are no active deployments for over a month, the functions might be completely removed from the active deployment.

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

79797076

Date: 2025-10-22 17:17:25
Score: 2
Natty:
Report link

Ah! What you’re seeing isn’t actually C++ behavior—it’s coming from whatever editor or IDE you’re using. Let me break it down carefully:

  1. C++ block comments:

    • Correct: /* this is a block comment */

    • Starts with /* and ends with */. Everything in between is ignored by the compiler.

  2. Your typo: /**

    • In plain C++, this is still just a block comment, because the compiler only cares that it starts with /* and ends with */. The extra * doesn’t change compilation.

    • So for the compiler, /** something */ is perfectly valid.

  3. Why your editor shows bold:

    • Many editors (VS Code, JetBrains IDEs, etc.) use syntax highlighting rules that interpret /** as the start of a documentation comment (like Doxygen in C++).

    • Documentation comments are meant to describe functions, classes, or variables, and IDEs often render them in bold, italic, or a different color to distinguish them from regular comments.

    • Example:

      /**
      * This is a doc comment
      */
      void foo() {}
      
      

      Here, /** triggers the editor to treat it as a doc comment.

In short: Your code is fine for compilation; the bold just means your editor thinks it’s a doc comment (Doxygen-style).

If you want, I can also show a quick table of all C++ comment types and how editors usually highlight them so you can avoid these visual surprises. Do you want me to do that?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: ChatGPT Bot

79797065

Date: 2025-10-22 17:05:22
Score: 3.5
Natty:
Report link

This is a user error; I had logic from the previous iteration of this using an enumeration value of "None", which became the default.

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

79797063

Date: 2025-10-22 17:01:21
Score: 2.5
Natty:
Report link

For rest api apigateway still supported only in AWS UI console but not using terraform code or flu. It is a pity

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

79797053

Date: 2025-10-22 16:54:18
Score: 3
Natty:
Report link

How about using a working variable like the following?

for (int wrow = numRows - 1; wrow >= 0; wrow--)
{
    var row = FlipVertical
                ? numRows - 1 - wrow
                : wrow;
    for (int wcolumn = 0; wcolumn < numColumns; wcolumn++)
    {
        var column = FlipHorizontal
                       ? numColumns - 1 - wcolumn
                       : wcolumn;
        Console.WriteLine($"{row} , {column}");
    }
}
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: motosann

79797044

Date: 2025-10-22 16:49:17
Score: 1.5
Natty:
Report link

try to build with


ng build --base-href ./

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ahmed hlaimi

79797043

Date: 2025-10-22 16:48:16
Score: 2.5
Natty:
Report link

What you want is basically

df.groupby('Dealer')['city'].apply(lambda x: x).reset_index()

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What you
  • Low reputation (1):
Posted by: Jhonnyred

79797042

Date: 2025-10-22 16:47:16
Score: 3.5
Natty:
Report link

Are you sure it's getting to call the "awardBadge" function? try printing "test" before calling the function to check if it gets there.

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

79797031

Date: 2025-10-22 16:39:13
Score: 2.5
Natty:
Report link

This is an old thread but if anyone is looking for a working webhook service for Spotify - checkout SpotifyWebhooks - it currently supports artist release webhook notifications with more coming soon :)

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

79797023

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

This is a bug in the firebase console for firestore. If you enter a specific time with :00 seconds in the firebase firestore console, and then view that same document in firestore in the Google cloud console, you’ll notice some number of milliseconds at the end.

The workaround is to input the timestamp in the Google cloud console instead. That lets you specify the milliseconds

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

79797019

Date: 2025-10-22 16:25:10
Score: 2
Natty:
Report link

Try to add your bundle ID to your JWT payload.
"bid": "com.example"

Reasons:
  • Low length (1.5):
  • No code block (0.5):
Posted by: Victoria Seniuk

79797001

Date: 2025-10-22 16:04:05
Score: 1
Natty:
Report link

Take a look at Blaze Persistence entity view

But as for me that approach will lead to some complexity and cause errors

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Javasick

79796997

Date: 2025-10-22 16:01:04
Score: 0.5
Natty:
Report link

If you have a conflicting setup between your local setup and container setup with ts, you can create a docker.tsconfig. To avoid trying to keep two different tsconfig files update to date, just have your docker version extend the local one.

Specifically:
docker.ts.config

{
  "extends": "./local.tsconfig.json",
  "compilerOptions": {
    "baseUrl": "." // change to whatever the directory difference is
  }
}

Then change the docker-compose to rename your local tsconfigs to their docker versions

docker.tsconfig -> tsconfig

tsconfig -> local.tsconfig

    volumes:
      - ./server/docker.tsconfig.json:/app/tsconfig.json
      - ./server/tsconfig.json:/app/local.tsconfig.json

This allows your docker.tsconfig to be loaded on just your container, while leaving your local setup as-is

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

79796994

Date: 2025-10-22 15:59:03
Score: 5
Natty:
Report link

it looks like having given my answer that i can not longer comment on others ..

A shout out to @markp-fuso for setting a very high bar for quality of answer.

I had not even considered your assumption C but your additional care for my solution is appreciated .. i am, of course, going to use your code to improve my own. Thanks for that

and a harsh raspberry to whoever down voted my own solution immediately as i posted it

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • Whitelisted phrase (-1): solution is
  • RegEx Blacklisted phrase (2): down vote
  • No code block (0.5):
  • User mentioned (1): @for
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: vulcan_

79796984

Date: 2025-10-22 15:51:00
Score: 0.5
Natty:
Report link

folks .. thanks for you input .. your suggestions plus a brutal afternoon of trial and many many errors led me to an answer in two parts:

pathToUpper() { printf '%s' ${1:-path} | tr [:lower:] [:upper:] ; }
pathlist() { local -n tmp=`pathToUpper $1`; echo $tmp | tr : \\n; }

# and then come the aliases
alias path='pathlist path'

alias llpath='pathlist ld_library_path'
alias libpath=llpath
alias pathlib=llpath
alias manpath='pathlist manpath'

i wanted to be able to type "path" to get $PATH listed out, one file path per line. I also wanted to be able to do the same for $MANPATH .. and $LD_LIBRARY_PATH .. etc .. you get the idea.

as i was denting the wall next to my desk i got tired of having to use caps lock to test the different path names so i conceived the idea of forcing the input to uppercase .. as all good env vars are in All Caps, right?

there does not seem to be a way to force upper case in a shell variable expansion; ${var,,} will change the contents of $var to lower case .. upper is perhaps possible but is more work to figure out. Laziness sets in when the Ibuprofen wears off.

And one cannot combine the lower case conversion with a default : ${1:-path,,} and ${${1:-path},,} fail to win bash shell favour .. but i found a way to combine default assignment with the need to evaluate the env var to get a colon ":" separated list of paths .. thus the pathToUpper function up there.

I do not need a general purpose toUpper function so i did not bother to factor one out .. so having a lower case "path" as a default works in this solution.

Then it was just playing with ways to append the resulting upper case env var name to a '$' and get the result evaluated into the needed list. That is what the pathlist function is doing in these steps:

  1. evaluate the input to have an uppercase path name

  2. echo that to get it expanded

  3. pipe the list of folder names to the tr command that converts the despised colons into the friendly, and more useful newline characters.

and Bob's your uncle .. at least, he might be. He certainly is not mine. But i have my solution

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

79796983

Date: 2025-10-22 15:50:00
Score: 1
Natty:
Report link

Thanks. I was encountering the same issue. However, it worked when I reinstalled and loaded the dplyr package. Although this caused the R environment to restart. That was a whole crash of all the objects saved in the environment.

Issue resolved, thanks - Ramesh

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ramesh Kathariya

79796974

Date: 2025-10-22 15:43:57
Score: 11.5 🚩
Natty:
Report link

I have the same issue but with a UIScrollView and not a UITableView and seems that any of the suggested solution (title + largeTitle, Top constraint to 0 to the superview) is working. Is any of you having the same issue ? Any solution found ?

Reasons:
  • Blacklisted phrase (1.5): Any solution
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (2): Any solution found ?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Me too answer (0): having the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Claudio Bo

79796965

Date: 2025-10-22 15:37:56
Score: 2
Natty:
Report link

Zedgraph allows you to build a histogram from stacking columns (pane.BarSettings.Type = ZedGraph.BarType.Stack;). Accordingly, you can divide the data set into several column colors by specifying the value 0 in the "wrong" colors, and then plot several histograms. It will look like a single histogram with multiple colors.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Алексей Оводков

79796943

Date: 2025-10-22 15:15:49
Score: 1
Natty:
Report link

maybe I'm late to the party, but I suggest to modify the following lines:

model = pipeline(model="facebook/wav2vec2-base-960h")
data = np.frombuffer(audio.get_raw_data())

to

model = pipeline("automatic-speech-recognition",model="facebook/wav2vec2-base-960h")
data = np.frombuffer(audio.get_raw_data(),dtype=np.int16)

That's the difference between my code and yours.

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

79796939

Date: 2025-10-22 15:14:49
Score: 1.5
Natty:
Report link

I actually ended up with this:

val webElement = fluentWait.until(ExpectedConditions.presenceOfElementLocated(By.id(field)).andThen(_.click))

FluentWait requires a Truthy return type and the Unit returned by click is considered Truthy.

If click() throws a StaleElementReferenceException then this is ignored by the FluentWait and we poll again.

I tested this with debug logging and I definitely see the click retrying if the WebElement is stale.

Can anyone comment as to the correctness and safety of this implementation?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
Posted by: Terry Dactyl

79796933

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

Xin chào cô và các bạn! Em rất vui khi hôm nay được có mặt ở đây để chia sẻ một câu chuyện thật ý nghĩa – câu chuyện về vị lãnh tụ vĩ đại của dân tộc Việt Nam, người đã dành trọn cuộc đời mình cho độc lập, tự do của Tổ quốc. Vâng, đó chính là Chủ tịch Hồ Chí Minh kính yêu, hay còn được chúng ta thân thương gọi là Bác Hồ.

Các bạn biết không, mỗi con người đều có cội nguồn, và Bác Hồ của chúng ta cũng vậy. Bác sinh ra tại làng Kim Liên, xã Nam Liên, huyện Nam Đàn, tỉnh Nghệ An – một vùng quê nghèo nhưng giàu truyền thống hiếu học và yêu nước. Chính từ mảnh đất đầy nắng gió ấy, đã nuôi dưỡng trong Người một ý chí kiên cường, một tấm lòng nhân hậu và khát vọng lớn lao dành cho dân tộc.

Ngay từ khi còn nhỏ, Bác đã chứng kiến cảnh nhân dân sống lầm than dưới ách thống trị của thực dân Pháp. Những phong trào yêu nước trước đó, dù dũng cảm và đầy nhiệt huyết, nhưng đều thất bại vì chưa tìm ra được con đường đúng đắn. Chính điều đó đã thôi thúc Bác suy nghĩ: “Làm sao để dân ta được tự do, đất nước ta được độc lập?”

Với khát vọng cháy bỏng ấy, năm 1911, chàng thanh niên Nguyễn Tất Thành đã rời bến cảng Nhà Rồng trên con tàu Amiral Latouche-Tréville, mang theo ước mơ lớn lao là tìm đường cứu nước. Hành trình ấy không chỉ là cuộc ra đi, mà còn là bước ngoặt của lịch sử dân tộc Việt Nam.

Trong suốt 30 năm bôn ba ở nước ngoài, Bác làm đủ nghề – từ phụ bếp, thợ ảnh, đến dạy học. Nhưng dù ở đâu, Người vẫn luôn học hỏi, nghiên cứu, và quan sát cách các dân tộc khác đấu tranh giành độc lập. Bác nhận ra rằng chỉ có con đường cách mạng vô sản theo chủ nghĩa Mác – Lênin mới giúp dân tộc ta thoát khỏi xiềng xích nô lệ.

Sau khi tìm ra con đường ấy, Bác đã không quản ngại gian khổ, vượt qua muôn trùng khó khăn để truyền bá tư tưởng cách mạng về quê hương. Và đến ngày 28 tháng 1 năm 1941, sau 30 năm xa Tổ quốc, Bác trở về Việt Nam, đặt chân lên mảnh đất Pác Bó – Cao Bằng. Ở nơi núi rừng hoang sơ ấy, Người đã lãnh đạo phong trào cách mạng, gây dựng cơ sở, chuẩn bị cho ngày toàn dân vùng lên giành độc lập.

Và rồi, thời khắc thiêng liêng nhất cũng đến. Ngày 2 tháng 9 năm 1945, tại Quảng trường Ba Đình lịch sử, Chủ tịch Hồ Chí Minh trịnh trọng đọc Tuyên ngôn Độc lập, khai sinh ra nước Việt Nam Dân chủ Cộng hòa. Giọng nói của Bác khi ấy – trầm ấm, mạnh mẽ, vang vọng khắp non sông – như thổi bùng ngọn lửa tự hào trong lòng hàng triệu người dân Việt Nam.

Sau Cách mạng Tháng Tám, dù trở thành Chủ tịch nước, Bác vẫn giữ lối sống giản dị và gần gũi. Một ngôi nhà sàn nhỏ, vài bộ quần áo kaki đã bạc màu, những bữa cơm đạm bạc với cá kho, rau luộc – tất cả đều thể hiện tấm lòng khiêm nhường của Người. Bác từng nói:

\> “Tôi chỉ có một ham muốn, ham muốn tột bậc, là làm sao cho nước ta được hoàn toàn độc lập, dân ta được hoàn toàn tự do, ai cũng có cơm ăn áo mặc, ai cũng được học hành.”

Lời nói ấy giản dị, nhưng chứa đựng cả trái tim lớn vì dân, vì nước.

Rồi thời gian cứ thế trôi, Bác đã cống hiến trọn đời mình cho cách mạng. Đến ngày 2 tháng 9 năm 1969, Bác ra đi mãi mãi, để lại niềm tiếc thương vô hạn trong lòng toàn dân tộc. Ngày ấy, cả đất nước lặng đi, hàng triệu giọt nước mắt rơi xuống, nhưng hình ảnh và tư tưởng của Người vẫn sống mãi cùng non sông Việt Nam.

Ngày nay, dù chúng ta không còn được gặp Bác, nhưng tấm gương đạo đức, phong cách sống và tinh thần yêu nước của Người vẫn là ngọn đuốc soi đường cho thế hệ trẻ. Mỗi khi nhìn lên ảnh Bác, ta như được nhắc nhở phải sống tốt hơn, học tập và làm việc vì một Việt Nam giàu mạnh, văn minh và hạnh phúc.

Cuộc đời của Bác tuy hữu hạn, nhưng những gì Bác để lại thì vô hạn. Bác là biểu tượng của lòng yêu nước, của ý chí kiên cường và của tình yêu thương bao la.

Em xin kết thúc podcast của mình tại đây. Cảm ơn cô và các bạn đã lắng nghe! Mong rằng qua câu chuyện hôm nay, chúng ta sẽ thêm hiểu, thêm yêu và tự hào về vị lãnh tụ kính yêu – Chủ tịch Hồ Chí Minh – người đã dành trọn cuộc đời mình cho dân tộc Việt Nam.

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

79796922

Date: 2025-10-22 14:58:44
Score: 5
Natty:
Report link

I am also facing this issue !!

Reasons:
  • Blacklisted phrase (1): also facing this
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Laddu Gopal

79796920

Date: 2025-10-22 14:57:44
Score: 2.5
Natty:
Report link

after carefully reviewing your java code, I arranged it in a way that it is working.

What was wrong:
- URL: The URL that you are using can be helpful, but it can often give some errors if resource is not found or correctly located. so Instead, we pass new File into getAudioInputStream's constructor and as an path we use that String 'path' from the constructor.
- Exception Handling: Adding Exceptions like UnsupportedAudioFileException can be fine but I would prefer to shorten it.
- Thread: this is important part because audio playing stops if there is no GUI or any Thread because audio is not waiting. For that, we can either use Scanner or Thread.sleep(clip.getMicrosecondLength()/1000);
- Calling: Don't forget to call stop or play method before playing an Audio file at the right place.

If you want full fixed code, Please contact me.

Reasons:
  • Blacklisted phrase (0.5): contact me
  • Blacklisted phrase (1): Please contact me
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: IosebiGames

79796907

Date: 2025-10-22 14:44:41
Score: 2
Natty:
Report link

I am also looking for a response to this one. Seems to be an experimental ts plugin flag that shows errors but It doesn't seem to show all editor reported squiggles.

"typescript.tsserver.experimental.enableProjectDiagnostics": true

Reasons:
  • Blacklisted phrase (2): I am also looking
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Ghita

79796904

Date: 2025-10-22 14:39:39
Score: 2.5
Natty:
Report link

please find solution here: https://mkyong.com/maven/maven-error-invalid-target-release-17/

1. Find out the Java version in Maven: mvn -version

2. Solution – Update JAVA_HOME (environment variable) with the one you specified in pom

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

79796887

Date: 2025-10-22 14:27:35
Score: 0.5
Natty:
Report link

You correctly identified the issue. In BigQuery (and standard SQL), if you want to select a column alongside an aggregate like COUNT(*), you need to include that column in a GROUP BY clause. For example:

SELECT usertype, COUNT(*)
FROM `project.dataset.table`
GROUP BY usertype;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alparslan ŞEN

79796879

Date: 2025-10-22 14:23:34
Score: 2.5
Natty:
Report link

On MAc OS, if you have store key password, you can go to "Trousseaux d'accès".

You search "Keystore", all used password will be accessible, also key name and key path.

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

79796873

Date: 2025-10-22 14:18:33
Score: 1
Natty:
Report link

You shouldn't close your connection. You will use the same connection for future queries this process of closing and opening it again will just consume time and resources. Better if you have a persistent connection and close it only when your program ends.

It's like working on a restaurant and everytime you end to cook something you throw your utils and go to a store to buy them again.

It would be to have a connection pool which is just a group of connections that are already connected and could be used to serve more queries. This is pretty normal and it's a pattern that many frameworks and libraries implement under the hood.

I recommend you to read more about a pattern named object pooling and moongose official docs to create a connection pool.

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

79796866

Date: 2025-10-22 14:14:31
Score: 1
Natty:
Report link

Terraformer datadog provider hasn't been updated in 3 years:

https://github.com/GoogleCloudPlatform/terraformer/tree/master/providers/datadog

I recommend using Dogmover's successor, github.com/DataDog/datadog-sync-cli, for this purpose.

# Import resources from parent organization and store them locally
$ datadog-sync import \
    --source-api-key="..." \
    --source-app-key="..." \
    --source-api-url="https://api.datadoghq.com"
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Roman Sheydvasser

79796863

Date: 2025-10-22 14:10:30
Score: 2
Natty:
Report link
windows_capture python module is the fastest
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Cristian Jorge A. Kusch

79796850

Date: 2025-10-22 13:57:26
Score: 9.5 🚩
Natty: 6.5
Report link

has anybody got any solutions for this ? Still getting the same thing.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (2): getting the same thing
  • RegEx Blacklisted phrase (2): any solutions for this ?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: pulkit duggar

79796847

Date: 2025-10-22 13:54:25
Score: 10.5 🚩
Natty: 5
Report link

Did you manage to resolve this issue?
I’m facing the same problem — android:usesCleartextTraffic="true", but it doesn’t seem to work in a MAUI Blazor Hybrid project.

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • RegEx Blacklisted phrase (3): Did you manage to resolve this
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Lazar Kovacevic

79796839

Date: 2025-10-22 13:44:22
Score: 2.5
Natty:
Report link

If you configure BMAD correctly, you can ask it to for instructions to operate itself. If you put anything in its main folder it should be able to read it.

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

79796836

Date: 2025-10-22 13:44:22
Score: 1
Natty:
Report link

It should be possible with @Qualifier e.g.: so

@Bean(autowireCandidate = false, defaultCandidate = false)
@Qualifier("myBean")
public MyBeanClass myBean() {
  return new MyBeanClass();
}

@Bean
public MyAnotherBean myAnotherBean(@Qualifier("myBean") MyBeanClass myBean) {
  return new MyAnotherBean(myBean);
}

You can find more information about @Qualifier here: https://docs.spring.io/spring-framework/reference/core/beans/annotation-config/autowired-qualifiers.html

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

79796830

Date: 2025-10-22 13:37:20
Score: 1
Natty:
Report link

Fixed it for me by setting the time zone in java (matching the one in my oracle):

-Duser.timezone=Europe/Berlin

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

79796829

Date: 2025-10-22 13:37:19
Score: 9.5 🚩
Natty: 6
Report link

How much time does this step require? Thanks in advance

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Luca Guarrera

79796821

Date: 2025-10-22 13:29:16
Score: 3.5
Natty:
Report link

it's **** still exist in google chrome 141 in linux :))))))))))) . i think chrome developer rebase on wrong brench when developing.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Filler text (0.5): )))))))))))
  • Low reputation (1):
Posted by: Mohammad Mohsen Ahmadi

79796820

Date: 2025-10-22 13:27:15
Score: 1.5
Natty:
Report link

Just add a new ENV field - KC_PROXY_HEADERS=xforwarded . It helped me.

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

79796816

Date: 2025-10-22 13:25:15
Score: 0.5
Natty:
Report link

For MySQL 8.0.14+ you can also do this with LATERAL by using order and limit in the subquery.

SELECT CONCAT(title, ' ', forename, ' ', surname) AS name
FROM t_customer c,
LATERAL (
    SELECT title, forename, surname
    FROM t_customer_data
    WHERE customer_id = c.customer_id
    ORDER BY id DESC
    LIMIT 1
) d
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: alwaysmakingjava

79796814

Date: 2025-10-22 13:23:14
Score: 1.5
Natty:
Report link

Check your Transporter version. We noticed that the issue occurs only in the latest version (1.4) of Transporter, and not in older versions such as 1.3.4 or 1.3.3. Try downgrading to an earlier version of Transporter and check if the issue persists.

If you prefer to use the latest version of Transporter (1.4), you should also update to the latest version of the Square In-App Payments SDK. I believe this will help resolve the issue.

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

79796813

Date: 2025-10-22 13:22:14
Score: 3.5
Natty:
Report link

Just declare the result variable as the type you need. Don't depend on shared folklore to communicate to reader.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Simple Simon

79796812

Date: 2025-10-22 13:21:13
Score: 1
Natty:
Report link

I suspect I know the answer, but if anyone knows better, please correct.

The issue is that the ngx_http_proxy_connect_module also requires the ngx_http_ssl_module. It's not documented as far as I can see on the github for the ngx_http_proxy_connect_module. How I corrected mine was to rerun the configuration command with this...

--with-http_ssl_module.

So my command looks like this.

./configure --prefix=/usr/local/nginx --add-dynamic-module=ngx_http_proxy_connect_module-0.0.5 --with-http_ssl_module

After that my poxy started working.

Reasons:
  • Blacklisted phrase (1): anyone knows
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user2519653

79796789

Date: 2025-10-22 13:00:08
Score: 3.5
Natty:
Report link

Yes! There's a Python debugger called pdb just for doing that! check here

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

79796782

Date: 2025-10-22 12:54:07
Score: 2
Natty:
Report link

When available, libraries from web frameworks do this properly, such as http://static.springsource.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/util/UriUtils.html, see Java and RFC 3986 URI encoding

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • High reputation (-2):
Posted by: tkruse

79796773

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

For uv this worked: for me:

uv add "psycopg[binary]"

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

79796772

Date: 2025-10-22 12:43:03
Score: 5
Natty:
Report link

That actually worked! But I don't get why. Yes, it is correct, that I wanted to estimate a man, with the first education level, from an unknown citizen class, who is 20 years old, and his political views are "Reform". But how do the levels work here?

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