79669694

Date: 2025-06-17 20:12:32
Score: 1.5
Natty:
Report link

Ensure you have YOLO-WORLD on your device and it is in dependencies installed.

Get your Custom Categories ready, It should always represent the object you want YOLO-WORLD to find.

Initialise the YOLO-WORLD model then provide your custom categories to the model while performing inference.

Try to process and visualise the results to gain access to detected objects alongside their categories and confidence score.

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

79669690

Date: 2025-06-17 20:08:31
Score: 3
Natty:
Report link

I haven't figured out what this error is, but I worked around the issue by manually creating the Package.StoreAssociation.xml file

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

79669674

Date: 2025-06-17 19:53:27
Score: 3
Natty:
Report link
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: Ibene Saoud

79669671

Date: 2025-06-17 19:48:26
Score: 3
Natty:
Report link

To process incoming MQTT messages, I used asyncio.run_coroutine_threadsafe(coro, loop) to push messages into an asyncio.Queue for subsequent processing. Pure asyncio.

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

79669667

Date: 2025-06-17 19:45:25
Score: 1
Natty:
Report link

For anyone else hitting this wall like I was, I created a Shader based video player in 8th wall, using aframe which is removing background using an alpha map in real time, but I was having ridiculous sorting issues on my end not resolving even though the logic was sound. Anyway, this solved the problem above. Thank you.

Explicitly setting the sortObjects to true is key.

Either

<A-scene renderer="sortObjects: true">

or

document.querySelector('a-scene').renderer.sortObjects = true

Cheers for the fix.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Cheers
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adrian

79669654

Date: 2025-06-17 19:22:19
Score: 2
Natty:
Report link

I also tried to find something like that in VS Code, but I didn't find any extension like this.
Finally, I have created an extension for this. You can try this extension

https://marketplace.visualstudio.com/items?itemName=shibbirweb.extra-cursor-caret-height

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Shibbir Ahmed

79669645

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

I also tried to find something like that in VS Code, but I didn't find any extension like this.
Finally, I have created an extension for this. You can try this extension

https://marketplace.visualstudio.com/items?itemName=shibbirweb.extra-cursor-caret-height

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Shibbir Ahmed

79669640

Date: 2025-06-17 19:08:16
Score: 0.5
Natty:
Report link

remove - https://www.googleapis.com/auth/aiplatform from scopes.

You are receiving this error either because your input OAuth2 scope name is invalid or it refers to a newer scope that is outside the domain of this legacy API.
This API was built at a time when the scope name format was not yet standardized. This is no longer the case and all valid scope names (both old and new) are catalogued at https://developers.google.com/identity/protocols/oauth2/scopes. Use that webpage to lookup (manually) the scope name associated with the API you are trying to call and use it to craft your OAuth2 request.
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chandan Reddy

79669634

Date: 2025-06-17 19:02:15
Score: 1.5
Natty:
Report link

My endpoint was wrong.

here is the correct endpoint url : https://docs.databricks.com/api/azure/account/workspaceassignment/update

this is the correct code

for row in joined_groups_workspace_account.collect():
    group_id = row.id
    group_name = row.displayName

    url = f"https://accounts.azuredatabricks.net/api/2.0/accounts/{databricks_account_id}/workspaces/{workspace_id}/permissionassignments/principals/{group_id}"
    payload = {
    "permissions": ["USER"]
    }

    response = requests.put(url, headers=account_headers, data=json.dumps(payload))

    if response.status_code == 200:
        print(f"✅ Group '{group_name}' added to workspace.")
    elif response.status_code == 409:
        print(f"⚠️ Group '{group_name}' already added to workspace.")
    else:
        print(f"❌ Failed to add group '{group_name}'. Status: {response.status_code}. Response: {response.text}")
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user25060582

79669624

Date: 2025-06-17 18:51:12
Score: 5.5
Natty:
Report link

Sorry this is minimally relevant to this thread, but I'm having trouble finding a more relevant one. For anyone experiencing a timeout error when using donwload.file, I think exiting any video call software (e.g., Zoom, Teams) also helps. I just troubleshooted this and wanted to throw it on stackoverflow somewhere for anyone with a related issue.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (2): I'm having trouble
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: mkb

79669616

Date: 2025-06-17 18:43:10
Score: 1
Natty:
Report link

You could have each subscriber "produce" a new message once it's received the original message and send that to a new SNS topic. From there, set up an SQS that subscribes to that SNS topic and have your application/script read from that SQS and check for all 3 messages from each of the subscriber's. Once it has all 3 messages, delete the messages, and then continue processing/generating metrics.

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

79669607

Date: 2025-06-17 18:33:07
Score: 1.5
Natty:
Report link

After couple of tries, it is a blunder from AWS side, okta expression language expects NULL instead of empty string ''.

String.join(":", isMemberOfGroupName("team_IT_Developers") ? 'team_IT_Developers' : NULL, isMemberOfGroupName("team_Finance") ? 'team_Finance' : NULL)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mohamed Aslam

79669606

Date: 2025-06-17 18:30:06
Score: 0.5
Natty:
Report link

Hey! The reason your command didn’t work is due to a few issues:

  1. %nxF is invalid — it should be %~nxF to get the filename and extension.

  2. rm isn’t a valid command in Windows CMD — use del instead.

  3. Quoting %Dir2%\* like "%Dir2%\*" breaks the wildcard — CMD won't expand it properly.

  4. You're using variables like %Dir1% inside the for loop, but CMD may not expand them correctly there.

Here’s a working version for CMD (replace <username> and <folder>):

for %F in (E:\*) do @if exist "D:\Users\<username>\<folder>\%~nxF" del "E:\%~nxF"

and if you want to test first:

for %F in (E:\*) do @if exist "D:\Users\<username>\<folder>\%~nxF" echo del "E:\%~nxF"

Let me know if you're running it from a batch file — the syntax changes slightly!

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

79669602

Date: 2025-06-17 18:29:06
Score: 0.5
Natty:
Report link

i solved this problem by fixing errors appearing in the console.

When i run the app using "run without debug" in vs code the app works correctly but using release mode a white screen apears. In the console i have an error "incorrect parent widget" related to Expanded() that should not be inside a row() or a stack(), after fixing this and compile the app to apk and install it in my phone, no white screen.

So at least fix the errors related to the Widgets building appearing in the console.

Reasons:
  • Whitelisted phrase (-2): i solved
  • RegEx Blacklisted phrase (1): i have an error
  • No code block (0.5):
  • Low reputation (1):
Posted by: MorsiAnisDz

79669598

Date: 2025-06-17 18:24:04
Score: 0.5
Natty:
Report link

Nowadays, Stripe API provides an Events V2 endpoint, so it's possible to list all events based on the "resource" ID, which is named "object_id".

Example:

$events = $stripe->v2->core->events->all([
  'object_id' => $customerId, // or $paymentIntentId, etc
]);

Reference: https://docs.stripe.com/api/v2/core/events/list

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

79669597

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

Nowadays, Stripe API provides an Events V2 endpoint, so it's possible to list all events based on the "resource" ID, which is named "object_id".

Example:

$events = $stripe->v2->core->events->all([
  'object_id' => $paymentIntentId, // or $customerId, etc
]);

Reference: https://docs.stripe.com/api/v2/core/events/list#v2_list_events-object_id

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

79669578

Date: 2025-06-17 18:09:00
Score: 1
Natty:
Report link
public class FlowLayoutSeperator extends JSeparator {
    private static final long serialVersionUID = 1L;

    public FlowLayoutSeperator() {
        super(SwingConstants.VERTICAL);
        var fm = this.getFontMetrics(getFont());
        this.setPreferredSize(new Dimension(3, fm.getHeight()));
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jeffty

79669569

Date: 2025-06-17 18:01:58
Score: 1.5
Natty:
Report link

Ah, too late three years later but as for others who is faced with this problem - nothing wrong with your code, you simply forgot to add credentials after OAuth authentication (https://developers.google.com/youtube/v3/guides/authentication). You need to implement your own concent as Web App when you need data like this. API key is not enough.

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

79669564

Date: 2025-06-17 17:55:52
Score: 6 🚩
Natty:
Report link

just following up on this, were you able to get a workaround or solution? If I use input_text = INITIAL_PROMPT + " " it gives a gibberish/unexpected output.

Reasons:
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sai

79669560

Date: 2025-06-17 17:53:51
Score: 2.5
Natty:
Report link

I'm still unable to see an Export in my profile with sync turned on. It would be good to know if the settings can still be exported.

No export option in gear icon

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: The Diabetic Way

79669556

Date: 2025-06-17 17:51:51
Score: 1.5
Natty:
Report link

I was using the iframe URL correctly on my website:

https://www.youtube.com/live_chat?v=<id_video>&embed_domain=<your_domain>

Suddenly it stopped working. After I added referrerpolicy="origin" to the iframe element, it started working again.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nils Alexandre Bergsten

79669547

Date: 2025-06-17 17:43:49
Score: 0.5
Natty:
Report link

The error 401 UNAUTHENTICATED error occurs because the applicationId you're using is for Google Calendar.

The correct applicationID for Google Drive is:

Google Docs and Google Drive (Application ID: 55656082996)


Reference

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

79669539

Date: 2025-06-17 17:38:47
Score: 3.5
Natty:
Report link

Updating the Server time and restarting the server may resolve the issue.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mike O'Connor

79669533

Date: 2025-06-17 17:35:46
Score: 1
Natty:
Report link

The most easy way to do it

step 1- https://pecl.php.net/package/mongodb visit this website and click on the dll, and download the zip as per your php version, see the image below

PECL DLL File.jpg

when you click on it choose the thread safe version to download see the image below
download .dll file image.jpg

step 2 - then put the dll file on this path C:\xampp\php\ext your path might be different depending upon the xampp installation

step 3 - open your php.ini file and put this line extension=php_mongodb.dll after your **extension=zip
**
if you have trouble opening php.ini file see the below image
how to open php.ini .jpg

Love from CodeHunger

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

79669519

Date: 2025-06-17 17:22:42
Score: 4.5
Natty:
Report link

System.Collections.Generic.HashSet<T>

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: fanruinet

79669508

Date: 2025-06-17 17:09:39
Score: 0.5
Natty:
Report link

I played it a while ago but I don't know whether it's still valid for you.
Here's my test: https://github.com/xuzhg/WebApiSample/tree/main/ODataQueryLinqExpressionBuilder

you can run it and try it and let me know your concerns and questions.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Sam Xu

79669501

Date: 2025-06-17 17:02:36
Score: 1.5
Natty:
Report link

My idea is probably unnecessarily complicated, but for sending an encrypted message you could set up a flask WSGI HTTP server that receives input via the URL, create a script that forwards that to HTTPS server (self signed certificate is technically more vulnerable), and if this is for production, you could make the HTTPS port UPnP so it forwards automatically. Assuming all of the scripts getting forwarded listen at whatever your system perceives itself to be (not 0.0.0.0), this should make some fairly secure communication.

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

79669496

Date: 2025-06-17 16:58:35
Score: 4
Natty:
Report link

Old, but gold.

This One Command Lets You Live-Edit UIKit Apps Like It’s SwiftUI

https://medium.com/@herlandro/how-to-update-uikit-project-interfaces-in-real-time-with-lldb-without-swiftui-d51c0d15319e

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Herlandro Hermogenes

79669492

Date: 2025-06-17 16:51:33
Score: 2
Natty:
Report link

Faced with this same problem, and upset with the available options, I started on a tool myself called [FFcommander](https://github.com/harper-rhett/FFCommander). It allows you to speak to FFmpeg with C# by sending command line commands. It has an API for common features that abstract the commands completely. I plan to expand it in the future to cover much more ground but for the time being it should be really easy to develop off of as well.

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

79669476

Date: 2025-06-17 16:35:28
Score: 1.5
Natty:
Report link
  1. Use OCR Software (Optical Character Recognition), like:

    • Adobe Acrobat Pro

    • Google Drive (with Google Docs)

    • Free tools like OCRmyPDF or Smallpdf

  2. Steps with Adobe Acrobat Pro (example):

    • Open the PDF in Acrobat.

    • Go to Scan & OCR tool.

    • Click Recognize TextIn This File.

    • Save the PDF — it’s now searchable with overlaid text.

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

79669470

Date: 2025-06-17 16:34:28
Score: 3.5
Natty:
Report link

Try the expect/autoexpect Linux commands. Arcane, but extremely useful.

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

79669461

Date: 2025-06-17 16:26:26
Score: 1.5
Natty:
Report link

To download binary files of a GitHub release you can use binup or hubapp or eget

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Андрей Тернити

79669459

Date: 2025-06-17 16:26:26
Score: 1
Natty:
Report link

Thanks to Thomas Hirschs comment I found the solution:

Outdated libraries

Download of new library screenshot, config window screenshots

Test connection success

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-2): I found the solution
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Stefan Bollmann

79669455

Date: 2025-06-17 16:25:26
Score: 1
Natty:
Report link

Creating a variable action is straightforward—simply use the function there. Like this: contact('<', https://foo.bar/....., '|Click me>'

After creation, the variable is available for use in emails or other posts and messages.

Good luck!

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

79669450

Date: 2025-06-17 16:21:24
Score: 1
Natty:
Report link

Solutions without .pem

Base64 (small files) (safe)

  1. Open a bash on your local machine (on Linux or Git Bash)
  2. Encode into Base64: cat myFile.zip | base64 -w 0
  3. Copy the output
  4. On the browser, open the console of the EC2 instance
  5. Execute the command pasting the content of the file: echo QWxhZGRpbjpvcGVuIHNlc2FtZQ== | base64 --decode > myFile.zip

wget (100% unsafe)

  1. Upload your not confidential local file or zip elsewhere on the internet (for instance, GitHub or StackOverflow)
  2. Copy the URL of the file
  3. On the browser, open the console of the EC2 instance
  4. Execute the command pasting the URL of the file: wget http://stackoverflow.com/xxx/thefiles.zip
  5. Optionally, remove the link of the file
Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
Posted by: Fabrice TIERCELIN

79669449

Date: 2025-06-17 16:20:24
Score: 3.5
Natty:
Report link

There are basically two solutions for this, which are a bit detailed, so I have created 2 different videos on that, You can see and fix your issues:

Solution 1: https://www.youtube.com/watch?v=HKWnrGPYR-M

Solution 2: https://www.youtube.com/watch?v=WRO-SgacqtQ

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kashif Mahmood

79669443

Date: 2025-06-17 16:17:23
Score: 2.5
Natty:
Report link

I found the problem. MySQL newbie issue. :(

I had a session variable declared DECLARE log_id INT;
In the queries, that used log_id, MySQL is using the variable instead of the column from the table.
So the statement

SELECT value_id, log_id from testdata;

Returned the value_id from the table, but the variable log_id value. Renaming the declared variable solved the issue.

Consider this question answered! Thanks to everyone who provided input.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): :(
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rick Scero

79669441

Date: 2025-06-17 16:14:22
Score: 1.5
Natty:
Report link

Many Tracker objects in OpenCV are deprecated because they are outdated, less accurate, and not well-maintained. Newer trackers like CSRT and KCF offer better performance and are preferred for modern use

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

79669440

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

You can't have both custom_authenticator and form_login_ldap active on the same firewall simultaneously. Symfony only uses one authenticator per request.

So Write a single custom authenticator that first tries LDAP logic and, if that fails, falls back to your custom logic (or vice versa).

Symfony’s new security system is designed for this: chain your logic inside the authenticator instead of in security.yaml.

Example:

This way, you control the flow and only register one authenticator in the firewall.

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

79669418

Date: 2025-06-17 16:05:19
Score: 3.5
Natty:
Report link

I think that you shouldn't group them with "id" if the ids are different

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

79669410

Date: 2025-06-17 16:00:18
Score: 1
Natty:
Report link

This might be an old thread, but I was having the same issue, and I fixed it by checking the node version that Playwright is using in the package.json file and then updating the directory with that latest version of node per the json file.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: QATestEngineer

79669398

Date: 2025-06-17 15:51:15
Score: 1.5
Natty:
Report link

The RESET contacts are located in the lower right corner and are highlighted in a red rectangle. For a cold restart, it is enough to close them with any actuating mechanism on the control board, for example, a relay. This contact group is standardized and its description can be taken from the manual for almost any motherboard (not only Asustek).

enter image description here

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

79669396

Date: 2025-06-17 15:50:14
Score: 2
Natty:
Report link

I resolved this by putting On<iOS>.SetUseSafeArea(true); in the xaml.cs file

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

79669380

Date: 2025-06-17 15:38:11
Score: 1
Natty:
Report link

Old question, new answer:

html { 
  scrollbar-gutter: stable;
}

It should prevent the flickering without resorting to JavaScript or hacking the native scroll.

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

79669356

Date: 2025-06-17 15:20:06
Score: 5
Natty:
Report link

This could be the correct answer, taken from a question that didn't ask exactly that : https://stackoverflow.com/a/69827402/9359785

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: jeancallisti

79669353

Date: 2025-06-17 15:19:05
Score: 2.5
Natty:
Report link

I can help you with that, there's two options, using chatgpt like chatbot to teach it the things and create a local LLM, but It would require a running server so people can access it remotely. Unless you plan to run it locally is not ideal with current state of smartphone software and hardware capabilities. The second option is to create an app or a website where we create frequently asked question list with search option where you can put keywords and find then related questions and answers. Another option is to create another pdf with revised format that adjusts itself on the phone but also on the computer with updated fonts, picture and revised guidelines in accordance with recent developments. Contact me if you want me to collaborate.

Reasons:
  • Blacklisted phrase (0.5): Contact me
  • Blacklisted phrase (0.5): Contact me if
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hebrew

79669352

Date: 2025-06-17 15:18:05
Score: 2
Natty:
Report link

The error was in my total lack of type converters. I had not used them because I thought that as long as all the parameters of a class didn't need type converters the class itself didn't need one. The type converters in MikeT's anwser seem to work.

MikeT's anwser(s) were really helpful though, because they revealed other issues with my code that I did not know of because of my lack of understanding.

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

79669344

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

Since SQL doesn’t allow deleting from multiple tables directly using JOIN, I split the logic into two separate DELETE statements, each using a WHERE ... IN (SELECT ...) clause.

Step 1: Delete from books

DELETE FROM books WHERE BOOK_ID IN ( SELECT b1.BOOK_ID FROM books b1 JOIN price p1 ON b1.BOOK_ID = p1.ID WHERE p1.ISBN IS NOT NULL AND p1.VALUTA = 'yen' AND b1.YEAR BETWEEN 2011 AND 2014 );

Step 2: Delete from price

DELETE FROM price WHERE ID IN ( SELECT p1.ID FROM price p1 JOIN books b1 ON p1.ID = b1.BOOK_ID WHERE p1.ISBN IS NOT NULL AND p1.VALUTA = 'yen' AND b1.YEAR BETWEEN 2011 AND 2014 );

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

79669337

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

You can always just filter that out as well:

  const filteredObject = Object.fromEntries(
    Object.entries(props.data).filter(([key]) => key !== "__typename")
  );
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Carlos Jafet Neto

79669322

Date: 2025-06-17 15:03:01
Score: 3.5
Natty:
Report link

Listen i want to tell you that this website do accurate calculations. Dont worry, i also used it for my final project. Also in my point of view, this is accurate. I dont know about others. Hope it solves your query.

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: rao athar

79669302

Date: 2025-06-17 14:52:58
Score: 8.5 🚩
Natty: 5.5
Report link

I m also searching for this problem. Did you find correct solution?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Тимур Мендгалиев

79669298

Date: 2025-06-17 14:50:57
Score: 3
Natty:
Report link

I removed line 3 and also removed autolinkLibrariesWithApp() in build.gradle

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Duy lê khánh

79669295

Date: 2025-06-17 14:49:57
Score: 1.5
Natty:
Report link

I cannot reproduce points 1 and 2, the timers are working as expected:

enter image description here

For Flow Control Action sampler you can set the think time in User Defined Variables so if you need to dry-run the test without think time you will have to change it only in one place.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Ivan G

79669294

Date: 2025-06-17 14:49:57
Score: 1.5
Natty:
Report link

I have managed to sort it out. As stated earlier, next-mdx-remote isn't working with the latest version of Next.js, but there is next-mdx-remote-client which can be used instead. A few changes need to be made but it isn't a lot overall.

Here is the repository for next-mdx-remote-client: https://github.com/ipikuka/next-mdx-remote-client

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

79669288

Date: 2025-06-17 14:42:55
Score: 1
Natty:
Report link

Here is what finally worked with any string (I called it "final"):

final <- "B,C,A,C,C,A,B"

func_ignore_last_A <- function(seq) {
  
  if (length(seq) > 0 && !is.na(seq)) {
    vec <- str_split(seq, ",")[[1]]
    if ("A" %in% vec) {
      last_a_index <- tail(which(vec == "A"), 1)
      vec <- vec[-last_a_index]
    }
    return(paste(vec, collapse = ","))
  } else {
    return(seq)
  }
}

func_ignore_last_A(final)
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: HelloBiology

79669285

Date: 2025-06-17 14:41:55
Score: 3
Natty:
Report link

python inference.py --checkpoint_path wav2lip.pth --face celebration_photo.jpg --audio folk_song.m4a

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

79669280

Date: 2025-06-17 14:39:54
Score: 0.5
Natty:
Report link

I had a very similar issue with the Flowbite library. What solved it was adding the <tr> element:

<div className="overflow-x-auto">
  <Table striped>
    <TableHead>
      <tr> {/* ~~~ ADD THIS <TR> ~~~ */}
        <TableHeadCell>xxx</TableHeadCell>
        ...
      </tr>
    </TableHead>
  </Table>
</div>

React Table - Flowbite

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

79669267

Date: 2025-06-17 14:31:52
Score: 3.5
Natty:
Report link

Adding the comments at the start of the script like aareeph stated solved my problem

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

79669255

Date: 2025-06-17 14:23:51
Score: 2.5
Natty:
Report link

seriously, the python object syntax is just fugly. it's unfortunate, because the language makes for quick iterations otherwise.

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

79669254

Date: 2025-06-17 14:23:51
Score: 0.5
Natty:
Report link

I believe it's because of lack of slash

router.replace("/notFound");

You could also do

router.replace({name: "notFound" });
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Emil

79669253

Date: 2025-06-17 14:23:50
Score: 2
Natty:
Report link

My God, I asked this in 2014 lol

If I knew what programming was like, I wouldn't have learned this

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

79669250

Date: 2025-06-17 14:21:50
Score: 3
Natty:
Report link

Using Xcode 16 here, try File > Packages > Reset Package Caches

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

79669246

Date: 2025-06-17 14:19:49
Score: 3.5
Natty:
Report link

We are using amqplib in a TypeScript/Node.js application to publish messages to RabbitMQ using sendToQueue, and although it returns true and we’ve wrapped it with ConfirmChannel and await channel.waitForConfirms(), we are experiencing a recurring issue where some messages are not delivered to the consumer. For instance, when 5 messages are sent, only 3 may be received by the consumer, even though no errors are thrown and waitForConfirms() resolves successfully. All queues are asserted with { durable: true }, messages are sent with { persistent: true }, and consumers are set up with noAck: false and are explicitly calling ack(msg). We’ve also tested with a Dead Letter Queue and found no messages routed there, suggesting they’re not being rejected or expired. The problem is intermittent and occurs under both light and moderate loads. We are trying to understand if this could be due to internal buffering, prefetch settings, missing acks, or a known edge case in amqplib where messages are silently dropped despite using confirmations. We would appreciate any insight into what could be causing this message loss, and whether there's an established approach or configuration that guarantees delivery reliability in this scenario.

Reasons:
  • Blacklisted phrase (1): what could be
  • Blacklisted phrase (1.5): would appreciate
  • Long answer (-1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: BooToo

79669243

Date: 2025-06-17 14:16:48
Score: 2.5
Natty:
Report link

Looks like you can use this free viewer:

https://fhir.tenasol.com/

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

79669239

Date: 2025-06-17 14:14:47
Score: 5
Natty:
Report link

Temporary tables are only available in the session. It's possible that when you run the other query its executed in other session?

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

79669231

Date: 2025-06-17 14:10:46
Score: 0.5
Natty:
Report link

Async Solution

You can combine pawello222's answer with Mojitaba Hosseini's answer from another question on how to make synchronous tasks to synchronously process asynchronous code on app termination event, like so:

NotificationCenter.default.addObserver(forName: UIApplication.willTerminateNotification, object: nil, queue: .main) { [self] _ in
    Task.synchronous { [self] in
        await asyncWork()
    }
}

Extension Code

Task.synchronous extension (credit to Mojitaba Hosseini):

extension Task where Failure == Error {
    /// Performs an async task in a sync context.
    ///
    /// - Note: This function blocks the thread until the given operation is finished. The caller is responsible for managing multithreading.
    static func synchronous(priority: TaskPriority? = nil, operation: @escaping @Sendable () async throws -> Success) {
        let semaphore = DispatchSemaphore(value: 0)

        Task(priority: priority) {
            defer { semaphore.signal() }
            return try await operation()
        }

        semaphore.wait()
    }
}

Caveat

If you use actors in your code at all, awaiting any actor method or variable will cause the Task to never complete/to be killed. Instead, you should resolve and store any actor variables locally, then capture them in the Task closure to use them without any actor access waiting.

Example:

let peripheral = await localPeripheral
        
peripheralTerminateNotification = NotificationCenter.default.addObserver(forName: UIApplication.willTerminateNotification, object: nil, queue: .main) { [self] _ in
    Task.synchronous { [self] in
        await stop(peripheral: peripheral)
    }
}
Reasons:
  • Blacklisted phrase (1): another question
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rollersteaam

79669226

Date: 2025-06-17 14:07:45
Score: 1
Natty:
Report link

Change your parameter type to object instead of psobject. That way PowerShell won't try to loop over the contents during validation.

function testme {
    param(
        [ValidateScript({ $_ -is [array] -or $_ -is [hashtable] })]
        [object]$args
    )
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: OUTATIME121GW

79669217

Date: 2025-06-17 14:01:43
Score: 0.5
Natty:
Report link

server.servlet.session.cookie.path=/ - Cookie is sent on all paths

server.servlet.session.cookie.path=/app - Cookie is sent only for /app and its sub-paths

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Mohamed Iqzas

79669212

Date: 2025-06-17 13:58:42
Score: 0.5
Natty:
Report link

Update poetry pyprotect.toml file to include the lower limit tensorflow version and upper limit tensorflow version for your project.

    "tensorflow (>=2.11.0,<2.17.0)",

then run:
poetry check this is to verify that all's good.

then run poetry install

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Samuel Tosan Ayo

79669202

Date: 2025-06-17 13:50:41
Score: 2.5
Natty:
Report link

In 2025, linking azdevops to azure ad looks like this:

enter image description here

I was having the same problem until I ran this step.

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

79669201

Date: 2025-06-17 13:50:41
Score: 2
Natty:
Report link

Another piece of valuable .metallib format documentation found only after digging for a while:

https://github.com/YuAo/MetalLibraryArchive/blob/master/README.md (Scroll down to the "Metal Library Archive Binary Layout" heading)

In addition, the Asahi Linux project has done a massive amount of work in reverse-engineering the M-series GPU instruction set. https://asahilinux.org/

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

79669186

Date: 2025-06-17 13:42:38
Score: 2.5
Natty:
Report link

This class was removed in https://github.com/jhipster/jhipster-bom/pull/1444. It was a leftover artifact from AngularJS that's not needed.

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

79669177

Date: 2025-06-17 13:34:36
Score: 2.5
Natty:
Report link

I found out that with the current material 3 ( 1.3.2 ) it is not possible to totally disable the dismiss of the ModalBottomSheet when scrolling down, but it should be possible in the next stable release of the material 3, as seen from https://developer.android.com/jetpack/androidx/releases/compose-material3#1.4.0-alpha15. A workaround for this question was found in how to prevent Modal Bottom Sheet from getting close on swipe Down in compose which may help you till the new material 3 ( 1.4.0 - stable ) is released

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mr Good Bear

79669174

Date: 2025-06-17 13:33:36
Score: 1
Natty:
Report link
  1. Setting up UTF-8 Encoding - Ensure your application.yaml file is saved in UTF-8 encoding. If non-UTF-8 encoding is used, Japanese characters otherwise not display correctly.

    messages:
      greeting: こんにちは
      farewell: さようなら
    
  2. Call this properties in Java File in Spring boot through of @Value Annotation.
    @Value("${messages.greeting}")
    private String greetingMessage;

  3. Using @ConfigurationProperties

@Configuration
@ConfigurationProperties(prefix = "messages")
public class MessageConfig {
    private String greeting;
    private String farewell;

    // Getters and Setters
}

If you are use Multi-language So you can handle the through of message.properties and as well as store the multi-language in Database also.

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

79669165

Date: 2025-06-17 13:28:34
Score: 3.5
Natty:
Report link

It happens when you use wrong arn. we need to pass topic arn not subscription arn.

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

79669164

Date: 2025-06-17 13:28:34
Score: 1
Natty:
Report link

Yes! Elementor uses Flatpickr under the hood, so you can override its default date format with a bit of JS. For example, add this in your theme’s functions.php or via Elementor → Custom Code:

add_action('wp_footer', function() { ?>
  <script>
    jQuery(document).ready(function($) {
      setTimeout(function(){
        $('.flatpickr-input').each(function(){
          flatpickr(this).set('dateFormat','d/m/Y');
        });
      }, 1000);
    });
  </script>
<?php });

After the new update you also need to make one change in the settings as shown here: https://youtu.be/z3Dk0GzXIHA

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kashif Mahmood

79669163

Date: 2025-06-17 13:27:33
Score: 5.5
Natty: 6.5
Report link

What if it's already unchecked but still posts redirecting to the homepage when switching languages?

Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What if it
  • Low reputation (1):
Posted by: Olga from Graphic DOP

79669153

Date: 2025-06-17 13:20:31
Score: 1
Natty:
Report link

About this: In this JSON object, there are a "fields" object which contains "subtasks" array.
In [fields][subtasks] you will always receive an empty array if you use cloud jira for epic issues!!!

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

79669151

Date: 2025-06-17 13:18:31
Score: 1
Natty:
Report link

Had the same.

At the bottom of the breakpoint view (left column of Xcode)

All Runtime issues lib system_trace.dylib

I had this breakpoint "All Runtime issues lib system_trace.dylib" active.

Inactivating this breakpoint did the trick.

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

79669139

Date: 2025-06-17 13:11:28
Score: 1
Natty:
Report link

The source of problem was found. It was related to the handlers from Systick, SVC and pendSV. I should use the handlers from FreeRTOS instead of the functions used by the ST. So, in my source code, I changed the l vector table (on file startup_stm32f767zitx.s) to these:

.word  vPortSVCHandler
.word  xPortPendSVHandler
.word  xPortSysTickHandler

After doing this, the FreeRTOS started working.

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

79669132

Date: 2025-06-17 13:08:27
Score: 3.5
Natty:
Report link

You can define a global timezone to get the correct results, please see the link to API, where you can see a demo in action: https://api.highcharts.com/highcharts/time.timezone

Reasons:
  • RegEx Blacklisted phrase (1): see the link
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Andrzej Bułeczka

79669126

Date: 2025-06-17 13:05:26
Score: 1
Natty:
Report link
 $row->created = (new DateTime('@' . $row->created))->setTimezone(new DateTimeZone(config('app.timezone')));

Not a bug,the timezone is intentionally ignored when using @-style timestamps.

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

79669123

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

No, this is expected behavior. Your solution with setTimezone() is the proper way to handle it.

When using a Unix timestamp with DateTime (like @1718607600), PHP ignores both the default timezone and any timezone passed to the constructor. That's why your first snippet shows +00:00 - it's forced to UTC.

The fix is simple: Create your timestamp in UTC, then convert it to your timezone using setTimezone() right after:


$row->created = (new DateTime('@' . $row->created)) ->setTimezone(new DateTimeZone(config('app.timezone')));

Your second snippet already does this correctly. Unix timestamps are UTC-based, so you always need this explicit conversion to show them in local time.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @1718607600
  • Low reputation (1):
Posted by: Mickey Joe

79669118

Date: 2025-06-17 13:02:25
Score: 2
Natty:
Report link

Check and use this - Wrong spring.cloud.config.uri setting – Make sure that your client applications are pointing to the correct Config Server URL.

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

79669114

Date: 2025-06-17 12:59:24
Score: 0.5
Natty:
Report link

This will make ./gradlew testFlavor1UnitTest exclude all classes from the common test folder while keeping everything else exactly the same.

afterEvaluate {
    tasks.withType(Test).matching { it.name.contains('Flavor') }.all {
        exclude '**/test/**'
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Muhammad Saad Ali Khan

79669112

Date: 2025-06-17 12:58:23
Score: 2
Natty:
Report link

It is a vulnerability.

With this you can read files as the root, so you can access files you should not.

With weak passwords you can crack password hashes of other users. If you are lucky you will escalate.

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

79669111

Date: 2025-06-17 12:56:23
Score: 0.5
Natty:
Report link

Yes, with Maths and a map

>>> MULTVAL =  (1.001**1000)                                                                                                       
>>> output = [*map(lamdba x: x*MULTVAL, range(10000))]    
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Axeltherabbit

79669108

Date: 2025-06-17 12:55:23
Score: 2
Natty:
Report link

Since xunit 2.5.0 you can use Assert.Single(collection);

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Denys Voronovych

79669105

Date: 2025-06-17 12:55:22
Score: 9.5
Natty: 8
Report link

i am facing an same issue bro any solution regarding this?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution regarding this?
  • 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: dhanush

79669100

Date: 2025-06-17 12:54:22
Score: 3
Natty:
Report link

<!DOCTYPE html>

<html lang="">

<head>

<title>Test</title>

</head>

<body>

<p></p>

</body>

</html>

Reasons:
  • Low length (1):
  • No code block (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: Neville Vokey

79669094

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

It's an authorization concern that the user be authenticated, so I had to that as the fallback policy and everything works. I made the following addition to the ServiceCollectionExtensions.AddCertificateAuthenticationService method:

builder.Services.AddAuthorization(options =>
{
    options.FallbackPolicy = new AuthorizationPolicyBuilder()
                    .RequireAuthenticatedUser()
                    .Build();
});
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Matthew Hamilton

79669093

Date: 2025-06-17 12:51:21
Score: 2
Natty:
Report link

this helped me curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python3 get-pip.py

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

79669075

Date: 2025-06-17 12:42:18
Score: 1
Natty:
Report link

Resolved this by adding 'react-native-reanimated/plugin' to plugins property in babel.config.js

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

79669074

Date: 2025-06-17 12:41:18
Score: 2
Natty:
Report link

Don't forget to enable an external formatter in phpstorm to use formatting style from phpcs.xml

enter image description here

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

79669073

Date: 2025-06-17 12:40:17
Score: 2.5
Natty:
Report link

I made a change to NSwag to apply the cancellationToken to the ReadAsStringAsync and ReadAsStreamAsync calls when the framework is .NET 5 or higher. My change should be available in the 14.5 version of NSwag, or the nightly build of master if you need it sooner.

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

79669053

Date: 2025-06-17 12:27:14
Score: 2
Natty:
Report link

If your data has numbers stored as strings, Python will sort 10 before 2 because it's comparing character-by-character. If you want numeric sorting, convert them to integers in the key:

sorted_data = sorted(mix_data, key=lambda x: (int(x[0]), int(x[1])))

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

79669052

Date: 2025-06-17 12:26:13
Score: 1
Natty:
Report link
<!DOCTYPE html>
<html>
    <head>
        <title>
            Noah's first website 
        </title>
    </head>
    <body>
        <h1>If you play Roblox just friend me
my username is Djdog_95 and my character has a blue jersey</h1>
    </body>
</html>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Noah Currie

79669051

Date: 2025-06-17 12:25:13
Score: 1
Natty:
Report link

Change your lambda to return a tuple of the first and second elements - Python will automatically sort by the first value, and use the second one

sorted_list = sorted(mix_data, key=lambda x: (x[0], x[1]))

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

79669048

Date: 2025-06-17 12:24:13
Score: 5
Natty:
Report link

The above worked and thank you

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Brett Byers

79669045

Date: 2025-06-17 12:24:13
Score: 1.5
Natty:
Report link

Use stable version of pycryptodome

pip uninstall pycryptodome crypto
pip install pycryptodome==3.19.0  # Specific stable version
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ali Hassan