79722413

Date: 2025-08-01 11:12:29
Score: 0.5
Natty:
Report link

The combination of OSIV (Open Session In View) with network delay (RTT (round-trip time) between the app and Azure MySQL) can cause this.

Disable OSIV, it should significantly reduce Measure A times

spring:
  jpa:
    open-in-view: false

Also, to avoid Spring AOP overhead issues, I would recommend using TransactionTemplate instead of @Transactional annotation.

@Component
@RequiredArgsConstructor
class TransactionalTestingService {

    private final ShopTenantProvider provider;
    private final TransactionTemplate transactionTemplate;

    public Object doSomething() {
        // Measure B start
        final List<ShopTenant> result = transactionTemplate.execute(r -> provider.getAll());
        
        // Measure B stop
        return result; 
    }
} 
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Transactional
  • Low reputation (0.5):
Posted by: Oleg Cheban

79722411

Date: 2025-08-01 11:12:29
Score: 1.5
Natty:
Report link
SELECT DISTINCT
    object_name(object_id) AS StoredProc
FROM sys.sql_dependencies
WHERE object_name(referenced_major_id) = @tableName;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Richard Smith

79722387

Date: 2025-08-01 10:55:26
Score: 1.5
Natty:
Report link

There is a way to check it outside of the SP.

If you know columns of the result set of your SP, you can check it by using a temp table as follow:

First you need to create the temp table with columns same as the result set of the SP:

Create Table #TmpTb(Col1 varchar, Col2 Int, ...);

Insert Into #TmpTb Exec SP_Name parameters;

IF NOT Exists (Select * from #TmpTb)

Begin

-- the SP returns no row!

End

Reasons:
  • Blacklisted phrase (0.5): check it out
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: gyousefi

79722384

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

Just had the reverse happen:

compileSdk shown as deprecated, changed it to compileSdkVersion and the warning has gone?

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: virtual-adam

79722382

Date: 2025-08-01 10:48:24
Score: 2.5
Natty:
Report link

I found the issue and is due the packages mismatch. The above code is from library so pinning the package versions fixed it by adding those to resolutions in package.json

"redux": "v5.0.1", "react-redux": "v9.2.0"

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

79722377

Date: 2025-08-01 10:43:23
Score: 3
Natty:
Report link

try to reinstall Driver "Microsoft.ACE.OLEDB.X.X" it work for me.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abderazzaq Es-seddyqy

79722371

Date: 2025-08-01 10:39:21
Score: 2
Natty:
Report link

import shutil

# Copy the logo file to prepare for Google Drive-like sharing simulation

logo_source_path = "/mnt/data/AK_MUGHAL_logo.png"

logo_drive_path = "/mnt/data/AK_MUGHAL_Gaming_Logo_Talha.png"

# Copy and rename

shutil.copyfile(logo_source_path, logo_drive_path)

logo_drive_path

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

79722354

Date: 2025-08-01 10:21:17
Score: 4.5
Natty: 5
Report link

Replying on reviews via API seems not supported. https://developers.facebook.com/support/bugs/384813126273486/

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

79722353

Date: 2025-08-01 10:20:16
Score: 1
Natty:
Report link

They are part of the core register set of ARM Cortex-M (R13) processors, selection of stack pointer depends on if the program is in handler mode where the main stack pointer is used or user-defined thread/processes where there is a option ither to use MSP,PSP.

when the MCU resets it starts with the top of nested vector table and the MSP will be the default stack pointer as On reset, MSP is initialized from the first entry in the vector table.

In FreeRTOS, for example, MSP is used by the scheduler and PSP is given to user tasks.

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

79722351

Date: 2025-08-01 10:20:16
Score: 1
Natty:
Report link

I had the same issue when using docker on my mac running both pgAdmin and postgres on localhost. Solution for me was to use the container name as my host name in pgAdmin. Apparently pgAdmin is not able to resolve localhost to the correct container.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Lennart

79722347

Date: 2025-08-01 10:18:16
Score: 1
Natty:
Report link

Use DENSE_RANK() to generate unique IDs for address in silver_address, then join it in silver_people using city and country. Example:

sql

CopyEdit

DENSE_RANK() OVER (ORDER BY City, Country) AS ID

Join to map Address_ID for each person.

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

79722342

Date: 2025-08-01 10:13:13
Score: 10
Natty: 6
Report link

Actually I am using Darknet yolov3 to train for my custom dataset I am unable to train what could be an issue anybody suggest I am following this github repo https://github.com/AlexeyAB/darknet and to download weights and .cfg file I am using this repo https://pjreddie.com/darknet/yolo/ so please guide me and let me know where I am lacking my dataset consists of 61 classes I am configured all the things according to my dataset thank you for understanding in advance

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (1): what could be
  • RegEx Blacklisted phrase (2.5): please guide me
  • RegEx Blacklisted phrase (3): thank you for understanding in advance
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vikas Vikku

79722340

Date: 2025-08-01 10:12:12
Score: 3
Natty:
Report link

It is possible, if you have some API that are readily available in SSRS to consume or generate a report. We can use the built-in REST API to interact with those APIs

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

79722338

Date: 2025-08-01 10:10:12
Score: 1
Natty:
Report link

Try this php application.

First it saves xlsx file to the server then you can download it by using appropriate headers.

https://github.com/shuchkin/simplexlsxgen

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

79722322

Date: 2025-08-01 09:50:07
Score: 3
Natty:
Report link

It looks like your folders in lm1b file are shared with other programs, lets install tensorflow from stratch and try again

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

79722310

Date: 2025-08-01 09:43:05
Score: 3
Natty:
Report link

I had a simillar issue which i just managed to fix by passing the prop mode="auto" to the dropdown component. Now the dropdown does not show center-screen on mine.

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

79722299

Date: 2025-08-01 09:35:03
Score: 0.5
Natty:
Report link

As, of now, the docs recommend setting the workspaceFolder config key in your .vscode-test.js/mjs/cjs file.

For example:

// .vscode-test.mjs
import { defineConfig } from "@vscode/test-cli";

export default defineConfig({
  files: "out/test/**/*.test.js",
  workspaceFolder: ".vscode-test-workspace",
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: xxdavid

79722282

Date: 2025-08-01 09:12:57
Score: 3
Natty:
Report link

My name is Mrs. Marie Baker, and I would like to donate my inheritance funds of 8,700,000.00 million euros from my deceased husband to charity and to support the needy and poor.

As soon as I hear from you, I will give you more information on how to realize this humanitarian project and get this amount transferred to your bank account. You are instructed to promptly submit your personal information as follows:

Your full name==================

Your country of origin=============

Your address =================

Your age =====================

Your gender ===================

Your phone number ==============

Thank you and I look forward to hearing from you soon.

Have a nice day!

Your sister

Mrs. Marie Baker

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Filler text (0.5): ==================
  • Filler text (0): =============
  • Filler text (0): =================
  • Filler text (0): =====================
  • Filler text (0): ===================
  • Filler text (0): ==============
  • Low reputation (1):
Posted by: Marie Baker

79722279

Date: 2025-08-01 09:07:56
Score: 0.5
Natty:
Report link

Modify to capture errors:

$process = new Process(['python3', base_path('login_script.py')]);
$process->run();

if (!$process->isSuccessful()) {
    throw new ProcessFailedException($process);
}

return $process->getOutput() . $process->getErrorOutput();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Rajeev Singh

79722275

Date: 2025-08-01 09:04:55
Score: 1
Natty:
Report link

I have tried everthing, but I still got this. Finally, I tried jdk11 instead of jdk17, it worked all well. So this is a bug for jdk17 and hadoop 3.3.6.

btw, I have tried the networktoplogy, rack things and all the other solutions I can find in the internet.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: jcyan

79722270

Date: 2025-08-01 09:02:55
Score: 1.5
Natty:
Report link

if you go to that page inspect on 12a you can see its class name which is

fc-event-time

so just go to your css file and add this:

.fc-event-time {
  display: none;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ashkan ahrari

79722264

Date: 2025-08-01 08:49:51
Score: 3
Natty:
Report link

It's just that Fonawesome servers are down. Nothing more.

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

79722258

Date: 2025-08-01 08:43:50
Score: 4.5
Natty:
Report link

Here is the expectation with all the different cases

enter image description here

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

79722256

Date: 2025-08-01 08:42:49
Score: 0.5
Natty:
Report link

Anyone getting the argument of `across()` is deprecated error may like to try...

X %>% mutate(across(all_of(lead_cols), \(x) str_pad(x, width = 3, pad = "0")))

or more simply in this case (noting the overworked variable naming)

X %>% mutate(across(x:y, \(x) str_pad(x, width = 3, pad = "0")))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Big Old Dave

79722253

Date: 2025-08-01 08:39:49
Score: 0.5
Natty:
Report link

The above solution worked for me, but without version.

<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>log4j-1.2-api</artifactId>
</dependency>
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Beejal oswal

79722233

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

use generics:

interface A {
  a: string;
}


function createArray<T extends A>(arr: T[]): A[] {
    return arr;
}

function pushElement<T extends A>(arr: A[], value: T) {
    arr.push(value);
}



const a: A[] = createArray([{ a: "a" }, { a: "a", b: "b" }]);

pushElement(a, { a: "a", c: "b" })
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alexandroppolus

79722230

Date: 2025-08-01 08:23:44
Score: 3
Natty:
Report link

Note: After developing for couple of days. I found out that to have Pinia display I need to click on this App 3 inside devtools and it will install all the Pinia as shown on the picture below. I have no explanation why it behave like that but at least I got it showing and working as usual now.

Picture

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

79722224

Date: 2025-08-01 08:18:42
Score: 2.5
Natty:
Report link

Mystery solved - I just needed to add file-close at the end!

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

79722220

Date: 2025-08-01 08:14:40
Score: 6
Natty: 6
Report link

can you explain it cleary the approach using neko.
@Sean DuBois

Reasons:
  • RegEx Blacklisted phrase (2.5): can you explain
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: Srishma Reddy

79722207

Date: 2025-08-01 07:56:36
Score: 2.5
Natty:
Report link

Copy the C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe amd paste it in the shell path in android studio open settings , go to terminal , and paste the powershell.exe folder path in the shell path after that your issue will be fixed

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

79722196

Date: 2025-08-01 07:46:33
Score: 0.5
Natty:
Report link

For Windows, below command run in command prompt (doesn't work in PowerShell) at the respective folder gives the row count:

find "," /c yourfilename

Reference: https://www.reddit.com/r/excel/comments/l7gue6/way_to_show_number_of_rows_in_csv_without_opening/

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

79722191

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

If you're looking for the best platform to get online degree jobs, you've come to the right spot. GCETL is the best platform for offering you the best online degree in education.

https://gcetl.in/blog-details?ab=Top-5-Non-IIM-B-Schools-of-India

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

79722188

Date: 2025-08-01 07:31:28
Score: 8
Natty: 5.5
Report link

I'm facing same issue, any update here ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fabrice Mpenge

79722178

Date: 2025-08-01 07:21:25
Score: 1
Natty:
Report link
import { makeStyles } from '@mui/styles';

const useStyles = makeStyles({
  root: {
    background: 'linear-gradient(45deg, #FE6B8B 30%, #FF8E53 90%)',
  },
});

export default function testFunction() {
  const classes = useStyles();
  return <Button className={classes.root}>Hook</Button>;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sougata ghosh

79722176

Date: 2025-08-01 07:17:25
Score: 2.5
Natty:
Report link

In case someone is getting the similar issue in the Flutter. You can make the following changes to your app/build.gradle file.

allprojects {
    repositories {
        google()
        mavenCentral()
    } 

       configurations.all {
        resolutionStrategy.eachDependency { details ->
            if (details.requested.group == 'com.facebook.android' &&
                details.requested.name == 'facebook-android-sdk') {
                details.useVersion '18.1.3'
            }
        }
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): getting the similar issue
  • Low reputation (1):
Posted by: Shehzad Ahmad

79722175

Date: 2025-08-01 07:14:24
Score: 1
Natty:
Report link

Basic (username/password) authentication is no longer supported on office365.com. You need to set up OAuth, as described in https://ecederstrand.github.io/exchangelib/#impersonation-oauth-on-office-365

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

79722172

Date: 2025-08-01 07:09:23
Score: 3.5
Natty:
Report link

The issue was with the firebase app/analytics lib version. Upgrade to 22 solved the issue.

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

79722171

Date: 2025-08-01 07:04:22
Score: 2.5
Natty:
Report link

You might not know this yet, but the mermaid documentation refers to new expanded node shapes in v11.3.0+
ref: https://mermaid.js.org/syntax/flowchart.html#example-flowchart-with-new-shapes
e.g. C@{ shape: docs, label: "Multiple Documents"}

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

79722170

Date: 2025-08-01 07:02:21
Score: 2
Natty:
Report link

Looking at the AWS Lambda documentation, it seems that the error is related to some optimization errore: https://docs.aws.amazon.com/lambda/latest/dg/troubleshooting-invocation.html#troubleshooting-deployment-container-artifact

Error: CodeArtifactUserFailedException error message

Lambda failed to optimize the code. You need to correct the code and upload it again. HTTP response code 409.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Stefano Romanò

79722161

Date: 2025-08-01 06:53:18
Score: 1.5
Natty:
Report link

Careful with NextJs env setup: don't forget to add NEXT_PUBLIC_ before the env key

NEXT_PUBLIC_DATABASE_URL=postgres://xxxxxxx
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shafiuddin

79722160

Date: 2025-08-01 06:52:18
Score: 1
Natty:
Report link

What you are seeing is the expected behavior with requested QueueSize = 0 (which effectively becomes QueueSIze =1 for data monitored items as per OPC UA specification). It means that only one data value is sent in a publish cycle.

The client needs to set the QueueSize to a higher value if it wants to receive more data values from the same monitored items in a publish cycle.

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): What you are
Posted by: ZbynekZ

79722154

Date: 2025-08-01 06:49:17
Score: 3
Natty:
Report link

A Complete Guide to Fitness, Diet, and Muscle Growth

Introduction:

In a world where time is tight and health risks are growing, prioritizing fitness is one of the smartest investments you can make. But for many, it starts with one simple search: gyms near me. Whether you're new to training or returning after a break, it’s not just about joining a gym. It’s about aligning every part of your routine, from workouts to nutrition, for long-term success.enter image description here

This guide walks you through everything you need to know: how to pick the right gym, maximize your gym membership, incorporate treadmill workouts, and which diet plans, like keto or other weight loss diets, actually work. For those aiming to build muscle, we'll also cover how to use a mass gainer to support strength goals smartly.

READ MORE

Reasons:
  • Blacklisted phrase (1): This guide
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Akteng OZZY

79722152

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

For anyone coming across this who is using Flutter and Google / Firebase Auth and they encounter this when they go from local device / emulator testing to Google Play, this occurs because the SHA1 fingerprint is now different as Google Play takes care of signing your app for distribution for Play Store.

Solution - Get the new SHA1:

  1. Go to Play store and select Your App

  2. Go to Test and Release

  3. Go to App Integrity

  4. Scroll to Play App Signing (click settings to the right of the title)

  5. Copy the SHA1 fingerprint

  6. Go to Firebase Project Settings or Google Auth console where you define your SHA certificate fingerprints and add the new SHA1

Gets me every time.

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

79722143

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

I think I found the answer. But I want to know if there is a better way to do it.

def convert_to_unc_path(path: str) -> str:
    # Check if already escaped UNC path (starts with \\\\?\\)
    if path.startswith("\\\\\\\\?\\\\"):
        return path
    
    # Check if raw UNC path (starts with \\?\)  
    elif path.startswith("\\\\?\\"):
        return path.replace("\\", "\\\\")
    
    # Regular path, add UNC prefix and escape
    else:
        unc_path = "\\\\?\\" + path
        return unc_path.replace("\\", "\\\\")

Reasons:
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: tandem

79722126

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

This is not an answer to the question, yet a hint as to how to solve the original problem which triggered it. I.e. how to get a neat iterator over rows of a query result set. Disclaimer I am the author of odbc-api and a main contributer to the odbc crate, back then it had been maintained.

I would suggest not going with odbc_iter. It is based on the no longer maintained odbc crate. Its iterator interface may be what you want, yet it actually translates it naively to a row wise fetch in the background which in most cases triggers and individual round-trip to the database for each row. It does this, because the odbc crate never supported bulk fetch.

For a fast bulk fetch with minimal IO overhead, and a type-safe fetching of row fields, I would suggest using odbc-apis RowVec together with the Fetch derive macro. For this the derive feature has to be active.

use odbc_api_derive::Fetch;
use odbc_api::{Connection, Error, Cursor, parameter::VarCharArray, buffers::RowVec};

#[derive(Default, Clone, Copy, Fetch)]
struct Person {
    first_name: VarCharArray<255>,
    last_name: VarCharArray<255>,
}

fn send_greetings(conn: &mut Connection) -> Result<(), Error> {
    let max_rows_in_batch = 250;
    let buffer = RowVec::<Person>::new(max_rows_in_batch);
    let mut cursor = conn.execute("SELECT first_name, last_name FROM Persons", (), None)?
        .expect("SELECT must yield a result set");
    let mut block_cursor = cursor.bind_buffer(buffer)?;

    while let Some(batch) = block_cursor.fetch()? {
        for person in batch.iter() {
            let first = person.first_name.as_str()
                .expect("First name must be UTF-8")
                .expect("First Name must not be NULL");
            let last = person.last_name.as_str()
                .expect("Last name must be UTF-8")
                .expect("Last Name must not be NULL");
            println!("Hello {first} {last}!")
        }
    }
    Ok(())
}

See: https://docs.rs/odbc-api/latest/odbc_api/derive.Fetch.html

Reasons:
  • Blacklisted phrase (1): not an answer
  • Blacklisted phrase (1): how to solve
  • Long answer (-1):
  • Has code block (-0.5):
Posted by: Markus Klein

79722114

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

The Places Details (New) will respond with the new Place ID along with the other fields such as formattedAddress and location.

Take note that specifying the list is only used to filter a response and not a request so returning it as invalid wouldn't occur unless you omit the field mask itself.

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

79722111

Date: 2025-08-01 06:08:06
Score: 1.5
Natty:
Report link

maybe you can try this https://jsonout.com/ a online JSON formatter, validator and JSON editor

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: HXH

79722100

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

Logistica&Global.apk faylini yuklab olish (Asosiy ilova)

📦 Logistica&Admin.apk faylini yuklab olish (Admin panel)

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

79722096

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

I'm facing the same issue with Jio network and Firebase Realtime Database. The listener doesn't trigger onDataChange() or onCancelled() — it just hangs.

Tested fixes:

Workaround:
I now use a Firebase Cloud Function as a proxy to access Realtime Database. This works reliably even on Jio.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Low reputation (1):
Posted by: Subhasish Das

79722095

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

I have resolved the issue. Thank you to the people that visited this question. This works fine thank you to someone's post on Reddit that helped push me to the right direction. https://www.reddit.com/r/excel/comments/bgzkbj/vba_dealing_with_no_cells_were_found/

Selection.AutoFilter Field:=2, Criteria1:=DATE_ONE, Operator:=xlAnd, Criteria2:=DATE_TWO
    
    Dim filteredCell As Range
    
    On Error Resume Next
    Set filteredCell = Range("G2", "G" & lastrow).SpecialCells(xlCellTypeVisible)
    On Error GoTo 0
    
    If filteredCell Is Nothing Then
            MsgBox "データが見つかりません。処理を中断します。", vbOKOnly + vbExclamation, "エラー"
            Application.DisplayAlerts = False
            resultWS.Delete
                originC.Worksheet.Parent.Activate
                originC.Worksheet.Activate
                originC.Select
            Application.DisplayAlerts = True
            Exit Sub
    Else
    End If
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Anpo Desu

79722081

Date: 2025-08-01 05:20:56
Score: 2
Natty:
Report link
Method Inputs Outputs Usage
.loc Label-based Series/data Row/col access by index name
.at Label-based Scalar Fast lookup for single cell (label)
.iloc Position-based Series/data Access by row/col number
.iat Position-based Scalar Fast lookup for single cell (position)
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bogdan Ciocoiu

79722079

Date: 2025-08-01 05:11:54
Score: 3.5
Natty:
Report link

Fixed the issue by doing two things. Deleted package and installed it again. This time I was sure that package address was correct.

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

79722077

Date: 2025-08-01 05:09:54
Score: 1.5
Natty:
Report link

Your model works for single digits because it was trained on MNIST, which contains one centered digit per image. For multi-digit images like "1234", you must split them correctly into individual digits, preprocess each one to match MNIST format (centered, 28×28, normalized), and pass them separately to the model. If splitting, padding, or centering is off, the model misclassifies (e.g., "1234" becomes "3356"). Also, switch to a CNN instead of dense layers for better accuracy. Visualize your split digits to ensure they are clean and centered. Each digit must look like a real MNIST image for reliable results.

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

79722071

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

It is looks like VS Code removed UTF-8 BOM symbols.

About BOM: What's the difference between UTF-8 and UTF-8 with BOM?

You can open both files in any HEX editor (for example HxD offline, also exists online hex editors) and look at difference in first bytes.

The same issue discussed here: https://gitlab.com/gitlab-org/gitlab/-/issues/29631

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

79722067

Date: 2025-08-01 04:47:50
Score: 1.5
Natty:
Report link

Are you running a .venv and installed moviepy outside the venv? Do this:


pip uninstall moviepy

venv\Scripts\activate (in Terminal, replace 'venv' with w/e the name of your venv is)

pip install moviepy

See if that works.

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

79722058

Date: 2025-08-01 04:24:45
Score: 0.5
Natty:
Report link

I made a nuget package that uses Pdfium to do exactly what you want, well except it returns a bitmap list, but trivial to use Save() to save as jpegs. I use this in production software to convert Pdfs into images for viewing within a WinUI3 application. 100-page document at 300 dpi would probably take around 7 or 8 seconds or so. I am not sure what is an acceptable speed for you.

Nuget package is PdfToBitmapList.

Can pass file path of pdf, memorystream, or byte array.

Use like: var imageList = Pdf2Bmp.Split(pdfFilePath)

There is an option to save images to disk by passing in a save location like :

var imageList = Pdf2Bmp.Split(pdfFilePath, "C:\TempDirectory")

This is very useful for larger Pdfs as holding all those images in memory can eat up your ram very fast. Instead of returning a List of Bitmap images it will return a list of strings with the paths the images are saved on disk. This requires manual clean up after the conversion, so just keep that in mind or save location will have tons of leftover images.

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

79722054

Date: 2025-08-01 04:14:41
Score: 7
Natty:
Report link

Yes facing the same issue. There was same kind of issue in 2020 https://status.firebase.google.com/incidents/oCJ63zAQwy6y284dcEp3

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: atul zade

79722050

Date: 2025-08-01 04:06:39
Score: 2.5
Natty:
Report link

Try using project auditor or profiler to see what is causing this issue.

Also try unchecking the multithread rendering in project settings.

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

79722046

Date: 2025-08-01 03:58:37
Score: 1.5
Natty:
Report link

I found the issue.

I was running the server from VSCode. Running in a mac terminal fixed it.

I think it had to do with VSCode settings blocking network connections.

When I restart my mac, it restarted vscode and restarting vscode works the first time. I still don't know why.

Quick fix: don't use VSCode to run the server. It has it's own network settings

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

79722040

Date: 2025-08-01 03:45:35
Score: 1
Natty:
Report link

Just an update folks,
our .NET managed client was attempting to negotiate a higher CipherSpec than what the MQ channel on their end was initially configured to support.
cf.SetStringProperty(XMSC.WMQ_SSL_CIPHER_SPEC, "TLS_RSA_WITH_AES_128_CBC_SHA256");
`

by updating the MQ channel configuration to use ANY_TLS12_OR_HIGHER, it resolved the issue.
The logs were quite visible at MQ queue manager level but on .NET side the logs were quite generic, strange.

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

79722037

Date: 2025-08-01 03:41:34
Score: 5.5
Natty:
Report link

i have the same problem for around a year. jupyter lab3.

recently, annoyed by it. after study github serveral post and others. occasionally i noticed in the cmd shell output, i noticed it said

 [xxxx ServerApp] folder '' :my real work folder not found.

the address with additional '' & my work folder

[solution success]

jupyter lab config.py

c.LabServerApp.workspaces_dir = :my real work folder

pls noted no ' ' OR " " for the folder path.

others are default seting.

maybe it can solve your problem too?

refer:

reply from andrewfulton9 and echarles in https://github.com/jupyterlab/jupyterlab/issues/12111

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • RegEx Blacklisted phrase (1.5): solve your problem too?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i have the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kevin Han

79722036

Date: 2025-08-01 03:40:34
Score: 0.5
Natty:
Report link

It turns out I have to build the extension with hoist flag.

plasmo build --target=firefox-mv3 --hoist

The docs say hoisting can break the dependency:

Note that hoisting can potentially break your dependency, especially those that import dynamic dependency via a plugin system. However, hoisting can significantly improve the bundling speed and reduce the size of your bundle.

Ironically, not hoisting breaks my extension.

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

79722026

Date: 2025-08-01 03:30:31
Score: 1
Natty:
Report link

Further to the above:

The CMFCPopupMenuBar::m_bDropDownListMode member is set equal to CMFCPopupMenu::m_bShowScrollBar member variable in the CMFCPopupMenu::Create.

This shuts off sending the WM_COMMAND when you click on a menu item.

Setting CMFCPopupMenu::m_bShowScrollBar true after the Create is called, followed by RecalcLayout() seems to correct the issue. Now I have scroll bars and can click on menu items to send an ON_COMMAND to the host window.

I'm not sure what downsides there might be to this. Feel free to comment. Thanks!

BOOL MyPopupMenu::Create(CWnd* pWndParent, int x, int y, HMENU hMenu, BOOL bLocked, BOOL bOwnMessage) 
{
    CRect               rParentRect;

    m_pBoundsWnd = pWndParent;
    m_pBoundsWnd->GetWindowRect(rParentRect);
    m_nMaxHeight = rParentRect.Height();
    // Call the base class Create method
    if (!CMFCPopupMenu::Create(pWndParent, x, y, hMenu, bLocked, bOwnMessage)) {
        TRACE0("Failed to create BECPopupMenu\n");
        return FALSE;
    }
    // These have to be called AFTER the create or you can't click on the menu items to send the ONCOMMAND to the parent.
    // Internally CMFCPopupMenu::Create() sets the CMFCMenuBar::m_bDropDownListMode = m_bShowScrollBar.
    // If it is true , it will not send the ONCOMMAND to the parent.
    // Setting m_bShowScrollBar afterward and THEN calling RecalcLayout() will ensure that the menu behaves correctly.
    m_bShowScrollBar = true;
    m_bScrollable = true;
    RecalcLayout();
    
    return TRUE; // Indicate successful creation
}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): to comment
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KokoCa

79722023

Date: 2025-08-01 03:27:29
Score: 6
Natty:
Report link

test dasdsadasd da sad sad sa dsadasd asd asd asdasdasdasdas dasdasd sadsadsad

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Test

79722018

Date: 2025-08-01 03:22:27
Score: 1.5
Natty:
Report link

Silly question, but can't we call the open function in js if you have a local protocol handler? So if I reigster my app as myapp, I can call open("myapp://some/url?some-token=true");... would that work? (Running into this now myself, so will test and report back!).

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

79722013

Date: 2025-08-01 03:07:24
Score: 1.5
Natty:
Report link

Try this. The functions work in a similar way.

imagepng: how to save the output in a variable and then display it using img tag

ob_start();
imagejpeg($image);
$imagedata = ob_get_clean();
Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alex

79722010

Date: 2025-08-01 02:57:22
Score: 0.5
Natty:
Report link

Traditionally, linkers process files from left to right, so if X depends on Y, X must be added before Y in the command. So place your source files before the libraries they depend on.

g++ main.cpp -o main -I /usr/local/include/SEAL-4.1 -L /usr/local/lib -lseal-4.1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jitpaul

79722007

Date: 2025-08-01 02:51:20
Score: 2.5
Natty:
Report link

I tried all sorts of functions such as PreCreateWindow, OnCreate, OnWindowPOSChanged, OnWindowPOSChanging.

I found that none of them worked. What did work was setting the CFMCPopupMenu::m_nMaxHeight before calling Create. This constrained the height of the popup menu to the size I wanted. The keyboard works now as does the mouse scroll wheel.

To get the scrollbar to display properly, I also had to set both CMFCPopupMenu::m_bShowScrollBar and CMFCPopupMenu::m_bScrollable to true before calling Create().

I have now run across another problem: m_bShowScrollBar stops the CMFCPopupMenu from sending WM_COMMAND messages to the parent window when an item is clicked. I'll dive into this and post an update or create another post if I need help.


BOOL MyPopupMenu::Create(CWnd* pWndParent, int x, int y, HMENU hMenu, BOOL bLocked, BOOL bOwnMessage) 
{
CRect               rParentRect;

m_pBoundsWnd = pWndParent;
m_pBoundsWnd->GetWindowRect(rParentRect);
m_bShowScrollBar = true;  
m_bScrollable = true;
m_nMaxHeight = rParentRect.Height();

// Call the base class Create method
TRACE0("BECPopupMenu::Create() Create\n");
if (!CMFCPopupMenu::Create(pWndParent, x, y, hMenu, bLocked, bOwnMessage)) {
    TRACE0("Failed to create BECPopupMenu\n");
    return FALSE;
    }
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KokoCa

79721998

Date: 2025-08-01 02:27:16
Score: 3
Natty:
Report link

Just convert the JSON data into a dictionary format recognizable by requests, then pass it through the cookies parameter in the request.

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

79721993

Date: 2025-08-01 02:14:14
Score: 2.5
Natty:
Report link

Well, maybe I can help you, I was doing a project where I wanted to put an image on Instagram, I had to transform the photo into base 64, and put it in a database, then save it and return the image again

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

79721986

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

Autodesk Platform Services (APS)AutoCAD Automation API execute customization by accoreconsole.exe, console version of AutoCAD, in behind. The accoreconsole.exe doesn't support AutoCAD ActiveX API. VLA* functions in AutoLisp invoke AutoCAD ActiveX API so the your Lisp causes error on APS. I recomend you porting your customization by AutoCAD .NET API as AutoCAD addin, which can loaded by accoreconsole.exe.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Takehiro Kato

79721981

Date: 2025-08-01 01:49:08
Score: 0.5
Natty:
Report link

Install this dependency Enable the reCAPTCHA ENTERPRISE from Firebase Authentication section and Enable it from Google Cloud Console, then this error will be gone

@google-cloud/recaptcha-enterprise-react-native
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Nafees

79721978

Date: 2025-08-01 01:41:06
Score: 4
Natty:
Report link

We have the same problem with the Oracle Database, and we don't have a 500ms latency when our code runs on Linux, on Windows, however, there is a 500ms delay.

We believe that this issue is related to a certain mechanism of TCP, and there are differences in the implementation between Windows and Linux. This is because our Linux is WSL, which is essentially a virtual machine of Windows 10

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (1):
Posted by: DongTianDeHai

79721974

Date: 2025-08-01 01:32:03
Score: 1.5
Natty:
Report link

I faced similar problem. My env is Win11, VS2022 and Python3.13.

After switching Python version from 3.13 to a lower version (my case is 3.9(64-bit)) on the interactive window bar, interactive works correctly. The window bar shows a module selection set on "_main_", but 3.13's not.

I don't know why the bug takes place on 3.13

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

79721969

Date: 2025-08-01 01:25:01
Score: 2.5
Natty:
Report link

The FIFO option only seems to work when reading in (therefore concatenating) the entire GDG family.

Has anybody figured out a JCL-only way to read generation (0) in FIFO order? This would be especially useful for interfaces where you want to DISP=(OLD,DELETE,KEEP) the (0) generation, i.e. delete it after successfully processing it; thereby giving the first-in file the highest priority in getting processed in a job where you only want to pull in one generation at a time.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jon

79721962

Date: 2025-08-01 01:07:58
Score: 0.5
Natty:
Report link

This was asked years ago, but I still see the question popping up and didn't find very good answers.

The context is important, particularly are rare false positives acceptable? I can imagine a video game effect that doesn't impact scoring where a few extra bullets making sparks on a bad guy isn't critical.

This addresses the critical cases where you need to be right, like 3D mesh/mesh intersections or Boolean operations. It also works on concave meshes.

Ignore methods relying on random ray direction as solutions. They improve your odds of a good solution, but create difficult to reproduce failures.

First, filter out all open or non-manifold meshes - they have no inside or outside. Open meshes have one or more laminar edges. Non-manifold meshes have at least one edge which shares more than two faces. The concept of inside simply doesn't apply to these.

Assure all triangle normals are correctly oriented according the right hand half edge rule. This assures all normals point into or out of the closed region.

The worst case situation is a conical, triangular fan where the ray hits the vertex at the center of the fan. I just had to deal with this one.

Determine a global same distance tolerance for the entire model and use it everywhere. Differing same distance tolerances will result in A != B, B !=C and A == C cases if the three tests are done with different tolerances. THAT can result in crashing or infinite looping binary tree tests.

Record the distance along the ray AND if the ray's dot product with the tri normal was positive or negative in a list. Sort the list, first on distance, than on sign of the crossing.

Now, all crossing within the same distance tolerance are clustered first, and crossings of the same parity are grouped within the group.

Starting from the back of the list, remove any crossing within the same dist tolerance which has the same parity. That's a mutliple hit on the fan vertex or edge where the ray entered the boundary through two faces simultaneously. Continue until all duplicates are purged.

In the case where the ray hit the fan vertex, entered and exited legitimately, that will be counted as real entry/exit pair. All cases where the ray entered/exited with the same parity have been reduced to a single entry/exit.

Now calculate
parity = list.size modulo 2
If parity is 1, you're inside. If it's 2 you're outside.

Do this multiple times from the same start point.

Only count hits with 2 or more inside results. I still get a few cases with false outside results.

If you have 2 or more "inside" results, it's inside.

I've worked in the industry for years and even NVidia's GPU raycaster documentation admits they get occasional false positives and recommends some oversampling.

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

79721961

Date: 2025-08-01 01:06:57
Score: 1
Natty:
Report link

npm config ls -l

npm config delete proxy

npm config set proxy "http://your.proxy.url:port/"

for example

npm config set proxy "http://127.0.0.1:3000"

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

79721959

Date: 2025-08-01 01:05:57
Score: 1.5
Natty:
Report link

Use "sudo" before your command.

sudo npx create-react-app appname
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Joshua Ginn

79721957

Date: 2025-08-01 01:02:56
Score: 1
Natty:
Report link

Here's a cool one-liner using regex

const titleCase = str => str.toLowerCase().replace(/\b\w/g, c => c.toUpperCase());

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

79721955

Date: 2025-08-01 01:00:56
Score: 2.5
Natty:
Report link

In my case, the newtonsoft.json was part of nuget package., but it was in net6.0 folder instead of net8.0 folder for this file:

C:\Users<username>.nuget\packages\newtonsoft.json\12.0.3\lib.. ..\Newtonsoft.Json.dll

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

79721952

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

When running on my machine, your code seems not to be the issue. What you're experiencing may be due to not initializing the tailwind build process which updates your styles as you change them.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: MaxCodingTX

79721950

Date: 2025-08-01 00:48:53
Score: 4
Natty:
Report link

I probe a many solutions and the correctly solution was add the PATH to variable Entorno on windows "C:\Users\TU_USUARIO\AppData\Local\Android\Sdk\emulator" and restart windows. It's works fine.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Neropol

79721948

Date: 2025-08-01 00:38:51
Score: 3.5
Natty:
Report link

But its not clear why you passed scope[] to ValidateTokenAsync method

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

79721941

Date: 2025-08-01 00:20:48
Score: 2.5
Natty:
Report link

List of cross-platform version managers that work across Windows, macOS, and Linux:

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

79721934

Date: 2025-08-01 00:04:44
Score: 2.5
Natty:
Report link

Not sure why, but I switched my setup to have a restApi in stead of httpApi and now it works.
I would still like to know the reason but at least I am not stuck anymore

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

79721929

Date: 2025-07-31 23:47:40
Score: 2.5
Natty:
Report link

If you're looking for an easy way to do it, we just released a plugin that does exactly what you just laid out.

It effectively gets the same data as GA4, and adds that to hidden fields on your contact form.

https://themekraft.com/plugins/lead-source-magic/

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

79721916

Date: 2025-07-31 23:09:32
Score: 0.5
Natty:
Report link
PopScope(
      canPop: viewModel.currentStep == 0, // validate if needed to pop
      onPopInvokedWithResult: (didPop, result) { 
        viewModel.back();// handle try pop event
      },
      child: CupertinoPageScaffold(
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ahmad Abdullah PS

79721910

Date: 2025-07-31 22:59:30
Score: 0.5
Natty:
Report link

I used a MacBook and connected via SSH when meeting this "select kernel is empty" issue. I solved it by going to the extension on VScode > uninstall Jupyter > Install it again > restart VScode > Select another kernel shows again instead of keep loading :)

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31188881

79721890

Date: 2025-07-31 22:24:23
Score: 5
Natty:
Report link

() => { const [employees, setEmployees] = useState([]) const [selectedEmployee, setSelectedEmployee] = useState(null) const [createEmployee, setCreateEmployee] = useState(false)

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

79721881

Date: 2025-07-31 22:06:20
Score: 1.5
Natty:
Report link

I updated matplotlib, shapely and cartopy to their latest versions and now it works.

    matplotlib: 3.10.5
    shapely: 2.1.1
    cartopy: 0.24.1
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Woodz

79721874

Date: 2025-07-31 21:59:17
Score: 0.5
Natty:
Report link

We still have not published an exhaustive list of supported deeplinks - /messages and /documents do work - however, /accounts is not a supported deeplink.

Because of this, the Plugin Bridge falls back to its normal behavior: it opens the target instead of closing the web‑view and handing control back to native Banno navigation.

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

79721873

Date: 2025-07-31 21:57:16
Score: 0.5
Natty:
Report link

All other users are not having any issue.

Okay, that's good. That was going to be the first question. So it sounds like every other user is fine, but it's just this one user that is having issues.

Although not stated in your original question, is this happening within the context of a plugin card i.e. the user starts within Banno's dashboard and the plugin card is displaying an error message?

Depending upon the details, it sounds like this may go from being a Digital Toolkit item (i.e. something is wrong with the developer's implementation) into 'something is weird/strange/different about this particular user'.

My suggestion is to open a jSource case (or re-open the existing case, if possible) with:

  1. a link to this very question on Stack Overflow

  2. the exact error message the user sees

    1. Especially if it contains a `x-request-id`, as that makes it easier for Engineering to figure out what's happening for that user.
Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Jaime Lopez Jr.

79721860

Date: 2025-07-31 21:41:12
Score: 2
Natty:
Report link

I am posting this answer not as away of negating the previous answer given (which i accepted) but to give my take on what i have leanrt so farespecially after doing somwhat of a 'revision'.

I wrote similar code to the one in my question recently like thus:

// Add two numbers (integer and float, float and integer, float and float or integer and integer)
// and output the result as a float
fn add<T, U>(x: T, y: U) -> f64
where T: From<i32> + Into<f64>,
    U: From<i32> + Into<f64>
{
    x.into() + y.into()
}


fn main() {
    let x = add(5.0, 7);
    println!("{x:?}");
}

This compiled!! The catch of course is that regardless of what type you put as first argument or second they both must be convertible to float, should be able to be derived from an integer and the return type will be a float as well. I guess its not pure generics in play, but considering that (from my understanding) that concrete types like integer and float implement the trait From<i32> and Into<f64> (by integer i mean i32 and by float i mean f64), tghe function so far accepts both i32and i32, i32 and f64, f64 and i32 and f64 and f64. I am open to corrections and even criticisms. And if this code breaks still please let me know.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DammyD

79721856

Date: 2025-07-31 21:34:10
Score: 1.5
Natty:
Report link

The short answer is "no."

There is no API to write to request bodies, only to read them. Previous to the move to the webextensions API (FF 57), it was possible. For example, there was an add-on called TamperData that was exceedingly popular. Since then, there have been other add-ons that have called themselves TamperData, but do not have the same capability.

The slightly longer answer is "maybe." It depends on what you want to do.

If you want to alter form submission in a POST request, you can intercept the submit event, alter the form, then allow the action to continue. (See Is there a way to modify the POST data in an extension now? for some discussion.)

If you want to alter HttpRequest bodies in general, you'd have to create a separate proxy to intercept them and alter them. You can't get an extension to do that.

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Nanigashi

79721853

Date: 2025-07-31 21:29:04
Score: 7.5
Natty:
Report link

I am facing the same issue, and it took me almost two days, and still not find how to implement it. I am building personalized Guacamole platform. I have VMs hosted on ESXi that are added as connections on Guacamole. Please, if you found the solution could you share it with us please

Reasons:
  • RegEx Blacklisted phrase (2.5): could you share
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: El Hizabri Marouane

79721834

Date: 2025-07-31 21:02:57
Score: 2.5
Natty:
Report link

Sadly, Google neglected to add this functionality. This is a major showstopper on my project. I have users absolutely wrecking my spreadsheet with stray copy and pastes, and I need to be able to restore data validiations programattically on dozens of different spreadsheets that have been rolled out. "Fix it by hand" is a serious loss here.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ALVIN Brinson

79721831

Date: 2025-07-31 20:58:56
Score: 1.5
Natty:
Report link
.listRowInsets(EdgeInsets(top: 0, leading: 16, bottom: 0, trailing: 16))

oh yeah! this code will do it!

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

79721789

Date: 2025-07-31 20:04:45
Score: 0.5
Natty:
Report link

Google Drive API ile dosya yüklerken karşılaştığın depolama kotası hataları, genellikle şu nedenlerden kaynaklanır:

---

⚠️ Yaygın Depolama Kotası Hataları ve Çözümleri

1. Depolama Alanı Dolmuş

- Hata mesajı: "Storage quota exceeded" veya "User rate limit exceeded"

- Çözüm:

---

2. Paylaşım Kotası Aşıldı

- Hata mesajı: "Sharing quota exceeded" – çok fazla dosya paylaşımı yapılmış olabilir.

- Çözüm:

---

3. API İstek Sınırı Aşıldı

- Hata mesajı: "403 Forbidden" veya "429 Too Many Requests"

- Çözüm:

---

4. Yanlış Parametre veya Yetki Sorunu

- Hata mesajı: "400 Bad Request" veya "401 Unauthorized"

- Çözüm:

---

🛠️ Kod Tarafında Ne Yapabilirsin?

`python

from googleapiclient.errors import HttpError

try:

\# Dosya yükleme kodu

...

except HttpError as error:

if error.resp.status == 403:

    print("Paylaşım veya depolama kotası aşıldı.")

elif error.resp.status == 429:

    print("Çok fazla istek gönderildi, biraz bekleyip tekrar deneyin.")

elif error.resp.status == 401:

    print("Yetki hatası, token geçersiz olabilir.")

else:

    print(f"Beklenmeyen hata: {error}")

`

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

79721783

Date: 2025-07-31 19:57:43
Score: 0.5
Natty:
Report link

I'm building a Vue Quasar app and nothing with raw-loader worked until I did:

import myIcon from "!!raw-loader!assets/icons/my_icon.svg";

I tried doing the following in my quasar config to override the loaders:

cfg.module.rules.push({
    test: /\.svg$/,
    resourceQuery: /raw/,
    use: "raw-loader",
    type: "javascript/auto",
});

And loading with ?raw in the end but nothing worked. Seems other loaders take priority. The config code above is not necessary with the !!raw-loader! solution.

I can now inline include SVGs and use the CSS advantages.

I know this is an old question but I could not find an answer anywhere but on raw-loaders documentation

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: Basilio German

79721774

Date: 2025-07-31 19:51:41
Score: 2.5
Natty:
Report link

I ran into this issue as well.. Check the path..for it was too subtle... check the letter 'S' in scripts ..!

'xx/xx/Scripts/typings/es6-shim/es6-shim.d.ts'

'xx/xx/scripts/typings/es6-shim/es6-shim.d.ts'

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