79797720

Date: 2025-10-23 11:32:58
Score: 2
Natty:
Report link

I added MessageBoxOptions.ServiceNotification or MessageBoxOptions.DefaultDesktopOnly and got what you want - a modal window on top of the notepad application.

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

79797717

Date: 2025-10-23 11:24:56
Score: 3.5
Natty:
Report link

The solution, upgrade to 6.9.3 which had not yet been released at the time of posting.

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

79797708

Date: 2025-10-23 11:18:55
Score: 1
Natty:
Report link

That’s expected behavior — Excel doesn’t allow inserting rows inside a protected table, even if the table cells are unlocked and “Insert rows” is checked.

Workarounds:

1. Unprotect → Add row → Reprotect via VBA or manually.

2. Use a data entry form that temporarily unprotects the sheet, adds a row, then protects it again.

3. Or move the table to an unprotected area and lock only the rest of the sheet.

Excel’s “Insert rows” permission only applies to rows outside structured tables, not within them.

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

79797703

Date: 2025-10-23 11:12:53
Score: 1.5
Natty:
Report link

You didn’t break anything. Your code is no longer running in one call stack (same name as program)—every procedure has its own stack entry and message queue.

Use the 276-byte PGMQ layout. Ensure you are sending messages to, and telling your message subfile to get its messages from, the designated call stack message queue.

That PGMQ layout is 3 parts: Program, module, procedure.

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

79797698

Date: 2025-10-23 11:05:51
Score: 1
Natty:
Report link

Apparently, the styles for the flatpickr were not loaded.

Depending on how you installed `flatpickr`, you would need to include the flatpickr CSS stylesheet to resolve the issue.
You might simply need to include CSS with the <link> HTML tag:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css">

or add to assets:

@import 'flatpickr/dist/flatpickr.css';

I was looking to install the flatpickr with Laravel. Here are the sources I used to resolve the issue:
How do I load the CSS for flatpickr when I use npm to install it in Laravel?
Laravel + Flatpicker: How to Install using NPM

Reasons:
  • Blacklisted phrase (1): How do I
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Maria Mozgunova

79797691

Date: 2025-10-23 10:50:47
Score: 2
Natty:
Report link

From iOS 17 use .containerRelativeFrame(.vertical)

ScrollView {
    VStack {
        Spacer()
        
        Text("Hello, world!")
        
        Spacer()
        
        Text("Some Text")
    }
    .containerRelativeFrame(.vertical)
}

More: https://www.hackingwithswift.com/quick-start/swiftui/how-to-adjust-the-size-of-a-view-relative-to-its-container

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

79797681

Date: 2025-10-23 10:43:46
Score: 1
Natty:
Report link

There are lots of posts already about how to gracefully shutdown Node http servers:

Graceful shutdown of a node.JS HTTP server

Nodejs/express, shutdown gracefully

How do I shut down my Express server gracefully when its process is killed?

Quitting node.js gracefully

To also gracefully shutdown all open websocket connections, just add this to your shutdown handler:

for (const client of wss.clients) {
    client.close(1001, 'Server shutdown');
}
wss.close();
Reasons:
  • Blacklisted phrase (1): How do I
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Sámal Rasmussen

79797679

Date: 2025-10-23 10:38:45
Score: 2
Natty:
Report link

Use

<th nowrap>Line 1<br>Line 2</th>
<td nowrap>Line 1<br>Line 2</td>
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Stephan Grün

79797677

Date: 2025-10-23 10:35:44
Score: 1
Natty:
Report link

I reproduce the problem. With the above-mentioned code I get result as follows:

# ->
# Found 61444 results
# Fetched 9946 available abstracts
# Read 9946 abstracts

Actually it is well-known PubMed problem of 10,000 results. See discussion here for example.

retmax=61444 sudgested by @Denis Sechin in Entrez.efetch does not solve the problem.

The way I can suggest is to handle entries year by year by changing mindate and maxdate in a cycle as follows:

# mindate = '2013/01/01',  maxdate = '2013/12/31',
# Found 2827 results
# Fetched 2824 available abstracts
# Read 2824 abstracts

# mindate = '2014/01/01',  maxdate = '2014/12/31',
# Found 3102 results
# Fetched 3098 available abstracts
# Read 3098 abstracts
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @indoes
  • Low reputation (1):
Posted by: Vladimir

79797675

Date: 2025-10-23 10:33:43
Score: 3.5
Natty:
Report link

https://ionicvoip.com/ maybe can help you make a application voip with ionic

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

79797668

Date: 2025-10-23 10:30:43
Score: 2.5
Natty:
Report link

Optimize GeoJSON data loading in ArcGIS Web Components using Server-Sent Events (SSE) for faster, real-time updates. Enhance map performance, reduce latency, and deliver seamless interactive geospatial visualizations with efficient data streaming.

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

79797663

Date: 2025-10-23 10:22:41
Score: 1.5
Natty:
Report link

UnionToIntersection is not what you really need

Pay attention to the wonderful library type-fest, there are 2 suitable types: AllUnionFields and SharedUnionFields

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

79797656

Date: 2025-10-23 10:13:38
Score: 2.5
Natty:
Report link

Your code is valid in C99+, but not in C89. C99 allows unnamed struct/union types in sizeof . C89 does not support anonymous structs expressions.

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

79797654

Date: 2025-10-23 10:12:37
Score: 11.5
Natty: 7
Report link

I also encountered this problem, and I've already set my account to private mode, but it still doesn't work. May I ask if you have any solutions?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): May I ask
  • RegEx Blacklisted phrase (2): it still doesn't work
  • RegEx Blacklisted phrase (2): any solutions?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 尘幕天空

79797651

Date: 2025-10-23 10:09:36
Score: 3.5
Natty:
Report link

Lehenga choli  🩷💖

*◾Note : Booking Complusary,Next Day Pickup*

*◾ Booking No : +919925689923

<<<<<<<<<>>>>>>>>>

My  Surat🕴️ fashion

<<<<<<<<<>>>>>>>>

🕴Surat New Bombay Market

India, Gujarat Suratenter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Filler text (0.5): <<<<<<<<<
  • Filler text (0): >>>>>>>>>
  • Filler text (0): <<<<<<<<<
  • Filler text (0): >>>>>>>>
  • Low reputation (1):
Posted by: Mehul Limbani

79797641

Date: 2025-10-23 09:55:32
Score: 2
Natty:
Report link

https://github.com/ray-project/ray/blob/ray-2.48.0/python/ray/_raylet.pyx#L1852

Function execute_task is where a remote function finally get executed. You can see ray just wrap your normal function (none async function) with a async wrapper and execute inside asyncio event loop.

So ray does not preempt async tasks, it just treat sync function as a async function.

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

79797640

Date: 2025-10-23 09:55:32
Score: 2
Natty:
Report link

The QoS setting of the client is the maximum QoS that it can receive. For example, if a message is published at QoS 2 and a client subscribed at QoS 0, then the message will be delivered with QoS 0. In your example, the server publishes at QoS 0 and the client set a maximum QoS of 2. Here, the message will be delivered with QoS 0, because that is the highest QoS that the server offers. See this Mosquitto documentation for an explanation of how the QoS setting works.

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

79797638

Date: 2025-10-23 09:54:31
Score: 4
Natty:
Report link

txs, after searching several hours .. this does the trick THANKS a LOT

Reasons:
  • Blacklisted phrase (0.5): THANKS
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hannes Ledl

79797636

Date: 2025-10-23 09:54:31
Score: 2
Natty:
Report link

you could try turning up the brightness, but if your storage is corrupted that wont work anyways.

i suggest checking out a support site for the phone you own and writing them some sort of message

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

79797626

Date: 2025-10-23 09:44:29
Score: 0.5
Natty:
Report link

You can use https://pcivault.io/; they are a PCI Credit Card Tokenization Vault. Using PCI Vault can aid your payment processing with multiple PSPs since you need to be PCI compliant to store credit card information, but with PCI Vault, you store the card info of the user there and can request that they process the payment to whichever PSP you want.

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

79797625

Date: 2025-10-23 09:44:29
Score: 5.5
Natty:
Report link

All,

This is the VBA code.

Can you give me some way to make this work pls.

Sub LoopCheckValue()
    Dim cell As Range
    Dim i As Integer
    
    i = 4
    For Each cell In ActiveSheet.Range("J5:J13")
    'What's the criteria?
    
        If (cell.Value <= 0) Then
     
        Set Outapp = CreateObject("Outlook.Application")
        Set Outmail = Outapp.CreateItem(0)
    

        With Outmail
            .to = "mail" 'CHANGE THIS
            .CC = ""
            .BCC = ""
            .Subject = [F2].Value + " Item due date reached"
            .Body = Range("A" & i).Value & " is due "
            .Send   'or use .Display
        End With
        ElseIf (cell.Value >= 30) And (cell.Value < 180) Then
     
        Set Outapp = CreateObject("Outlook.Application")
        Set Outmail = Outapp.CreateItem(0)
    

        With Outmail
            .to = "mail" 'CHANGE THIS
            .CC = ""
            .BCC = ""
            .Subject = [F2].Value + " Item due date reached"
            .Body = Range("A" & i).Value & " is due in less then 30 days"
            .Send   'or use .Display
        End With
        ElseIf (cell.Value < 180) Then
     
        Set Outapp = CreateObject("Outlook.Application")
        Set Outmail = Outapp.CreateItem(0)
    

        With Outmail
            .to = "mail" 'CHANGE THIS
            .CC = ""
            .BCC = ""
            .Subject = [F2].Value + " Item due date reached"
            .Body = Range("A" & i).Value & " is due in less then 180 days"
            .Send   'or use .Display
        End With
        End If
        i = i + 1
    Next cell
End Sub
Private Sub Worksheet_Selection(ByVal target As Range)

    If ActiveCell.NumberFormat = "dd-mmm-yy," Then
    
    ActiveSheet.Shape("Calendar").Visible = True
    
    
    
    ActiveSheet.Shape("Calendar").Left = ActiveCell.Left + ActiveCell.Width
    ActiveSheet.Shape("Calendar").Top = ActiveCell.Top + ActiveCell.Height
    
    Else: ActiveSheet.Shape("Calendar").Visible = False
    
    End If
    
End Sub
Reasons:
  • Blacklisted phrase (3): give me some
  • RegEx Blacklisted phrase (2.5): Can you give me some
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Marco Bakx

79797619

Date: 2025-10-23 09:40:28
Score: 1.5
Natty:
Report link
implementation 'com.google.ai.edge.litert:litert:1.4.0'
implementation 'com.google.ai.edge.litert:litert-support:1.4.0'
implementation 'com.google.ai.edge.litert:litert-metadata:1.4.0'
implementation 'com.google.ai.edge.litert:litert-api:1.4.0'

use this for workaround @Hossam Sadekk

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

79797610

Date: 2025-10-23 09:31:25
Score: 2
Natty:
Report link

I got an answer:

That one happens because Radix uses pointer events, and happy-dom/jsdom don’t fully support them.

your workaround adding those small polyfills in your setup file is totally fine.

everyone using Radix or shadcn in Vitest does something similar.

If you ever want to avoid polyfills, the only real alternative is running your tests in a real browser (like Vitest browser mode or Playwright), but that’s heavier.

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

79797609

Date: 2025-10-23 09:30:25
Score: 1.5
Natty:
Report link

Finally found a workaround: The issue is the manually assigned Id of the Example Entity.

If the id field is null by default and the value generated by a sequence or other type of Generator then the event is triggered.

If it is necessary to assign the id manually one could implement Persistable and make the entity object itself define whether it's new or not.

Adjusted the example project to see all variants: https://github.com/thuri/spring-domain-events/commit/097904594f6cd83526b871d0599fd04e13a6cc0c

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

79797608

Date: 2025-10-23 09:30:25
Score: 0.5
Natty:
Report link

As an alternative, if you're just using a one-off WakeLock and you don't need to share it across multiple tasks, you can also call wakeLock.setReferenceCounted(false) prior to calling wakeLock.acquire(). This would avoid the thread-safety concerns and still prevent the crash.

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

79797597

Date: 2025-10-23 09:16:22
Score: 2
Natty:
Report link

I’m not sure. This is just a prediction.

It might not trigger computation; it may create a decision tree and add two different branches depending on whether the result is true or false. During execution, it chooses one of these branches based on the result and continues the process.

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

79797596

Date: 2025-10-23 09:16:21
Score: 4.5
Natty:
Report link

For now, you can fix it like described here https://youtrack.jetbrains.com/issue/PY-85025

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

79797594

Date: 2025-10-23 09:14:21
Score: 1.5
Natty:
Report link

Okay so the post should probably renamed to: what does -fPIC do.

After searching a little bit I found out that when compiling a shared library in this case you have to specify -fPIC to allow position independent code PIC

Originally this issue came up because I tried to link a static library to a dynamic library. It is therefore important to also build the static library using -fPIC

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

79797585

Date: 2025-10-23 09:03:18
Score: 1
Natty:
Report link

Late-Night Debugging: When Every Portal Went Down
Last night was one of those nights every software engineer person remembers.
At around 10:30 PM, all our portals suddenly went down — completely.

The screen filled with this scary message:
“Server Error in ‘/’ Application — Could not load file or assembly ‘Microsoft.CodeDom.Providers.DotNetCompilerPlatform’. Access is denied.”
At first, I thought it was a missing DLL issue. But everything was exactly where it should be. That’s when it hit me — this was a permissions disaster waiting to be solved.

The Investigation
No one in the team had a clue why this happened — it had never occurred before.
Later I found out it was caused by some user permission settings done on the server that unintentionally stripped access from our Application Pool identities.
Basically, IIS couldn’t read, compile, or serve anything.
The entire system was down — and the pressure was on.

The Turning Point
From 10:30 PM till 2:00 AM, I kept investigating, checking access rights, logs, and IIS settings.
After hours of frustration, I finally struck gold — the life-saving commands that restored everything:

icacls “C:\inetpub\wwwroot\<YourSite>” /grant “IIS AppPool\<AppPoolName>:(OI)(CI)F” /T
icacls “C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files” /grant “IIS_IUSRS:(OI)(CI)F” /T
iisreset

And like magic — one by one, every portal came back online.
The Relief (and a Little Bit of Glory)
By 2 AM, everything was back to normal.
No errors. No downtime. Just a huge sigh of relief.

That night, I unintentionally became the hero of the night — and learned one big lesson:
Never underestimate a few lines of icacls!
Thanks Allah for the save — and respect to every developer who’s ever fought a late-night production fire

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

79797575

Date: 2025-10-23 08:47:14
Score: 3.5
Natty:
Report link

My issue was paths clashing as per the comments above. By correcting those, the app was accepted for review and has now been approved for live.

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

79797573

Date: 2025-10-23 08:43:13
Score: 2
Natty:
Report link

Already implied but…

Switch to using the 276 byte PGMQ layout. Then you can ensure your messages go to the right procedure MSGQ and your message subfile population will gets it messages from there also.

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

79797572

Date: 2025-10-23 08:38:12
Score: 1
Natty:
Report link

For me, i had to replace my when...statement with a doReturn,
i.e. instead of :-

when(service.getString()).thenReturn("something to return"));

use this:-

import org.mockito.Mockito;
.....

Mockito.doReturn("something to return").when(service).getString();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Chris Magowan

79797558

Date: 2025-10-23 08:22:08
Score: 3
Natty:
Report link

"SET search_path TO schema1, schema2;" should work. In some UI's like supabase you need to run it every time with your query.

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

79797546

Date: 2025-10-23 08:08:05
Score: 2.5
Natty:
Report link

Try wrapping it with a ChipTheme and adjusting the ChipThemeData accordingly.

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

79797537

Date: 2025-10-23 07:55:02
Score: 1
Natty:
Report link

The only method I found that works is to resize the image locally and insert it into the document.

![mermaid1](img/mermaid-diagram-2025-10-23-094117.png)

Bitbucket ignores other concepts, such as HTML or the width attribute.

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

79797525

Date: 2025-10-23 07:43:59
Score: 1
Natty:
Report link

When a Python Azure Function doesn’t appear in the Functions list after deployment, it usually means the platform couldn’t detect a valid function entry point. Since your .NET deployments work fine, the issue is almost certainly structural or environment-related rather than with CI/CD itself. Each function must live in its own folder (same name as the function), containing __init__.py and function.json. A flat root with only function_app.py will not be detected. Confirm your function app’s Runtime Stack = “Python” and Version = “3.10” in Azure.Check Log stream or Kudu -> D:\home\LogFiles\Application\Functions\host for messages like “No job functions found” or “Unable to find function.json”. Ensure that each function has its own folder with __init__.py (and function.json for v1 model), or use the new Python v2 model with a proper FunctionApp() object.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When a
  • Low reputation (1):
Posted by: Anurag Sarkar

79797520

Date: 2025-10-23 07:36:58
Score: 3.5
Natty:
Report link

Why differentiate user mode code and kernel mode code because it's built for other purposes for each other.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why
  • Low reputation (0.5):
Posted by: meBe

79797515

Date: 2025-10-23 07:33:57
Score: 0.5
Natty:
Report link

It's possible to publish to a remote server from Visual Studio, but there's no direct "remote server" option. Instead, you can use FTP/FTPS or Web Deploy. Alternatively, publish to a folder locally and transfer the files manually using SCP or another method. Choose the approach that fits your server setup

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Mahammad Azimzada

79797514

Date: 2025-10-23 07:32:56
Score: 2
Natty:
Report link

Installing binaries like jq mentioned here, from unknown sources is very very dangerous. Think first...

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

79797513

Date: 2025-10-23 07:31:56
Score: 3.5
Natty:
Report link

it solved in the system - device type setting - device type and choose T&A PUSH

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

79797491

Date: 2025-10-23 07:10:51
Score: 2
Natty:
Report link

Refernce

If HTTPS is used it encrypts the message for every RESTful Api methods such as POST,PUT,GET,DELETE,PATCH.

If HTTP is used the message for every RESTful Api methods won't be encrypted.

Below is summery

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

79797487

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

For me, it was again a plugin (Cucumber+) which was creating issue and kicking off high CPU usage. So most of the time, it should be issue with random plugins installed which may be consuming high memory and CPUs.

Uninstalling the Cucumber+ plugin solved issue for me.

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

79797483

Date: 2025-10-23 06:57:47
Score: 1.5
Natty:
Report link

You can use OpenCSV which is good enough described in https://opencsv.sourceforge.net/ , among other its quick start with an example.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Florian H.

79797481

Date: 2025-10-23 06:55:47
Score: 2.5
Natty:
Report link

This one is working ! Almost ten years after, thank you so much :-)

gmic -w -apply_video guit_vid.mp4,\"-blur 5,0\",0,-1,1,output.mp4

Been searching for a couple of hours, but haven't been able to find a proper syntax anywhere else .... (Got to recompile GMIC/CIMG with opencv support by the way)

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eric Senn

79797472

Date: 2025-10-23 06:48:45
Score: 1.5
Natty:
Report link
const getIp = (req) => {
  const forwarded = req.headers['x-forwarded-for'];
  return forwarded ? forwarded.split(',')[0].trim() : req.socket.remoteAddress;
};
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shyam Raghuwanshi

79797459

Date: 2025-10-23 06:33:41
Score: 1.5
Natty:
Report link

This

XMLSignatureFactory factory = XMLSignatureFactory.getInstance("DOM", "XMLDSig");

helped me when switching from JDJK 11 to JDK 17.

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

79797458

Date: 2025-10-23 06:32:41
Score: 2
Natty:
Report link

In crontab you do not execute a login shell. So the profile is not sourced.

You could include (depending which files exist in your account or on your system)

source $HOME/.bashrc

or

source $HOME/.profile

or

source /etc/profile

to the start of your script.

'source' could be abbreviated by a dot (.).

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

79797456

Date: 2025-10-23 06:30:40
Score: 0.5
Natty:
Report link

In Facer’s own documentation they note that “Due to restrictions of the Apple platform, Apple Watch faces currently cannot be fully customized and only ‘complication’ areas of predefined templates can be edited.”

They also mention certain refresh limitations: e.g., complications (third-party) can only refresh every ~15 minutes on watchOS.

So essentially, Facer uses Apple’s allowed “watch face template + complication” model, and injects designs into those templates rather than replacing the face system entirely.

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

79797455

Date: 2025-10-23 06:29:40
Score: 5
Natty:
Report link

can anyone help me by solving the following error:
[nas@sna obdx_base_installation]$ python runInstaller.py >>>> STARTING OBDX PRODUCT INSTALLATION <<<< Starting OBDX Database Installation with OBPM143 FLAVOR Tablespace with name OBDX_DEV and OBDX_AUDIT_DEV exists Dropping User... Objects dropped Schema dropped Role dropped Creating User... User Created Creating Role... Role Created Executing Grants... Execution of clip_master_script.sql started Execution of clip_master_script.sql completed Execution of clip_constraints.sql started Execution of clip_constraints.sql completed Execution of clip_seeds_executable.sql started Execution of clip_seeds_executable.sql completed Execution of clip_master_generic_rest_script.sql started Execution of clip_master_generic_rest_script.sql completed SUCCESSFULLY installed OBDX database Starting OBPM143 Database Installation... Table space with name TBS_OBDX_EHMS exists Dropping User Objects dropped Schema dropped Role dropped Creating User... User Created Creating Role... Roles Created Executing Grants... Executing OBPM Grants... Execution of table-scripts.sql started Execution of table-scripts.sql completed Execution of ubs_object_scripts.sql started Execution of ubs_object_scripts.sql completed Execution of obpm_object_scripts.sql started Execution of obpm_object_scripts.sql completed Execution of execute-seeds.sql started Execution of execute-seeds.sql completed Execution of obpm-seeds.sql started Execution of obpm-seeds.sql completed SUCCESSFULLY installed OBPM143 database Executed DIGX_FW_CONFIG_ALL_O.sql successfully Executed DIGX_FW_ABOUT_OBPM143.sql successfully Executed DIGX_FW_CONFIG_VAR_B.sql successfully Executed DIGX_FW_CONFIG_UBS_ALL_O.sql successfully Policy seeding successful Creating STB Schemas ... Dropping RCU RCU Schema dropped Running RCU Schema creation in progess ... STB Schemas Created Successfully Starting WEBLOGIC Setup and Configuration... Error: Could not find or load main class weblogic.WLST

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can anyone help me
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): can anyone help me
  • Low reputation (1):
Posted by: Dinberu Dejene

79797453

Date: 2025-10-23 06:24:39
Score: 0.5
Natty:
Report link

You’re right Etsy doesn’t currently provide a real-time order webhook or push notification through the public API. The most common solution is to poll the Orders API periodically (for example, every few minutes) and compare order IDs or timestamps to detect new sales. Some developers also use third-party integrations or middleware services that automate this polling and send notifications when new orders appear. While not ideal, this approach is the most reliable until Etsy offers an official event or webhook system.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: NH Shop Finds

79797450

Date: 2025-10-23 06:21:37
Score: 2
Natty:
Report link

I have an issue trying to install WAILS https://wails.io/docs/gettingstarted/installation

I am running a command and it outputs permission denied.

go install github.com/wailsapp/wails/v2/cmd/wails@latest

go: creating work dir: mkdir /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/go-build2536224663: permission denied
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sebastian Romero Laguna

79797421

Date: 2025-10-23 05:18:23
Score: 2
Natty:
Report link
  1. Download the Windows Installer (.msi) from https://nodejs.org/en/download
  2. During installation, check the box labeled "Automatically install the necessary tools."

enter image description here

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

79797416

Date: 2025-10-23 05:13:22
Score: 3.5
Natty:
Report link

https://www.google.com/search?q=momo

when i pass this i get navigation timeout error when i give 2 hours also . i try route ip and route arguments also but captcha will show how can i solve why this error come

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): when i
  • Low reputation (1):
Posted by: Nithiyapriyan Kurmban

79797411

Date: 2025-10-23 05:01:20
Score: 2.5
Natty:
Report link

This is solved in Codename One version 7.0.207

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

79797399

Date: 2025-10-23 04:36:15
Score: 2.5
Natty:
Report link

Your notes were valuable but sporadic..... The question was how to run a successful exact search and find our target points by cmd without typing our minds and writing several sentences to reach our ideal webpage

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

79797398

Date: 2025-10-23 04:29:13
Score: 1
Natty:
Report link

To support touch operations, we can't disable HorizontalScrollMode and VerticalScrollMode. The following seems to work. Can you give it a try?

<Grid ColumnDefinitions="*,Auto">
    <Grid
        Grid.Column="0"
        ColumnDefinitions="*,*"
        PointerWheelChanged="Grid_PointerWheelChanged"
        SizeChanged="Grid_SizeChanged">
        <Grid.Resources>
            <Style BasedOn="{StaticResource DefaultScrollViewerStyle}" TargetType="ScrollViewer">
                <Setter Property="VerticalAlignment" Value="Top" />
                <Setter Property="HorizontalScrollBarVisibility" Value="Hidden" />
                <Setter Property="VerticalScrollBarVisibility" Value="Hidden" />
                <!--
                <Setter Property="HorizontalScrollMode" Value="Disabled" />
                <Setter Property="VerticalScrollMode" Value="Disabled" />
                -->
            </Style>
        </Grid.Resources>
        <ScrollViewer
            x:Name="LeftScrollViewer"
            Grid.Column="0"
            ViewChanged="LeftScrollViewer_ViewChanged">
            <TextBlock FontSize="2048" Text="Left" />
        </ScrollViewer>
        <ScrollViewer
            x:Name="RightScrollViewer"
            Grid.Column="1"
            ViewChanged="RightScrollViewer_ViewChanged">
            <TextBlock FontSize="1024" Text="Right" />
        </ScrollViewer>
    </Grid>
    <ScrollBar
        x:Name="VerticalScrollBar"
        Grid.Column="1"
        IndicatorMode="MouseIndicator"
        ValueChanged="VerticalScrollBar_ValueChanged" />
</Grid>
private void Grid_SizeChanged(object sender, SizeChangedEventArgs e)
{
    VerticalScrollBar.ViewportSize = e.NewSize.Height;
    VerticalScrollBar.Maximum = Math.Max(LeftScrollViewer.ScrollableHeight, RightScrollViewer.ScrollableHeight);
}

private void Grid_PointerWheelChanged(object sender, PointerRoutedEventArgs e)
{
    VerticalScrollBar.Value = Math.Max(0, Math.Min(this.VerticalScrollBar.Maximum, this.VerticalScrollBar.Value - e.GetCurrentPoint(this).Properties.MouseWheelDelta));
}

private void VerticalScrollBar_ValueChanged(object sender, RangeBaseValueChangedEventArgs e)
{
    if (e.NewValue < 0 || e.NewValue > this.VerticalScrollBar.Maximum)
        return;

    this.LeftScrollViewer.ScrollToVerticalOffset(e.NewValue);
    this.RightScrollViewer.ScrollToVerticalOffset(e.NewValue);
}

private void LeftScrollViewer_ViewChanged(object sender, ScrollViewerViewChangedEventArgs e)
{
    if (sender is not ScrollViewer scrollViewer)
        return;

    VerticalScrollBar.Value = scrollViewer.VerticalOffset;
}

private void RightScrollViewer_ViewChanged(object sender, ScrollViewerViewChangedEventArgs e)
{
    if (sender is not ScrollViewer scrollViewer)
        return;

    VerticalScrollBar.Value = scrollViewer.VerticalOffset;
}
Reasons:
  • RegEx Blacklisted phrase (2.5): Can you give
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Andrew KeepCoding

79797397

Date: 2025-10-23 04:28:13
Score: 1
Natty:
Report link

2025 Update

SplEnum is no longer maintained, but you can still use it via the polyfill: aldemeery/enum-polyfill.

No need to install the old PECL extension—just run:

composer require aldemeery/enum-polyfill

Your existing SplEnum code will work immediately.

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

79797390

Date: 2025-10-23 04:15:10
Score: 2.5
Natty:
Report link

Yes, seems like aiogram_dialog.widgets.kbd URL is empty, and this is why TelegramBadRequest happens.

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

79797387

Date: 2025-10-23 04:14:09
Score: 1
Natty:
Report link

Networking on host (in vBox application) is the root cause.
Change from NAT to NAT NETWORK or other.
Configure IP addresses accordingly.

Choosing anything other than NAT brings down CPU usage to 1% from 100% on host (in my case it was 25%, 1 core of 4 was running on 100%). Both Host & Guest now on 1-3% when not running any app.

This resolved the Host 100% CPU usage issue for me (Guest XPsp3 running on Host Ubuntu 24.04.3)

Deleted NAT entry in Networks in vBox application
Added NAT NETWORK, set ip to 10.0.2.0/24 (host)

Client end
10.0.2.4 - 253 (set ip to anything between)
255.255.255.0
10.0.2.1 (gateway)
DNS:
208.67.222.222 (opendns)
8.8.8.8 (google)

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

79797385

Date: 2025-10-23 04:12:08
Score: 1.5
Natty:
Report link

You can very quickly create a unique layout for a landing page in WordPress. The best and perhaps the easiest way is to use a page builder like Elementor, Divi, or Beaver Builder, which lets you design a page from scratch and even hide the default header and footer. You can also create a custom page template in your theme if you’re comfortable with a bit of coding. This gives you full control over layout, background, and design elements. Many businesses also hire professionals offering Landing Page Design Services to create high-converting, visually distinct pages that blend perfectly with their brand while achieving specific marketing goals—like lead generation or product promotion.

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

79797381

Date: 2025-10-23 04:05:07
Score: 0.5
Natty:
Report link

Yes — your assumption is correct and still practical in 2025: most container and cloud job systems can mount directories, but not individual files.

Mounting a file directly into a container’s filesystem is usually an edge case.

Here’s how it breaks down across systems:

🧩 Kubernetes

Kubernetes volumeMounts only support mounting directories, not single files — unless you use specific volume types that simulate it (like configMap, secret, or projected volumes).

Even then, these are internally implemented as directories containing a file, not true file-level mounts.

For example:

volumeMounts:

- name: my-volume

mountPath: /app/config.json

subPath: config.json

works, but it’s a subPath hack — it still mounts the parent directory underneath.

When using sidecars and shared volumes, this can break easily because subPath mounts aren’t dynamically updated and don’t behave like a live mount point.

🧩 Docker / OCI Containers

Native Docker supports -v /host/path:/container/path, but it also expects a directory or a full file path that already exists on the host.

If the file doesn’t exist beforehand, the bind mount fails.

So while technically you can bind a single file, in practice pipeline systems and orchestration layers prefer directory mounts — they’re safer, portable, and more flexible for FUSE or remote mounts.

🧩 Cloud Batch / Vertex AI / Other Managed Runtimes

Most managed job systems (Google Cloud Batch, Vertex AI CustomJob, AWS Batch, SageMaker, etc.) abstract away low-level mounts, but when you provide mount specs, they’re all directory-based.

These platforms assume that you’re mounting a dataset, a model directory, or a temporary workspace — not individual blobs.

Even if they allow specifying a single object (like gs://bucket/file.txt), they’ll copy or download it into a temporary directory under the hood, not mount it as a file.

⚙️ Practical Implication

So, your design — where each output artifact lives inside its own directory and the actual content is always named consistently (/data) — is solid and future-proof.

It keeps mounts predictable, works with sidecar FUSE setups, and avoids subPath limitations.

Even in advanced container systems, true file-level mounts are rare, non-portable, and fragile.

Directory-level granularity is the reliable common denominator across Docker, Kubernetes, and cloud execution frameworks.

💡 In Short

File-level mounts = possible only in specific, fragile cases.

Directory mounts = universally supported, portable, and sidecar-friendly.

Your “/data suffix under a unique directory” pattern is a good long-term choice.

✅ TL;DR:

Keep the /data directory convention — file mounts aren’t widely or consistently supported, and your approach avoids nearly all real-world portability issues.

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

79797380

Date: 2025-10-23 04:02:06
Score: 1.5
Natty:
Report link
for ( init(); check();  doOut()) 
{
 doIn(); 
}

means

init();
for (;;) 
{
  if (!check()) break;
  doIn(); 
  doOut();
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lin

79797378

Date: 2025-10-23 03:58:05
Score: 2.5
Natty:
Report link
pip install dotenvcheck

Check this package at https://pypi.org/project/dotenvcheck/

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

79797377

Date: 2025-10-23 03:56:05
Score: 0.5
Natty:
Report link

When you got a range object from selection(like `myRange=mySelection.getRangeAt(0)`), send the range to this function:

function getSelectedText(range: Range):string {
    const div = document.createElement('div');
    div.appendChild(range.cloneContents());
    // we need get style by window.getComputedStyle(), 
    // so, it must be append on dom tree.
    // here is <body>,or some where that user can't see.
    document.body.appendChild(div);
    const it = document.createNodeIterator(div);
    let i;
    while (i = it.nextNode()) {
        // remove `user-select:none` node
        if (i.nodeType === Node.ELEMENT_NODE && window.getComputedStyle(i).userSelect === 'none') i.remove();
    }
    const cpt: string = div.innerText;
    div.remove();
    return cpt;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: callmenp

79797374

Date: 2025-10-23 03:43:02
Score: 3.5
Natty:
Report link

CanCanCan combined with Rolify can do wonders.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): CanCanCan
  • Low reputation (0.5):
Posted by: ldlgds

79797371

Date: 2025-10-23 03:40:01
Score: 0.5
Natty:
Report link

You don’t need jQuery for this — Angular animations can handle it cleanly.

Your main goal is to make one text slide out, another slide in, and swap them after the animation.

You can do that with a simple animation trigger and an event callback that updates the text when the animation finishes.

Here’s a minimal working example (Angular 19): import { Component } from '@angular/core';

import { bootstrapApplication } from '@angular/platform-browser';

import { trigger, state, style, transition, animate } from '@angular/animations';

import { provideAnimations } from '@angular/platform-browser/animations';

@Component({

selector: 'app-root',

animations: [

trigger('slide', \[

  state('up', style({ transform: 'translateY(-100%)', opacity: 0 })),

  state('down', style({ transform: 'translateY(0)', opacity: 1 })),

  transition('up \<=\> down', animate('300ms ease-in-out')),

\]),

],

template: `

\<h3\>Angular animation: sliding text\</h3\>

\<div class="box"\>

  \<div

    class="panel"

    \[@slide\]="state"

    (@slide.done)="onDone()"

  \>

    {{ currentText }}

  \</div\>

\</div\>

\<button (click)="animate()"\>Animate\</button\>

\<button (click)="reset()"\>Reset\</button\>

`,

styles: [`

.box { position: relative; height: 60px; overflow: hidden; }

.panel { position: absolute; width: 100%; text-align: center; font-size: 18px; background: #f6f6f6; }

button { margin: 6px; }

`],

})

export class App {

state: 'up' | 'down' = 'down';

currentText = 'Login';

nextText = 'Welcome 1';

count = 1;

animate() {

this.state = this.state === 'down' ? 'up' : 'down';

}

reset() {

this.count++;

this.nextText = \`Welcome ${this.count}\`;

this.animate();

}

onDone() {

if (this.state === 'up') {

  this.currentText = this.nextText;

  this.state = 'down'; // reset position

}

}

}

bootstrapApplication(App, { providers: [provideAnimations()] });

How it works:

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

79797370

Date: 2025-10-23 03:36:00
Score: 4
Natty:
Report link

Hi I have overcome this with this stackblitz.

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

79797368

Date: 2025-10-23 03:29:59
Score: 1
Natty:
Report link

Here is a convenient wrapper function:

def re_rsearch(pattern: re.Pattern[str], *args, **kwargs) -> re.Match[str] | None:
    m = None
    for m in pattern.finditer(*args, **kwargs):
        pass
    return m
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: enwioa

79797367

Date: 2025-10-23 03:24:58
Score: 1
Natty:
Report link

I checked with the JetBrains dotCover team, and they informed me that running coverage to IIS was supported until version 2025.2. In 2025.2, support for IIS was removed due to technical reasons. It may be restored in an upcoming release, likely in 2025.3, but this has not been confirmed yet.

Please find the link to the reference below.

Discussion link

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: KR Akhil

79797362

Date: 2025-10-23 03:02:53
Score: 0.5
Natty:
Report link

Here's a workaround solution I've came to disable NSScrollPocket:

public extension NSScrollView {
    func disableScrollPockets() {
        guard #available(macOS 26.0, *) else { return }
        setValue(0, forKey: "allowedPocketEdges")
        setValue(0, forKey: "alwaysShownPocketEdges")
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: goldwalk

79797340

Date: 2025-10-23 02:19:44
Score: 3.5
Natty:
Report link

Color preview

The official link: https://learn.microsoft.com/en-us/dotnet/api/system.windows.media.colors?view=windowsdesktop-9.0

(Must be at least 30 chars to post an answer.)

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

79797335

Date: 2025-10-23 01:48:37
Score: 3
Natty:
Report link

that error means u used an invalid flag --allow in your Docker build command and maybe u can try excecute this command with not that

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

79797333

Date: 2025-10-23 01:42:36
Score: 0.5
Natty:
Report link

Jekyll had the same issue with wdm gem in their own Gemfile, and at some point they changed it to:

gem 'wdm', '~> 0.1.1', :install_if => Gem.win_platform?
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Hakanai

79797332

Date: 2025-10-23 01:41:36
Score: 1.5
Natty:
Report link

Hey I have a example for you :

component child:

<script setup lang="ts">
  const emit = defineEmits(['update:email','update:password'])
  const handleEmail = (event: Event) => {
    const target = event.target as HTMLFormElement
    emit('update:email', target.value)
  }
  const handlePassword = (event: Event) => {
    const target = event.target as HTMLFormElement
    emit('update:password', target.value)
  }
</script>
<template>
  <div class="loginContainer">
    <input type="email" placeholder="Email address" @input="handleEmail" />
    <Divider/>
    <input type="password" placeholder="Password" @input="handlePassword" />
  </div>
</template>

component parent:

template:

<template>
  <div class="background">
    <span class="title">Sign in to ConnectCALL</span>        
    <div style="display: flex; flex-direction: column; gap: 20px; width: 500px; margin: 20px;">
      <FormsEmailAndPassword @update:email="handleEmail" @update:password="handlePassword" />
      <div style="text-align: end;">
        <ButtonLinkButton title="Forgot Password?" @click="redirectToRecoverPage" :isLoading="isLoading" />
      </div>
      <ButtonRegularButton title="Sign In" @click="initAuth" :isLoading="isLoading" />
      <ButtonRegularButton title="Register" variant="secondary" @click="redirectToSignUp" backgroundColor="white" :isLoading="isLoading" />
    </div>
  </div>
</template>

script:

const handleEmail = (value: string) => {   
    email.value = value    
  }
  const handlePassword = (value: string) => {
    password.value = value
  }

I hope thats help you

Reasons:
  • RegEx Blacklisted phrase (2): Hey I have
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jovanny Ruiz

79797330

Date: 2025-10-23 01:29:33
Score: 2.5
Natty:
Report link

If the passkey is for an account at the IdP which is a different party than your app, you need to use a system web view for the sign in.

https://passkeys.dev/docs/reference/android/#webviews

https://passkeys.dev/docs/reference/ios/#webviews

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

79797324

Date: 2025-10-23 01:19:31
Score: 5.5
Natty:
Report link

Are you trying to have the username underneath the items in the small design?

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

79797323

Date: 2025-10-23 01:17:30
Score: 4.5
Natty:
Report link

I just built https://www.commitcompare.dev/ to get the compare URL and diff files easily!

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

79797317

Date: 2025-10-23 00:57:26
Score: 1.5
Natty:
Report link

So It might be useful for someone else, So apparently JsonBin.io has a bad curl request info in documentation. Instead of double quotes "" use single quotes '' for the X-Master-Key or X-Access-Key header. and the Curl request passes without 401 error. Hope it helps somebody

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dren Mullafetahu

79797316

Date: 2025-10-23 00:57:26
Score: 2.5
Natty:
Report link

I am encountering the same issue. when running like this graph.microsoft.com/v1.0/me/messages?$filter=internetMessageId eq '<[email protected]>' i am getting a status code 404 not found. But i know the email is present in the inbox. Any lead on it will help.

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

79797315

Date: 2025-10-23 00:56:25
Score: 4.5
Natty:
Report link

I made a step by step video implementing Entra external ID. Maybe it can help you.

https://youtu.be/MKGIKcCpQ0o?si=32ubvjCKCL-R1fGz

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: EmiFala

79797314

Date: 2025-10-23 00:54:24
Score: 0.5
Natty:
Report link

The following improves upon just simple cp -a in that it does not include the devDependencies, so function.zip can be 10x smaller.

cp package.json dist/
npm install --prefix ./dist --omit=dev
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jjurach

79797308

Date: 2025-10-23 00:41:21
Score: 4
Natty: 5
Report link

Allowed IP subnet in storage account fixed the issue.. Thank you !

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Balan Nachimuthu

79797307

Date: 2025-10-23 00:40:21
Score: 0.5
Natty:
Report link

Try adding modal={true} to Popover

return (
    <Popover modal={true}>

This is because calendar becomes non interactive due to pointer event conflicts caused by how Radix UI (the underlying library) handles modal overlays and portals

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

79797298

Date: 2025-10-23 00:03:13
Score: 0.5
Natty:
Report link

I had a similar situation. I deleted a git, recreated it, refreshed it. All the files showed in Unstaged Changes. Plus and Double Plus did not appear to move them into Staged Changes.

So I Restarted Eclipse and then when I clicked inside an open editor for one of the files, suddenly the files all appeared in Staged Changes. That is because of the Link with Editor state being enabled. I was able to change files and move from Unstaged to Staged as usual. I was able to make the first commit at that point with no issues.

It seemed necessary to Restart to update the view, which seemed not to update otherwise. After that, clicking the Repository in the Git Repositories tab (View) would probably have revealed the same as clicking in an editor.

Eclipse 2025-09 (4.37.0) Build id: 20250905-1456.

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

79797294

Date: 2025-10-22 23:38:07
Score: 1
Natty:
Report link

If anyone encounters this issue, simply add symbolConfiguration to the DisplayRepresentation.Image as follows:

.init(systemName: name, tintColor: color, symbolConfiguration: .preferringMulticolor())

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

79797287

Date: 2025-10-22 23:22:01
Score: 2
Natty:
Report link

I recently started learning cpp and i encountered with this problem
which i searched for and understood it need some configurations on json file and building exe file of the code to be able to run and debug
which i found out C/C++ Compile Run
extention will automatically do it all
https://marketplace.visualstudio.com/items?itemName=danielpinto8zz6.c-cpp-compile-run

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

79797284

Date: 2025-10-22 23:09:58
Score: 0.5
Natty:
Report link

If you're using WorkManager, you may also need to specifically add the Foreground Service Type to the third parameter of the ForegroundInfo method:

ForegroundInfo(INSERT NOTIFICATION ID HERE, INSERT NOTIFICATION OBJECT HERE, ServiceInfo.FOREGROUND_SERVICE_TYPE_LOCATION)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user16118981

79797261

Date: 2025-10-22 22:15:47
Score: 1
Natty:
Report link

No, you cannot link enterprise and personal accounts because they use different user authentication.

Proof by cases:

Case 1: Attempt to link enterprise/personal via enterprise account.

Sign in to <enterprise>.github.com via LDAP. Upon sign in, select top right pfp button --> Add Account

Redirects you to enterprise sign in, personal account credentials invalid.

Case 2: Attempt to link enterprise/personal via personal account.

Sign in to github.com. Upon sign in, select top right pfp button --> Add Account

Redirects you to non-enterprise GH, enterprise creds invalid.

Try to get around it and get back to me if you do. Would love to show (obfuscated ofc) my enterprise work on personal in pursuit of that full green graph.

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

79797260

Date: 2025-10-22 22:14:47
Score: 1.5
Natty:
Report link

I was totally broken when the love of my life left me it was so hard for me i almost gave up if not for a friend who directed me to DR ODESHI a very good and powerful man who helped me bring back the love of my life and now he treat me with so much love and care, you can contact him via email [email protected] or

https://wa.me/+2347011823004

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

79797259

Date: 2025-10-22 22:14:47
Score: 2
Natty:
Report link

I actually created an extension to search all elements on requests and responses of queries. But it's only available as a Chrome extension.

It is able to search even through Payload. I created it as a week-end project recently and kept iterating on it since if it's of actually any help for you.

The chrome extension is called "Network Deepscan" and you can find it here

enter image description here

Reasons:
  • Blacklisted phrase (1): any help
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Knighto05

79797258

Date: 2025-10-22 22:11:46
Score: 1.5
Natty:
Report link

Reorder factor levels. For example:

XP_DATA$LANGUAGE = factor(XP_DATA$LANGUAGE, levels=c("Spanish", "Italian", "English")) 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Reinhold Kliegl

79797253

Date: 2025-10-22 21:59:43
Score: 5
Natty:
Report link

Currenlty, having the same issue with my Jetson Nano Dev. Kit.
Could you be so kind to send me the full file.

Got the same issue while compiling.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: Harrison Adrian

79797229

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

The issue wasn’t with the code itself, but with the expression. It should be 1/ng instead of ng.
That change makes a big difference, since using 1/ng keeps the values on a proper scale and ensures the determinant is non-zero.
After fixing it to 1/ng, it works as expected.

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

79797206

Date: 2025-10-22 20:29:21
Score: 2
Natty:
Report link

Try PHP CRUD API Generator. Expose your MySQL/MariaDB database as a secure, flexible, and instant REST-like API. Features optional authentication (API key, Basic Auth, JWT, OAuth-ready),
OpenAPI (Swagger) docs, and zero code generation.

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

79797196

Date: 2025-10-22 20:22:18
Score: 1
Natty:
Report link
Did you try

select title from recipe join ingredient as i1 on recipe.recipeId= i1.recipeId join ingredient as i2 on recipe.recipeId= i2.recipeId
where (i1.ingredient = "egg" and i1.amount = 2) and i2.ingredient = "water" ;

?
Reasons:
  • Whitelisted phrase (-2): Did you try
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Stanislav Kikot

79797187

Date: 2025-10-22 19:54:11
Score: 2
Natty:
Report link
windows_capture is faster than mss, at least in windows
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Cristian Jorge A. Kusch

79797185

Date: 2025-10-22 19:53:11
Score: 2.5
Natty:
Report link

I have resolved a similar issue by deleting and then re-adding the server folder of my project.

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

79797184

Date: 2025-10-22 19:49:09
Score: 0.5
Natty:
Report link

The solution is to add a stopBy: end right after the kind so it looks for not just immediate children but anything that can match, including any descendant and siblings.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Ilan Schemoul

79797175

Date: 2025-10-22 19:36:05
Score: 0.5
Natty:
Report link

The comments from Harold and amalloy are spot on: floats is the correct way to type hint a float array.

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

79797174

Date: 2025-10-22 19:35:05
Score: 1
Natty:
Report link

Well, if you created the Unix socket in $PWD, you cannot expect it to be in the location configured by postgresql.conf or the default location.

Try

createdb --host=$PWD mydb

Your are just horsing around and experimenting, right?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Laurenz Albe