79653830

Date: 2025-06-05 05:27:01
Score: 5.5
Natty: 5.5
Report link

exite una version para argumento complexo?

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

79653829

Date: 2025-06-05 05:25:00
Score: 1
Natty:
Report link

I would highly suggest to subscribe to this Amortization Calculator. This is CFPB Regulation Z compliant loan amortization calculator with actuarial-grade APR calculations. Features Newton-Raphson method, multiple calculation standards (Actual/Actual, 30/360), and all payment frequencies (weekly, bi-weekly, semi-monthly and monthly). Built for financial institutions requiring Truth in Lending Act compliance and regulatory examination readiness. Enterprise-grade JSON responses with comprehensive error handling for fintech applications.

https://rapidapi.com/boltstrike1-boltstrike-default/api/boltstrike-loan-amortization-calculator1

You can enter actual dates and have variable first payment dates also - alongside different payment frequencies.

Very simple to use through RapidAPI

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

79653825

Date: 2025-06-05 05:20:59
Score: 3.5
Natty:
Report link

Replace "useActionState' with 'useFormState' and import from 'react-dom' like import { useFormState } from 'react-dom';

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

79653823

Date: 2025-06-05 05:18:58
Score: 4
Natty:
Report link

Here is a short .Net programme from Microsoft.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
  • Low reputation (1):
Posted by: I.Cekusins

79653815

Date: 2025-06-05 05:06:55
Score: 1.5
Natty:
Report link

PEP515 allows separators, but does not impose any restrictions on their position in a number (except that a number should not start/end with a separator and there should not be two separators in a row).

I wrote a plugin for the popular flake8 linter. This plugin will check your numbers in code against simple rules.

pip install flake8-digit-separator
flake8 . --select FDS
Reasons:
  • Blacklisted phrase (1): This plugin
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Valiev T.M.

79653809

Date: 2025-06-05 04:57:53
Score: 2.5
Natty:
Report link

Based on this article:
https://medium.com/@lllttt06/codex-setup-scripts-for-flutter-86afd9e71349

#!/bin/bash
set -ex

FLUTTER_SDK_INSTALL_DIR="$HOME/flutter"
git clone https://github.com/flutter/flutter.git -b stable "$FLUTTER_SDK_INSTALL_DIR"
ORIGINAL_PWD=$(pwd)
cd "$FLUTTER_SDK_INSTALL_DIR"
git fetch --tags
git checkout 3.29.3
cd "$ORIGINAL_PWD"

BASHRC_FILE="/root/.bashrc"
FLUTTER_PATH_EXPORT_LINE="export PATH=\"$FLUTTER_SDK_INSTALL_DIR/bin:\$PATH\""
echo "$FLUTTER_PATH_EXPORT_LINE" >> "$BASHRC_FILE"
export PATH="$FLUTTER_SDK_INSTALL_DIR/bin:$PATH"

flutter precache

# Use your own project name
PROJECT_DIR="/workspace/[my_app]"

cd "$PROJECT_DIR"
flutter pub get
flutter gen-l10n
flutter packages pub run build_runner build --delete-conflicting-outputs
Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: shynah

79653808

Date: 2025-06-05 04:56:52
Score: 3
Natty:
Report link

It works if you place $line in quotes (echo "$line"). This was just the straightforward answer to the simple question asked that I was looking for.

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

79653805

Date: 2025-06-05 04:52:51
Score: 0.5
Natty:
Report link

What I did was create a Project extension function configureLint that takes in a CommonExtension (both LibraryExtension and ApplicationExtension implements CommonExtension):

internal fun Project.configureLint(commonExtension: CommonExtension<*, *, *, *, *, *>){
    with(commonExtension) {
        lint {
            abortOnError = false
            ...
        }
    }
}

Then applied to to both the AppPlugin and LibraryPlugin that I've defined using ApplicationExtension and LibraryExtension respectively:

class AppPlugin : Plugin<Project> {
    override fun apply(target: Project) {
        with(target) {
            extensions.configure<ApplicationExtension> {
                configureLint(this)
            }
        }
    }
}
class LibraryPlugin : Plugin<Project> {
    override fun apply(target: Project) {
        with(target) {
            extensions.configure<LibraryExtension> {
                configureLint(this)
            }
        }
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What I
  • Low reputation (1):
Posted by: Jason Withers

79653797

Date: 2025-06-05 04:44:49
Score: 2
Natty:
Report link

you can use dacastro4/laravel-gmail to get mail from gmail-api

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lou Ngô

79653796

Date: 2025-06-05 04:44:49
Score: 0.5
Natty:
Report link

I was just starting to work on a project to simulate Amplitude division based interference pattern. And I came to a realization, that yes, classic backward ray tracing is incapable of handling wave optics related phenomenon like interference patterns. You can try to keep track of phase differences and everything, but it would turn in a memory hell very quick. But, you know, we don't really need to simulate a wave front or a wave to actually get the simulation right. I came up with this idea of actually doing forward ray tracing to solve it. Because we already know what's going into the system, as the physics experiments are designed to. So if I send the beams I desire, and then calculate the interference pattern by tracing the rays all along the way to the screen. I might get the results. This is because I can just simply trace a ray with this complex phase angle part and at last when they converge, calculate their interference with simple math.

Just so you know, I haven't implemented it right now. But I feel that this might be the way to do it. But this won't work good in a classic scene in Computer graphics where everything is traced backwards, because it's efficient.

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

79653791

Date: 2025-06-05 04:38:48
Score: 0.5
Natty:
Report link

When we run following command
flutter build ipa --dart-define=MY_ENV=testing

it will generate a DART_DEFINES in User-Defined as show in screenshot in Xcode.
enter image description here

MY_ENV=testing is TVlfRU5WPXRlc3Rpbmc= in base64

So we can create a environment variable in Xcode scheme and use it in this DART_DEFINES

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When we
  • High reputation (-1):
Posted by: THANN Phearum

79653785

Date: 2025-06-05 04:25:45
Score: 0.5
Natty:
Report link

Adding a delay seems to work as well, I tried forcing a new frame, waiting until previous frame was complete, etc, and none of them worked. Anything under 500ms will still throw though.

    await Future.delayed(const Duration(
        milliseconds: 500));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Swisscheese

79653782

Date: 2025-06-05 04:24:45
Score: 2.5
Natty:
Report link

Old question, but still relevant 15 years later in .Net Core 8 VS2020 (v 17.4)

...I want relative path so that if I move my solution to another system the code should not effect.
please suggest how to set relative path

Starting with F:\temp\r.cur
(more fun than F:\r.cur)

string p = @"F:\temp\r.cur";
Console.WriteLine($"1. p == '{p}'");
// Change this to a relative path
if (Path.IsPathRooted(p))
{
    // If there is a root, remove it from p
    p = Path.GetRelativePath(Path.GetPathRoot(p), p);
    Console.WriteLine($"2. p == '{p}'");
}

// Combine the relative directory with one of the common directories
Console.WriteLine($"3. p == '{Path.Combine(Environment.CurrentDirectory, p)}'");
Console.WriteLine($"4. p == '{Path.Combine(Environment.ProcessPath ?? "", p)}'");
Console.WriteLine($"5. p == '{Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), p)}'");
Console.WriteLine($"6. p == '{Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), p)}'");

Output:

1. p == 'F:\temp\r.cur'                                            Starting place
2. p == 'temp\r.cur'                                               Stripped of the root "F:"
3. p == 'D:\Code\scratch\temp\r.cur'                               Current Directory
4. p == 'D:\Code\scratch\bin\Debug\net8.0\testproject\temp\r.cur'  Process Path
5. p == 'C:\Users\jcc\AppData\Local\temp\r.cur'                    Local Application Data
6. p == 'C:\Users\jcc\AppData\Roaming\temp\r.cur'                  Application Data (roaming)

If you only want the file name, that's a lot easier:

//if you ONLY want the file name, it is easier
string fname = Path.GetFileName(@"F:\temp\r.cur");
// Combine the relative directory with one of the common directories (the current directory, for example)
Console.WriteLine($"3. fname == '{Path.Combine(Environment.CurrentDirectory, fname)}'");
Console.WriteLine($"4. fname == '{Path.Combine(Environment.ProcessPath ?? "", fname)}'");
Console.WriteLine($"5. fname == '{Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), fname)}'");
Console.WriteLine($"6. fname == '{Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), p)}'");

Since you're here... these path manipulations may also be of interest -

Console.WriteLine($"1 Given path: \"D:\\Temp\\log.txt\"");
Console.WriteLine($"2 file name '{Path.GetFileName(@"D:\Temp\log.txt")}'");
Console.WriteLine($"3 no ext    '{Path.GetFileNameWithoutExtension(@"D:\Temp\log.txt")}'");
Console.WriteLine($"4 only ext  '{Path.GetExtension(@"D:\Temp\log.txt")}'");
Console.WriteLine($"5 dir name  '{Path.GetDirectoryName(@"D:\Temp\log.txt")}'");
Console.WriteLine($"6 full path '{Path.GetFullPath(@"D:\Temp\log.txt")}'");

Output:
1 Given path: "D:\Temp\log.txt"
2 file name 'log.txt'
3 no ext    'log'
4 only ext  '.txt'
5 dir name  'D:\Temp'
6 full path 'D:\Temp\log.txt'
Reasons:
  • RegEx Blacklisted phrase (2.5): please suggest how
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: J. Chris Compton

79653778

Date: 2025-06-05 04:18:43
Score: 0.5
Natty:
Report link

Just adding group, the color will let you know they are connected together

@startuml
nwdiag {
 group{
   color="#CCFFCC";
   description = "Hello World";
   alice;
   web01;
  }
  network test {
    alice [shape actor];
    web01 [shape = server];
    alice -- web01;
  }
}
@enduml
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tiên Hưng

79653777

Date: 2025-06-05 04:16:43
Score: 0.5
Natty:
Report link

You mentioned in your question the option spring.virtual.threads.enabled=true. Just to clarify, you mean spring.threads.virtual.enabled=true right?

Also, if you would like to return the response immediately, may I propose to change your code from:

@GetMapping
    public ResponseEntity<String> hello() {
        log.info("Received request in controller. Handled by thread: {}. Is Virtual Thread?: {}",
                Thread.currentThread().getName(), Thread.currentThread().isVirtual());
        helloService.hello();
        return ResponseEntity.ok("Hello, World!");
    }

to something like:

@GetMapping
    public ResponseEntity<String> hello() {
        log.info("Received request in controller. Handled by thread: {}. Is Virtual Thread?: {}",
                Thread.currentThread().getName(), Thread.currentThread().isVirtual());
        CompletableFuture.runAsync(() -> helloService.hello());
        return ResponseEntity.ok("Hello, World!");
    }

I tested on my local and this works.

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

79653772

Date: 2025-06-05 04:11:41
Score: 2.5
Natty:
Report link

int x = 575; // Binary: 1000111111

int y = 64; // Binary: 1000000

int result2 = x & y; // Result: 0 (Binary: 0000000)

Console.WriteLine(result2); // Output: 0

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

79653771

Date: 2025-06-05 04:10:41
Score: 2.5
Natty:
Report link

I'm no supergenius but it looks like you might want to add an embed tag. Look up cross browser video tags. There are known solutions.

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

79653767

Date: 2025-06-05 03:56:38
Score: 1.5
Natty:
Report link

Refresh token rotation is now available. Documentation.

You enable it in your client with Enable refresh token rotation.

Note: I haven't been able to get it to work yet (which is why I ended up here looking for a solution). I'll update this answer when I solve the issue.

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

79653766

Date: 2025-06-05 03:54:37
Score: 1
Natty:
Report link

Something that has worked for me is to use a stateful widget to disable the scroll view once the user starts interacting with the gesture detector.

Also it is important to use a GlobalKey, to make sure that always the same instance of the widget is the one that is displayed and therefore the state is kept

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Juan Daniel Ozuna Espinal

79653753

Date: 2025-06-05 03:33:33
Score: 3
Natty:
Report link

It is clearly mentioned that project.properties.template file doesn't exist in your custom addon project googletagmanager

Try to add that file the problem will be resolved.

Cheers

Bruce

Reasons:
  • Blacklisted phrase (1): Cheers
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bruce Degar

79653744

Date: 2025-06-05 03:24:31
Score: 0.5
Natty:
Report link

I got the same issue like you. For some reasons, at one time I used proxy (tried 2 3 proxies) WITH authentication, the code work correctly without issue.

Fast forward to recently, I used the same code but with a new proxy, it return empty html. Try tweaking it a bit but to no avail. However I found a quick remedy is that to use NON-AUTHENTICATED proxy, then it working perfectly. So you need to whitelist your IPs list which proxy allow, and use non-authenticated proxy instead.

Hope this help.

Reasons:
  • Whitelisted phrase (-1): Hope this help
  • No code block (0.5):
  • Low reputation (1):
Posted by: kenvinams

79653741

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

The easiest and one line solution I found is,

ngrok http 80 --log=stdout > ngrok.log &
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: iku

79653737

Date: 2025-06-05 03:14:29
Score: 3.5
Natty:
Report link

Excellent response, I tried myself your solution and its so simple but powefull... Thanks...

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

79653734

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

I found the root cause and solution to this problem. The issue was with the naming convention of the static library inside the xcframework.

Rename the static library from AnotherLibrary.a to libAnotherLibrary.a solved the issue.

The "lib" prefix is the standard naming convention for static libraries, and Xcode's linker expects this format to properly resolve and link the library.

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

79653730

Date: 2025-06-05 03:00:25
Score: 1.5
Natty:
Report link

Add: app.UseStatusCodePagesWithReExecute("/"); above app.UseAntiForgery();


app.UseStatusCodePagesWithReExecute("/");

app.UseAntiforgery();

...

app.Run();
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: bitronic

79653727

Date: 2025-06-05 02:55:24
Score: 4
Natty:
Report link

fixed by upgrading to iPadOS 17.7.8

thank you!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: a_t

79653719

Date: 2025-06-05 02:36:20
Score: 0.5
Natty:
Report link

As shown by

with subprocess.Popen(

and

No such file or directory: 'mysqldump'

You are missing the mysqldump command on your Mac (Based off the file paths), which you will be able to install via brew install mysql-client or brew install mysql if you want the server installed as well.

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

79653717

Date: 2025-06-05 02:33:19
Score: 1.5
Natty:
Report link

if you didnt find a solution or dont want to technically do it, you can use our apify app to check in bulk. just enter the urls you want to scan. https://apify.com/onescales/website-speed-checker

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: One Scales

79653713

Date: 2025-06-05 02:26:17
Score: 8.5 🚩
Natty:
Report link

i have the same issue how can we fix it

Reasons:
  • Blacklisted phrase (1): how can we
  • Blacklisted phrase (1): i have the same issue
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): i have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kon Nahlawi

79653703

Date: 2025-06-05 02:04:12
Score: 1.5
Natty:
Report link

Yes, you can differentiate using the assignedLicenses field in Microsoft Graph API. Each Power BI Pro license has a unique SKU ID (like PowerBIPro). Check if that SKU ID is present in the user's assignedLicenses. A regular (free) Power BI user won't have that Pro SKU assigned.

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

79653701

Date: 2025-06-05 02:03:12
Score: 1
Natty:
Report link

you can differentiate between Power BI Pro license users and regular users by examining the specific SKU IDs in the license assignments.

with this query:
GET https://graph.microsoft.com/v1.0/users/{user-id}?$select=assignedLicenses

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

79653697

Date: 2025-06-05 01:57:10
Score: 3
Natty:
Report link

Just change the last line of your template2.docx, add an tr at the beginning:
enter image description here

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

79653696

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

What do you mean by recreate_collection command as I can't find such command in Milvus SDKs? Do you mean by dropping & create a new collection with the same name & schema? If so, I think there is no direct method to recover the data. Since your volume seems still keep the original data, you may try to manually batch_import referring to restore scripts in https://github.com/zilliztech/milvus-backup.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What do you mean
  • Low reputation (1):
Posted by: Jael Gu

79653688

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

The simple workaround is just to make sure the rdl file already has the full description in it's name (ie, change the file name to My Report About Some Important Stuff.RDL).

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

79653686

Date: 2025-06-05 01:32:05
Score: 4.5
Natty: 5
Report link

This person is upload my home picture my secret picture https://www.facebook.com/share/19QmTzB3VJ/?mibextid=qi2Omg

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

79653679

Date: 2025-06-05 01:22:02
Score: 1.5
Natty:
Report link

Hello

You are simply not running the backend.

Following problems could be the issue:

  1. You are using invalid port when running a request from front end to back end

  2. You are not running the back end code on your machine

  3. The backend is running on the correct process, but there where an error that was occured that you may know about which made the backend server go down

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

79653674

Date: 2025-06-05 01:12:00
Score: 3.5
Natty:
Report link

NoteGen supports WebDAV, which is an open-source project. You can refer to how it is implemented

https://github.com/codexu/note-gen

Reasons:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: codexu

79653666

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

you can try to select the column and unpivot other columns in PQ

enter image description hereenter image description here

then use dax to create a column

Column=

IF ( FORMAT ( TODAY (), "mmm" ) = 'Table'[Attribute], "y" )

enter image description hereenter image description here

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

79653655

Date: 2025-06-05 00:40:52
Score: 0.5
Natty:
Report link

Microsoft provides a module for Dynamic IP Restrictions.

The Dynamic IP Restrictions (DIPR) module for IIS 7.0 and above provides protection against denial of service and brute force attacks on web servers and web sites. To provide this protection, the module temporarily blocks IP addresses of HTTP clients that make an unusually high number of concurrent requests or that make a large number of requests over small period of time.

See https://learn.microsoft.com/en-us/iis/manage/configuring-security/using-dynamic-ip-restrictions

To Install

From the Select Role Services screen, navigate to Web Server (IIS) > Web Server > Security. Check the IP and Domain Restrictions check box and click Next to continue.

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

79653654

Date: 2025-06-05 00:39:52
Score: 1.5
Natty:
Report link
{
  "key": "1 2",
  "command": "editor.action.quickFix",
  "when": "editorHasCodeActionsProvider && textInputFocus && !editorReadonly"
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Get Man

79653642

Date: 2025-06-05 00:17:47
Score: 3
Natty:
Report link

The answer is easy. All you have to do is know that Africa is loaded with personal issues. And you'll be able get friendly casper linux working for you!

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

79653639

Date: 2025-06-05 00:04:44
Score: 3
Natty:
Report link

After debugging (and acknowledging that I'm ****):

ELASTICSEARCH_SERVICEACCOUNTTOKEN contained unsupported character.

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

79653633

Date: 2025-06-04 23:52:42
Score: 3
Natty:
Report link

If you prefer not to modify your code, you can disable the inspection in IDE following these steps:

Settings > Editor > Inspections > Unclear exception clausesa, uncheck it.

It works for PyCharm 2023.1.2. @Daniel Serretti mentioned that the name of this rule was something like "too broad" in older versions.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Daniel
  • Low reputation (1):
Posted by: Winhows

79653626

Date: 2025-06-04 23:43:39
Score: 0.5
Natty:
Report link

The most likely situation here is that you were failing the DBT alignment rules, which for arm systems need to be loaded at a 8-byte boundary (https://www.kernel.org/doc/Documentation/arm64/booting.txt).

Setting UBOOT_DTB_LOADADDRESS = "0x83000000" like you did will guarantee that.

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

79653625

Date: 2025-06-04 23:40:39
Score: 1
Natty:
Report link

Probably the easiest,

run: |
  VERSION=$(jq -r .version package.json)
  echo "Full version: $VERSION"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shashan Sooriyahetti

79653622

Date: 2025-06-04 23:32:37
Score: 6 🚩
Natty:
Report link

I can't upvote because my account is new, but I'm having this same issue. I have tried with a GC project linked to AppsScript. I have tried with a fresh, unlinked GC project. Same issue. I filed a bug with GC Console team and they closed it and pointed towards Workspace Developer support.

Reasons:
  • Blacklisted phrase (0.5): upvote
  • RegEx Blacklisted phrase (1): Same issue
  • RegEx Blacklisted phrase (2): can't upvote
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TheInternet

79653606

Date: 2025-06-04 23:04:30
Score: 0.5
Natty:
Report link

You need to change:

if (i % 7 == 0) 
{
    System.out.print(calformat1 + "  ");
} 

to:

if (i % 7 == 6) {
    System.out.println();
}
System.out.print(calformat1 + "  ");

% 7 == 6 is true for i = 6, 13, 20, 27... This creates the row breaks at the right intervals for your desired layout.

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

79653603

Date: 2025-06-04 23:00:29
Score: 0.5
Natty:
Report link

If you need to add MFA to Strapi without writing custom code, you might try the HeadLockr plugin. It provides:

Admin-side MFA (so your administrators can enroll TOTP or other second factors)

Content-API MFA (so you can protect certain endpoints with a second factor)

Disclosure: I’m one of the contributors to HeadLockr. You can install it via npm/yarn, configure your preferred provider, and have MFA running in a few minutes. Hope this helps!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • No code block (0.5):
  • Low reputation (1):
Posted by: Cloudhead Bookings

79653591

Date: 2025-06-04 22:42:24
Score: 3
Natty:
Report link

Thank you, I had the same issue.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): I had the same
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Prabhat Thapa

79653580

Date: 2025-06-04 22:32:22
Score: 0.5
Natty:
Report link

I'm not sure if this exactly addressed your question, but I'll mention how I manipulate the basemap's size/zoom level when I'm using contextily

For the sake of the example, have a geodataframe of train stops in San Francisco:

print(bart_stops)
                     stop_name                           geometry
16739    16th Street / Mission   POINT (-13627704.79 4546305.962)
16740    24th Street / Mission  POINT (-13627567.088 4544510.141)
16741              Balboa Park  POINT (-13630794.462 4540193.774)
16742  Civic Center / UN Plaza  POINT (-13627050.676 4548316.174)
16744              Embarcadero   POINT (-13625180.62 4550195.061)
16745                Glen Park  POINT (-13629241.221 4541813.891)
16746        Montgomery Street   POINT (-13625688.46 4549691.325)
16747            Powell Street   POINT (-13626327.99 4549047.884)

and I want to plot that over a contextily basemap of all of San Francisco. However, if I just add the basemap, I get a plot where the basemap is zoomed into the points -- you can't see the rest of the geography. No matter what I do to figsize it will not change.

fig, ax = plt.subplots(figsize=(5, 5))
bart_stops.plot(ax=ax, markersize=9, column='agency', marker="D")
cx.add_basemap(ax, source=cx.providers.CartoDB.VoyagerNoLabels, crs=bart_stops.crs)
ax.axis("off")
fig.tight_layout();

enter image description here

To get around this, I manipulate the xlim and ylim of the plot, by referencing another geodataframe with a polygon of the area I'm interested in (I would get that using pygris in the U.S. to get census shapefiles-- I'm less familiar with the options in other countries). in this case I have the following geodataframe with the multipolygon of San Francsico.

print(sf_no_water_web_map)
                   region                                           geometry
0  San Francisco Bay Area  MULTIPOLYGON (((-13626865.552 4538318.942, -13...

plotted together with the train stops, they look like this:

fig, ax = plt.subplots(figsize=(5, 5))
sf_no_water_web_map.plot(ax=ax, facecolor="none")
bart_stops.plot(ax=ax);

enter image description here

With that outline of the city sf_no_water_web_map, I can set the xlim and ylim of a plot -- even when I don't explicitly plot that geodataframe -- by passing its bounds into the axis of the plot.

fig, ax = plt.subplots(figsize=(5, 5))
bart_stops.plot(ax=ax, markersize=9, column='agency', marker="D")
# Use another shape to determine the zoom/map size
assert sf_no_water_web_map.crs == bart_stops.crs
sf_bounds = sf_no_water_web_map.bounds.iloc[0]
ax.set(xlim = (sf_bounds['minx'], sf_bounds['maxx']),
       ylim = (sf_bounds['miny'], sf_bounds['maxy'])
       )
ax.axis("off")
fig.tight_layout()
cx.add_basemap(ax, source=cx.providers.CartoDB.VoyagerNoLabels, crs=bart_stops.crs)

enter image description here

Hopefully that connects to your desire to re-size the basemap.

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

79653567

Date: 2025-06-04 22:19:17
Score: 1
Natty:
Report link
import pandas as pd
import numpy as np

start_date = "2024-09-01"
end_date = "2025-04-30"

# date range with UK timezone (Europe/London)
date_range = pd.date_range(start=start_date, end=end_date, freq='h', tz='Europe/London')
dummy_data = np.zeros((len(date_range), 1))

df = pd.DataFrame(dummy_data, index=date_range)


# Sunday March 30th at 1am
print(df.resample('86400000ms').agg('sum').loc["2025-03-29": "2025-04-01"])
#                              0
# 2025-03-29 23:00:00+00:00  0.0
# 2025-03-31 00:00:00+01:00  0.0
# 2025-04-01 00:00:00+01:00  0.0
print( df.resample('1d').agg('sum').loc["2025-03-29": "2025-04-01"])
#                             0
# 2025-03-29 00:00:00+00:00  0.0
# 2025-03-30 00:00:00+00:00  0.0
# 2025-03-31 00:00:00+01:00  0.0
# 2025-04-01 00:00:00+01:00  0.0

Above is a minimal example to reproduce your problem. I believe the issue is with resampling by 86400000ms, which causes an error when skipping the DST transition on Sunday, March 30th at 1 a.m. Why not resample by '1d' instead?

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

79653566

Date: 2025-06-04 22:17:17
Score: 1
Natty:
Report link

Take a look at the official docs:

https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DAX.concepts.html

Java specific example here:

https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DAX.client.run-application-java.html

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

79653555

Date: 2025-06-04 22:01:14
Score: 2.5
Natty:
Report link
  1. Create a SQL job with script that picks up the status

  2. If you have monitoring in place - you could generate an alert that goes to the server event logs if not right

  3. The other option is sp_send email assuming you can send emails from the server. (Configure DB Mail first)

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

79653554

Date: 2025-06-04 22:01:14
Score: 2.5
Natty:
Report link

I tried everything above, but I was still seeing it in the Endpoints Explorer.
There a were couple of references to it in ~\obj\Debug\net9.0\ApiEndpoints.json
Closing the project and cleaning out the ~\obj\Debug folder fixed it.

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

79653550

Date: 2025-06-04 21:59:13
Score: 0.5
Natty:
Report link

You're running into this because szCopyright, while declared const, isn't a constant expression from the compiler's point of view during the compilation of other modules. In C, only literal constants can be used to initialize variables with static storage duration, like your myReference. The workaround is to take the address of szCopyright instead, which is a constant expression, like this: static const void *myReference = &szCopyright;. This ensures the symbol gets pulled into the final link without violating compiler rules. Just make sure szCopyright is defined in only one .c file and declared extern in the header.

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

79653547

Date: 2025-06-04 21:57:12
Score: 0.5
Natty:
Report link

If your purpose is to display a custom invalid email message. you only need to add data-val-email="Custom messege" in input field. Here is the updated form.It works with jquery.validate.js and jquery.validate.unobtrusive.js.

<form id="myForm">

<input id="email" type="email" name="email" data-val="true" data-val-required="Email cannot be empty" data-val-email="Please add valid email">&nbsp;<span style="font-size: smaller; color: red" data-valmsg-for="email" data-valmsg-replace="true"></span>
<button id="btnconfirm" class="button" type="submit">Confirm</button>

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Muhammad Zeeshan

79653542

Date: 2025-06-04 21:49:10
Score: 2.5
Natty:
Report link

Try putting in a comment in your language such as //jump point then open the Find bar and enter the comment you choose. Then use the find bar arrows to jump to that place in the code.

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

79653537

Date: 2025-06-04 21:45:09
Score: 3.5
Natty:
Report link

This is the equivalent of playwright for desktop:

https://github.com/mediar-ai/terminator/blob/main/README.md

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

79653535

Date: 2025-06-04 21:40:08
Score: 3.5
Natty:
Report link

In response No. 2, please separate the text for the simple product button and the variable product button. Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: siavash mahmudi

79653525

Date: 2025-06-04 21:35:06
Score: 1.5
Natty:
Report link

When you install a package with pip and the installation fails, pip does not automatically uninstall any successfully installed dependencies.

Check which packages were recently installed with this command:

pip list --format=columns
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you in
  • Low reputation (1):
Posted by: JosueDanielChitay

79653518

Date: 2025-06-04 21:31:05
Score: 3
Natty:
Report link
  1. Click the keyboard.

  2. Click the hamburger (the horizontal lines) at the bottom of the icons that pop-up.

  3. Click Show on-screen keyboard.

enter image description here

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

79653513

Date: 2025-06-04 21:24:03
Score: 5
Natty:
Report link

I keep getting 404 when I tried accessing the "http://localhost:8081/artifactory", does anyone else faced the same issue?

Logs shows:
Cluster join: Retry 405: Service registry ping failed, will retry. Error: I/O error on GET request for "http://localhost:8046/access/api/v1/system/ping": Connection refused

Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.jfrog.access.server.db.util.AccessJdbcHelperImpl]: Constructor threw exception
    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:222)
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:145)
    at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:318)
    ... 176 common frames omitted
Caused by: org.jfrog.storage.dbtype.DbTypeNotAllowedException: DB Type derby is not allowed: Cannot start the application with a database other than PostgreSQL. For more information, see JFrog documentation.
    at org.jfrog.storage.util.DbUtils.assertAllowedDbType(DbUtils.java:884)

Which I installed and configured the PostgreSQL however, the logs keep showing the same things, which is very annoying... I must be missing something.

I've also tried installing on Ubuntu 22.04 using different Artifactory version just to test but still same errors. What am I missing?

Reasons:
  • RegEx Blacklisted phrase (3): does anyone else
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30723488

79653512

Date: 2025-06-04 21:23:03
Score: 4
Natty:
Report link

This is a bug in the Docling https://github.com/docling-project/docling code as of 4-Jun-2025.

I also face the same issue.

The pull request #285, https://github.com/docling-project/docling-core/pull/285, will add a feature which is expected to solve the problem of cells in tables containing images.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I also face the same issue
  • Low reputation (0.5):
Posted by: Chandan

79653511

Date: 2025-06-04 21:22:02
Score: 5
Natty:
Report link

Where did ai go? You're asking here

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Where did
  • Low reputation (1):
Posted by: Era Osa

79653510

Date: 2025-06-04 21:21:02
Score: 1.5
Natty:
Report link

Pip shouldn't uninstall package dependencies if the installation failed.

If you think it might have, just try to import the dependent package to test it yourself.

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

79653509

Date: 2025-06-04 21:20:01
Score: 1.5
Natty:
Report link

So you're running a FastAPI ML service with CPU-intensive SVD computations on the main thread, and you're seeing occasional throttling. You already scaled up Gunicorn workers, but you are wondering if you should move this to a separate thread or any best practices, right?

Ah, CPU-bound work in FastAPI can be tricky! Threads might not help much because of Python’s GIL, but let me show you a few approaches we’ve seen work well.

So the first step is ProcessPoolExecutor (Quick Fix)

For lighter workloads, offload to a separate process:

from concurrent.futures import ProcessPoolExecutor  
import asyncio  

def _compute_svd(matrix: np.ndarray):  
    return np.linalg.svd(matrix, full_matrices=False)  

async def svd_with_fallback(self, matrix):  
    with ProcessPoolExecutor() as executor:  
        return await asyncio.get_event_loop().run_in_executor(executor, _compute_svd, matrix)  

Pros: Simple, uses multiple cores.
Cons: Overhead for large matrices (serialization costs).

If you’re already hitting CPU limits, then a job queue(like Celery) might be better for scaling.

So the next step is Celery + Redis (Production-Grade)

@celery.task  
def async_svd(matrix_serialized: bytes) -> bytes:  
    matrix = pickle.loads(matrix_serialized)  
    U, S, V = np.linalg.svd(matrix)  
    return pickle.dumps((U, S, V))  

Pros: Decouples compute from API, scales horizontally.
Cons: Adds Redis/RabbitMQ as a dependency.

If you are thinking about optimizing Gunicorn further, so I mean, if you’re sticking with more workers:

gunicorn -w $(nproc) -k uvicorn.workers.UvicornWorker ...  

Match workers to CPU cores.

Check for throttling in htop—if it’s kernel-level, taskset might help.

Maybe you are considering any low-hanging performance optimizations, right?

For SVD specifically, you could try Numba(if numerical stability allows):

from numba import njit  
@njit  
def svd_fast(matrix):  
    return np.linalg.svd(matrix)  # JIT-compiled  

But test thoroughly! Some NumPy-SVD optimizations are already BLAS-backed.
I’d start with ProcessPoolExecutor—it’s the least invasive. If you’re still throttled, Celery’s the way to go. Want me to dive deeper into any of these?

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

79653508

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

I'm very late to this question, but we find VSTO add-ins work fine with both 32-bit and 64-bit Office when using either x86 or AnyCPU. Using x64 only works with 64-bit Office.

We see some small performance improvements working with the 64-bit except when running our tests from Nunit. Our nunit tests with 64-bit Office are much slower than before. Not sure why that is but at least they do still work.

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

79653505

Date: 2025-06-04 21:16:00
Score: 1.5
Natty:
Report link

I put more content into the subject and body of the test message my script was sending, and it was delivered to the To mailbox from the "send as" account.

To anyone reading this in the future, put more that just "Test sub" and "Test bod" in the subject and body of your test messages, or google will likely think they're spam, or just too low effort to be a meaningful message.

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

79653503

Date: 2025-06-04 21:14:59
Score: 3.5
Natty:
Report link

I fought with this for hours until this comment. The problem was that I needed to restart the computer before PowerShell would recognize it. (facepalm)

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

79653493

Date: 2025-06-04 21:08:58
Score: 2.5
Natty:
Report link

rm -rf node_modules package-lock.json

Rebuilds node_modules and package-lock.json based on the simplified package.json.

npm install

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Javidan-R

79653487

Date: 2025-06-04 21:05:56
Score: 4.5
Natty: 4
Report link

আমার সকল একাউন্ট ফিরিয়ে দেওয়ার জন্য আমি কর্তৃপক্ষ সকল অ্যাকাউন্ট আমার ফিরিয়ে দেওয়ার জন্য আমি অভিযোগ জানাই যেন আমার ছবি ভিডিও একাউন্ট বিকাশ সব কিছু যেন ফিরিয়ে দেয় হ্যাকার চক্র নিয়ে গেছিল জিমেইল আইডি সবকিছু নিয়ে গেছে আমার সবকিছু ফিরে পেতে চাই কর্তৃপক্ষের কাছে অভিযোগ জানাই আমার নাম্বার দিয়ে দিলাম আমার সাথে অবশ্যই যোগাযোগ আশা করি করবেন আমি একটা গরীব অসহায় মানুষ 01305092665 এটা আমার নাম্বার

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (2.5):
  • Low reputation (1):
Posted by: Md Azizul Haque

79653478

Date: 2025-06-04 20:54:53
Score: 2
Natty:
Report link

The problem has been resolved. It was not a code issue or problem with the computer settings. It was a security issue. While my application could be run, all the DLLs were blocked. It turns out multiple internal applications were failing for this reason, although I was only told about my application, initially. Once the DLLs were manually unblocked, the application worked fine.

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

79653476

Date: 2025-06-04 20:54:53
Score: 1.5
Natty:
Report link

We found, due to the recent Windows Update, jscript9legacy.dll was getting used instead of jscript.dll (per this reference: Script errors in Working Papers Caseview - Windows 24H2 Update). According to Caseview, "jscript9legacy.dll does not contain the full functionality" as jscript.dll.

Using Solution 2 from the reference above, we created a new registry key to load "jscript.dll" as default instead of the replacement DLL "jscript9legacy.dll".

Now when we call the Server Side JavaScript function, we no longer get the specified error.

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

79653475

Date: 2025-06-04 20:53:52
Score: 1.5
Natty:
Report link

I had the same error on my Mac. it solved by typing "sudo pip install google-adk". without sudo permission does not work

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

79653474

Date: 2025-06-04 20:53:52
Score: 1.5
Natty:
Report link

I'm horribly late but....

Installed the wrong JDK. I installed 1.8.0_51, but I SHOULD of went with 1.6.0_45. The program like. actually gets further now, and I get to a similar spot as OP.

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

79653462

Date: 2025-06-04 20:44:50
Score: 1.5
Natty:
Report link

The answer was provided by the Zephyr Espressif Discord group.

In my build command I was targeting the APPCPU

build\esp32_devkitc_wroom\esp32\appcpu

I should have targeted the PROCPU which is the main boot core.

Once changed the build was successful and showed the correct RAM value

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

79653460

Date: 2025-06-04 20:44:50
Score: 1.5
Natty:
Report link

with Savedstate version 1.3.0, we can use like this


@Serializable
data class UiState(
    @Serializable(with = SnapshotStateListSerializer::class)
    val items: SnapshotStateList<String>,
    
    @Serializable(with = MutableStateSerializer::class)
    val text: MutableState<String>
)

https://developer.android.com/jetpack/androidx/releases/savedstate#1.3.0:\~:text=Add%20SnapshotStateListSerializer%20to%20support%20mutableStateListOf.

https://developer.android.com/jetpack/androidx/releases/savedstate#1.3.0:\~:text=Support%20%40Serializer(with%20%3D%20...)%20for%20MutableStateFlowSerializer%20and%20MutableStateSerializer%20(I90953)

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

79653458

Date: 2025-06-04 20:41:49
Score: 5
Natty:
Report link

I found the patch for fixing this issue. You can find it here: https://www.drupal.org/files/issues/2025-03-18/2124117-29.patch

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

79653452

Date: 2025-06-04 20:38:48
Score: 4
Natty:
Report link

Open Services and go to the Firebird Service then:

enter 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: Pércoles Tiago Napivoski

79653451

Date: 2025-06-04 20:37:47
Score: 3
Natty:
Report link

Your question is not clear, is it MPesa C2B or to a phone number?

If you're receiving through a paybill or till number then there is an api (Daraja)

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

79653449

Date: 2025-06-04 20:35:46
Score: 10 🚩
Natty: 5.5
Report link

@webDev_434 , did you find the solution ?

Reasons:
  • RegEx Blacklisted phrase (3): did you find the solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Nischay Maridevegowda

79653433

Date: 2025-06-04 20:17:41
Score: 0.5
Natty:
Report link

You can enable automatic update of those links when you open the workbook. First check that this is allowed in you organisation, if it is the case you can follow those steps:

  1. Go to File => Options

  2. Go to the Thrust Center tab and click on "Trust Center Settings..." box

  3. Go to External Center tab

  4. In Security settings for Workbook links part and check the "Enable automatic update for all Workbook links" box

  5. Click on Ok and go out of settings

  6. On the ribbon go to Data => Edit links

  7. Click on "Startup Prompt…" box

  8. In the popup window select "Don't display the alert and update links" box

  9. Click on Ok and then on close

  10. Save the Excel file

The links should update automatically and you should not get the popup anymore.

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

79653432

Date: 2025-06-04 20:16:41
Score: 2.5
Natty:
Report link

I was using a library (SAMD_PWM) that wanted SerialUSB, but it was undefined in my IDE.

At the beginning of my sketch I simply added:

#define SerialUSB Serial

and everything worked fine.

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

79653427

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

Is there any way I can determine if the query is truly safe? My current IsQuerySafe(string) method

That rather sounds like The Halting Problem...., but

Essentially, I want to only allow select queries

Use a different database login (ie. connection string) that has only read access. Any attempt to perform a modification will be an access violation. (On SQL Serve a user with just db_datareader role would do it on the relevant database, and no access at all to others.)

Reasons:
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • High reputation (-2):
Posted by: Richard

79653423

Date: 2025-06-04 20:04:37
Score: 1
Natty:
Report link

You can add it to your entrypoint before exec-ing the main command

#!/usr/bin/env bash

ulimit -c unlimited
echo '/core.%e.%p' > /proc/sys/kernel/core_pattern

exec "$@"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jakeonfire

79653415

Date: 2025-06-04 19:58:36
Score: 1
Natty:
Report link

You can disable privacy level controls, please make sure that this is in accordance with your organisation policy.

To do so you can follow those steps:

  1. Go to Power Query settings

  2. In the Global options go to privacy section in the left panel

  3. Check the "Always ignore Privacy Level settings" box and click on Ok

  4. Refresh your data in Power Query

  5. Save and apply

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

79653400

Date: 2025-06-04 19:45:32
Score: 0.5
Natty:
Report link

Input/raw_input take a string as an argument, for this purpose, that is printed before what is input:

me_typed = input('Me: ')

That's it. The user will see "Me: ", they will see the characters they type after it. No need for print, since it's included.

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

79653394

Date: 2025-06-04 19:40:31
Score: 1
Natty:
Report link

Christian has a good hack for an answer here, but perhaps a more updated CSS hack would be to use user-select: none:

.CodeMirror-gutter-wrapper {
  user-select: none;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dykotomee

79653392

Date: 2025-06-04 19:39:30
Score: 1.5
Natty:
Report link

In TYPO3 v13 there is now the possibility to add GET params to a white list:

$GLOBALS['TYPO3_CONF_VARS']['FE']['cacheHash']['cachedParametersWhiteList'] = param1, param2;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Stefan Padberg

79653387

Date: 2025-06-04 19:36:29
Score: 0.5
Natty:
Report link

so I discovered that when you sign up for an Azure FREE account, there's times when you can sign up, but NOT have a subscription associated. So it's basically a shell account until you link it to the free subscription itself. It's odd because I've seen walkthroughs where the subscription is part of the setup of the free account, and times when it just skips over the subscription.

What I had to do to resolve this issue was:

1.) Log into the portal.azure.com account

2.) In the search look for "subscriptions"

3.) When you get there you will see that Microsoft has the option for the free or pay as you go subscription. Choose free.

4.) It'll walk you through adding your debit card, 2 factor authentication, etc.

5.) Once done this issue is resolved.

Let me know if this helps.

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

79653385

Date: 2025-06-04 19:35:29
Score: 1
Natty:
Report link

You should separate these calculations. Leave only 2000 in cell F5, and place the final calculation =F5+3000*A5 in another cell, e.g. H5.

enter image description here

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

79653384

Date: 2025-06-04 19:34:28
Score: 3.5
Natty:
Report link

I don't know if Stackoverflow is the right place to discuss this question.

Stack Overflow usually discusses questions regarding programming and computer science in general.

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jilvin Jacob

79653380

Date: 2025-06-04 19:31:27
Score: 4
Natty:
Report link

Follow traffic signals

Drive Carefully

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Naveen Kumar Sahu

79653376

Date: 2025-06-04 19:29:27
Score: 1.5
Natty:
Report link

Changed the way I'm calling script2 seems to have done the trick:

& "$jobFilesPath\script2.ps1" @params -Verbose
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: StackExchangeGuy

79653373

Date: 2025-06-04 19:28:25
Score: 8 🚩
Natty: 6.5
Report link

I'm looking to d othe same thing. Have you had any luck with that yet ? Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1.5): any luck
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David

79653372

Date: 2025-06-04 19:27:25
Score: 2.5
Natty:
Report link

ok, i have managed it another way: creating my own js widget using the loadWysiwygFromTextarea js library.

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

79653368

Date: 2025-06-04 19:26:25
Score: 2
Natty:
Report link

You should not need to mock a protected method. You should really only need to mock the public api of a dependency. You should be able to do whatever you want by mocking directly the method that is being called by your object under test. If your object under test is directly calling the protected method, it should really be changed to public.

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

79653362

Date: 2025-06-04 19:22:23
Score: 1
Natty:
Report link

The following works for me on my machine (Ubuntu-22.04).

On The line you want to duplicate: copy as usual: Ctrl+c

Then, while on the same line, past it (also, as usual): Ctrl+v

This will duplicate the line below the original one.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: bakursait

79653347

Date: 2025-06-04 19:10:20
Score: 3
Natty:
Report link

Use the Filter selector button to open and change the current filtering type, as in the picture:

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

79653346

Date: 2025-06-04 19:04:18
Score: 2
Natty:
Report link

Faced the same problem. This 1:12 YouTube video helped!

Search for Services in the start menu search box.

Search for your MySQL application, like MYSQL80.

Right click and select Properties.

Look for the Search Status.

If its Stopped, then click on Start.

Now MySQL application is running. It doesn't ask me for a password, but connects!

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