79519279

Date: 2025-03-19 06:20:34
Score: 3
Natty:
Report link

Just to close the matter, the reason I couldn't search out the duplicates with my keys is, there is a 4th column that is the reason of duplication, and the one row (the wrong one) I have used to check the duplication just happens to have no duplication. Sorry for the false alarm.

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

79519278

Date: 2025-03-19 06:20:34
Score: 0.5
Natty:
Report link

InsightFace already has a model trained using a large dataset that considers a lot of races, angles, face shapes, etc. The data you built is very small, so unless you are aiming for overfitting, it will be difficult to achieve general performance better than the existing InsightFace model.

For models like InsightFace, it is better to focus on "how to use" those models well. If you want to create a face recognition model specialized for a specific dataset domain, it will be helpful to refer to the github of other face recognition SOTA models and train them.

https://github.com/deepinsight/insightface/tree/master/recognition/\_datasets\_

Please refer to this page. According to this page, they use at least 100,000 to 500,000 data as training data. Unless you build a dataset larger than this, it is difficult to judge that it will perform better than InsightFace or avoid overfitting.

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

79519275

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

mulw is a 32-bit operation and mul is 64 bit and since you're working with 32-bit integers(int), the upper 32 bits are not used anyways

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
  • Low reputation (0.5):
Posted by: slowdancer

79519267

Date: 2025-03-19 06:14:32
Score: 1
Natty:
Report link
import android.util.ArrayMap
import androidx.collection.ArrayMap

problem is in the first import line. For some reason ChartViewModel.kt contains the both ArrayMap imports and removing

import android.util.ArrayMap

solve the issue.

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

79519263

Date: 2025-03-19 06:14:32
Score: 1
Natty:
Report link

}

import java.util.Scanner;

class Grade

{

static Scanner sc=new Scanner(System.in);

public static void main(String[] args) throws Exception

{

System.out.print("\t\t\tEnter your Percentage:");

double percentage=sc.nextDouble();

System.out.println("\t\t\tProcessing....");

Thread.sleep(3000);

if(percentage>100||percentage<0)

System.out.println("Invalid Percentage");

else if(percentage>=70)

System.out.println("Distinction");

else if(percentage>=60) System.out.println("First Class");

else if(percentage>=50)

System.out.println(" Class");

else if(percentage>=30)

System.out.println("Pass");

else

System.out.println("Failed");

}

}

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Praveen Kumar.D

79519262

Date: 2025-03-19 06:14:32
Score: 0.5
Natty:
Report link

1. What does while (*str++); do?

2. How does it work?

3. Is while (*str++); different from while (*str++ != '\0');?

Example demonstration:

#include <stdio.h>

int main() {
    char str[] = "hello";
    char *p = str;
    
    while (*p++)
        printf("Moving over: %c\n", *(p - 1));

    printf("Reached the end of string.\n");
    return 0;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Alphin Thomas

79519260

Date: 2025-03-19 06:14:32
Score: 2
Natty:
Report link

For anyone else landing here as I did. The problem seems to be with the snap installation of gh which aliases 'gh' to '/usr/bin/snap'. I removed the snap install and installed with apt (https://github.com/cli/cli/blob/trunk/docs/install_linux.md) and everything works ok.

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

79519252

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

I found the setup issue

app.use(
  fileUpload({
    useTempFiles: true,
    safeFileNames: /\\/g,
    preserveExtension: true,
    tempFileDir: `${__dirname}/uploadspace/temp`
  })

}

Here, preserveExtension: true, preserveExtension: Preserves filename extension when using safeFileNames option. If set to true, will default to an extension length of 3. So, to fix this I need to defined a Number for preserveExtension (in my case 4 is sufficient)

Fix:

var app = express();
app.use(
  fileUpload({
    useTempFiles: true,
    safeFileNames: /\\/g,
    preserveExtension: 4,
    tempFileDir: `${__dirname}/uploadspace/temp`
  })
);
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Manna

79519242

Date: 2025-03-19 06:05:30
Score: 1.5
Natty:
Report link

The same issue was faced during development.

I followed this document: Mark images as priority

app.component.html

<img [ngSrc]="logoUrl" width="400" height="200" priority>

app.component.ts

logoUrl="/assets/images/logo.svg"
Reasons:
  • Blacklisted phrase (1): this document
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Karthik Senniyappan

79519241

Date: 2025-03-19 06:05:30
Score: 4.5
Natty: 5
Report link

However, I don't think this works if you're trying to debug code in a library function. Does anyone know how best to debug library code. My only idea is to copy the library code into the calling file and debug it there.

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andy Franklin

79519240

Date: 2025-03-19 06:05:30
Score: 4
Natty: 4
Report link

make sure there is no space before "run" sometimes this causes the issue

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

79519239

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

just delete this "CURL_CA_BUNDLE" path from system environmental variable and restart the pc , it will fix Ur problem

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

79519228

Date: 2025-03-19 06:00:28
Score: 1.5
Natty:
Report link

I think you're using WSL, To fix your WSL paths in VSCode settings use paths formats like this \\wsl$\Ubuntu-18.04\home\... (you might need to escape backslashes)

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

79519219

Date: 2025-03-19 05:53:27
Score: 1
Natty:
Report link

I changed app.json "newArchEnabled": false, which was previously true and also installed these four packages:

  1. react-native-safe-area-context
  2. react-native-screens
  3. react-native-gesture-handler
  4. react-native-reanimated

which solved the problem.

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

79519208

Date: 2025-03-19 05:42:25
Score: 3.5
Natty:
Report link

after overriding glob version 9.0.0 build is not creating.

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

79519205

Date: 2025-03-19 05:41:25
Score: 1
Natty:
Report link

how to configure to store azure diagnostics to store only Azure SQL dB login logout related events logs

Follow the below steps which I have tried with:

Step:1

Go to the Azure portal and select Azure SQL Database. In the left blade, navigate to the Auditing option under Security and enable Azure SQL Auditing. Under Audit log destination,choose Storage, then select the correct subscription and storage account. By default, the storage authentication type will be set to Storage Access Keys, Finally, click on Save to apply the changes.

Refer the below Image: ![enter image description here]

Step:2

In Azure SQL Database, go to the left-side blade and select Diagnostics setting under Monitoring, then click on +Add Diagnostics Setting. Enter the Diagnostics setting name, select SQLSecurity Audit Event under Categories, and choose Archive to a storage account under Destination details. Next, select the correct Subscription and Storage account, then click on Save to apply the settings.

Refer the below Image: ![enter image description here]

Step:3 Select Auditing under Security on the left-side blade panel, then click on View audit logs to access the audit records.

Refer the below Image: ![enter image description here]

Step:4 Under Audit Source, the default selection will be Database audit. Click on Log Analytics to proceed.

Refer the below Image: ![enter image description here]

Step:5 As per your requirement, modify the Kusto Query, Time Range, and Show result, then click on RUN to execute the query.

Refer the below Image: ![enter image description here]

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: Narendra Reddy Pakkirigari

79519195

Date: 2025-03-19 05:34:24
Score: 0.5
Natty:
Report link

I don't know if you still have this problem. After a few thousand hours of racking your brains.

Basically, you need to subscribe your application through a Post method in the meta API. Just follow this simple documentation below.

Doc Meta

After that, you can try to send a message to your webhook, or test it via the meta panel and it will work correctly.

I hope this helps you guys, stay safe

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • No code block (0.5):
  • Low reputation (1):
Posted by: Raphael M. Santana

79519184

Date: 2025-03-19 05:27:23
Score: 3
Natty:
Report link

when you create object "List" tab name auto becomes "Lists" because it follows a convention where tab name showing multiple records. align with standard object like Account => Accounts so you can change it while creating the object or later in setup => tabs.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): when you
  • Low reputation (1):
Posted by: Hitesh Parmar

79519183

Date: 2025-03-19 05:26:23
Score: 0.5
Natty:
Report link

A temporary fix is to add gem 'json', '2.3.1' to Gemfile. I just wanted to let you know that this works for me.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Hafiz Abdul Rehman

79519177

Date: 2025-03-19 05:21:22
Score: 1
Natty:
Report link

I had the same problem, you have to go to icloud console => cloud database => and select your database id in the top left corner => and in the bottom left from the menu select Deploy Schema Changes.... after long search: https://developer.apple.com/forums/thread/749352

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

79519170

Date: 2025-03-19 05:15:20
Score: 2.5
Natty:
Report link

Did you compile with Python 3.13 instead of 3.12, please check with this command:

python3-config --extension-suffix

try recompiling with this command:

CXXFLAGS="$(python3.12-config --cflags)" LDFLAGS="$(python3.12-config --ldflags)" cmake ..

make

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Nuryagdy

79519163

Date: 2025-03-19 05:11:20
Score: 0.5
Natty:
Report link

Simply call cancelOrder() at the same moment you're verifying that time <= 0:

useEffect(() => {
  if (time > 0) {
    const timer = setTimeout(() => setTime(time - 0.1), 100);

    return () => {
      clearTimeout(timer);
    };
  } else {
    cancelOrder();
    setHidden(true);
  }
}, [time]);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kishan Dobariya

79519160

Date: 2025-03-19 05:09:19
Score: 0.5
Natty:
Report link

You can try this :

} catch (error) {
    println error
    failure(message: "Timeout reached.")
}
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anshika Gupta

79519150

Date: 2025-03-19 05:05:18
Score: 2
Natty:
Report link

We introduced the Ballerina Scan tool to integrate sonar-scan in ballerina.
This feature is introduced with Ballerina Update 12 release

You can find the relevant documentation in here

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

79519143

Date: 2025-03-19 04:57:17
Score: 2
Natty:
Report link

Go to your Chrome Web Store developer dashboard, click the left top burger menu then click the Account option... here, I opted for This is a non-trader account in case of trader declaration. In the Address field, I deleted my home address and clicked Save changes button in the bottom. Then, when i refreshed my plugin, the address was not seen anymore.

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

79519141

Date: 2025-03-19 04:57:17
Score: 1.5
Natty:
Report link

I had the same issue on my Apple M4.
I just installed MacOS 15.4 (beta, 24E5238a) and the problem disappeared.

https://developer.apple.com/forums/thread/775833 hints that Apple actually fixed something.

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

79519135

Date: 2025-03-19 04:50:16
Score: 1
Natty:
Report link

just use the tint property

Toggle("", isOn: $allowCurrencyPerInvoice)
                .tint(.black)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: karmjit singh

79519132

Date: 2025-03-19 04:46:15
Score: 5
Natty: 5.5
Report link

Is this what you're looking for? Check the page below.

https://android.googlesource.com/platform/frameworks/webview/+/f989a7846d5fe4116de1a0635a8aade09d2be7b2/chromium/java/com/android/webview/chromium/CookieManagerAdapter.java

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is this
  • Low reputation (1):
Posted by: qwertyfairy

79519118

Date: 2025-03-19 04:28:12
Score: 0.5
Natty:
Report link

I tested the above code using the Ballerina latest release 2201.12.0.
It compiled without any errors.

Please do the following steps and compile it again

  1. Remove Dependencies.toml file

  2. Run bal clean

  3. Run bal run

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

79519101

Date: 2025-03-19 04:16:10
Score: 3.5
Natty:
Report link

For me what worked was using a different browser.

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

79519099

Date: 2025-03-19 04:14:09
Score: 2.5
Natty:
Report link

For anyone doesn't mind just look at last 7 days metric, I created a tool using npm's API https://api.npmjs.org/versions/{package}/last-week

https://wctiger.github.io/npm-version-popularity/

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1):
  • Has code block (-0.5):
Posted by: wctiger

79519094

Date: 2025-03-19 04:10:09
Score: 2
Natty:
Report link

It's hard to know where the slowness lies exactly. You should utilize the Visual Studio Diagnostic Tools to figure out where most of the time is being spent: diagnostic tool in visual studio

If it is indeed the image flipping logic as @Jimi predicted in the comments maybe you could try out alternative image rotating code such as the one from this answer: How do I rotate a picture in WinForms

Reasons:
  • Blacklisted phrase (1): How do I
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Sal

79519088

Date: 2025-03-19 04:00:07
Score: 1.5
Natty:
Report link

Not sure but I think react-scripts needs to be updated for it to be compatible with Node.js 11

npm update react-scripts
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mayankdv

79519084

Date: 2025-03-19 03:55:06
Score: 1.5
Natty:
Report link

We do not define abstract methods in Go because we don't have inheritance in Go. Use this approach:

Replace BaseTreeNode with an interface satisfied by all node types.

For AVL trees nodes, declare all fields and methods in AVLTreeNode. Do not embed anything.

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

79519081

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

While Chintan's answer is straightforward, it requires all your code be in an extra indentation block. The best way to do this without extra indent block is

import sys
sys.stdin = open('input.txt', 'r', encoding='utf-8')
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Priyanshu Kalal

79519076

Date: 2025-03-19 03:51:04
Score: 9 🚩
Natty: 4.5
Report link

I have the exact same issue but I only have it when I run the app on my real iPhone.
It also seem to have happened when I updated it to ios 18.3.2 which I cannot confirm using an emulator since that version is not downloadable yet. Moreover, I have a friend whose iPhone version is older and there the app works from TestFlight as well as the emulators with version such as 18.2.x.

I am really banging my head against the wall with this issue...
Any help would be appreciated.

PS. I tried the above steps but no success.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (3): Any help would be appreciated
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same issue
  • Low reputation (1):
Posted by: Emanuel Dellsén

79519073

Date: 2025-03-19 03:45:03
Score: 3
Natty:
Report link

Generative artificial intelligence (a.k.a. GPT, LLM, generative AI, genAI) tools may not be used to generate content for Stack Overflow. The content you provide must either be your own original work, or your summary of the properly referenced work of others. If your content is determined to have been written by generative artificial intelligence tools, it will likely be deleted, along with any reputation earned from it. Posting content generated by generative artificial intelligence tools may lead to a warning from moderators, or possibly a suspension for repeated infractions.

Reasons:
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aʀjoŋ ɭNʌʆsɭ

79519063

Date: 2025-03-19 03:36:01
Score: 0.5
Natty:
Report link

If you want to replace by compiler-rt and other LLVM's equal substitution, use

clang++ -stdlib=libc++ -rtlib=compiler-rt --unwindlib=libunwind

it uses libc++ to replace libstdc++. compiler-rt instead of libgcc. and specific libunwind to unwind to remove libgcc_s

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

79519057

Date: 2025-03-19 03:33:01
Score: 0.5
Natty:
Report link
  1. npx create-expo-app --example with-nativewind

→ Examples: List of --example starters → Alternative: Tutorial for starter & manual installation by NativeWind

https://www.nativewind.dev/getting-started/installation

  1. Yes, you are correct: Expo handles the babel.config.js behind the scenes and let's you optionally opt-out by simply creating your own file in the root of your app:
// babel.config.js (default)
module.exports = function (api) {
  api.cache(true);
  return {
    presets: ['babel-preset-expo'],
  };
};
// babel.config.js (nativewind)
module.exports = function (api) {
  api.cache(true);
  return {
    presets: [
      ["babel-preset-expo", { jsxImportSource: "nativewind" }],
      "nativewind/babel",
    ],
  };
};

→ You need also to create a metro.config.js if deciding to manually install NativeWind, this file is also handled by Expo behind the scenes and you can opt-out by creating your own file.

Alternative starter & Manual installation guide by NativeWind

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

79519054

Date: 2025-03-19 03:31:00
Score: 2
Natty:
Report link
.slider .axis .axis-tick-mark {
    -fx-stroke: white;
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Henryk Zschuppan

79519042

Date: 2025-03-19 03:22:58
Score: 5.5
Natty:
Report link

I don’t have enough points to comment. Just a question for @MarkB and the accepted answer. How would you do this without ecs, both via the UI and terraform.

When creating a TG with type IP (ipv4) it allows to enter static IP. I want to get around this in case of a change in IP of the ec2 receiving traffic from the TG.

Reasons:
  • Blacklisted phrase (1): How would you
  • Blacklisted phrase (1): to comment
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • User mentioned (1): @MarkB
  • Low reputation (1):
Posted by: Hgrammer

79519039

Date: 2025-03-19 03:20:58
Score: 1.5
Natty:
Report link

I was wondering the same today, and after some search, it seems that it is not feasible.

Despite the AWS UI gives the feeling that the secret key/value pairs can be added or removed independently, the secret value is a JSON object.

Consequently it is only possible to read or write the object as a whole, and not a subpart of it. Which makes sense anyways, when thinking that the encryption/decryption mechanism applies to the whole content of the secret, and not to each key/value pair.

Reasons:
  • Blacklisted phrase (2): was wondering
  • No code block (0.5):
  • High reputation (-1):
Posted by: arvymetal

79519036

Date: 2025-03-19 03:17:57
Score: 4
Natty: 4.5
Report link

for anyone who wants to find the official docs: https://www.mongodb.com/docs/manual/tutorial/query-embedded-documents/#match-an-embedded-nested-document

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

79519035

Date: 2025-03-19 03:14:55
Score: 6.5 🚩
Natty: 4.5
Report link

user14831455

enter image description here

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): user14831455
  • Low reputation (1):
Posted by: Pritish Ramesh Pawar

79519031

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

HTML : <a href="tel:+66812345678">Tel. Thailand</a>

WordPress : +66812345678

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

79519029

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

Could you integrate success from application with local instance of drawio already by replacing **embed.diagrams.net** with your own domain?

http://[my host]:8080/?embed=1&proto=json&spin=1

We are integrating also from our application to self-host drawio using docker however we saw it is keeping loading

![image](https://github.com/user-attachments/assets/f7249871-e0f7-4c8f-b11d-16150986bee7)

Any suggestion to resolve this issue would be very much appreciated!

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • RegEx Blacklisted phrase (2): Any suggestion
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Tú Uyên

79519022

Date: 2025-03-19 03:04:53
Score: 0.5
Natty:
Report link

Try to register the service in error message

builder.Services.AddScoped<Radzen.ContextMenuService>();

If the error still occurs,please share a minimal example that could reproduce your issue

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Low length (0.5):
  • Has code block (-0.5):
  • High reputation (-2):
Posted by: Ruikai Feng

79519016

Date: 2025-03-19 03:00:52
Score: 1.5
Natty:
Report link

plt.xticks() may not work because it is linked to the values thus resulting in uneven spaces between ticks. Try changing the labels instead:

ax = plt.subplot()
ax.set_xticks(range(17), labels=[i for i in range(25) if i % 3 != 2])

Here is a sample output based on this example:

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Man made of meat

79519004

Date: 2025-03-19 02:49:50
Score: 4
Natty:
Report link

I had the similar issue. Installing System.IO.Ports package fixed the issue for me.

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: Anand

79519002

Date: 2025-03-19 02:48:49
Score: 2
Natty:
Report link

Excerpt from [Basic memory concepts](https://docs.flutter.dev/tools/devtools/memory?hl=en-GB#basic-memory-concepts):

\> The Dart VM allocates memory for the object at the moment of the object creation, and releases (or deallocates) the memory when the object is no longer used (see [Dart garbage collection](https://medium.com/flutter/flutter-dont-fear-the-garbage-collector-d69b3ff1ca30)).

The local variables with known size (e.g. bool, int) within a function are allocated to the stack memory. Those objects whose size and lifespan is not known at compile time are allocated to the heap memory. Objects allocated on the heap have a longer lifespan and are managed by Dart’s garbage collector. ([source](https://medium.com/@maksymilian.pilzys/deep-analysis-of-darts-memory-model-and-its-impact-on-flutter-performance-part-1-c8feedcea3a1))

Once a function finishes executing, all its local variables go out of scope, and the function’s stack frame is removed, and the memory occupied becomes available for reuse.

A code sample, stated “good practice”, [in official Flutter documentation](https://docs.flutter.dev/tools/devtools/memory?hl=en-GB#how-to-fix-leak-prone-code) using `build variables` declaration. This code sample is exemplified under title - “How to fix leak prone code”.

``` dart

// GOOD

@override

Widget build(BuildContext context) {

final theme = Theme.of(context);

final handler = () => apply(theme);

useHandler(handler);

```

So, for simple types and objects, it is okay to declare them within `build` method or callback functions’ block. We should avoid declaration in build when the objects use streams, timers, controllers, etc.

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @override
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: rusty

79519001

Date: 2025-03-19 02:46:49
Score: 1
Natty:
Report link

I have already tested it. You can follow the steps below to add additional DLLs.

1.  Right-click the Packaging Project in Solution Explorer and select Add ➜ New Folde.

2. Right-click the new folder and select Add ➜ Existing Item.

3. Browse to DLLs that you need and add them to the project.

4. Once you install the application, the DLLs will be inside.

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

79518998

Date: 2025-03-19 02:43:47
Score: 0.5
Natty:
Report link

Not sure if this will work for everyone but I had the same issue which I resolved by scaling down the image to 480 x 640 pixels

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

79518997

Date: 2025-03-19 02:42:47
Score: 1
Natty:
Report link

You just have to put this command :

debugShowCheckedModeBanner: false

inside your Widget and boom your problem get solved 😁

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

79518984

Date: 2025-03-19 02:33:46
Score: 2
Natty:
Report link

https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/s3-cross-region.html
Next, when you create your S3 client, enable cross-Region access as shown in the snippet. By default, access is not enabled.

S3AsyncClient client = S3AsyncClient.builder()
                                    .crossRegionAccessEnabled(true)
                                    .build();
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: pyzhou

79518983

Date: 2025-03-19 02:32:45
Score: 1
Natty:
Report link

First, I see this question is tagged azure-web-app-service, but your question indicates you are not running the best practice method of running WordPress on App Service, which is by running the official Microsoft WordPress container image. Learn more about running WordPress on Azure using best practices here.

Second, to answer your question, I'm unable to tell if you're running an App Service with the PHP stack or as a virtual machine running in Azure. I'm thinking it must be a virtual machine.

Additionally, is there any option in the Azure Portal to modify the configuration so that I can apply chmod 755 and chmod 644?

If you truly are running an App Service, then your best option is to use Kudu. This will allow you to access SSH and have full access to the web app as you will be the root user. You will find 'Advanced Tools' on the left navigation under 'Developer Tools'. The URL will look similar to https://[your-app-service-name].scm.azurewebsites.net/. To access the new UI, which also provides a file editor for you, go to https://[your-app-service-name].scm.azurewebsites.net/newui.

By the sounds of you are already have SSH access. In which case it's hard to know what the issue could be without knowing:

Reasons:
  • Blacklisted phrase (1): is there any
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: Sam Rueby

79518981

Date: 2025-03-19 02:30:44
Score: 8.5 🚩
Natty: 5.5
Report link

I met the same problem. Have you figured it out?

Reasons:
  • RegEx Blacklisted phrase (3): Have you figured it out
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tao

79518980

Date: 2025-03-19 02:30:44
Score: 4.5
Natty:
Report link

I have fixed the issue by coming to this URL https://console.cloud.google.com/google/maps-apis/home?inv=1&invt=AbsaKA&authuser=0enter image description here

here you do this "hello world" and click on preview APIs

enter image description here

and then start playing with the code demo on jsfiddle and for some strange reason it enables the old "Places API" and start working everything

enter image description here

I have enabled it on here now that shows

enter image description here

there is something to do with "Places API" and "Places API (New)" https://console.cloud.google.com/google/maps-apis/apis/places-backend.googleapis.com/credentials

have a good evening and good luck troubleshooting this :)

Reasons:
  • Blacklisted phrase (1): good evening
  • Probably link only (1):
  • Contains signature (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Luca

79518977

Date: 2025-03-19 02:29:43
Score: 3
Natty:
Report link

Try asking ChatGPT or Grok for your question, if it can help. A user who doesn't understand code but likes Who says, lol

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

79518972

Date: 2025-03-19 02:25:43
Score: 1.5
Natty:
Report link

show all ROLES granted to a USER:

postgres-# select roleid, rolname, usename, member  
postgres-# from pg_auth_members 
postgres-# join pg_roles on pg_roles.oid = pg_auth_members.roleid 
postgres-# join pg_user on pg_user.usesysid = pg_auth_members.member  
postgres-# where usename = '...' ;    
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: daywalker

79518971

Date: 2025-03-19 02:24:42
Score: 1
Natty:
Report link

As others have mentioned in the comments there is no even remotely easy way to accomplish this with standard WinForms.

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

79518961

Date: 2025-03-19 02:10:40
Score: 1
Natty:
Report link
  1. Change the network from public to private

  2. Open port 5986 on the firewall by using the cmd

    netsh firewall add portopening TCP 5986 "WinRM over HTTP"
    
  3. Allow the remote machine "Remote_IP" as trusted host on the client by using cmd.

    winrm set winrm/config/client '@{TrustedHosts="Remote_IP"}'
    
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: nmtinh

79518959

Date: 2025-03-19 02:05:39
Score: 1
Natty:
Report link

You need to initialize the Quill containers in the fetch method after the PartialView is loaded into the DOM. With jQuery.load, I had been initializing Quill in the PartialView. Google's AI Overview gave me the answer:

fetch('/your-partial-view-url')
      .then(response => response.text())
      .then(html => {
        document.getElementById('your-container').innerHTML = html;
        initializeQuill();
      })
      .catch(error => console.error('Error fetching partial view:', error));
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Momenee

79518945

Date: 2025-03-19 01:57:37
Score: 2.5
Natty:
Report link

I just fixed. It seems the current db is invalidate. I should try

  1. connect mysql without database

  2. then create a new database

  3. reconnect with new database

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ngô Tấn Điền

79518943

Date: 2025-03-19 01:56:37
Score: 1.5
Natty:
Report link

As of 2025, none of these above recommended solution work for me on Visual Studio 2022. When I click the properties of the project, it is empty. When I try to find it on menu, it does not exist on menu anymore. However, they do allow you to edit launch.vs.json by clicking Debug -> Debug and Launch settings for xxx, which allows you to pass an args parameter array. It works like a charm for me.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Albert Cheng

79518936

Date: 2025-03-19 01:51:37
Score: 2.5
Natty:
Report link

I personally did repair work using "sql server installation center" and it fixed my problems. Btw, I set my own instance name and id instead of relying on the one given by the default instance. I am not sure if it changes anything but thought would be useful.

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

79518926

Date: 2025-03-19 01:41:35
Score: 4.5
Natty:
Report link

enter image description here

please read the picture, you have some errors

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

79518924

Date: 2025-03-19 01:38:34
Score: 9 🚩
Natty: 6
Report link

I've been having this exact same issue. Did you end up finding a solution?

Reasons:
  • RegEx Blacklisted phrase (3): Did you end up finding a solution
  • 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: ModernNeesh

79518923

Date: 2025-03-19 01:37:33
Score: 0.5
Natty:
Report link

it seems it is a formal company

https://www.esplb.com/cms/page/1/privacy-policy.html this is its privacy policy.

and they support Paypal.I think safety is not a problem.

About the refund,you can use paypal,they support at least 90 days

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jim Zhang

79518922

Date: 2025-03-19 01:35:33
Score: 1.5
Natty:
Report link

You should use useGetMyNewCustomEndpointQuery instead of useGetMyNewCustomEndpoint ... notice the Query suffix.

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

79518916

Date: 2025-03-19 01:27:32
Score: 2
Natty:
Report link

Use the @drawable keyword followed by a slash and the name of the image. Example provided below. Again, this is for a LinearLayout in Android.

android:background="@drawable/hex_background"

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @drawable
  • Low reputation (1):
Posted by: James Allan

79518913

Date: 2025-03-19 01:25:31
Score: 3.5
Natty:
Report link

Wildcards can be useful for people who want to do complex stuff with their input.

Refer for examples -> https://jmespath.org/specification.html#wildcard-expressions
Play around with your input -> https://jmespath.org/tutorial.html

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

79518906

Date: 2025-03-19 01:16:28
Score: 9 🚩
Natty: 5.5
Report link

Did you find a solution to your problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to your problem
  • 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 find a solution to you
  • Low reputation (1):
Posted by: Júnior Michalski

79518902

Date: 2025-03-19 01:09:27
Score: 1
Natty:
Report link

In addition to JJuice's answer above, it is also required for the password text field to be on the same screen as a username/phone/email text field (and therefore in an AutofillGroup with it). It seems that if a password field exists on its own - even if wrapped in an AutofillGroup - iOS won't currently recognise it as a sign up form. This caused me an issue as the previous sign up flow for my app gave each text field its own screen, which is not uncommon.

I will also flag that Autofill Credential Provider was not required in my case to get this working. I believe this would only be required if you're building eg a third party password manager.

https://developer.apple.com/documentation/bundleresources/entitlements/com.apple.developer.authentication-services.autofill-credential-provider

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

79518901

Date: 2025-03-19 01:09:27
Score: 2.5
Natty:
Report link

Pass the this flag on to gcc to disable this warning

-Wno-free-nonheap-object

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

79518899

Date: 2025-03-19 01:07:26
Score: 0.5
Natty:
Report link

I believe simplesamlphp is meant for native php, and there's no direct documentation for laravel integration. What you can do is to find laravel compatible saml authentication library.

I think you can use this library if you want your laravel app to act as the IDP.

https://github.com/codegreencreative/laravel-samlidp

If you want your laravel app to act as the SP, then this library should work.

https://github.com/24Slides/laravel-saml2

I personally have used laravel-saml2 for microsoft Azure AD integration, and it works well, but I haven't tried the laravel-samlidp yet.

Regards,

Reasons:
  • Blacklisted phrase (1): Regards
  • Whitelisted phrase (-1.5): you can use
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Tatachiblob

79518898

Date: 2025-03-19 01:07:26
Score: 1
Natty:
Report link

There was a breaking change after WinSCP 6.1.2 causing MissingMethodException as a method was missing, but .NET optimisation had this used implicitly. So BizTalk 2016 can only be used up to this version. Later BizTalk 2020 CU6 has been recompiled with latest WinSCP without this removed method. CU6 uses WinSCP 6.3.5 by default, but later can be used with AssemblyRedirect also. The easiest is to not install WinSCP, but only copy the automation.zip contents into BizTalk installation folder. It can be confusing to install and have one version in GAC installed and other from automation.zip, especially with consultants, outsourcing vendors, different people involved. Even if not installed and you need to troubleshoot from the server with GUI, you can still use WinSCP.exe manually from extracted automation.zip.

Version matching information with different CUs are listed here:
https://learn.microsoft.com/en-us/biztalk/core/sftp-adapter

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

79518889

Date: 2025-03-19 00:53:24
Score: 5.5
Natty: 7
Report link

I’m running into an issue with my own project that seems you already fixed in yours and could use some guidance. Could you point me to the steps or resources you used to fork the Fantom network with Ganache? I’m trying to set up a local blockchain and swap FTM for CUSTOM COIN, but I’m stuck. Any help would be awesome—thanks!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (1.5): m stuck
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Primea

79518886

Date: 2025-03-19 00:51:24
Score: 3.5
Natty:
Report link

Reinstala con composer eso me hizo poder correr tu codigo

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

79518878

Date: 2025-03-19 00:44:22
Score: 2.5
Natty:
Report link

You can check code templates in android studio settings (image below).

enter image description here

If its not there you can try restarting the SDK Manager or reinstalling the SDK. You could also try creating just a layout xml file (image below). If neither of those work, create a new file with a .xml extension, then copy and paste the template from https://developer.android.com/develop/ui/views/layout/declaring-layout (make sure the file is in the res/layout folder)

enter image description here

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

79518876

Date: 2025-03-19 00:43:22
Score: 3.5
Natty:
Report link

replace the path of xml file to default is src\main\resources

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

79518870

Date: 2025-03-19 00:36:21
Score: 2.5
Natty:
Report link

I used TCPView and couldn't find what application is holding the port 5432 yet i had PostgreSQL13 running on 5433 so i disconnected it, then changed the pg17 server port to be 5433 rather than 5432, it connected right away.

Only connect to one server at a time? maybe

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

79518867

Date: 2025-03-19 00:36:21
Score: 2
Natty:
Report link

The industry standards are:

  1. Maven: https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html
  2. Gradle: https://gradle.org/
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: AndrewL

79518864

Date: 2025-03-19 00:32:21
Score: 1.5
Natty:
Report link

ContentProvider actually has multiple signatures for the insert method. I suppose what's happening here is that Android is actually always calling the other override, which inside the Dart code is called insertWithExtras

I stumbled upon this when I were writing tests for the plugin - source

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

79518861

Date: 2025-03-19 00:26:20
Score: 1
Natty:
Report link

If you’re looking for a **simple and efficient way to manage Java packages**, I highly recommend checking out **[Cryxie](https://cryxie.com)**. It’s a lightweight tool designed specifically to simplify Java package management, and it’s been a game-changer for me.

Here’s why Cryxie stands out:

- **1-Click Deploy**: Deploy Java packages with just a single command – no more complicated setups.

- **Seamless Installation**: Install and update packages without worrying about dependency issues.

- **Developer-Friendly**: It’s intuitive, lightweight, and doesn’t require you to manually configure everything.

I’ve been using it for a few weeks now, and it’s saved me so much time and frustration. You can get started quickly by following their **[Getting Started Guide](https://cryxie.com/documentation/getting-started)**.

Give it a try – it might be exactly what you’re looking for!

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eliézer Assunção de Paulo

79518860

Date: 2025-03-19 00:26:20
Score: 1.5
Natty:
Report link
from graphviz import Digraph

def crear_mapa_conceptual():
    dot = Digraph(format='png')
    dot.attr(rankdir='TB', size='10')
    
    # Nodo principal
    dot.node('MERCADO', shape='box', style='filled', fillcolor='lightblue')
    
    # Definición del mercado
    dot.node('Definición', 'Definición y Concepto', shape='ellipse', style='filled', fillcolor='lightgray')
    dot.edge('MERCADO', 'Definición')
    
    # Tipos de Mercado según Kotler
    dot.node('Tipos', 'Tipos de Mercado (Kotler)', shape='box', style='filled', fillcolor='lightgreen')
    dot.edge('MERCADO', 'Tipos')
    dot.node('Consumidores', 'Consumidores')
    dot.node('Productores', 'Productores')
    dot.node('Revendedores', 'Revendedores')
    dot.node('Gobierno', 'Gobierno')
    dot.node('Institucional', 'Institucional')
    dot.node('Internacional', 'Internacional')
    
    for tipo in ['Consumidores', 'Productores', 'Revendedores', 'Gobierno', 'Institucional', 'Internacional']:
        dot.edge('Tipos', tipo)
    
    # Segmentación del Mercado
    dot.node('Segmentación', 'Segmentación del Mercado', shape='box', style='filled', fillcolor='lightyellow')
    dot.edge('MERCADO', 'Segmentación')
    dot.node('Consumo', 'Mercado de Consumo')
    dot.node('Desarrollo', 'Mercado de Desarrollo')
    dot.edge('Segmentación', 'Consumo')
    dot.edge('Segmentación', 'Desarrollo')
    
    # Elementos del Mercado
    dot.node('Elementos', 'Elementos del Mercado', shape='box', style='filled', fillcolor='lightcoral')
    dot.edge('MERCADO', 'Elementos')
    
    elementos = ['Producto o Servicio', 'Vendedor', 'Comprador', 'Precio', 'Oferta', 'Demanda']
    for elem in elementos:
        dot.node(elem, elem)
        dot.edge('Elementos', elem)
    
    # Clasificación por Ámbito Geográfico
    dot.node('Geográfico', 'Clasificación Geográfica', shape='box', style='filled', fillcolor='lightpink')
    dot.edge('MERCADO', 'Geográfico')
    geografico = ['Local', 'Regional', 'Nacional', 'Internacional', 'Global']
    for geo in geografico:
        dot.node(geo, geo)
        dot.edge('Geográfico', geo)
    
    # Tipos de Competencia
    dot.node('Competencia', 'Tipos de Competencia', shape='box', style='filled', fillcolor='lightblue')
    dot.edge('MERCADO', 'Competencia')
    competencia = ['Perfecta', 'Monopolista', 'Imperfecta', 'Monopsonio']
    for comp in competencia:
        dot.node(comp, comp)
        dot.edge('Competencia', comp)
    
    # Generar el diagrama
    dot.render('mapa_conceptual_mercado')
    print("Mapa conceptual generado como 'mapa_conceptual_mercado.png'")

crear_mapa_conceptual()
Reasons:
  • Blacklisted phrase (2): crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ramírez Pérez Kennia

79518858

Date: 2025-03-19 00:22:19
Score: 2
Natty:
Report link

You have to use the android:text property.

android:inputType="text"
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: James Allan

79518850

Date: 2025-03-19 00:17:18
Score: 2.5
Natty:
Report link

Shouldn't the label be followed by lower case QMName or user normally? E g:
ibmwebspheremqqm1 (sample for server QM1)
ibmwebspheremqmyuser (sample for client MyUser)

I had issues with this and it seems IBM MQ.NET client wants to use TLS 1.0 cipher by default even though it is running on Windows 2019 (client) and Windows 2022 (IBM MQ server) where only TLS 1.2 is enabled in registry. My channel was set to use "ANY_TLS12_OR_HIGHER" also. My application had automatic negotiation so I couldn't change the CipherSpec. I re-enabled TLS 1.0 in registry and I created a new server-connection channel with "ANY" SSL setting and I set these registry keys on both client and server to find out more (I don't recommend to use TLS 1.0 other than during troubleshooting):

AMQ_TLS_V1_ENABLE=1 | TRUE

AMQ_TLS_WEAK_CIPHER_ENABLE=ALL

Then it started to work and by default it was using "TLS_RSA_WITH_AES_256_CBC_SHA" cipher.

You can see the current CipherSpec used on all channels with this command :
-----
runmqsc.exe QM1
DISPLAY CHSTATUS(*) SSLCIPH
-----

I have tested with latest 9.4.0.10 and 9.3.0.27 client versions (Windows 2019) against IBM MQ 9.3.5.0 and 9.4.2.0 servers (Windows 2022).

I also have .NET registry set to use strong crypto, but this includes some more secure TLS 1.0 ciphers as well, so not avoiding TLS 1.0.

My remaining questions:
Why is IBM MQ.NET managed client trying to use the least secure by default?

Why does it try to use TLS 1.0 ciphers when TLS 1.0 server and client are blocked in Windows registry? (HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0)

Why is IBM MQ.NET managed client not negotiating TLS 1.2 connection automatically when my channel SSL is set to "ANY_TLS12_OR_HIGHER"?

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

79518835

Date: 2025-03-18 23:59:15
Score: 4.5
Natty: 6.5
Report link

You are an idiots with grand XY-troubles. Question was: how to show .hta file from .html w/o downloading it. Author didn't ask You about accessibility hta in browser - he did ask HOW TO DO? I develop .hta application and need normal simple and lightaccesible instrument for debug interface part. I need load/reload .hta in browser w/o rename file into .html each time for debugging. Can anybody reset youself brains from narcissism mode to work state and simply answer for question?

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Александров Александр

79518821

Date: 2025-03-18 23:43:12
Score: 1
Natty:
Report link

In VS 2022, I found the selection in the Properties of DLL which was unable to be debugged.

Properties, Build, General, "Debug symbols"

enter image description here

In my case, initially "No symbols are emitted" was selected.

Changing that option to "PDB file, current platform" solved my particular problem. I am not sure why it was set to "No symbols are emitted".

The value is stored for .NET Framework in the .csproj file, under the DebugType entry, and there can be an entry for Debug, and for Release builds.

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

79518804

Date: 2025-03-18 23:28:09
Score: 3
Natty:
Report link

Uncheck both of the 'Send message' options after clicking on edit button for your knowledge sources.

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

79518798

Date: 2025-03-18 23:21:08
Score: 2.5
Natty:
Report link

https://www.facebook.com/obsaa.ahmed.75470Resolved: Ad Library

Feb 24, 2025

Resolved icon

Resolved

chevron

Feb 24 2025 9:12 PM GMT+3: Resolved

We've recovered from an issue impacting the Ad Library. Thank you for your patience, and we apologize for the inconvenience.

Feb 24 2025 8:21 PM GMT+3: Some disruptions

We are aware of an issue with the Ad Library. Our teams are working to address the issue, and we apologize for any inconvenience.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: dg bfj

79518795

Date: 2025-03-18 23:18:07
Score: 2
Natty:
Report link

I was having the same issue until I found this article. It explains how to use property binding in runtime.

So I went ahead and used the same idea:

  1. Add a new parameter to your report with the deployed path (I had to do this to avoid dealing with deployment issues with report designs, so I have a property bound to the deployment profile in maven to do the trick)

  2. Use that parameter on the Property binding tab in the Data Source

  3. Now it works on both the IDE and tomcat

I hope this works for you as well.

enter image description here

Reasons:
  • Blacklisted phrase (1): this article
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: ElLicido

79518791

Date: 2025-03-18 23:14:06
Score: 2.5
Natty:
Report link

300 ms × 20 times = 6000 ms, which exceeds the default TWDT timeout of 5000 ms. This will trigger the panic handler and cause a restart. Please check the TWDT documentation in the ESP-IDF or simply increase the timeout value to 7000 ms.

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

79518788

Date: 2025-03-18 23:10:05
Score: 4.5
Natty:
Report link

The answer is in the other post provided by @l3l_aze in the comment: I fetched an html page with linked jS files in the and that was the source of this problem.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @l3l_aze
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user3196181

79518769

Date: 2025-03-18 22:59:03
Score: 5.5
Natty: 3
Report link

create unforgettable travel experience by offering luxury tours and engaging shores journeys.if you interested in this please let us know here https://www.kairosoceancruiseline.com/

Reasons:
  • RegEx Blacklisted phrase (2.5): please let us know
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Babar khan

79518766

Date: 2025-03-18 22:57:02
Score: 1.5
Natty:
Report link

I had the same issue. I found out that my current subscription (me as a customer) payment was alipay - and that is not supported for portal subscription switching. I changed the payment method to credit card and the subscription update button appears.

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

79518765

Date: 2025-03-18 22:55:02
Score: 3
Natty:
Report link

You should use ActivityCompat.requestPermissions() with an array of permissions to request permissions, it is likely that only one of your permissions is being granted.

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

79518760

Date: 2025-03-18 22:52:01
Score: 2.5
Natty:
Report link

I've managed to integrate Deepgram into my react-native expo app using the code I've shared in the blog post — https://denieler.com/blog/deepgram-integration-react-native. Hope it will help somebody to waste less time than I did 🙇‍♂️

Reasons:
  • Whitelisted phrase (-1): Hope it will help
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: denieler

79518759

Date: 2025-03-18 22:52:01
Score: 1
Natty:
Report link

Have you tried "strict": true for the compiler options? Im new to Ts also but this is how i have my projects set up at the tsconfig.json

   {
  "compilerOptions": {
    "target": "ES2017",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "strict": true,
    "noEmit": true,
    "esModuleInterop": true,
    "module": "esnext",
    "moduleResolution": "bundler",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "jsx": "preserve",
    "incremental": true,
    "paths": {
      "@/*": ["./src/*"]
    }
  },
  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
  "exclude": ["node_modules"]
}
Reasons:
  • Whitelisted phrase (-1): Have you tried
  • RegEx Blacklisted phrase (1.5): Im new
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user12577611

79518756

Date: 2025-03-18 22:46:00
Score: 5.5
Natty: 5
Report link

I was reading through the thread as part of my research project on enhancing Intelligent Traffic Management Systems (ITMS). Given that the K-Nearest Neighbors (KNN) algorithm is one of the nine used for Traffic Flow Prediction, I believe its ability to predict future values based on the similarity to nearby data points could significantly contribute to improving ITMS. Is it possible to make the prediction process even faster?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Madison Wisdom II