79696208

Date: 2025-07-09 20:14:31
Score: 1
Natty:
Report link

This is the solution for my case, I'm leaving it here in case it helps someone someday.


When encountered an exception with an empty call stack, try setting "Enable native code debugging" in project's properties first. Screenshot of project properties with the "Enable native code debugging" option highlighted

It might add enough info to the call stack to least know where to start. In my case it went from this: Screenshot of Visual Studio with floating exception and call stack windows

To this: Screenshot of Visual Studio with floating exception and call stack windows showing MUCH more info

Which gives us at least the name of the native dll at the bottom of the stack of the exception (in DOS format: FOOBAR~1.DLL instead of FooBarBaz.dll).


As for specifically Could not load file or assembly '<some .NET assembly>' exceptions, the next step is to look at fuslogvw output.

For the assembly that wasn't found, the log entry could show something like:

Calling assembly : SomeOtherDll, Version=...

Then for SomeOtherDll:

Calling assembly : (Unknown)

Which probably means it's called from the native dll we found with the native code debugging enabled.

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

79696207

Date: 2025-07-09 20:14:31
Score: 4
Natty:
Report link

Here is the document which explains about branding.
https://learn.microsoft.com/en-us/entra/external-id/customers/how-to-customize-branding-customers

I have posted answer of this same question on other thread as well.
https://stackoverflow.com/a/79693384/20849192

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Muhammad Zeeshan

79696206

Date: 2025-07-09 20:13:30
Score: 8.5
Natty: 4
Report link

have you solved the issue?

i have the same error on ios

Reasons:
  • RegEx Blacklisted phrase (1.5): solved the issue?
  • RegEx Blacklisted phrase (1): i have the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same error
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Alex

79696196

Date: 2025-07-09 20:05:27
Score: 4
Natty:
Report link

You also get a very similar error if you use an incorrect image URI. In my case I accidentally used the us-docker.pkg.dev registry when it should have been docker.io.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): also get a very similar error
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: V.Prins

79696195

Date: 2025-07-09 20:03:26
Score: 2
Natty:
Report link

The above answer does not address the question. The question isn't about how PHP works, but rather why was the decision made to give null coalesce a lower precedence when designing the PHP syntax.

I am also baffled at this design choice. Perhaps someone can enlighten us why they chose this order.

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

79696193

Date: 2025-07-09 20:01:25
Score: 1
Natty:
Report link
simple query to add 10 business days to date:

SELECT tmp.release_date, tmp.num
  FROM (    SELECT TO_DATE (SYSDATE + LEVEL, 'DD-MON-RRRR') release_date,
                   TO_CHAR (SYSDATE + LEVEL, 'DY') day, rownum num
              FROM DUAL
             WHERE TO_CHAR (SYSDATE + LEVEL, 'DY') NOT IN ('SAT', 'SUN')
        CONNECT BY LEVEL < 15) tmp
        where tmp.num = 10 
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Anitha B

79696192

Date: 2025-07-09 20:01:25
Score: 6
Natty:
Report link

enter image description here

This is what happen in the app

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mai Alaa

79696187

Date: 2025-07-09 19:58:24
Score: 1
Natty:
Report link

It depends on the technical knowledge of the user you are expecting. For normal users, this would already be hard enough - even a non-hashed version would be hard to spot on the code.

If you are considering that you have users skilled at coding, it is not extremely hard to debug and find the comparison / jump on the executable assembly; and it is possible then to just bypass the check altogether without knowing the original password or the hash.

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

79696185

Date: 2025-07-09 19:57:24
Score: 0.5
Natty:
Report link

local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()

local Window = Fluent:CreateWindow({

Title = "grupo de scripters do roblox (versão brookhaven) " .. Fluent.Version,

TabWidth = 160,

Size = UDim2.fromOffset(580, 460),

Theme = "Dark"

})

local Tabs = {

Main = Window:AddTab({

    Title = "comandos",

    Icon = "rbxassetid://97752342618431"

}),

Settings = Window:AddTab({

    Title = "Settings",

    Icon = "settings"

})

}

Tabs.Main:AddButton({

Title = "fly",

Callback = function()

    loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()

end

})

Tabs.Main:AddButton({

Title = "f3x",

Callback = function()

    loadstring(game:GetObjects("rbxassetid://6695644299")\[1\].Source)()

end

})

Tabs.Main:AddParagraph({

Title = "créditos",

Content = "by grupo de scripters do roblox"

})

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

79696177

Date: 2025-07-09 19:51:22
Score: 2.5
Natty:
Report link

I had the same issue. For me notifications worked during development but not in production. The issue was that my .p8 key was set to sandbox only instead of sandbox and production. https://developer.apple.com/account/resources/authkeys/list

enter image description here

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Saatvik Gupta

79696170

Date: 2025-07-09 19:45:21
Score: 1
Natty:
Report link

If none of the other answers are working for you, try this:

Go to File > Close Solution

enter image description here

Open the folder for your project.

Delete the 'bin' and 'obj' folders from file explorer.

Then try building the application again.

Reasons:
  • Whitelisted phrase (-2): try this:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Na...

79696156

Date: 2025-07-09 19:33:17
Score: 2
Natty:
Report link

I had this error message in relation to an AWS::EC2::LaunchTemplate and the problem was that I'd set the SecurityGroups field when I should have been setting the SecurityGroupIds field instead. This change fixed it:

enter image description here

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

79696154

Date: 2025-07-09 19:29:16
Score: 1.5
Natty:
Report link

Sorry I had some out of stream discussions and forgot to document, here is my understanding :

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

79696152

Date: 2025-07-09 19:28:15
Score: 2
Natty:
Report link

You cannot assume that resources in general are their own discrete file on the real filesystem, it is abstracted away by the classloader. If you can help it, just don't try to make this conversion. For instance, to read an image resource agnostically:

BufferedImage img;
try (InputStream in = ReadFile.class.getResourceAsStream("image.png")) {
    img = ImageIO.read(in);
}

However, if for some reason you truly need to do this, you can try a hack like this:

static File resourceUrlToFile(URL url) {
    if (url == null || !"file".equals(url.getProtocol()))
        throw new IllegalArgumentException(url + " is not a file URL");

    return FileSystems.getDefault()
            .getPath(url.getPath().substring(1))
            .toFile();
}

Or find the resources directory in your development environment and work from there:

static File getResourcesDirectory() {
    File src;
    try {
        src = new File(Main.class.getProtectionDomain()
                .getCodeSource()
                .getLocation()
                .toURI());
    } catch (SecurityException | URISyntaxException e) {
        throw new AssertionError("Failed to read code source", e);
    }

    // This next step assumes a Gradle build environment,
    // adapt for your build script
    src = new File(
            src.getParentFile().getParentFile().getParentFile(),
            "resources/main"
    );

    return src;
}

Without care, approaches like these will break when packaging.

Reasons:
  • RegEx Blacklisted phrase (3): you can help
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Wasabi Thumbs

79696151

Date: 2025-07-09 19:26:14
Score: 0.5
Natty:
Report link

To get the weighted average shrinkage value you need dividing the sum of shrinkage by categories to the actual total value:

[D17]=D16/C16

enter image description here

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

79696150

Date: 2025-07-09 19:25:09
Score: 4.5
Natty: 4
Report link

I made same mistake. last week I installed python on C drive. Today, I moved Python on Drive. but I can't use pip or any command on Drive.

Please let me know what will be the solution. Now, I can't move back to C: Drive because not able to uninstall Python from D Drive

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know what
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Radhika Khutale

79696145

Date: 2025-07-09 19:18:07
Score: 0.5
Natty:
Report link

Tangential to this thread: After adding an accessibility identifier to my SwiftUI List, I found that it is known to XCUITest as a collection view rather than as a table. app.collectionViews.firstMatch found it.

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

79696139

Date: 2025-07-09 19:13:06
Score: 0.5
Natty:
Report link

I think that if this property is critical for your users, and you want to optimize CSS for them, then you can keep all plug-in animations in a separate CSS file. For example

<link rel="stylesheet" href="animation.css" media="(prefers-reduced-motion: no-preference)">

You can test it in Chrome Browser by using "Emulate CSS media feature prefers-reduced-motion" in Rendering Tab

Emulate CSS media feature prefers-reduced-motion

Fot me it's work. This file will be skip if your user turn on this option and it will save downloading.

if you need support some strange browser you can write this ->

<script>
    if (window.matchMedia('(prefers-reduced-motion: no-preference)').matches) {
       const link = document.createElement('link');
       link.rel = 'stylesheet';
       link.href = 'animation.css';
       document.head.appendChild(link);
    }
</script>
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: BlackStar1991

79696133

Date: 2025-07-09 19:06:04
Score: 1
Natty:
Report link

I recently encountered this error in my next js application,

I was using static functions and variables in classes i made, i think typescript doesn't allow it , removing those static functions and variables made my build successful.
That worked for me.

Hope so it works for you as well

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Zain Amjad

79696123

Date: 2025-07-09 18:56:02
Score: 3
Natty:
Report link

I found the solution to this issue here: https://www.serveradminblog.com/2023/03/the-repository-does-not-have-a-release-file-pgadmin4-on-mint-linux/.

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: BillStafford

79696121

Date: 2025-07-09 18:53:01
Score: 1.5
Natty:
Report link
FFMPEG_PATH="/opt/homebrew/bin/ffmpeg"

for f in "$@"
do
  filename="${f%.*}"
  output="${filename}.mp3"
  "$FFMPEG_PATH" -i "$f" -codec:a libmp3lame -qscale:a 2 "$output"
done
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Samir Nader

79696115

Date: 2025-07-09 18:47:59
Score: 0.5
Natty:
Report link

I've just encountered this same issue on my website. It seems that came after a chrome update.
What I did, that fixed the problem for my web app, was to update the allow attribute to allow="fullscreen", and in others where I needed other properties it was like allow="fullscreen; accelerometer; autoplay;"

Examples:

<iframe
  src="https://..."
  title="Title"
  className="w-full h-full border-0"
  allow="fullscreen"
/>
<iframe 
className="rounded-xl w-full h-full"
width="1200" height="600" src="https://..."
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen"></iframe>
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dnpg

79696104

Date: 2025-07-09 18:41:58
Score: 0.5
Natty:
Report link

Have you tried using this difftool command?

git difftool --cached --no-prompt <the folder path>

this command will launch P4V, comparing each staged file to its previous version on that specific folder.

Also,make sure to stage the files before that you want to review first

git add <the folder path>
Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Luckyyy

79696103

Date: 2025-07-09 18:38:57
Score: 0.5
Natty:
Report link

RDKit is designed to be somewhat modular. It's a very very big package, and importing everything under Chem is not usually advised. The best practice when using the library is to be specific with your imports (use the Descriptors.ExactMolWt function instead of Chem.Descriptors.ExactMolWt). Alternatively, you can do from rdkit.Chem import AllChem which will load in almost everything in Chem module and its sub modules.

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

79696101

Date: 2025-07-09 18:35:56
Score: 2.5
Natty:
Report link

You could use sip specific lib in app connect it to telephony server asterisk/freeswitch both open source m do some dial plan m you wil have what you need , the recording will be in server but possible to view even at client if you use proper app logic . All you can do without spending a dime, look at github also you will find example. thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Asif Shaikat

79696094

Date: 2025-07-09 18:33:55
Score: 0.5
Natty:
Report link

It’s because you're redeclaring loginSuccess inside the If, so VBScript treats it like a new local variable there, exactly like what @Shrotter said

You could try moving the Dim loginSuccess outside the If block

It should look something like this:

Dim username
Dim loginSuccess

username = InputBox("Enter your name:")

If username = "admin" Then
    loginSuccess = True
    MsgBox "Welcome, admin!"
Else
    loginSuccess = False
    MsgBox "Access Denied"
End If

If loginSuccess Then
    MsgBox "You're logged in"
Else
    MsgBox "Login failed"
End If
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Shrotter
  • Low reputation (0.5):
Posted by: Altxxr0

79696082

Date: 2025-07-09 18:20:52
Score: 1.5
Natty:
Report link

Add ?pgbouncer=true , for both DIRECT_URL and DATABASE_URL connection strings in .env file.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: MrClan

79696072

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

The correct syntax in the code to reach the selenium standalone running in the kubernetes cluster was

http://remote-chrome-webdriver.default.svc:80/wd/hub

Also we had to create a Kubernetes service to expose this selenium to other workloads in the cluster

apiVersion: v1
kind: Service
metadata:
  name: remote-chrome-webdriver
  labels:
    app: remote-chrome-webdriver
spec:
  selector:
    app: remote-chrome-webdriver
  ports:
    - protocol: TCP
      port: 80
      targetPort: 4444
  type: LoadBalancer
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: carlos palma

79696068

Date: 2025-07-09 18:10:49
Score: 3.5
Natty:
Report link

Note also that if you're using the Red Hat Developer for Individuals subscription, it's only for personal use. If you are developing or testing RHEL applications for work, you want the RHEL for Business Developers subscription. For details see: https://developers.redhat.com/articles/2025/07/09/announcing-self-service-access-red-hat-enterprise-linux-business-developers

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

79696064

Date: 2025-07-09 18:09:48
Score: 1
Natty:
Report link

I came to the point that when we pass a string to html2pdf everything works, but when clone, for some reason the pdf is empty.

The code I came up with:

//...
// Generate PDF
let htmlString = clone.innerHTML; //Create string
html2pdf()
.from(htmlString) //Passing the string
//...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sh4man

79696062

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

i had some faults in my code that is why i was not getting the results.

first i was using

 return $.get("<?php echo base_url('get_testname'); ?>", { query: query }, function (data) {

which should be $.post() so i changed to

return $.post("<?php echo base_url('get_testname'); ?>", { query: query }, function (data) {

secondly i was using check in my controller method instead of query so i changed the check to query

public function get_doctor()
{
    $query = $this->input->post('query');
    $data = $this->customers->get_doctor($query);
    echo json_encode( $data);
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ieesab

79696057

Date: 2025-07-09 18:04:46
Score: 1.5
Natty:
Report link

To use adb in any terminal (PowerShell, CMD, android studio, etc.), you need to add it to your system PATH:

C:\Users\<YourUsername>\AppData\Local\Android\Sdk\platform-tools

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

79696052

Date: 2025-07-09 17:55:44
Score: 8
Natty: 7
Report link

Were you able to find a solution for this? I'm also experiencing the same error .

Cheers

Jithin

Reasons:
  • Blacklisted phrase (1): Cheers
  • RegEx Blacklisted phrase (1): Were you able to find a solution
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jithin R

79696051

Date: 2025-07-09 17:55:44
Score: 1.5
Natty:
Report link

I'm experiencing the same problem, and interestingly, for about the same period as you, about 3 months.

Samsung support in Brazil informed me that when the smartwatch enters what I call "power saving mode" (I'm not sure if that's the correct term), the sensor sends information to the registered listeners in batches every 10 minutes, but I couldn't pinpoint this. My listener simply stops receiving data.

I'm struggling to solve this. If I succeed, I'll post here so you know.

Good luck!!!

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

79696027

Date: 2025-07-09 17:36:39
Score: 0.5
Natty:
Report link

I wondered if maybe when I pass a capacity value, they take the nearest bigger prime so I also looked at the constructor source code and that's exactly what they do:

            if (min < 0)
                throw new ArgumentException(SR.Arg_HTCapacityOverflow);

            foreach (int prime in Primes)
            {
                if (prime >= min)
                    return prime;
            }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: FluidMechanics Potential Flows

79696019

Date: 2025-07-09 17:32:38
Score: 1.5
Natty:
Report link

Try it this way.

colnames(df)[unname(unlist(sapply(df,is.factor)))]

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

79696010

Date: 2025-07-09 17:24:36
Score: 2.5
Natty:
Report link

It's doable using Smartsheet native automation and a Zapier zap. When a new attachment is added to a Smartsheet row, the zap grabs the attachment, attaches it to an email, and sends the email to a designated Outlook mailbox (individual or shared). Mine process goes a step further by using Power Automate to monitor that mailbox, and when the zap email hits it Power Automate grabs the attachment and saves the file to a designated SharePoint library and folder path.

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

79696000

Date: 2025-07-09 17:18:35
Score: 0.5
Natty:
Report link

I found the solution.

$ sudo ln -s /usr/lib/libxml2.so.16 /usr/lib/libxml2.so.2
Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Давид Пирић

79695990

Date: 2025-07-09 17:00:31
Score: 2
Natty:
Report link

To be independent of the underlying Database, I was using Apache DBCP2 as a datasource and while loading the datasource I was using either a file containing the connection properties or loading them from the environment.

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

79695989

Date: 2025-07-09 16:58:30
Score: 2.5
Natty:
Report link

it's because your code runs fully synchronous on the UI thread, so UI updates get queued but not rendered until it's done.

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

79695988

Date: 2025-07-09 16:58:30
Score: 3
Natty:
Report link

You have use .NET 9 to use SDK 35. If use .NET 8, you will be able to use a maximum of SDK 34. Case .NET 9 not be available, update your Visual Studio. My version is 17.14.7.

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

79695982

Date: 2025-07-09 16:48:28
Score: 1
Natty:
Report link

I wrote about this here: https://dev.to/googleworkspace/youre-probably-using-curl-wrong-with-your-google-apps-script-web-app-1ed8

- remove the -X POST

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

79695978

Date: 2025-07-09 16:46:27
Score: 3.5
Natty:
Report link

with this solution I get the compiler answer:

Could not create ModelContainer: SwiftDataError(_error: SwiftData.SwiftDataError._Error.loadIssueModelContainer, _explanation: nil)

Any idea, thanks a lot Uli

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Uli

79695977

Date: 2025-07-09 16:42:26
Score: 2
Natty:
Report link

Finally found the Solution

android.experimental.androidTest.useUnifiedTestPlatform=false

just add this line to

gradle.properties 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Abdallah_Alqiran

79695966

Date: 2025-07-09 16:28:22
Score: 1
Natty:
Report link

In the forum post you mention Forms. If you are using the built in FileUploadElementBlock I think the access rights to the uploaded files in Forms are inherited from the file upload element block access rights or maybe the form container block itself. That could also explain the issue with the access rights being reset whenever you post new data.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: Andreas

79695964

Date: 2025-07-09 16:24:22
Score: 3
Natty:
Report link

Also had this issue this morning, when everything worked fine yesterday. I didn't think I even initiated updates, and I don't update automatically.

Kubuntu 20.04 (Yeah, I need to update but...snaps...). gitk was 1:2.34.1-1ubuntu1.13, git 2.34.1.

The fix from @ivorybabe worked, even though it is probably a temporary fix. I downgraded gitk as he said, but did not change git-gui.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • User mentioned (1): @ivorybabe
  • Low reputation (1):
Posted by: nahtebee

79695957

Date: 2025-07-09 16:17:19
Score: 0.5
Natty:
Report link

The Angular Material Components Repo has a big build system, which was never properly prepared to run on native Windows. That's the reason you hit a snag with the SASS toolchain complaining.

The fastest way to get up and running is by installing WSL2 with the latest Ubuntu, installing the newest node via nvm deleting the node_modules folder installed by pnpm in the native windows environment, performing https://stackoverflow.com/a/58414196/6240779, letting pnpm install install the required packages and finally starting the local dev server. So you keep the code in outside of WSL, but let WSL run the dev server.

Be patient with pnpm dev-app, it's a heavy weight.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: FrostKiwi

79695953

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

ARGH!

export CFLAGS=-I/usr/local/$HOSTARG/include $CFLAGS"
export CPPFLAGS="-I/usr/local/$HOSTARG/include $CPPFLAGS"
export LDFLAGS="-L/usr/local/$HOSTARG/lib $LDFLAGS"

Those were apparently needed also...

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

79695952

Date: 2025-07-09 16:14:19
Score: 3
Natty:
Report link

Download this and install it by running as Administrator. Choose the x86 version even if your system is 64-bit.

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

79695942

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

I'm 7 years too late, but to whom may find this useful:

What that Wikipedia image is depicting is the optimal color solid (or Rösch-MacAdam color solid), which is the theoretical gamut of surfaces, not the visible gamut.

The visible gamut is bounded by the spectral cone and the inverse spectral cone. In a linear color space, such as CIE 1931 XYZ or LMS, the spectral cone is the surface formed by the set of rays that start at black ((0, 0, 0)) and pass through one spectral color (the XYZ coordinates of the spectral colors can be found on the CIE website). The inverse spectral cone is the symmetric of the spectral cone with respect to central grey ((0.5, 0.5, 0.5)). The volume that these two cones enclose is the visible gamut. The locus where they intersect is the set of the most chromatic colors that we can see.

The optimal color solid is tangent to the visible gamut's boundary at the blackpoint and the whitepoint, but it is pretty far from it in the highly chromatic colors, especially in the reds and cyans. This is because surfaces cannot reflect a single wavelength of light and be bright at the same time. But light sources can.

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

79695929

Date: 2025-07-09 15:57:14
Score: 2
Natty:
Report link

Two more simple but important items to check.

  1. Make sure you have a firewall rule to the destination server and port enabled if required.

  2. Make sure you are using the correct protocol (https vs http)

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

79695915

Date: 2025-07-09 15:48:12
Score: 2.5
Natty:
Report link

I access directly in the menu now, not sure when this changed but i have been doing it for a while

Right click folder, New -> JPA

enter image description here

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

79695914

Date: 2025-07-09 15:48:12
Score: 3.5
Natty:
Report link

Try to run the app in relase mode.

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

79695913

Date: 2025-07-09 15:47:11
Score: 1.5
Natty:
Report link

Although helpful and fixing some errors in the OPs code, the answer provided by @Santiago Squarzon does give the same error after about 22000 results (in my case at least). Here is some guidance at Microsoft Learn for working with large datasets. Hope this helps

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

79695912

Date: 2025-07-09 15:46:11
Score: 1
Natty:
Report link
You can exclude those binaries from the apk during packaging.
Add the snippet below in the build.gradle.kts / build.gradle in the app module to fix it.

android {
    packaging {
        resources {
            excludes.add("**/dump_syms/**")
        }
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alex Tenkorang

79695876

Date: 2025-07-09 15:20:04
Score: 3
Natty:
Report link

The problem exist in version 12.1.0. The workaround is to use version 12.0.0, it works regularly

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

79695873

Date: 2025-07-09 15:19:04
Score: 2
Natty:
Report link

turns out it can be as simple as
constant STACKSV : integer := ((character'pos(STACK(1))) * 256 * 256) + ((character'pos(STACK(2))) * 256) + ((character'pos(STACK(3))))
which for "int" produces 0x00746F70, which I can use, it's the integer equivalent of the V/SV "int".
That is, in my VHDL, pass generic STACK => STACKSV, and in the V/SV I can do if(STACK == "int") ...

Obviously, I could have shifted left 8 more bits and added 0x20, that would have answered the original question; but this actually is what I needed.

Now if someone could show me how in VHDL to do a left shift by 16 instead of a multiply by 256*256, and an OR instead of the addition, I'd be truly grateful. Given the strong typing of VHDL, I can't quite seem to get it right....

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

79695862

Date: 2025-07-09 15:11:01
Score: 1
Natty:
Report link
resource "random_id" "bucket_suffix" {
  byte_length = 4
}

module "s3_bucket" {
  source  = "terraform-aws-modules/s3-bucket/aws"
  version = "~> 4.0"

  # Basic Configuration
  bucket = "${local.name_prefix}-images-${random_id.bucket_suffix.hex}"
It is also good option
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rajesh k

79695839

Date: 2025-07-09 14:58:58
Score: 1.5
Natty:
Report link

For me - I clicked to override the install command in Settings > Build, but left it blank.. so install was not running.

The error message was somewhat of a red herring, but now I'm set

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

79695835

Date: 2025-07-09 14:56:57
Score: 3.5
Natty:
Report link

uh i also need an aswer to this... im trying to connect a gamepad to execute a xorg session (the script works if i execute it from a shell / root shell but doesnt work if its executed by udev

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: soyyo

79695834

Date: 2025-07-09 14:56:57
Score: 3
Natty:
Report link

Completed the setup after a few trial and errors. Used Oauth2 and followed the setups process available to complete the mapping and build the pipeline.

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

79695829

Date: 2025-07-09 14:52:56
Score: 2.5
Natty:
Report link

Error code 401 means authorization error.

This is what Groq says.

You may check for more errors on this link. https://console.groq.com/docs/errors

Reasons:
  • Blacklisted phrase (1): this link
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aabis Ahmed Hassan

79695825

Date: 2025-07-09 14:50:55
Score: 3
Natty:
Report link

Mi servirebbe una soluzione simile
in quanto ho un vecchio programma 32bit gestionale che non funziona con MAPI
su un client di posta a 64bit

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

79695809

Date: 2025-07-09 14:39:51
Score: 1
Natty:
Report link

Try moving your | startExpr 'and' expr and | expr 'and' expr alternatives in the rules above the | startExpr '+' expr and corresponding expr alternatives. I believe they should then match first and give you the tree you expect. I'm guessing you will likely also wish to elevate the or rules as well.

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

79695808

Date: 2025-07-09 14:38:51
Score: 4
Natty:
Report link

Code is no longer being supported and has not been supported for since July 2023. Thank you for anybody that read my post have a nice day.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Duncan McFarlane

79695789

Date: 2025-07-09 14:25:42
Score: 6
Natty:
Report link

I don't have the reputation to update but getting downvoted on this is really dumb. I don't know why someone would seeing it's a legitimate question with a final legitimate answer.

Reasons:
  • RegEx Blacklisted phrase (1.5): I don't have the reputation
  • RegEx Blacklisted phrase (2): downvote
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Something new

79695788

Date: 2025-07-09 14:24:42
Score: 2
Natty:
Report link

You can update the port number for the "Admin" buttons on XAMPP Control Panel by: 1) click on "Config" button on the top right corner. A Configuration of Control Panel will appear. 2) click on "Service and Port Settings" button on the right bottom corner of Configuration of Control Panel. Service Settings window will appear. 3) You can update the port number for Apache at this Service Settings window, and the URLs for the "Admin"enter image description here buttons will get updated.

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

79695774

Date: 2025-07-09 14:19:40
Score: 1
Natty:
Report link

The correct fields depend on what the VPN server sends. In my case, the working solution was:

nmcli connection modify "XXX" vpn.secrets "form:main:group_list=my_group,form:main:username=my_username"

Key points:

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

79695769

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

A class representing a Unicode character is available in the Ujorm framework. A stream of such characters can be loaded from an input stream by the expression:

Stream<UnicodeCharacter> chars = UnicodeCharacter.stream(inputStream, UTF_8);

See a unit tests for more examples:

https://github.com/pponec/ujorm/blob/master/project-m2/ujo-tools/src/test/java/org/ujorm/tools/common/UnicodeCharacterTest.java

A link to the original class is:

https://github.com/pponec/ujorm/blob/master/project-m2/ujo-tools/src/main/java/org/ujorm/tools/common/UnicodeCharacter.java

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

79695768

Date: 2025-07-09 14:14:39
Score: 0.5
Natty:
Report link

using the decorator:

@keras.saving.register_keras_serializable(package="name")

and returning init params in get_config, I had to rerun the notebook and retrain the model.

Now I can successfully load the model using:

model2 = keras.models.load_model("model_1_epoch.keras", custom_objects=custom_objects, compile=False)
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: FaisalShakeel

79695764

Date: 2025-07-09 14:12:38
Score: 1.5
Natty:
Report link

I also troubling for couple of hours with this problem and the issue comes from the proxy I entered earlier. To fix this using android studio follow this steps:
1. Go to File > Setting > Appearance and Behavior > System Setting > HTTP Proxy.
Now if you have entered proxy and port earlier totally disable it. This might help you

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

79695760

Date: 2025-07-09 14:10:38
Score: 1
Natty:
Report link

For anyone who discovers a similar issue using cordova-plugin-firebasex v18.0.7 on cordova-android, this is the manual fix for the issue. Hopefully this fix gets merged soon in a new version of firebasex and we won't have to do it manually in the future.

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

79695743

Date: 2025-07-09 13:59:34
Score: 1
Natty:
Report link

So solution is simple, but i still have no idea why TTTOOLINFOW not working here:

I replaced sizeof(TTTOOLINFOW) with TTTOOLINFOW_V2_SIZE macros and unicode tooltip now working

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: lywulf

79695737

Date: 2025-07-09 13:54:33
Score: 2
Natty:
Report link

I am somewhat embarrassed to have to admit that, while working with It all makes cents's answer, I discovered that I had made a mistake in transcribing my password from my Python code to the original VB.Net code. There was a sequence of two 'w's in the center of the password, one of which was actually lower case, and the other upper. This was not as obvious as it might have been, due to the font which the python editor was using, and I transcribed them both as upper case. The first issue, therefore, was actually a correct response by mariadb when given an incorrect password. However, the second issue (a different exception when attempting to connect with an alternate, and correctly transcribed set of credentials) remains unexplained, and does not occur with the MySQLConnector approach. It all makes cents's answer should, therefore, be regarded as definitive, and, by implication, this connector is to be preferred when linking to a mariadb database from VB.Net.

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

79695734

Date: 2025-07-09 13:49:31
Score: 1
Natty:
Report link

Nothing above worked for me. The issue it was causing was it trimming white space after save, turns out there is a separate setting for that and formatOnSave does not override this.

go to settings and disable Files:Trim Trailing Whitespace, this worked after hours of fixing it

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Suraj Gupta

79695733

Date: 2025-07-09 13:49:30
Score: 8
Natty: 4.5
Report link

Newbie here to macos - I have the following Windows .bat file and need to convert it to a mac .sh file - can anyone please help? Thanks in advance (This is how it looked in Windows 11 - files are located in the same location in Macos)

@echo off
start python C:\Users\Aide199\Desktop\UMTX2\host.py
start python C:\Users\Aide199\Desktop\UMTX2\fakedns.py -c dns.conf -i 192.168.0.2
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): please help
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (0.5): anyone please help
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Adrian Davies

79695728

Date: 2025-07-09 13:44:29
Score: 1
Natty:
Report link

I had to add the following types to my tsconfig.json and tsconfig.spec.json files:

"compilerOptions": {
  "types": [
    "jasmine",
    "node"
  ]
...
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Irina S.

79695727

Date: 2025-07-09 13:43:28
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: M Taufiq Rijal

79695725

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

You can accomplish this by using ActiveSheet.Range("D15:D19").FillDown This will copy down the formula that is in D15 to the area specified D15:D19. Put this at the end.

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

79695719

Date: 2025-07-09 13:38:26
Score: 11
Natty: 7.5
Report link

did you manage to fix this issue?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to fix this
  • RegEx Blacklisted phrase (1.5): fix this issue?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Stitchal

79695718

Date: 2025-07-09 13:38:26
Score: 0.5
Natty:
Report link

I experienced something like this in Laravel 12.
My issue was solved by where i placed the middleware.
This did not work with CSFR issued tokens, but it worked with normal api tokens issued by sanctum.


Route::middleware(['auth:sanctum'])->group(function () {
    //Routes
});

I moved the middleware definition and that fixed the problem.

Route::group(function () {
    //Routes
})->middleware(['auth:sanctum']);
Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): it worked
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jakob Espersen

79695713

Date: 2025-07-09 13:36:25
Score: 1
Natty:
Report link

We actually noticed that it's often NOT single use. So the assumption I had is incorrect.

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

79695709

Date: 2025-07-09 13:32:24
Score: 1
Natty:
Report link

If you want to place a conditional word break, including an added hyphen at the end of the line, you can add &shy; within your text.

This answers a slightly different problem than the one asked above, but while looking for this solution I first stumbled across this question.

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

79695702

Date: 2025-07-09 13:28:22
Score: 1.5
Natty:
Report link

fallowing answer of DannyB, for my ruby version 3.1.3 this resolve:

CONFIG = YAML.safe_load_file(Rails.root.join('config/config.yml'), aliases: true).with_indifferent_access
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jackson aquino

79695701

Date: 2025-07-09 13:28:22
Score: 2.5
Natty:
Report link

I ran into a similar rejection issue. After struggling with the review process, I used https://playtrust.pulsecode.in to identify and fix policy violations. Their report helped me fix the bugs and finally get my app accepted on the Play Store.

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

79695700

Date: 2025-07-09 13:28:22
Score: 1
Natty:
Report link

It seems to be happening to a lot of people today, they have an ongoin incident :
https://www.dockerstatus.com/

[Identified] We've identified the issue and are working towards remediation. As a result, all Hub items are currently in a read-only state. 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arkan

79695694

Date: 2025-07-09 13:23:21
Score: 2.5
Natty:
Report link

I was facing the same problem and found out that you have to add a TikTok test account in order to use the sandbox version of your App.

  1. Open your app on https://developers.tiktok.com/app/

  2. On Sandbox setting, click on add an account and log in with the account you will test

    TikTok developers sandbox section showing that you have to add a target user

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

79695682

Date: 2025-07-09 13:16:20
Score: 0.5
Natty:
Report link
import Svg, { Image } from 'react-native-svg';
<Marker
    coordinate={coordinates}
    title="Title"
      >
    <Svg width={60} height={60} style={styles.image}>>
      <Image
        href={imageUrl ?? undefined}
        width={60}
        height={60}
      />
    </Svg>
</Marker>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Naveed Shah

79695673

Date: 2025-07-09 13:12:18
Score: 2
Natty:
Report link

getExternalStoragePublicDirectory() was deprecated in Android 10 but was undeprecated in API level 32, Android 12. That's why it's working fine on later versions and doesn't show a deprecation warning.

https://developer.android.com/sdk/api_diff/32/changes/android.os.Environment

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

79695671

Date: 2025-07-09 13:11:17
Score: 13
Natty: 6
Report link

i'm facing the same problem. Have you solved it ?

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • Blacklisted phrase (2): Have you solved it
  • RegEx Blacklisted phrase (1.5): solved it ?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i'm facing the same problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31002404

79695665

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

What helped me:

Clear / Delete the Extension-Cache:

Close VS Code

Delete the content inside the workspaceStorage.

~/Library/Application Support/Code/User/workspaceStorage

For Windows it is:

C:\Users\username\AppData\Roaming\Code\User\workspaceStorage

And it should be faster / normal again

At least that was my final step and its smoothly running again 🙏

Reasons:
  • Blacklisted phrase (0.5): 🙏
  • Has code block (-0.5):
  • Starts with a question (0.5): What help
  • Low reputation (1):
Posted by: Lenzia

79695664

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

The latest security update of git, on at least Ubuntu 22.04 LTS (jammy), is buggy and breaks both gitk and git gui, And it seems the same bug affects Ubuntu 18.04.

The bug on Ubuntu launchpad: https://bugs.launchpad.net/ubuntu/+source/git/+bug/2116253

Git vulnerabilities that are fixed in the (partially broken) security update: https://ubuntu.com/security/notices/USN-7626-1

Since it's a security vulnerability it may not be wise to revert to an older version, unless you only use the affected commands on trusted repositories.

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

79695663

Date: 2025-07-09 13:04:15
Score: 1.5
Natty:
Report link

This is a simplistic example, but imagine if you needed 100 nodes of some application to serve traffic. If you wanted to have 100 still running after one AZ out of two went down, you would need to run 200 nodes, 100 per AZ. If you spread your application over 3 AZs, you would only need to run 50 in each AZ for a total of 150 to still have 100 when one AZ went down.

As you add more AZs to this architecture, you still benefit, but with diminishing returns.

This article explains the idea in more detail, and references Chapter 2 of Architecting for Scale, 2nd Edition by Lee Atchison:

https://shekhargulati.com/2022/10/06/why-an-architecture-with-three-availability-zones-is-better-than-the-one-with-two-availability-zones/

Reasons:
  • Blacklisted phrase (1): This article
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Matthew Daumen

79695661

Date: 2025-07-09 13:03:14
Score: 3
Natty:
Report link

picker.subviews[1].backgroundColor = UIColor.clear

this is how i remove color of selected item but do it after UIPickerView is loaded perfectly other wise it's going to crash

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

79695660

Date: 2025-07-09 13:03:14
Score: 1
Natty:
Report link

for current version of openblas/lapack (v0.3.30):

#define LAPACK_COMPLEX_CPP
#include <complex>
#include <lapacke.h> 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Fl0

79695659

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

I was facing a similar issue while working with Magento 2 and the Hyva theme.

After some investigation, I found that Tailwind CSS v4 is currently not supported by Hyvä.
I downgraded to Tailwind CSS v3, and everything started working as expected.

You can install it using:

npm install tailwindcss@3

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: S.P

79695654

Date: 2025-07-09 13:01:14
Score: 2.5
Natty:
Report link

Is this code used in pocket android app as well? BTW while running I got below error:

java.security.NoSuchAlgorithmException: PBEWithSHA256And256BitAES-CBC-BC SecretKeyFactory not available

Thanks,

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is this code use
  • Low reputation (1):
Posted by: pras v

79695642

Date: 2025-07-09 12:52:11
Score: 0.5
Natty:
Report link

You need a different type of auth token than what you are using.

This article talks about using a PowerShell library to get it using AADInternals

$teamsToken = Get-AADIntAccessTokenForTeams

Source:
https://medium.com/@mozzeph/automate-setting-work-location-in-teams-outlook-poc-deb7b05de08d

Reasons:
  • Blacklisted phrase (1): This article
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • High reputation (-2):
Posted by: John

79695641

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

You’re definitely not alone — GitHub Advanced Security and Azure DevOps don’t offer the same level of features, even though they’re both Microsoft tools. GitHub’s security tooling, especially secret scanning and SAST, is more mature at this point. That “scan for generic passwords” option you mentioned is one of many features that just don’t exist in Azure DevOps yet.

We tested this ourselves — same repo in both platforms, and GitHub consistently flagged more secrets and potential issues. Azure DevOps, while functional, feels a bit behind and lacks the configurability GitHub has. From what I’ve seen, Microsoft isn’t aiming for full feature parity — they seem to treat the two as separate ecosystems.

The real challenge is maintaining consistency when your codebases live in both platforms. Right now, we’re handling it by adding an extra layer of scanning into our CI/CD pipelines, separate from what the platforms provide. That way, we get uniform results no matter where the repo lives.

So yeah — it’s not just a delay or a settings issue. The platforms are genuinely different. If consistent security checks matter, it’s worth building a layer of abstraction yourself, or using tools that don’t depend on the platform's native features.

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

79695639

Date: 2025-07-09 12:50:10
Score: 1.5
Natty:
Report link

Same here, it has stopped working, probably the error is related to git instead of gitk, I can see the following in the package management history:

Upgrade: gitk:amd64 (1:2.34.1-1ubuntu1.12, 1:2.34.1-1ubuntu1.13)

Upgrade: git:amd64 (1:2.34.1-1ubuntu1.12, 1:2.34.1-1ubuntu1.13)

Upgrade: git-man:amd64 (1:2.34.1-1ubuntu1.12, 1:2.34.1-1ubuntu1.13)

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: José González Monlleó