79728298

Date: 2025-08-07 08:40:20
Score: 1.5
Natty:
Report link

from PIL import Image

# Buka gambar

img = Image.open("IMG-20250807-WA0018.jpg")

# Tentukan area potong (left, upper, right, lower)

# Ini nilai contoh, bisa disesuaikan tergantung ukuran asli dan posisi orang

width, height = img.size

left = int(width * 0.3)

right = int(width * 0.7)

upper = 0

lower = height

# Potong gambar

cropped_img = img.crop((left, upper, right, lower))

# Simpan hasil

cropped_img.save("hasil_crop.jpg")

cropped_img.show()

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

79728296

Date: 2025-08-07 08:38:18
Score: 7
Natty:
Report link

Thank you very much, your answer has been useful.
Therence and Bud will be grateful;)

enter image description here

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (2): will be grateful
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rosario Di Mari

79728290

Date: 2025-08-07 08:36:16
Score: 6.5
Natty:
Report link

Yes, it is a bug, me and many people have same problem.
https://community.openai.com/t/issue-uploading-files-to-vector-store-via-openai-api/1336045

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): have same problem
  • Low reputation (1):
Posted by: NguyenTC

79728278

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

I found the answer to my question. I had misunderstood the problem. The issue was not the scrollbar, but how I was computing the size of the inner WebContentsView.

I used getBounds() on the window, but this returns the outer bounds including the window borders, menu etc, whereas the bounds for the web view are expressed relative to the content view.

So the correct code should be

const currentWindow = BaseWindow.getAllWindows()[0];
const web = new WebContentsView({webPreferences: { partition: 'temp-login' }});
currentWindow.contentView.addChildView(web);
web.setBounds({
    x: 0,
    y: 0,
    width: currentWindow.contentView.getBounds().width,
    height: currentWindow.contentView.getBounds().height,
});
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: sam marshall

79728274

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

Use this command below:

git config --global user.email "YOUR_EMAIL"

It is mentioned in the GitHub official documents
Link

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

79728258

Date: 2025-08-07 08:15:10
Score: 2.5
Natty:
Report link

You may wrap top-level route components to display a “Something went wrong” message to the user, just like how server-side frameworks often handle crashes. You may also wrap individual widgets in an error boundary to protect them from crashing the rest of the application.

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

79728252

Date: 2025-08-07 08:11:08
Score: 0.5
Natty:
Report link

I know this is a pretty old question, but if someone still happens to come across it...

You need to manually override the canonical URL only on paginated versions of your custom "Blog" page using the wpseo_canonical filter.

Add this to your theme's functions.php:

add_filter('wpseo_canonical', 'fix_blog_page_canonical');
function fix_blog_page_canonical($canonical) {
    if (is_page('blog') && get_query_var('paged') > 1) {
        global $wp;
        return home_url(add_query_arg([], $wp->request));
    }

    return $canonical;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Peter

79728248

Date: 2025-08-07 08:06:07
Score: 4
Natty:
Report link

Stupidly the problem was that i was using linux-arm over linux-64 as platform

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

79728246

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

I had the same issue when having dots in the url.

as a workaround I am replacing dots with $ before calling the NavigateTo, then do the reverse right at the begining of the OnParametersSetAsync

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: navid mashayekh

79728227

Date: 2025-08-07 07:55:03
Score: 2
Natty:
Report link

I needed the name of a class as a string and ended up using

String(describe: MyClass.self)
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ArvoX

79728226

Date: 2025-08-07 07:53:03
Score: 1
Natty:
Report link

Solution

I included the select attribute to match the selected itemsPesPage() value which is now an input. So the parent component is the one that updates the value rather than the child component

<option [value]="size" [selected]="size === itemsPerPage()">{{size}}</option>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: kibet

79728217

Date: 2025-08-07 07:43:00
Score: 1.5
Natty:
Report link

This is stupid Stuff.

Your previous constructor should be rewritten as this

 public function __construct() 
{ 

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

79728212

Date: 2025-08-07 07:38:58
Score: 1
Natty:
Report link
onTap: () => Navigator.push(
  context,
  MaterialPageRoute(
    builder: (_) => BlocProvider(
      create: (_) => HomeCubit()..getProfileData(similarJobs?.sId ?? ''),
      child: TopProfileScreen(id: similarJobs?.sId ?? ''),
    ),
  ),
),

if you are using bloc simple use bloc provider in related product that you want navigate new related product .....when you back from this page bloc state manage that things for you

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

79728202

Date: 2025-08-07 07:32:56
Score: 1
Natty:
Report link

Here's a good workaround...

As far as to what is happening, I could only guess. I don't feel like spending a lot of time trying to figure it out either. I don't believe this is the intended usage of the popover. Popover to normally used to popover a different view, not itself. It's interesting the View Extension works ( in my shortened testing) ... and the modifier doesn't. Best of luck.



extension View {
  func popper ( _ isPresented: Binding < Bool > ) -> some View {
    Color.clear
      .popover  ( isPresented: isPresented ) { self  }
  }
}


#if DEBUG
struct DisplayAsPopoverModifier_Previews: PreviewProvider {
    static var previews: some View {
        VStack(spacing: 16) {
            Text("Title")
                .font(.largeTitle)

            Image(systemName: "star")
                .font(.largeTitle)
        }
        .popper1 ( .constant ( true ) )
    }
}
#endif
Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tim

79728200

Date: 2025-08-07 07:30:56
Score: 2.5
Natty:
Report link

When you use the Download a image or file Dataverse action in Power Automate make sure to expand the advanced options. This will show the Image size input. When not filled, it will by default download a thumbnail. When you set this to full, the file/image will be downloaded in the maximum resolution and not a thumbnail.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you use the
  • Low reputation (1):
Posted by: user31229144

79728197

Date: 2025-08-07 07:29:55
Score: 0.5
Natty:
Report link

The problem was caused by the Windows shortcuts (.lnk files), which are used as symbolic links, created by MontaVista in 2006 not correctly being resolved.

The first issue that at some point in time the shortcut resolution mechanism of cygwin changed and the current cygwin version 3.6.4-1 can not correctly resolve the old-style shortcuts created in 2006 as links. Thus, I switched back to cygwin version 2.10.0-1 available on the cygwin time machine. This resolved the issue on my local system.

However, when working with Windows containers there were several issues with the file attributes missing due to the file system being used by docker. I initially tried to unzip the ZIP archive into the container file system during the build phase so that the container would start as fast as possible and be self-contained. However, the shortcut resolution did not work due to issues with the file attributes. Thus, as a fix given that the container is an intermediate solution while modernising the build process, I decided to mount the unzipped directory containing the compiler using docker's -v option: docker run --rm --name mips-build -v C:\xyz\resources\MontaVista:C:\MontaVista mips-build:0.0.0.

However, the compiler needs to be located inside the "D: drive". Thus, I created a symbolic link as part of the CMD instruction within the Docker file:

CMD [ "C:\\cygwin64\\bin\\bash.exe", "--login", "-i", "-c", "ln -s /cygdrive/c/montavista/ /cygdrive/d/MontaVista", "&&", "..." ]
Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Lukas

79728193

Date: 2025-08-07 07:28:55
Score: 0.5
Natty:
Report link

There is no possible way to control the modules on Azure Hybrid workers via Azure Automation. The modules control functionality in Azure Automation is only for the Azure Workers (the built-in ones). This means you will have to do it manually, by running scripts on your machines or some other automation way.

Not that you can write your runbooks in a way that it checks if certain module and version is available on the machine. If it is not available you can have a code that installs the module and the version. That of course will add additional runtime for your runbooks of doing that check and more additional time if it has to download and install the module(s).

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

79728192

Date: 2025-08-07 07:28:55
Score: 1.5
Natty:
Report link

Stop and starting following services resolve the issue for me:

sudo systemctl stop docker.socket

sudo systemctl stop docker

sudo systemctl start docker.socket

sudo systemctl start docker

Note: Make sure to stop docker.socket first, otherwise it will start the docker service when you stop, and make sure do stop instead of restart.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Roshan Gerard Bolonna

79728181

Date: 2025-08-07 07:16:52
Score: 3.5
Natty:
Report link

It's pretty simple - just disable default shortcuts it preferences and "Ctrl+K+C" -> comment, "Ctrl+K+U" - uncomment selected area... Look at attached images...
enter image description here
enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dimo Todorov

79728180

Date: 2025-08-07 07:14:51
Score: 2.5
Natty:
Report link

From what I have experienced, the easiest way is to apply every updates you need in the suggestions tab of the project structure then apply it and reload your gradle project. In my case it fixed itself but you might also want to check your libs.versions.toml file and fix the warnings if you have some.

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

79728177

Date: 2025-08-07 07:13:50
Score: 6
Natty: 5.5
Report link

Please tell me if this problem has been solved

Reasons:
  • RegEx Blacklisted phrase (2.5): Please tell me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: lzl286768

79728171

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

I managed to solve the "starting up" error. Some Android SDK was missing. When I installed it, the connection between Android Studio and the virtual device remained intact.

The answer of @hanrvuser (disabling the impeller) helped. Though, I now found another solution: running the virtual device with software instead of automatic/hardware.

Reasons:
  • Whitelisted phrase (-2): solution:
  • No code block (0.5):
  • User mentioned (1): @hanrvuser
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dunkiero

79728165

Date: 2025-08-07 07:04:48
Score: 1
Natty:
Report link

I’ve used an open-source tool called Keploy recently, and it’s been pretty useful when I needed to do integration testing without heavy refactoring.

In one project, we were working with a third-party API (kind of a black-box scenario) buried deep in the codebase — similar to what you're describing. Writing isolated unit tests wasn’t practical at that point, so we needed a way to test how our app behaved when interacting with that external component.

Keploy worked by sitting between the app and the network — it recorded actual requests and responses while we used the app normally. That included calls to the third-party API. From that, it generated test cases automatically, and even mocked the API calls for later test runs. This meant we didn’t need to set up or maintain a separate staging version of the third-party service every time we wanted to validate something.

We were able to run these generated tests as part of our pipeline and catch integration issues early, especially when updating dependencies. It wasn’t perfect — there’s a bit of setup involved, and you need to run the app with Keploy to record the traffic — but it definitely saved time compared to writing all the test cases and mocks manually.

It doesn’t replace unit testing tools, but it complements them well. We used our regular testing framework for unit tests, and then Keploy for parts of the system where integration mattered more than isolation.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alok

79728164

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

In addition to other comments, Expo SDK 53 is setting Android 15 (API level 35) by default, so you can just upgrade your project to use the latest updates
https://expo.dev/changelog/sdk-53

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

79728161

Date: 2025-08-07 07:01:46
Score: 4.5
Natty: 4.5
Report link

You can easily convert it online using this site: https://formatjsononline.com/json-to-string.

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

79728155

Date: 2025-08-07 06:55:45
Score: 2
Natty:
Report link

<a href="https://astrotalk.store/collections/pyrite">Pyrite</a>, often called “Fool’s Gold” due to its golden metallic luster, is a powerful healing crystal known for attracting wealth, abundance, and protection. Spiritually, it boosts confidence, shields against negativity, and enhances mental clarity. Pyrite is commonly used in jewelry like bracelets, pendants, and raw stones, and is often placed in homes or offices to invite prosperity and success. It resonates with the Solar Plexus Chakra and is ideal for those seeking motivation, focus, and grounding energy.

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

79728151

Date: 2025-08-07 06:45:43
Score: 3.5
Natty:
Report link

The Problem where that That in the Solution the Configuration were missing the checkbox Build

To solve it: RightClick on the Solution => Select "Configuration Manager" => check the check box Build (see Picture) enter image description here

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

79728147

Date: 2025-08-07 06:41:42
Score: 3.5
Natty:
Report link

You can try the online tool https://www.splitbybookmark.com/, it can split the pdf by toc and page limited.

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

79728138

Date: 2025-08-07 06:34:40
Score: 1.5
Natty:
Report link

It turns out that there has been a problem with the Hedera Testnet since July 31st, which results in the exact same issue I am having.

Investigating - We’re investigating an issue on the Hedera Testnet affecting smart contracts. The behaviour was first reported starting 31 July 2025.

Deployments may succeed, but you may experience:

  • Contract bytecode not appearing on Hashscan
  • Read/function calls failing with a BAD_DATA error
Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kotaka Danski

79728127

Date: 2025-08-07 06:16:36
Score: 4
Natty: 4.5
Report link

https://codecanyon.net/item/fitness-app-react-native-frontend-laravel-backend/56749615
Ready made code of fitness app cross platform in react native with backend

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

79728124

Date: 2025-08-07 06:11:35
Score: 0.5
Natty:
Report link

Large file uploaded by browser has its limit of 25mb

  1. You can use the git clone, to clone the remote repository to your local computer.

  2. Manually drop your file to the folder, and use git to add, commit, and push.

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

79728122

Date: 2025-08-07 06:10:34
Score: 0.5
Natty:
Report link

c.b.a.a$b->onReceive points to an obfuscated part of your code. It appears with this cryptic name because you have enabled ProGuard in your Android project, which obfuscates the code. Obfuscation creates a mapping file as well that lists all the mappings that took place during the obfuscation. For instance, Class A -> x, Class B -> p, etc.

To find out to which line of code this error refers, you can do the following:

  1. Go to Play Console and download the .aab file that Play Console mentions has a policy violation. (You can find it at Bundle Explorer)

  2. After the file is downloaded, rename it and change its file type to .zip.

  3. Open the zip file and navigate to a folder called BUNDLE-METADATA/com.android.tools.build.obfuscation/ and open the file proguard with VS Code, or just a text editor

  4. Using the "Find" tool (Command+F), find to which class and method c.b.a.a$b->onReceive is mapped.

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

79728115

Date: 2025-08-07 05:52:30
Score: 1
Natty:
Report link

If you found flutter clean or iOS pod clean (as mentioned above) didn't help, it may caused by your code.

In my scenario, it's a device specific issue, by default I am choosing the 3rd camera in my test devices, but in another device, there is no 3rd camera. Caused the crash and splash screen freeze.

I finally find the root cause after I get that device and perform the tests...

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

79728110

Date: 2025-08-07 05:43:29
Score: 2.5
Natty:
Report link

NVDA sometimes fails to change to focus mode consistently, possibly due to nested elements. But you can always disable 'Enable focus mode on run' from Settings - Browse mode.

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

79728109

Date: 2025-08-07 05:41:28
Score: 1
Natty:
Report link

There are a quite a few issues here:

  1. Your code can exit before it hits any of the #expect tests.

    You set up the sink and then emit the fakeMessages and then immediately exit. You have no assurances that it will even reach your #expect tests within the sink at all. You need to do something to make sure the test doesn’t finish before it has consumed the published values.

    Fortunately, async-await offers a simple solution. E.g., you might take the sut.$messages publisher, and then await its values. So either:

    • Use a for await-in loop:

      for await value in values in sut.$messages.values {
          …
      }
      
    • Or use an iterator:

      var iterator = sut.$messages.values.makeAsyncIterator()
      
      let value1 = await iterator.next()
      …
      let value2 = await iterator.next()
      …
      
      // etc
      

    Either way, this is how you can await a value emitted from the values asynchronous sequence associated with the sut.$messages publisher, thereby assuring that the test will not finish before you process the values.

  2. Having modified this to make sure your test does not finish prematurely, the next question is how do you have it timeout if your stubbed service fails to emit the values. You can do this a number of ways, but I tend to use a task group, with one task for the tests and another for a timeout operation. E.g.:

    try await withThrowingTaskGroup(of: Void.self) { group in
        group.addTask {
            let value1 = await iterator.next()
            #expect(value1 == [])
            …
        }
        group.addTask {
            try await Task.sleep(for: .seconds(1))
            throw ChatScreenViewModelTestsError.timedOut
        }
        try await group.next()
        group.cancelAll()
    }
    

    Or a more complete example:

    @Test
        func onAppearShouldReturnInitialMessagesAndStartPolling() async throws {
            let mockMessageProvider = MockMessageProvider()
    
            let sut = createSUT(messageProvider: mockMessageProvider)
            sut.onAppear()
    
            var iterator = sut.$messages
                .buffer(size: 10, prefetch: .keepFull, whenFull: .dropOldest)
                .values
                .makeAsyncIterator()
    
            Task {
                await mockMessageProvider.emit(.success(fakeMessages))     // Emit initial messages
                await mockMessageProvider.emit(.success(moreFakeMessages)) // Emit more messages
            }
    
            try await withThrowingTaskGroup(of: Void.self) { group in
                group.addTask {
                    let value1 = await iterator.next()
                    #expect(value1 == [])
                    let value2 = await iterator.next()
                    #expect(value2 == fakeMessages)
                    let value3 = await iterator.next()
                    #expect(value3 == moreFakeMessages)
                }
                group.addTask {
                    try await Task.sleep(for: .seconds(1))
                    throw ChatScreenViewModelTestsError.timedOut
                }
                try await group.next()
                group.cancelAll()
            }
        }
    }
    
  3. Your code assumes that you will see two published values:

    #expect(sut.messages[0].count == 0)
    #expect(sut.messages[1].count > 0)
    

    This is not a valid assumption. A Published.Publisher does not handle back pressure. If the async sequence published values faster than they could be consumed, your property will drop values (unless you buffer your publisher, like I have in my example in point 2). This might not be a problem in an app that polls infrequently, but especially in tests where you mock the publishing of values without delay, you can easily end up dropping values.

  4. Your sut.onAppear starts an asynchronous Task {…}. But you don’t wait for this and immediately emit on the mocked service, MockMessageProvider. This is a race. You have no assurances that poll has been called before you emit values. If not, because emit uses nil-chaining of continuation?.yield(value), that means that emit might end up doing nothing, as there might not be any continuation to which values can be yielded yet.

    Personally, I would I would decouple the asynchronous sequence from the polling logic. E.g., I would retire AsyncStream and reach for an AsyncChannel from the Swift Async Algorithms, which can be instantiated when the message provider is instantiated. And then poll would not be an asynchronous sequence itself, but rather a routine that starts polling your remote service:

    protocol MessageProviderUseCase: Sendable {
        var channel: AsyncChannel<MessagePollResult> { get }
        func startPolling(interval: TimeInterval)
    }
    
    private final class MockMessageProvider: MessageProviderUseCase {
        let channel = AsyncChannel<MessagePollResult>()
    
        func startPolling(interval: TimeInterval) {
            // This is intentionally blank … 
            //
            // In the actual message provider, the `startPolling` would periodically
            // fetch data and then `emit` its results.
        }
    
        func emit(_ value: MessagePollResult) async {
            await channel.send(value)
        }
    }
    

    Because the channel is created when the message provider is created, it doesn't matter the order that startPolling and emit are called in our mock implementation.


Some other observations:

Reasons:
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (2.5): do you have it
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • High reputation (-2):
Posted by: Rob

79728097

Date: 2025-08-07 05:32:26
Score: 2
Natty:
Report link

You will need to download Git Credentials Manager

https://github.com/microsoft/Git-Credential-Manager-for-Windows/releases

It fixed my issue

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

79728089

Date: 2025-08-07 05:22:24
Score: 2
Natty:
Report link

Need to save CSV data set file as a "CSV UTF-8" rather than regular CSV. along with that Set "File encoding" field of "CSV Data Set Config" as UTF-8.

That's what worked perfectly for me.

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

79728082

Date: 2025-08-07 04:57:19
Score: 0.5
Natty:
Report link

in your Navigation Bar Item onClick

navController.navigate(destination.route) { 
    popUpTo(0) { 
        saveState = true 
    } 
    launchSingleTop = true 
    restoreState = true 
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Madhav Bhavsar

79728081

Date: 2025-08-07 04:56:19
Score: 1.5
Natty:
Report link
df = pd.read_csv("csv file path") //this reads the CSV file

dataFrame = pd.DataFrame(df) //pandas DataFrame method

column_labels = dataFrame.columns //returns only the column headers

for i in range(4,10):

    print(column_labels[i])
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31228013

79728067

Date: 2025-08-07 04:33:14
Score: 1.5
Natty:
Report link
array_values(array_column($array,'email','email'));

This is return unique value from php array

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

79728066

Date: 2025-08-07 04:31:13
Score: 1
Natty:
Report link

The following code works for me.

from google.colab import runtime
runtime.unassign()
Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mzxr

79728065

Date: 2025-08-07 04:28:12
Score: 1.5
Natty:
Report link

display: flex; flex-direction: column in #r1 and #r2 , stacks the text and image vertically

margin-top: auto in .downalign , pushes that image to the bottom of the container

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

79728058

Date: 2025-08-07 04:21:10
Score: 0.5
Natty:
Report link

It seems as if there is not currently support for what I am trying to do using either azure cli or Azure Powershell, but the necessary functionality is exposed via REST api. This will approve a private endpoint on a SQL MI. Props to Cory for the solution.

# Set variables
$subscriptionId = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
$resourceGroupName = "myresourcegroupname"
$managedInstanceName = "mysqlmi"
$privateEndpointConnectionName = "mysqlmy.endpointId"
# Build URL properly for PowerShell
$resourcePath = "/subscriptions/$subscriptionId/resourceGroups/$resourceGroupName/providers/Microsoft.Sql/managedInstances/$managedInstanceName/privateEndpointConnections/$privateEndpointConnectionName"
# Execute the approval with proper JSON escaping for PowerShell
az rest --method PUT --url $resourcePath --url-parameters 'api-version=2024-05-01-preview' --body '{\"properties\":{\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved by pipeline\"}}}'
Reasons:
  • Blacklisted phrase (1): I am trying to
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Greg the Incredulous

79728054

Date: 2025-08-07 04:14:09
Score: 4
Natty:
Report link

Stack Overflow has been an indispensable resource for developers since its launch in 2008 by Jeff Atwood and Joel Spolsky. As the flagship Q&A site of the Stack Exchange Network, it has grown to host over 29 million registered users, with more than 24 million questions and 36 million answers as of 2025 . Its system of reputation points and badges, along with community moderation, has set a high standard for collaborative knowledge sharing

Reasons:
  • RegEx Blacklisted phrase (1.5): reputation points
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: xtime

79728053

Date: 2025-08-07 04:14:09
Score: 2
Natty:
Report link

In short, the AI is incorrect. Let's pretend that ChatGPT doesn't exist for a second and do some old-fashioned research, starting with the page for...in on MDN. It reads:

The traversal order, as of modern ECMAScript specification, is well-defined and consistent across implementations. Within each component of the prototype chain, all non-negative integer keys (those that can be array indices) will be traversed first in ascending order by value, then other string keys in ascending chronological order of property creation.

So, the concern that the order of the keys is inconsistent between JS environments seems to be invalid, at least in the current day. Other reliable resources such as this page seems to suggest that keys have been well-ordered as part of the specification since ES2015; and caniuse reports that 96.57% of browsers implement that version of the spec.

I've always done it this way, and it has always worked. All the test cases I tried passed.

That's not surprising. You are almost certainly using an ES2015 compliant environment and so the traversal order is the same as the insertion order. In this case, the keys are inserted in the order that they appear in the string.

Was the AI possibly mistaken?

Yes.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Xavier Pedraza

79728038

Date: 2025-08-07 03:37:01
Score: 5.5
Natty:
Report link

Any news on this and how to prevent it in Blazor ?

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

79728017

Date: 2025-08-07 03:09:54
Score: 4.5
Natty:
Report link

It looks like https://jj-vcs.github.io/jj/latest/FAQ/#i-accidentally-changed-files-in-the-wrong-commit-how-do-i-move-the-recent-changes-into-another-commit has the answer for this situation.

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: Daniel Peirano

79728016

Date: 2025-08-07 03:08:54
Score: 2.5
Natty:
Report link

You’ll need to use the SIM card reader’s SDK or API (usually provided by the vendor). There’s no standard .NET API for SIM access—functionality like reading IMSI, serial, or carrier is typically vendor-specific and accessed via AT commands or through a COM port using serial communication in C#.

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

79728013

Date: 2025-08-07 02:59:51
Score: 3
Natty:
Report link

I could fixed this issue by using Tools > Android > Restart Adb Server

After that, VS start recognizing my device

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Issac Peña

79728005

Date: 2025-08-07 02:34:47
Score: 2
Natty:
Report link

add --profile:

aws iam get-user --profile default

aws iam list-users --profile default

file: ‪C:\Users\DESKTOP\.aws\credentials

------------------------------------------------------------------------------------

[default]

aws_access_key_id = AKIA5GMKOIQYHJUI5WR

aws_secret_access_key = J8GhnB2kRbg9UVPKyjndvj4Ib3JO57ZW5Adohmu4

------------------------------------------------------

file: C:\Users\DESKTOP\.aws\config

--------------------------------------------------

[default]

region = us-east-1

output = json

-----------------------------

aws iam get-user --profile default

aws iam list-users --profile default

enter image description here

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • No latin characters (0.5):
  • Filler text (0.5): ------------------------------------------------------------------------------------
  • Filler text (0): ------------------------------------------------------
  • Filler text (0): --------------------------------------------------
  • Filler text (0): -----------------------------
  • Low reputation (1):
Posted by: Jairo Ceron

79728000

Date: 2025-08-07 02:16:43
Score: 3.5
Natty:
Report link

Are you able to share the qca-networking-2022-spf-12-1_qca_oem source? I would very much appreciate it thanks!

I'm trying to get a IPQ807x booted.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: xian changliu

79727994

Date: 2025-08-07 01:59:40
Score: 2
Natty:
Report link

I am trying to do the same using server actions not route handler and getting this issue again and again

 ⨯ Error: Cookies can only be modified in a Server Action or Route Handler. Read more: https://nextjs.org/docs/app/api-reference/functions/cookies#options
    at async secureApiCall (src\lib\actions.ts:34:6)
    at async getAllUsers (src\app\admin\users\actions.ts:24:9)
    at async UsersPage (src\app\admin\users\page.tsx:12:16)
  32 |       console.log("Updated session token: ", session);
  33 |
> 34 |       await session.save();
     |      ^
  35 |
  36 |       // Retry original request
  37 |       return await cb(session.token); {
  digest: '533765442'
}
Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): trying to do the same
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Momin Hyat

79727974

Date: 2025-08-07 01:08:30
Score: 2
Natty:
Report link

With what level of confidence? sub-100%? If you're OK with probabilistic primes, I think you can likely increase your efficiency considerably:

Fastest prime test (can be probabilistic)

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

79727972

Date: 2025-08-07 00:59:29
Score: 1.5
Natty:
Report link

This is the most stupid thing, I had a file named local-ca.crt and it was greyed out, renaming the file to ca.crt made it available and not greyed out anymore!

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

79727968

Date: 2025-08-07 00:32:23
Score: 2.5
Natty:
Report link

After some experimentation, my heuristic answer is: import it through a script tag in the body of the base HTML.

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

79727964

Date: 2025-08-07 00:16:20
Score: 0.5
Natty:
Report link

As @Pratik Pathak mentioned, one way is to use the actual Azure storage URL, which has worked for me in the past, but you could also use blobServiceClient instead of bobClient .

Refer to this doc : https://learn.microsoft.com/en-us/azure/storage/blobs/storage-quickstart-blobs-dotnet?tabs=visual-studio%2Cmanaged-identity%2Croles-azure-portal%2Csign-in-azure-cli%2Cidentity-visual-studio

string connectionString = _configuration.GetConnectionString("AzureStorage");
string containerName = "container-name"; 
var blobServiceClient = new BlobServiceClient(connectionString);
var containerClient = blobServiceClient.GetBlobContainerClient(containerName);
var blobClient = containerClient.GetBlobClient(filePath);

var blobDownloadInfo = await blobClient.DownloadAsync();

var contentType = blobDownloadInfo.Value.Details.ContentType ?? "application/octet-stream";

return File(blobDownloadInfo.Value.Content, contentType, Path.GetFileName(filePath));
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Pratik
  • Low reputation (0.5):
Posted by: Rajeev KR

79727959

Date: 2025-08-07 00:07:18
Score: 2
Natty:
Report link

This looks like a good use case for Apache Spark. This would typically be done with Python or Scala, but there is no reason you couldn't also do this in Java (Apache Spark has java libraries). Not sure this answers your question but I think this approach is worth looking into.

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

79727956

Date: 2025-08-06 23:57:15
Score: 1.5
Natty:
Report link

You may try to put the ldap servers in two lines instead of one:

auth_ldap_servers ldap1;
auth_ldap_servers ldap2;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: paule_p

79727953

Date: 2025-08-06 23:53:14
Score: 1
Natty:
Report link

None of the current answers seem to talk about how to change the colour used in highlighting.

In my config, I have tabs and trailing whitespace highlighted using whitespace-mode:

(require 'whitespace)
(whitespace-mode 1)  ;; or (global-whitespace-mode 1)
(setq whitespace-style '(face tabs trailing))
(modify-face whitespace-tab nil "#ff0000")
(modify-face whitespace-trailing nil "#ff0000")

Code for highlighting tabs obtained from a comment under this StackOverflow answer.

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jake Ireland

79727947

Date: 2025-08-06 23:26:05
Score: 11
Natty:
Report link

Hey can you tell me my four digit code for my time limit I try to figure out what was my code for time limit I knew it but I forgot it so can please help me

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (2.5): can you tell me
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (1): I try to figure out what was my code for time limit I knew it but I forgot it so can please
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jaylan Dale

79727943

Date: 2025-08-06 23:19:03
Score: 2
Natty:
Report link

Are there two senses for "can" here:

1 - In the sense that it's possible: Yes, you can freely take this approach;

2 - In the sense that it's a good practice: No, if you are creating an abstract class, you should require subclasses to create the behavior and state specific to it;

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

79727940

Date: 2025-08-06 23:18:02
Score: 4.5
Natty: 5.5
Report link

new update of laravel support typescript : https://laravel-news.com/laravel-breeze-typescript

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

79727935

Date: 2025-08-06 23:14:01
Score: 3
Natty:
Report link

As usual terrible documentation, is OrientationEvent and not OrientationData what it should be in the readme.

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

79727930

Date: 2025-08-06 22:53:57
Score: 0.5
Natty:
Report link

ANSWER:

Bpftrace fishes the register contents out of the struct pt_regs which gets from the ptrace interface. It gets the offsets into the struct using this snippet of code: (bpftrace github)


static const std::unordered_map<std::string, size_t> register_offsets = {

{ "r15", 0 },  { "r14", 8 },  { "r13", 16 },    { "r12", 24 },

{ "bp", 32 },  { "bx", 40 },  { "r11", 48 },    { "r10", 56 },

{ "r9", 64 },  { "r8", 72 },  { "ax", 80 },     { "cx", 88 },

{ "dx", 96 },  { "si", 104 }, { "di", 112 },    { "orig_rax", 120 },

{ "ip", 128 }, { "cs", 136 }, { "flags", 144 }, { "sp", 152 },

{ "ss", 160 },

};

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

79727923

Date: 2025-08-06 22:46:55
Score: 2
Natty:
Report link

You can also use [maxLines]=2 on your Label in Angular.

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

79727905

Date: 2025-08-06 22:10:47
Score: 3.5
Natty:
Report link

How do I make step 3 dependent on step 2

Wait.on is another option that can be used to wait on the processing of another step.

How can I skip (2) when there is no data returned in (1)?

Please refer comment from XQ Hu . By passing readyOrInProgressTriggers as a side input, depending on the count of that side input, thelogic in step 2 can be skipped

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): How do I
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): How do I
  • Low reputation (1):
Posted by: Learner

79727903

Date: 2025-08-06 22:07:47
Score: 1.5
Natty:
Report link

As of August 2025, safe has wide browser support and can now be used.

This works now

align-items: safe center;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MFredX

79727892

Date: 2025-08-06 21:53:43
Score: 1.5
Natty:
Report link

I use ExamplePaymentQueueDelegate to restore purchases on iOS, and it works fine in my case, in promo codes as well.

  Future<void> init() async {
    await _fetchSubscriptions();
    final purchaseUpdated = _inAppPurchase.purchaseStream;
    _subscription = purchaseUpdated.listen(
      _listenToPurchaseUpdated,
      onDone: () {
        _subscription.cancel();
      },
      onError: (Object error) {
        log(error.toString());
      },
    );

    if (Platform.isIOS) {
      final iosPlatformAddition = _inAppPurchase
          .getPlatformAddition<InAppPurchaseStoreKitPlatformAddition>();
      await iosPlatformAddition.setDelegate(ExamplePaymentQueueDelegate());
    } else {
      await InAppPurchase.instance.restorePurchases();
    }
  }
class ExamplePaymentQueueDelegate implements SKPaymentQueueDelegateWrapper {
  @override
  bool shouldContinueTransaction(
    SKPaymentTransactionWrapper transaction,
    SKStorefrontWrapper storefront,
  ) {
    return true;
  }

  @override
  bool shouldShowPriceConsent() {
    return false;
  }
}

Also, please show price consent on hitting subscribe button to avoid future bugs

    if (Platform.isIOS) {
       await confirmPriceChange();
    }  

Future<void> confirmPriceChange() async {
    // Price changes for Android are not handled by the application, but are
    // instead handled by the Play Store. See
    // https://developer.android.com/google/play/billing/price-changes for more
    // information on price changes on Android.
    if (Platform.isIOS) {
      final iapStoreKitPlatformAddition = _inAppPurchase
          .getPlatformAddition<InAppPurchaseStoreKitPlatformAddition>();
      await iapStoreKitPlatformAddition.showPriceConsentIfNeeded();
    }
  }
Reasons:
  • RegEx Blacklisted phrase (2.5): please show
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Muhammad Farhan Shakil

79727891

Date: 2025-08-06 21:53:43
Score: 3
Natty:
Report link

In my case, the keyboard function key was locked. Pressing fn+F12 worked as expected. To remove the function lock, press the Fn + Esc keys together.

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

79727890

Date: 2025-08-06 21:50:42
Score: 1.5
Natty:
Report link

In Vite just remove ~:

@import "react-image-gallery/styles/css/image-gallery.css";
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: wra

79727889

Date: 2025-08-06 21:50:42
Score: 2
Natty:
Report link

The problem was resolved by enabling the WINHTTP_OPTION_IPV6_FAST_FALLBACK option in WinHTTP, which allowed the client to quickly fall back to IPv4 when IPv6 was slow or unresponsive.

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

79727887

Date: 2025-08-06 21:45:41
Score: 2.5
Natty:
Report link

First:

import org.springframework.web.bind.annotation.RestController;

Second:

You need to change @Controller to @RestController.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @Controller
  • User mentioned (0): @RestController
  • Low reputation (1):
Posted by: Squall

79727884

Date: 2025-08-06 21:43:40
Score: 0.5
Natty:
Report link

You need to change following files for a different vendor directory location:

  1. artisan

  2. public/index.php

  3. composer.json

For example, wherever you find following (in case of artisan file):

require __DIR__.'/vendor/autoload.php';

replace with:

require __DIR__.'/php_modules/vendor/autoload.php';

Wherever you find following (in case of public/index.php):

require __DIR__.'/../vendor/autoload.php';

replace with:

require __DIR__.'/../php_modules/vendor/autoload.php';

In composer.json file, look for following fields:

  1. autoload -> exclude-from-classmap

  2. scripts -> test

  3. config -> vendor-dir

Check these above 3 fields in composer.json file and correct the values appropriately.

Thanks (and waiting for more replies/suggestions)

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

79727883

Date: 2025-08-06 21:42:40
Score: 3.5
Natty:
Report link

uninstall "vim" extension from your vscode. must fix the problem.

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

79727879

Date: 2025-08-06 21:35:39
Score: 1
Natty:
Report link

I ran your original script and it is still running, patience is not my virtue, so is this what you are looking for?

import pandas as pd
import numpy as np

#generate sample DataFrame
dflength = 7_303_787

#create a "PLU" column of random integers (100000–199999)
PLUs = pd.DataFrame(
    np.random.randint(100_000, 200_000, size=(dflength, 1)),
    columns=['PLU']
)

#create an "ArticleName" column of random integers (1–99)
ArticleNames = pd.DataFrame(
    np.random.randint(1, 100, size=(dflength, 1)),
    columns=['ArticleName']
)

#concatenate into one DataFrame of shape (dflength, 2)
df = pd.concat([PLUs, ArticleNames], axis=1)


#loop per‐PLU in one pass via groupby
for plu_value, group in df.groupby('PLU')['ArticleName']:
    # group is a Series of ArticleName values for this PLU
    print(f"PLU={plu_value}: group shape = {group.shape}")
    print(f"  last ArticleName = {group.iloc[-1]}")


#optional tho: If you only need the last ArticleName per PLU,
last_per_plu = df.groupby('PLU')['ArticleName'].last()
# last_per_plu is a Series indexed by PLU, with the last ArticleName as value
print("\nVectorized result (last ArticleName per PLU):")
print(last_per_plu.head())   # show first few entries
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: maxis112

79727876

Date: 2025-08-06 21:30:37
Score: 1.5
Natty:
Report link

Local ipv6 route is always in the global prefix, assuming that it's standard /64 prefix. So:

ip -6 route show | grep -v fe80 | awk '{print $1}'

2001:8a0:e4b3:e800::/64

Removed local (ULA) addresses using grep -v fe80. I changed my prefix to some random.

If your prefix is not /64 and you are using SLAAC, you'll still get /64 local route.

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

79727863

Date: 2025-08-06 21:22:35
Score: 2
Natty:
Report link

I just want to drop here, that angular supports using javascript string-interpolation since 19.2.0 (untagged template literals).

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

79727858

Date: 2025-08-06 21:19:35
Score: 3
Natty:
Report link

define car and array. you should be able get a callable and return at the end. as long you don't want to return an undefined array. KiSs <3

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

79727854

Date: 2025-08-06 21:16:34
Score: 1
Natty:
Report link

Yet another workaround is to set WA_TransparentForMouseEvents attribute to child widget of QVideoWidget:

 QWidget *c = findChild<QWidget*>();
 if (c)
     c->setAttribute(Qt::WA_TransparentForMouseEvents);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andrei Andreev

79727853

Date: 2025-08-06 21:15:33
Score: 0.5
Natty:
Report link

We had this exact same behavior when we put in an intro file with different bitrate and stereo/mono settings than the stream. The file would play and then the stream would not play. Interesting though, it played on our mobile app, but not in the browser.

We fixed the bitrate and stereo problem and now it plays fine.

Reasons:
  • No code block (0.5):
Posted by: Dan Mantyla

79727834

Date: 2025-08-06 20:46:26
Score: 2.5
Natty:
Report link

Just install django-oscar version 3.2.4 as follows:

pip install django-oscar[sorl-thumbnail]==3.2.4

and problem was solved.

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

79727827

Date: 2025-08-06 20:41:24
Score: 2
Natty:
Report link

Great solution for automating workflows in Google Sheets! If you're looking to learn how to build custom scripts to loop through stock spreadsheets efficiently, I highly recommend checking out this detailed article: Google Sheets Script – Loop Through Stocks Spreadsheet. It offers a clear step-by-step guide, perfect for both beginners and those with some experience in Google Apps Script.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mário Tandala

79727821

Date: 2025-08-06 20:37:23
Score: 0.5
Natty:
Report link

I made a unit for you to do this:

unit DeviceLister;

interface

uses
  System.Classes
  ,System.SysUtils
  {$IFDEF MSWINDOWS}
  ,Winapi.Windows
  {$ENDIF};

function GetPluggedInDevices: TStringList;

implementation

{$IFDEF MSWINDOWS}
const
  DIGCF_PRESENT = $00000002;
  DIGCF_ALLCLASSES = $00000004;
  SPDRP_DEVICEDESC = $00000000;

type
  HDEVINFO = Pointer;
  ULONG_PTR = NativeUInt;

  TSPDevInfoData = packed record
    cbSize: DWORD;
    ClassGuid: TGUID;
    DevInst: DWORD;
    Reserved: ULONG_PTR;
  end;

function SetupDiGetClassDevsW(ClassGuid: PGUID; Enumerator: PWideChar; hwndParent: HWND;
  Flags: DWORD): HDEVINFO; stdcall; external 'setupapi.dll' name 'SetupDiGetClassDevsW';

function SetupDiEnumDeviceInfo(DeviceInfoSet: HDEVINFO; MemberIndex: DWORD;
  var DeviceInfoData: TSPDevInfoData): BOOL; stdcall; external 'setupapi.dll';

function SetupDiGetDeviceRegistryPropertyW(DeviceInfoSet: HDEVINFO;
  const DeviceInfoData: TSPDevInfoData; Property_: DWORD; var PropertyRegDataType: DWORD;
  PropertyBuffer: PBYTE; PropertyBufferSize: DWORD; RequiredSize: PDWORD): BOOL; stdcall; external 'setupapi.dll' name 'SetupDiGetDeviceRegistryPropertyW';

function SetupDiDestroyDeviceInfoList(DeviceInfoSet: HDEVINFO): BOOL; stdcall; external 'setupapi.dll';
{$ENDIF}

function GetPluggedInDevices: TStringList;
{$IFDEF MSWINDOWS}
var
  DeviceInfoSet: HDEVINFO;
  DeviceInfoData: TSPDevInfoData;
  i: Integer;
  DeviceName: array[0..1023] of Byte;
  RegType: DWORD;
{$ENDIF}
begin
  Result := TStringList.Create;

  {$IFDEF MSWINDOWS}
  DeviceInfoSet := SetupDiGetClassDevsW(nil, nil, 0, DIGCF_ALLCLASSES or DIGCF_PRESENT);
  if NativeUInt(DeviceInfoSet) = NativeUInt(INVALID_HANDLE_VALUE) then
  begin
    Result.Add('Failed to get device list.');
    Exit;
  end;

  i := 0;
  DeviceInfoData.cbSize := SizeOf(TSPDevInfoData);

  while SetupDiEnumDeviceInfo(DeviceInfoSet, i, DeviceInfoData) do
  begin
    if SetupDiGetDeviceRegistryPropertyW(DeviceInfoSet, DeviceInfoData, SPDRP_DEVICEDESC,
      RegType, @DeviceName, SizeOf(DeviceName), nil) then
    begin
      Result.Add(Format('%d: %s', [i + 1, PWideChar(@DeviceName)]));
    end;
    Inc(i);
  end;

  SetupDiDestroyDeviceInfoList(DeviceInfoSet);
  {$ELSE}
  Result.Add('Device listing is only supported on Windows.');
  {$ENDIF}
end;

end.

And then in your app, you can simply add DeviceLister to your uses list, and then call the GetPluggedInDevices function. Here's an example where I'm calling and using it on a button to display the devices onto a memo:

procedure TForm1.Button1Click(Sender: TObject);
begin
  var Devices := GetPluggedInDevices;
  Memo1.Lines.Assign(Devices);
  Devices.Free;
end;

And the result:

Getting Plugged in Devices using Delphi Programming Language


Is this kind of what you wanted?

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Shaun Roselt

79727808

Date: 2025-08-06 20:23:19
Score: 3
Natty:
Report link

Turns out it is a bug in PyCharm: https://youtrack.jetbrains.com/issue/PY-60819/FLASKDEBUG1-breaks-debugger-when-Python-PyCharm-installation-path-has-spaces#focus=Comments-27-8071749.0-0

Looks like it was fixed in the 2025.2.0 release.

I upgraded to 2025.2 and can confirm that the issue has been resolved.

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

79727793

Date: 2025-08-06 20:06:14
Score: 1
Natty:
Report link

Using a Google Business Profile for your business on Google Maps can be beneficial, but for businesses functioning within multiple cities, relying solely on Google's geocomplete-based listings is counterproductive.

Google Maps tends to restrict visibility to a particular local area radius, meaning your business would not show up in searches outside of your immediate vicinity.

This is where business directories focused on a particular state, like EZ Local, shine.

EZ Local, unlike Google geocomplete, empowers businesses to list in multiple cities, even across state lines, thus broadening their reach. Contractors, service providers, or companies with a statewide footprint needing untethered, local exposure can greatly benefit from EZ Local.

If your business would like to reach beyond neighborhood customers, such targeting with EZ Local becomes scalable and more SEO-friendly.

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

79727791

Date: 2025-08-06 20:05:14
Score: 1.5
Natty:
Report link

From Igor Tandetnik:

cppreference has this to say: (1) a consteval specifier implies inline; and (2) The definition of an inline function must be reachable in the translation unit where it is accessed. I'm 99% sure you won't be able to hide the definition of consteval function in the library; you'd have to put it into the header.

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

79727786

Date: 2025-08-06 19:57:11
Score: 2
Natty:
Report link

To ensure if that setup is valid or possible, it would be best to consult a Google Cloud sales specialist. They can offer personalized advice and technical recommendations tailored to your application’s needs. From identifying suitable use cases to helping you manage future workload costs effectively, their insights can be invaluable.

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

79727780

Date: 2025-08-06 19:48:09
Score: 1.5
Natty:
Report link

you most likely have a framework or css folder overriding the table row element's end. it's changing color but not the entire row because another .css file rule is governing this one already or 2 are conflicting. conflict resolution on this one.

try to remove the element into a new file/folder and see if it runs sepereate. if it does you know you have a conflict in css rules.

Happy hunting!

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: C. Kearce

79727766

Date: 2025-08-06 19:24:03
Score: 2.5
Natty:
Report link

In my case, my password was reset. When connecting, I changed the Authentication to another option then back to "SQL Server Authentication". After it, when I hit "Connect" it asked me to update the password.

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

79727762

Date: 2025-08-06 19:19:01
Score: 1
Natty:
Report link

had the same problem time ago, i solved by updating the library. If not work after updating try pymysql instead of mysql.

Reasons:
  • Whitelisted phrase (-2): i solved
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: wolowizard

79727759

Date: 2025-08-06 19:18:01
Score: 3
Natty:
Report link

I tried to use the merchant ID under "Business Information" and it was wrong, mine was in the url bar and was 13 characters, the wrong one for me was ALL numbers and only 12 numbers.

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

79727753

Date: 2025-08-06 19:17:00
Score: 1.5
Natty:
Report link

1 moveTo(x, y) {

2 this.nodes[0].updateRelative (true, true);

3 let dist ((x this.end.x) **2 +

4 (y this.end.y) **2) ** 0.5;

5 let len = Math.max(0, dist this.speed);

6 for (let i= this.nodes.length 1; i >= 0; i--) {

7 let node = this.nodes[i];

8 let ang Math.atan2(node.yy, node.x x);

9 node.x = x + len * Math.cos(ang);

10 node.y = y + len Math.sin(ang);

11 x = node.x; y = node.y; len = node.size;

12}

13 update() {this.moveTo(Input.mouse.x, Input.mouse.y)}

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

79727750

Date: 2025-08-06 19:16:00
Score: 3
Natty:
Report link
document.getElementById("Button").disabled = true;
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: C. Kearce

79727749

Date: 2025-08-06 19:16:00
Score: 1
Natty:
Report link

I used prebuilt aar,
If it is not available you can follow this

https://medium.com/@213maheta/ffmpeg-create-aar-file-add-it-into-android-project-7e069b0fe23f

i) Run below command on terminal

git clone https://github.com/arthenica/ffmpeg-kit.git
or Download source code from below link

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

ii) Open termial & give path for Android SDK & NDK

export ANDROID_SDK_ROOT=/..your_path../Android/Sdk
export ANDROID_NDK_ROOT=/..your_path../Android/Sdk/ndk/25.1.8937393
iii) Run below command

./android.sh
iv) Go to dir

…./ffmpeg-kit/prebuilt/bundle-android-aar/
v) Copy ffmpeg-kit.aar & put it in to below path

project_name/app/libs/
vi) Add below line in your app gradle

dependencies {
    implementation(files("libs/ffmpeg-kit.aar"))
}
Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Arshad

79727742

Date: 2025-08-06 19:07:57
Score: 2
Natty:
Report link

I was able to make a patch at GenerateNode in PropertyCodeGenerator:

result.Type = type;

//Add this code
if (element.GenericReturnTypeIsNullable())
{
    var simpleType = type as RtSimpleTypeName;
    var genericArguments = simpleType.GenericArguments.Cast<RtSimpleTypeName>().ToArray();
    for (int i = 0; i < genericArguments.Length; i++)
    {
        var genericArgument = genericArguments[i];
        genericArguments[i] = new RtSimpleTypeName(genericArgument.TypeName + " | undefined");                    
    }
    result.Type = new RtSimpleTypeName(simpleType.TypeName, genericArguments);
}

This proves what I want to achieve is possible but unfortunately means I will have to make my own version of the library to accommodate this change.

Keep in mind the solution above is not 100% complete as it doesn't check the index of each generic argument, it only assumes if one is nullable then all are :) I leave this as an exercise for the readers...

If there is a better way please let me know so I am not reinventing the wheel.

Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Jay

79727741

Date: 2025-08-06 19:06:57
Score: 4
Natty:
Report link

Same error, found this issue https://github.com/vercel/next.js/issues/81751 and decided to update next to newest 15.4.5 and it seems to work now

Reasons:
  • RegEx Blacklisted phrase (1): Same error
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: yuriystasiv

79727734

Date: 2025-08-06 19:01:55
Score: 0.5
Natty:
Report link

Depending on the reason, you will likely need to access local business directories, map APIs, or utilize data scraping tools to acquire business listings with geocodes (latitude and longitude) for a given area.

1. Use Google Maps API or Bing Places API

With business Google Map and Bing Places APIs, you can search for and retrieve classified businesses within a particular area, and they will return the results indicating business titles, locations, addresses, and geocodes. Of course, a developer key is a prerequisite.

2. Third-party Data Providers

Other websites, for instance, Data Axle or Yelp, Foursquare API, do provide their business datasets with geocodes but usually for a price.

3. Scraping Local Directories with Permission

Some public directories, for example, EZ Local, show businesses with their city and state but do not provide geocodes. However, if the business or geocoding address is offered, you can apply geocoding APIs for translating the address to latitude and longitude, such as Google’s.

Note:

Always check the conditions of service of sites such as EZ Local concerning their data policies before scraping or programmatically extracting data.

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

79727731

Date: 2025-08-06 18:57:50
Score: 7.5
Natty:
Report link

نیوشا علیپور است شماره ش را بده

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Hamid Shakeri

79727729

Date: 2025-08-06 18:56:49
Score: 2.5
Natty:
Report link

It looks that the source originates from an example I wrote for a STM32World Tutorial video. IF you have not watched the video, I'd recommend that as it goes through the setup in STM32CubeMX. I don't see anything obviously wrong in your code, so most likely it is in the CubeMX setup.

https://www.youtube.com/watch?v=0N4ECamZw2k

The working example for STM32F405 is here: https://github.com/STM32World/stm32fun/tree/master/stm32world_dac1

Reasons:
  • Blacklisted phrase (1): youtube.com
  • No code block (0.5):
  • Low reputation (1):
Posted by: Lars Bøgild Thomsen

79727712

Date: 2025-08-06 18:39:46
Score: 1
Natty:
Report link

Instead of commenting out lines or manually editing expressions, you can filter elements directly in a vector:

x = [1,2,3,4,5];
total = sum(x(~ismember(x, [2 4])));  % Exclude 2 and 4 from the sum
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Matin Kourepaz