79497846

Date: 2025-03-10 11:35:49
Score: 6 🚩
Natty: 6
Report link

Thanks for this, I just want to know if it is possible to capture the screen along with the scrollable content also using WebRtc method. I fyes could you please share an example or some code snippets.

Thanks, Raja Ar

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): could you please share
  • RegEx Blacklisted phrase (1): I fyes could you please
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user3369915

79497842

Date: 2025-03-10 11:34:49
Score: 2.5
Natty:
Report link

More details about this situation can be found here and here.

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

79497830

Date: 2025-03-10 11:30:48
Score: 0.5
Natty:
Report link

Answering my own question. There were several issues with the previous code. This works:

#!/bin/bash
STAMP=$(date '+%0d-%0m-%0y-%0kH%0M')
rsync  -aAXv --prune-empty-dirs  --dry-run \
 --include='*/' \
 --include='/scripts/***' \
 --exclude='/Documents/sueMagic/***' \
 --include='/Documents/***' \
 --exclude='*' \
 --log-file="/run/media/maurice/TO2-LIN-1TB/backup/logs/linuxHomeBackupSlim-$STAMP.log" \
 /home/maurice/ /run/media/maurice/TO2-LIN-1TB/backup/linuxHomeBackupSlim 

I suppressed the R (relative) option. Patterns are anchored at the root of the transfer with a leading / and the source directory is also ending with a slash. The initial include will traverse the whole tree and the final exclude '*' eliminates everything in the currently examined directory that has not be included previously. Empty directories are pruned.

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

79497828

Date: 2025-03-10 11:30:48
Score: 2
Natty:
Report link

it seems everyone is facing this issue this week due to new updates in gluestack, I just added in package.json file the following:

"overrides": { "@react-aria/utils": "3.27.0" },
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Abdulrahman

79497816

Date: 2025-03-10 11:25:47
Score: 0.5
Natty:
Report link

Yes, it can affect performance since using any introduces runtime dynamic dispatch. If you want to avoid it, use generics for your ViewModel too:

public final class SplashViewModel<UseCase: CheckRemoteConfigUseCaseProtocol>: ViewModel {
    private let checkRemoteConfigUseCase: UseCase
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kiryl Famin

79497793

Date: 2025-03-10 11:15:45
Score: 4
Natty:
Report link

I'd like to offer an app for testing. The best test management system! I recommend it! https://testomat.io/

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

79497789

Date: 2025-03-10 11:10:44
Score: 3.5
Natty:
Report link

The same situation in 25 version. I think сhange the program version to the previous one.

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

79497786

Date: 2025-03-10 11:09:43
Score: 3
Natty:
Report link

This was apparently a known bug with Godot 4.3, fixed in Godot 4.4. Upgrading the code to Godot 4.4 fixed the issue.

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

79497783

Date: 2025-03-10 11:08:43
Score: 0.5
Natty:
Report link

You could try updating your webpack config to prevent it from getting bundled

const nextConfig = {
    webpack: (config) => {
        config.externals.push("@node-rs/argon2");
        return config;
    }
};
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ken

79497768

Date: 2025-03-10 11:00:42
Score: 0.5
Natty:
Report link

You can try below steps for your api testing using postman. it's worked of me.

Step 1: Check Session Status

  1. GET Request: http://localhost:3000/api/auth/session
    • Description: This API call checks if you are logged in. If not logged in, it returns an empty object.

Step 2: Obtain CSRF Token

  1. POST Request: http://localhost:3000/api/auth/signin
    • Pre-request Script:

      const jar = pm.cookies.jar();
      console.log("Pre request called...");
      
      pm.globals.set("csrfToken", "Hello World");
      pm.globals.unset("sessionToken");
      
      jar.clear(pm.request.url, function (error) {
        console.log(error);
      });
      
    • Description: This script sets the csrfToken in the global environment variable and clears the sessionToken you can check that in your postman console.

    • Post-response Script:

      console.log("Post response called...");
      pm.cookies.each(cookie => console.log(cookie));
      let csrfToken = pm.cookies.get("next-auth.csrf-token");
      let csrfTokenValue = csrfToken.split('|')[0];
      
      console.log('csrf token value: ', csrfTokenValue);
      pm.globals.set("csrfToken", csrfTokenValue);
      
    • Description: This script retrieves the csrfToken from the cookies and sets it in the global environment variable.

Step 3: Log In with Credentials

  1. POST Request: http://localhost:3000/api/auth/callback/credentials
    • Body Payload:
      {
        "email":"{{userEmail}}" ,
        "password": "{{userPassword}}",
        "redirect": "false",
        "csrfToken": "{{csrfToken}}",
        "callbackUrl": "http://localhost:3000/",
        "json": "true"
      }
      
      • take variable from global environment file from postman.
    • Pre-request Script:
      const jar = pm.cookies.jar();
      
      jar.unset(pm.request.url, 'next-auth.session-token', function (error) {
        // error - <Error>
      });
      
    • Post-response Script:
      pm.cookies.each(cookie => console.log(cookie));
      let sessionTokenValue = pm.cookies.get("next-auth.session-token");
      
      console.log('session token value: ', sessionTokenValue);
      pm.globals.set("sessionToken", sessionTokenValue);
      
    • Description: This step logs in the user and sets the sessionToken in the global environment variable.

Step 4: Verify Session

  1. GET Request: http://localhost:3000/api/auth/session
    • Description: This API call retrieves the user session details, confirming that the user is logged in.

Step 5: Log Out

  1. POST Request: http://localhost:3000/api/auth/signout
    • Body Payload:
      {
        "csrfToken": "{{csrfToken}}",
        "callbackUrl": "http://localhost:3000/dashboard",
        "json": "true"
      }
      
    • Description: This API call logs out the user from the current session.

Checkout this video for more clarify :

https://asset.cloudinary.com/dugkwrefy/6266f043c7092d1d3856bdad6448fa89

Reasons:
  • Blacklisted phrase (1): this video
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Harshal Kahar

79497764

Date: 2025-03-10 10:58:41
Score: 0.5
Natty:
Report link

How to Add the AppTrackingTransparency (ATT) Permission to Your iOS App?

Starting from iOS 14, Apple requires apps to request user permission before accessing the Identifier for Advertisers (IDFA) for tracking. This is done using AppTrackingTransparency (ATT). Below are the steps to implement ATT permission in your iOS app.

1️⃣ Add Usage Description in Info.plist

Before requesting permission, you must add a privacy description in your Info.plist file.

📌 Open Info.plist and add the following key-value pair:

<key>NSUserTrackingUsageDescription</key>
<string>We use tracking to provide personalized content and improve your experience.</string>

This message will be displayed in the ATT system prompt.

2️⃣ Request Tracking Permission in Swift

To request tracking permission, use the AppTrackingTransparency framework.

📌 Update AppDelegate.swift or call this in your ViewController:

import UIKit
import AppTrackingTransparency

@main
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?

    func application(
        _ application: UIApplication,
        didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
    ) -> Bool {

        requestTrackingPermission()
        return true
    }

    /// Requests App Tracking Transparency (ATT) permission
    func requestTrackingPermission() {
        if #available(iOS 14, *) {
            ATTrackingManager.requestTrackingAuthorization { status in
                switch status {
                case .authorized:
                    print("✅ Tracking Authorized")
                case .denied:
                    print("❌ Tracking Denied")
                case .restricted:
                    print("🔒 Tracking Restricted (e.g., parental controls)")
                case .notDetermined:
                    print("⏳ Tracking Not Determined")
                @unknown default:
                    print("❓ Unknown Tracking Status")
                }
            }
        } else {
            print("⚠️ ATT Not Supported (iOS version < 14)")
        }
    }
}

3️⃣ Run on a Real iOS Device (Not Simulator)

🚨 ATT does NOT work on the iOS Simulator.
You must test on a real iPhone running iOS 14 or later.

Run the app on a real device using:

xcodebuild -scheme YourApp -destination 'platform=iOS,name=Your Device Name' run

4️⃣ Verify ATT in iPhone Settings

Once you request tracking permission:

  1. Open Settings → Privacy & Security → Tracking.

  2. Check if your app appears in the list.

  3. If your app appears with a toggle, ATT is working correctly! ✅

5️⃣ Debug ATT in Xcode (Check Logs)

To ensure that ATT is working properly, open Xcode Console (Cmd + Shift + C) and check the logs:

✅ Tracking Authorized
❌ Tracking Denied
🔒 Tracking Restricted (e.g., parental controls)
⏳ Tracking Not Determined

6️⃣ Reset Tracking Permissions (If No Prompt Appears)

If the ATT popup does not appear, reset tracking permissions:

  1. Open Settings → Privacy & Security → Tracking.

  2. Toggle "Allow Apps to Request to Track" OFF and ON.

  3. Delete and reinstall the app.

  4. Restart your iPhone.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How to Add the
  • Low reputation (1):
Posted by: Mirza

79497762

Date: 2025-03-10 10:57:41
Score: 0.5
Natty:
Report link

The conclusion to this problem (see comments of description) is the following:

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Marko

79497760

Date: 2025-03-10 10:57:41
Score: 2.5
Natty:
Report link

Its working, the path I used was wrong

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

79497752

Date: 2025-03-10 10:55:40
Score: 6.5 🚩
Natty:
Report link

Got the solution? I have the same issue. A few days ago everything worked... Tried the same thing again and got cuda exception...
Sorry, can't write a comment

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: DJ_Kiruxa

79497749

Date: 2025-03-10 10:52:39
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 5
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jershey mae Gacusana Libed

79497739

Date: 2025-03-10 10:48:38
Score: 0.5
Natty:
Report link

I'd like to add to @DaniilFajnberg's answer: while the reason he stated are correct, there is a solution to the problem without actually # type: ignoreing all such cases (which could be numerous).

All you have to do is explicitly tell pylance type of the dictionary:

external_data: dict[str, typing.Any] = {
    'id': 123,
    'name': 'Vlad',
    'signup_ts': datetime.now(),
    'friends': [1, 2, 3],
}

user = User(**external_data)

This will make pylance very happy and the errors will go away :)

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @DaniilFajnberg's
Posted by: winwin

79497736

Date: 2025-03-10 10:48:38
Score: 2
Natty:
Report link

Try to disable as say in our docs

CRUD::disableResponsiveTable();

Try to not use CRUD::setFromDb(); and set your own columns and fields.

Cheers.

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

79497733

Date: 2025-03-10 10:47:38
Score: 0.5
Natty:
Report link

The file is written by the Spark worker nodes, so it should be written to a filesystem that is accessible both by the worker nodes and the client. Keep this in mind when setting up a cluster in Docker as the workers should be configured with the same volumes: as the master to allow them to read/write partitions (missing volumes in workers won't give an error but only a repo with just _SUCCESS file).

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

79497729

Date: 2025-03-10 10:44:37
Score: 3
Natty:
Report link

It's quite simple. You need the same port but two different IP addresses in your network. Client and server or LocalDevice must be bound to the same port but the IP address must be different.

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

79497708

Date: 2025-03-10 10:39:36
Score: 2.5
Natty:
Report link

I am facing an total block on another site. Your cookie injection method is good. But I guess if you want to continuously do it, it would be hard to copy the cookie repeatedly.

Back to your question, there are third-party services that help solve Cloudflare captcha challenges. Have you tried them?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Y.Su

79497703

Date: 2025-03-10 10:36:35
Score: 8.5 🚩
Natty: 4
Report link

Mr. Muhammad Umer can you help me find the right proto file for solution i tried with this Proto file

But it didn't work for me, guide me in finding the solution

Reasons:
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): it didn't work for me
  • RegEx Blacklisted phrase (3): can you help me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Divyang

79497702

Date: 2025-03-10 10:36:34
Score: 2.5
Natty:
Report link

volumes: - ${VOLUMES_BASE}/frontend:/app - /app/node_modules # Exclut node_modules du montage pour ne pas l'écraser

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: noureddine el ghaouti

79497701

Date: 2025-03-10 10:36:34
Score: 1
Natty:
Report link

You can try to wrap it in a Promise

let promise = new Promise((resolve , reject)=>{
    fs.readFile(file , (err , data)=>{
        resolve(data)
    })
})

promise.then((data , err)=>{
    console.log(data)
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Extremus gaming

79497690

Date: 2025-03-10 10:30:32
Score: 8 🚩
Natty:
Report link

I seem to have the same problem. I also didnt make any changes or updates, and cannot attach anymore when adding the debugger via debugpy.listen (). Starting the debugger from VSCode (not via listening) works perfectly fin though.

After listen(), I additionally get 'lost sys.stderr', which I had never encountered before.

Help is appreciated!

Reasons:
  • Blacklisted phrase (1): appreciated
  • RegEx Blacklisted phrase (3): Help is appreciated
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (1):
Posted by: Lukas Heller

79497687

Date: 2025-03-10 10:29:32
Score: 2
Natty:
Report link

Please pip install llama-index-postprocessor-colbert-rerank to install Colbert Rerank package.

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

79497685

Date: 2025-03-10 10:29:32
Score: 2.5
Natty:
Report link

lombok 1.18.36 eclipse 2024-12 jdk21.0.06 spring webflux 6.1.5 mongo reactive don't solve error in eclipse

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

79497674

Date: 2025-03-10 10:25:31
Score: 3
Natty:
Report link

upvoting the answer from user355252 and adding to it :

(require 'package) (add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t) (package-install 'magit)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): user355252
  • Low reputation (1):
Posted by: Mirko Lüdde

79497665

Date: 2025-03-10 10:19:30
Score: 1
Natty:
Report link

Even though you have eligible PIM roles, your current active role might not be enough to access "My Roles" screen:

az role assignment list --assignee <your-UPN> --all

You should have "Directory Reader" or "PIM User" role enabled.

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

79497651

Date: 2025-03-10 10:10:28
Score: 2
Natty:
Report link

Create a state as isListUpdate with initial value 0. Now, in useEffect block, check if state changes re render the component and again set isListUpdate to 0. You should get the result with this.

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

79497649

Date: 2025-03-10 10:09:27
Score: 7.5 🚩
Natty: 6.5
Report link

Is there an answer to this? Can't find a solution anywhere.

Reasons:
  • Blacklisted phrase (1): answer to this?
  • RegEx Blacklisted phrase (2): Can't find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there an answer to this
  • Low reputation (1):
Posted by: idan cohen

79497646

Date: 2025-03-10 10:08:27
Score: 1
Natty:
Report link

The use of byte vector will make it possible to do subsequent processing.

template <typename T>
int fn_convertToVb(T v, vector<BYTE> & vb)
{
    vb.resize(sizeof(T));
    memcpy(&vb[0], &v, sizeof(T));
    return sizeof(T);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user286634

79497644

Date: 2025-03-10 10:08:27
Score: 3.5
Natty:
Report link

try not to left join and run query and see it it works. perhaps your join is wrong

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

79497641

Date: 2025-03-10 10:07:27
Score: 3
Natty:
Report link

You need to make the field nullable in the entity file, then update de database, then try again

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

79497634

Date: 2025-03-10 10:04:26
Score: 1
Natty:
Report link

You may try if any of these solutions work:

  1. You can escape the colon in the property value by using \ before the colon. This should allow the SpEL parser to treat the colon as a regular character instead of part of the expression.

    Property File:

    report.type.urls=SOME_TYPE:'file:\\/home\\/SOME_TYPE'

    @Value("#{${report.type.urls}}")

    private Map<String, String> reportTypeToUploadHost;

  2. Alternatively, you can directly define the Map in your @Value annotation using SpEL's map literal syntax:

    report.type.urls=SOME_TYPE:file:/home/SOME_TYPE

    @Value("#{${report.type.urls}}")

    private Map<String, String> reportTypeToUploadHost;

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Value
  • Low reputation (1):
Posted by: Amit K.

79497631

Date: 2025-03-10 10:03:26
Score: 0.5
Natty:
Report link

I was able to fix that error by including my framework directory inside the cinterop

iosTarget.compilations["main"].apply {
    val opencv2 by cinterops.creating{

        includeDirs("src/iosMain/opencv2.framework") # This line
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shadman Adman

79497629

Date: 2025-03-10 10:02:25
Score: 2
Natty:
Report link

Knip is a tool to find unused files, dependencies and exports. It has 7.7K stars on GitHub.

Here's the doc, https://knip.dev/overview/getting-started

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): is a to
Posted by: Pytan

79497620

Date: 2025-03-10 10:00:25
Score: 2.5
Natty:
Report link

Install the Required Package

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

79497617

Date: 2025-03-10 09:59:25
Score: 1
Natty:
Report link

I faced the same problem with JBOSS. It's like JCE cannot acces to the .jar inside the war to validate it.

To solve the problem I added it to JAVA_HOME\jre\lib\ext and this way JCE can access and validate it without problems. You must keep including the .jar inside your war because, if not, JBOSS cannot find the classes (yes, it is silly: it can validate the jar frome jre\lib\ext but not load the classes from this location so you need to include it in your war)

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

79497608

Date: 2025-03-10 09:54:24
Score: 2
Natty:
Report link

This problem was already discussed in Add support for AES-GCM for TLS in Java 7

You need to use an external library provided by Bouncy Castle in order to get access to AES-GCM cipher in handshake. The required library is bctls-jdk15to18-1.80.jar that contains all the stuff related to SSL and BouncyCastleJSSEProvider but it's probably you need also to add bcprov-jdk15to18-1.80.jar, and bcutil-jdk15to18-1.80.jar because of dependencies ( version jdk15to18-1.80 is the last one for Java 7)

Please, take a look to this comment https://stackoverflow.com/a/79497587/3815921

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Facepalmed

79497602

Date: 2025-03-10 09:51:23
Score: 3
Natty:
Report link

start /b <program-name> runs the program essentially in background mode.

When in doubt about command options type <command> /? for help about it's usage :)

You can find more info about the /b flag by running start /?

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

79497601

Date: 2025-03-10 09:50:23
Score: 1.5
Natty:
Report link
It is possible to translate both expressions into one case, like
=REGEXMATCH(UPPER(F3);UPPER("I3"))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AbraCodabra

79497596

Date: 2025-03-10 09:48:23
Score: 2.5
Natty:
Report link

You can use Ctrl + K . to run the command File: Reveal Active File in Explorer View

enter image description here

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

79497591

Date: 2025-03-10 09:48:23
Score: 2
Natty:
Report link

Android has removed support for HTML formatting and spannable strings in notifications from API 35, displaying all text as plain text. So, without the use of custom views, I don't think you would be able to achieve what you want. But you might consider using simpler text styles.

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

79497580

Date: 2025-03-10 09:43:21
Score: 1.5
Natty:
Report link

in my case running on real device, cd android && ./gradlew clean worked.

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

79497577

Date: 2025-03-10 09:41:21
Score: 0.5
Natty:
Report link

With the help of these answers I got this code to work

Private Sub BarGraphWithErrorBars(ByVal ShName As String, ByVal AvRange As Range, ByVal ErrRange As Range)

    AvRange.Select
    ActiveSheet.Shapes.AddChart2(201, xlColumnClustered).Select
    ActiveChart.FullSeriesCollection(1).HasErrorBars = True
    ActiveChart.FullSeriesCollection(1).ErrorBar Direction:=xlY, Include:=xlErrorBarIncludePlusValues, Type:=xlErrorBarTypeCustom, Amount:=ErrRange, MinusValues:=ErrRange
    
End Sub

I am adding more functionalities to it to fit the whole program, I suppose the main error was in the non-existing PlusValues parameter. Changing it to MinusValues does the trick, although I am using Plus values it seems counter intuitive.

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

79497571

Date: 2025-03-10 09:39:21
Score: 1.5
Natty:
Report link

I had some experiments in the last days, this being the sequence of actions performed:

- new scheduled pipeline `.yml` file pushed to `develop` (no matter if through PR or through direct push)

- pipeline created from Azure Devops on `develop` through web GUI (without setting UI triggers)
- outcome: pipeline not triggered (and indeed no scheduled runs visible from `...`->`Scheduled runs`)

Then I've gone through two different scenarios:

- Scenario1:

The disappointing aspect is that even without configuring any UI trigger (and by default a newly created pipeline comes with no UI triggers) you are forced to trivially update your `.yml` file (through a direct push or merge-push) otherwise the pipeline does not trigger.

This is somehow confirmed by @Ziyang Liu-MSFT, but the big difference is that in his/her answer the scenario of UI triggers removal is described, but that's not my case, since for my pipeline no UI triggers have ever been created/configured.

So to summarize: after creating the pipeline from web GUI you must always update it; in this sense, if adding it through a PR, it is better to create it on Azure Devops web GUI before merging the PR (otherwise you have to update it later).

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @Ziyang
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Giacomo Pirinoli

79497559

Date: 2025-03-10 09:34:19
Score: 4.5
Natty:
Report link

Those links may help you,plz check.

https://developer.android.com/guide/topics/resources/providing-resources#ResourcesFromXml

https://developer.android.com/studio/write/vector-asset-studio#referring

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: D.Ford

79497551

Date: 2025-03-10 09:31:18
Score: 3
Natty:
Report link

you can install "json formatter" chrome extension from here

the extension is very efficient.

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

79497548

Date: 2025-03-10 09:30:18
Score: 1
Natty:
Report link

Use date command:

save to variable:

$ export savedDate=2025-11-03T20:39:00+05:30

add 24hrs to savedDate and store it:

$ export updatedDate=$(date -d "$savedDate + 1 day" +"%Y-%m-%dT%H:%M:%S+5:30")

show result:

$ echo $savedDate && echo $updatedDate 

for more information, use:

$ date --help
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: peterNhan.d7law

79497547

Date: 2025-03-10 09:29:18
Score: 1
Natty:
Report link

They're bound to the account itself, changing IP or api_id/hash would neither remove it nor change it. You don't "bypass" limits, they exist for a reason, you wouldn't want someone to go scraping thousands of stranger chats and users and have access to them. Accounts get ~200 resolves a day (could be less based on unknown parameters).

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: MustA

79497544

Date: 2025-03-10 09:28:18
Score: 2
Natty:
Report link

sorry about the late reply i don't monitor Stackoverflow regular. If you put future questions on our Github issues there is a bigger chance that someone from the team sees it.

About your question there are two database connections used for Scorpio. The reactive client for Postgres for basically everything but migration and JDBC for flyway migration.

You are not overwriting the reactive client with the JDBC url.

Basically the best would be to overwrite those two

quarkus.datasource.jdbc.url=${jdbcurl}
quarkus.datasource.reactive.url=postgresql://${mysettings.postgres.host}:${mysettings.postgres.port}/${mysettings.postgres.database-name}

with QUARKUS_DATASOURCE_REACTIVE_URL and QUARKUS_DATASOURCE_JDBC_URL as env var.

to my knowledge you should be able to set ssl require also just in the reactive url as param.

There are no config parameters in Scorpio which require a rebuild.

BR

Scorpio

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ScorpioBroker

79497522

Date: 2025-03-10 09:20:16
Score: 0.5
Natty:
Report link

I was just troubleshooting this and your post was basically the only one I found. I was using a @mixin that scales font sizes for screen sizes and kept getting an error in my @mixin when the input variable for the list in @each loop didnt have a comma in it.

Doensn't work:

$text_sizes: 'html' 17px;

Works:

$text_sizes: 'html' 17px,;

Mixin:

@adjust_screens: 1280px 0.9, ...;

@mixin fontsizer ( $tag_and_base,$screens ) {
    @each $tag, $base in $tag_and_base {
        // got an error here: "expected selector."
        #{$tag} {
            font-size: calc( #{$base_size} *  1 );
        }
        @each $x, $y in $screens {
         ...repeats font size calculation for sizes
        }
    }
}

@include fontsizer( $text_sizes, $adjust_screens );

Not sure if this is how it's supposed to work or if this will work in every compiler, but it does work in sass-lang.com playground (https://sass-lang.com/playground/)

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

79497520

Date: 2025-03-10 09:20:16
Score: 2.5
Natty:
Report link

It looks like your script is not using the GPU properly and may be running on the CPU instead, which is why it's extremely slow. Also, your Quadro P1000 only has 4GB VRAM, which is likely causing out-of-memory issues.

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

79497510

Date: 2025-03-10 09:16:15
Score: 3.5
Natty:
Report link

Go to File from the menu and click on Save All

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

79497499

Date: 2025-03-10 09:10:14
Score: 3
Natty:
Report link

Follow this -> https://github.com/dart-lang/http/issues/627#issuecomment-1824426263

It solves the problem for me

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

79497498

Date: 2025-03-10 09:08:14
Score: 3
Natty:
Report link

This comment by aeroxr1:

you can also call sourceFile.renameTo(newPath)

– aeroxr1

Commented Nov 12, 2020 at 11:03

Please see Reliable File.renameTo() alternative on Windows?

I just had this issue, where renameTo did not work in an Azure deployment. I tried moving a file from a mounted (SMB) folder to a local folder. Apparently, people have issues with it on windows too.

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tamás

79497496

Date: 2025-03-10 09:06:13
Score: 1.5
Natty:
Report link

You can achieve this by running a loop that continuously checks the CPU usage and only exits when it drops below 60%. To prevent excessive CPU usage while waiting, you should use Sleep to introduce a small delay between checks and DoEvents to keep the system responsive.

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

79497486

Date: 2025-03-10 09:01:12
Score: 4
Natty:
Report link

i using myhlscloud.com for my videos

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

79497478

Date: 2025-03-10 09:00:12
Score: 1.5
Natty:
Report link

Even I faced the same issue, but when I went into Putty -> settings -> connection -> serial -> Making Flow control to none.

Worked for me

Reasons:
  • Whitelisted phrase (-1): Worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: sai vamshi vaddepally

79497471

Date: 2025-03-10 08:58:11
Score: 1
Natty:
Report link

Just add your own CSS:

body {
  font-size: 16px;
}

Yes, browsers do inject some default styles in popups. You can easily override them.

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

79497467

Date: 2025-03-10 08:57:11
Score: 1
Natty:
Report link

Check if all package dependencies are pulled in:
enter image description here

Also try to explicitly add all these dependencies to the application assembly (the one that generates the executable file, for example, *.exe).

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

79497464

Date: 2025-03-10 08:55:10
Score: 1
Natty:
Report link

Now i have edited my code:-

const connectDB = async () => { try { console.log("Connecting to MongoDB with URI:", process.env.MONGO_URI);

await mongoose.connect(process.env.MONGO_URI, {
  useNewUrlParser: true,
  useUnifiedTopology: true,
});

console.log("Connected to MongoDB");

// Only run seeding in development mode
if (process.env.NODE_ENV === "development") {
  await seedAdminUser();
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: saurabh keshari

79497452

Date: 2025-03-10 08:51:10
Score: 0.5
Natty:
Report link

Indeed, this is a header that is not found in browser specifications, as can also be somewhat inferred by the X- prefix.

The best documentation I could find is AVFoundation / AVPlayerItemAccessLogEvent / playbackSessionID, which states:

A GUID that identifies the playback session.

This value is used in HTTP requests.

The property corresponds to “cs-guid”.

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

79497450

Date: 2025-03-10 08:51:09
Score: 6 🚩
Natty:
Report link

did you use any additional local server environment for development?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you use any addit
  • Low reputation (1):
Posted by: sawankumarparida

79497449

Date: 2025-03-10 08:51:09
Score: 1
Natty:
Report link

Try double quotes:

df=spark.sql("""
             select *
             from df
             where column_a not like 'AB%'
             """)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Civyshk

79497445

Date: 2025-03-10 08:49:09
Score: 1.5
Natty:
Report link

when use omz plugin, just run

> omz plugin enable docker
> omz plugin enable docker-compose
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): when use
  • Low reputation (0.5):
Posted by: lotosbin

79497441

Date: 2025-03-10 08:47:08
Score: 1
Natty:
Report link

So my question: is it actually a unit test if it uses the real database or is it an integration test? Am I using repository pattern wrong since I cannot unit test it with mock or in-memory database?

The end goal of writing unit or integration tests is to allow you to confidently make changes (improvements) to your code as time goes by and at the same time to be relatively confident that these newly introduced changes don't break the existing functionality by running tests that correctly indicate if the system under test behaves as expected or not (Pass or Fail). And this should be achieved with no or minimal changes on the tests themselves since frequently amending tests most likely will lead to bugs or errors in the tests. This must be your main aim when testing your app not whether your tests are pure unit test. Pure unit tests e.g. testing all (or almost all) methods in isolation with each dependency mocked or stubbed out, are normally a lot fragile the smallest code changes lead to serious changes in the tests. This is somewhat opposite to the main goal of testing which is solid and stable tests that correctly indicate if something is broken and that don't provide you with a ton of false negative or false positive results. To achieve this the best way is to take a more higher level integration approach of testing your app (especially it it is an asp.net core web application with a database) e.g. not to mock your database repositories but rather than that use sql server localdb with pre seeded data in it.

For more insights on which is the correct testing approach you should follow when writing tests for web apps/web apis I strongly recommend you to read this article TDD is dead. Long live testing.

Just one quote from it

I rarely unit test in the traditional sense of the word, where all dependencies are mocked out, and thousands of tests can close in seconds. It just hasn't been a useful way of dealing with the testing of Rails applications. I test active record models directly, letting them hit the database, and through the use of fixtures. Then layered on top is currently a set of controller tests, but I'd much rather replace those with even higher level system tests through Capybara or similar.

and this is exactly how Microsoft recommends testing Web Apis with a database Testing against your production database system

public class TestDatabaseFixture
{
    private const string ConnectionString = @"Server=(localdb)\mssqllocaldb;Database=EFTestSample;Trusted_Connection=True;ConnectRetryCount=0";

    private static readonly object _lock = new();
    private static bool _databaseInitialized;

    public TestDatabaseFixture()
    {
        lock (_lock)
        {
            if (!_databaseInitialized)
            {
                using (var context = CreateContext())
                {
                    context.Database.EnsureDeleted();
                    context.Database.EnsureCreated();

                    context.AddRange(
                        new Blog { Name = "Blog1", Url = "http://blog1.com" },
                        new Blog { Name = "Blog2", Url = "http://blog2.com" });
                    context.SaveChanges();
                }

                _databaseInitialized = true;
            }
        }
    }

    public BloggingContext CreateContext()
        => new BloggingContext(
            new DbContextOptionsBuilder<BloggingContext>()
                .UseSqlServer(ConnectionString)
                .Options);
}
public class BloggingControllerTest : IClassFixture<TestDatabaseFixture>
{
    public BloggingControllerTest(TestDatabaseFixture fixture)
        => Fixture = fixture;

    public TestDatabaseFixture Fixture { get; }
[Fact]
public async Task GetBlog()
{
    using var context = Fixture.CreateContext();
    var controller = new BloggingController(context);

    var blog = (await controller.GetBlog("Blog2")).Value;

    Assert.Equal("http://blog2.com", blog.Url);
}

In short they use a LocalDB database instance, seed data in this instance using the test fixture and executing the tests on a higher integration level i.e. calling the controller method which calls a service(repository) method that queries the Blogs dbSet on the dbContext that executes a Sql query to LocalDB that returns the seeded data.

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Anton Kovachev

79497440

Date: 2025-03-10 08:47:08
Score: 1.5
Natty:
Report link
  1. Connect your phone with cable

  2. Enable USB Debugging

  3. Run the following command

sudo adb uninstall app_package_name

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

79497435

Date: 2025-03-10 08:46:08
Score: 1.5
Natty:
Report link

you need add opacity: 0.99.

<WebViewAutoHeight
      style={{
        opacity: 0.99,
      }}
      scalesPageToFit={true}
      source={{ uri: link }}
    />
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anh Huy Tran

79497425

Date: 2025-03-10 08:41:07
Score: 3.5
Natty:
Report link

you can use this javascript/typescript library https://www.npmjs.com/package/@__pali__/elastic-box?activeTab=readme

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

79497420

Date: 2025-03-10 08:39:06
Score: 1.5
Natty:
Report link

Our team needs more information to be able to investigate your case.
Kindly create a ticket with us at https://aps.autodesk.com/get-help ADN support. This will enable us get your personal information and be able to track the issue.

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

79497418

Date: 2025-03-10 08:38:06
Score: 2.5
Natty:
Report link

Try using position: fixed; instead of sticky (on the .header)

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

79497413

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

Thank you for your comment! I got it working now. I'm using dbt with databricks, so data_tests and using a date to filter on timestamp both work fine. I can actually pass the date to the test, but I should be using expression_is_true instead of accepted_value. And with an extra single quote around the date. All good now!

- dbt_utils.expression_is_true:
                  expression: ">= '2025-03-01'"
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Prim Pasuwan

79497412

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

Turns out this was a bug in the library itself and not just a basic misunderstanding of cmake. The problem is addressed in https://github.com/Goddard-Fortran-Ecosystem/pFUnit/pull/485

As pointed out by @Tsyvarev, the scoping of PFUNIT_DRIVER was the source of the problem. The sledgehammer solution was to cache this variablee (i.e., using the CACHE) so that the variable is visible at all scopes.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Tsyvarev
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jared

79497402

Date: 2025-03-10 08:24:03
Score: 5.5
Natty:
Report link

I had an older and new Ubuntu installed (22.04 and 24.04) and the 22.04 was the default when opening VS Code. The issue turned out to be in the configuration of WSL as described here: How do I open a wsl workspace in VS Code for a different distro?

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

79497399

Date: 2025-03-10 08:23:03
Score: 1
Natty:
Report link
  1. Install Tailwind CSS and Dependencies - npm install -D tailwindcss postcss autoprefixer

  2. Initialize Tailwind CSS - npx tailwindcss init -p

  3. Open tailwind.config.js -

    /** @type {import('tailwindcss').Config} / export default { content: [ "./index.html", "./src/**/.{js,ts,jsx,tsx}", ], theme: { extend: {}, }, plugins: [], }

  4. Inside your main CSS file - src/index.css , add:

    @tailwind base; @tailwind components; @tailwind utilities;

  5. In App.jsx, import the CSS file: import './index.css';

  6. Now start your Vite project.

Usage -

const App=() =>{
  return (
    <div className="flex items-center justify-center">
      <h1 className="text-3xl font-bold text-blue-600">Hello, 
                   Tailwind CSS!</h1>
    </div>
  );
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @type
  • User mentioned (0): @tailwind
  • User mentioned (0): @tailwind
  • User mentioned (0): @tailwind
  • Low reputation (1):
Posted by: Nancy Gupta

79497396

Date: 2025-03-10 08:21:02
Score: 1
Natty:
Report link

Thank you @Andrew B for the comment.

Yes, it’s possible that further requests from the user who was on the unhealthy instance could fail if the user is redirected to a different instance after the restart. This happens because the `ARRAffinity` cookie is tied to the unhealthy instance and will no longer be valid once the instance is restarted.

- If the session state is not persisted externally like using Azure Redis Cache, the user may lose their session or be logged out. To avoid this, consider storing session data externally so users can maintain their session even if they are redirected to another instance.

- Please refer this blog for better understanding ARRAffinity.

Application Insights doesn’t show which instance a user is on by default. You can track this by logging the instance ID (using the WEBSITE_INSTANCE_ID variable) in your telemetry.

Refer this MSDoc to know about above environment variable.

Here's the sample code :

var instanceId = Environment.GetEnvironmentVariable("WEBSITE_INSTANCE_ID");
TelemetryClient.TrackEvent("UserSessionTracking", new Dictionary<string, string>
{
{ "UserId", userId },
{ "InstanceId", instanceId }
});
`

This lets you filter and view data based on the instance the user was on.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): this blog
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Andrew
Posted by: Sirra Sneha

79497386

Date: 2025-03-10 08:19:02
Score: 2
Natty:
Report link

Resource registered by this uri is not recognized (Settings | Languages & Frameworks | Schemas and DTDs)
URI is not registered (Settings | Languages & Frameworks | Schemas and DTDs) how to clear the error in xml android studio

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

79497378

Date: 2025-03-10 08:14:01
Score: 4
Natty:
Report link

Check this out. https://stackoverflow.com/a/39777594. There are 25 answers maybe you find soultion for yourself.

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

79497370

Date: 2025-03-10 08:11:00
Score: 2.5
Natty:
Report link

if you have appcenter crashanalytics its override firebase crashanalytics after removed appcenter-crashanalyics its worked like charm.

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

79497355

Date: 2025-03-10 08:06:59
Score: 1
Natty:
Report link

【 X 】DXZ-x推特福利851🙅

【 X 】DXZ-x推特福利852👍39

【 X 】DXZ-x推特福利853👍39

【 X 】DXZ-x推特福利854🙅

【 X 】DXZ-x推特福利855🙅

【 X 】DXZ-x推特福利856👍38

【 X 】DXZ-x推特福利857👍39

【 X 】DXZ-x推特福利858👍33

【 X 】DXZ-x推特福利859👍35

【 X 】DXZ-x推特福利860👍38

【 X 】DXZ-x推特福利861👍32

【 X 】DXZ-x推特福利862👍31

【 X 】DXZ-x推特福利863👍39

【 X 】DXZ-x推特福利864👍34

【 X 】DXZ-x推特福利865👍36

【 X 】DXZ-x推特福利866🙅

【 X 】DXZ-x推特福利867🙅

【 X 】DXZ-x推特福利868👍41

【 X 】DXZ-x推特福利869🙅

【 X 】DXZ-x推特福利870👍13

【 X 】DXZ-x推特福利871👍37

【 X 】DXZ-x推特福利872👍43

【 X 】DXZ-x推特福利873👍44

【 X 】DXZ-x推特福利874👍37

【 X 】DXZ-x推特福利875👍41

【 X 】DXZ-x推特福利876👍45

【 X 】DXZ-x推特福利877👍48

【 X 】DXZ-x推特福利878👍42

【 X 】DXZ-x推特福利879🙅

【 X 】DXZ-x推特福利880🙅

【 X 】DXZ-x推特福利881👍40

【 X 】DXZ-x推特福利882👍46

【 X 】DXZ-x推特福利883👍45

【 X 】DXZ-x推特福利884👍40

【 X 】DXZ-x推特福利885🙅

【 X 】DXZ-x推特福利886👍38

【 X 】DXZ-x推特福利887👍43

【 X 】DXZ-x推特福利888👍45

【 X 】DXZ-x推特福利889👍45

【 X 】DXZ-x推特福利890👍40

【 X 】DXZ-x推特福利891👍42

【 X 】DXZ-x推特福利892👍41

【 X 】DXZ-x推特福利893👍45

【 X 】DXZ-x推特福利894👍40

【 X 】DXZ-x推特福利895👍46

【 X 】DXZ-x推特福利896👍45

【 X 】DXZ-x推特福利897👍45

【 X 】DXZ-x推特福利898👍46

【 X 】DXZ-x推特福利899🙅

【 X 】DXZ-x推特福利900👍48

【 X 】DXZ-x推特福利901🙅

【 X 】DXZ-x推特福利902🙅

【 X 】DXZ-x推特福利903🙅

【 X 】DXZ-x推特福利904👍43

【 X 】DXZ-x推特福利905👍40

【 X 】DXZ-x推特福利906👍39

【 X 】DXZ-x推特福利907👍49

【 X 】DXZ-x推特福利908👍41

【 X 】DXZ-x推特福利909👍43

【 X 】DXZ-x推特福利910👍42

【 X 】DXZ-x推特福利911👍43

【 X 】DXZ-x推特福利912👍40

【 X 】DXZ-x推特福利913👍42

【 X 】DXZ-x推特福利914👍4p

【 X 】DXZ-x推特福利915👍44

【 X 】DXZ-x推特福利916👍44

【 X 】DXZ-x推特福利917👍46

【 X 】DXZ-x推特福利918👍36

【 X 】DXZ-x推特福利919👍47

【 X 】DXZ-x推特福利920👍45

【 X 】DXZ-x推特福利921🙅

【 X 】DXZ-x推特福利922👍51

【 X 】DXZ-x推特福利923👍35

【 X 】DXZ-x推特福利924👍40

【 X 】DXZ-x推特福利925👍39

【 X 】DXZ-x推特福利926👍40

【 X 】DXZ-x推特福利927👍14

【 X 】DXZ-x推特福利928🙅

【 X 】DXZ-x推特福利929👍42

【 X 】DXZ-x推特福利930👍29

👍【X / group】🤝49👍44

👍【X / group】🤝50👍41

👍【X / group】🤝51👍40

👍【X / group】🤝52👍43

👍【X / group】🤝53👍41

X-Twitter HK-H89👍46

X-Twitter HK-H90🙅

X-Twitter HK-H91🙅

X-Twitter HK-H92🙅

X-Twitter HK-H93🙅

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: Muhamad Yuki

79497353

Date: 2025-03-10 08:06:59
Score: 3
Natty:
Report link

I finally found a solution, and it's really, really easy. Just add the flag -Dcom.sun.webkit.useHTTP2Loader=false. Thanks to this comment.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Casio Production

79497352

Date: 2025-03-10 08:05:58
Score: 1
Natty:
Report link

As @NelsonGon mentioned, vcov() works. Please see the below example using Swiss data.

data(swiss)

### multiple linear model, swiss data
lmod <- lm(Fertility ~ ., data = swiss)

vcov(lmod)

The covariance matrix as below:

                 (Intercept)   Agriculture   Examination    Education      Catholic Infant.Mortality
(Intercept)      114.6192408 -0.4849476484 -1.2025734658 -0.281265331 -0.0221836036    -3.2658448131
Agriculture       -0.4849476  0.0049426416  0.0043708713  0.004789532 -0.0005112844     0.0065656539
Examination       -1.2025735  0.0043708713  0.0644541409 -0.027310637  0.0051339487     0.0003482484
Education         -0.2812653  0.0047895318 -0.0273106371  0.033499469 -0.0030003666     0.0122667258
Catholic          -0.0221836 -0.0005112844  0.0051339487 -0.003000367  0.0012431162    -0.0027467320
Infant.Mortality  -3.2658448  0.0065656539  0.0003482484  0.012266726 -0.0027467320     0.1457098919
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @NelsonGon
  • Low reputation (1):
Posted by: Ningshan Li

79497351

Date: 2025-03-10 08:05:58
Score: 1.5
Natty:
Report link

I agree with NVRM it's easier if you use grid But if u want to go with the table way try fixing the percentages. I saw that you used px for the 'th:nth-child(2), td:nth-child(2), th:nth-child(3), td:nth-child(3), th:nth-child(6), td:nth-child(6)', try using percentage on this too

(Note: If u use grid instead of table, responsive is also gonna be easier)

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

79497350

Date: 2025-03-10 08:05:58
Score: 1
Natty:
Report link

Try adding this in your code instead of using field level bean creation, use constructor based bean creation for the UserRepo in CustomerDetails class like mentioned by @M.Deinum

import lombok.RequiredArgsConstructor;

@Service("customuserdetails")
@RequiredArgsConstructor
public class CustomUserDetails implements UserDetailsService {

    private final UserRepo userrepo;
    private final PasswordEncoder bcrypt;
// rest of the code
}

and add the @Configuration annotation instead of @Component to SecurityBeans class

import org.springframework.context.annotation.Configuration;

@Configuration
public class Securitybeans {

    //rest of the code
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Configuration
  • User mentioned (0): @Component
  • Low reputation (1):
Posted by: Veeresh

79497347

Date: 2025-03-10 08:03:58
Score: 2
Natty:
Report link

If you install according to https://code.visualstudio.com/docs/cpp/config-mingw, MSYS2.exe direct install.

  1. check if your path: \msys64\mingw64\bin is empty? if it is empty, it shows the gdb is missing. Follow my step 2

  2. open this website, https://packages.msys2.org/packages/mingw-w64-x86_64-gdb, copy the installation comman: pacman -S mingw-w64-x86_64-gdb

  3. open the MSYS2 installed in your computer, past: pacman -S mingw-w64-x86_64-gdb, the comman you copied in step 2.

    if you see the path: \msys64\mingw64\bin is filled with files. You're successeful. Open a cmd window, and input: gbd --version.

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

79497344

Date: 2025-03-10 08:02:58
Score: 5.5
Natty: 4.5
Report link

Is it possible that I Can inject my custom Resolution Rule in databricks environment . Because this is working in my local open source spark , but when i run it in databricks , it doesn't register the resolution rules.

Please Help

Reasons:
  • RegEx Blacklisted phrase (3): Please Help
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Bhavya

79497341

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

For this you have to check the electron version as well as if any package giving error then install separately.

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

79497336

Date: 2025-03-10 07:58:57
Score: 1
Natty:
Report link

In Pre Execution functions you can set intervals manually, which you can take from any request:

function a(){    
    this.intervals = ["0",dashboard.getParameterValue('value2')];
} 

In 'value2' I write the result of my query. And in this way it is possible to set dynamic intervals.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Илья

79497334

Date: 2025-03-10 07:57:57
Score: 2.5
Natty:
Report link

Most probably problem with CORS since now web is defaulted to canvaskit. Easiest way is to use this package for images. https://pub.dev/packages/image_network

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

79497322

Date: 2025-03-10 07:51:56
Score: 2.5
Natty:
Report link

I clean solution and build again and run web api project it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: faisal anees

79497317

Date: 2025-03-10 07:48:55
Score: 1
Natty:
Report link

I ran into the same problem and was able to workaround it by downgrading to Python 3.12 from Python 3.13.

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

79497313

Date: 2025-03-10 07:44:54
Score: 1.5
Natty:
Report link




header 1 header 2
cell 1 cell 2
cell 3 cell 4
[email protected]
header 1
header 2


cell 1
cell 2

cell 3
cell 4

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: محمد المساعيد

79497305

Date: 2025-03-10 07:38:53
Score: 2.5
Natty:
Report link

If you want to changes the shown name, you can go to File - Options and in the section for the current DB you can change the title.

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

79497302

Date: 2025-03-10 07:37:52
Score: 4
Natty:
Report link

You can use this javascripy library https://www.npmjs.com/package/@__pali__/elastic-box?activeTab=readme

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Pali

79497297

Date: 2025-03-10 07:34:52
Score: 1.5
Natty:
Report link
\COPY movie (id, name, year) FROM 'movie.txt' WITH( DELIMITER '|', NULL '');

Command like this is also works. It can have more than one option.

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

79497293

Date: 2025-03-10 07:32:51
Score: 2
Natty:
Report link

then adding the second code sample produces the same json however this time nested fields are showing {} instead on the data

do you mean WriteIndented doesn't work?Could you share an example with the model:

public class Employee
{
public string? Name { get; set; }
public Employee? Manager { get; set; }
public List<Employee>? DirectReports { get; set; }
}

If the default handler can't meet your requirement,you could create a handler follow this document:

 public class MyReferenceResolver : ReferenceResolver
{
.......
}
class MyReferenceHandler : ReferenceHandler
{
    public MyReferenceHandler() => Reset();
    private ReferenceResolver? _rootedResolver;
    public override ReferenceResolver CreateResolver() => _rootedResolver!;
    public void Reset() => _rootedResolver = new MyReferenceResolver();
}





var myReferenceHandler = new MyReferenceHandler();
builder.Services
       .AddControllers()
       .AddJsonOptions(options =>
       {
           options.JsonSerializerOptions.ReferenceHandler =myReferenceHandler;
           //options.JsonSerializerOptions.DefaultIgnoreCondition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull; // Optional
           options.JsonSerializerOptions.WriteIndented = true; // For formatting
       });
Reasons:
  • Blacklisted phrase (1): this document
  • RegEx Blacklisted phrase (2.5): Could you share
  • RegEx Blacklisted phrase (1.5): Resolver?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Ruikai Feng

79497292

Date: 2025-03-10 07:31:51
Score: 1
Natty:
Report link
from PIL import Image

# Load the uploaded image
image_path = "/mnt/data/WhatsApp Image 2025-02-23 at 22.24.21_eed154c8.jpg"

image = Image.open(image_path)

# Display the original image
image.show()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: arslan ashfaq

79497290

Date: 2025-03-10 07:31:51
Score: 1.5
Natty:
Report link

enter image description here

After reading through docs and some searching, I found the above diagram, which I believe explains the hierarchy visually and to me it makes sense.
Please make corrections if the above diagram is not correct.
I am too eager to understand the correct hierarchy.

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

79497280

Date: 2025-03-10 07:27:49
Score: 4
Natty:
Report link

Thank You for Valuable Insights — From Prava Software Solutions (Mancherial)

Thank you to the amazing StackOverflow community for addressing important Python-related questions like "How to tell Python to stop writing history file?".

At Prava Software Solutions, a leading software development company based in Mancherial, we often encounter similar challenges while building custom software solutions, automation tools, and AI-driven applications for our clients. Community-driven platforms like StackOverflow are essential for finding quick, reliable solutions that help us deliver high-quality software products efficiently.

Reasons:
  • Blacklisted phrase (0.5): Thank You
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): StackOverflow
  • RegEx Blacklisted phrase (1): help us
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Raju Gundarapu