79743630

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

For me, it's not working for a element of a dict that type() reports as <class 'datetime.datetime'>, but it reports the both type and value as null in the difference output

I think error message about literal_eval_extended is referring to the helper.py module that is part of the deepdiff package (is "package" the right term?)

I found the source at:

https://github.com/seperman/deepdiff/blob/master/deepdiff/helper.py

But the code refers to an undefined global thingy called LITERAL_EVAL_PRE_PROCESS. I don't have the expertise to understand what this means. It's not obvious how to specify an option to fix this.

The weird thing is, the code at:

https://github.com/seperman/deepdiff/blob/b639fece73fe3ce4120261fdcff3cc7b826776e3/deepdiff/helper.py#L191

Does specify datetime.datetime as one of the things to include. Oh well.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Ben Slade

79743624

Date: 2025-08-22 16:18:25
Score: 3
Natty:
Report link

How about using the org.springframework.boot.test.web.client.TestRestTemplate instead of org.springframework.boot.web.server.test.client.TestRestTemplate?

In the SpringBoot's documentation, the TestRestTemplate is declared in the package org.springframework.boot.test.web.client.

https://docs.spring.io/spring-boot/api/java/org/springframework/boot/test/web/client/TestRestTemplate.html

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: devnill.io

79743620

Date: 2025-08-22 16:09:22
Score: 5
Natty:
Report link

IMO, the convenience benefit of the builder pattern doesn't make up for the strictness you lose when instantiating the entity. Entities usually have column rules like "nullable = false" which means you are mandated to pass it when instantiating. There are other workarounds to mandate parameters in the builder pattern, but do you really want to go through all that trouble for all of your entities?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: micxav

79743618

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

I recently installed the Cinema HD APK Firestick latest version, and it completely upgraded my streaming experience. The app is fast, ad-free, and packed with high-quality movies and shows. If you want endless entertainment on your Firestick, this is the download you shouldn’t miss!

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

79743617

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

You must ensure that your Amazon EKS control plane security group contains rules to allow ingress traffic on port 443 from your connected network.

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

79743606

Date: 2025-08-22 15:58:19
Score: 1.5
Natty:
Report link

According AWS docs:

"InvalidViewerCertificate" domain name error certificates should be issued in US East (N. Virginia) Region (us-east-1).

Also there is bug https://github.com/hashicorp/terraform-provider-aws/issues/34950 corresponding this issue.

@Mush is correct answer. But need delete/destroy p;d provider staff

terraform state rm aws_acm_certificate.app_cert_eu_west_1

In multi-region setups (ACM for CloudFront) best practices to avoid similar issues:

provider "aws" { region = var.primary_region }
provider "aws" { alias = "virginia"; region = "us-east-1" }
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Mush
  • Low reputation (1):
Posted by: InPickSys

79743600

Date: 2025-08-22 15:52:16
Score: 4
Natty:
Report link

You may be interested in https://github.com/GG323/esbuild-with-global-variables

I created this fork to enable free use of global variables.

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

79743595

Date: 2025-08-22 15:46:15
Score: 3
Natty:
Report link

I've had the same issue and my takeaway is it is a side effect of using the non-cran version of xgboost.

Parsnip is still setting info using the CRAN methods in xgboost:

https://github.com/tidymodels/parsnip/blob/78116dcc06997248d6b2365bdc78149d7e1c23b9/R/boost_tree.R#L448-L466

I think xgboost (version 3.1.0.0) is still correcting for the old formatting, so for now the only issue is the annoying message:

https://github.com/dmlc/xgboost/blob/35f1e8588ef296d1455dac43c6bb8f938a88e916/R-package/R/utils.R#L714-L731

Downgrading to the CRAN version of xgboost should get rid of the warning. I think parsnip is aware of these issues with the new version, but are holding off updating until xgboost gets to CRAN:

https://github.com/tidymodels/parsnip/issues/1227#issuecomment-2576608316

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31331637

79743591

Date: 2025-08-22 15:44:14
Score: 3.5
Natty:
Report link

How about using the MultipartFile.transferTo(Path dest) method?

https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/multipart/MultipartFile.html

This method reads and writes files using a buffer.

file.transferTo(fileName);
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: devnill.io

79743586

Date: 2025-08-22 15:40:13
Score: 0.5
Natty:
Report link

It was the dumbest problem I've ever encountered!

In my project path, one of the directories had a "!" in the name and that was the reason it couldn't get to the META-INF directory! Once I moved it to a different location it worked.

The error log suggesting that it had something to do with the plugin version was really not helpful and I also created an issue here, hopefully it will be fixed.

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Saee Saadat

79743582

Date: 2025-08-22 15:37:12
Score: 1
Natty:
Report link

It was the dumbest problem I've ever encountered!

In my project path, one of the directories had a "!" in the name and that was the reason it couldn't get to the META-INF directory! Once I moved it to a different location it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Saee Saadat

79743576

Date: 2025-08-22 15:34:11
Score: 1.5
Natty:
Report link
{
  "nome": "Ana Souza",
  "email": "[email protected]",
  "senha": "123456",
  "codigoPessoa": "ANA001",
  "lembreteSenha": "nome do cachorro",
  "idade": 22,
  "sexo": "F"
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Wilker Godoy

79743574

Date: 2025-08-22 15:30:10
Score: 4.5
Natty: 5.5
Report link

I also get some RSA-public-key-encrypted data (32 bytes), which I want to decrypt. (call it a signature, if you want)

How can I decrypt with the private key, without changing source-code?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
Posted by: rundekugel

79743571

Date: 2025-08-22 15:29:09
Score: 2.5
Natty:
Report link

I would like to add a case @elmart did not mention: if you are sure, those file changes don't mean anything, just discard them, after you closed your IDE. (For example you just opened the IDE for reading the code, or you just needed to recompile the project to use it, discarding won't break anything for your colleagues... well, sure, there is shitty proprietary cloud-operating software, which might stab you in the back, so you should be careful, when using SaaS.)

Reasons:
  • No code block (0.5):
  • User mentioned (1): @did
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: PythoNic

79743565

Date: 2025-08-22 15:22:08
Score: 4.5
Natty: 4
Report link

I have written article for this. check it : - https://www.linkedin.com/posts/dileepa-peiris_resolve-layout-overlap-issues-after-upgrading-activity-7358300122436288513-wZv6?utm_source=social_share_send&utm_medium=member_desktop_web&rcm=ACoAAEt1CvcBECNQc8jX4cOxrzQtVKEypVgHQcM

Medium :- https://medium.com/@dileepapeiris5/resolve-layout-overlap-issues-after-upgrading-to-android-target-sdk-35-required-by-google-from-cd6c5f18fa25

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dileepa Peiris

79743551

Date: 2025-08-22 15:08:03
Score: 4
Natty:
Report link

You may be interested in https://github.com/GG323/esbuild-with-global-variables

I created this fork to enable free use of global variables.

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

79743545

Date: 2025-08-22 15:01:01
Score: 2
Natty:
Report link

NOT a solution to the original question but for posterity: this question is about second occurrence in a line and provided solutions works absolutely fine. If you are new to sed (like me) and wants to replace the second occurrence in the entire file, have a look at: sed / awk match second occurrence of regex in a file, and replace whole line

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

79743533

Date: 2025-08-22 14:50:57
Score: 3
Natty:
Report link

you have to dockerize your flask app in render and download the tesseract engine using your docker.yaml file

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

79743529

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

This distinction has irritated me for 30 years, and still trips people up. First off, there is a clear distinction between Authentication (AuthN) and Authorization (AuthZ). AuthN is answering the question of "Who are you?" AuthZ answers the question of "What are you allowed to do?" It is necessary to answer the question of AuthN before approaching the question of AuthZ, because you have to know who the user is before deciding what they can do.

"401 Unauthorized" is supposedly stating that the question of AuthN has not been answered, and "403 Forbidden" answers the AuthZ question negatively. What is confusing is that the text "Unauthorized" is incorrect, and has been for 30+ years. Should be "Not Authenticated". But many apps out there are probably looking for the text (instead of just the code), and would break if they changed it now.

Hopefully this clears up the confusing for anyone looking at the response and thinking, "Is that status right?" It is... and it isn't.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Craig Warford

79743528

Date: 2025-08-22 14:47:57
Score: 3
Natty:
Report link

The sql_data is a "SnowflakeQueryResult" type object and not a dataframe object which is why it is not subscriptable when you try to get the column_1 using data['COLUMN_1']

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

79743526

Date: 2025-08-22 14:46:56
Score: 1
Natty:
Report link

you need to wrap your root component with tui-rot in app.html

E.g.

<tui-root>
    <router-outlet></router-outlet>
</tui-root>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bkh6722

79743525

Date: 2025-08-22 14:46:56
Score: 1
Natty:
Report link

The Kafka connect azure blob storage source plugin now works, even if the data was written to the Azure blob storage without using the sink connector plugin. It is now a "generalized" source plugin.

I could read the JSON data from an Azure blob storage account even though the sink plugin was not used to store them into Azure blob storage. All that is needed is the path to the files stored in the blob container.

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

79743524

Date: 2025-08-22 14:45:56
Score: 0.5
Natty:
Report link

In my case I needed to make sure equalTo() gets an argument of proper type. Here, it was not String but Long (instead of Long this method expects arg to be a Double, so convert it first).

val id: Long
val query = ref.orderByChild("id").equalTo(id.toDouble())

In other case whole root node was deleted.

As of deleting, as mentioned in other's answers using removeValue().

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jawegiel

79743516

Date: 2025-08-22 14:34:53
Score: 4.5
Natty: 5
Report link

How to convert this code in python, thanks alot

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Beram Mostafa

79743509

Date: 2025-08-22 14:32:52
Score: 0.5
Natty:
Report link

Please refer to the following discussion.

https://github.com/nextauthjs/next-auth/discussions/11271

In my case, modifying the import as follows solved the problem:

import { signOut } from "next-auth/react";

It seems to be working properly, but I'm very confused. I can't understand why it has to be done this way.

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

79743508

Date: 2025-08-22 14:29:52
Score: 3.5
Natty:
Report link

Well the good or bad news is that fillna(method='ffill') doesn't work anymore.

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

79743500

Date: 2025-08-22 14:17:48
Score: 1.5
Natty:
Report link
You might find this answer of @LondonAppDev which worked for him by doing the following in Dockerfile:
FROM python:3.10

ARG AUTHED_ARTIFACT_REG_URL
COPY ./requirements.txt /requirements.txt

RUN pip install --extra-index-url ${AUTHED_ARTIFACT_REG_URL} -r /requirements.txt

Then, run this code to build your Dockerfile:

docker build --build-arg AUTHED_ARTIFACT_REG_URL=https://oauth2accesstoken:$(gcloud auth print-access-token)@url-for-artifact-registry

Check out this link for the full details of his answer.

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @LondonAppDev
  • Low reputation (0.5):
Posted by: KikoZam

79743496

Date: 2025-08-22 14:13:47
Score: 0.5
Natty:
Report link

This help me

I had uikit scrollView and inside it swiftuiView

iOS 16+

hostingController.sizingOptions = [.intrinsicContentSize]

Other
ParentViewController:

public override func viewDidLoad() {
        super.viewDidLoad()
        ...
        scrollView.translatesAutoresizingMaskIntoConstraints = false
        scrollView.delegate = self
        view.addSubview(scrollView)
        
        ...
        
        let mainVC = AutoLayoutHostingController(rootView: MainView(viewModel: viewModel))
        addChild(mainVC) /// Important
        guard let childView = mainVC.view else { return }
        childView.backgroundColor = .clear
        childView.translatesAutoresizingMaskIntoConstraints = false
        scrollView.addSubview(childView)
        mainVC.didMove(toParent: self) /// Important

        childView.setContentHuggingPriority(.required, for: .vertical)
        childView.setContentCompressionResistancePriority(.required, for: .vertical)

        NSLayoutConstraint.activate([
            ....

            scrollView.leadingAnchor.constraint(equalTo: view.leadingAnchor),
            scrollView.trailingAnchor.constraint(equalTo: view.trailingAnchor),
            scrollView.topAnchor.constraint(equalTo: view.topAnchor),
            scrollView.bottomAnchor.constraint(equalTo: view.bottomAnchor),

            childView.leadingAnchor.constraint(equalTo: scrollView.leadingAnchor, constant: 28),
            childView.topAnchor.constraint(equalTo: scrollView.topAnchor, constant: 16),
            childView.bottomAnchor.constraint(equalTo: scrollView.bottomAnchor, constant: -20),
            childView.widthAnchor.constraint(equalTo: scrollView.widthAnchor, constant: -56),

            ....
        ])
    }
// MARK: - AutoLayoutHostingController

public final class AutoLayoutHostingController<OriginalContent: View>: UIHostingController<AnyView> {
    
    // MARK: - Initializers
    
    public init(rootView: OriginalContent, onChangeHeight: ((CGFloat) -> Void)? = nil) {
        super.init(rootView: AnyView(rootView))
        self.rootView = rootView
            .background(
                SizeObserver { [weak self] height in
                    onChangeHeight?(height)
                    self?.view.invalidateIntrinsicContentSize()
                }
            )
            .eraseToAnyView()
    }
    
    @available(*, unavailable)
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
}
Reasons:
  • Blacklisted phrase (1): help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gleb Kovalenko

79743488

Date: 2025-08-22 14:06:46
Score: 2.5
Natty:
Report link

Well, I would like to share a new one. XXMLXX https://github.com/luckydu-henry/xxmlxx, which uses C++20 features and a std::vector to store xml tree, also it contains a parsing algorithm using "parser combinator" and "stack" (without recursive), probably can be very high performance, although it not be very "standaard."

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

79743479

Date: 2025-08-22 13:59:44
Score: 2
Natty:
Report link

there is no adequate response, to this yet, major answers here are using a static filling mode, IOC, FOK, naturally the symbol filling mode is supposed to be the filling mode accepted for that symbol, but that is not the case in every broker. using static filling mode works for just one MT5 instance, but if you consider a case where we have mutiple instances of MT5 where one filling mode, does not work for all brokers, then this becomes an issue.

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

79743478

Date: 2025-08-22 13:58:44
Score: 3
Natty:
Report link

If you have an empty NoWarn tag <NoWarn></NoWarn> in your .csproj, it will overwrite the Directory.Build.Props settings, and it will show all warnings.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ondřej Čech

79743473

Date: 2025-08-22 13:56:43
Score: 1
Natty:
Report link

Since the warning comes from library code big chance some dependency relies on a stale pydantic version. Options are to wait an update or to try to install elder pydantic version like pip install 'pydantic<2'.

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

79743466

Date: 2025-08-22 13:51:42
Score: 2.5
Natty:
Report link

The easiest way to solve this problem , is using msix package builder from pub.dev. When you do build with this package ,it includes al lnecessary libraries for MSIX build .

https://pub.dev/packages/msix

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

79743464

Date: 2025-08-22 13:51:42
Score: 2.5
Natty:
Report link

A bit late answer, but from what I've read, Informix does not support M.A.R.S. from the .NET Db2 provider (SDK).

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

79743463

Date: 2025-08-22 13:48:41
Score: 1
Natty:
Report link

The "AAAA..." pattern indicates you're getting null bytes in your buffer. The issue is that ReadAsync(buffer) doesn't guarantee reading the entire stream in one call.

Use CopyToAsync() with a MemoryStream instead:

using var stream = file.OpenReadStream(maxAllowedSize: 10 * 1024 * 1024);
using var memoryStream = new MemoryStream();
await stream.CopyToAsync(memoryStream);
var base64String = Convert.ToBase64String(memoryStream.ToArray());

For a complete solution with security considerations, check out this guide: How to Convert an Image to a Base64 String in Blazor

Reasons:
  • Blacklisted phrase (1): this guide
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Udhaya Kumar

79743459

Date: 2025-08-22 13:45:40
Score: 1.5
Natty:
Report link

I have solved the issue using the old school method of restarting my laptop. It had been runinng for 13 days. When I restarted it now the cursor works perfectly.

Reasons:
  • Whitelisted phrase (-2): I have solved
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yush Shrestha

79743456

Date: 2025-08-22 13:43:39
Score: 0.5
Natty:
Report link

This culd be usefui, if a string is null or it has spaces at the end;

Example:

string Test = "1, 2, 3, 4,  ";

Test = Test.TrimEnd(',');
//Result: "1, 2, 3, 4,  ";

Test = (Test ?? "").Trim().TrimEnd(',');
//Result: "1, 2, 3, 4";


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

79743453

Date: 2025-08-22 13:40:39
Score: 3
Natty:
Report link

Snakemake seems to resolve these paths relative to .snakemake/conda ... so two folders deeper than snakemake's working directory (e.g. configured with `snakemake --directory`)

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

79743448

Date: 2025-08-22 13:34:37
Score: 1.5
Natty:
Report link

EUREKA!
file /components/zenoh-pico/include/zenoh-pico/config.h

**MUST ALTER**

```

#define Z_FRAG_MAX_SIZE 4096

#define Z_BATCH_UNICAST_SIZE 2048

#define Z_BATCH_MULTICAST_SIZE 2048

#define Z_CONFIG_SOCKET_TIMEOUT 5000

```

*MOST IMPORTANT* seems to be the line `Z_CONFIG_SOCKET_TIMEOUT 100`from 100 to 5000. Feel free to experiment with lower values (it seems to work with 1000).

Project is uploaded in github: https://github.com/georgevio/ESP32-Zenoh.git

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

79743437

Date: 2025-08-22 13:20:34
Score: 1.5
Natty:
Report link

The git commit command is used in Git to record changes to the local repository. It captures a snapshot of the currently staged changes, creating a new "commit" object in the project's history.

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

79743424

Date: 2025-08-22 13:03:31
Score: 2
Natty:
Report link

On Android 12 and 13, Google has restricted native call recording due to privacy policies. However, you can still record calls using third-party apps that support accessibility services or VoIP-based recording. Many users prefer modified versions of apps like Truecaller, which offer advanced features including call recording without limitations. You can check out a trusted version here: https://truecalrmodapk.com/

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

79743418

Date: 2025-08-22 13:01:30
Score: 3
Natty:
Report link

update the pybind11 repository and this issue disappears.

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

79743415

Date: 2025-08-22 12:56:29
Score: 3
Natty:
Report link

Android Studio Narwhal Feature Drop | 2025.1.2 Patch 1

This can help.

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

79743408

Date: 2025-08-22 12:51:28
Score: 1
Natty:
Report link
ALTER TABLE ttab DROP CONSTRAINT IF EXISTS unq_ttab;

CREATE UNIQUE INDEX unq_ttab_1 ON ttab (partition_num, id);

ALTER TABLE ttab ADD CONSTRAINT unq_ttab UNIQUE (partition_num, id);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user28232928

79743399

Date: 2025-08-22 12:38:25
Score: 1
Natty:
Report link

There's a note in the "Using API tokens" article, that says:

API tokens used to access Bitbucket APIs or perform Git commands must have scopes.

Creating a scoped token and using it instead of password in PyCharm prompt solved the issue for me.

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

79743392

Date: 2025-08-22 12:25:22
Score: 2.5
Natty:
Report link

I got a similar problem, although I was using --onedir option of pyinstaller. In my case the error was due to unicode characters in the directory name. Copying the onnx model to a temp file solved the problem. It works even when the Windows username contains unicode.

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

79743391

Date: 2025-08-22 12:23:22
Score: 0.5
Natty:
Report link

So basically, when you run Vulkan, it kinda “takes over” the window. Think of it like Vulkan puts its own TV screen inside your game window and says “okay, I’m in charge of showing stuff here now.”

When you switch to DirectX, you’re telling Vulkan “alright, you can leave now.” Vulkan packs up its things and leaves… but the problem is, it forgets to actually take its TV screen out of the window. So Windows is still showing that last frame Vulkan left behind, like a paused YouTube video.

Meanwhile, DirectX is there, yelling “hey, I’m drawing stuff!” — but Windows ignores it, because it still thinks Vulkan owns the window. That’s why you just see the frozen Vulkan image.

The fix is basically making sure Vulkan really leaves before DirectX moves in. That means:


So in short: Vulkan isn’t secretly still running — it just forgot to give the window back to Windows. DirectX is drawing, but Windows isn’t letting it through until Vulkan fully hands over the keys.

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

79743388

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

Firebase Craslytcs does not run very easily on maui dotnet9 depending on the project context, many developers can use it with maui dotnet9, however for my context it does not work either, try with Sentry smooth implementation with compatibility, it ran very easily https://docs.sentry.io/platforms/dotnet/guides/maui/

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

79743387

Date: 2025-08-22 12:17:20
Score: 0.5
Natty:
Report link

As it turns out, the problem was not NextCloud. Using this tutorial I implemented a working login flow using only the `requests` package. The code for that is below. It is not yet handling performing any kind of API request using the obtained access token beyond the initial authentication, nor is it handling using the refresh token to get a new access token when the old one expired. That is functionality an oauth library is usually handling and this manual implementation is not doing that for now. However it proves the problem isn't with NextCloud.

I stepped through both the initial authlib implementation and the new with a debugger and the request sent to the NextCloud API for getting the access token looks the same in both cases at first glance. There must be something subtly wrong about the request in the authlib case that causes the API to run into an error. I will investigate this further and take this bug up with authlib. This question here is answered and if there is a bug fix in authlib I will edit the answer to mention which version fixes it.


from __future__ import annotations

from pathlib import Path
import io
import uuid
from urllib.parse import urlencode
import requests
from flask import Flask, render_template, jsonify, request, session, url_for, redirect
from flask_session import Session

app = Flask("webapp")

# app.config is set here, specifically settings:
# NEXTCLOUD_CLIENT_ID
# NEXTCLOUD_SECRET
# NEXTCLOUD_API_BASE_URL
# NEXTCLOUD_AUTHORIZE_URL
# NEXTCLOUD_ACCESS_TOKEN_URL

# set session to be managed server-side
Session(app)


@app.route("/", methods=["GET"])
def index():
    if "user_id" not in session:
        session["user_id"] = "__anonymous__"
        session["nextcloud_authorized"] = False
    return render_template("index.html", session=session), 200

@app.route("/nextcloud_login", methods=["GET"])
def nextcloud_login():
    if "nextcloud_authorized" in session and session["nextcloud_authorized"]:
        redirect(url_for("index"))

    session['nextcloud_login_state'] = str(uuid.uuid4())

    qs = urlencode({
        'client_id': app.config['NEXTCLOUD_CLIENT_ID'],
        'redirect_uri': url_for('callback_nextcloud', _external=True),
        'response_type': 'code',
        'scope': "",
        'state': session['nextcloud_login_state'],
    })

    return redirect(app.config['NEXTCLOUD_AUTHORIZE_URL'] + '?' + qs)

@app.route('/callback/nextcloud', methods=["GET"])
def callback_nextcloud():
    if "nextcloud_authorized" in session and session["nextcloud_authorized"]:
        redirect(url_for("index"))

    # if the callback request from NextCloud has an error, we might catch this here, however
    # it is not clear how errors are presented in the request for the callback
    # if "error" in request.args:
    #     return jsonify({"error": "NextCloud callback has errors"}), 400

    if request.args["state"] != session["nextcloud_login_state"]:
        return jsonify({"error": "CSRF warning! Request states do not match."}), 403

    if "code" not in request.args or request.args["code"] == "":
        return jsonify({"error": "Did not receive valid code in NextCloud callback"}), 400

    response = requests.post(
        app.config['NEXTCLOUD_ACCESS_TOKEN_URL'],
        data={
            'client_id': app.config['NEXTCLOUD_CLIENT_ID'],
            'client_secret': app.config['NEXTCLOUD_SECRET'],
            'code': request.args['code'],
            'grant_type': 'authorization_code',
            'redirect_uri': url_for('callback_nextcloud', _external=True),
        },
        headers={'Accept': 'application/json'},
        timeout=10
    )

    if response.status_code != 200:
        return jsonify({"error": "Invalid response while fetching access token"}), 400

    response_data = response.json()
    access_token = response_data.get('access_token')
    if not access_token:
        return jsonify({"error": "Could not find access token in response"}), 400

    refresh_token = response_data.get('refresh_token')
    if not refresh_token:
        return jsonify({"error": "Could not find refresh token in response"}), 400

    session["nextcloud_access_token"] = access_token
    session["nextcloud_refresh_token"] = refresh_token
    session["nextcloud_authorized"] = True
    session["user_id"] = response_data.get("user_id")

    return redirect(url_for("index"))
Reasons:
  • Blacklisted phrase (1): this tutorial
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Etienne Ott

79743385

Date: 2025-08-22 12:15:20
Score: 1
Natty:
Report link

Starting with Android 12 (API 31), splash screens are handled by the SplashScreen API. Flutter Native Splash generates the correct drawable for android:windowSplashScreenAnimatedIcon, but Android caches the splash drawable only after the first run. So, if the generated resource is too large, not in the right format, or not properly referenced in your theme, Android falls back to background color on first launch.

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

79743379

Date: 2025-08-22 12:06:18
Score: 3.5
Natty:
Report link

I am not sure if you have resolved this but what you may facing is DynamoDB read consistency issue, I had the similar issue.

https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.html

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

79743373

Date: 2025-08-22 11:55:15
Score: 2
Natty:
Report link

I am also struggling to set "de" as the keyboard layout on ubuntu core. I am using ubuntu-frame along with chromium kiosk for my ui. In your example, I would recommend building your own snap, which serves as a wrapper script that runs the firefox browser. With the flags daemon set to simple and restart-always set inside your snapcaft.yaml file, it should at least come up again after the user closed it.

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

79743370

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

As simple as this?
Application.bringToFront;

Works for me (Windows 10)

Reasons:
  • Whitelisted phrase (-1): Works for me
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Svein

79743360

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

I've fixed with the following:

Added app.UseStatusCodePagesWithRedirects("/error-page/{0}"); to the Program.cs.

Added the page CustomErrorPage.razor with the following content:

@page "/error-page/{StatusCode:int}"

<div>content</div>

@code {
    [Parameter]
    public int StatusCode { get; set; }

    public bool Is404 => StatusCode == 404;
    public string Heading => Is404 ? "Page not found 404" : $"Error {StatusCode}";
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: SDG6

79743358

Date: 2025-08-22 11:36:10
Score: 4
Natty:
Report link

ElastiCache supports Bloom filters with Valkey 8.1, which is compatible with Redis OSS 7.2. You can see https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/BloomFilters.html for more information.

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

79743346

Date: 2025-08-22 11:25:07
Score: 5
Natty: 5.5
Report link

Olá, se estiver usando algum programa de backup em nuvem desative ele na hora de compilar.

Reasons:
  • Blacklisted phrase (2): Olá
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Marciano C.Rocha

79743345

Date: 2025-08-22 11:25:07
Score: 2.5
Natty:
Report link
mailto:[email protected],[email protected],[email protected]&cc=...

All other examples did not work for me. This one seems to work.

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: GioiGio

79743340

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

As of August 2025, Visual Studio 2017 community edition can be downloaded from this link https://aka.ms/vs/15/release/vs_community.exe without login in to a subscription.

Also, the professional version can be downloaded here https://aka.ms/vs/15/release/vs_professional.exe

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
Posted by: Dush

79743335

Date: 2025-08-22 11:18:05
Score: 1.5
Natty:
Report link

I got this error with django (AlterUniqueTogether) and mariadb when adding unique_together={('field1', 'field2')} constraint, where field2 was varchar(1000). Size of that field (1000x4) was too big for max index key length of 3072 bytes. field1 was fk so somehow i was getting that error and spent lot of time debugging it.

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

79743333

Date: 2025-08-22 11:15:04
Score: 1
Natty:
Report link

Other types and usages are:

Built-in Type Usage

Source: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types

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

79743330

Date: 2025-08-22 11:12:03
Score: 1.5
Natty:
Report link

I know it's an old question, however have the impression it's still an issue ...
If I understood correctly C23 provides "bigint" types or similar, however not
all users are on C23, not all like it and it's still without I/O support?
I puzzled together a little library, vanilla-C, header only, which provides
I/O from / to binary, octal, decimal and hex strings and some other functions
for gcc builtin 128-bit integer types: Libint128, I/O for 128-bit intger types

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

79743323

Date: 2025-08-22 11:08:01
Score: 5
Natty:
Report link

I found a cool video about it: https://shre.su/YJ85

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

79743299

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

It cant also happen due to broken text indexes. Please try invalidating the caches (File > Invalidate caches, Invalidate and Restart).

https://intellij-support.jetbrains.com/hc/en-us/community/posts/16256641441938/comments/16259399023122

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

79743284

Date: 2025-08-22 10:34:54
Score: 1
Natty:
Report link

If Outline does not work
Go to the base file from where you want the path in the terminal or PowerShell, then run this command

tree /A /F > structure.txt

This will generate a txt file named structure.txt in that base location

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

79743274

Date: 2025-08-22 10:27:52
Score: 1
Natty:
Report link

I had this in my schema.prisma generator client instead of removing it.

  output   = "../app/generated/prisma"

I change the below like this. 

import { PrismaClient } from '@prisma/client'
import { PrismaClient } from "../../generated/prisma";
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tanmay Gupta

79743254

Date: 2025-08-22 10:09:48
Score: 2.5
Natty:
Report link
<security:http name="apis" 
    pattern="/**"

is also matched?
try commenting out this part...

maybe ..change your request path or exclude these two paths when verifying the token?

<security:http name="employeeSecurityChain" 
    pattern="/auth/employees/token"
<security:http name="visitorSecurityChain" 
    pattern="/auth/visitors/token"
<security:http name="apis" 
    pattern="/api/**"
Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Pandamkk

79743248

Date: 2025-08-22 10:07:47
Score: 1
Natty:
Report link
interface PageProps {
  params: Promise<{ id: string }>;
}

const Page = async ({ params }: PageProps) => {
  const { id } = await params;

  return <div>Page for {id}</div>;
};

export default Page;

does not work when i run build

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

79743235

Date: 2025-08-22 09:55:43
Score: 0.5
Natty:
Report link

Not sure about the third party's audit verdict. But imp, you should verify their suggestion. Perhaps its not required at all. The configuration file should contain the runtime and other configuration related values.

However, if you insist deleting these from your config file, you can do so. But keep in mind that -

This usually works fine unless your app was explicitly depending on a particular runtime behavior.

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

79743228

Date: 2025-08-22 09:47:42
Score: 0.5
Natty:
Report link

You need to listen to autoUpdater events, example:

import { autoUpdater } from 'electron';

...

autoUpdater.on('update-downloaded', (event, releaseNotes, releaseName) => {
  const dialogOpts = {
    type: 'info',
    buttons: ['Restart', 'Later'],
    title: 'Application Update',
    message: process.platform === 'win32' ? releaseNotes : releaseName,
    detail:
      'A new version has been downloaded. Restart the application to apply the updates.'
  }

  dialog.showMessageBox(dialogOpts).then((returnValue) => {
    if (returnValue.response === 0) autoUpdater.quitAndInstall()
  })
})

More in this tutorial.

You probably should do it outside of the _checkForUpdates function, so you don't attach multiple listeners to one event.

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: rajniszp

79743220

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

Use https://pub.dev/packages/json_factory_generator

import 'package:flutter/material.dart';
import 'generated/json_factory.dart'; // Contains generated JsonFactory

void main() {
  // No initialization needed! 🎉
  runApp(const MyApp());
}

// Parse single objects
final user = JsonFactory.fromJson<User>({"id": 1, "name": "Alice"});

// Parse lists with proper typing
final posts = JsonFactory.fromJson<List<Post>>([
  {"id": 10, "title": "Hello", "content": "Content"},
  {"id": 11, "title": "World", "content": "More content"},
]);

// Type-safe list parsing
final userList = JsonFactory.fromJson<List<User>>([
  {"id": 1, "name": "Alice"},
  {"id": 2, "name": "Bob"}
]);
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Thang Duong

79743204

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

You can solve it by putting all of them into different partitions of a single module. e.g., M:A 、 M:B 、M:C。

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

79743203

Date: 2025-08-22 09:22:36
Score: 1
Natty:
Report link
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: KURRA HARSHITHA 22BCE7806

79743191

Date: 2025-08-22 09:11:33
Score: 3
Natty:
Report link

Does this help https://docs.pytorch.org/data/0.7/generated/torchdata.datapipes.iter.ParquetDataFrameLoader.html

Pytorch used to have a torchtext library but it has been deprecated for over a year. You can check it here: https://docs.pytorch.org/text/stable/index.html

Otherwise, your best bet is to subclass one of the base dataset classes https://github.com/pytorch/pytorch/blob/main/torch/utils/data/dataset.py

Here is an example attempt at doing just that https://discuss.pytorch.org/t/efficient-tabular-data-loading-from-parquet-files-in-gcs/160322

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

79743190

Date: 2025-08-22 09:07:32
Score: 2
Natty:
Report link

My issue was simply that I was using a program to compile all of my docker-compose files into 1. This program only kept the "essential" parts and didn't keep the command: --config /etc/otel/config.yaml part of my otel-collector so the config wasn't being loaded properly into the collector.

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

79743189

Date: 2025-08-22 09:06:29
Score: 8.5
Natty:
Report link

I’m facing the same issue, and setting "extends": null didn’t solve it for me either. I created the app using Create React App (CRA). When I run npm run dist, everything builds correctly, but when I execute myapp.exe, I get the error: enter image description here

Can someone help me figure out what’s going wrong?

My package.json is:

{

 (...)

 "main": "main.js",

 (...)

 "scripts": {

    (...)

    "start:electron": "electron .",
    "dist": "electron-builder"
  }

  (...)

  "build": {
    "extends":null,
    "appId": "com.name.app",
    "files": [
      "build/**/*",
      "main.js",
      "backend/**/*",
      "node_modules/**/*"
    ],
     "directories": {
      "buildResources": "public",
      "output": "dist"
    },
     },
    "win": {
      "icon": "public/iconos/logoAntea.png",
      "target": "nsis"
    },
    "nsis": {
      "oneClick": false,
      "allowToChangeInstallationDirectory": true,
      "perMachine": true,
      "createDesktopShortcut": true,
      "createStartMenuShortcut": true,
      "shortcutName": "Datos Moviles",
      "uninstallDisplayName": "Datos Moviles",
      "include": "nsis-config.nsh"
    }
  }
} 
Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (3): Can someone help me
  • RegEx Blacklisted phrase (1): I get the error
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Nerea Trillo Pérez

79743182

Date: 2025-08-22 09:01:27
Score: 2
Natty:
Report link

I know a lot of time has passed since this problem was discussed, however, I got the same error with WPF today. It turned out that when I set DialogResult twice, I got this error on the second setting. DialogResult did not behave like a storage location that one sets values to multiple time. The error message that results is very misleading. A similar situation was discussed in this chain of answers, however, in my case I was setting DialogResult to "true" both times, to the same value.

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

79743177

Date: 2025-08-22 08:53:26
Score: 1
Natty:
Report link

Adding to Asclepius's answer here a way to view the commit history up to the common ancestor (including it).

I find this helpful to see what has been going on since the fork.

$ git checkout feature-branch
$ git log HEAD...$(git merge-base --fork-point master)~1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: derJake

79743173

Date: 2025-08-22 08:49:25
Score: 1
Natty:
Report link

To use the latest stable version, run:

fvm use stable --pin

Source: FVM | Commands Reference | use | Options

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

79743167

Date: 2025-08-22 08:43:24
Score: 2.5
Natty:
Report link

I found the answer by fiddling around. If anyone is interested:

I had to hover over the link in my Initiator column to retrieve the full stack trace, then right click on zone.js and Add script to ignore list.

enter image description here

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

79743165

Date: 2025-08-22 08:41:23
Score: 0.5
Natty:
Report link

Since TailwindCSS generates the expected CSS code perfectly, the issue is that the expected CSS code itself does not work properly. The expected CSS code is correct:

Input

<div class="cursor-pointer">...</div>

Generated CSS (check yourself: Playground)

.cursor-pointer {
  cursor: pointer;
}

Since the syntax is correct and other overrides can be ruled out, the only remaining explanation is: a browser bug.

Some external sources mentioning a similar browser bug in Safari:

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

79743157

Date: 2025-08-22 08:37:22
Score: 1.5
Natty:
Report link

Answering my own question. Adding the org.freedesktop.DBus.Properties interface to my xml did not work, as the QDbusAbstractorAdaptor or anyone else is already implementing theses methods. But the signal will not be emitted. At least I did not succeed in finding a "official" way.

But I found a workaround which work for me: https://randomguy3.wordpress.com/2010/09/07/the-magic-of-qtdbus-and-the-propertychanged-signal/

My Adaptor parent class is using the setProperty and property functions of QObject.
Overloaded the setProperty function, calling the QOBject ones and as an addition emitted the PropertiesChanged signal manually like this:

    QDBusMessage signal = QDBusMessage::createSignal(
    "/my/object/path",
    "org.freedesktop.DBus.Properties",
    "PropertiesChanged");
    signal << "my.inter.face";

    QVariantMap changedProps;
    changedProps.insert(thePropertyName, thePropertyValue);
    signal << changedProps;

    QStringList invalidatedProps;
    signal << invalidatedProps;

    QDBusConnection::systemBus().send(signal);

Not a very nice way, but at least the signal is emitted.
Anyway I would be interessted in an more official way of doing it....

Cheers
Thilo

Reasons:
  • Blacklisted phrase (1): Cheers
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Thilo Cestonaro

79743153

Date: 2025-08-22 08:36:22
Score: 2
Natty:
Report link

Django has PermissionRequiredMixin which can be derived for each View. PermissionRequired mixin has class property "permission_required". So you can individually define required permission for each view. Also you can tie users to permission groups and assign multiple permissions for each group.

https://docs.djangoproject.com/en/5.2/topics/auth/default/#the-permissionrequiredmixin-mixin

https://docs.djangoproject.com/en/5.2/topics/auth/default/#groups

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

79743152

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

I found this issue too but this is entirely different level issue and totally my careless mistake

I changed the IP of the machine. Then tried to connect using ssms.

Turns out, i forgot to change the IP too in TCP/IP protocols in SQL Server Network Config, but the locked out login error was really misleading for my case.

Just in case anyone did the same and didnt check. I almost created new admin acc just for that.

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

79743143

Date: 2025-08-22 08:25:19
Score: 3.5
Natty:
Report link

sudo apt install nvidia-cuda-dev

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Xiangyu Meng

79743140

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

The "Test Connection" in the Glue Console only verifies network connectivity, not whether the SSL certificate is trusted during job runtime.

The actual job runtime uses a separate JVM where the certificate must be available and trusted. If AWS Glue can’t validate the server certificate chain during the job run, it throws the PKIX path building failed error.

This typically happens when:

The SAP OData SSL certificate is self-signed or issued by a private CA.

The certificate isn’t properly loaded at runtime for the job to trust it.

✅ What You’ve Done (Good Steps):

You're already trying to add the certificate using:

"JdbcEnforceSsl": "true",

"CustomJdbcCert": "s3://{bucket}/cert/{cert}"

✅ That’s correct — this tells AWS Glue to load a custom certificate.

📌 What to Check / Do Next:

1. Certificate Format

Make sure the certificate is in PEM format (.crt or .pem), not DER or PFX.

2. Certificate Path in S3

Ensure the file exists at the correct path and is publicly readable by the Glue job (via IAM role).

Example:

s3://your-bucket-name/cert/sap_server.crt

3. Permissions

The Glue job role must have permission to read the certificate from S3. Add this to the role policy:

{

"Effect": "Allow",

"Action": "s3:GetObject",

"Resource": "arn:aws:s3:::your-bucket-name/cert/*"

}

4. Recheck Key Option Names

Make sure you didn’t misspell any keys like CustomJdbcCert or JdbcEnforceSsl. They are case-sensitive.

5. Glue Version Compatibility

If using Glue 3.0 or earlier, try upgrading to Glue 4.0, which has better support for custom JDBC certificate handling.

6. Restart Job after Changes

After uploading or changing the certificate, restart the job — don’t rely on retries alone.

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

79743138

Date: 2025-08-22 08:20:18
Score: 0.5
Natty:
Report link

I had this problem when I had the expected type in a file named alma.d.ts in a folder that also contained a regular alma.ts file. When I renamed the alma.ts file the error went away.

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

79743134

Date: 2025-08-22 08:17:17
Score: 3
Natty:
Report link

Go to Run -> Edit Configurations -> Additional options -> Check "Emulate terminal in the output console"

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

79743120

Date: 2025-08-22 08:01:14
Score: 1
Natty:
Report link

KeyStore Explorer (https://keystore-explorer.org/) could be used to extract the private key into a PEM file.

  1. Open the certificate PFX file that contains the public and private key.

  2. Right-click on the entry in KeyStore Explorer and select the Export | Export Private Key

  3. Select OpenSSL from the list

  4. Unselect the Encrypt option and choose the location to save the PEM file.

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

79743115

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

Did you find a solution yet? I had the same problem and still try to figure out. Which version of spark do you have?

A simple workaround is to transform the geometry column to wkt or wkb and drop the geometry column.

In case of reading you have to tranform it back. Its not nice but functional.

df = df.withColumn("geometry_wkt", expr("ST_AsText(geometry)"))

Reasons:
  • Whitelisted phrase (-1): I had the same
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: Gabrie

79743107

Date: 2025-08-22 07:42:10
Score: 2
Natty:
Report link

You could use <iframe>` to load the websites and animate them with css transition or @keyframes

See: https://www.w3schools.com/tags/tag_iframe.asp and https://www.w3schools.com/cssref/css3_pr_transition.php or https://www.w3schools.com/cssref/atrule_keyframes.php

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

79743099

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

The Places Details API only returns up to 5 reviews for a place. That limit is hard and there is no pagination for the reviews array. The next_page_token you are checking applies to paginated search results, not to reviews in a Place Details response. To fetch all reviews for your own verified business, you must use the Google Business Profile API’s accounts.locations.reviews.list, which supports pagination.

https://developers.google.com/maps/documentation/places/web-service/reference/rest/v1/places#Review:~:text=List%20of%20reviews%20about%20this%20place%2C%20sorted%20by%20relevance.%20A%20maximum%20of%205%20reviews%20can%20be%20returned.

Reasons:
  • Probably link only (1):
  • No code block (0.5):
Posted by: Salt

79743087

Date: 2025-08-22 07:23:05
Score: 4
Natty: 4.5
Report link

I guess you need to install their Code Coverage plugin too:
https://bitbucket.org/atlassian/bitbucket-code-coverage

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

79743084

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

https://nextjs.org/docs/app/api-reference/functions/redirect

I'm new to NextJS myself, but maybe something like this could work? Maybe perform the request whenever the request is triggered and await the response and use the function accordingly?

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Clever7-

79743082

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

For some file formats like `flac` pydub requires ffmpeg to be installed. And it throws this error when ffmpeg is not found.

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

79743071

Date: 2025-08-22 07:11:01
Score: 1
Natty:
Report link

Access via window.ZOHO

In the script, where you have used ZOHO will not work directly, as the SDKs will not be supported, to use it! make the zoho library global and use window.ZOHO

In your script, just replace ZOHO with window.ZOHO

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

79743069

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

In your vs code go to settings, search for javascript.validation and uncheck the checkbox
close and reopen your vs code, if required.

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

79743065

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

From AWS WEB console -

enter image description here

And the link to create the repository after the latest changes.

Create a Repository in AWS CodeCommit

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

79743058

Date: 2025-08-22 06:58:58
Score: 2.5
Natty:
Report link

close android studio

open via command

open -a "Android Studio"

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: ND verma

79743050

Date: 2025-08-22 06:51:55
Score: 1
Natty:
Report link

linux: Pulling from library/hello-world

198f93fd5094: Retrying in 1 second

error pulling image configuration: download failed after attempts=6: dialing docker-images-prod.6aa30f8b08e16409b46e0173d6de2f56.r2.cloudflarestorage.com:443 container via direct connection because disabled has no HTTPS proxy: connecting to docker-images-prod.6aa30f8b08e16409b46e0173d6de2f56.r2.cloudflarestorage.com:443: dial tcp: lookup docker-images-prod.6aa30f8b08e16409b46e0173d6de2f56.r2.cloudflarestorage.com: no such host

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

79743045

Date: 2025-08-22 06:46:54
Score: 2.5
Natty:
Report link

I've solved similar problem by editing nginx.conf:

sudo nano /etc/nginx/nginx.conf

then change 'user www-data' to 'user sudo_user' where sudo_user it's your configured sudo user.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sławek