79621443

Date: 2025-05-14 12:22:43
Score: 3
Natty:
Report link

Natively, you can't

How can I tell Visual Studio to format like that? Am I missing any obvious option that my eyes insist to skip?

As of Visual Studio 2022, this isn't possible.

There is an issue on the Roslyn repo that is asking for the same thing, linked to a VS Developer Community post.

Unfortunately, neither of the two have gotten attention, so it hasn't been implemented. You can only adjust spaces around binary operators.

The C# editorconfig reference won't help either: it only specifies a rule to wrap binary operators around spaces, nothing about unary operators.

Your best bet might be to like the related issues and ask for news about them, so they get more attention.

With plugins

Is there any Plugin out there to do this?

I couldn't find any existing plugins that let you do this, but you can for sure make your own!

There are a variety of plugins on the VS Marketplace that deal with code formatting, like CSharpier for example. You can always fork those to use them as a starting point, and change them so they add spaces around unary operators.

However, it's never gonna be as easy to use as if it was implemented natively.

The closest you can get would be to make your plugin use a different keyboard shortcut as the original code formatting one, have it call the regular document formatting feature and then add spaces around unary operators.

But considering you asked "Is there any Plugin out there to do this?" (implying existing ones), I assume that making your own is out of scope. If you do want to make your own though, check out Start developing extensions in Visual Studio. And if you get stuck, you can always open a new question.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): Is there any
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: RedStoneMatt

79621441

Date: 2025-05-14 12:20:42
Score: 2.5
Natty:
Report link

Thank you, @J7er, for sharing your findings. I'm adding this response here to summarize the root cause and solution for others who may encounter the same issue.

Issue:

When sending audio through a Twilio WebSocket using FastAPI, the following error was observed:

Error sending message: string indices must be integers

This occurred because the message was being sent using await ws.send(json.dumps(message)), which sends the data as a raw string.

Explanation:

Twilio expects the message to be sent as a proper JSON object. Sending it as a string can cause parsing issues on the receiving end, resulting in the error.

Recommended Fix:

Instead of manually converting the message to a JSON string, use FastAPI's built-in method:

await ws.send_json(message)

This checks the message is sent in the expected format.

Thanks again for confirming the solution. I hope this helps others facing a similar issue.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing a similar issue
  • User mentioned (1): @J7er
Posted by: Naveen Sharma

79621435

Date: 2025-05-14 12:17:41
Score: 0.5
Natty:
Report link

This is the most common pattern:

const handleFocus = (e: React.FocusEvent<HTMLInputElement>) => {
  e.target.scrollIntoView({ behavior: 'smooth', block: 'center' });
};

And this you use the onFocus function

<input type="text" onFocus={handleFocus} />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Elias Salom

79621430

Date: 2025-05-14 12:15:40
Score: 4
Natty:
Report link

now we can use width: min-content;

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

79621427

Date: 2025-05-14 12:12:39
Score: 2
Natty:
Report link
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Chethankrishna Manikonda

79621426

Date: 2025-05-14 12:11:39
Score: 3.5
Natty:
Report link

i have fixed it wrote PageableHandlerMethodArgumentResolver in config and override it's handle argument function and capped maximum pageNumber and pageSize

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

79621418

Date: 2025-05-14 12:06:38
Score: 2.5
Natty:
Report link

I don't think allow_duplicate_authorization_header is a valid field in the code. This is not going to work.

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

79621416

Date: 2025-05-14 12:06:37
Score: 10.5 🚩
Natty: 5
Report link

i have same issue you solved this button is not send in whasapp bot do you have so please help me i will pay you.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (1): i have same issue you solved this button is not send in whasapp bot do you have so please
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: mehul

79621393

Date: 2025-05-14 11:47:31
Score: 1.5
Natty:
Report link

You can set minimum deploymeny target to iOS 16, Need to change constraint logic and legacy layout maintenance to support 375 and wider screens too.

In Xcode 15.3, simulators like iPhone 8 (375pt) or iPhone SE (2nd gen, 375pt) are good for lower-bound layout testing for iOS 16 target

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

79621392

Date: 2025-05-14 11:46:31
Score: 2.5
Natty:
Report link

I managed to fix this.

The issue is that I need to put the coordinates in the correct order.

I have,

x' = z

y' = x

z' = y

That means, if my grid is now defined in the new system,

xold = ynew

yold = znew

zold = xnew

Therefore, while doing the interpolation call, I have to send coords in y,z,x order to get the correct results.

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

79621391

Date: 2025-05-14 11:46:31
Score: 4
Natty: 6
Report link

@salim_mtp, Thank you, it worked for me!!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @salim_mtp
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Saiprasath

79621388

Date: 2025-05-14 11:42:30
Score: 2
Natty:
Report link

Besides the suggested answers, you need to find the constant K_ALLOWED_TCPDF_TAGS and add |write1DBarcode| to its value

Please check the following answer for: https://stackoverflow.com/a/79621380/6163727

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

79621381

Date: 2025-05-14 11:38:28
Score: 2.5
Natty:
Report link

TypeScript can't narrow a generic boolean like M at runtime, so it doesn't know if value is an array or not. Using function overloads or a type guard is usually the way to handle this.

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

79621380

Date: 2025-05-14 11:37:28
Score: 2.5
Natty:
Report link

For those newly facing the same problem:

Open the file: `vendor/tecnickcom/tcpdf/config/tcpdf_config.php`

After changing the constant K_TCPDF_CALLS_IN_HTML value to true

You still need to allow the method for using define('K_ALLOWED_TCPDF_TAGS', '|write2DBarcode|');

Check the following reply for understanding this constant:

Missing documentation on K_ALLOWED_TCPDF_TAGS

Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same problem
  • Low reputation (0.5):
Posted by: AboElnouR

79621361

Date: 2025-05-14 11:26:24
Score: 3
Natty:
Report link

When following referrals, the PagedResultsResponseControl does not contain the cookie even though it is returned by the AD server. If you need pagination with referrals, then you need to either manually fetch referrals or connect to GC directly.

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

79621342

Date: 2025-05-14 11:18:21
Score: 0.5
Natty:
Report link

Please find the below observation:
It looks like upgrading to spring boot 3.4.3 introduced unexpected session creation, despite your stateless JWT-based authentication setup.

Possible Causes:

Spring Security Changes: While Spring Security itself does not create sessions in a stateless setup, other parts of the framework or dependencies might be triggering session creation.

Servlet Container Behavior: Some servlet containers (like Tomcat) may automatically create sessions unless explicitly disabled.

Spring Boot Internal Changes: There might be changes in Spring Boot 3.x that affect session handling, even when SessionCreationPolicy.STATELESS is set.

Potential Solutions:

Explicitly Disable Session Creation Try adding this to your security configuration:

http.sessionManagment(session -> sessionCreationPolicy(SessionCreationPolicy.NEVER));

This ensures that Spring Security never creates a session.

Check for Other Session-\ Creating Components

Look for any filters or interceptors that might be triggering session creation.

Debug by checking HttpServletRequest#getSession(false) to see where sessions are being created.

Disable Session Cookies in Application Properties Add this to application.properties file

server.servlet.session.cookie.name=

This prevents the JSESSIONID cookie from being set.

Verify Dependencies

Check if any dependencies (like Spring Session) are influencing session behavior.

If using Spring Session, ensure it's properly configured for stateless operation.

Please feel free to reach out if you encounter this issue again.

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

79621340

Date: 2025-05-14 11:17:21
Score: 1.5
Natty:
Report link

This will definitely work.

  1. Latest Maven dependecy code is added to pom.xml https://mvnrepository.com/artifact/org.testng/testng

  2. Download "TestNG for Eclipse" from Eclipse Marketplace

and Finally

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

79621338

Date: 2025-05-14 11:16:21
Score: 0.5
Natty:
Report link

Top IT Consulting Firm in New Jersey

Nexus is recognized as a Top IT Consulting Firm in New Jersey, providing deep expertise in Technology Advisory, Cybersecurity Risk Management, AI Strategic Adoption, Managed IT Services, Professional Services, and DevOps. We have successfully implemented innovative technology solutions for a wide range of organizations—from agile startups to global enterprise-level corporations.

Our team leverages cutting-edge technologies to help clients stay ahead in a rapidly evolving digital landscape. As a trusted advisor, Nexus offers specialized knowledge in areas such as IT asset management (including technology refresh planning, total cost of ownership (TCO), and return on investment (ROI)), as well as information assurance, risk management, IT governance, and security analysis.

At Nexus, we also deliver critical insights into emerging trends and developments that could significantly impact your business performance. Whether you're navigating complex digital transformation initiatives or strengthening your cybersecurity posture, Nexus is your strategic partner for innovation and resilience.

1 Meadowlands Plaza East Rutherford, NJ 07073

877-613-8787

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

79621329

Date: 2025-05-14 11:10:19
Score: 0.5
Natty:
Report link

Yes you can do that but you need your server for the same
Steps for that:

  1. Create your own deeplink which point to your webpage/backend

  2. On your server, store the referralCode and associate it with metadata, So that when someone visit link, via cookie, we can send request and redirect to appstore. (Half way you're done)

Now question for how can use the referred code which user already pasted:

There are 2 ways:
1. save it using UIPasteboard, Check if its fit in your scenario
2. Prompt referred code view when 1st lanuch app, like now a days eCommerce apps do.

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

79621322

Date: 2025-05-14 11:08:18
Score: 4
Natty:
Report link

Follow this issue, you can understand what actually happened

https://github.com/dotnet/runtime/issues/92777

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

79621315

Date: 2025-05-14 11:05:17
Score: 1
Natty:
Report link

You cannot iterate through the certificates in the Credential Providers.

For windows Smartcard login implementation, requires Smart Card or Virtual Smart Card (TPM).

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

79621313

Date: 2025-05-14 11:04:16
Score: 1.5
Natty:
Report link

"As of now, YouTube Kids does not offer a dedicated public API that exclusively returns YouTube Kids content. The standard YouTube Data API v3 can be used to search and list YouTube videos, but it doesn’t include a filter specifically for YouTube Kids content. This means there’s no guaranteed way to restrict results to only those available in the YouTube Kids app using the public API. If you're developing something intended for child-friendly content, you would need to implement your own filtering logic—perhaps by curating channels manually or using metadata like content ratings, titles, or tags (though these are not always reliable). Hopefully Google/YouTube provides more support for this in the future!"

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

79621284

Date: 2025-05-14 10:50:12
Score: 2.5
Natty:
Report link

id 1231370863Aviator

header 1id 1231370863 header 2Aviator
cell 1Aviator cell 2id 1231370863
cell 3Aviator cell 4id 1231370863
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: kmal algn

79621283

Date: 2025-05-14 10:48:11
Score: 1
Natty:
Report link

Quokka Community edition is a plugin that achieves the same things as scratch files and goes a bit further by running the file and pre-hinting the results.

The files are not saved in your working tree, and you can view recent quokka files.

For me it replaced scratch files from Webstorm for vscode and even did better.

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

79621279

Date: 2025-05-14 10:45:11
Score: 0.5
Natty:
Report link

The issue must be coming from your CameraPreview widget which you have not provided code for. My assumption still is that you are using the Image class to display the image like Image.memory() or Image.file(), if that is the case then you need to set the boxFit parameter to something that works for you like: Image.memory(photo, boxFit: BoxFit.contain,) or Image.memory(photo, boxFit: BoxFit.fitHeight,). I cannot help with the exact answer because your code is incomplete but I hope this give you an idea and helps you solve the issue

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Cleopas Mwape

79621277

Date: 2025-05-14 10:44:10
Score: 1.5
Natty:
Report link

As shown here, make sure the disk is offline AND NOT MARKED AS READ-ONLY (Windows sets it to readonly when offlined from "Disk Management Tool".

In order to clear its read-only attribute, open diskpart and do the following:
```

select disk 0 (or the one needed, where Native-OS is intalled)

attributes disk clear readonly

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

79621274

Date: 2025-05-14 10:43:10
Score: 3.5
Natty:
Report link

Follow the below article. I faced the same problem and SOLVEDit by reading rtsp stream from another thread and processing it with the main thread.
https://blog.gopenai.com/yolo-opencv-eliminating-artifacts-in-rtsp-frame-decoding-88a9dbf47754

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

79621259

Date: 2025-05-14 10:33:08
Score: 1
Natty:
Report link

You haven't added the MeshcatVisualizer, so don't have any system in your diagram that's publishing to Meshcat. You need to call e.g. AddDefaultVisualization on the diagram. https://drake.mit.edu/doxygen_cxx/namespacedrake_1_1visualization.html#a02befd8c90155c339a042f2af39d4c12

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

79621257

Date: 2025-05-14 10:33:08
Score: 0.5
Natty:
Report link

To make the git environment variables represent the same configuration as user.name and user.email, you need to set the following:

For the author information:

Bash

export GIT_AUTHOR_NAME="Value of user.name"

export GIT_AUTHOR_EMAIL="Value of user.email"

For the committer information:

Bash

export GIT_COMMITTER_NAME="Value of user.name"

export GIT_COMMITTER_EMAIL="Value of user.email"

Explanation:

·       user.name and user.email from your Git configuration are used to record the author and committer of your commits.

·       The author is the original writer of the code.

·       The committer is the person who applied the commit. Often, the author and committer are the same.

Git uses environment variables as a way to override the configuration settings. By setting GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, GIT_COMMITTER_NAME, and GIT_COMMITTER_EMAIL to the same values as your user.name and user.email configuration, you ensure that the commit metadata reflects the desired identity.

You can check your current user.name and user.email configuration using these commands:

Bash

git config user.name

git config user.email

Then, set the environment variables accordingly. Keep in mind that environment variables are typically set for the current shell session. If you want these settings to persist, you might need to add these export commands to your shell's configuration file (e.g., .bashrc, .zshrc).

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

79621252

Date: 2025-05-14 10:31:07
Score: 0.5
Natty:
Report link

Check this repo https://github.com/el-starikova/InteractiveNavigationControllerTransition-UIViewPropertyAnimator

There you can fetch all needed code for custom transition with interaction.

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

79621250

Date: 2025-05-14 10:30:07
Score: 1
Natty:
Report link

What solved this for me, was linking libtag_c.a as well. So:

target_link_libraries(appMusikmixer
    PRIVATE Qt6::Quick Qt6::Multimedia
    ${CMAKE_SOURCE_DIR}/taglib/libtag_c.a
    ${CMAKE_SOURCE_DIR}/taglib/libtag.a
)

libtag_c.a is created in <taglib build dir>\bindings\c\ and copied on cmake install.

(My guess is, the libtag.a is a dynamic library and the libtag_c.a is used to link to it statically. Similar to the Windows .lib using a .dll.)

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): What solve
  • Low reputation (1):
Posted by: Radu

79621240

Date: 2025-05-14 10:25:05
Score: 1.5
Natty:
Report link

Agora does not have their own push notification service. You need to integrate it on your own. Here is a guide from agora to send offline push notification:
https://docs-staging.agora.io/en/agora-chat/develop/offline-push/integrate-test?platform=flutter

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

79621231

Date: 2025-05-14 10:16:02
Score: 1
Natty:
Report link

Use @web3modal/ethereum with WalletConnect and EIP-6963 support. It allows you to detect and choose between multiple injected wallets like MetaMask and Trust Wallet.

Here’s the short approach:

Use WalletConnect v2 (via Web3Modal or wagmi/connectkit).

Detect wallets using EIP-6963 (allows listing all injected providers).

Assign wallet-specific connection buttons using their provider info.

Libraries like Web3Modal v3 or Wagmi + viem support this well in Next.js.

Try Web3Modal for a simple setup that works with multiple wallets and is React/Next.js friendly.

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

79621227

Date: 2025-05-14 10:14:01
Score: 2
Natty:
Report link

According to https://medium.com/@maryam.ghani160/how-to-ignore-changes-in-git-submodules-a3ea1463bdde you can

git config submodule.{yourModulePath}.ignore all

or change you .gitmodule to

[submodule "test"]
   path = test
   url = git@github:maloochpich/test.git
   branch = master
   ignore = dirty
Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vincent GODIN

79621218

Date: 2025-05-14 10:09:00
Score: 0.5
Natty:
Report link

I think it's a bug, but not sure if it's Gradle's fault or Android Gradle Plugin's fault (or both?).
It has something to do with included builds (like build-logic) and using the artifact com.android.tools.build:gradle-api (which is the recommendation) instead of com.android.tools.build:gradle.
The problem seems to be intermittent. Killing the Gradle daemon sometimes makes the problem disappear.
If you have a lot of included builds with projects that are using com.android.tools.build:gradle-api the problem seems to manifest more frequently.

Read a bit more here: https://slack-chats.kotlinlang.org/t/12314187/hi-all-i-ve-used-kotlin-dsl-to-set-up-convention-plugins-for
I haven't found any bug reports, but there probably should be one.

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

79621214

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

I had the same problem and found that within a long plotting function I had made, was hidden accidentally dev.off() and this kept stopping dev.off() from later occurring where I actually wanted

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

79621208

Date: 2025-05-14 10:04:59
Score: 4
Natty:
Report link

Turain Software Pvt. Ltd. is Kolkata's leading Bulk SMS Services and Digital Marketing Company. We offer end-to-end solutions including WhatsApp marketing, SEO, social media, web design, and app development—all under one roof.🌐 www.turainsoft.com

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TURAIN SOFTWARE PVT.LTD.

79621206

Date: 2025-05-14 10:03:59
Score: 1
Natty:
Report link

For completeness as none of these worked for me on server 2025.

Go to Server Manager >> Add Role >> Web Server >> Application Development

And tick "CGI" feature.

Then you should be able to select 'FastCgiModule' as the module under "Add Module Mapping"

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

79621204

Date: 2025-05-14 10:02:58
Score: 2.5
Natty:
Report link

Yes, you can change the initial checkout branch in Jenkins on the go by configuring the SCM section of your job or using a parameterized build with a branch variable. At Sangfor, we often use this for flexible CI workflows across staging and production branches without rebuilding pipelines.

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

79621195

Date: 2025-05-14 09:56:57
Score: 1
Natty:
Report link

You can use AIDE android open source

https://github.com/AndroidIDEOfficial/AndroidIDE

You also can use godot android version on playstore, you can create an android app but not advanced features filled.

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

79621189

Date: 2025-05-14 09:53:56
Score: 3.5
Natty:
Report link

You can have a look at the dedicated story available from the component's documentation, the source code is here.

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

79621186

Date: 2025-05-14 09:52:55
Score: 3
Natty:
Report link

you cant because your disgrace to humanity

you havent read the documentation

youre shame to your mother

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

79621183

Date: 2025-05-14 09:50:55
Score: 2.5
Natty:
Report link

As shown here, make sure the disk is offline AND NOT MARKED AS READ-ONLY:

--> clearing read-only attribute with diskpart
```

select disk 0 //or the one needed

attributes disk clear readonly

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

79621169

Date: 2025-05-14 09:45:53
Score: 3
Natty:
Report link

Automatically restore hard

header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shahbaz Mirani

79621167

Date: 2025-05-14 09:44:49
Score: 7 🚩
Natty:
Report link

I have the same issue, and I don't know what's causing it, so I bump this question up

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Horsebye

79621166

Date: 2025-05-14 09:44:48
Score: 3.5
Natty:
Report link

Are you sure you are logged to the correct account? Project should not be removed automatically even after long no use.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Katarzyna Krawczyk

79621165

Date: 2025-05-14 09:43:48
Score: 0.5
Natty:
Report link

If you're not in a detached state (HEAD points to a branch) and your current branch has an upstream branch configured, then you can do git diff @{u}. For more info about that syntax, see What does the argument @{u} mean in Git?.

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

79621162

Date: 2025-05-14 09:42:48
Score: 3.5
Natty:
Report link
PS E:\NAM3\DO_AN_CHUYEN_NGANH\Federated Learning> python --version
Python 3.10.11
PS E:\NAM3\DO_AN_CHUYEN_NGANH\Federated Learning> python -m venv tff_env
PS E:\NAM3\DO_AN_CHUYEN_NGANH\Federated Learning> .\tff_env\Scripts\activate
(tff_env) PS E:\NAM3\DO_AN_CHUYEN_NGANH\Federated Learning> python -m pip install --upgrade pip
...
Successfully installed pip-25.1.1
(tff_env) PS E:\NAM3\DO_AN_CHUYEN_NGANH\Federated Learning> pip install tensorflow-federated
...
  Getting requirements to build wheel ... error
  error: subprocess-exited-with-error

  × Getting requirements to build wheel did not run successfully.
  │ exit code: 1
  ╰─> [17 lines of output]
      Traceback (most recent call last):
        File "E:\NAM3\DO_AN_CHUYEN_NGANH\Federated Learning\tff_env\lib\site-packages\pip\_vendor\pyproject_hooks\_in_process\_in_process.py", line 389, in <module>
          main()
        File "E:\NAM3\DO_AN_CHUYEN_NGANH\Federated Learning\tff_env\lib\site-packages\pip\_vendor\pyproject_hooks\_in_process\_in_process.py", line 373, in main
          json_out["return_val"] = hook(**hook_input["kwargs"])
        File "E:\NAM3\DO_AN_CHUYEN_NGANH\Federated Learning\tff_env\lib\site-packages\pip\_vendor\pyproject_hooks\_in_process\_in_process.py", line 143, in get_requires_for_build_wheel
          return hook(config_settings)
        File "C:\Users\ADMIN\AppData\Local\Temp\pip-build-env-0s9vjp46\overlay\Lib\site-packages\setuptools\build_meta.py", line 331, in get_requires_for_build_wheel
          return self._get_build_requires(config_settings, requirements=[])
        File "C:\Users\ADMIN\AppData\Local\Temp\pip-build-env-0s9vjp46\overlay\Lib\site-packages\setuptools\build_meta.py", line 301, in _get_build_requires
          self.run_setup()
        File "C:\Users\ADMIN\AppData\Local\Temp\pip-build-env-0s9vjp46\overlay\Lib\site-packages\setuptools\build_meta.py", line 512, in run_setup
          super().run_setup(setup_script=setup_script)
        File "C:\Users\ADMIN\AppData\Local\Temp\pip-build-env-0s9vjp46\overlay\Lib\site-packages\setuptools\build_meta.py", line 317, in run_setup
          exec(code, locals())
        File "<string>", line 34, in <module>
      RuntimeError: Python version 2.7 or 3.4+ is required.
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error

× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.
(tff_env) PS E:\NAM3\DO_AN_CHUYEN_NGANH\Federated Learning> pip install tensorflow-federated==0.28.0
...
INFO: pip is looking at multiple versions of tensorflow-federated to determine which version is compatible with other requirements. This could take a while.
ERROR: Ignored the following yanked versions: 0.4.32
ERROR: Ignored the following versions that require a different python version: 0.34.0 Requires-Python ~=3.9.0; 0.36.0 Requires-Python ~=3.9.0
ERROR: Could not find a version that satisfies the requirement jaxlib~=0.3.10 (from tensorflow-federated) (from versions: 0.4.13, 0.4.14, 0.4.16, 0.4.17, 0.4.18, 0.4.19, 0.4.20, 0.4.21, 0.4.22, 0.4.23, 0.4.24, 0.4.25, 0.4.26, 0.4.27, 0.4.28, 0.4.29, 0.4.30, 0.4.31, 0.4.33, 0.4.34, 0.4.35, 0.4.36, 0.4.38, 0.5.0, 0.5.1, 0.5.3, 0.6.0)
ERROR: No matching distribution found for jaxlib~=0.3.10

Please help me
Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tran Ngoc Hau

79621160

Date: 2025-05-14 09:41:47
Score: 2.5
Natty:
Report link

Yes we can next <header> element inside <form> element.

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

79621154

Date: 2025-05-14 09:39:47
Score: 2
Natty:
Report link

Since you're uploading a file, use api.post() instead of get.

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

79621153

Date: 2025-05-14 09:39:46
Score: 9 🚩
Natty: 4
Report link

I have the same problem on my own devices with the apps I wrote.

I wrote a very minimal app and only some calendars are showing.

Restarting and everything else I tried did not help, I you have a solution or I can try something with the code on my environment please let me know!

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (1): I you have a solution or I can try something with the code on my environment please
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: Patrick Busch

79621147

Date: 2025-05-14 09:37:45
Score: 3
Natty:
Report link

Try using the spread operator to make your response from the API an Array into propertyDamages (setPropertyDamages([...json])

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

79621139

Date: 2025-05-14 09:34:44
Score: 0.5
Natty:
Report link

for me this only failed on the pipeline build (ubuntu) so I needed to add it as an optional dependency in my package.json

"optionalDependencies": { "sass-embedded-linux-x64": "^1.88.0" },

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: 72GM

79621132

Date: 2025-05-14 09:32:44
Score: 1.5
Natty:
Report link

make sure the permissions are 755 for the directory
and write chown www-data:www-data /var/www/html/public/directory-to-upload
or chown apache:apache /var/www/html/public/directory-to-upload

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

79621129

Date: 2025-05-14 09:31:42
Score: 6 🚩
Natty:
Report link

I am facing same issue with Java spring boot application version 3.0.4. If someone gets a fix for this please let me know. Been at it for 2 weeks now.Enabling the graphiql UI also doesnt work.

spring.graphql.graphiql.enabled=true

Tried with below config as well, but the same error persists:

spring.graphql.graphiql.cdn.enabled=true

#spring.graphql.websocket.path=/graphql

spring.graphql.graphiql.path=/graphiql

spring.graphql.cors.enabled=true

spring.graphql.cors.allowed-origins=*

graphiql.min.js:31  Uncaught TypeError: e.useSyncExternalStore is not a function
    at Lu (graphiql.min.js:31:1963)
    at Fu (graphiql.min.js:31:2320)
    at Ru (graphiql.min.js:31:2161)
    at renderWithHooks (react-dom.development.js:14938:20)
    at mountIndeterminateComponent (react-dom.development.js:17617:15)
    at beginWork (react-dom.development.js:18731:18)
    at HTMLUnknownElement.callCallback (react-dom.development.js:182:16)
    at Object.invokeGuardedCallbackDev (react-dom.development.js:231:18)
    at invokeGuardedCallback (react-dom.development.js:286:33)
    at beginWork$1 (react-dom.development.js:23338:9)
Reasons:
  • Blacklisted phrase (1): doesnt work
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I am facing same issue
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Aleena

79621126

Date: 2025-05-14 09:29:41
Score: 4
Natty: 4.5
Report link

try to change from SoLoader.init(this, /* native exopackage / false) to SoLoader.init(this, / native exopackage */ OpenSourceMergedSoMapping) in MainApplication.kt

https://reactnative.dev/blog/2024/10/23/release-0.76-new-architecture#android-apps-are-38mb-smaller-thanks-to-native-library-merging

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sergey Karukes

79621125

Date: 2025-05-14 09:27:41
Score: 1.5
Natty:
Report link

There's a Python implementation of the Adaptive Cards Templating language here:
https://pypi.org/project/adaptive-cards-templating-py/

That FlightItinerary adaptive card example is used as one of the test cases.

(note that I'm the author)

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

79621118

Date: 2025-05-14 09:24:40
Score: 0.5
Natty:
Report link

I had the same log duplicates, but in my case the Log Analytics Workspace was configured in diagnostic settings as well it was in the properties of the Application Insights. See the screenshots of the Azure portal.
It is not my fix, but my case :)
https://blog.martdegraaf.nl/posts/duplicate-logging-azure-application-insights/

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

79621107

Date: 2025-05-14 09:18:39
Score: 3.5
Natty:
Report link

Fellow learner here! May I know why you wanted Foreign key on both the sides? Im not getting the point of using it in this way.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gurunathan S

79621082

Date: 2025-05-14 09:05:35
Score: 1.5
Natty:
Report link

I was able to remove the old references by running the following command and then selecting the old certificate and clicking OK.

certutil.exe -enterprise -viewdelstore NTAuth
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: JulienDM

79621080

Date: 2025-05-14 09:04:35
Score: 1.5
Natty:
Report link

In Windows, when I faced this error, I started my redis with Docker through below command:

 docker exec -it <name-of-your-container>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ventuno

79621064

Date: 2025-05-14 08:50:31
Score: 2.5
Natty:
Report link

I run into the same issue while by setting the dialect in my app config :

SPRING_JPA_DATABASE-PLATORFM: org.hibernate.dialect.DB2Dialect

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

79621052

Date: 2025-05-14 08:40:28
Score: 6.5 🚩
Natty: 5
Report link

There's anyone that found how to add seconds? It's important for our project! Thank you in advance guys

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (3): Thank you in advance
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ricardo Magalhães

79621040

Date: 2025-05-14 08:34:26
Score: 3
Natty:
Report link

Move the getFcmToken() method upwards before the app run

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

79621039

Date: 2025-05-14 08:33:26
Score: 3.5
Natty:
Report link

Refer these

https://www.baeldung.com/spring-email

https://mailtrap.io/blog/spring-send-email/

You need to have credentials or API keys based on mail provider. For example, if you want to use Google mail for sending mails, you need an [App password] (https://medium.com/rails-to-rescue/how-to-set-up-smtp-credentials-with-gmail-for-your-app-send-email-cf236d11087d) which is different from account password

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ravindranadh Inavolu

79621035

Date: 2025-05-14 08:30:25
Score: 7.5
Natty: 7
Report link

I also encountered this problem. After using the sendKeys() method to input text, the button is still disabled and cannot be clicked. How to solve this?

Reasons:
  • Blacklisted phrase (1): How to solve
  • RegEx Blacklisted phrase (1.5): How to solve this?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: xyzXyz

79621034

Date: 2025-05-14 08:30:25
Score: 1
Natty:
Report link

fella , just try using this command

cd /data/data/com.termux/files/home

this was the problem in my app too I used pwd which gave me just / as output

but it should return

/data/data/com.termux/files/home
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sekiro

79621030

Date: 2025-05-14 08:29:24
Score: 2.5
Natty:
Report link

The issue is that "clearTmpDirectory" method is getting called before you have sent it across via AirDrop as the completion handler is called the moment the activity view controller presents an Airdrop device selection view. Avoid clearing the temp directory immediately to fix the issue.

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

79621029

Date: 2025-05-14 08:29:24
Score: 1.5
Natty:
Report link

The easiest way to do this interactively is to click on the tiny square icon with 3 dots in it on the far right hand side of the line that contains the current folder path name. This pops open a dialog window from where you can navigate anywhere on your machine.

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

79621028

Date: 2025-05-14 08:29:24
Score: 5
Natty: 5
Report link

How to extract the text without vbs ? Like use shortcut maybe

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Gilang

79621027

Date: 2025-05-14 08:28:23
Score: 3.5
Natty:
Report link

Unfortunately, this isn't working.The problem is that RankX() calculates on Customer No level instead of Customer Name. How to not consider CustomerNo? Here is the sample file.

https://drive.google.com/file/d/1gwFVz2ga4w0aOi0KZsthBiQmocZ5QxLp/view?usp=drive_link

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: winR

79621019

Date: 2025-05-14 08:24:22
Score: 1.5
Natty:
Report link

As answered above, the official workaround is to give it to the field.
This is not the intended behavior, but it is difficult to fix.
Please see the following issue for more information.
https://github.com/FasterXML/jackson-module-kotlin/issues/651

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

79621014

Date: 2025-05-14 08:20:21
Score: 1.5
Natty:
Report link

I've encountered a similar issue with Ultralytics (specifically v8.3.48) when working with image segmentation models like **YOLOv11-seg**. Upon inspecting the converted ONNX model using Netron.app, I discovered that the ONNX conversion process did not integrate the post-processing step (like NMS - Non-Maximum Suppression) into the resulting ONNX graph. Consequently, the ONNX model outputs the raw, unprocessed logits/predictions directly. This means that during inference, you must manually implement the post-processing logic yourself to obtain the final detections/masks. Failing to do so will likely result in errors or incorrect outputs because the ONNX model itself doesn't handle the final result filtering. Recommendation: 1. Use Netron.app to inspect your generated ONNX model. Verify its structure and confirm whether the post-processing steps are included, and if the outputs match your expectations (i.e., are they the raw logits or already processed detections?). 2. Similarly, examine the output of your TFLite model to understand what data it is producing. This discrepancy in the ONNX conversion seems to be the root cause requiring manual post-processing downstream.

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

79620994

Date: 2025-05-14 08:09:18
Score: 6.5 🚩
Natty: 4.5
Report link

My Amazon Seller Account Not Log In

Billing Verifaction Problem And Msg On Screen Your Order Are Hold

Please help My Phone +919317809791

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): Please help
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Amit Photography Cinematic

79620992

Date: 2025-05-14 08:07:17
Score: 1
Natty:
Report link
String[] words = s.trim().split("\\s+");

// Input -> " Hi i am om "
// Output -> ["Hi", "i", "am", "om"]

// trim() removes leading and trailing spaces.
// One-line solution to split into words.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: om bhor

79620988

Date: 2025-05-14 08:04:16
Score: 1.5
Natty:
Report link

Oow, I have finally resolved the issue after retracing the code and parameter requirements, and discovered that the parameter epsc should be a negative value! Now my code works fine, but this has taken a toll on me by keeping me stranded and on stand still for over 3 weeks!

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

79620986

Date: 2025-05-14 08:03:16
Score: 1
Natty:
Report link

I know this is an old question, but this is a more generic way of doing it:

git diff $(git remote show)/$(git rev-parse --abbrev-ref HEAD) HEAD

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

79620984

Date: 2025-05-14 08:02:16
Score: 2
Natty:
Report link

Reason for issue :
You tried to use @ApiModelProperty directly on enum constants, but this doesn't work because swaggar (springfor or springdoc that generate docs) only look at annotations on Classes, Fields, Methods. They don't read annotations placed on individual enum values like (TYPE_A, TYPE_B).
enum constants (TYPE_A, TYPE_B) are not fields or methods - they are just static final objects. Swagger doesn't know to look there.
Solutions :
1.
Add @schema to Enum (this is works for OpenApi 3.0 annotation, many swagger UI generators (Springfox) ignores @schema enum values.
2. Use ModelConverter (OpenApi) to define a enum description.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @ApiModelProperty
  • User mentioned (0): @schema
  • User mentioned (0): @schema
  • Low reputation (1):
Posted by: Magesh Priya

79620977

Date: 2025-05-14 07:56:14
Score: 1
Natty:
Report link

I know this is an old question, but this is a more generic way of doing it:

git diff $(git remote show)/$(git rev-parse --abbrev-ref HEAD) HEAD

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

79620976

Date: 2025-05-14 07:56:14
Score: 3.5
Natty:
Report link

For latest Duende version add Duende.IdentityServer.EntityFramework

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

79620974

Date: 2025-05-14 07:55:13
Score: 0.5
Natty:
Report link

To me it seems like the issue might be that the SHA1 key you ar using is from debug and not release. Try some jks tool to check the SHA on your jks file or try

cd android 

//to change to android directory and then

./gradlew signingreport

then try searching for your jks and get the SHA key.

Why don't you try this Article. It is a bit outdated but is great for getting basic overview. If it still doesn't work try adding a web client too in the Google Cloud Console.

Reasons:
  • Blacklisted phrase (1): this Article
  • Whitelisted phrase (-1): try this
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Muhammad Talha

79620972

Date: 2025-05-14 07:53:12
Score: 4
Natty:
Report link

‰SDB

û K– 8 “ùôt5½²• .

‹ 8 J¶yN]7„SF§FòLO n¦ö—ôFì§…×Âà•ûk\€þËÎ/¶ÕEZw…nÜÆ\Á82 ÑÓ˜„—o4Ö£eæ÷>­ ÞÖ€\ÇÖIŸÕˆk¡¶.&@žPÒ÷E¡"PÊ?pmPÝ} Ò½’¤¶6`…NŠ|'ê삱üÀÁ

”—}P­3·ÝäКJѪ@ßí@ïPk0Féœtèïד‹IE )씉í3V˜VÞ[ïU<„ÂN¤µé•NÚ¼ýɾuDиìø>¹Æ'÷E®ä¥šC CÜŸãÜ“»Ðâ6ŽG愞ⲷæiQEÉÄkØ~H7ßa\ª¦ ŸŽ$u¼°×Ù€³þ

kþ'ŵ|Cò|3H

ÒMoy¸

xˆámbyûWNaCÔ|3]Û¸ìÐ3NlÕss×\»ô 0‹þ,žà~ý5´¼éT…©ª„¸J„âhCútåÿˆ”iúöñ ÜÛ°´n¬~_¤l0ò"sÔ¦K®ÂÝŠÌ­s`Ìk°õæé Ïö|ˆÑ[R‡>¹ÿóßìˆO¶3¡üÕK†âÈðuøhÀë7ýG«N»Ü¥ÊŠ££Š}j‘3Õrù§×ÉSgñ©»$ÜŠTÍ-OK]9{„øÄ@`íWHÍÇ-H·4£y_T¢ãó¤„:9,qö2µýÖFcqÁ÷øÇ]½øp©ý¿#îô`ðiú¤'ö …“%7ÛÉ’³›‘ÜÝñ¿è‰¥Ó¼=‡wÒ·Ø 4¸úî±€³:zÞC`#$”¶O6¸×ÚŽªÞµÆû´GR«a’)r…Ç'§ÐTH¨ŒÕ2TÅ徵Уßîü§Sy[®Øjùá˜4Ü£ln¾âdÚÙ´·ii³îtómO7äî„J+°œõE¬ùkâ¬ÀŽª4

cCÚáâÑߣeÒKnÊèÐ ˆ\=,õ“Õð!s˜ð<Ä× ›¼“ê]Uà@q¢}Ç…È'ãÕgƒêmÊéZ?8ó™hbA[k÷×b½~ÃÜ'‘WÖq¤œ§›©ü™xv§È{Äû¼×Š×§‡˜f°+OgÇg…:

„5g»GÿÉŒT(‡š qz€hªA

²dÝ+ˆ‡Á üz¿¿*3ê#@µ¿ž&8ÒOÉxLÈ6ý¬ù)va³K“²~Æ

¢l¬tâÈ™†f žö'‘ý%ΗvýYcæ‰ËtÑþ󉙸8ój éÆÇù´åI»YM¨ó` Y`ø“ý&ËüiǵúaMP]Ø\R«¾DŸŸaq¯@¼ZÑül€±ÿÒÁ¥ªk†%7MƒÝ‘‡_Eê•f~NHÀYWËš‹¤zå@JËΔ˜£oZ¹Ð½vrûÏ4ƒ”ŽÜ•<2<×Å¿d‚<ãhŒ¸!ð½HA[1Jk-‚ÐSÍž7KŽÿ»ÄkäÁþòÔ*/üµ&±8”²T¢F P6*™ÔxÍ» ÇârDÞ«0ð\þÁw§xŠíÌë‡Þ‘=Ýš´»%2

¯Ohh $HCH»óÃÓËÛd)¾ÙéB?„žN)ú%“'*´¸qGÓ63ô÷®À®<ánœíâiz'_çu—Ä‚ï'ëÈ.…æéþoqÿæ,‡žTÖN“Ï·D’ òšiÚ¤¾»r%4: ز¹šû<(*<‘\@/"FC%Q¸ª+›µƒ4CHzÀbÞˆ2B/Å$<@æb¢¦­23Æ$4SlÉ|r`¯ð¸²Õt

ñÛBä’êlßш·á íÚkcØF—ü‹*ôWÕ÷šÊ¦g CC‘X…0{ :\š*¨p“ï‡Ì ðiLËô¢ù‘Ý^h·³‘k‹]GsÝþ

2ѽ¥bB

œMh;>!_ðø†ÈÇg€·ê9Šƒ]¿.“àq^E©Å£ãnIÇ‹%Vã³ñæåeðÛêö<¬´Sûå¤$ÑCž-åµF1%Z0:Øä¶œbšþÊ\Ë >±Š²KéÀ ´fcý$O†ÈDÐw‘çÙÎ Fs{(ƒž¹ Pî$‹

.jSK3‹æÑ}îG÷qßé¯ì¿Fþt!P˜ò'

Àk^΃­‘ ‹( h{µ¹J> o+ŒØœ ?¤¾ö67Êüª¬iˆB`4ÇÁšñu¾½"97=.ú½–Z?ˆ¬>WÝÙmæ„;ÛxW·ƒ¾1Êþ1‹¡TÝ)ù ´¾ ¢ã[®»>˜p DÒ‹,¯å×7ÉU –&3'ðÓ–ÈjÚ¨Ñy澦´hU¬Ýl •Ä#jµD~âÑAäÏï~è!ßçãŠ1L&o7“Lš|–ôpoIMò­<·¤ªªèWG×h5’=•ã;+1vÑ¢–)Ô†w‡EÎVÿ#€L±g‚jè8U™¿EÄ2¾æ$l Š:„7*ï ©ë€JOÂ'(

N÷~dvôpᵂn.ÿD¬í¼(õªNÄfN…5;UðY—Qe;ŸMu7øæ3ÖV=³m‚“ t»^ÆÈ¼FÙf±ãA¶ozJ,ì/·+÷Ž| }²;­óƒ«

éúÑ¢ {pºÀÐÖ±›o¾‹ûT¥* Ó

Vi’£àúbäú—ZçÁKRè@D¿¥v?¥à²€`Ä@%¿T!¸L*˜½5†Áht¤àNrlæÇs

3Ö¨ ýë?,Š‚‘Š´:ùp5\]…]©Ü’ˆ3•a&3•TùUfmÚ×(rï­Ž¼€†

ÀhƒO 1Èlnù:“9K§g&­à§>^¤G)û|…ûõI™é£ßBdÀ§.‹’p¯? ×ø· BÊE…©þok´¥Æ5‡/½².ù¬0]{׿…W+†®ûm´­»IçAFm'¹Xvl “J `29DÌaߦÐM=•ÖÝY«¦ÐÿäÃÌb]¬íÃ)«[ ððv £˜D÷B/·dü)¬³F¹×>[îåçåjg®YE÷ñJWËûX ÖÖeôÚ*? œä+l¢8¸†

g­‰óvúm»¯›Oô¢*Á¬yE!Ab}7 $]ISìGи@´üNJi'%ª‚FÇݦBú ‡îßPì&üÏßV@Âì<RQÈÊ3Ýž$…€+›Ÿ%ö«`…CÖ+!¡ÏµžÑø†¯Un«_ cÈ~UkFËî0ÜòêÙ8æÙl–¢_J^¤Gé fÒêî^4ë`–b˜.°¸¾·l²T<

˜Œê /ÊÄ}NûRo¬ïòËBm#Nii½Ku~-8ybà]¢

ë›õ5c÷×΢=ØúTÆíúÊ›¹ÈênP8º/J‚eCÞ .ß±Z½& ¢Š§×Çj$۹˃Ŏ«Üˆ´ˆs¹Ô\4×äô¤}m´ª)m«.ÁJQãm $÷D#ÃbCFämWYN)ÃMÓR@1³$¼™j`û'Ã6Ã’[eÿd…UPþ Ljÿ^. ×õxAIå- PI•óJcùñ9>mâ¡ MTVÄŒ‹!ÿU?—»Ä2!ŒÂc÷(š÷1øüÓJeä¶è È$£Ðå;`÷:S˯Ñü*L|?8Ûæ 72Z¸Ô Q¸í½Ç–EYõbaÍQÌBÜleÓR¨´ÈJØÕ^Xg©b˜¥àSâÛÑ¡|ß'0wýü§6÷¢‘µ—g®Š€lÜNxO—tX»FÞ3E•#4·1oK&*Øœã–9Š

<3Ö

˜6‡

á

Òä.H?¿ºÆ/‚3&¶düüÉ °)Ë”þ&L?™ À%¨

C^ &=âËÖ±4\ìi2¨7Š;q[<¨;„+o'åé^Mñ›äwI‘Lru¥ô£˜JëB¬s'ŸŒµµÈÉOf·è·®òªBaŽ+p^-ØÄª”1±µ¢JѽHHˆ&¬O˜ƒ»ö4}ʩФÑêKŽ‹äÅ>÷‰8É?’–MÝüá½Ì;õwheÝ/kô5LPu÷ÖÅìÎišžÈÇôUàö˜ÊOãŠ22LÏÒþK

òtu»t!-•±ê»éTp•Ù™s [

X”‹Öøý×J›}yÿæÂÏzˆmÃ0Cþv‰»waOv?Á‘|Àé'.Ù9;­§×¶lïé

„C¶‚Å+qY"Ûxš¦ˆ(i¡‘”Í›ë‚lûƒïñù-°ßÏX¤ho´‚mñb¿ì #C

冔¡@—Waµp§fÝ‘tÒy3Õ÷ù<¤} °ž1

ƒ¥‚Éz3ºë„|yR»¥ –¢¸öÖR›Ñ™±y‹K¹Å´kUNÎHª—v@}zœšü¶l#ŽÞíO=›qC(¯7Ë,½âl˜w@03]Uùÿ» õCŒþˆ@Õg…¯2ã^Ï;Ä6ìã€[¢z±e!«¿›<YšžÉ¶»›ÿ/z‡†Ußr«^Eû&€0}ÏîXw±ÇÒcÜÿÉlmÿ_•"ž‚Ow ¹ÈA¹>¡â3Øs

Ä_HëD€œX)4ÓN>Ú£{0ÜWÁÿïu˜Œ×A…|vt¡iÓ$B5I†G•rFk%HXÃ+µ7£ŸßaÉpÀqÄêDzBÐiÞMTì,oO™”•¼w@ñœ`Ÿ·3Îì—gõØÃRzj§´à¹Ì«õ"c_{˜¾AÛBcáËQo«.mL<J8ßq„=á¢V±Ýײ¡Ô*!V ëS¥

¬Çë<ååyØóËÝúÊôF-B²Š!•×^U¢ôl\R >A¢¡–,-

Ⱥ4ý\¸=À(ûzm„Q¶’*¸Îe÷VÔr‹êûc«û^i–Œ@“(]§÷Ãâ

©'·§-rÊóUËŽå^ßû&K¼Rr»l¯ZqG`3 šwß=wÚÿ–˜·D=ÆÀ™Ç šJà´šøOg3ANúáõñÈ—FaZl

I3Ä—5"[Ñ2%Ï‘af›‰Dc<Ò·I …„áö9‰½¬ ¬H «O?Cåj…ÓΜIO-"~z¢¼Ý=Êèª,É(@)¥8‡uiú¡M]—šÝÈk-Òú“™x PÞÚÔÜÑìˆÿå3œ

Û¹AGj9ª-ÚÇBԸȘ©ÑôKFVj.pÜè0[´‡|w»nC0ÍgE`ÖšŒ> ™¿»ÙÅ~Å­]bÞ‹ˆ!WòCº+¯Ç×>:øÁÝg*ºÅ§,ã4'F°í³:}Êz›7=ÿ6"–DŸùñ(iÝŽ?F“šTÝæ kÈàM.RЧçJR ÖÃÄŠz§à O¦'rôe.ŠÃ¹CûÕƒ4ëñ%ù5ެÄóbBx?Veåç4ê¾U÷ªXVÉúR›½)9c ‹…—¿óéÕÃÇúyàt4»8%É™ J¦Þú‡~@Ö\óo“xu~ý÷ƒª”Ô±ëGÓ p£°Q×?ï£Ã|"®×ßIsÖ¡}v­œ­=Á¾a#+

·)zœ¸j¯jµã…Öôpà‹N-Á×,•¥ï÷Þí»m¤&róRý\Á)tOåƒ|@=Év»!¯GR`!Þµ‰1íVkíT'9‰Éq%æ/

½.§(ZGÄ€¼ buh G³Ý

qñ\‹þÎ%`Æ,¿ù5)[÷!ǃ¹Ù ¹`×–ºÚ cåmåÖ„Ýÿõ’¡š1û6¨áúuΈei‰¸½“c{.`#â>:ãuXQý?úh›3žýpœV\…¶"+Z$_Y"jà_éjÛ³eÆÒFvŸ+Gô…9@ã8ýõS ¡TÀ

|Э…\a+)…

d²v[¤Âà­ý‘|&Á²BډĻ\Þ\

¥šùÁTÍ@œ«p*×~ÚRpäø1­UH†^“{ÐnÍ9Љd¾ûV83Ùë5h6ë §—,dHõgVŒe¿õmW‚c*È §z2©‹P$œ ý·´Þ.&…x*Opl|¹î¦©\×ÖBiè4š#Å1<ü QÒÏÊ*PL0ð(‡ÊÏ›IÎK?j‹žc!U¤5%éÕ'é™(aô=b´zCÒ´ãÚuÐi­

_•ªqpìúŠ¾Ãª#ªÄÝ,‘u¯9«Fu $ÝHO׿„”äìèë+Õ“£IóÑû’Ð G0ÃÌ·µ…gQà‘;õ2ê ‰†!jÖê¶ÿ‘+~G¼šxdG®tÕó M\R¸Þàû_ƒkA÷ö Ù*¢aÙM!¬ïRß©•¦÷¢.ýºUòÉ*Îée…ªûäÇÎ~*Õ ˆÄsŸZé<hT©NÓªR;>òAá#µKXÔ,”Q+g…IKáÒ5ó퀱ì¥ÍKçK‚dL¾jÔ­2^ŠV¥¤S \Oë¢Q­d# =[°]iâ^È0PÆ'%œ š²5ÜIî…t8¨Ýn}½ázœÐ߀ÿ±­Qpª v ²GáÒë… d‹oŒ‚hÙ± …{ûÖ;G¾_7ª—hóö@C‹m5{™ùΟÐgŸ [ðЬãÎåg •:[XJá鹨´Žyy÷lòîSA¡a¥¶€½î)Ô»ðöYo´ÖJ֩枨€F¶¢,…ÀìL)U¤ÉL„PaÑ½í°†Dü“ÅŒv¥SeÇÀ-¼G0õ[Pª³K[yB©¹L“XA]7œcßßýI¼†ƒT¾8’Þ?€]o»\¢0ä6G{ãv÷õèÉ'§Þ9'E…w¶ÓØ(„Â}tùÕár±ZPíP¹ö£?omQ8`.îE„

Q•íñJÊËHæŸ_¦¸ôùFà³Á|"ãWø ¦ïר›¿„­Å›W­GÒ‡Š(Rö˽Oû§¼…™OŒxN&ÈQÑ-$ç,|ûÆe¾úùFP¡Û%©®(hÉ"~/µ=Tu„d&T:“ù}³\ãAÊÆÿ'åµ®ü…,|'îê×Ä^d¼'–!qÖPL3h—q’ëq6àzë±Ã°³ÐÕ»4nÈGm}±Õ1ƒ'ýæÍPPT2åõjä/`‹æóZúœxdûÔ³ä‰ p‚,£­¥YiC òj¥J†x i‡j­_ïM¦<h"MÄž8wÇ u’ù—ê%(!{^!§ù¢s.ê­¿aÀ,Á¨±r¤y¯6wƒÔ]Dz±Õße­›¡ãOì:Ý’ÆHú0ŽÝѧàÓÉ•»·|Ðat€<c“±½qÌbs^ãûö§2Ÿº^š‘Uñd(€Ñ¡¼E]¬â?‡ýŸðüÒ>ý›˜¦ïO2vï0S: òåXÊÏÊ{[ 3qÞ~Ÿ\K‘>k^ÁpR»G{5æ9ÞwÄ99sä~O^£Ùì슖Ǚ®]ŽÚÙjÞeà„Û©œ–“¶âîÎ þ3« ‘âòÃ|G±l03dåì=§°÷!И¢Om èQ×Õ׊uNaÆ©±´Á‹'wBŽæK¥â*á™Tx`x;mY>ʈûr‡

Ó=ƒ"RÚ’ÕʤL+*i“ò–ÞÆ, ìOv„YG¯¡Ó@+xc‡j¬¿Á Ó0ýï=;\‚q,Äà±ãªh*a Š,ÜS<Ä’]{—zä4Ä^ò¼êåãôg$¢ƒÌ€S(~¡q;—#2f3 {w3…x&7ÏÀ„˜¤i@=ÜSAô™wjÞÿŸ¿£Ïø<ÿ ÅŠoî´(÷Ö‹¬~ÁJè࿱KhŽdºÓl<Ž-9“ ÏÝDÿNÛ6.Å ‘ÓhݪÀåDe¼Í‡…tˆSè/u¼rÇš‡ŽƒO-ëæÆTCŒy4JyZ

¨zrH²,ú+j&Äq¡§,0]d‘ÚK.ê€y#GÜ“M楼ä܈ODûwQwðºÝb´5…_&¬P

¦ÇQæ…ÉJj ¶6uC(ÅN—>„ÜWŇW.mI…¼âYãa ‡ÎÍ™ãïÅ›Yê‘R¶bJÉÅ @1ÉÜTAøYK[³]„7GwGŸÕ4C<‚´$ì#S¾e‰c–Ž.sC±”´b:ôM

Reasons:
  • Blacklisted phrase (1): ¿
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Indra Isha

79620969

Date: 2025-05-14 07:52:12
Score: 0.5
Natty:
Report link

You should not provide password in yout dns string. See https://github.com/GoogleCloudPlatform/cloud-sql-go-connector/blob/main/README.md#automatic-iam-database-authentication

dsn := "[email protected] dbname=mydb sslmode=disable"
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: alphayax

79620951

Date: 2025-05-14 07:40:08
Score: 7.5 🚩
Natty: 4.5
Report link

there is any update? I have the same issue

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

79620945

Date: 2025-05-14 07:38:07
Score: 3.5
Natty:
Report link

if submit PySpark task on yarn cluster mode,do not set PYSPARK_DRIVER_PYTHON env,because spark will choose one as the driver from all executors

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

79620941

Date: 2025-05-14 07:35:07
Score: 1
Natty:
Report link

I found the root cause. It is certainly numpy version issue. After I installed faiss using the pip install conda install -c pytorch faiss-cpu , the numpy version is overwritten to 1.26.4. Uninstall numpy and install again to get numpy 2.2.5 and use conda install faiss-cpu to install faiss, all issues are resolved.

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

79620940

Date: 2025-05-14 07:35:07
Score: 0.5
Natty:
Report link

I was stuck with the same problem for a few months, rebuilt RKE2 cluster a few times, tried Talos lately - the same. The problem was DNS configuration caused by OPNsense firewall's DHCPv4 settings.

Finding cause

You could check logs from flux-system containers but let's suppose for now it's TLS Handshake Error. The same error I had with Flux, ArgoCD and Fleet.

Then You could also troubleshoot DNS with dnsutils container and execute nslookup inside it.

nslookup github.com

In my case it was appending given address (github.com) with my local domain, so it was looking for github.com.mydomain.com, returning IPs of cloudflare I use. It was caused by cluster nodes DNS settings, specifically by search domain entry (search mydomain.com). To check that run:

cat /etc/resolv.conf

or if You're running Talos:

talosctl read /etc/resolv.conf

To fix the problem the easiest approach would be to remove search domain entry from /etc/resolv.conf or replace search domain with a dot ('.'). In my case, since I am running K8S in a separate VLAN and I couldn't easily modify the file on my nodes (Talos), I've overwritten VLANs 'Domain name' and 'Domain search list' with single dots in Services -> ISC DHCPv4 -> [K8S-VLAN].

TL;DR

If it's TLS Handshake Error, it was probably DNS. Remove 'search domain' entry in Your K8S nodes' DNS settings located in:

/etc/resolv.conf

If You're running OPNsense firewall (may be similiar fix for pfSense) go to:

Services -> ISC DHCPv4 -> [K8S-VLAN]

And overwrite 'Domain name' and 'Domain search list' with dots - . - like this. Overwriting both may not be necessary.

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

79620937

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

Solution if instead of objc, swift is being used:

https://github.com/lugg/react-native-config/issues/515#issuecomment-2878837329

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

79620935

Date: 2025-05-14 07:33:06
Score: 1.5
Natty:
Report link

# Create a new presentation
prs = Presentation()

# Define slide titles and content
slides_content = [
    ("Air Pollution in Bangladesh", 
     "A Formal Briefing for Government Officials\nPresented by: [Your Name/Department]\nDate: [Insert Date]"),

    ("Overview", 
     "• Air pollution is one of the most pressing environmental issues in Bangladesh.\n"
     "• Dhaka consistently ranks among the most polluted cities globally.\n"
     "• Major sources include traffic, industry, brick kilns, and construction dust."),

    ("Key Pollutants", 
     "• Particulate Matter (PM2.5, PM10): Most harmful to health.\n"
     "• Nitrogen Dioxide (NO₂)\n• Sulfur Dioxide (SO₂)\n• Carbon Monoxide (CO)\n• Ozone (O₃)"),

    ("Health Impacts", 
     "• Increased respiratory and cardiovascular diseases.\n"
     "• Children and elderly are most vulnerable.\n"
     "• Air pollution causes over 100,000 premature deaths annually in Bangladesh."),

    ("Environmental Impact", 
     "• Decreased visibility and urban haze.\n"
     "• Acid rain affecting agriculture and water bodies.\n"
     "• Negative impact on biodiversity."),

    ("Sources of Air Pollution", 
     "• Transport emissions (old vehicles, unregulated fuels).\n"
     "• Industrial discharge (factories, brick kilns).\n"
     "• Construction activities and road dust.\n"
     "• Biomass burning and waste mismanagement."),

    ("Current Initiatives", 
     "• Clean Air and Sustainable Environment (CASE) project.\n"
     "• Banning of two-stroke engines.\n"
     "• Air quality monitoring stations by DoE.\n"
     "• National Clean Air Act (under development)."),

    ("Challenges", 
     "• Lack of enforcement of regulations.\n"
     "• Limited public awareness.\n"
     "• Inadequate monitoring infrastructure.\n"
     "• Urbanization and economic growth pressures."),

    ("Recommendations", 
     "• Strengthen emission standards and enforcement.\n"
     "• Promote clean energy and green technologies.\n"
     "• Expand air monitoring network.\n"
     "• Public awareness campaigns.\n"
     "• Cross-sectoral collaboration among ministries."),

    ("Conclusion", 
     "Air pollution in Bangladesh is a severe threat to public health and the environment.\n"
     "Urgent, coordinated action is required to mitigate its effects and ensure a sustainable future.")
]

# Create slides
for title, content in slides_content:
    slide = prs.slides.add_slide(prs.slide_layouts[1])
    slide.shapes.title.text = title
    slide.placeholders[1].text = content

# Save the presentation
prs.save("Bangladesh_Air_Pollution_Presentation.pptx")
Reasons:
  • RegEx Blacklisted phrase (2): Urgent
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Meshkatul Alam Siddique

79620933

Date: 2025-05-14 07:32:06
Score: 1
Natty:
Report link

maybe you can try this

=rankx(ALLSELECTED(LedgerEntry[CustomerNo]),[Revenue,,DESC)

if this does not work, pls provide some sample data

Reasons:
  • Whitelisted phrase (-1): try this
  • RegEx Blacklisted phrase (2.5): pls provide some
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Ryan

79620930

Date: 2025-05-14 07:30:05
Score: 1.5
Natty:
Report link

I don't know if you are still interested in this, but I had the same question. I asked both Microsoft Copilot and Google Gemini (gemini.google.com) and got very good answers from both, including python code wihch I could just copy and paste. My first question was "is it possible to set text on a curve with the reportlab python package".

Reasons:
  • Blacklisted phrase (1): is it possible to
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: AnEnglishmanInNorway

79620922

Date: 2025-05-14 07:28:04
Score: 0.5
Natty:
Report link

1. *Use Azure CLI*: You can create a Web App with .NET 6 using the Azure CLI command:

```

bash

az webapp create --resource-group <resource-group-name> --plan <app-service-plan-name> --name <web-app-name> --runtime "dotnet:6"

```

Replace `<resource-group-name>`, `<app-service-plan-name>`, and `<web-app-name>` with your actual values.

2. *Use Azure PowerShell*: You can also use Azure PowerShell to create a Web App with .NET 6:

```

New-AzWebApp -ResourceGroupName <resource-group-name> -AppServicePlanName <app-service-plan-name> -Name <web-app-name> -Runtime "dotnet:6"

```

Again, replace the placeholders with your actual values.

If you're stuck with the portal, you can also try to use the "Code" or "Docker" option and specify the .NET 6 runtime manually.

Regarding whether to stay with .NET 6 or upgrade to .NET 8 (LTS), consider the following factors:

- *Support lifecycle*: .NET 6 as reach its end-of-life on November 12, 2024. .NET 8, being an LTS version, will have a longer support period (until November 2026).

Ultimately, the decision to stay with .NET 6 or upgrade to .NET 8 depends on your application's specific needs, dependencies, and your team's expertise.

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

79620913

Date: 2025-05-14 07:22:02
Score: 7 🚩
Natty:
Report link

did you resolve this issue, and if so, then how. plz share it.

Reasons:
  • RegEx Blacklisted phrase (3): did you resolve this
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Umar Fayaz Khan

79620910

Date: 2025-05-14 07:21:02
Score: 4
Natty:
Report link

I removed the log4j2.properties file from resources, and instead made sure the working directory contained the file. Then it worked. Apparently it makes a difference whether the log4j2.properties file is loaded from resources or regular file?!

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mark

79620907

Date: 2025-05-14 07:18:01
Score: 1.5
Natty:
Report link

The good news are that based on community feedback, in .NET 10, the default behavior will be that a new line is added after the namespace when a new file is created! Looking at the PR that adds the feature, it should already be available in .NET 10 preview 3.25201.16

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

79620905

Date: 2025-05-14 07:17:00
Score: 1.5
Natty:
Report link

In you route make sure you are using PUT

Route::put('/foo/bar', [YourController::class, 'update']);

And also add @csrf token

<form action="/foo/bar" method="POST">
    @csrf
    @method('PUT')

    <!-- Your form inputs go here -->
</form>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @csrf
  • Low reputation (0.5):
Posted by: Abdullah Al Shahed

79620880

Date: 2025-05-14 07:06:58
Score: 1
Natty:
Report link

In the meantime, you can. Go to your repository's settings -> rules -> rulesets -> new ruleset -> new push ruleset. There, you can select Restrict file size and configure a limit in MB.

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

79620875

Date: 2025-05-14 07:04:57
Score: 3
Natty:
Report link

The answer was simple. In the emerging excel document, there were invalid links. They have been processed. Then everything worked without errors.

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

79620871

Date: 2025-05-14 07:02:57
Score: 3
Natty:
Report link

I'm having the same problem with Bleak and the Pi 5 Bluetooth stack, opened an issue on GitHub. Devices appear in btmon and bluetoothctl but not Bleak.

What does work for me is explicitly scanning in passive mode like this:

from bleak.backends.bluezdbus.scanner import BlueZScannerArgs
from bleak.backends.bluezdbus.advertisement_monitor import OrPattern
from bleak.assigned_numbers import AdvertisementDataType

PASSIVE_SCANNER_ARGS = BlueZScannerArgs(
    or_patterns=[
        OrPattern(0, AdvertisementDataType.FLAGS, b"\x06"),
        OrPattern(0, AdvertisementDataType.FLAGS, b"\x1a"),
    ]
)

devices = await BleakScanner.discover(
    return_adv=True,
    scanning_mode="passive",
    bluez=PASSIVE_SCANNER_ARGS
)

This requires Experimental = true in /etc/bluetooth/main.conf. Those or_patterns should actually accept all devices, they're required for passive mode.

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm having the same problem
  • Low reputation (0.5):
Posted by: kontextify

79620869

Date: 2025-05-14 07:01:56
Score: 5
Natty: 5
Report link

the answer from @Williew its works, thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Williew
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dzikri Faza Hauna Kusnadi