79709840

Date: 2025-07-22 03:32:50
Score: 1
Natty:
Report link

Sure! Here's a short and clear version:


You're seeing sliding and jittering because SAT gives you the smallest push direction, which isn’t always up. That makes the player slowly slide off slopes or flicker between grounded and not grounded.

✅ Quick Fixes:

  1. Use surface normals
    Check the angle of the surface you're on — if it's mostly flat (e.g., normal.y > 0.7), you're grounded.

  2. Stop gravity when grounded
    If grounded, skip applying gravity. Only re-enable gravity when you’re clearly off the ground.

  3. Stick to ground
    After collision, do a small downward raycast. If ground is right below, snap to it gently.

  4. Use a grounded timer
    Don’t toggle grounded every frame. Add a short delay (like 0.2s) before saying you're in the air.


This approach gives smoother movement and prevents sliding off small slopes.

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

79709836

Date: 2025-07-22 03:29:49
Score: 3.5
Natty:
Report link

If you're looking for executing the request with cURL in a forked system process, then I created a library for that, it's built for Laravel but you could copy the logic and use it in any PHP application. https://packagist.org/packages/oliverlundquist/laravel-http-background

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

79709833

Date: 2025-07-22 03:24:48
Score: 1
Natty:
Report link

perhaps write like this

SELECT a.FirstName AS Name, l.Restaurant AS Location, l.Date AS Date
FROM Account AS a 
JOIN SignUp AS s ON s.UserID = a.UserID
JOIN Luncheon AS l ON s.UserID = l.LuncheonID;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: alan g

79709827

Date: 2025-07-22 03:13:45
Score: 0.5
Natty:
Report link

Even when you tell Visual Studio to "Start without Debugging" (that's the Ctrl+F5 option), it's still doing a little extra work behind the scenes compared to just clicking on the .exe file in your folder. Think of it like this:

Visual Studio is Still Watching: When you launch from VS, Visual Studio is still running and acting like a parent to your program. It might be keeping an eye on it, managing the console window, or just generally making sure everything's in order. This tiny bit of oversight adds a small amount of overhead. When you just double-click the .exe, there's no "parent" program involved.

Resource Sharing: Visual Studio itself is a pretty big program and uses up some of your computer's resources (CPU, memory). When it's running in the background and launching your program, there might be a bit of competition for those resources. When you run the .exe directly, Visual Studio isn't actively doing anything with your program, so more resources are free for your code.

So, that 12ms you see from Visual Studio likely includes a bit of "Visual Studio overhead," while the 7ms you get from the .exe is closer to the true speed of your program.

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

79709824

Date: 2025-07-22 03:09:45
Score: 0.5
Natty:
Report link

Take a look at Crossbill LicenseNoticeAggregator on Github.

The tool iterate through NuGet packages and get the licensing notices in a single file for a product release. It respects the different way the licensing information saved in NuGet package including HTML to plain text conversion.

You can call if from a command line interface, from a PowerShell script or form a VisualStudio project. Mostly the task can be automated, but a small amount of packages have to be processed manually and put as a text file in a tool's directory for processing.

Disclaimer: I am the author of the tool.

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

79709822

Date: 2025-07-22 03:04:44
Score: 0.5
Natty:
Report link

Take a look at Crossbill LicenseNoticeAggregator on Github.

The tool iterate through NuGet packages and get the licensing notices in a single file for a product release. It respects the different way the licensing information saved in NuGet package: some of them include LICENSE.txt, some use LicensingUtl tag (with broken links!), some provide README file. Mostly the task can be automated, but a small amount of packages have to be processed manually and put in a tool's directory for processing.

The tool release version is compiled under .NET Core, so can be run on Linux.

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

79709821

Date: 2025-07-22 03:03:43
Score: 2
Natty:
Report link

Even if I tried these steps, I wouldn't be able to deploy the project.

PS D:\Projects\Personal project\Remainder\reminder-app> npm start

\> [email protected] start

\> react-scripts start

'react-scripts' is not recognized as an internal or external command,

operable program or batch file.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aneruth G.j.

79709816

Date: 2025-07-22 02:59:42
Score: 4.5
Natty: 4.5
Report link

surely you could then copy the message (nuke the original message), give it a new uid and date and then resync and you wil lthen have same messages with new dates?

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

79709814

Date: 2025-07-22 02:56:41
Score: 4.5
Natty: 4.5
Report link

Take a look at Crossbill LicenseNoticeAggregator on Github.

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

79709811

Date: 2025-07-22 02:52:40
Score: 3.5
Natty:
Report link

Read here. Welcome to Gboard clipboard, any text you copy will be saved here.

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

79709805

Date: 2025-07-22 02:43:38
Score: 0.5
Natty:
Report link

Recently worked through the same problem: iterate NuGet packages and get the licensing notices in a single file for a product release.

Solving it was tricky as soon as different NuGet packages provide licensing in a different way: some of them include LICENSE.txt, some use LicensingUtl tag (with broken links!), some provide README file. Mostly the task can be automated, but a small amount of packages have to be processed manually.

So, I have created a tool to use from command line or from a VisualStudio project. The tool crates a single file to include in a product release. Also it generates a log on package processing and allows to put licensing information for selected packages manually as a text file.

Source code and compiled version is available as Crossbill LicenseNoticeAggregator on Github.

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

79709796

Date: 2025-07-22 02:21:34
Score: 1
Natty:
Report link

Great article! Medical billing can be such a complex process, and it's always helpful to have clear insights into how it works. I appreciate the tips you shared, especially the emphasis on the importance of accurate coding and timely claim submissions. It really highlights how staying organized and up-to-date with billing procedures can make a big difference in streamlining payments and avoiding denials. Looking forward to more posts that break down these complicated topics!

The Nation's Largest Network of Medical Billers and Revenue Managers! At American Business Systems, we've built our business on integrity and old-fashioned family values. We’ve become successful by helping others just like you start their own medical billing businesses and reach their financial goals without sacrificing their family life to the stress and time pressures of a job.


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

79709790

Date: 2025-07-22 02:00:22
Score: 4
Natty: 4
Report link

Just simply restart your computer , thank me later!

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

79709786

Date: 2025-07-22 01:55:21
Score: 1.5
Natty:
Report link

This happens because Autosys won't allow a job to start running if the box above it is not running as well. So, even though your job starting condition was matching, it's blocked because the box job doesn't have any conditions or was not started.

Your issue would be solved if you moved the starting condition from the job level to the box level

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Caio César

79709778

Date: 2025-07-22 01:23:14
Score: 1.5
Natty:
Report link

You may pass the id with your route helper like this.

route('admin_post.edit', ['id' => $item->id])

You can check more details in this documentation.

Reasons:
  • Blacklisted phrase (1): this document
  • Low length (1):
  • Has code block (-0.5):
Posted by: Tatachiblob

79709770

Date: 2025-07-22 01:05:10
Score: 1.5
Natty:
Report link

Your starting model should come from tessdata_best (float), not tessdata (integer). You can download from following url and change parameter:

TESSDATA=/usr/local/src/tessdata_best

https://github.com/tesseract-ocr/tessdata_best

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Zhijian Jim Luo

79709767

Date: 2025-07-22 01:01:09
Score: 4
Natty:
Report link

I made a PHP library that implements a method to achieve just that, it's built for Laravel but you could just copy the logic and use it in any PHP application. https://packagist.org/packages/oliverlundquist/laravel-http-background

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

79709763

Date: 2025-07-22 00:54:07
Score: 1.5
Natty:
Report link

Checking against string.punctuation gets us most of the way there, but there are still edge cases. I have written a library (ispunct) which attempts to be complete.

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

79709760

Date: 2025-07-22 00:52:06
Score: 1.5
Natty:
Report link

I know this format as "mysql datetime format" because this is the default format used by mysql for the display and storage of datetime, and is the context where you will most commonly come across this format.

Mysql reference for datetime.

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

79709756

Date: 2025-07-22 00:46:05
Score: 3
Natty:
Report link

C:\Program Files\JetBrains\JetBrains Rider 2025.1.4\lib\ReSharperHost\windows-x64\dotnet\sdk\8.0.404 Mine is here

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

79709750

Date: 2025-07-22 00:30:01
Score: 3.5
Natty:
Report link

I made a PHP library that implements the "Way 1" method, it will give you great control over the request, it's built for Laravel but you could just copy the logic and use it in any PHP application. https://packagist.org/packages/oliverlundquist/laravel-http-background

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

79709737

Date: 2025-07-22 00:06:57
Score: 1
Natty:
Report link

I wonder if this is an Apple or sandbox/TestFlight problem. I also noticed that our server-to-server notifications don't trigger on the purchase-after-expiration. It doesn't seem like the flutter in_app_purchase plugin could affect that.

I just hope it isn't occuring in production.

I also came across this post in Apple Developer Support. Seems like it could be an Apple issue

https://developer.apple.com/forums/thread/789302

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

79709735

Date: 2025-07-22 00:01:55
Score: 2
Natty:
Report link

It should be like this on the server level

ALTER LOGIN "OldServerName\Windows_Login" WITH NAME="NewServerName\Windows_Login"

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

79709734

Date: 2025-07-21 23:59:55
Score: 3
Natty:
Report link

I had the exact same problem when sending webhook callbacks from our API, some remote servers were slow to respond. To solve this, I made this Laravel package that moves requests to the background and executing them with cURL in a forked process on the server. If you're not using Laravel, you can just copy the logic and use it in any PHP application. https://packagist.org/packages/oliverlundquist/laravel-http-background

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

79709733

Date: 2025-07-21 23:59:55
Score: 1.5
Natty:
Report link

Checking only odd numbers is basically skip over a prime "2". You can skip over 2/3/5/7 quite economically, which will save many divisions. The skip block size is 210 (=2x3x5x7), after which you repeat the skip pattern for the next block.

The max prime to test for an arbitrary number N is int(sqrt(N)). Furthermore, you only need to attempt division by primes in that range, but that requires memorizing all previously found primes (the number depends on your max number limit), which can exhaust the storage requirements. The least you can do is only divide by odd numbers in the range.

Last trick is to avoid computing sqrt(N) for each candidate by computing the P squared on the next prime after you passed the previous (P-1) squared. If you combine all the above, then you can further optimize this flow by computing the P squared for the skip blocks. For example, skipping 2/3/5/7 has a repeatable pattern in blocks of 210. For large N (N>211^2), the distance between (P-1)^2 to P^2 will span multiple skip blocks. It's cheaper in computer resources to count the blocks before advancing to the next P squared.

If you have a choice of compute cores to run your program, choose the one that offers early termination of the divide algorithm. Obviously a VLIW core is a big plus.

Have fun!

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

79709730

Date: 2025-07-21 23:57:53
Score: 6.5
Natty:
Report link

Use the information from this link. https://medium.com/@MYahia2011/how-to-restrict-access-to-your-flutter-app-if-device-time-is-manipulated-8d62ec96d4e1

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michael Orume

79709716

Date: 2025-07-21 23:29:47
Score: 0.5
Natty:
Report link

on archlinux I found them in $ENV:XDG_DATA_DIRS

so for $env:LOCALAPPDATA you can

 $IsWindows ? $env:LOCALAPPDATA : $ENV:XDG_DATA_DIRS.Split([IO.Path]::PathSeparator).where({ $_ -like "*local*"})[0]

which returns /usr/local/share on linux

you can do workarounds like these :)

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

79709714

Date: 2025-07-21 23:27:47
Score: 0.5
Natty:
Report link

I ended up calling isStdoutReady() (below) before printf() and so far it appears to work. I have tested it with slow/intermittent upload connectivity to remote terminals and also manually by holding the scroll bar on Putty windows for 40+ sec to simulate a connectivity dropout.

Pros

Cons

@Kaz and @LuisColorado if you can edit your answers and combine with a poll() method like this or similar, I can accept and delete this answer.

int isStdoutReady() {

struct pollfd pfd;
int ret_val;

   pfd.fd = STDOUT_FILENO;
   pfd.events = POLLOUT;
   pfd.revents = 0;

   if ((ret_val = poll(&pfd, 1, 1)) > 0) {  /* timeout (in msec) is 3rd param; if set to zero will return immediately */

      if (!(pfd.revents & POLLOUT)) return 0;  /* if POLLOUT not set then stdout not ready for writing */

      if (pfd.revents & (POLLERR | POLLHUP | POLLNVAL)) return -1;  /* handle errors or hang-ups */
   }
   else if (ret_val < 0) return -1;  /* error value:  EINVAL, EAGAIN, EINTR */
   else return 0;  /* poll() return value zero is a time-out */

   return 1;  /* stdout ready for writing */
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Kaz
  • User mentioned (0): @LuisColorado
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jeff Brower

79709707

Date: 2025-07-21 23:16:44
Score: 4
Natty:
Report link
Rundll32.exe user32.dll,SwapMouseButton
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: NLine

79709693

Date: 2025-07-21 22:56:40
Score: 5
Natty:
Report link

Hi guys my name is osiloko Francis ochapa I ma from Nigeria is a good time to come over and watch the game with you guys my name is osiloko Francis ochapa I ma from Nigeria is

Reasons:
  • RegEx Blacklisted phrase (1): Hi guys
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Osiloko Francis

79709687

Date: 2025-07-21 22:46:38
Score: 1.5
Natty:
Report link

Just in case anyone else gets here looking for the same thing in VS Code:

Right-click on the desired line of code and select "Jump to cursor".

There does not appear to be a keyboard shortcut for that in VS Code.

Happy coding!

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

79709684

Date: 2025-07-21 22:41:37
Score: 0.5
Natty:
Report link

Since StackOverflow endorses answering your own question: I have the answers after deploying a cluster with horizontally scaled writes myself. There weren't any good how-to guides on this so here goes.

Brief preamble: Citus deprecated sharding, what they also call "statement based replication" (not to be confused with statement based replication in general) years ago. HA and fault tolerance are now achieved by 1. having a coordinator cluster and 1+ worker clusters, and 2. bringing your own cluster admin tools like Patroni. This migration solved subtle but serious deadlock scenarios plaguing the sharding/statement-based replication strategy.

Terminology:

Citus' documentation often uses "the coordinator" or "a worker" to refer to the coordinator leader or to a worker group's leader. I'll try to avoid that ambiguity below.

Citus mostly deals only with the leader for each group. The main exception to this is the citus.use_secondary_nodes GUC. Another exception is Citus has a metadata table with all nodes tagged with their leader or follower status. This table is used to direct DDL and DML statements to the correct node within each group/cluster. Your bring-your-own HA solution such as Patroni is responsible for updating this table correctly.

Concise Guide:

Adding worker clusters to scale writes likely seems counterintuitive. There are two reasons for this:

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: IronWidget

79709678

Date: 2025-07-21 22:31:35
Score: 1
Natty:
Report link

If anyone else comes here and is using nvim-lspconfig then:

in lua/plugins/ add a file with this spec:

return {
  "neovim/nvim-lspconfig",
  opts = function(_, opts)
    opts.diagnostics.virtual_text = false
    return opts
  end,
}

That did it for me.

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

79709663

Date: 2025-07-21 21:57:28
Score: 0.5
Natty:
Report link

For others coming across this, it is better to run astro check in CI. It doesn't require running astro sync and also checks .astro files, config etc. as well as running type checks.

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

79709659

Date: 2025-07-21 21:41:25
Score: 2
Natty:
Report link

Does this help?

struct ContentView: View {
    @State private var timer = Timer.publish(every: 1, on: .main, in: .common).autoconnect()
    @State private var count = 59
    
    var body: some View {
        Text(count < 10 ? "00:0\(count)" : "00:\(count)")
            .onReceive(timer) { time in
                count -= 1
                print(count)
                
                if count == -1 {
                    count = 59
                }
            }
    }
}
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: user17852191

79709653

Date: 2025-07-21 21:30:22
Score: 1.5
Natty:
Report link

I realized what I was doing wrong (or incomplete).
The jacoco-it.exec file that was generated had all the information, but it was not being published to target/site/index.html file for external classes, which was being generated in 'report-integration' goal.

I had to run a separate command using jacococli.jar on the generated .exec file and specify my classfiles and sourcefiles. That gave me the coverage that I was looking for.

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

79709649

Date: 2025-07-21 21:25:21
Score: 0.5
Natty:
Report link

Querying a WFS endpoint like this only makes sense if you know your addresses are well-structured and match exactly what's available in that WFS. It's not a search endpoint.

You probably need a geocoding API. There are lots to choose from. In Python, geopy is an abstraction over several geocoding APIs. The one to pick will depend on things like how many addresses you have to geocode.

They will probably univesally supply coordinates back to you in latitude/longitude (WGS84 datum), which you will need to reproject to NZTM coordinates (i.e. convert ESPG:4326 to EPSG:2193). For this there is pyproj.

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

79709648

Date: 2025-07-21 21:22:20
Score: 2.5
Natty:
Report link

If you hold down shift before clicking on the attribute you want to delete, Viseo will highlight the invisible paragraph marker that causes the entity box to grow in size along with the text, rather than just the text itself

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joshua O'Neill

79709645

Date: 2025-07-21 21:16:19
Score: 2.5
Natty:
Report link

It seems that the Helm was interpreting badly and did not take the values, in the case of Loki they must go in loki.loki.
This is confusing because it does not happen for grafana, neither mimir nor tempo.

This link helped me a lot https://github.com/daviaraujocc/lgtm-stack/blob/main/helm/values-lgtm.local.yaml

Reasons:
  • Blacklisted phrase (1): helped me a lot
  • Blacklisted phrase (1): This link
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: user60108

79709642

Date: 2025-07-21 21:03:16
Score: 1
Natty:
Report link

Nowadays it can be achieved using @RestQuery annotation

 @GET
    Set<Extension> getByFilter(@RestQuery Map<String, String> filter);

Each Map entry represents exactly one query parameter

This is example from official documentation to Quarkus 3.24.4
https://quarkus.io/guides/rest-client#query-parameters

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Илья Горбачёв

79709638

Date: 2025-07-21 20:55:14
Score: 0.5
Natty:
Report link

The Transitland website and APIs can be used to find many GTFS Realtime feeds. Here's the YRT GTFS Realtime feed you seem to be looking for: https://www.transit.land/feeds/f-yrt~rt

And here are its two source URLs:

As others have already shared, to inspect those GTFS Realtime endpoints you do need to parse them from protocol buffer format. It's binary, so it can't be displayed in a text editor or browser without intermediate processing.

If you want to quickly inspect it, the Transitland website will let you view it as JSON:

screenshot of GTFS Realtime vehicle positions as JSON on Transitland website

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Drew Dara-Abrams

79709636

Date: 2025-07-21 20:54:13
Score: 6
Natty: 5
Report link

enter image description here Can you change that to a rgb to bgr.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kyran Moore Alt

79709632

Date: 2025-07-21 20:53:13
Score: 0.5
Natty:
Report link

When I run this and look in the .log file I see

l.185       cat("μ 
                    =", mu, "\n")
The document does not appear to be in UTF-8 encoding.
Try adding \UseRawInputEncoding as the first line of the file
or specify an encoding such as \usepackage [latin1]{inputenc}
in the document preamble.
Alternatively, save the file in UTF-8 using your editor or another tool

Replacing μ and σ fixes the problem

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When I
  • Low reputation (0.5):
Posted by: Stephen

79709611

Date: 2025-07-21 20:31:07
Score: 0.5
Natty:
Report link

If you use WScript.Shell's Run function, you can do the following:

var WshShell = new ActiveXObject("WScript.Shell");

WshShell.Run("cmd /c reg add HKLM\ExampleKey", 0, 0);

It may need tweaking, but you can integrate an <INPUT type="text"> tag to provide a means of input for the user to type in a registry key name, or to search, or to add a new DWORD etc.

I agree with the other answer, it provides internal (built-in to Windows API) registry functions, not external commands like reg.exe (an executable file).

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

79709596

Date: 2025-07-21 20:20:05
Score: 2.5
Natty:
Report link

It looks like you've shared a link to the Respec GitHub repository. If you're looking for specific information or assistance related to Respec, feel free to let me know! I can help with understanding how to use it, setting it up for documentation purposes, or answering any questions you may have about it.

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

79709584

Date: 2025-07-21 20:09:57
Score: 9.5
Natty: 5
Report link

tengo el mismo problema de 4.2.0 Design: Minimum Functionality si alguien me puede ayudar y orientarme se lo agradeceria muchisimo! de https://testflight.apple.com/join/UrGEAbWp

Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (2): tengo
  • RegEx Blacklisted phrase (2.5): mismo
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Carlos V. Pinto R.

79709583

Date: 2025-07-21 20:09:56
Score: 10.5
Natty: 6.5
Report link

Did you manage to find a solution to your problem? I'm currently running into something similar. Thanks in advance

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (3): Did you manage to find a solution to your problem
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Jan Jürgen Luzgin

79709581

Date: 2025-07-21 20:06:54
Score: 2
Natty:
Report link

Alternatively, use switch

git switch -c <new_branch>

git push -u origin <new_branch>

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

79709572

Date: 2025-07-21 19:59:52
Score: 3
Natty:
Report link

Test on real devices — emulators sometimes return false even after saving the video successfully.

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

79709567

Date: 2025-07-21 19:54:51
Score: 3.5
Natty:
Report link

Understanding the diff. btw 'size()' and 'count()' by implementing 'Wine-Review' example.

At first lets import the dataset, and see how it looks like

enter image description here

  1. the most common diff is count does not include any NaN values, but size does

  2. Type and Dimension:

    the dataset contains a number of tasters,

    Question: How can we check , who are the most common reviewers in the dataset?

    ans:1. count(), 2.size()

    1.count()

    enter image description here

    if you see the o/p , reviews_by_count returns a dataframe, which is ndarray.

    at first we group the data by same taster_name, then for groups contains every columns except in index(taster_name)

    let's see the type:

    enter image description here

    as you see it returns a DataFrame as a object

    2.size()

    enter image description here

    as u see it didn't return any multiple columns , only one column,

    Let's check the type:

    enter image description here

    Well, it returns a series(1D object)

  3. Usage at diff. time****

    Question: What combination of countries and varieties are most common?Create a Series whose index is a MultiIndexof {country, variety} pairs. For example, a pinot noir produced in the US should map to {"US", "Pinot Noir"}.Sort the values in the Series in descending order based on wine count

enter image description here

as we see it returns a DataFrame , where it is a multi index country and variety.

as per the question, we have to sort by values

enter image description here

as you see, i try to implement sort_values() in decending order, at first i did not give any column, so it

throws me error, but in 2nd time i sort respective to price column,

it shows the fundamental structure of count, bco'z it is a ndarray , it needs a specific col among all columns

but in case of size():

enter image description here

as you see it returns only a column,

and we can sort it without passing by='' parameter, bco'z it has only 1 column to sort.

Pls, give a upvote if you like my explanation !!

Reasons:
  • Blacklisted phrase (1): How can we
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (0.5): upvote
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Aniket Biswas

79709561

Date: 2025-07-21 19:47:49
Score: 3
Natty:
Report link

Well, well...

Assuming we have branch AbadDeleted and branch Bgood and we want to merge branch AbadDeleted to into branch Bgood. Some may say why bad branch to good branch. Well, I made changes locally that was merged remotely and deleted remotely, so it is "bad" local branch. I have new remote Bgood branch, so I pulled it to local. Now I want to merge my changes from AbadDeleted to new Bgood branch.

  1. On branch AbadDeleted: switch to branch Bgood

  2. On branch Bgood: git merge branch AbadDeleted.

  3. Now I have to go to the each changed file (they are RED) and resolve manually conflicts :( :( :(

    I have so many files changed about 50, all of them have the manual conflicts that is easier for me to rename local folder, pull fresh new clone from remote, then copy all the files from renamed folder to the new folder and push back. Nice clean and understandable from Windows perspective.

Reasons:
  • Blacklisted phrase (1): :(
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Meet Googl

79709547

Date: 2025-07-21 19:34:46
Score: 1
Natty:
Report link

According to experimentation, to silence errors in tests in the "Problems" section of VS Code, what works is setting

{
    "rust-analyzer.check.allTargets": false
}

though I'm not yet sure if that may perhaps be a little too strict and perhaps will disable other configurations as well

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

79709545

Date: 2025-07-21 19:33:45
Score: 1.5
Natty:
Report link

To support both blocking and fire-and-forget HTTP requests clearly, the best approach is to use Python’s asyncio with an explicit flag like fire_and_forget=True. This way, the default behavior remains blocking—ensuring the response is available before continuing—while still giving developers the option to run non-blocking background tasks when needed. Using asyncio.create_task(...) allows you to fire off tasks without waiting for them, and wrapping this in a simple HttpClient class makes the code clean and easy to use. It’s also a good idea to document this clearly so that others know what to expect and don’t get surprised by silent failures in fire-and-forget mode.

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

79709537

Date: 2025-07-21 19:21:42
Score: 0.5
Natty:
Report link

Also fell into this scenario recently. The setup was:

The classes were wrapped in ‘@available’, but similar to you, this didn’t solve the import issue - making the app crash instantly. I had to move my code that interacts with SwiftData into its own target.

I found a solution which was:

In the Framework, I used ‘#if canImport(X)’, and in the Application, I added ‘SwiftData’ as an optional link.

Now runs on older versions of iOS that don’t support SwiftData.

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

79709536

Date: 2025-07-21 19:21:42
Score: 4
Natty: 4
Report link

Amigo eu faco com python creio que seja a mesma logica.

java -jar %USERPROFILE%\Documents\robo-\docs\sikuli-ide\sikulixide-2.0.5-win.jar -r %USERPROFILE%\Documents\robo\minha_app\unico.sikuli

dessa forma eu chamo meu projeto inteiro. espero que te ajude em algo.

Reasons:
  • Blacklisted phrase (2): espero
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Camilo Cardoso

79709530

Date: 2025-07-21 19:13:39
Score: 1.5
Natty:
Report link

This type of error generally happens when you abruptly kill your running instance of mongo-db.

For example if you are using mongo-db version 8.0 then to avoid this error first -

  1. Stop the mongo-db service

    brew services stop [email protected]

  2. Start the mongo-db service

    brew services start [email protected]

This should resolve the issue.

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

79709523

Date: 2025-07-21 18:56:36
Score: 1.5
Natty:
Report link

For me the following CSS Style fixed it, I was trying to use Mojangles and it was blurring it but this stopped all of the blurring:

font-synthesis-weight: none;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 8Crafter

79709519

Date: 2025-07-21 18:54:35
Score: 0.5
Natty:
Report link

The pixel misalignment is likely due to sub-pixel rendering caused by the image height not aligning with the base grid (e.g., 4px). When an image has a height that’s not divisible by the grid size, or lacks display: block, it can introduce small layout shifts, especially in combination with default margins on <figure>. To fix this, explicitly set the image height to a multiple of your grid unit, use img { display: block; margin: 0; }, and ensure all related CSS variables affecting gradient position are consistent.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: vijaykumar orsu

79709507

Date: 2025-07-21 18:42:32
Score: 3
Natty:
Report link

in vi mode:

<esc>\[A]

for cap A only

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

79709503

Date: 2025-07-21 18:39:32
Score: 2
Natty:
Report link

SELECT

(SELECT SUM(rent) from income) AS total_income,

(SELECT SUM(cost) from expenses) AS total_expenses,

(SELECT SUM(rent) from income) - (SELECT SUM(cost) FROM expenses) AS net_total;

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ALOK KUMAR SINGH

79709497

Date: 2025-07-21 18:31:29
Score: 1
Natty:
Report link

This timeout issue may also be caused by the "Connection Idle Timeout" set in the load balancer. The clickhouse-connect python library (v0.8.18) doesn't have a mechanism to keep the connection out of the "idle" state.

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

79709495

Date: 2025-07-21 18:28:28
Score: 1
Natty:
Report link

I was having a similar issue:

Uncaught (in promise) SyntaxError: The requested module '/_nuxt/node_modules/@supabase/supabase-js/node_modules/@supabase/postgrest-js/dist/cjs/index.js?v=4c501d24' does not provide an export named 'default' (at wrapper.mjs?v=4c501d24:1:8)

The only thing that finally cleared up this error for me was adding this in my nuxt.config.ts

  vite: {
    optimizeDeps: {
      include: [
        "@supabase/postgrest-js",
      ],
    },
  },

Not sure if this will be helpful since it's not exactly the same issue. I'm fairly new to Nuxt, so I can't really give a good explanation for why this works on my end. Happy coding!

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

79709483

Date: 2025-07-21 18:18:26
Score: 0.5
Natty:
Report link

You don't need an additional element or Javascript any longer. Use fit-content. For headings, for example:

h1 {
    inline-size: fit-content; /* or `width` in LTR and RTL reading */
    margin-inline: auto;
}

See a demo on Codepen.

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

79709476

Date: 2025-07-21 18:15:24
Score: 3.5
Natty:
Report link

If you are using the databricks CLI, you can get the dashboard id the same way you're getting a notebook id:
dashboardsCommands for modifying legacy dashboards:create, delete, get, list, restore, update

https://docs.databricks.com/aws/en/dev-tools/cli/commands

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

79709472

Date: 2025-07-21 18:12:24
Score: 1
Natty:
Report link

You can use any tool who are giving the instagram and facebok feed api.

I found https://taggbox.com/blog/instagram-api/

Check how you can leverage the same

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

79709469

Date: 2025-07-21 18:10:23
Score: 3
Natty:
Report link

The AWS Toolkit seems to be working after installing both AWS Toolkits and running the manual prerequisite setup.

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

79709458

Date: 2025-07-21 17:54:18
Score: 3.5
Natty:
Report link

Update for v5: use placeholderData

https://tanstack.com/query/latest/docs/framework/react/guides/placeholder-query-data#placeholder-data-as-a-function

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

79709454

Date: 2025-07-21 17:48:17
Score: 5.5
Natty:
Report link

Have there been any new features or changes related to upgrading 2sxc apps in recent versions?

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

79709439

Date: 2025-07-21 17:34:14
Score: 3
Natty:
Report link

top: (y / image-height) * 100%

left: (x / image-width) * 100%

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

79709432

Date: 2025-07-21 17:27:12
Score: 0.5
Natty:
Report link
import os
for document in os.listdir('.'):
  if '.pdf' in document:
    print('Candidate:',document)
  if document[-3] == 'pdf':
    print('Found:',document)

Your if returns just one letter, so all the if block is ignored.

P.S. If it solves your problem, maybe click on "Best answer".

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

79709429

Date: 2025-07-21 17:25:12
Score: 2
Natty:
Report link

Yeah in React development, modifying files within the public folder during development can trigger an automatic page refresh, even if the changes are unrelated to the fetch or form logic. This is because the public folder is typically watched for changes by the development server and triggers a reload when detected.

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

79709426

Date: 2025-07-21 17:23:11
Score: 1
Natty:
Report link

In PyCharm 2025.1.3.1

Settings --> Editor --> Color Scheme --> Editor Gutter

Added Lines

Modified Lines

Deleted Lines

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

79709425

Date: 2025-07-21 17:22:11
Score: 3
Natty:
Report link

what about if you change to server garbage collection instead of workstation garbage collection -- IN Server Garbage the collection is not done at short intervals because the assumption that server objects get reused.

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

79709423

Date: 2025-07-21 17:22:11
Score: 3
Natty:
Report link

The solution was using a different ArgoCD project. Mine was not allowing creation of Application and ApplicationSet objects.

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

79709420

Date: 2025-07-21 17:21:11
Score: 0.5
Natty:
Report link

If you import col from sqlmodel and wrap the relevant columns with col, the type errors should disappear, at least for the ones in your example:


from sqlmodel import Field, SQLModel, select, col


class TableX(SQLModel, table=True):
    id: int | None = Field(default=None, primary_key=True)
    x: str


class TableY(SQLModel, table=True):
    id: int
    y: str
    z: str


query = (
    select(TableX)
    .join(TableY, col(TableX.id) == col(TableY.id))
    .where(col(TableY.z).in_(["A", "B", "C"]))
)

See:

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

79709404

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

I ended up using tricontourf which seems to work ok.

using CairoMakie
samplebjs = [[cos(pi/3), sin(pi/3) ], [cos(2*pi/3), sin(2*pi/3)] ]
testN=100
sampleLattice = [ [i,j] for i in 1:testN, j in 1:testN   ]

sampleLattice = [ sampleLattice[j] for j in 1:length(sampleLattice)  ]

xs = [ 1/testN*sum(v.*samplebjs)[1] for v in sampleLattice          ]
ys = [ 1/testN*sum(v.*samplebjs)[2] for v in sampleLattice          ]

zs = [ 1 for v in sampleLattice]
f, ax, tr = tricontourf(xs, ys, zs)

scatter!(xs, ys, color = zs)

Colorbar(f[1, 2], tr)

display(f)

Which gives:

enter image description here

As desired (colorbar wonky, because z=1 everywhere. Seems to work ok when that is not the case)

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

79709402

Date: 2025-07-21 17:03:06
Score: 3
Natty:
Report link

Use tailwind.config.js instead of tailwind.config.ts

That might solve your problem.

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

79709397

Date: 2025-07-21 16:58:05
Score: 3.5
Natty:
Report link

Okay, so, solved. Instance count is supposed to be 1 in drawPrimitives (not vertices / 3). Use a semiphore to notify the draw loop when to start. And don't reuse _uniforms.

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

79709390

Date: 2025-07-21 16:56:04
Score: 0.5
Natty:
Report link

I found the answer. its because of the DNS.

I changed the DNS on the emulator.

temporary solution emulator -avd [emulator_name] -dns-server 8.8.8.8 (this will launch your emulator with the provided DNS)

If you want to always launch with the same dns,

  1. Go to C:\Users\<YourUsername>\.android\avd\

  2. Open your emulator_name folder

  3. Edit the file config.ini using a text editor

  4. Add the to bottom of the list dns-server=8.8.8.8

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: A for android

79709389

Date: 2025-07-21 16:56:04
Score: 2
Natty:
Report link

Great post! Your tips really highlight the importance of choosing the right products for <a href="https://vibrantskinbar.com/blog/best-natural-skin-care-routine/">Best Natural Skin Care Routine</a>. 🌿 I recently came across this helpful guide that breaks down how to build an effective routine using natural ingredients. Thought you and your readers might enjoy it too!

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

79709376

Date: 2025-07-21 16:41:01
Score: 1
Natty:
Report link

When i set RetainArgumentTypes to true in FunctionChoiceBehavior it start sending parameters in correct format.

var executionSettings = new OpenAIPromptExecutionSettings
{
    Temperature = 0,
    //FunctionChoiceBehavior = FunctionChoiceBehavior.Auto()
    FunctionChoiceBehavior = FunctionChoiceBehavior.Auto(options: new() { RetainArgumentTypes = true })
};
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When i
  • Low reputation (0.5):
Posted by: Gürkan

79709369

Date: 2025-07-21 16:36:00
Score: 2
Natty:
Report link

docker ps

docker exec -it <id> sh

Then inside the container, go to the directory

try this

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sandeep Vishwa

79709363

Date: 2025-07-21 16:30:58
Score: 0.5
Natty:
Report link

1. Install the Windows Mobile 6.5 Developer Tool Kit (DTK)

This is the most critical step. The DTK contains the emulators, libraries, and framework versions needed to develop for Windows Embedded Handheld 6.5.

Download: You need to download and install the Windows Mobile 6.5 Developer Tool Kit. You can typically find this by searching for msi files named WindowsMobile65DeveloperToolKit.msi

Installation: Run the installer. It will integrate with your existing Visual Studio 2008 installation, adding new project types and, most importantly, the correct emulators.

2. Select the Correct Emulator in Visual Studio

Once the DTK is installed, you will have new options in your deployment device list.

In Visual Studio, when you go to deploy your application (as seen in your second screenshot), the device list should now contain entries like "Windows Mobile 6.5 Professional Emulator" or "Windows Mobile 6.5 Classic Emulator"

Choose the WEH 6.5 emulator, not the Pocket PC 2003 one. These newer emulator images come with the .NET Compact Framework 3.5 (which is backward compatible with 2.0) pre-installed, which will resolve your ".NET Compact Framework v2.0 could not be found" error

3. Why Your Other Attempts Failed

.NET CF 2.0 Error: The base "Pocket PC 2003" emulator image is a clean OS without the .NET runtime. Your app needs it, so the deployment fails. Using the correct WM 6.5 emulator solves this

Upgrade Patch Error: The "upgrade patch" error occurs because you were likely trying to install a Service Pack or update for the .NET Compact Framework 2.0 SDK on your computer, but the base version of that SDK was not installed. Installing the full WM 6.5 DTK is the correct approach

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

79709360

Date: 2025-07-21 16:29:58
Score: 1
Natty:
Report link

Solution with Explanation

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

79709350

Date: 2025-07-21 16:24:57
Score: 1
Natty:
Report link

I used this and it worked, looks like the # is a special character:

numberinput.number_input(“\# of Items”, format=“%1f”, key=“input”)
Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: mmv456

79709349

Date: 2025-07-21 16:24:57
Score: 0.5
Natty:
Report link

There is a pixi lock --check command.
https://pixi.sh/latest/reference/cli/pixi/lock/#options

  • --check

    Check if any changes have been made to the lock file. If yes, exit with a non-zero code

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

79709318

Date: 2025-07-21 16:02:47
Score: 9
Natty:
Report link

OP, did you get a resolution to this? We may have the same issue and have similar symptoms moving from 10.x to 11.x.

Reasons:
  • RegEx Blacklisted phrase (3): did you get a
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: DMT

79709306

Date: 2025-07-21 15:51:44
Score: 1
Natty:
Report link
protected override void OnError(EventArgs e) .....


private void Application_Error(object sender, EventArgs e)
{
    if (GlobalHelper.IsMaxRequestExceededException(this.Server.GetLastError()))
    {
        this.Server.ClearError();
        this.Server.Transfer("~/error/UploadTooLarge.aspx");
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Avdhesh Kumar

79709303

Date: 2025-07-21 15:47:43
Score: 2
Natty:
Report link

Try

ENTRYPOINT ["java", "-Dquarkus.config.locations=file:///opt/<OUR_DIR>/quarkus_install/config/application-config.properties,file:///opt/<OUR_DIR>/quarkus_install/config/application-sensitive-config.properties"]

You specified the whole command line as executable name

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

79709302

Date: 2025-07-21 15:45:42
Score: 2
Natty:
Report link

Use Apple's MDM Protocol and sign up for the Apple Developer Program to create an iOS MDM application.

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

79709272

Date: 2025-07-21 15:26:38
Score: 3
Natty:
Report link

I got the same problem too. I was able to successfully install with uv pip instead of uv add.

uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu

From uv's official documentation https://docs.astral.sh/uv/guides/integration/pytorch/#the-uv-pip-interface

Reasons:
  • Blacklisted phrase (1): I got the same problem
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: the0star

79709246

Date: 2025-07-21 15:02:32
Score: 2
Natty:
Report link

The issue was with bad error messaging. I discovered the issue was that I was creating a DeleteCommand instead of a DeleteObjectKeyCommand.

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

79709244

Date: 2025-07-21 15:01:30
Score: 8.5
Natty: 4.5
Report link

I am currently facing the same issue.

Here is the API call response.

Could you please advise?

Regards.

{
    "errors": [
        {
            "code": 38189,
            "title": "Internal error",
            "detail": "An internal error occurred, please contact your administrator",
            "status": 500
        }
    ]
}
Reasons:
  • Blacklisted phrase (1): Regards
  • RegEx Blacklisted phrase (2.5): Could you please advise
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Falilou

79709240

Date: 2025-07-21 14:59:30
Score: 1
Natty:
Report link

this is best method when you know the exact size of the array when you're writing the code. You use nested curly braces { } to define the values for each dimension.

The syntax is type arrayName[depth][height][width]

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

79709229

Date: 2025-07-21 14:49:27
Score: 2.5
Natty:
Report link

disableLayout: true

when configuring the reveal will basically tell it to f-off with its own paddings and margins and then you can override stuff with your own styling.

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

79709225

Date: 2025-07-21 14:48:27
Score: 1.5
Natty:
Report link

I've dug the documentation for a while, before I found this
https://docs.pyrogram.org/topics/advanced-usage
and this
https://docs.pyrogram.org/telegram/functions/messages/get-dialog-filters#pyrogram.raw.functions.messages.GetDialogFilters

Combinig together, I've got following:

from pyrogram import Client
from pyrogram.raw import functions

app = Client("session_name", api_id, api_hash)


async def main():
    async with app:
        r = await app.invoke(functions.messages.GetDialogFilters())
        print(r)


app.run(main())

(displays folders in console)

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

79709219

Date: 2025-07-21 14:44:26
Score: 1.5
Natty:
Report link

I would definitely enable the cache at integration level and security at final views / views exposed to the clients. Summaries may be an option as well.

You can refer to https://community.denodo.com/kb/en/view/document/Fine-grained%20privileges%20and%20caching%20best%20practices

Please keep in mind enabling the cache will result in duplicating the data, which may be sometimes in contradiction with the fact your data is sensitive

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

79709212

Date: 2025-07-21 14:32:23
Score: 2
Natty:
Report link

If you’re getting linking errors with mbedTLS functions in Zephyr, it usually means the mbedTLS library is not enabled in your project settings. To fix this, you need to turn on the mbedTLS option in your project configuration so Zephyr includes the library when building. After enabling it, clean and rebuild your project to make sure the linker finds the mbedTLS functions properly.

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

79709195

Date: 2025-07-21 14:19:20
Score: 0.5
Natty:
Report link

I don't believe you can use images like that within an option. I know you can use emojis so maybe try that if you can. Otherwise it would be I believe just easier to build your own "select".

In the MDN docs you can see an example using emojis but they never listed the possibility of using images (or at least I didn't see it).

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

79709189

Date: 2025-07-21 14:15:19
Score: 1.5
Natty:
Report link

Yes, P.Rick's answer is right. In my case, I just can not install the right version with any changes on LINUX UBUNTU 20.04 with Nvidia RTX 4090, and the cuda version is 11.3. Conda has some bugs and pip can not solve the installation problem either. In my case, I just install the version on https://pytorch-geometric.com/whl/torch-1.11.0%2Bcu113.html to solve the problem. I believe there are some problems with pip's dependency. Because in my case, the default package is 0.6.18. However, in the link above, only 0.6.15 is presented. And in my case, the problem is perfectly solved with 0.6.15.

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