79610997

Date: 2025-05-07 16:19:19
Score: 8 đŸš©
Natty:
Report link
module.exports = {
content: [
  "./src/**/*.{html,ts}",
  "./node_modules/flusysng/**/*.{html,ts}",
],
corePlugins: {
  preflight: false,
}

}

Hi sir, did you find anser. i use this but it not work for me. can you help me about that.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): did you find
  • RegEx Blacklisted phrase (3): can you help me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MD HOSSEN RANA

79610986

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

I am posting this in case somebody finds it useful. I created a new SQL migration with the following SQL code and I was able to fetch up to 10 000 entries with a single select.

ALTER ROLE authenticator SET pgrst.db_max_rows = 10000;
NOTIFY pgrst, 'reload config';

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

79610984

Date: 2025-05-07 16:13:16
Score: 4.5
Natty:
Report link

I found it!

Grant_type in the request is not 'client_credentials' but 'password'.

Best regards

Sergio

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: maccarilab

79610972

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

Well, trying to create a minimal reproducible example actually solved my problem! There’s actually just some absolutely positioned element in the way – if I remove that, the code works fine. Thank you @C3roe!!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @C3roe
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Anna Kleiner

79610971

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

Postman on Windows 11 may not properly access client certificates from the Windows Certificate Store like Windows 10 does. To fix it, export your .pfx to .crt and .key files using OpenSSL, then manually add them in Postman's Settings > Certificates. Also, try running Postman as Administrator.

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

79610969

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

In the Appylar documentation, it says:

Make sure to check the device size before setting the "banner_height" property to "90". For devices with screens smaller than 728 device independent pixels (points), always use banners with the height "50". Otherwise, the banner size will default to 320 x 50 points.

Based on your screenshots, it looks like your device is narrower than the 728 device independent pixels needed to show banners with the height 90px. The fact that the View is 90px high is just to provide a predictable outcome since you are expecting the banner to occupy 90px on the screen.

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

79610968

Date: 2025-05-07 16:06:14
Score: 1
Natty:
Report link
func urlForApplication(toOpen contentType: UTType) -> URL?

https://developer.apple.com/documentation/appkit/nsworkspace/urlforapplication(toopen:)-95cvp

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

79610963

Date: 2025-05-07 16:04:12
Score: 7 đŸš©
Natty: 5
Report link

any ideas for android 14? i have this same issue on a Honor magic 6 lite, it wont lemme uninstall it.. i froze it.. but it bugs me to have it there.. what ive done is to froze it and then limit its network access with an app called NetPatch(basically a firewall). but there is no way i can uninstall it, and also i cant install an unbranded firmware. it is so annoying. Thanks in advance

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): any ideas
  • RegEx Blacklisted phrase (3): Thanks in advance
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Franco Martellini

79610962

Date: 2025-05-07 16:04:12
Score: 3.5
Natty:
Report link

Checkout this post react native with sms retriever api

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

79610946

Date: 2025-05-07 15:54:09
Score: 1
Natty:
Report link

thanks every one for your answers

but i found out what was the problem

i changed the browser to chrome and saw that my image is being sent to my php file

then i found my code problems

first: i used application/json instead of multipart/form-data

second: i added a column to my database but didn't add it in my query

so now every thing works!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mamad_RC

79610940

Date: 2025-05-07 15:52:08
Score: 1.5
Natty:
Report link

✅ How to localize MudDataGrid filters in MudBlazor (v7+) – With updated identifiers

If you're trying to localize the filter options of MudDataGrid and it's not working, you're likely using the old localization keys, like:

"MudDataGrid.contains"

These no longer work in newer versions of MudBlazor (v7+). The identifiers have changed to use underscores, like:

"MudDataGrid_Contains"

✔ Solution (Updated and Working)

  1. Update MudBlazor to the latest version:
dotnet add package MudBlazor
  1. In your Program.cs:
builder.Services.AddTransient<MudLocalizer, CustomMudLocalizerImpl>();
  1. Create a class CustomMudLocalizerImpl with the updated keys:
using Microsoft.Extensions.Localization;
using MudBlazor;
using System.Globalization;
using System.Threading;

internal class CustomMudLocalizerImpl : MudLocalizer
{
    private readonly Dictionary<string, string> _localization;

    public CustomMudLocalizerImpl()
    {
        _localization = new()
        {
            { "MudDataGrid_AddFilter", "Agregar filtro" },
            { "MudDataGrid_Apply", "Aplicar" },
            { "MudDataGrid_Cancel", "Cancelar" },
            { "MudDataGrid_Clear", "Limpiar" },
            { "MudDataGrid_CollapseAllGroups", "Colapsar todos los grupos" },
            { "MudDataGrid_Column", "Columna" },
            { "MudDataGrid_Columns", "Columnas" },
            { "MudDataGrid_Contains", "Contiene" },
            { "MudDataGrid_NotContains", "No contiene" },
            { "MudDataGrid_Equals", "Igual a" },
            { "MudDataGrid_NotEquals", "Distinto de" },
            { "MudDataGrid_StartsWith", "Empieza con" },
            { "MudDataGrid_EndsWith", "Termina con" },
            { "MudDataGrid_IsEmpty", "EstĂĄ vacĂ­o" },
            { "MudDataGrid_IsNotEmpty", "No estĂĄ vacĂ­o" },
            { "MudDataGrid_Is", "Es" },
            { "MudDataGrid_IsNot", "No es" },
            { "MudDataGrid_IsAfter", "Es después de" },
            { "MudDataGrid_IsBefore", "Es antes de" },
            { "MudDataGrid_IsOnOrAfter", "Es en o después de" },
            { "MudDataGrid_IsOnOrBefore", "Es en o antes de" },
            { "MudDataGrid_Filter", "Filtro" },
            { "MudDataGrid_FilterValue", "Valor del filtro" },
            { "MudDataGrid_Group", "Grupo" },
            { "MudDataGrid_RefreshData", "Actualizar datos" },
            { "MudDataGrid_Save", "Guardar" },
            { "MudDataGrid_ShowAll", "Mostrar todo" },
            { "MudDataGrid_Hide", "Ocultar" },
            { "MudDataGrid_HideAll", "Ocultar todo" },
            { "MudDataGrid_Ungroup", "Desagrupar" },
            { "MudDataGrid_Unsort", "Quitar ordenamiento" },
            { "MudDataGrid_True", "Verdadero" },
            { "MudDataGrid_False", "Falso" },
            { "MudDataGrid_Value", "Valor" }
        };
    }

    public override LocalizedString this[string key]
    {
        get
        {
            var culture = Thread.CurrentThread.CurrentUICulture.TwoLetterISOLanguageName;
            if (culture.Equals("es", StringComparison.InvariantCultureIgnoreCase)
                && _localization.TryGetValue(key, out var translated))
            {
                return new LocalizedString(key, translated);
            }

            return new LocalizedString(key, key, true);
        }
    }
}

đŸ§Ș Bonus Tip

To debug the keys MudBlazor is actually requesting, you can add a breakpoint inside the indexer this[string key] and inspect which keys are triggered when you open the filter dialog.


🙌 Credits

Original idea by Rafael Parenza — Improved here with updated localization keys for MudBlazor v7+.


Reasons:
  • Blacklisted phrase (1): EstĂĄ
  • Blacklisted phrase (1): estĂĄ
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AarĂłn Flores Pasos

79610931

Date: 2025-05-07 15:47:06
Score: 1.5
Natty:
Report link

Vrham!

I know making new projects can be tough, but luckily there are some great samples of OpenIddict implementations out there. Try some of those samples in the repository and see if you can customize them to your needs. If you run into any issues, feel free to post some code samples and any errors you run into and we would be happy to help!

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

79610918

Date: 2025-05-07 15:38:03
Score: 2
Natty:
Report link

library(readr)

library(writexl)

data <- readRDS("Halal_toruism_rawdata.rds")

# Optional: View data structure

str(data)

# Save as Excel

write_xlsx(data, "Halal_Tourism_Tweets.xlsx")

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

79610914

Date: 2025-05-07 15:37:02
Score: 6 đŸš©
Natty: 5.5
Report link

Can You give exact versions of CUDA, CuDNN, and Nvidia Driver? I'm trying to do same in 2025 but there are still some obstacles (too new - looks, some functions are not supported in never version :/)

Reasons:
  • RegEx Blacklisted phrase (2.5): Can You give
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can You give
  • Low reputation (1):
Posted by: Tomasz B

79610912

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

How about MockMe? It doesn't support mocking static members (yet), but it does support mocking concrete types without the artificial activity of introducing an interface or making members virtual (furthermore without the need of adding any InternalsVisibleTo):

static void Main(string[] args)
{
    var fakeDriver = Mock.Me(default(BlueToothDriver));
    fakeDriver.Setup.ReadString().Returns("world!");

    var device = new BlueToothDevice(fakeDriver.MockedObject);
    device.Hello();
}

internal class BlueToothDevice(BlueToothDriver driver)
{
    public void Hello() => Console.WriteLine("Hello {0}", driver.ReadString());
}

// e.g. external library
internal class BlueToothDriver
{
    public string ReadString() => "doomsday!";
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: marchewek

79610891

Date: 2025-05-07 15:25:58
Score: 1.5
Natty:
Report link

You can add:

android:windowSoftInputMode="adjustPan"

Directly in the XML for TextInputEditText, if you want to use it only for certain inputs.

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

79610881

Date: 2025-05-07 15:20:57
Score: 0.5
Natty:
Report link

Since you already have the direct .mp4 URL from the Twitter CDN, adding a download button on your page is pretty straightforward using plain HTML.

Here’s a simple way to do it:

<a href="https://video.twimg.com/ext_tw_video/1735368028454567940/pu/vid/avc1/720x1280/K1xz9gR_dzGv3ad2.mp4?tag=12" download>
  <button>Download Video</button>
</a>

This will prompt the browser to download the video when the user clicks the button.
The download attribute in the <a> tag is what tells the browser to treat it as a file download rather than opening it.

If you're dynamically fetching the video URL via JavaScript, you can also set the href of the <a> element with JS.

Let me know if you're working with a framework or want to trigger this with a custom player!
You can check my work on https://twvideodownloader.net/ website i develop this tool.

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alexander Michael

79610879

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

It seems you are asking how to get a tool that will generate the .c and .h files for you from the ASN.1 specification. There is an excellent list of ASN.1 compilers (both free and commercial) in the ITU-T ASN.1 Project at https://www.itu.int/en/ITU-T/asn1/Pages/Tools.aspx which you can use to read the ASN.1 specification and generate code to encode/decode/validate the messages in your ASN.1 specification. If this is not what you are asking, please clarify your question.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (2.5): please clarify your question
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Paul Thorpe

79610875

Date: 2025-05-07 15:17:55
Score: 4
Natty:
Report link

try npm i vitest-react-native plugin and add it to vitest.config. info: https://github.com/sheremet-va/vitest-react-native

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

79610874

Date: 2025-05-07 15:17:55
Score: 0.5
Natty:
Report link

I would guess that you can do it in for loop and inside the loop it will wait in the workqueue.Get() until an item added you break when shutdown check this implimentation : https://github.com/kubernetes/sample-controller/blob/e3aa2202834f61b1c8415b33dd801d4417957010/controller.go#L193

Here is some simple try I was also playing with workqueue but it depends on your implimentation here I am not running process in go routine but you can figure out how to do best reference would be sample-controller code

* you can also post code to help understand your implimentation

1   package main                                                                                                                            
  1                                                                                                                                         
  2 import (                                                                                                                                
  3         "fmt"                                                                                                                           
  4         "time"                                                                                                                          
  5                                                                                                                                         
  6         "k8s.io/client-go/util/workqueue"                                                                                               
  7 )                                                                                                                                       
  8                                                                                                                                         
  9 func FillQueue(q workqueue.Interface) {                                                                                                 
 10         time.Sleep(1 * time.Second)                                                                                                     
 11         q.Add("A")                                                                                                                      
 12         q.Add("B")                                                                                                                      
 13         q.Add("C")                                                                                                                      
 14                                                                                                                                         
 15 }                                                                                                                                       
 16                                                                                                                                         
 17 func processingQueue(q workqueue.Interface) bool {                                                                                      
 18         item, _ := q.Get()                                                                                                              
 19         fmt.Printf("Processing %s .. \n", item)                                                                                         
 20         q.Done(item)                                                                                                                    
 21         return true                                                                                                                     
 22 }                                                                                                                                       
 23                                                                                                                                         
 24 func main() {                                                                                                                           
 25         q := workqueue.New()                                                                                                            
 26         go FillQueue(q)                                                                                                                 
 27         for processingQueue(q) {                                                                                                        
 28         }                                                                                                                               
 29 }                                                                                                                                       
~       
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Mohammed

79610872

Date: 2025-05-07 15:17:55
Score: 0.5
Natty:
Report link

I don’t have enough experience to say this with full confidence, but I think using a nested helper function is a pretty common and reasonable approach when dealing with recursion and memoization. It helps keep the main function clean by hiding the implementation details.

That said, without any comments and with a generic name like helper, the code can be harder to follow, especially for someone new to it. Giving the function a more descriptive name and maybe adding a short docstring could make it clearer, especially if you're working in a team.

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

79610865

Date: 2025-05-07 15:11:54
Score: 0.5
Natty:
Report link

To connect from outside the container, use your host machine's IP address.

Here's an example:
If your host machine (e.g., host-docker-01) has the IP 10.1.0.101, connect like this:

psql -h 10.1.0.101 -p 5432 -U username -d dbname
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Abner Rizzi

79610858

Date: 2025-05-07 15:08:53
Score: 3
Natty:
Report link

I realize this posting is a bit old. But I believe it matches my situation. I think it does.

This my situation.

enter image description here From Azure I want to make REST calls to an On-Prem REST API.

Does the above diagram show the pieces required?

Does the Corporate Firewall have to be modified for the Integration Runtime?

Thanks for your guidance.

KD

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: KBD

79610856

Date: 2025-05-07 15:07:52
Score: 3.5
Natty:
Report link

another way of doing it is by directly updating default max duration field in vercel project's settings : update default max duration of vercel function image

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

79610845

Date: 2025-05-07 15:01:50
Score: 0.5
Natty:
Report link

This is a limitation I found too: NetTopologySuite performs planar (Euclidean) calculations, while SqlGeography uses geodesic calculations on an ellipsoidal model (WGS84). So you cannot use NTS to calculate distances or buffers or other operations that depend on the Earth curvature.

For those running into similar issues, I’ve built SharpSpatial, an open-source .NET library that extends NetTopologySuite with true geodesic computations, including:

It's especially useful if you're moving away from SQL Server or need cross-platform, accurate geodesic logic in .NET 6/7/8 projects.

I’ve been using it in some of my own projects. While it’s not yet fully comprehensive, it allowed me to move away from the SqlGeography DLLs and work entirely on .NET Core.
I'm not a geospatial expert, but for my needs, the results have been sufficiently accurate.

Disclaimer: I'm the author of the library.

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

79610826

Date: 2025-05-07 14:53:48
Score: 2.5
Natty:
Report link

Invalid Dynamic Link - Blocked

Domain (kso.page.link) is disallowed due to ([]).

If you are the developer of this app, ensure that your Dynamic Links domain is correctly configured and that the path component of this URL is valid.

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

79610814

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

You can just use the built-in

                  showAboutDialog({BuildContext context});

This shows all the license information automatically, and even the underlying plugins.

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

79610804

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

Based on @KRoscoe45's answer but with a bit of error handling :

import turtle as trtl
troll = trtl.Turtle() 

color_list=["blue","red","pink","black","white"]
wn = trtl.Screen()

clr = input("give a color pls: ")
while not crl in color_list :
    input(f"Color must be part of this list :\n{color_list}.\nPlease reenter one:\t")


wn.bgcolor(clr)
wn.mainloop()

This would handle error caused if the user dosn't enter a color that is understandable by the turtle module by reasking for a color until the answer is part of color_list.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @KRoscoe45's
  • Low reputation (1):
Posted by: rnd_name

79610779

Date: 2025-05-07 14:31:41
Score: 3
Natty:
Report link

"When loading data from another SSL location into a website, make sure that https location has his own single SSL."

Sorry to be daft but how does one do this? I am having this challenge with Safari and The Guardian. The Guardian is serving images from https://i.guim.co.uk but they won't load for me in Safari... they do in Waterfox and Firefox.

Assistance appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: rickscullyvt

79610775

Date: 2025-05-07 14:29:41
Score: 3
Natty:
Report link

You define scrollToTop() inside of your useEffect. Try to move it outside.

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

79610773

Date: 2025-05-07 14:28:40
Score: 2.5
Natty:
Report link

JVisualVM supports more complex data types like arrays . try using that to connect .

I had similar problem with Jconsole. You might have to use older jdks , as new jdks don't have jvusalvm

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

79610769

Date: 2025-05-07 14:27:40
Score: 4
Natty:
Report link

Might be an old thread but here goes:

I can't seem to generate a token, and I have the same syntax used here.

auth_details = {
    "usernname" : "fakeuser",
    "password" : "fakepassword",
    "grant_type" : "password",
}

uri = "https://secretserver.fakedomain.com/oauth2/token"

headers = { 'Accept': "application/json", 
           'Content-Type': "x-www-form-urlencoded",
        }

response = requests.post(uri,data=auth_details,headers=headers)

This result in Response 406. When I try to see the contents of response:

print(response.text)

<div id="header"><h1>Server Error</h1></div>
<div id="content">
 <div class="content-container"><fieldset>
  <h2>406 - Client browser does not accept the MIME type of the requested page.</h2>
  <h3>The page you are looking for cannot be opened by your browser because it has a file name extension that your browser does not accept.</h3>
 </fieldset></div>
</div>
</body>

I've tried changing the accept type to text/html, and I got a Response 200. But as expected , it's in html format and the details of the token is not there.

Hoping someone can help me here.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): someone can help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30473559

79610764

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

The sign you are looking for is encoded as U+1222B đ’ˆ« CUNEIFORM SIGN MIN.

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

79610758

Date: 2025-05-07 14:24:39
Score: 1
Natty:
Report link
use Illuminate\Support\Facades\Response as Download;

public function download_config(Config $config)
    {
//
        $headers = [
            'Content-Type'        => 'Content-Type: application/zip',
            'Content-Disposition' => 'attachment; filename="'. $config->name .'"',
        ];
//
        return Download::make(Storage::disk('s3')->get($config->path), Response::HTTP_OK, $headers);
    }
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: salmanali

79610756

Date: 2025-05-07 14:23:35
Score: 6.5 đŸš©
Natty:
Report link

@Benjamin, I followed all your steps in the demo model/blog post you linked to give cars and peds "eyes", but I am encountering one outstanding issue. In the checkForPed function (see pasted below), I get the error message that "The method get_Main() is undefined for the type Cars". Any ideas on how to resolve? I tried main.pedestrian, too, but that didn't seem to work. Thanks!

for (Pedestrian thisPed : get_Main().pedestrian) {
    // for each pedestrian in model
    double pedX = thisPed.getX() - getX();
    double pedY = thisPed.getY() - getY();
    if (fieldOfView.contains(pedX, pedY)) {
        pedInDanger = true;
        break;
    } 
}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Any ideas
  • RegEx Blacklisted phrase (1.5): how to resolve?
  • RegEx Blacklisted phrase (1): I get the error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Benjamin
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Annie Engen

79610749

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

Does this work for your usage ?

from tkinter import Tk, Canvas

root = Tk()
root.wm_attributes("-topmost", 1)  # make root foreground
root.wm_attributes("-transparentcolor", "yellow")  # add a "transparent" color
cv = Canvas(root, width=400, height=400, bg="yellow")   # create a transparent canvas
cv.create_rectangle(50, 50, 100, 100, fill="red")  # rectangle you can see
cv.pack()

root.mainloop()
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: ciaraGT

79610746

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

In both the DownloadBuildArtifacts@1 & PublishBuildArtifacts@1 documentation, it's recommended to use DownloadPipelineArtifact@2 & PublishPipelineArtifact@1 instead. No caveats are mentioned.

If you're using Azure DevOps Services, we recommend using Download Pipeline Artifacts and Publish Pipeline Artifacts for faster performance.

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

79610741

Date: 2025-05-07 14:16:32
Score: 4
Natty:
Report link

Yes works good, i tried http://localhost:8081/ worked perfectly,thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vincent Cheruiyot

79610737

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

I struggled with this issue as well. Used npm workspaces to solve it.

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

79610733

Date: 2025-05-07 14:13:32
Score: 2.5
Natty:
Report link

As you want to hover on User 2, not User 3, i think you should select the second avatar and corresponding tooltip ?

describe('Mouse Hover', () => {                           
  it('should display tooltip for User 2 on hover', () => {
    cy.visit('https://www.stackoverflow.com/hovers'); //Please change the website url here. As i shouldn't spam this chat using other webiste urls.
    
    cy.get('.figure').eq(1).trigger('mouseover');

    cy.get('.figure').eq(1).find('.figcaption').should('be.visible');
    cy.get('.figure').eq(1).find('h5').should('contain.text', 'name: user2');
    
    cy.get('.figure').eq(1).find('a').click();
    cy.url().should('include', '/users/2');
  });
});
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Omprakash S

79610725

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

Finally I got to the solution, the root cause of the issue was that message consumers had a reference for } ServiceBusSender (from Microsoft's framework) and we were not disposing those instances which led into the allocation problem. I was able to fix it by adding a using statement.

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

79610724

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

You can use Carbon Facade in laravel , it has many options

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

79610718

Date: 2025-05-07 14:05:30
Score: 0.5
Natty:
Report link
(cleanenv) C:\Users\HP\Desktop\Ehsas Hub\R System\Recommendation_system>python app.py
Traceback (most recent call last):
  File "C:\Users\HP\Desktop\Ehsas Hub\R System\Recommendation_system\cleanenv\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 73, in <module>
    from tensorflow.python._pywrap_tensorflow_internal import *
ImportError: DLL load failed while importing _pywrap_tensorflow_internal: A dynamic link library (DLL) initialization routine failed.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Users\HP\Desktop\Ehsas Hub\R System\Recommendation_system\app.py", line 2, in <module>
    from routes import register_blueprints
  File "C:\Users\HP\Desktop\Ehsas Hub\R System\Recommendation_system\routes\__init__.py", line 2, in <module>
    from .recommend_routes import recommend_user_bp, recommend_genre_bp
  File "C:\Users\HP\Desktop\Ehsas Hub\R System\Recommendation_system\routes\recommend_routes.py", line 8, in <module>
    from services.recommend_service import get_recommendations_by_user
  File "C:\Users\HP\Desktop\Ehsas Hub\R System\Recommendation_system\services\recommend_service.py", line 9, in <module>
    from tensorflow.keras.models import load_model
  File "C:\Users\HP\Desktop\Ehsas Hub\R System\Recommendation_system\cleanenv\lib\site-packages\tensorflow\__init__.py", line 40, in <module>
    from tensorflow.python import pywrap_tensorflow as _pywrap_tensorflow  # pylint: disable=unused-import
  File "C:\Users\HP\Desktop\Ehsas Hub\R System\Recommendation_system\cleanenv\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 88, in <module>
    raise ImportError(
ImportError: Traceback (most recent call last):
  File "C:\Users\HP\Desktop\Ehsas Hub\R System\Recommendation_system\cleanenv\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 73, in <module>
    from tensorflow.python._pywrap_tensorflow_internal import *
ImportError: DLL load failed while importing _pywrap_tensorflow_internal: A dynamic link library (DLL) initialization routine failed.


Failed to load the native TensorFlow runtime.
See https://www.tensorflow.org/install/errors for some common causes and solutions.
If you need help, create an issue at https://github.com/tensorflow/tensorflow/issues and include the entire stack trace above this error message.

how to fix help mw

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): how to fix help
  • Low reputation (1):
Posted by: user30473331

79610711

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

You can definitely integrate multi-participant video chat with Banuba face AR features. Banuba’s Face AR SDK is designed to work alongside popular video conferencing platforms.

I found a relevant article that could very likely give you a good understanding of how it is done https://www.banuba.com/blog/video-conferencing-api-integration

Banuba provides an integration example with Agora SDK for Unity in the article, which shows how to enable AR filters in group video calls, Their SDK supports multi-face tracking, so each participant can enjoy AR effects at the same time.

To set this up, you’ll typically use Banuba’s Face AR SDK for applying filters and effects locally on each participant’s video feed, then combine it with a video conferencing SDK (like Agora, Video SDK, or similar) to handle the multi-user video call itself.

If I was you I would also explore face ar sdk library on https://github.com/banuba

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

79610710

Date: 2025-05-07 14:02:28
Score: 2.5
Natty:
Report link

hCaptcha on Discord is very hard to bypass automatically. In addition, 2Captcha has discontinued support for a special method for this type of captcha. Try using another method, for example, the coordinate method.

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

79610704

Date: 2025-05-07 13:59:27
Score: 1
Natty:
Report link

While this does not answer you question of how to build an application that backups up AWS Timestream, as pointed out by Peter Csala in the comments, AWS Backup now supports backing up Amazon Timestream.

Through AWS Backup you may choose to backup Timestream table on-demand or on a set schedule through a backup plan. These backups will be incremental.

These recovery points can then be restored and table configurations can be set manually.

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

79610701

Date: 2025-05-07 13:58:27
Score: 0.5
Natty:
Report link

Thanks for your answer and comments pointing me in the right direction.

Finally, I could find a solution by using this code:

renderer.getWriter().getAcroForm().addSignature("Signature1",50, 100, 400, 200 );

instead of:

var field = PdfFormField.createSignature(renderer.getWriter());
field.setWidget(new Rectangle(50, 100, 400, 200), PdfAnnotation.HIGHLIGHT_OUTLINE);
field.setFieldName("Signature1");
field.setFieldFlags(PdfAnnotation.FLAGS_PRINT);
renderer.getWriter().addAnnotation(field);
renderer.getWriter().addToBody(field);

Now the signature panel is filled correctly.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: gWombat

79610689

Date: 2025-05-07 13:53:25
Score: 1
Natty:
Report link

I guess the proper way would be to use Windows API.
Take a look on GetCursorPos from Win32 API

To call Win32 API you can use something like pywin32 lib I guess

Of course that API will give you the mouse position of the mouse in the entire screen. If you want the mouse position related to your terminal window maybe you can find your window using the Windows API too, get the position and size and do the maths.

I don't know. Sounds a bit overkill but for me is the "Windows way"

Or just: https://www.youtube.com/watch?v=Ks9HWZWMsw4

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Whitelisted phrase (-1.5): you can use
  • No code block (0.5):
  • Low reputation (1):
Posted by: Victor

79610685

Date: 2025-05-07 13:51:24
Score: 1
Natty:
Report link

Use curses to track mouse without selection:

import curses def main(stdscr): curses.mousemask(-1) while True: if stdscr.getch() == curses.KEY_MOUSE: _, x, y, _, _ = curses.getmouse() stdscr.addstr(0, 0, f"Mouse: {x},{y}") stdscr.refresh() curses.wrapper(main)

On Windows, install with: pip install windows-curses.

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

79610679

Date: 2025-05-07 13:50:24
Score: 0.5
Natty:
Report link

I think I've had the same issue that you're maybe describing - and I'm yet to find a satisfactory solution.

In my use case I want to be able to run and debug the Blazor WASM app as normal from Visual Studio which means the app would be at something like: https://localhost:7276/test/. I also like to publish to my local IIS so then I can hit my app on something like: https://localhost:7276/. While running on IIS it more closely matches my other deployment stages and it also means the app is more easily testable on other devices.

My horrible workaround I'm very keen to replace goes like this... In my index.html I have <base href="/" /> I then copy the same index.html to published_index.html and change the base to: <base href="/test/" />. Finally I add a step in the web app's .csproj file like this:

<Target Name="PostPublishTask" AfterTargets="AfterPublish">
    <Message Text="Copying published_index.html to index.html" Importance="high" />
    <Exec Command="@ECHO F|XCOPY wwwroot\published_index.html bin\Release\net9.0\browser-wasm\publish\wwwroot\index.html /f /y" />
</Target>

All this does is copy the published_index.html file over the index.html in the published location when I press publish. Once I've mounted the app in IIS as 'test' I can hit it as explained above. It's the least awful of the solutions I've found as basically I can forget about it. The only issue is a few extra minutes setting up the apps in IIS to begin with. My CI/CD deploy pipelines will do the same copy of published_index.html if they find it so they just work too.

I should mention that my apps locally consist of the Blazor WASM app and the API. All of the time my Blazor app is pointing to the API as hosted in IIS (in my case https://MYMACHINENAME:5000/test/api/...) . If I want to debug the API I run that only from Visual Studio and use Swagger or Postman to pass the correct data to trigger breakpoints and suchlike.

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

79610674

Date: 2025-05-07 13:48:23
Score: 0.5
Natty:
Report link

The SMTP method in ACS only confirms that the email was accepted it doesn’t guarantee delivery. If the recipient’s server silently blocks or delays the email (due to missing SPF/DKIM, spam filters, or IP reputation), ACS keeps showing OutForDelivery without further updates. Also, Microsoft might have changed backend behavior recently, which can impact SMTP reliability even if your code hasn’t changed.

var client = new EmailClient(new Uri("<your-acs-resource-endpoint>"), new AzureKeyCredential("<your-access-key>"));

var message = new EmailMessage(
    "<from-email-address>",
    new EmailRecipients(new List<EmailAddress> { new EmailAddress("<to-email-address>") }),
    "Subject goes here",
    new EmailContent("Body of the email"));

await client.SendAsync(WaitUntil.Completed, message);

This call will give immediate and more meaningful feedback, so you can see exactly why something fails.

NOTE: It’s not that ACS is broken, the issue is that SMTP provides very limited feedback and is prone to silent failures. In contrast, the API-based method using the EmailClient SDK is more reliable, offers better diagnostics, and is the recommended approach moving forward.

Reasons:
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Harish Bodapati

79610649

Date: 2025-05-07 13:33:19
Score: 1
Natty:
Report link

-----BEGIN PGP MESSAGE-----

hQEMA7kLtcfhv/kzAQf/cHI131AWnnNSpUdXKpr1yrq5WBaYVCVJHJVLcFa3gt8I
Bd7GeLvxTLeUb/ufHFJQmuyEQuYUo2i7XyP6DzEwA8nJU2v3HPGQdnxCfHlbZfX6
x45pkKdwHOqtzs56voh0FOPek+r8w78ODm5jx/0XTkl1/86uhTDrXObrCBYlTA0J

ksaGj+OPsmYQn/dwVZJREQXnOPK/KnQp/F6iD6oOxvD2b0fyIGaiav09Int5GPMd
TOb1PRUe/4NWwXbIq5zIQqc80CGmP9DqYH2ipX/wCtLAVQF39vafmwGzjY9nUENR
skUkOKFUXTpy3H3jhMgHwBhO98bBv9HvjfBXMRHgOwFiSNQCIY+Bk/rTGGf6cGNE
88QTP4bADPAkwyZtz53DSVptQF7Mz7FYnQkAHe8HJlC0rm18+VOfiq4e2eFiJdO7
wL3JFzWneZzO9MqCIdNhzcwB4k2Z8MQwXXlpBHj0E1KReq1SwUZZShHeMlokuUcQ
7mwhPYcBHUe3LLGzBgqlABm2GxLfvBaZU1XbkJnRZKj/nSP7OBv/MY8pjPxBa6A9
1ayrtRYyZt5uKBt6xSAdjdACxxITd9J9ZmYMAIqpLEqvQomNKB3mCdSsl73yhPzu
CSdjBKt/DgC7J6vYG/0xSGqdN1YqSP0=
=698Q
-----END PGP MESSAGE-----

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

79610645

Date: 2025-05-07 13:31:18
Score: 2
Natty:
Report link

You can use the 2Captcha Extension to get valid values for the captcha parameters https://2captcha.com/blog/detector

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

79610637

Date: 2025-05-07 13:26:17
Score: 3
Natty:
Report link

I have been trading options and futures on Deribit for over 5 years.

They now offer low fees compared to other exchanges.

https://www.deribit.com/?reg=20082.8196

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

79610621

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

The answer is in the exception message. The key must have length 32. Yours has length 4. Try

key = b'totototototototototototototototo'

and it should work.

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

79610619

Date: 2025-05-07 13:18:14
Score: 2
Natty:
Report link

onSelect props u get one of the proerty in return as cca2 just save that onSelect and pass thet in countryCode

this should solve ur problem.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ranvijay Kumar Singh

79610613

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

Okay, I found examples of working autocompletes with the forward geocoder which fills out a form with the city, postal code and address.

import placekitAutocomplete from '@placekit/autocomplete-js';

import 'shared/global.css'; // load tailwindcss
import '@placekit/autocomplete-js/dist/placekit-autocomplete.css';

// instantiate PlaceKit Autocomplete JS
const pka = placekitAutocomplete(import.meta.env.VITE_PLACEKIT_API_KEY, {
  target: '#placekit-input',
});

// inject values when user picks an address
const form = document.querySelector('#form');
pka.on('pick', (value, item) => {
  for (const name of ['city', 'zipcode', 'country']) {
    form.querySelector(`input[name="${name}"]`).value = [].concat(item[name]).join(',');
  }
});

https://github.com/placekit/examples/tree/main/examples/autocomplete-js-address-form

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

79610609

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

pac4j is meant for the web. Given all the abstractions used in the source code, this is maybe feasible to achieve something for a desktop environment, but this would require a certain amount of work.

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

79610605

Date: 2025-05-07 13:09:11
Score: 0.5
Natty:
Report link

In my React Native Expo TVOS project, the error was solved by wiping out the emulator's data using Android Studio. This post shows how to do it.

After that, I ran

yarn EXPO_TV=1 expo run:android

and the app opened in my Android TV simulator easily.

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

79610597

Date: 2025-05-07 13:08:11
Score: 3.5
Natty:
Report link

I believe that batch querying helps in this case:

https://developers.facebook.com/docs/graph-api/batch-requests

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

79610588

Date: 2025-05-07 13:02:09
Score: 2.5
Natty:
Report link

just needed to add

@rendermode InteractiveServer
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: xsainteer

79610583

Date: 2025-05-07 13:00:08
Score: 4
Natty:
Report link

This was answered on the Jenkins forum. Configuration is in the Organisation section

https://community.jenkins.io/t/checkout-configuration-in-declarative-multi-branch-pipeline/30466/2

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

79610582

Date: 2025-05-07 13:00:08
Score: 4
Natty:
Report link

req.cookies returns undefined but cookies are set

tried the fetching api with :

1st credentials : 'include' 2nd withCredentials: true

and added app.use(express.urlencoded({ extended: true })); in app.js

but nothing worked.

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: manishpargai

79610572

Date: 2025-05-07 12:55:07
Score: 3
Natty:
Report link

either you can use ping services such as uptime-robot or https://uptimebot-alpha.vercel.app/

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

79610570

Date: 2025-05-07 12:55:07
Score: 1
Natty:
Report link

I’ve run into similar issues before where things behave differently in headless mode. One trick that sometimes helps is setting a fixed window size options.add_argument("--window-size=1920,1080") before launching the driver. Some elements don’t load properly in headless mode unless the viewport is large enough.

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

79610565

Date: 2025-05-07 12:54:07
Score: 1
Natty:
Report link

There are number of things you need to be aware of:

  1. Your xpath is very brittle and not reliable - you need to refactor it and make it shorter using a relative path expression (//)

  2. Any browser in headless mode gets executed in a different system profile then the logged in user. So the resolution is usually smaller and can affect the responsive display of the page or website. Take a screenshot of the test and you will see the full-screen is not the same as the full-screen when not in headless mode.

When you a have refactored your xpath you then need to make sure that the same window resolution is in both headless and headful mode. Any difference will cause the page to be rendered different and hide or change some elements.

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

79610562

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

As described here, it will work with UV when the Python version has a higher minor version.

https://github.com/astral-sh/uv/issues/11707

In my case a was running with 3.12.4, which was not working.

When i pinned the Python version to 3.12.9, is was working fine.

I hope that helps somebody ;).

Reasons:
  • Whitelisted phrase (-1): hope that helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: MrTango

79610560

Date: 2025-05-07 12:52:06
Score: 1.5
Natty:
Report link

You should try act. It lets you tu run a workflow without pushes and works exactly how GitHub Actions does. Just follow the steps from the GitHub repository: https://github.com/nektos/act

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

79610557

Date: 2025-05-07 12:51:05
Score: 3
Natty:
Report link

For anyone who is having the same issue, I was able to find the solution was posted here by Leon Lu. Using the following code in your CreateMauiApp() method will globally change the color of your button ripple effect:

    Microsoft.Maui.Handlers.ButtonHandler.Mapper.AppendToMapping("MyCustomization", (handler, view) =>
        {
#if ANDROID
            if (handler.PlatformView.Background is Android.Graphics.Drawables.RippleDrawable ripple )
            {
                //Sets the ripple color to green
                ripple.SetColor(Android.Content.Res.ColorStateList.ValueOf(Android.Graphics.Color.Green));

                //Hides the ripple effect
                ripple.SetColor(Android.Content.Res.ColorStateList.ValueOf(Android.Graphics.Color.Transparent));
            };
#endif
        });
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same issue
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bryson

79610555

Date: 2025-05-07 12:48:04
Score: 2.5
Natty:
Report link

I found solution it's function throwIf

example from docs:

SELECT throwIf(number = 3, 'Too many') FROM numbers(10);

link on documentation: https://clickhouse.com/docs/sql-reference/functions/other-functions#throwif

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

79610554

Date: 2025-05-07 12:48:04
Score: 0.5
Natty:
Report link

Creating a cross-account copy of a recovery point from AWS Backup requires the correct access policies on both source and destination vault, correct IAM role with policies that allows to create a copy job and cross-account backup to be enabled within the Organization's management account.

From the details provided in the comments, you seem to have everything except enabling cross-account backup within the AWS Organization. This can be done from the Management Account, within the AWS Backup console under My account and Settings.

Lastly, a final point to check, the destination vault cannot be the default vault of the account.

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

79610553

Date: 2025-05-07 12:47:04
Score: 1
Natty:
Report link

I've found two ways of determining this thus far:

  1. You can look up the PauseVersion in the kubeadm code for your k8s release.
  2. Monitor the changlelog. A change in the pause version should be menitoed there, for example, the adoption of 3.10 was noted in CHANGELOG-1.31.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Frank

79610552

Date: 2025-05-07 12:47:04
Score: 1
Natty:
Report link
SELECT * FROM users 
WHERE users.id NOT IN ( SELECT users_id FROM user_type);

Explain:- This query fetches all user records from the users table but only keeps those whose ID is not found in the user_type table

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

79610550

Date: 2025-05-07 12:46:03
Score: 7 đŸš©
Natty: 5
Report link

Having exactly same problem here and mystified. Problem with only 1 textbox on the form, other textboxes updating fine. The problem textbox has multiline property set to True, wondering if that's an issue?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): Having exactly same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: LiamK

79610548

Date: 2025-05-07 12:45:03
Score: 3
Natty:
Report link

There were two User Script Sandboxing settings, one on the target and one on the app. I had to set both to No.

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

79610543

Date: 2025-05-07 12:43:02
Score: 2
Natty:
Report link

Cool concept! I’ve been experimenting with language tools myself, and I think using something like forced alignment could give better results than just waveform comparison. It’s kind of like doing an analisi logica—you break down the structure of what's being said and see how it matches the reference. I found https://analisilogicatool.it/ useful for understanding how sentence structure works, even though it’s more for Italian grammar.

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

79610536

Date: 2025-05-07 12:41:01
Score: 1.5
Natty:
Report link

I suppose you should adjust global settings during DI

builder.Services
    .AddGraphQLServer()
    .ModifyPagingOptions(po => po.DefaultPageSize = 10000);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Renat Ishkaev

79610535

Date: 2025-05-07 12:41:01
Score: 5.5
Natty: 4.5
Report link

I have a similar problem, a BIRDRF device was discontinued and to update the firmware you need a key that the company no longer provides, when disassembling the BIN, I came across sections in .srec, which contain only the code and constant data, at most an array of hexadecimal values, perhaps with the memory map, I could disassemble to ASM, but without information on symbols and variables, only absolute addresses.

Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • No code block (0.5):
  • Me too answer (2.5): I have a similar problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: elettoz

79610534

Date: 2025-05-07 12:39:00
Score: 2
Natty:
Report link

A solution often has multiple 'projects' within it. If you cloned the code from Github or elsewhere and try to run it you may get that error. You just need to set one of those projects to the startup project to get it to run. This will often be the one that has API or UI in the name of the project. In the solution explorer, right click that one and select 'Set as Startup Project'. The rest of the projects may only be class libraries which can't be run.

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

79610527

Date: 2025-05-07 12:35:59
Score: 2.5
Natty:
Report link

It turned out that the SHEET function was not registered as part of the AnalysisToolPak. It was now added in #22192ce

I added a PR to add full SHEET support in https://github.com/apache/poi/pull/803

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

79610525

Date: 2025-05-07 12:34:59
Score: 1.5
Natty:
Report link

I found the thing that worked best for me was to use the sysroot I retrieved off of my target. I needed to add some extra flags due to the structure of the raspberry pi's sysroot. Namely

-B/<path to  r pi system.o files>/

and

CMAKE_INSTALL_RPATH

as both of

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Tommy

79610524

Date: 2025-05-07 12:33:58
Score: 0.5
Natty:
Report link

The solution I have found to this is:

  1. To invent a file extension for the file, so traffic-advice is renamed to traffic-advice.ta-json (an invented file extension ... traffic advice JSON)

  2. Use .htaccess to rewrite requests for traffic-advice to traffic-advice.ta-json

  3. And again in .htaccess, use AddType to set the required MIME type for ta-json files

.htaccess therefore includes:

<IfModule mod_mime.c>
AddType application/trafficadvice+json ta-json
</IfModule>

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteRule ^\.well-known/traffic-advice$ .well-known/traffic-advice.ta-json [PT]

# continues with other RewriteRules
</IfModule>

The traffic-response file lives in .well-known, only it's renamed with my 'invented' file extension to act as the trigger for setting the MIME type.

In Chrome and Firefox I can now see in the response header:

content-type: application/trafficadvice+json
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Iain H

79610515

Date: 2025-05-07 12:29:57
Score: 4.5
Natty: 4
Report link

enter image description here

You may have to uncheck Write Defaults in Unity 6 version.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Chanachok

79610500

Date: 2025-05-07 12:23:55
Score: 2
Natty:
Report link

When you take an EBS snapshot in AWS, you’re backing up individual volumes, not the entire EC2 instance. Each snapshot captures the state of that specific disk—so if your instance has multiple EBS volumes (root, data, logs), you’ll need to snapshot each one or use an AMI creation process, which under the hood snapshots the root volume and registers a new instance image. Early in my career I was surprised by this too: one missed volume means missing data. At AceCloud, we simplify this by offering snapshot orchestration across all attached volumes and optional image-level backups, ensuring you never lose part of your stack.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Carolyn Weitz

79610499

Date: 2025-05-07 12:23:54
Score: 6.5 đŸš©
Natty: 5
Report link

can you send me please copy of big database(fake) for odoo

Reasons:
  • RegEx Blacklisted phrase (2.5): can you send me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: ferchichi wissal

79610484

Date: 2025-05-07 12:16:52
Score: 1
Natty:
Report link

Try to check the installed styles in the resource file .rc. There you will see descriptions of dialog boxes and controls.By default. Group box should have no effects for displaying flat lines.

There must be something similar to this entry:

BEGIN
    GROUPBOX        "Static",IDC_STATIC606,37,85,188,40
END
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: niKaragua

79610477

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

Most of the code is fine, the only thing missing is just a single quotation mark:

html`<img
    // ...
    src='${selectedImagePath}'
  >`

Why? Because your image path contains spaces:

{ 
  "paths": "img/Acer platanoides - spisslþnn - Ak, Follo, Ås - mai 2014.JPG"
}

When the full image path is not enclosed in quotation marks, it looks like this:

html`<img
    // ...
    src=img/Acer platanoides - spisslþnn - Ak, Follo, Ås - mai 2014.JPG
  >`

When this HTML string is rendered as a DOM, you will find that all characters after the first space in the src are not included in the src attribute, but are instead parsed as custom attributes:

<img
  // ... 
  src="img/Acer" platanoides="" -="" spisslþnn="" ak,="" follo,="" Ås="" mai="" 2014.jpg="" alt="Selected image">

So you just need add a single quotation.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: yuanyxh

79610476

Date: 2025-05-07 12:10:50
Score: 1
Natty:
Report link

To get furniture models from 3d.io into ARKit, export the model in GLTF or OBJ, then convert it to USDZ using Apple’s Reality Converter or command line tools. Make sure the model is optimized—low poly with compressed textures—for best AR performance. Import the USDZ file into your Xcode project and load it with ARKit using ARQuickLookPreviewItem or RealityKit. Test on-device to ensure correct scale and lighting.

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

79610475

Date: 2025-05-07 12:10:50
Score: 2
Natty:
Report link

remove the auto generated path mappings and configure it as simple as following:

Server Settings

enter image description here

File/Directory Absolute path on the server
/Users/me/github/my_project /Users/me/github/my_project

Debug Settings

enter image description here

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

79610468

Date: 2025-05-07 12:08:50
Score: 1
Natty:
Report link

Commenter @Denis is correct, comma separated labels is the way to specify multiple label key/value pairs as described in the Kubernetes documentation [0]. Multiple values are ANDed.

- job_name: 'foo'
  kubernetes_sd_configs:
    - role: pod
      selectors:
        - role: pod
          label: "app=MyApp,type=client"

[0] = https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Denis
  • Low reputation (0.5):
Posted by: Alex D.

79610454

Date: 2025-05-07 12:00:48
Score: 2
Natty:
Report link

Try to run this:

python manage.py runserver 127.0.0.1:8000 --insecure
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Atajan AĂœazow

79610445

Date: 2025-05-07 11:49:45
Score: 6 đŸš©
Natty: 6
Report link

eerwwwwwwwwwwwwwwwwwwwwww fddddddddddddd

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Filler text (0.5): wwwwwwwwwwwwwwwwwwwwww
  • Filler text (0): ddddddddddddd
  • Low entropy (1):
  • Low reputation (1):
Posted by: user30472091

79610442

Date: 2025-05-07 11:47:44
Score: 2
Natty:
Report link

I faced the same error in Mac when I tried to install "C/C++ Extension Pack" in VS code.

Installing "C/C++" Extension by Microsoft instead of "C/C++ Extension" Pack fixed the issue.

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

79610430

Date: 2025-05-07 11:40:43
Score: 2.5
Natty:
Report link

Good morning everyone from 2025.

Someshing went wrong when I launched TortoiseGit and had BSOD on Windows 10 PC.

After reboot I got

Error: libgit2 returned: the index is locked; this might be due to a concurrent or crashed process

Deleteing index.lock file in .git folder helped!

Reasons:
  • Blacklisted phrase (1): Good morning
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: mrhotroad

79610429

Date: 2025-05-07 11:39:42
Score: 3.5
Natty:
Report link

It seems that installing neovim 0.11.1 solved the problem.

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

79610423

Date: 2025-05-07 11:37:42
Score: 4
Natty: 4.5
Report link

Here more info about the deprecation rules:

https://developers.google.com/digital-asset-links/v1/revocation

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

79610422

Date: 2025-05-07 11:37:41
Score: 2.5
Natty:
Report link

In XCode, under Product/Scheme/Edit Scheme - Arguments tab, add an environment variable

OS_ACTIVITY_MODE disable

will Hide strange unwanted Xcode logs

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

79610417

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

After debugging with the Node.js crypto library, I found out that the actual error was Unsupported key usage for an RSA-OAEP key because I was passing the encrypt usage for a RSA private key which is not possible.

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

79610415

Date: 2025-05-07 11:30:39
Score: 1
Natty:
Report link

If running a container 24/7 that only listens for incoming requests then triggers a job and securing services for exposure are the concerns, it is possible. I suggest an Event-Driven approach such as CloudEvents Player which is perfect for triggering jobSink with a Curl by:

  1. Create the broker

  2. Create the Knative Service

  3. Bind the service with the broker

  4. Create the Knative trigger

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

79610401

Date: 2025-05-07 11:21:36
Score: 2
Natty:
Report link

I encountered the same problem and am quite confused. Here is a Python version of CRC-8 that produces identical results to the above code( from https://github.com/crsf-wg/crsf/wiki/Python-Parser ). However, both methods fail the packet checksum. However the packet with LINK_STATISTICS is ok. Do you find out the reason?

packet=bytearray([0xc8,0x18,0x16,0xc0,0x3,0x9f,0x2b,0x80,0xf7,0x8b,0x5f,0x94,0xf,0xc0,0x7f,0x48,0x4a,0xf9,0xca,0x7,0x0, 0x0, 0x4c, 0x7c ,0xe2, 0x9]) # here is my packet.

def crc8_dvb_s2(crc, a) -> int:
  crc = crc ^ a
  for ii in range(8):
    if crc & 0x80:
      crc = (crc << 1) ^ 0xD5
    else:
      crc = crc << 1
  return crc & 0xFF

def crc8_data(data) -> int:
    crc = 0
    for a in data:
        crc = crc8_dvb_s2(crc, a)
    return crc

crc8_data(packet[2:-1])
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: GeneralLOR