79729409

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

What put me on the right track was thinkOfaNumber's answer to this question.

What I was having trouble with was that I should have used was

"$HOME\.android\debug.keystore"

NOT %HOMEPATH%\.android\debug.keystore

NOT $env:HOMEPATH\.android\debug.keystore

on PowerShell on Windows. The one with %HOMEPATH% for some reason still outputted a SHA1 without warning me that the file was not found.

$ErrorActionPreference = 'Stop'
[string]$JdkRoot = Resolve-Path "C:\Program Files\Android\Android Studio\jbr"
[string]$JdkBin = Resolve-Path "$JdkRoot\bin"
[string]$DebugKeystoreFilePath = Resolve-Path "$HOME\.android\debug.keystore"
$ErrorActionPreference = 'Continue'
& "$JdkBin/keytool" -exportcert -alias androiddebugkey -keystore $DebugKeystoreFilePath -storepass android | openssl sha1 -binary | openssl base64 | Set-Clipboard; Write-Host "Copied to clipboard."

See also How to see Gradle signing report

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Elijah Shadbolt

79729404

Date: 2025-08-08 06:38:09
Score: 1.5
Natty:
Report link

Thank you @Jimi to mention the root of problem. As you said, Handle of control was not created. DGV has a LoadingScreen when user wants to assign value as DataSource but, this screen is a form and must cover entire area of DGV. Meanwhile, this screen is visible in front of other controls and since the actual size and position of hidden DGV is not accessible, finally LoadingScreen is displayed in wrong size and position.

Solution

Inside code lines where the LoadingScreen must be shown, IsVisible method can return actual situation to decide possibility of showing LoadingSreen. As you can see in the following code, two factor for this purpose is checked: 1) IsHandleCreated (As you mentioned) 2) DGV is visible on screen.

public static Form Create(
    Control control,
    bool coverParentContainer = true,
    bool coverParentForm = false,
    string title = "Loading...",
    double opacity = 0.5)
{

    var frm = new CesLoadScreen();
    frm._title = title;
    frm.Opacity = opacity;

    if (!IsVisible(control))
        return frm;

    SetLoadingScreenSize(frm, coverParentContainer, coverParentForm, control);

    control.Resize += (s, e) 
                => SetLoadingScreenSize(frm, coverParentContainer, coverParentForm, control);

    frm.Show(control.FindForm());
    Application.DoEvents();

    return frm;
}

public static bool IsVisible(Control control)
{
    Rectangle screenBounds = Screen.FromControl(control).Bounds;
    Rectangle controlBounds = control.RectangleToScreen(control.ClientRectangle);

    bool isOnScreen = screenBounds.IntersectsWith(controlBounds);

    if (!control.IsHandleCreated || !isOnScreen)
        return false;

    if (!control.Visible)
        return false;

    return true;
}
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Jimi
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Hadi Mazareei

79729402

Date: 2025-08-08 06:28:07
Score: 2
Natty:
Report link

With intellij you can use Exclude classes and packages option in Run configuration -> modify options.

enter image description here

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: shailesh patil

79729401

Date: 2025-08-08 06:27:07
Score: 0.5
Natty:
Report link

I use a module package working fine. the below step:

for html & core embla, you can get from this URL: https://codesandbox.io/p/sandbox/ffj8m2?file=%2Fsrc%2Fjs%2Findex.ts

npm install embla-carousel --save

import { AfterViewInit, Component } from '@angular/core';
import EmblaCarousel, { EmblaOptionsType } from 'embla-carousel';
import Autoplay from 'embla-carousel-autoplay';
import ClassNames from 'embla-carousel-class-names';
import {
    addDotBtnsAndClickHandlers,
    addPrevNextBtnsClickHandlers,
    setupTweenOpacity,
} from '../../../../core/embla';

export class CarouselComponent implements AfterViewInit {
    emblaOptions: Partial<EmblaOptionsType> = {
        loop: true,
    };
    plugins = [Autoplay(), ClassNames()];

    ngAfterViewInit(): void {
        const emblaNode = <HTMLElement>document.querySelector('.embla');
        const viewportNode = <HTMLElement>emblaNode.querySelector('.embla__viewport');
        const prevBtn = <HTMLElement>emblaNode.querySelector('.embla__button--prev');
        const nextBtn = <HTMLElement>emblaNode.querySelector('.embla__button--next');
        const dotsNode = <HTMLElement>document.querySelector('.embla__dots');

        const emblaApi = EmblaCarousel(viewportNode, this.emblaOptions);
        const removeTweenOpacity = setupTweenOpacity(emblaApi);
        const removePrevNextBtnsClickHandlers = addPrevNextBtnsClickHandlers(
            emblaApi,
            prevBtn,
            nextBtn,
        );
        const removeDotBtnsAndClickHandlers = addDotBtnsAndClickHandlers(emblaApi, dotsNode);

        emblaApi
            ?.on('destroy', removeTweenOpacity)
            .on('destroy', removePrevNextBtnsClickHandlers)
            .on('destroy', removeDotBtnsAndClickHandlers);
    }
}
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abudy Gold

79729400

Date: 2025-08-08 06:27:06
Score: 10
Natty: 5.5
Report link

I am facing the same problem on my website. Somebody please help. https://4indegree.com

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • RegEx Blacklisted phrase (3): please help
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Arun

79729394

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

context is present in the request parameters as you can see here in the v19 docs: https://v19.angular.dev/api/common/http/HttpResourceRequest

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

79729388

Date: 2025-08-08 06:09:58
Score: 2
Natty:
Report link

=cell("filename")

will return circular reference. I upgraded to 365 and it started.

Try it on a brand new file, totally blank sheet. Nothing will show until saved, after which you will get the answer, but if you have a lot of these throughout your spreadsheet, you will will the circular reference popping up more and more.

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: randall

79729386

Date: 2025-08-08 06:05:57
Score: 2
Natty:
Report link

Yes, you have to buy a real ESP32/Arduino board to run your code. The cause of the error is because you did not connect any board or else if you are trying to work with arduino without having a physical board you can try a simulator like https://www.tinkercad.com/circuits

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

79729381

Date: 2025-08-08 06:02:56
Score: 3
Natty:
Report link

I my casen this error occure because i have tried to create whe same Index twice...

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: hamil.Dev

79729375

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

Another possibility would be:

select user_id, first_name, last_name
from table_name
where user_id between 1 and 3;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bending Rodriguez

79729374

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

To filter oci custom images using --query to filter out Custom "operating-system": "Custom"

oci compute image list --compartment-id ocid1.tenancy.oc1..xxxxxxxxxxxxxxxxxxxxxxxxxxxxx --all --auth instance_principal --query "data[?\"operating-system\" == 'Custom']" --output table

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  • Low reputation (0.5):
Posted by: Ck_7

79729372

Date: 2025-08-08 05:46:53
Score: 0.5
Natty:
Report link

I wager this is about versions of kotlin and the order in which to have ksp in your project.

This is how I did it:

my current kotlin version is 2.02

Step 1: add this to your to your module build.gradle.kts as a plugin

id("com.google.devtools.ksp") version "2.2.0-2.0.2"

IMPORTANT: then sync your project

Step 2: then add these to your implementation:

implementation("com.google.dagger:dagger-compiler:2.51.1")
ksp("com.google.dagger:dagger-compiler:2.51.1")

update to latest version then sync your project.

DO NOT ADD ALL THE CODE AT ONCE THEN SYNC YOUR BUILD WILL FAIL LIKE THE WAY MINE DID. Am using Android Studio Narwhal 2025.1.2

Cheers

Reasons:
  • Blacklisted phrase (1): Cheers
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: mello

79729370

Date: 2025-08-08 05:44:52
Score: 1
Natty:
Report link

Use a @property instead of a method

This makes "is_locked" behave like a variable, not a function:

class Lock:
    def __init__(self):
        self.key_code = "1234"
        self._is_locked = True  # underscore to mark internal

    def lock(self):
        self._is_locked = True

    def unlock(self, entered_code):
        if entered_code == self.key_code:
            self._is_locked = False
        else:
            print("Incorrect key code. Lock remains locked.")

    @property
    def is_locked(self):
        return self._is_locked


def main():
    my_lock = Lock()

    print("The lock is currently locked.")
    while my_lock.is_locked:  # no () needed now
        entered_code = input("Enter the key code: ")
        my_lock.unlock(entered_code)

    print("The lock is now unlocked.")
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @property
  • Low reputation (1):
Posted by: Ammar Yazdani

79729364

Date: 2025-08-08 05:39:51
Score: 6
Natty: 7
Report link

Anser from Raymond Chen

How can I detect that Windows is running in S-Mode?

https://devblogs.microsoft.com/oldnewthing/20250807-00/?p=111444

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: BugMeNot114514

79729359

Date: 2025-08-08 05:36:50
Score: 3
Natty:
Report link

I've developed a Terraform script intended to execute the three key steps:

resource "azuread_application" "test-app" {
  display_name                   = "test-app"
  identifier_uris                = ["https://test.onmicrosoft.com"]
  sign_in_audience               = "AzureADandPersonalMicrosoftAccount"

  api {
    requested_access_token_version = 2
  }
    
  single_page_application {
    redirect_uris = ["https://redirect-uri.com/"]
  }

  required_resource_access {
    resource_app_id = data.azuread_application_published_app_ids.well_known.result.MicrosoftGraph
    resource_access {
      id   = data.azuread_service_principal.msgraph.oauth2_permission_scope_ids["offline_access"]
      type = "Scope"
    }
    resource_access {
      id   = data.azuread_service_principal.msgraph.oauth2_permission_scope_ids["openid"]
      type = "Scope"
    }
  }
}

resource "azuread_service_principal" "test_app_service_principal" {
  client_id = azuread_application.test-app.client_id
}

resource "azuread_service_principal_delegated_permission_grant" "test_app_scopes_permission_grant" {
  service_principal_object_id          = azuread_service_principal.test_app_service_principal.object_id
  resource_service_principal_object_id = data.azuread_service_principal.msgraph.object_id
  claim_values                         = ["offline_access", "openid"]
}

However, I'm still encountering the same error during execution.

When I create the app by sending Graph API requests via Postman, everything works as expected. The script runs within a pipeline that uses the same credentials to obtain the token for Postman requests.

Additionally, the Azure Active Directory provider is configured with credentials from Azure B2C and not Azure AD so that aspect should be correctly set up.

provider "azuread" {
  client_id     = data.azurerm_key_vault_secret.ado_pipeline_sp_client_id.value
  client_secret = data.azurerm_key_vault_secret.ado_pipeline_sp_client_secret.value
  tenant_id     = data.azurerm_key_vault_secret.b2c_tenant_id.value
}

Is this script missing something? Is there any difference between using the Graph API requests or terraform for creating app registrations?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mateusz Bas

79729358

Date: 2025-08-08 05:36:50
Score: 1.5
Natty:
Report link

No such file or directory: 'C'

In your error, Python thinks your file path is just "C".

This usually happens when the path you pass to open() is incomplete, incorrectly formatted, or broken up into pieces before open() gets it.

The "..." you’ve put in your code ,is not valid Windows paths can’t have "..." as a directory placeholder.
You must use the full exact path to the file.

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

79729354

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

Yes, you can run process type -Background and process compatibility - cross-platform on Kubernetes!

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

79729345

Date: 2025-08-08 05:17:46
Score: 2
Natty:
Report link

http://googleusercontent.com/generated_image_content/0 Create an image A lay practitioner who lives humble and enjoying in accordance without the principle such as "when hungry; he eats when tired, he sleeps" at a hut beside lake surrounded deep mountains in late Goryeo Dynasty.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 손인호

79729342

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

When I moved to node 20.19.4, problem solved.

I think this should be documented in primeng website.

Thank you,

Zvika

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (0.5):
Posted by: Zvi Vered

79729336

Date: 2025-08-08 05:07:43
Score: 4
Natty: 4.5
Report link

use this> Process an Authorization Reversal

**POST:**https://apitest.cybersource.com/pts/v2/payments/{id}/reversals

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

79729329

Date: 2025-08-08 05:00:42
Score: 1
Natty:
Report link

No need to use a regex for this at all! They are a solution of "last resort" - certainly they are very powerful, but they are also resource heavy! As a rule of thumb, you're better off using PostgreSQL's built-in functions in preference to regexes.

Sorry about the state of the results parts of my post (see fiddle) but this new SO interface is God awful!

So, I did the following (all of the code below is available on the fiddle here):

SELECT
  label,
  REVERSE(label),
  SPLIT_PART(REVERSE(label), ' ', 1),
  RIGHT(SPLIT_PART(REVERSE(label), ' ', 1), 1),
  CASE
    WHEN RIGHT(SPLIT_PART(REVERSE(label), ' ', 1), 1) IN ('R', 'W')  
      THEN 'KO'
    ELSE 'OK'
  END AS result,
  should
FROM
  t;

Result:

label reversesplit_partrightresultshouldThomas Hawk AQWS456654SWQA kwaH samohT654SWQAAOKOKCecile Star RQWS456654SWQR ratS eliceC654SWQRRKOKOMickey Mouse WQWS456654SWQW esuoM yekciM654SWQWWKOKODonald Duck SQWS456654SWQS kcuD dlanoD654SWQSSOKOK

It's more general than the other code, because it'll pick out the first character of the last string, no matter how many strings precede the final (target) string.

So, to check my assertion that the "ordinary" functions are better than regexes, I wrote the following function (https://stackoverflow.com/a/14328164/470530) (Erwin Brandstetter to the rescue yet again - I also found this thread (<https://stackoverflow.com/questions/24938311/create-a-function-declaring-a-predefined-text-array >) helpful).

CREATE OR REPLACE FUNCTION random_pick(arr TEXT[])
  RETURNS TEXT
  LANGUAGE sql VOLATILE PARALLEL SAFE AS
$func$
  SELECT (arr)[trunc((random() * (CARDINALITY($1)) + 1))::int];
$func$;

It returns a random element from an array.

So, I have to construct a table to test against - you can see the code in the fiddle - the last few lines are:

SELECT
  random_pick((SELECT w1 FROM words_1)) || ' ' ||
  random_pick((SELECT w1 FROM words_1)) || ' ' ||
  random_pick((SELECT w2 FROM words_2)) AS label
FROM 
  GENERATE_SERIES(1,25)
)
SELECT
  *,
  CASE
    WHEN RIGHT(SPLIT_PART(REVERSE(t.label), ' ', 1), 1) IN ('R', 'W')  
      THEN 'KO'
    ELSE 'OK'
  END AS result
FROM
  t;

Result (snipped for brevity):

labelresultMouse Mouse WQWS456KOStar Cecile WQWS456KOMickey Star SQWS456OKStar Cecile RQWS456KOStar Hawk AQWS456OK

I also test to see that my records are inserted and that the data looks OK1

Now, down to the nitty-gritty! I'm using PostgreSQL 18 beta because I want to look at the new features in EXPLAIN ANALYZE VERBOSE. Here's the output of that functionality for my query:

Seq Scan on public.lab (cost=0.00..2369.64 rows=86632 width=64) (actual time=0.013..49.298 rows=100000.00 loops=1)  Output: label, CASE WHEN ("right"(split_part(reverse(label), ' '::text, 1), 1) = ANY ('{R,W}'::text[])) THEN 'KO'::text ELSE 'OK'::text END  Buffers: shared hit=637Planning Time: 0.027 msExecution Time: 54.068 ms

Note: Planning Time: 0.024 ms  Execution Time: 50.476 ms

The output for Guillaume's query are similar (trumpets sound) except for the last 2 lines:

Planning Time: 0.044 ms  Execution Time: 150.038 ms

Over a few runs, my query takes approx. 33 - 35% of the time that his does. So, my original assertion holds true - regexes - Caveat Emptor!

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vérace

79729328

Date: 2025-08-08 05:00:42
Score: 1.5
Natty:
Report link

You can install it easily like below (I've tried it in Fedora 42),

1. git clone https://github.com/sarim/ibus-avro.git

2. cd ibus-avro

3. sudo dnf install ibus-libs

4. sudo dnf group install development-tools

5. aclocal && autoconf && automake --add-missing

6. ./configure --prefix=/usr

7. sudo make install

Then just Press super (windows) key and search for Inuput method selector, then scroll below and click ... button for other language. Now you can search for avro or just select Bengali and select iavro.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mina Shoaib Rahman Saikat

79729318

Date: 2025-08-08 04:48:38
Score: 3.5
Natty:
Report link

When I moved to node 22.17.1, problem solved. Angular was installed and a new project was created.

Thank you,

Zvika

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (0.5):
Posted by: Zvi Vered

79729313

Date: 2025-08-08 04:37:36
Score: 1.5
Natty:
Report link

I tried answering you on mozilla but moderated new user there, so here again:

Currently not possible it seems. https://docs.google.com/document/d/1i3IA3TG00rpQ7MKlpNFYUF6EfLcV01_Cv3IYG_DjF7M/edit?tab=t.0

Problem is that it runs in a whole other process - you can copy buffer content ofc but you cannot access shared buffers from the main thread.

So even if you force enable usage its unlikely you get the same data in the buffer.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Krei.se

79729311

Date: 2025-08-08 04:35:35
Score: 4
Natty: 5
Report link

1.- u need config of issuer<processors???>

2.-u need certificate rsa from merchant<private key>

final - You need to define currency and brands <no all>

Reasons:
  • Blacklisted phrase (1): ???
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jose

79729304

Date: 2025-08-08 04:07:30
Score: 0.5
Natty:
Report link

Is the issue just execution_timeout set to a low value? For me it was giving the zombie error but setting a higher value for execution_timeout solved it.

from datetime import timedelta

create_plots_task = PythonOperator(
    task_id='create_plots',
    python_callable=create_plots,
    provide_context=True,
    execution_timeout = = timedelta(minutes=120)
    dag=dag,
)
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is the is
Posted by: MikeKulls

79729296

Date: 2025-08-08 03:50:25
Score: 6
Natty: 6
Report link

Now can this be used to get into someone’s cell phone. I have a hacker who has taken over 4 emails and a bunch of my influencer accts. I believe she connects through my WiFi. Is any of this possible. I get reports daily in my file system and don’t know how to stop this. Someone please help

Thank you

Nancyb

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (3): please help
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Nancy beary

79729287

Date: 2025-08-08 03:19:18
Score: 1.5
Natty:
Report link

"Regardless of the capacity mode you choose, if your access pattern exceeds 3000 RCU and 1000 WCU for a single partition key value, your requests might be throttled with a ProvisionedThroughputExceededException error."

Reference: https://aws.amazon.com/blogs/database/choosing-the-right-dynamodb-partition-key/

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

79729284

Date: 2025-08-08 03:14:17
Score: 3.5
Natty:
Report link

it isn't working for me either. I'm only using it for a notion template that requires it so im quite confused!

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

79729282

Date: 2025-08-08 03:13:17
Score: 1
Natty:
Report link

You can first convert it to a matrix and then call avg, which will calculate for each column. After that, you can aggregate by grouping according to the stock code and use toArray.

select toArray(avg(matrix(BidPrice))) 
from t 
where date(DateTime) =2025.08.01 
group by SecurityID
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andy

79729279

Date: 2025-08-08 02:55:12
Score: 4
Natty:
Report link

in version2024, it is called accessibility. see below picenter image description here

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

79729276

Date: 2025-08-08 02:49:11
Score: 1
Natty:
Report link

In my case, I simply modified the remote SSH path to Git's.
I added "remote.SSH.path": "C:\\Program Files\\Git\\usr\\bin\\ssh.exe" to my user settings.
Make sure to use the actual path to your ssh.exe file.

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

79729269

Date: 2025-08-08 02:37:08
Score: 3.5
Natty:
Report link

i know this is sucks, but unless someone changed that one goddamn line in the flutter dev teams, we should manually replace that ndkversion everytime we create a new flutter project, ask that gray mackall guyenter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hanya Crafters

79729265

Date: 2025-08-08 02:18:04
Score: 1
Natty:
Report link

OG tags only work when the shared link points to a public webpage that already has those tags set in its HTML. If you’re just sharing text or a local asset from your app, the platforms won’t generate a preview.

For Twitter/LinkedIn, you’ll need to share a link to your post on your site (with OG tags for title, description, and image) instead of just passing text or an image. The share dialog will then pull the preview from that link.

So the flow is:

  1. Make sure your post’s URL is live and has correct OG tags.

  2. Share that URL (not just text/image) using Share_Plus or URL Launcher.

  3. Test the link in each platform’s preview/debug tool to confirm the image shows up.

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

79729252

Date: 2025-08-08 01:31:55
Score: 2
Natty:
Report link

If the problem is restated as finding the white input boxes in the pdf (credit to comment from [K J](https://stackoverflow.com/users/10802527/k-j)) it can be solved fairly simply:

import fitz  # PyMuPDF
import csv

INPUT_PDF = "input.pdf"
OUTPUT_PDF = "output.pdf"
OUTPUT_CSV = "output.csv"


def colour_match(color, target_color=(1, 1, 1)):
    """Return True if color exactly matches target_color, else False."""
    return color == target_color


doc = fitz.open(INPUT_PDF)

# Page numbers are zero based
# pages_to_mark = list(range(len(doc)))  # Default filter for all pages
pages_to_mark = [1]  # Example: only process page 2

with open(OUTPUT_CSV, mode="w", newline="", encoding="utf-8") as csvfile:
    csvwriter = csv.writer(csvfile)
    csvwriter.writerow(["page_num", "x0", "y0", "x1", "y1"])
    for page_num in pages_to_mark:
        page = doc[page_num]
        drawings = page.get_drawings()
        shape = page.new_shape()
        for d in drawings:
            rect = d.get("rect")
            fill_color = d.get("fill")
            if rect and colour_match(fill_color, target_color=(1, 1, 1)):
                x0, y0, x1, y1 = rect
                cx, cy = x0, y1  # Lower-left corner for circle
                # Draw circle on PDF page
                shape.draw_circle((cx, cy), 2)  # Radius = 2 points
                # Write full rect coords and page number to CSV
                csvwriter.writerow([page_num, x0, y0, x1, y1])
        shape.finish(color=(0, 0, 1), fill=None)  # Blue stroke circle, no fill
        shape.commit()

doc.save(OUTPUT_PDF)
doc.close()

The following image demonstrates the solution by showing character boxes on page 2 which were not previously returned:

example showing circles on white boxes of page 2

Reasons:
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: flywire

79729249

Date: 2025-08-08 01:23:54
Score: 2.5
Natty:
Report link

i am on Version 17.14.8 and this issue is still happening. These kind of issues is the reason I dont like working on Visual Studio. But my jobs kind of mandates it.

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

79729247

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

It's an alignment issue, int/float4 requires different alignment than int/float3. In my example the output pointer is passed as the first argument, therefore the second one starts with an offset of 4 bytes. That works for int3/float3, but a four element vector would be "cut in half", yielding the last two elements and two undefined ones as a result.

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

79729239

Date: 2025-08-08 00:54:48
Score: 3
Natty:
Report link

Dude, you Literally saved me.

I spent so much time on this. I'm honestly embarrassed to admit how much. But seriously you da man!!!!

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: The geeky dawg

79729230

Date: 2025-08-08 00:42:46
Score: 1
Natty:
Report link

You're not setting the position with pos_x and pos_y

The problem is here:

Enemy::Enemy(float pos_x, float pos_y)
{
    this->initVariables();
    this->initTexture();
    this->initSprite();
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Elit3d

79729227

Date: 2025-08-08 00:34:43
Score: 1
Natty:
Report link

This can also be overridden in the MUI Theme as follows:

const theme: ThemeOptions = {
  components: {
    MuiAutocomplete: {
      styleOverrides: {
        groupLabel: ({ theme }) => ({
          fontSize: theme.typography.body1.fontSize,
          color: theme.palette.primary.contrastText,
          backgroundColor: theme.palette.primary.light,
        }),
      }
    }
  }
}

https://mui.com/material-ui/customization/theme-components/
https://mui.com/material-ui/api/autocomplete/#autocomplete-classes-MuiAutocomplete-groupLabel

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

79729221

Date: 2025-08-08 00:24:41
Score: 1.5
Natty:
Report link

It appears that auto-reload and auto-preview are now turned off by default and turning it on is not something on one of the Preference tabs. It's a checkbox on the [Design] drop-down menu. I'm not privy to developer discussions so I don't know that it will stay there but that's where it is in version 2025.08.07

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: bielawski

79729218

Date: 2025-08-08 00:17:39
Score: 0.5
Natty:
Report link

Something like

=OFFSET([Reference.xlsx]Sheet1!$B$1,COLUMN()-COLUMN($B$1),ROW()-ROW($B$1))

should work for you.

enter image description here

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

79729214

Date: 2025-08-08 00:12:38
Score: 1
Natty:
Report link

I am habving trouble digning in to my applications as this error is occuring

Server Error in '/' Application.

The model item passed into the dictionary is of type 'System.Web.Mvc.HandleErrorInfo', but this dictionary requires a model item of type 'StudentUploadMvc.ViewModels.PersonQueryViewModel'.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: The model item passed into the dictionary is of type 'System.Web.Mvc.HandleErrorInfo', but this dictionary requires a model item of type 'StudentUploadMvc.ViewModels.PersonQueryViewModel'.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

[InvalidOperationException: The model item passed into the dictionary is of type 'System.Web.Mvc.HandleErrorInfo', but this dictionary requires a model item of type 'StudentUploadMvc.ViewModels.PersonQueryViewModel'.]

System.Web.Mvc.ViewDataDictionary`1.SetModel(Object value) +187

System.Web.Mvc.ViewDataDictionary..ctor(ViewDataDictionary dictionary) +155

System.Web.Mvc.WebViewPage`1.SetViewData(ViewDataDictionary viewData) +78

System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) +137

System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) +375

System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) +88

System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) +775

System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) +81

System.Web.Mvc.Async.<>c__DisplayClass3_1.<BeginInvokeAction>b__1(IAsyncResult asyncResult) +188

System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) +38

System.Web.Mvc.<>c.<BeginExecuteCore>b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) +26

System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +73

System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) +52

System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +39

System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) +38

System.Web.Mvc.<>c.<BeginProcessRequest>b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) +40

System.Web.Mvc.Async.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) +73

System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) +38

System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +648

System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) +213

System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +131

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.7.4063.0

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

79729197

Date: 2025-08-07 23:07:24
Score: 4
Natty: 5
Report link

Thanks strange error, but this post solved the problem Thanks Lampos

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roland Booth

79729190

Date: 2025-08-07 22:58:22
Score: 1.5
Natty:
Report link

You should consider adding use client at the top of your component. Read more about it on the official docs

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

79729183

Date: 2025-08-07 22:42:18
Score: 3
Natty:
Report link

With JPMS you’ll likely need to merge everything into a single module manually kind of like when you download p999 and bundle all assets into one clean package.

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

79729156

Date: 2025-08-07 21:45:05
Score: 2
Natty:
Report link

Your standard output stream (sys.stdout) is being redirected or replaced by some startup configuration, site customization, or environment hook that loads before your code runs

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Malek aziz Hassayoun

79729155

Date: 2025-08-07 21:41:04
Score: 4
Natty:
Report link

Mark! In case you're still wondering how to do this, I just got it working by using [openPanelObj setDirectoryURL: [NSURL fileURLWithPath: NSS(woof)]], where woof is the filename concatenated to the directory path and NSS is a #define that makes an NSString from a C string. It was a problem for me for 13 years until I reread Michael Robinson's answer here: How can I have a default file selected for opening in an NSOpenPanel?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Photovore

79729151

Date: 2025-08-07 21:34:01
Score: 5.5
Natty:
Report link

Thanks! I used the 2nd suggestion, by Michal and it worked! I appreciate your help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): appreciate your help
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chi-town Brad

79729149

Date: 2025-08-07 21:30:00
Score: 1
Natty:
Report link

I put the following in the first cell of every notebook needing wrapping:

from IPython.display import HTML, display
def set_css(): display(HTML('\n<style>\n pre{\n white-space: pre-wrap;\n}\n</style>\n'))
get_ipython().events.register('pre_run_cell',set_css)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ken Ocheltree

79729146

Date: 2025-08-07 21:24:59
Score: 2.5
Natty:
Report link

I found that was a problem with the system gesture navigation.

The left back gesture at landscape mode is working strangely, while a right back gesture or three button navigation are working fine.

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

79729142

Date: 2025-08-07 21:09:51
Score: 7.5
Natty:
Report link

How did you manage to to convert YUV[] to RGB[]? I am trying to read the IntPtr param in the callback but i always get an Access Violation even if teh documentation states that depending on the type it should contain some data

Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (3): did you manage to to
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Joe Frk

79729133

Date: 2025-08-07 21:05:49
Score: 4
Natty:
Report link

how did you achieve this in the end? Finding memory regions in TTD recording that is.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how did you
  • Low reputation (0.5):
Posted by: t0m9er

79729125

Date: 2025-08-07 21:00:48
Score: 1
Natty:
Report link

Sure, there are several ways to convert images to PDF online. If you don't want to install any software or deal with watermarks, I suggest using a lightweight browser-based tool.

I recently used a free tool at PDFQuickly – Image to PDF and found it really fast and easy. You can upload JPG, PNG, or even WebP images and instantly convert them into a single PDF. There's no sign-up, no watermark, and it works across all devices — including mobile.

It also supports drag-and-drop reordering and bulk uploads, which is great when working with scanned images or screenshots.

Hope this helps someone looking for a quick and free solution.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: PDFquickly

79729116

Date: 2025-08-07 20:49:45
Score: 1.5
Natty:
Report link

With help from the other answer

<Box sx={{flex: 1, position: "relative"}}>
    <DataGrid
        style={{position: "absolute", width: "100%"}} 
        //...
    />
</Box>

The above code is a flex item. When placed in a flex container with flex-direction: column, it will fill its remaining vertical space.

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

79729112

Date: 2025-08-07 20:41:43
Score: 2
Natty:
Report link

I cannot see any code so it is hard to imagine what could be going on exactly.

but in general you should be able to monkey patch about anything in javascript as far as I know.

exactly where is the entry point for mocha I do not know, but for example you should be able to assign your custom implementation to any object on any fuction

like even this should be legal, for how it should work I guess you could go read source. I have no idea precisely.

performance.now=()=>{
  //do stuff
}
Reasons:
  • Blacklisted phrase (1): what could be
  • Blacklisted phrase (0.5): I cannot
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: gabrielesilinic

79729100

Date: 2025-08-07 20:19:37
Score: 1.5
Natty:
Report link

Telegram: @plugg_drop, How to buy We3d, 3xotics in Dubai, most reliable market .

In United Arab Emirates , most reviewed Coffee Shop, can i buy C0ca in Dubai? yes you can get plugg here. Order Ecst1sy, MDMA and other everyhwere here . We drop safely for turists in trip in Abu Dhabi... order Marihua, Ganja, Apothek, Medcine, … Delivery available 24/7 for Wasl , Al Ain prospects.

We have the biggest network in the Emirates, we can deliver you Has*ish, in Masdar City. Al-Bahiyah we can get as many flavors as you want at any time. How to order ketami in Dubai. Turism is growing fast in Arab countries, and our company have to provide plugg service in Abou Dabi, at Zabeel Park, and also Ibn Battuta Mall. We need adress to drop Flowers, its illegal and we try to provide you an discreet delivery. Some new comer dont know how to buy C0ca in Dubai, but its easy to buy lemmon haze here, also in Ajman. For that purpose you only need to contact the best in Al Dhafra Telegram ID: @plugg_drop. Just Send your order Canadian loud one of our best-seller in Oumm #al_Qaïwaïn.

Where to get vape , Cartridges in Dubai, How many puffs average available in Palm Island, UAE. It’s good place for a trip and you want to smoke Kush in Abu - Dhabi . Its why we have recored some visitor question and we rise the best place to obtains sparkling X3 Filtred in Charjah (Dubai) we have a structured delivery system , its handled for help any one to pay and get delivered Moonrocks in Fujairah, Dubai. No Prescription need

How is safe to buy LSD Bottler in Dubai with you .

We delivery C*cain in Abu Dhabi 24/7 Give us our location the delivery of ketam** or purple Haz* will be in a safe place near of you . The payment process in Dubai is fastly in the Emirates , we use Cryptocurenccies like USDT , TRONX, Ethereum, … you can also use your Visa Card for buy We3d in United Arab Emirates. Don’t worry about buy Fishscale in Jebel Ali Inbox @plugg_drop with telegram app.

While many ask how to buy exotics in Dubai we afford best service delivery of Molly and manies other stuff. We manage to have a good reliable customers plan . You can order Sparkling in Mushrif Park (Dubai) or you can get M0lly at Burj Al (Dubai) all is do in Dubai to like your trip .

Did you like Falkaw race in United Arab Emirates our service permitted that you can be drop your Kus8 directly there . Dubai is not only conservatory place, all the world are present here they need to have their lifestyle in al'iimarat alearabiat almutahidat. Best Camel races are in Dubai , you must see it for real.

While some countries have embraced legalization, buying weed in Dubai remains a serious offense. Tourists and residents must adhere to the local laws, as the authorities conduct stringent checks to maintain compliance.

Our Black Market in Dubai have some code to know who is Best Plugg , you can use Uber to buy Topshelf in Dubai , you can also Use Cyber Truck to buy Marihua in Abu Dabi.

Available In Dubai Market

We3d

C0ca

H1shis

MDM

L5D

Ecst1sy

2CB

Mushr00m

Her01n

Gummies

Puffs

Moonr0cks

Telegram: @plugg_drop

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @plugg_drop
  • User mentioned (0): @plugg_drop
  • User mentioned (0): @plugg_drop
  • User mentioned (0): @plugg_drop
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Brekke A

79729097

Date: 2025-08-07 20:18:37
Score: 1
Natty:
Report link

Add custom CSS to your Quarto presentation

Create a CSS file, for example custom.css, and add this:

.outside-right {
  margin-right: -5em; 
}

.outside-left {
  margin-left: -5em;
}

.outside-both {
  margin-left: -5em;
  margin-right: -5em;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BIBEK SABAT

79729090

Date: 2025-08-07 20:09:35
Score: 2.5
Natty:
Report link

Solved. I added the needed pypi repo. We have a company clone of pypi with approved libraries but also my team has its own where we place things we produce. That's where my plugin resides so my project needed to reference that repo too. Fair enough.

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

79729084

Date: 2025-08-07 20:04:34
Score: 0.5
Natty:
Report link

font-display: swap; in your CSS code tells the browser to use the default font when the desired font is not available immediatly. As soon as it's available, the browser swaps the font.

You can change it to

font-display: block;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: obs

79729070

Date: 2025-08-07 19:44:29
Score: 4
Natty:
Report link

All the below dll's were not moved to IIS. After moving, the .xls files are getting read correctly.

enter image description here

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

79729069

Date: 2025-08-07 19:43:28
Score: 1
Natty:
Report link

There is a library for exactly this usage profile_name_avatar.
Supports network and local image with caching and has placeholder and name as fallback.

import 'package:profile_name_avatar/profile_name_avatar.dart';

ProfileImage(
  imageSource: "https://example.com/avatar.jpg",
  placeholder: "assets/images/placeholder.png",     // Fallback when imagesource fail
  fallbackName: "J D",                              // Used when both above fail
  radius: 100,                                      // Optional
  textStyle: TextStyle(                             // Optional
    fontSize: 24,
    fontWeight: FontWeight.bold,
    color: Colors.white,
  ),
  backgroundColor: Colors.orange,                   // Optional
)

Fallback example
enter image description here

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

79729049

Date: 2025-08-07 19:17:23
Score: 0.5
Natty:
Report link

You could put the format string into a query parameter:

sql = "select name, date_format(%s, birthdate) as date from People where name = %"

cursor.execute(sql, ("%Y-%m-%d", "Peter"))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Franz Fankhauser

79729047

Date: 2025-08-07 19:17:23
Score: 2.5
Natty:
Report link

Solved ! (thanks traynor and browsermator)

I have one angular interceptor where by default it adds 'Content-Type': 'application/json' .

So I just have to exclude the "/upload" path.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: JPMous

79729044

Date: 2025-08-07 19:14:22
Score: 2.5
Natty:
Report link

In Android Studio Narwhal, you can find that option to change location in Advanced Settings - Version Control - Use modal commit interface for Git and Mercurial to enable the local changes tab.

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

79729042

Date: 2025-08-07 19:13:21
Score: 3
Natty:
Report link

It seemed like the issue was me being on react 18 prevented this from working. Updating react and react dom (along with types) fixed this issue.

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

79729027

Date: 2025-08-07 18:53:17
Score: 3.5
Natty:
Report link

What happened, if you are using such combination ?

SELECT
    TS.MasterID,
    TS.RecordNr,
    TR.MasterName
    TR.Date1,
    C.MasterName
FROM TABLE_SUB TS
INNER JOIN TABLE_C C ON TS.MasterID = C.MasterID
INNER JOIN TABLE_R TR ON TS.MasterID = TR.MasterID AND TS.RecordNr = TR.RecordNr
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Vijay Bansode-Mali

79729021

Date: 2025-08-07 18:46:15
Score: 1.5
Natty:
Report link

with Docker Desktop and WSL

docker was unable to pull "hello world" with the following error

what helped is: 3 dots on left bottom (near engine status) -> Troubleshoot -> Reset to factory settings

after that images are started pulling
what I tried before:
- set dns at Docker Engine config
- set dns at wsl
- etc.

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

79729014

Date: 2025-08-07 18:44:14
Score: 1
Natty:
Report link

Just inline the bind value using DSL.inline()

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

79729010

Date: 2025-08-07 18:40:13
Score: 2.5
Natty:
Report link

can you use this oficial instructions: https://code.visualstudio.com/docs/remote/troubleshooting#_cleaning-up-the-vs-code-server-on-the-remote

# Kill server processes
kill -9 $(ps aux | grep vscode-server | grep $USER | grep -v grep | awk '{print $2}')
# Delete related files and folder
rm -rf $HOME/.vscode-server # Or ~/.vscode-server-insiders
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): can you use this of
  • Low reputation (1):
Posted by: anderson buitron papamija

79729009

Date: 2025-08-07 18:38:12
Score: 1
Natty:
Report link

One natural way to handle this — especially if you're not strictly tied to real-time communication — is to use a message queue (like RabbitMQ, Kafka, or AWS SQS FIFO queues).

By having the sender push messages into a queue, and the receiver consume them in order, the queue itself can help preserve message ordering, retries, and even buffering when one side is temporarily unavailable.

This can offload complexity (like sequence number tracking) from your API/application layer and let infrastructure handle message delivery and ordering guarantees.

Considering you're using a REST API and not a socket-based solution, this approach can be especially helpful to enforce ordering and reliability in an asynchronous, stateless environment.

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

79729000

Date: 2025-08-07 18:32:11
Score: 3.5
Natty:
Report link

High_Traffic_Bangladshi_OBB.7z

1 Invalid password

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: MD Rubel

79728999

Date: 2025-08-07 18:32:11
Score: 2.5
Natty:
Report link

You can disable by turning MCP discovery off in VS Code settings.

Settings -> Features -> Chat -> Mcp -> Discovery:enabled (set to false)

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

79728989

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

You could perform a git blame on every file in the later commit that is also in the earlier commit then look for lines with a commit id earlier or the same as your earlier commit

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

79728984

Date: 2025-08-07 18:13:06
Score: 0.5
Natty:
Report link

1. Does Docker on macOS support GPU passthrough for MPS (Metal)?

No. Docker on macOS does not support GPU passthrough, including access to Apple's Metal API or MPS backend inside containers.

This is because Docker runs inside a lightweight Linux virtual machine (via HyperKit or Apple Virtualization Framework), and GPU access is not exposed to that VM.

2. Can I enable MPS access with any Docker settings or configurations?

No. There are currently no supported Docker settings, flags, or experimental features that allow a container to access the host's Metal/MPS capabilities.

Even with all dependencies and PyTorch correctly installed inside the container, torch.backends.mps.is_available() will return False.

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

79728983

Date: 2025-08-07 18:13:06
Score: 3.5
Natty:
Report link

I made this little exe to close all msedgewebview2.exe process tree, on my Windows 11 it works flawelessy.

https://www.mediafire.com/file/1mri65opj0egagi/Chiudi+msedgewebview2.exe/file

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

79728981

Date: 2025-08-07 18:12:04
Score: 8
Natty:
Report link

Can you provide more details on how you get the radius for the bounding cylinder? Ideally, paste all your code. Can you also attach the step?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you provide
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Behzad Tabari

79728976

Date: 2025-08-07 18:06:03
Score: 1
Natty:
Report link

I suspect this is a XY problem. Why do you want to do that? Minimizing the amount of lines serves no practical purpose. If you want to make your file smaller, you should use a minifier which will compress way more than just line breaks.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Guillaume Brunerie

79728971

Date: 2025-08-07 18:03:02
Score: 2.5
Natty:
Report link

Read: https://github.com/solana-foundation/anchor/pull/3663

Essentially, use/upgrade to Anchor version 0.31.1, Nightly version 1.88.0 then build your project with the IDL and then use nightly to generate the IDL(.json & .ts files)

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

79728955

Date: 2025-08-07 17:52:00
Score: 1.5
Natty:
Report link

I've run into this issue a few times, and in all cases, I was able to solve it by simply adding a few more slides to the Swiper.

From what I’ve noticed, Swiper’s loop mode requires a minimum number of slides to properly clone the elements and build the loop structure. When there aren’t enough slides, blank spaces may appear between them.

My suggestion is to try adding more slides to the Swiper and see if the problem persists. Most of the time, that fixes it.

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

79728940

Date: 2025-08-07 17:34:56
Score: 1.5
Natty:
Report link

Is there any reason you weren't using an Enterprise CA with certificate templates? All of the configurations you were adding to your INF file could be specified in a certificate template. To create the template, start by duplicating the "Workstation" or "Web Server" template since the enrollee is a computer. You could grant the target servers enroll permissions on that template.

Then, you can get certs using pure PowerShell (Administrative, since the key gets created in the machine store):

$Fqdn = [System.Net.Dns]::GetHostByName($env:computername).HostName
Get-Certificate -Template SharePointSts -CertStoreLocation Cert:\LocalMachine\My -DnsName ($fqdn, 'server1') 
Reasons:
  • Blacklisted phrase (1): Is there any
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (0.5):
Posted by: Mike Bruno

79728938

Date: 2025-08-07 17:32:54
Score: 5
Natty:
Report link

Give me 3 downvotes, going for a badge xD

Reasons:
  • RegEx Blacklisted phrase (2): downvote
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Irakli

79728925

Date: 2025-08-07 17:18:51
Score: 1
Natty:
Report link

Oh hey, I actually faced something really similar a while back when I was working on a little time tracking project for train arrivals and departures. Your current setup works fine when the arrival is after the scheduled time, which usually means there’s a delay. But yeah, when the train shows up earlier, the logic kinda breaks, right?

So what I did back then was add a small tweak to handle both late and early arrivals without messing up the output. Here's a slightly adjusted version of your function that might help:

functiontomdiff(t1, t2) { var m1 = hour2mins(t1); var m2 = hour2mins(t2); var diff = m2 - m1; if (diff < -720) { diff += 1440; } else if (diff > 720) { diff -= 1440; } return mins2hour(diff); }

This way, the function should return a positive value if the train is late and a negative one if it arrives early, which makes it easier to understand at a glance.

Also, just as a side note, when I was testing time inputs and checking if the differences were calculated correctly, I found Stundenrechner really useful. It’s basically a simple tool to calculate time differences and delays between two times, and honestly, it helped me catch a few bugs in my own setup.
Regards
Muhamamd Shozab

Reasons:
  • Blacklisted phrase (1): Regards
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Muhammad Shozab

79728894

Date: 2025-08-07 16:53:45
Score: 2
Natty:
Report link

there are some components eg. n-grid n-flex n-space

read the related document

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

79728881

Date: 2025-08-07 16:43:40
Score: 9.5
Natty: 5
Report link

Did you find an answer or not? im also stuck in this

Reasons:
  • RegEx Blacklisted phrase (1.5): im also stuck
  • RegEx Blacklisted phrase (3): Did you find an answer
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find an answer
  • Low reputation (1):
Posted by: Alireza

79728878

Date: 2025-08-07 16:41:38
Score: 13
Natty: 5
Report link

I have the same issue, did you find way to fix it?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): did you find
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Bassem Qoulta

79728877

Date: 2025-08-07 16:37:37
Score: 2
Natty:
Report link

('/mnt/data/dogum_gunu_video_20250807_162553.mp4',

'MoviePy error: the file /mnt/data/arabic_style_instrumental.mp3 could not be found!\nPlease check that you entered the correct path.')

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: muhammed gaming zx

79728861

Date: 2025-08-07 16:22:32
Score: 2.5
Natty:
Report link

convert it to TreeOption sturcture as type defined

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

79728858

Date: 2025-08-07 16:20:31
Score: 4.5
Natty: 5
Report link

This post helped me to get it running: https://www.sipponen.com/archives/4024

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

79728855

Date: 2025-08-07 16:18:31
Score: 3
Natty:
Report link

I don't know exactly what your goals are but I might have something for you:
Notion Page to present a trading bot

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

79728853

Date: 2025-08-07 16:16:30
Score: 2.5
Natty:
Report link

Update folks, it used to work, but not anymore, Browsers have changed their behavior due to clutter and mobile display considerations. You need to use JavaScript to make this happen now.

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

79728851

Date: 2025-08-07 16:15:29
Score: 0.5
Natty:
Report link

Using var body []byte like this creates slice with a capacity 0. Passing this into Read() means that it will try to fill the capacity-0 slice with bytes. Since the slice has no more capacity, it returns with no error, and with the "empty" slice.

Replacing it with body, err := io.ReadAll(resp.Body) works, since io.ReadAll() consumes the entire Reader and returns it as a []byte.

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

79728848

Date: 2025-08-07 16:13:29
Score: 2.5
Natty:
Report link

Just 1 line of solution ->
softwareupdate --install-rosetta --agree-to-license

This would work like a charm. Thank me later :)

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

79728838

Date: 2025-08-07 15:59:25
Score: 1.5
Natty:
Report link

After adding @rendermode InteractiveServer, the data now loads properly with virtualization and scrolling.
Explanation:
Virtualization requires interactivity between the client and server. Without explicitly setting the render mode, Blazor renders the component as static HTML (non-interactive). By using @rendermode InteractiveServer, the component is rendered as an interactive server-side Blazor component, which supports virtualization and dynamic data loading.

Hope this helps someone else facing the same issue!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: hanushi

79728833

Date: 2025-08-07 15:50:23
Score: 2
Natty:
Report link

The 8171 Check Online is a digital portal provided by the Benazir Income Support Programme (BISP) and Ehsaas initiative, allowing users to enter their 13‑digit CNIC to instantly check payment eligibility and disbursement status. It simplifies access to programs like the Rs. 25,000 or Rs. 13,500 relief by providing real-time updates on eligibility and payment progress

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

79728826

Date: 2025-08-07 15:46:17
Score: 6
Natty:
Report link

@Rex Linder:
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform\BackupProductKeyDefault

Is the location for a generic key. It is not the final key, the final key is encrypted.

Best regards,
Steaky

https://learn.microsoft.com/en-us/answers/questions/3827140/windows-10-pro-oem-key?forum=windows-all&referrer=answers

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @Rex
  • Low reputation (1):
Posted by: Steakmassaker

79728819

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

This is very useful to me, thanks! I took the code from the accepted answer above and generalized it a bit, so that it works with any number of interiors, and only needs one call to fig.add_trace:


import plotly.graph_objects as go
from shapely import Point

# Make some circles
shape_a = Point(0, 0).buffer(10)  # Exterior shape
shape_b = Point(0, 0).buffer(2)  # interior hole
shape_d = Point(5, 0).buffer(1)  # interior hole

# subtract holes using shapely
shape_c = shape_a - shape_b - shape_d

# The exterior shape gets added to the coordinates first
x, y = (list(c) for c in shape_c.exterior.xy)
for interior in shape_c.interiors:
    # `None` denotes separated loops in plotly
    x.append(None)
    y.append(None)

    # Extend with each interior shape
    ix, iy = interior.xy
    x.extend(ix)
    y.extend(iy)

fig = go.Figure(layout=go.Layout(width=640, height=640))
fig.add_trace(go.Scatter(x=x, y=y, fill="toself"))
fig.show()
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Blair

79728797

Date: 2025-08-07 15:24:11
Score: 1
Natty:
Report link

OK, that was my mistake! I've forgot to set private point dns in devops agent!

10.106.99.15 app-xxx-yada.scm.azurewebsites.net
10.106.99.15 app-xxx-yada.azurewebsites.net
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Imran Sh

79728777

Date: 2025-08-07 15:11:08
Score: 0.5
Natty:
Report link

You're seeing your model change correct answers just because a user says something different—like saying Paris is the capital of France, then later agreeing with a user who incorrectly says it's Berlin.

This happens because large language models are designed to be helpful and agreeable, even if the user is wrong. They also rely heavily on the conversation history, which can confuse them if the user contradicts known facts.

To fix this:

  1. Set clear system instructions telling the model to stick to the retrieved facts and not blindly follow the user.

  2. Improve your retrieval quality so the right information (like “Paris is the capital of France”) always appears in the supporting context.

  3. Add a validation step to check whether the model’s answer is actually backed by the retrieved content.

  4. Clean or limit the chat history, especially if the user introduces incorrect information.

  5. If needed, force the model to only answer based on what’s retrieved, instead of using general knowledge or previous turns.

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

79728769

Date: 2025-08-07 15:04:06
Score: 1.5
Natty:
Report link

InteliJ

Settings > Version Control > Git > Update > Use credential helper

enter image description here

I checked 'Use credential helper' and (Force) push worked without me doing anything..

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