79586293

Date: 2025-04-22 11:16:20
Score: 5
Natty:
Report link

same here! This was the only fix: https://forreststonesolutions.com/robots/

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

79586281

Date: 2025-04-22 11:11:18
Score: 4
Natty: 6
Report link

same issue! This worked for me: https://forreststonesolutions.com/robots/

Reasons:
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1): same issue
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Justineee

79586279

Date: 2025-04-22 11:10:18
Score: 0.5
Natty:
Report link

FWIW I've created a .net tool that can view, retry and move all DLQ messages to a central queue if bulk operations are needed.

https://github.com/andreasohlund/AzureServiceBusDLQ

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Andreas Öhlund

79586276

Date: 2025-04-22 11:08:17
Score: 0.5
Natty:
Report link

FWIW I've created a .net tool that can view, retry and move all DLQ messages to a central queue if bulk operations are needed.

https://github.com/andreasohlund/AzureServiceBusDLQ

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Andreas Öhlund

79586271

Date: 2025-04-22 11:04:16
Score: 2.5
Natty:
Report link

To sell data science or analytics solutions, focus on solving real business problems with clear ROI. Offer tools like dashboards or predictive models—something like a database but more insightful. Add value, not just data. For premium contact lists at a fair price, visit https://www.latestdatabase.cn.

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

79586269

Date: 2025-04-22 11:03:15
Score: 2.5
Natty:
Report link

There is a "Fading" section in Text Editor > language > Advanced.
You need to restart VS after changing this.

Fading section in Visual Studio

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

79586268

Date: 2025-04-22 11:03:15
Score: 4
Natty: 6
Report link

CRUD Lugter rigtig meget af 100kr vandmelon

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

79586266

Date: 2025-04-22 11:02:15
Score: 2.5
Natty:
Report link

The solution for this is to add homePage"" specific url you want to run website and make a subdirectory on IIS and place your build on this subdirectory folder and your website will run perfectly.

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

79586261

Date: 2025-04-22 11:00:14
Score: 1
Natty:
Report link

It may be caused by completely disabled IPv6. Please see https://github.com/microsoft/WSL/issues/11002 for the steps how to enable it at least partially.

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

79586260

Date: 2025-04-22 11:00:14
Score: 0.5
Natty:
Report link

In SQL Server:

  1. When a Primary Key is dropped, SQL Server:

    • Removes the NOT NULL constraint from the column if it was only enforced via the PK.

    • It does not automatically change any values to NULL.

  2. So how did the NULLs get there?

    • Those rows were probably already there, but the column had default values (e.g., autogenerated or inserted earlier).

    • Once you dropped the PK and altered the column to allow NULLs (or SQL Server did that for you), subsequent operations (like inserts) may have inserted NULL into those rows — especially if:

      • There was no default value set.

      • Your application/data import inserted rows without setting a value for that column.

What to do now:

🔹 1. Check how many NULLs you have:

SELECT COUNT(*)

FROM YourTableName

WHERE YourColumnName IS NULL;

2. Inspect some of those rows

SELECT* FROM YourTableName

WHERE YourColumnName IS NULL;

3. Remove them

Delete FROM YourTableName

WHERE YourColumnName IS NULL;

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

79586254

Date: 2025-04-22 10:59:14
Score: 2.5
Natty:
Report link

ERROR] The server encountered an unexpected condition that prevented it from fulfilling the request.

[INFO] Terminal access granted. You may use the command line below to diagnose the problem.

[SYSTEM] Type 'help' to view available commands.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Phạm võ anh khoa

79586235

Date: 2025-04-22 10:51:12
Score: 2.5
Natty:
Report link

'Polyline' isn't a function.

Try correcting the name to match an existing function, or define a method or function named 'Polyline'.

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

79586231

Date: 2025-04-22 10:49:11
Score: 5.5
Natty: 5.5
Report link

Had the same trouble. This link fixed it for me: https://forreststonesolutions.com/robots/

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

79586210

Date: 2025-04-22 10:35:07
Score: 0.5
Natty:
Report link

Try tu use rules somehow like that

workflow:
  rules:
    - if: '$CI_COMMIT_BRANCH && $CI_PIPELINE_SOURCE == "push"'
      when: always
    - when: never
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: poisoned_monkey

79586209

Date: 2025-04-22 10:34:07
Score: 0.5
Natty:
Report link

Make sure you’re casting the container first, and then calling getID().

((Worker) this.getContainer()).getID();

Or add an abstract method, so you would not need to cast it at all.

public abstract class Container {
    public abstract Object getID();
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vasil

79586208

Date: 2025-04-22 10:34:07
Score: 1.5
Natty:
Report link
sudo launchctl bootout system/com.docker.vmnetd 2>/dev/null || true
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: KadirKAPLAN

79586199

Date: 2025-04-22 10:29:06
Score: 2
Natty:
Report link

I would recommend to use Lambda Layers. Here is the doc. So you need to create Lambda layer from S3 object and attach this layer to Lambda.

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

79586196

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

for me , i was getting erroe loading dependencies / error loading layout/ 500 internal server error by updating dash and related libraries has solved the problem
previous:
loguru

pymongo

pandas

dash==2.15.0

dash-bootstrap-components==1.5.0

sqlalchemy==1.4.17

openpyxl

dash-ag-grid

python-dotenv

updated to:

loguru==0.7.3

pymongo==4.10.1

pandas==2.0.3

dash==3.0.3

dash-bootstrap-components==1.6.0

dash_mantine_components==0.12.1

sqlalchemy==2.0.40

openpyxl==3.1.5

dash-ag-grid==31.3.1

python-dotenv==1.0.1

Flask==3.0.0

dash-extensions==1.0.15

plotly==6.0.1

dash-daq==0.6.0

requests==2.22.0

numpy==1.24.4

Werkzeug==3.0.1

dash-table==5.0.0

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

79586195

Date: 2025-04-22 10:27:05
Score: 3
Natty:
Report link

They recently added (I am writing 4/22/2025) the possibility to setup a React + ASP.NET Core project

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

79586194

Date: 2025-04-22 10:27:05
Score: 2.5
Natty:
Report link

Have you declared the activity in your manifest? And did you spell it correctly?

In the absence of any code this is the best answer I can give.

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

79586174

Date: 2025-04-22 10:17:03
Score: 1.5
Natty:
Report link

Put this property of Text.

textAlign = TextAlign.End
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anshul Nema

79586173

Date: 2025-04-22 10:17:02
Score: 7 🚩
Natty: 5.5
Report link

Gerrie du Plessis can you share the details on how you resolved above issue. I am fessing the same issue.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you share
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you share the
  • Low reputation (1):
Posted by: Ravi

79586163

Date: 2025-04-22 10:10:00
Score: 3
Natty:
Report link
parentId should be order transaction id like "gid://shopify/OrderTransaction/123456789".
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30339380

79586157

Date: 2025-04-22 10:09:00
Score: 1.5
Natty:
Report link

2025 Update

JetBrains removed the non-modal commit interface from the IDE-core. If you want to get it back in 2025, you have to install the Plugin Git Modal Commit Interface from JetBrains

  1. Install the Git Modal Commit Interface Plugin

  2. Go to Settings -> Advanced Settings -> Version Control

  3. Tick use modal commit interface

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

79586149

Date: 2025-04-22 10:03:59
Score: 0.5
Natty:
Report link

Firstly I am not sure but I think that it is now --timeout and not --default-timeout

Secondly, you are installing a lot of package and 100 sec for all might not be enough, you should consider putting --timeout=1000

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

79586143

Date: 2025-04-22 10:00:58
Score: 5
Natty:
Report link

Thank you, the above has worked

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

79586137

Date: 2025-04-22 09:59:57
Score: 5.5
Natty: 5
Report link

Did you guys find a flexible solition for this one?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: Maximilian Kaden

79586136

Date: 2025-04-22 09:58:56
Score: 1.5
Natty:
Report link

For two vertical lines and one plot, I would recommend:

ggplot(df1,aes(x=x, y=y)) +
  geom_line()+
  geom_vline(xintercept = c(2.5, 4))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mirjam

79586133

Date: 2025-04-22 09:57:56
Score: 5.5
Natty: 5.5
Report link

We don't need to login for scraping the bestbuy website?

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

79586129

Date: 2025-04-22 09:56:55
Score: 0.5
Natty:
Report link

Stripe v8.10.0 added official async support.

To make use of it, append the _async suffix to all function calls, i.e. stripe.PaymentIntent.list_async instead of stripe.PaymentIntent.list.

Further information can be found in the documentation.

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

79586124

Date: 2025-04-22 09:53:54
Score: 2
Natty:
Report link

ok... I found a simple and easy way to achive this... Simple use the "uploadData" function from BlockBlobClient with an arrayBuffer from the uploaded file :)

let formData = await req.formData();
let file = formData.get( "file" );
let buffer = file.arrayBuffer();
await blockBlobClient.uploadData( buffer );

So i can upload my files to azure blobstorage through a simple html file-form upload :)

uploadData function:

https://learn.microsoft.com/en-us/javascript/api/@azure/storage-blob/blockblobclient?view=azure-node-latest#@azure-storage-blob-blockblobclient-uploaddata

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

79586119

Date: 2025-04-22 09:49:53
Score: 1
Natty:
Report link

I think you install the wrong package, you should pip install clean-text and unistall the wrong package cleantext pip uninstall cleantext

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

79586106

Date: 2025-04-22 09:40:51
Score: 1
Natty:
Report link

The issue here is with your Authorization . You are passing Authorization as query param. It should be passed as header. In Authorization tab, select Bearer Token as Auth Type and paste your token in Token field.

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

79586097

Date: 2025-04-22 09:37:50
Score: 1
Natty:
Report link

To use external libraries in bruno you have to first modify your bruno.json file by adding:

  "scripts": {
    "moduleWhitelist": ["fs", "path"],
    "filesystemAccess": {
      "allow": true
    }
  }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zielony Młotek

79586095

Date: 2025-04-22 09:33:50
Score: 0.5
Natty:
Report link

Not an answer, just an opinion.

It was a bad idea to format expressions in lines.

I'm doing programming for almost 20 years. Have seen tons of code, tons of styles. Best code is a code that is readable quickly. Easy to read - you invest less time and effort to yield result.

Standardization should be reasonable. Standardization for the sake of standardization is a bad idea.

Nothing will save you from crooked hands and inexperience anyway.

func1(func2(func3()) )   - Easier to read
func1(func2(func3()))

if someAttr.Load() + int64(SomeConstant) < ts { }   - Easier
if someAttr.Load()+int64(SomeConstant) < ts { }

myslice[fromExpr() : lenExpr()]   - Easier
myslice[fromExpr():lenExpr()]
Reasons:
  • Blacklisted phrase (1): Not an answer
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dmitry

79586089

Date: 2025-04-22 09:29:48
Score: 3
Natty:
Report link

Context is one of the tricky bits of Typst.

To quote Typst's designer:

the context value itself becomes opaque. You cannot peek into it, so everything that depends on the contextual information must happen within it

For the full explanation: https://forum.typst.app/t/why-is-the-value-i-receive-from-context-always-content/164?u=vmartel08

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

79586088

Date: 2025-04-22 09:25:48
Score: 1.5
Natty:
Report link

Filters are always applied independent of the permission settings. If you want to exclude a certain path, you need to check that path in your filter to bypass logic.

Enable debug mode for filters to see whole bunch of filters walked through.

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

79586087

Date: 2025-04-22 09:25:48
Score: 2.5
Natty:
Report link

I just did this:

//clear the upLoadlist $('#uploadList').empty();

Where #uploadList is the ID of the uploaded file list

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

79586085

Date: 2025-04-22 09:23:47
Score: 2.5
Natty:
Report link

Just incase anyone stumbles upon this. Yes its possible by passing in the following to $sessionOptions

https://docs.stripe.com/api/checkout/sessions/create

"invoice_creation": {
    "enabled": true
}
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jamie

79586080

Date: 2025-04-22 09:21:47
Score: 2
Natty:
Report link

I have few on-prem clusters and my use case for this feature is to not allow workload to run, until I make sure some specific network routes works.

Without these checks even when cluster communication works, persistent storage might not work but scheduler will put pods with PVs on this node anyway.

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

79586077

Date: 2025-04-22 09:20:46
Score: 5.5
Natty: 5
Report link

How to using tick data to build realtime multi intervals kline?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (0.5):
Posted by: CS QGB

79586070

Date: 2025-04-22 09:17:45
Score: 1.5
Natty:
Report link

If you're trying to extract failed selector URLs from Cypress tests, you might consider implementing a custom reporter or using event listeners like Cypress.on('fail', ...) to catch and log failing selectors along with the URL. Depending on your setup, saving this data to a file or dashboard could streamline your debugging process.

We recently tackled a similar challenge at https://agiletech.vn/ while working on automated test reporting and logging. You might find some of our insights helpful, especially if you're working on scalable test environments or reporting tools. Feel free to check it out!

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: AgileTech Vietnam

79586069

Date: 2025-04-22 09:17:45
Score: 2.5
Natty:
Report link

how do I handle test for the below code in jest

const handleOpenEndedBranching =(e)=>{
    e.preventDefault()
    handleBranching(question, question?.questionInputTypes[0]?.goTo
    )
  }
Reasons:
  • Blacklisted phrase (1): how do I
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): how do I
  • Low reputation (1):
Posted by: Emmanuel Kiptunge

79586068

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

I experienced the same problem.

Solved by removing set_level for the file sink.

...
    std::shared_ptr<spdlog::sinks::rotating_file_sink_mt> file_sink;
    //console_sink->set_level(spdlog::level::debug);
...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rostislav Nikitin

79586057

Date: 2025-04-22 09:10:42
Score: 9.5 🚩
Natty: 5
Report link

I also had these conflict messages in my base file which I have pushed to master branch. Can anyone tell me how to solve this? It is causing SQL error in my query because I merge and resolve the same commit multiple times and I can't just remove it in the file.

enter image description here

Reasons:
  • Blacklisted phrase (1): how to solve
  • Blacklisted phrase (1.5): tell me how to
  • RegEx Blacklisted phrase (2.5): Can anyone tell me how
  • RegEx Blacklisted phrase (1.5): how to solve this?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: meowmeow

79586048

Date: 2025-04-22 09:04:41
Score: 0.5
Natty:
Report link

Use \z to control parsing of dates. Set to 0 for mm/dd/yyyy or 1 for dd/mm/yyyy.

https://code.kx.com/q/basics/syscmds/#z-date-parsing

q)date:`$("16/8/2022";"17/8/2022")
q)date
`16/8/2022`17/8/2022
q)\z 1
q)"D"$string date
2022.08.16 2022.08.17

The update query for your data:

q)\z 1 /Set to dd/mm/yyyy
q)update "D"$string Date from ydata
q)\z 0 /Reset back to default mm/dd/yyyy

More tips on parsing https://github.com/rianoc/parse_blog/blob/master/1.%20Parsing%20data%20in%20kdb%2B/parse.md#complex-parsing

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: rianoc

79586038

Date: 2025-04-22 08:58:39
Score: 2.5
Natty:
Report link
  1. Make sure required packages are installed "devDependencies": { "tailwindcss": "^3.0.0", "postcss": "^8.0.0", "autoprefixer": "^10.0.0" }
  2. Ensure Vite is loading CSS correctly
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Faizan Ali

79586031

Date: 2025-04-22 08:55:38
Score: 3
Natty:
Report link

A narrow alley in an urban neighborhood, a calico stray cat with round marble-like eyes walking curiously among small houses, early morning light, warm atmosphere, cinematic style

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

79586023

Date: 2025-04-22 08:48:36
Score: 7 🚩
Natty: 6
Report link

any solution here ? i tried reinstalling . but they say its a problem cause im using macos and the lambda is linux based

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution here ?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: wael abdallah

79586017

Date: 2025-04-22 08:44:35
Score: 1
Natty:
Report link
  1. Use URL encoding: https://www.w3schools.com/tags/ref_urlencode.ASP

  2. Use user-id and user-pw properties of rtspsrc

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

79586016

Date: 2025-04-22 08:44:35
Score: 3.5
Natty:
Report link

I have found the solution after Joakim Danielson gave me the tipp about the logging of sql see comment on Question. I needed to reinstall the app after changing some Fields in my Swift Data Model. In other cases maybe a migration script is needed.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Petie Pete

79586012

Date: 2025-04-22 08:40:34
Score: 2.5
Natty:
Report link

Welcome to flutter. Can you share the code where you are calling the MyDrawer(), I cannot see the overflow when I run it in my device.

For the second error: the problem is that the Image.network in the ExpansionTile.leading doesn't find the image so it shows a error placeholder and that placeholder overflows, you can add errorBuilder:

leading: Image.network(
  icon,
  width: 20,
  height: 20,
  errorBuilder: (context, _, __) {
    return const SizedBox();
  },
),

some other recommendations:

Your MyDrawer can be StatelessWidget instead of StatefullWidget

The use of Material in your tiles seams to be unnecessary

[...] is same as .toList()

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (2.5): Can you share the code
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shlomo Cardoso

79586010

Date: 2025-04-22 08:39:34
Score: 2.5
Natty:
Report link

use lazy loading strategy will fix yout issue, the issue happen because global filter query is filter the items and the items have relations with it when use(include or join) but count not

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ahmad Nour Al-Sabaggh

79586008

Date: 2025-04-22 08:38:33
Score: 2
Natty:
Report link

Changing getStyle([$icol, $irow]) to getStyle([$icol, $irow, $icol, $irow]) produces required result

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

79586004

Date: 2025-04-22 08:33:32
Score: 3
Natty:
Report link

This package is retired and you need to download and install it manually from following link

https://github.com/arthenica/ffmpeg-kit/releases

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

79586000

Date: 2025-04-22 08:32:32
Score: 1.5
Natty:
Report link
import android.app.Activity;
import android.os.Bundle;

public class kapima {
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }
    
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Maombi

79585992

Date: 2025-04-22 08:27:30
Score: 5
Natty: 5
Report link

I followed your instructions and npx mix watch keeps compiling in loop; usually this happened in Tailwind v3 when there was an error in the "content" declaration. What could be the error now? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): What could be
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fabio Cappellino

79585988

Date: 2025-04-22 08:27:30
Score: 1
Natty:
Report link

You can use YubiKeys to secure local or domain accounts on Windows without relying on Windows Hello for Business, using alternative methods like smart card mode, third-party credential providers, or FIDO2 login with additional software.

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

79585987

Date: 2025-04-22 08:26:29
Score: 3
Natty:
Report link

Add to configuration: management.endpoints.web.exposure.include=health

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Aleksandr Charkov

79585983

Date: 2025-04-22 08:24:29
Score: 0.5
Natty:
Report link

What’s actually crashing on Android? On modern Android (targetSdk 31+/API 30+), any time you fire off an ACTION_VIEW intent (which is exactly what Linking.openURL() does under the hood), the system first checks your app’s package visibility. If you haven’t told Android “Hey, I might want to open web URLs,” it can’t find any browser to handle that intent—and you get an uncaught ActivityNotFoundException that kills your WebView (often silently in Expo builds).

- Emulator often uses more‑permissive settings or older WebView versions. - iOS has no such restriction at all. - Real Android devices in production builds enforce it strictly.

Always guard your openURL calls

import { Linking, Alert } from 'react-native';

async function openExternal(url) {
  try {
    const supported = await Linking.canOpenURL(url);
    if (supported) {
      await Linking.openURL(url);
    } else {
      Alert.alert('Oops!', `Cannot open this URL: ${url}`);
    }
  } catch (err) {
    console.error('Failed to open URL:', err);
    Alert.alert('Error', 'Couldn’t open the link.');
  }
}

Prevents crashes if there’s no browser or handler.

Lets you show a friendly message instead of a hard crash.

import React, { useRef } from 'react';
import { WebView } from 'react-native-webview';

export default function MyInertiaWebView() {
  const webviewRef = useRef(null);

  return (
    <WebView
      ref={webviewRef}
      source={{ uri: 'https://your-inertia-app.com' }}
      originWhitelist={['*']}
      // iOS + (newer) Android
      onShouldStartLoadWithRequest={({ url }) => {
        const isExternal = !url.startsWith('https://your-inertia-app.com');
        if (isExternal) {
          openExternal(url);
          return false; // stop WebView
        }
        return true;
      }}
      // fallback for older Android
      onNavigationStateChange={(navState) => {
        const { url } = navState;
        if (url.startsWith('http') && !url.startsWith('https://your-inertia-app.com')) {
          openExternal(url);
          webviewRef.current.stopLoading();
        }
      }}
    />
  );
}

Guard every Linking.openURL with canOpenURL + try/catch.

Intercept external links in your WebView callbacks and call your safe openExternal() wrapper.

Declare HTTP/HTTPS intent queries in your Android manifest (via Expo plugin or by editing AndroidManifest.xml).

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Hadi Dev

79585981

Date: 2025-04-22 08:22:28
Score: 2
Natty:
Report link

1. clone project

2. build project

3. enable annotation processing

4. shorten command and re run testNG

5. run testNg xml

6. If not working - > delete .idea folder

7. close intelliJ

8. open intelliJ

9. delete target folder

10. delete .idea folder

11. rebuild project

12. run testNG xml

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

79585979

Date: 2025-04-22 08:21:28
Score: 0.5
Natty:
Report link

As others have said netcore will identify the most appropriate binding - it's helpful to understand how to control this in more detail - see here for the Microsoft documentation on it:

https://learn.microsoft.com/en-us/aspnet/core/fundamentals/minimal-apis/parameter-binding?view=aspnetcore-9.0#explicit-parameter-binding

below is an example of a Get request where you can see explicit control of where to expect parameters to come from

app.MapGet("/{id}", ([FromRoute] int id,
                     [FromQuery(Name = "p")] int page,
                     [FromServices] Service service,
                     [FromHeader(Name = "Content-Type")] string contentType) 
                     => {});

It may also help to look around Model Binding in asp.net core as that also helps explain how it all works: https://learn.microsoft.com/en-us/aspnet/core/mvc/advanced/custom-model-binding?view=aspnetcore-9.0
HTH

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

79585967

Date: 2025-04-22 08:13:26
Score: 1.5
Natty:
Report link

Thanks for the replies.
We actually got a response back from Microsoft explaining the cause of the issue ...

"On 2025-04-03, control plane requests to Azure Container Apps started failing with error code 500 responses in East US and UK South, preventing control plane operations with ARM, Azure CLI, and the Azure Portal. Container Apps continued to run normally without interruption.

The Azure Container Apps control plane operations were failing internally due to failing authentication requests with the underlying Azure Kubernetes Service (AKS) infrastructure used by the Azure Container Apps data plane. The underlying AKS infrastructure rolled out a change that scaled down the number of replicas of the Guard service, which provides AAD authentication for the environments. The scale down operation caused the Guard service to be unresponsive, which caused authentication requests to fail.

The rollout was reverted by the AKS team, bringing the Guard service back up and restoring authentication capability, allowing the Azure Container Apps control plane to authenticate successfully with the data plane."

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Chris Stephens

79585955

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

Sorry for -2 feedback mistakly as you provide solution is very much near to my Solution when i put 500 Qty against 1 Qty then its Show price for 500 pcs but in other product that have 1000 Qty then it is showing price for 500 pcs and also it's not showing on my front and page only showing on Category page

Main Issue is Like my Product Business Card Have minimum 500/1000 Qty in Product Page it is showing right Price 700 but still it shows amount 0.70/- for single card Qty on Category page and frontend Page

I need total Desired Qty Price on Both Frontend and Category page

https://www.printmister.com/product-category/t-shirts/men-t-shirts/

https://www.printmister.com/

https://www.printmister.com/product-category/business-cards-en/

Plz Check Link

Thanks

Navneet Bhandari

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): solution is
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Print Mister

79585953

Date: 2025-04-22 08:03:23
Score: 2.5
Natty:
Report link

After further digging and dumping, this appears to be a permissions issue with the remote server.

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

79585930

Date: 2025-04-22 07:46:19
Score: 5
Natty:
Report link

@阿拉什 this is good method , but i run docker like this `docker run -p 3000:3000 ghcr.io/jihchi/mermaid.ink`. it dose work for me!

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @this
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: yun_90

79585925

Date: 2025-04-22 07:45:18
Score: 2.5
Natty:
Report link

Jarbler does that (compiling and packaging in a self executing jar file).

https://github.com/rammpeter/jarbler

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Peter Ramm

79585920

Date: 2025-04-22 07:42:18
Score: 3
Natty:
Report link

Take a look at the Altium user community forum - there is a script posted showing how to run an output job from script
https://forum.live.altium.com/#/posts/262333

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

79585909

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

The tailwind version has upgraded to v4, npx tailwindcss init -p this command will no longer work in the new update

Tailwind v4 requires @tailwindcss/vite for Vite projects, simplifying integration without manual PostCSS setup in most cases. Using tailwindcss directly as a PostCSS plugin is deprecated.

refer this for the brief installation steps for installing v4 or continuing with the old versions.

Stackoverflow Aricle

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jasvinder singh

79585906

Date: 2025-04-22 07:35:16
Score: 2
Natty:
Report link

Try

  1. Close all apps (VSCode, terminals, etc.)

  2. Manually delete node_modules and package-lock.json

  3. Open the terminal as Admin

    • npm cache clean --force
    • npm install
    • npm run dev
  4. If still stuck:

    • Use npx rimraf node_modules to force delete
    • Update Node.js and npm to latest LTS version
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ravindu96

79585905

Date: 2025-04-22 07:34:16
Score: 1
Natty:
Report link

To add on to above answer. Do ensure to remove dependency from entire dependency tree-

For Maven use - >

 mvn dependency:tree

Search for- org.eclipse.angus:angus-activation in result and identify parent of findings to use for exclusion from direct dependencies in your pom.xml

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

79585900

Date: 2025-04-22 07:33:16
Score: 3
Natty:
Report link

I guess those column numbers are wrong.

if the range is B3:E5, they are 2, 3, 4, 5.

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

79585898

Date: 2025-04-22 07:32:15
Score: 1
Natty:
Report link

In a testing scenario, a common issue arises when using mocking frameworks like Mockito to mock Spring Filters/Interceptors. If the filter.proceed() method isn't invoked or returns null, the subsequent web response logic isn't executed, resulting in an empty response body.

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

79585892

Date: 2025-04-22 07:29:15
Score: 2.5
Natty:
Report link

It looks like it actually may be possible using a feature introduced in Windows 10 Version 1803. Check out this article:

https://devblogs.microsoft.com/oldnewthing/20240201-00/?p=109346

I have not tried it myself.

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

79585884

Date: 2025-04-22 07:23:13
Score: 2.5
Natty:
Report link

I just had a similar issue. It turned out I was debugging a unit test, while in release mode and not debug mode. As a result a portion of the local variables wasn't shown in the local variables nor accessible by watch.

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

79585883

Date: 2025-04-22 07:23:13
Score: 0.5
Natty:
Report link

To display the pilot name, number of flights as "Number of Flights", and total pay as "Compensation", you can use a query that joins relevant flight and pilot tables, groups by pilot, and uses aggregation functions. The result helps track performance and earnings, especially useful for analyzing Flight Delay Compensation. Integrating tools like DelayDollars can further simplify managing pilot payments related to delayed flights, ensuring accurate and fair compensation based on the number and nature of their assignments.

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

79585882

Date: 2025-04-22 07:23:13
Score: 1
Natty:
Report link

Have you check the scaling factor? For mg/dL it will be 10.0 and for mmol/L is 18.0...

double getGlucoseValue(int fstByte, int sndByte) {
  return (((256 * fstByte) + (sndByte)) & 0x0FFF) / scaling_factor;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Emiliano

79585875

Date: 2025-04-22 07:18:12
Score: 0.5
Natty:
Report link

The issue was in the EncoderLayer where the residual calculations were done wrong. The correct way of calculating:

    def forward(self, x: torch.Tensor, src_pad_key = None):
        
        residual = x
        x = self.layer_norm1(x)
        
        if src_pad_key is not None: x = self.self_attn(x, src_pad_key = src_pad_key, use_self_attention = True)
        else: x = self.self_attn(x)

        # normalize and apply residual connections
        x += residual

        residual = x
        x = self.layer_norm2(x)
        x = self.mlp(x)
        x += residual

        return x

Another change was that we must always use self attention (instead of pooled attention) as otherwise the calculations won't work with the image encoder. [query = x]

The results look like this:

Cat similarity: tensor([[25.4132]], grad_fn=<MulBackward0>)
Dog similarity: tensor([[21.8544]], grad_fn=<MulBackward0>)
cosine cat/dog: 0.8438754677772522
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Yousef

79585866

Date: 2025-04-22 07:13:10
Score: 2.5
Natty:
Report link

" MapKit for AppKit and UIKit, MapKit JS, and Apple Maps Server API provide a way for you to store and share references to places that matter to your application: the Place ID. A Place ID is an opaque string that semantically represents references to points of interest in the world, rather than particular coordinates or addresses."

https://developer.apple.com/documentation/MapKit/identifying-unique-locations-with-place-ids

https://developer.apple.com/maps/place-id-lookup/

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

79585865

Date: 2025-04-22 07:12:10
Score: 4.5
Natty:
Report link

Looks like the "Use non-modal commit interface" option is no longer available in Webstorm 2025.1 :(
enter image description here

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

79585860

Date: 2025-04-22 07:08:09
Score: 0.5
Natty:
Report link

Ended up finding the issue:
1)First FTP on the fly does not work very well, for some reason password was not accepted with on the fly
2)Bucket-acl-private is incorrect even though I had specific permissions to edit the bucket


    S3_REMOTE=":s3,provider=AWS,access_key_id=$ACCESS_KEY,secret_access_key=$SECRET_KEY:$BUCKET"
    RCLONE_FLAGS="--s3-chunk-size 100M --s3-upload-cutoff 200M --retries 5 --low-level-retries 10 --progress --checksum"

    # Create a temporary named FTP remote
    rclone config create "$FTP_REMOTE_NAME" ftp host="$FTP_HOST" user="$FTP_USER" pass="$FTP_PASS" --obscure

#create a temporary directory to check the md5
    TEMP_DIR="./temp_md5"
    mkdir -p "$TEMP_DIR"

    if [ -z "$FTP_FOLDER" ]; then
        rclone copy "$FTP_REMOTE_NAME:md5.txt" "$TEMP_DIR" --quiet
        rclone copy "$FTP_REMOTE_NAME:$FTP_FILE" "$TEMP_DIR" --quiet
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Anthony Santana

79585855

Date: 2025-04-22 07:06:08
Score: 3
Natty:
Report link

apt install -y package

this would work but that way you have to write it in every command

try

yes | sh file.sh # this way you do not have to confirm on every command

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

79585850

Date: 2025-04-22 07:04:07
Score: 3.5
Natty:
Report link

Disable the RLS on both the referencing table and the refrenced table for now. It will solve this problem temporarily

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

79585843

Date: 2025-04-22 06:58:06
Score: 3.5
Natty:
Report link

The question is answered here:

https://forum.aspose.com/t/how-to-create-a-content-control-sdt-when-you-have-search-text-across-two-bullets/311568/10

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

79585822

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

I assume VS can't render in design mode custom types like local:PageBase
It might be due to lot of factors: abstract type, there is no default parametreless constructor, errors during resolving dependencies in design time.. and etc.

Try to change in xaml local:PageBase to base type: Page or UserControl(depends on what is your PageBase impelent) and specify the type in x:Class attribute (it should be non abstract with default constructor which will call InitializeComponents or if it custom control - specify DefaultStyleKey)

I assume after succeeded rebuild - you will see the content in design time.

Reasons:
  • Blacklisted phrase (1): what is your
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Anton

79585820

Date: 2025-04-22 06:42:02
Score: 2
Natty:
Report link

If you want to disable this altogether, you can select disable. This will give you the prompt to overwrite the existing files.

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

79585816

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

Below approach is working fine

import org.springframework.core.env.Environment;

public final class RandomConstants {
    public static String JWT_SECRET;
    public RandomConstants(Environment environment) {
        JWT_SECRET = environment.getProperty("your-env");
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Syed

79585802

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

There is a problem with express 5+, it's using path-to-regexp library, and they changed the rules.
Instead of using:

.get('/**', xxxx) / .get('/*', xxxx)


Use this workaround:

.get('/*\w', xxxx)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user13761567

79585801

Date: 2025-04-22 06:22:58
Score: 1.5
Natty:
Report link

Is there any reason you add @types/node inside the prebuild ? (You may not need that. you can remove the prebuild or remove installing @types/node in prebuild)

Remove npm install in build step

"build": "npx prisma generate && next build",

and try this version for the node types

"@types/node": "^20.8.10"
Reasons:
  • Blacklisted phrase (1): Is there any
  • Whitelisted phrase (-1): try this
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (0.5):
Posted by: Shane Dushyantha

79585796

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

=WEEKNUM(TODAY())=B2 applied to range B2:B5

Result:

enter image description here

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

79585790

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

AppPoolIdentity (Default) works because it uses the web server's machine account for delegation.

When you configured constrained delegation in AD, you likely did this for the web server's computer object (not the domain service account). This allows the machine account to "forward" the user's identity to SQL Server.

Your Domain Service Account isn't working because:

Constrained delegation isn’t configured for it – You set delegation for the web server, not the domain account.

Double-hop limitation – When using a domain account, you must explicitly allow it to delegate credentials to SQL Server via:

AD Delegation Settings: Mark the domain service account as "Trusted for Delegation" to the SQL Server’s SPN (MSSQLSvc).

Correct SPN Binding: Ensure the SQL Server’s SPN is properly registered in AD.

Fix:

Configure constrained delegation directly for the domain service account (not the web server) to the SQL Server’s SPN. This tells AD: "This service account is allowed to forward user credentials to SQL Server."

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

79585787

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

The output.css file is generated by Tailwind’s build process (typically via PostCSS or a build script), and generated files like this are usually not committed to version control. Here’s why: 1. Source of Truth: The actual source is your Tailwind config and the input CSS (usually input.css or something similar). output.css is just a compiled artifact. 2. Reproducibility: Anyone working on the project can run the build process locally (npm run build or similar) to regenerate output.css. No need to store it in Git. 3. Avoid Merge Conflicts: Since it’s a large, machine-generated file, any small change can cause massive diffs, which are messy and annoying to resolve during merges. 4. Deployment: On production servers, you’d usually compile static files as part of your deployment pipeline (collectstatic for Django and npm run build or similar for Tailwind).

Typical .gitignore example:

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

79585785

Date: 2025-04-22 06:12:55
Score: 2
Natty:
Report link

This seems to be any issue with permissions granted on your computer, One of the most common ways of getting rid of this problem is to remove and reinstall all dependencies and try to avoid adding any extra or unnecessary dependencies. Second if you are trying to remove node modules then first try manually as node sometimes get locked out of the system so that it does not delete any other important file of the system

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

79585780

Date: 2025-04-22 06:06:54
Score: 2
Natty:
Report link
  1. Load the file into Excel or Googlesheets.

  2. Insert column to the left.

  3. Insert a number range in this new left column.

  4. Copy both columns & paste into Notepad++

  5. Assuming you don't have tabs in your 50k lines of text...

  6. Find and Replace tabs with a single space.

Short of writing a script as others mention, this would be how I'd do it.

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

79585776

Date: 2025-04-22 06:04:53
Score: 3
Natty:
Report link
header 1 header 2
<img src="images/sample.jpg" /> cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Edris Anakonda

79585764

Date: 2025-04-22 05:53:51
Score: 2.5
Natty:
Report link

you can follow any one of below

scanf("%d%d",&(*p).real,&(*P).imaginary);

scanf("%d%d",&*p->real, &*P->imaginary);

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

79585758

Date: 2025-04-22 05:47:49
Score: 1.5
Natty:
Report link

Recommended Solution for WireGuard + Xcode 16 Compatibility Issues

After extensive troubleshooting, the only solution that worked was replacing the official WireGuard dependency with this forked and patched version:

https://github.com/groupofstars/wireguard-apple

Why This Works:

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

79585748

Date: 2025-04-22 05:38:47
Score: 0.5
Natty:
Report link

I like the idea of Alex's solution but I seem to fight the IDE on occasion when opening modules (random hangs etc) means I can have difficulty finding the code at that address in practice.

Another method I use is to log the Count variable in the FinalizeUnits method using a non breaking breakpoint.

enter image description here

I can then see what is the last number attempted before things blow up in the output window.

I then run again and change the breakpoint to break and on the condition of Count = <whatever the last count was>

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

79585746

Date: 2025-04-22 05:36:47
Score: 2.5
Natty:
Report link

Vless cannot be used directly as a system proxy. You need to configure a clash or v2ray locally that connect it to your Vless server, and then use the local socks or https proxy as a parameter of the Openai client.

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

79585744

Date: 2025-04-22 05:32:46
Score: 2.5
Natty:
Report link

As you described, the code is not thread-safe, which means you have to use something like a 'lock' to ensure that only one thread runs the piece of code at a time.

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