79766410

Date: 2025-09-16 15:33:13
Score: 5
Natty:
Report link

I have a similar issue unnesting a dataset where the column with the data to unnest contains unequal rows and columns instead of equal sized data as in the original question.

Example dataset:

DT <- data.table::data.table(
  a = c("a1", "a2"),
  df1 = list(data.frame(
    b = c("b1", "b2")
  ))
)
n <- 5 #1e5
set.seed(42)
dt1 <- DT[sample(seq_len(nrow(DT)), n, TRUE),]

# Add unequal data to unnest column
DT2 <- data.table::data.table(
  a = c("a3"),
  df1 = list(data.frame(
    b = c("b1", "b2", "b3"),
    c = c("c1", "c2", "c3")
  ))
)
n <- 5
dt2 <- DT2[sample(seq_len(nrow(DT2)), n, TRUE),]

dt1  <- rbind(dt1, dt2)

Using the data.table solutions I get the following results:

dt1[, data.table::rbindlist(df1, fill = TRUE), by = .(a)]
Error in `[.data.table`(dt1, , data.table::rbindlist(df1, fill = TRUE),  : 
  j doesn't evaluate to the same number of columns for each group
dt1[, unlist(df1, TRUE, FALSE), .(a)]
# Works but all unnested data is placed in a single column

Other data.table solution works but is very slow. Much slower than tidyr::unnest(dt1, cols = c(df1)) which can handle this dataset.

unnested <- rbindlist(
  lapply(seq_len(nrow(dt1)), function(i) {
    inner_dt <- as.data.table(dt1$df1[[i]])  # Convert to data.table
    inner_dt[, a := dt1$a[i]]                # Add outer column
    return(inner_dt)
  }),
  fill = TRUE  # Fill missing columns with NA
)
setcolorder(unnested, c("a", setdiff(names(unnested), "a")))

Any ideas to unnest this type of dataset fast using data.table?

Reasons:
  • Blacklisted phrase (1): Any ideas
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Steve

79766389

Date: 2025-09-16 15:18:05
Score: 7 🚩
Natty:
Report link

OlĂĄ!
Estou com mesmo problema, de carregamento infinito do reCaptcha. Instalei o Mootools em: https://extensions.joomla.org/extension/mootools-enabler-disabler/ e mesmo assim não deu certo, mesmo ativando e desativando... Não sei mais o que faço.
Se alguÊm me der uma outra dica, fico a disposição. Muito obrigado!

Reasons:
  • Blacklisted phrase (1): nĂŁo
  • Blacklisted phrase (1): NĂŁo
  • Blacklisted phrase (2): OlĂĄ
  • RegEx Blacklisted phrase (1): obrigado
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gabriel Suporte

79766375

Date: 2025-09-16 15:06:01
Score: 2.5
Natty:
Report link

Either use full path or use */static/* to make it work

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

79766373

Date: 2025-09-16 15:03:59
Score: 6 🚩
Natty:
Report link

Someone initially posted suggesting using version in the Source string but deleted their post. After replacing every single Source path in the codebase to include the version number (inside the versioned project and outside), it suddenly worked! But why? And does anyone have any cleaner ways of doing this so that the version doesn't have to be updated in hundreds of places when making a new build of the project?

    <ResourceDictionary.MergedDictionaries>
        <styles:SharedResourceDictionary Source="/Presentation;v1.0.0.0;component/Styles/ColorDefinitions.xaml"/>
        <styles:SharedResourceDictionary Source="/Presentation;v1.0.0.0;component/Styles/FontDefinitions.xaml"/>
    </ResourceDictionary.MergedDictionaries>

<ResourceDictionary Source="/Presentation;v1.0.0.0;component/Styles/MyStyles.xaml" />

Reasons:
  • Blacklisted phrase (0.5): why?
  • RegEx Blacklisted phrase (3): does anyone have any cleaner
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sergey Zabelin

79766368

Date: 2025-09-16 14:58:57
Score: 0.5
Natty:
Report link

| Numbers | Answer |

| 1 | 1 |

| 2.3 | 2.3 |

| 3.2, 4.5 | 4.5 |

| 2.3 | 2.3 |

| 3 | 3 |

| 1.1,2.2,3.4 | 3.4 |

'Numbers' header in the above data is in cell A1. The following formula will work based on your sample data:

=MAX(VALUE(TEXTSPLIT(A2,",",,TRUE)))

TEXTSPLIT(A2,",",,TRUE) splits out the numbers across columns wherever there is a comma. VALUE() converts the output of TEXTSPLIT() to numbers. MAX() takes the max number from the array of numbers across the columns.

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

79766362

Date: 2025-09-16 14:52:55
Score: 2.5
Natty:
Report link

The problem was with my angular.json on the host side. In the "serve" block I needed to add

"options": {
    "extraWebpackConfig": "webpack.config.js"
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Aleksandrs JakovÄźevs

79766361

Date: 2025-09-16 14:52:55
Score: 3.5
Natty:
Report link

It looks to be a bug, which is fixed in between:

https://github.com/spring-projects/spring-framework/issues/33537

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

79766348

Date: 2025-09-16 14:43:52
Score: 1
Natty:
Report link

If you are using the Qt Maintenance Tool or the Qt Online Installer and only see Qt 6.x (for example Qt 6.9), you can still install older versions like Qt 5.15.x. By default, the installer hides archived versions.

To enable them:

  1. Open the Qt Maintenance Tool (or run the Online Installer).

  2. Log in with your Qt account.

  3. On the “Select Components” page, look for the filter options at the top.

  4. Enable the “Archive” option.

  5. Now you will see older releases, including Qt 5.x.x versions.

  6. Select the version you want (e.g. Qt 5.15.2) and install it.

This way you don’t need to manually download and build from source — the installer can fetch the archived packages for you.

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

79766346

Date: 2025-09-16 14:43:52
Score: 1.5
Natty:
Report link

Im my case the problem was solved when I addressed another error: SceneConfiguration] Info.plist contained no UIScene configuration dictionary (looking for configuration named "(no name)"

Once this was done (by editing project info to add scene configuration) the error message went away. I am using Xcode 14.2 and testing on iphone 13 simulator.

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

79766342

Date: 2025-09-16 14:43:52
Score: 2.5
Natty:
Report link

Title

Google Sign‑In on Android: Why you must use the Web Client ID (not the Android Client ID) with Credential Manager / Google Identity Services


Question

I was integrating Google Sign‑In in my Android app using Kotlin + Jetpack Compose and the new Credential Manager API with Google Identity Services.

I went to Google Cloud Console → Create Credentials → OAuth Client ID and, since I was building an Android app, I naturally chose Application type: Android. I added my package name and SHA‑1 fingerprint, got the Android Client ID, and used it in:

val googleIdOption = GetGoogleIdOption.Builder()
    .setServerClientId("MY_ANDROID_CLIENT_ID")
    .build()

But I kept getting:

[28444] Developer console is not set up correctly.

After hours of debugging, I discovered that I actually needed to use the Web application client ID in setServerClientId(...), even though my app is Android‑only.

Why is this the case?
What’s the correct way to set up OAuth in Google Cloud so Google Sign‑In works on Android without this error?


Answer

This confusion is extremely common — you’re not alone.
The short version: Google Sign‑In on Android always requires a Web Client ID for ID token retrieval, even if your app is Android‑only.


Why the Web Client ID is required


Correct setup in Google Cloud Console

  1. Create a Web application OAuth client

    • Application type: Web application

    • No need to set redirect URIs for mobile use.

    • Copy the Client ID — this goes into setServerClientId(...) in your Android code.

  2. Create an Android application OAuth client

    • Application type: Android

    • Add your package name and SHA‑1 fingerprint (from ./gradlew signingReport or keytool).

    • This links your signed APK to the same project so Google Play Services trusts it.

  3. Both clients must be in the same Google Cloud project.


Code example

val googleIdOption = GetGoogleIdOption.Builder()
    .setFilterByAuthorizedAccounts(false)
    .setServerClientId("YOUR_WEB_CLIENT_ID") // from Web application type
    .build()

Common pitfalls


Key takeaway

Even for Android‑only apps, you need both:

  • Web Client ID → used in code to request ID tokens.

  • Android Client ID → used to verify your app’s signature with Google Play Services.

This is by design in Google’s OAuth architecture — the Web Client ID represents the “server” side of the flow, even if your “server” is just your backend API.


If you post this, it will save a lot of devs from burning hours on the [28444] error.


Reasons:
  • Blacklisted phrase (1): This link
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (0.5): Why is this
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Azharul Islam

79766339

Date: 2025-09-16 14:33:27
Score: 11.5 🚩
Natty: 5.5
Report link

Were you able to solve it? If so, how?

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mayank Jain

79766338

Date: 2025-09-16 14:32:26
Score: 1
Natty:
Report link

Pete from Laravel Support here!

Laravel Cloud doesn't support file uploads onto the container your application is hosted on. These containers can be replaced at any time for high availability reasons and as such, it's actually recommended you use an external Filesystem for your app.

If you create an Object Storage in Laravel Cloud and attach it to your cluster, you'll be able to adjust your code to save and retrieve files from there.

Here's the documentation: https://cloud.laravel.com/docs/resources/object-storage

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

79766336

Date: 2025-09-16 14:30:25
Score: 3
Natty:
Report link

2 days later, xcode allows me to create another certificate. The older one still shows greyed out.

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

79766330

Date: 2025-09-16 14:22:22
Score: 0.5
Natty:
Report link

I had the same issue. It turns out docker-mailserver was silently failing on my password due to the characters being utilized.

To debug, I'd suggest using a simple plaintext password and then iterate on that.

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

79766328

Date: 2025-09-16 14:20:20
Score: 0.5
Natty:
Report link

As per the documentation, there is an init parameter allow_unnamed_section.

So your example can be implemented as following:

import configparser
cp = configparser.ConfigParser(allow_unnamed_section=True)
cp.read("rsyncd.conf")
path = cp.get(configparser.UNNAMED_SECTION, 'path') # read a value
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: pas-calc

79766325

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

see imconf.h for explanation and additional calls for windows dlls:

Windows DLL users: heaps and globals are not shared across DLL boundaries! You will need to call SetCurrentContext() + SetAllocatorFunctions() for each static/DLL boundary you are calling from. Read "Context and Memory Allocators" section of imgui.cpp for more details.

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

79766314

Date: 2025-09-16 14:00:11
Score: 2.5
Natty:
Report link

Increase the height of the container to 350px. That works for me.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Goody

79766302

Date: 2025-09-16 13:52:06
Score: 1
Natty:
Report link

I got the following error in Nifi (Basically a Spring Boot Java application underneath):

Caused by: java.sql.SQLException: Cannot create PoolableConnectionFactory (The authentication type 10 is not supported. Check that you have configured the pg_hba.conf file to include the client's IP address or subnet, and that it is using an authentication scheme supported by the driver.)

Caused by: org.postgresql.util.PSQLException: The authentication type 10 is not supported. Check that you have configured the pg_hba.conf file to include the client's IP address or subnet, and that it is using an authentication scheme supported by the driver.

Upgrading the PostgreSQL JDBC driver used (in the workflow) to connect to my PostgreSQL database resolves the error.

Since this isn't specifically for Rust, updating the PostgreSQL JDBC driver is applicable for different types of projects.

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

79766286

Date: 2025-09-16 13:36:00
Score: 3
Natty:
Report link

if your using MSYS2 MINGW64 in windows run as administrator ,in linux bash terminal type sudo

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

79766255

Date: 2025-09-16 12:59:44
Score: 1
Natty:
Report link

I decided it myself and didn’t wait for help. I decided it myself, I didn't wait for help. Maybe it will be useful to someone

String html = scriptElements.html();
String string = "";
Matcher matcher = Pattern.compile("(?<=mp4_144\":\")[^\"]+").matcher(html);
if (matcher.find()) {
    string = matcher.group();
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Enjo Flash

79766249

Date: 2025-09-16 12:52:41
Score: 0.5
Natty:
Report link

You can use these prefab forms:

[^\p{ASCII}]

or

[:^ASCII:]
Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: futursimple

79766245

Date: 2025-09-16 12:46:39
Score: 1
Natty:
Report link
  • How can I achieve my goal of using a Paged TabView inside a larger ScrollView without it collapsing to zero height?

To fix height issue with TabView inside ScrollView you need to add .aspectRatio(contentMode: .fit) modifier to the TabView.

struct SomeView: View {
    var body: some View {
        NavigationView {
            ScrollView {
                TabView {
                    Text("View A")

                    Text("View B")

                    Text("View C")
                }
                .tabViewStyle(.page)
                .aspectRatio(contentMode: .fit) // <- Will fix the height issue
            }
        }
    }
}
Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How can I
  • Low reputation (0.5):
Posted by: M_Khater

79766232

Date: 2025-09-16 12:28:11
Score: 4.5
Natty: 4
Report link

pannu pa jalsa, jalsa pannu pa.

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

79766229

Date: 2025-09-16 12:27:10
Score: 3.5
Natty:
Report link

[Common 17-69] Command failed: Vivado Synthesis failed

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

79766225

Date: 2025-09-16 12:25:09
Score: 3
Natty:
Report link

Change Your Geometry Normal to Smoothing Group on Export
Smoothing Group Used to Be Default in older Version of Blender But they Changed it to Normals which doesnt work for VRM files / some animations Change This

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shadow Fox

79766210

Date: 2025-09-16 12:14:06
Score: 1
Natty:
Report link

Try adding

-Dfile.encoding="UTF-8"

as JVM parameter. Had exactly the same issue, I think it's because non-ASCII chars are not encoded as UTF-8.

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

79766206

Date: 2025-09-16 12:09:04
Score: 1.5
Natty:
Report link

You’re hitting Oracle’s 1000-item limit in IN lists — not the VARRAY size. For 15k values, load them into a table (temp/global/temp table) or pass them as a collection via PL/SQL, then join against that table/collection instead of hardcoding them in array_id(...).

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

79766196

Date: 2025-09-16 11:55:01
Score: 0.5
Natty:
Report link

TLDR: you can't use wildcards in Principals in IAM Policy Statements....

From what I understand, when you put in a principal in a IAM statement - behind the scenes, it translates that to the internal ID of the user/role. This is to prevent someone maliciously naming something similar to get access - we can argue if someone can create IAM users/roles, then you already have a pretty major issue.... This behavior is why you can't use wildcards in IAM Principals.

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

79766193

Date: 2025-09-16 11:52:01
Score: 0.5
Natty:
Report link

Thank you so much @joe-sindoni. I had been struggling for hours with WCF to get it working with WS Security. In my case, I had to make a few modifications (with Copilot's help) so the server would validate my signature:

public object BeforeSendRequest(ref Message request, IClientChannel channel)
{
    // Add the ws-Security header
    request.Headers.Add(new WsSecurityHeader());

    // Get the entire message as an xml doc, so we can sign the body.
    var xml = GetMessageAsString(request);

    XmlDocument doc = new XmlDocument();
    doc.PreserveWhitespace = false;
    doc.LoadXml(xml);

    XmlNamespaceManager nsmgr = new XmlNamespaceManager(doc.NameTable);
    nsmgr.AddNamespace("soapenv", WsSecurityHeader.SoapEnvelopeNamespace);
    nsmgr.AddNamespace("wsse", WsSecurityHeader.WsseNamespace);
    nsmgr.AddNamespace("wsu", WsSecurityHeader.WsseUtilityNamespaceUrl);
    nsmgr.AddNamespace("ds", "http://www.w3.org/2000/09/xmldsig#");

    // The Body is the element we want to sign.
    var body = doc.SelectSingleNode("//soapenv:Body", nsmgr) as XmlElement;

    // Add the Id attribute to the Body, for the Reference element URI
    var id = doc.CreateAttribute("wsu", "Id", WsSecurityHeader.WsseUtilityNamespaceUrl);
    id.Value = BodyIdentifier;
    body.Attributes.Append(id);

    // Get the Security header
    XmlNode securityHeader = doc.SelectSingleNode("//soapenv:Envelope/soapenv:Header/wsse:Security", nsmgr);

    // Add BinarySecurityToken
    string certId = "X509-" + Guid.NewGuid().ToString();
    XmlElement binarySecurityToken = doc.CreateElement("wsse", "BinarySecurityToken", WsSecurityHeader.WsseNamespace);
    binarySecurityToken.SetAttribute("Id", WsSecurityHeader.WsseUtilityNamespaceUrl, certId);
    binarySecurityToken.SetAttribute("ValueType", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3");
    binarySecurityToken.SetAttribute("EncodingType", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary");
    binarySecurityToken.InnerText = Convert.ToBase64String(X509Certificate.GetRawCertData());
    securityHeader.AppendChild(binarySecurityToken);

    var signedXml = new SignedXmlWithUriFix(doc);
    signedXml.SigningKey = X509Certificate.PrivateKey;
    signedXml.SignedInfo.SignatureMethod = SignedXml.XmlDsigRSASHA1Url;
    signedXml.SignedInfo.CanonicalizationMethod = SignedXml.XmlDsigExcC14NTransformUrl;

    // Add the X509 certificate info to the KeyInfo section
    var keyInfo = new KeyInfo();
    
    // Create SecurityTokenReference to refer to the BinarySecurityToken
    XmlElement securityTokenReference = doc.CreateElement("wsse", "SecurityTokenReference", WsSecurityHeader.WsseNamespace);
    XmlElement reference = doc.CreateElement("wsse", "Reference", WsSecurityHeader.WsseNamespace);
    reference.SetAttribute("URI", $"#{certId}");
    reference.SetAttribute("ValueType", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3");
    securityTokenReference.AppendChild(reference);
    
    // Add the SecurityTokenReference to KeyInfo
    KeyInfoNode keyInfoNode = new KeyInfoNode(securityTokenReference);
    keyInfo.AddClause(keyInfoNode);
    
    signedXml.KeyInfo = keyInfo;

    // Add the reference to the SignedXml object
    Reference xmlReference = new Reference($"#{BodyIdentifier}");
    xmlReference.DigestMethod = SignedXml.XmlDsigSHA1Url;
    
    // Add transform
    xmlReference.AddTransform(new XmlDsigExcC14NTransform());
    
    signedXml.AddReference(xmlReference);

    // Compute the signature
    signedXml.ComputeSignature();

    // Get the Signature element and append to security header
    XmlElement xmlDigitalSignature = signedXml.GetXml();
    securityHeader.AppendChild(doc.ImportNode(xmlDigitalSignature, true));

    // Generate a new message from our XmlDocument
    var newMessage = CreateMessageFromXmlDocument(request, doc);
    request = newMessage;

    return null;
}
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @joe-sindoni
  • Low reputation (0.5):
Posted by: rasputino

79766191

Date: 2025-09-16 11:51:00
Score: 0.5
Natty:
Report link

I was facing a similar issue. I reconfigured with new credentials, and it worked.

ERROR:
*Error: checking AWS STS access – cannot get role ARN for current session: operation error STS: GetCallerIdentity, get identity: get credentials: failed to refresh cached credentials, failed to load credentials, exceeded maximum number of attempts, 13
*
FIX:
Reconfigure AWS Credentials
Command: aws configure

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Low reputation (1):
Posted by: Haji Dukureh

79766190

Date: 2025-09-16 11:50:00
Score: 1
Natty:
Report link

Pre-req steps for windows update using powershell:

netsh winhttp set proxy "xxxxxxx:80" # use proxy if any

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

Install-PackageProvider -Name NuGet

Install-Module PSWindowsUpdate

Add-WUServiceManager -MicrosoftUpdate

Install-WindowsUpdate -MicrosoftUpdate -AcceptAll -AutoReboot | Out-File "D:\MSUpdates.log" -Force

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

79766189

Date: 2025-09-16 11:47:59
Score: 2.5
Natty:
Report link

I have been working in this script until it generated a hello world that compiles into an apk. It is available in this gist:

gist.github.com/vokimon/38f1f6d2ce1b90bcb2676de2d51e520d

Hope it is useful, but consider I am an Android newbie, so for sure it can be improved a lot. Please, send me any updates you make to it.

Reasons:
  • RegEx Blacklisted phrase (0.5): any updates
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
Posted by: vokimon

79766182

Date: 2025-09-16 11:42:57
Score: 1.5
Natty:
Report link

How to automate windows update using powershell and batch script?

  1. Create MSUpdates.log file in D: drive

  2. Create installpatchexecute.cmd in D: drive with this content:

    pushd D:

    powershell.exe .\installpatch.ps1

    if %errorlevel% neq 0 goto error

    popd

    goto end

    :error

    echo "An error occurred" >> D:\MSUpdates.log

    exit /b 1

    :end

    exit /b 0

  3. Create installpatch.ps1 file in D: drive with this content:

    netsh winhttp set proxy "xxxxxx:80" #(proxy if any)

    Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

    Install-WindowsUpdate -MicrosoftUpdate -AcceptAll -AutoReboot | Out-File "D:\MSUpdates.log" -Force

  4. Create Schedule task to run on every monday at 6pm and relax :)

    pushd c:\windows\system32

    SCHTASKS /Create /S localhost /RU SYSTEM /SC WEEKLY /D MON /ST 18:00 /TN "InstallWindowsPatch" /TR "D:\installpatchexecute.cmd"

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (0.5):
Posted by: Bhaskar Jagadeesha

79766181

Date: 2025-09-16 11:40:56
Score: 1.5
Natty:
Report link

Try:

providers: [provideNativeDateAdapter(), { provide: MAT_DATE_LOCALE, useValue: 'fr-FR' }]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: daviyisu

79766179

Date: 2025-09-16 11:39:56
Score: 2.5
Natty:
Report link

个人想法+大模型:你可以将查询修改如下,使用 coalesce() 函数来处理 NULL 值:

SELECT ROUND(
  coalesce(last_value(LD_ShuiBeng1_DianLiang*40), 0) +
  coalesce(last_value(LDJZ_DianLiang_2*40), 0), 2)
FROM root.building01.aircon.*
WHERE time >= '2025-07-01 00:00:00' AND time <= '2025-08-01 00:00:00'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: kassusu

79766171

Date: 2025-09-16 11:32:54
Score: 3
Natty:
Report link

As it is mentioned in https://www.w3schools.com/html/html_editors.asp

first in your textEdit settings**: Format >** choose "Plain Text"

format

then select "Open and Save" tab: check the box that says "Display HTML files as HTML code instead of formatted text".

enter image description here

and use .html instead of .txt when you want to save.

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

79766167

Date: 2025-09-16 11:29:54
Score: 2.5
Natty:
Report link

Another solution is react-native-root-toast

react-native-paper has a similar component as well.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: RobinBobin

79766162

Date: 2025-09-16 11:22:51
Score: 3.5
Natty:
Report link

key-value dropdown/autocomplete is available starting Handsontable v16.1.0. Here’s a related PR https://github.com/handsontable/handsontable/pull/11773

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

79766160

Date: 2025-09-16 11:21:51
Score: 3.5
Natty:
Report link

key-value dropdown/autocomplete is available starting Handsontable v16.1.0. Here’s a related PR https://github.com/handsontable/handsontable/pull/11773

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

79766158

Date: 2025-09-16 11:20:51
Score: 3.5
Natty:
Report link

key-value dropdown/autocomplete is available starting Handsontable v16.1.0. Here’s a related PR https://github.com/handsontable/handsontable/pull/11773

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

79766154

Date: 2025-09-16 11:19:50
Score: 2.5
Natty:
Report link

Try to build the android app via Android studio, and put some log. You can see the log in log cat.

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

79766153

Date: 2025-09-16 11:17:50
Score: 3
Natty:
Report link

You can do from WHM > CSF > Firewall Configuration

Enter the 443 Port in TCP_IN and OUT

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

79766148

Date: 2025-09-16 11:12:49
Score: 3.5
Natty:
Report link

I think the target directory has to be a folder, not a file.

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

79766146

Date: 2025-09-16 11:11:48
Score: 3
Natty:
Report link

Pagination is only available from v16.1.0.

Here is the corresponding pull request https://github.com/handsontable/handsontable/pull/11612 and a guide https://handsontable.com/docs/react-data-grid/rows-pagination/.

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

79766135

Date: 2025-09-16 11:01:46
Score: 2
Natty:
Report link

You can check the agent output of the host where you wanna monitor the services. If Checkmk already "reads" the services, you can simply discover it by "Windows Service discovery" for windows, or "Single service discovery" for linux. Both support regular expressions so you can discover multiple services within one rule.

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

79766132

Date: 2025-09-16 11:01:46
Score: 1.5
Natty:
Report link

just delete bin and obj files and reload the project. This will create new obj and bin files which eventually allows you to use

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

79766131

Date: 2025-09-16 10:59:45
Score: 1
Natty:
Report link

use this
fixed your problem

import { HeroUIProvider } from "@heroui/react"

export default function ThemeProvider({ children }: { children: React.ReactNode }) {
  return <HeroUIProvider locale='fa'>{children}</HeroUIProvider>
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Amin Nazemi

79766125

Date: 2025-09-16 10:52:44
Score: 1.5
Natty:
Report link
let statusBarHeight = UIApplication.shared.connectedScenes
            .compactMap { $0 as? UIWindowScene }
            .first?.statusBarManager?.statusBarFrame.height ?? 0
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yug Modi

79766124

Date: 2025-09-16 10:50:40
Score: 6.5 🚩
Natty:
Report link

In your .htaccess you can add this condition to specify you don't want your folder to be passed to the URL you're visiting:

RewriteCond %{REQUEST_URI} !^/folder-name/ [NC]

Worked for me while having the same issue. Please let me know if I'm wrong since I'm new to this

Reasons:
  • Whitelisted phrase (-1): Worked for me
  • RegEx Blacklisted phrase (2.5): Please let me know
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: Giorgio

79766116

Date: 2025-09-16 10:40:37
Score: 0.5
Natty:
Report link

<!DOCTYPE html> <html lang="en">

<head>

<meta charset="UTF-8" />

<title>Blinking Caret Trail</title>

<style>

body { margin: 0; background: #111; overflow: hidden; }  

svg { width: 100vw; height: 100vh; display: block; }  /\* blinking effect \*/  

rect {

fill: lime;

rx: 2;

animation: blink 1s step-start infinite;

}

@keyframes blink {

50% { opacity: 0; }

}

</style>

</head>

<body>

<svg id="canvas"></svg> <script>

const svg = document.getElementById("canvas");

const width = window.innerWidth;

const height = window.innerHeight;

const N = 25; // number of carets

const rad = 150;

let frm = 0;

const pointer = { x: 0, y: 0 };

const elems = [];

// create SVG rects as carets

for (let i = 0; i < N; i++) {

const use = document.createElementNS("http://www.w3.org/2000/svg", "rect");

use.setAttribute("x", -2);

use.setAttribute("y", -15);

use.setAttribute("width", 4);

use.setAttribute("height", 30);

svg.appendChild(use);

elems.push({ x: width/2, y: height/2, use });

}

window.addEventListener("mousemove", e => {

pointer.x = e.clientX - width / 2;

pointer.y = e.clientY - height / 2;

});

const run = () => {

requestAnimationFrame(run);

frm += 0.02;

let e = elems[0];

const ax = (Math.cos(3 * frm) * rad * width) / height;

const ay = (Math.sin(4 * frm) * rad * height) / width;

e.x += (ax - pointer.x - e.x) / 10;

e.y += (ay - pointer.y - e.y) / 10;

e.use.setAttribute("transform", `translate(${e.x + width/2}, ${e.y + height/2})`);

for (let i = 1; i < N; i++) {

let e = elems\[i\];  

let ep = elems\[i - 1\];  

const a = Math.atan2(e.y - ep.y, e.x - ep.x);  

e.x -= (ep.x - e.x - (Math.cos(a) \* (100 - i)) / 5) / 4;  

e.y -= (ep.y - e.y - (Math.sin(a) \* (100 - i)) / 5) / 4;  



e.use.setAttribute("transform",  

  \`translate(${e.x + width/2}, ${e.y + height/2}) rotate(${(180/Math.PI)\*a})\`  

);  

}

};

run();

</script> </body>

</html> ( pydhroid 3)

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

79766114

Date: 2025-09-16 10:38:37
Score: 1
Natty:
Report link

A long time in the future...

There is a pin button in the top right of any popped out windows in VSCode. Somehow I had clicked it. Unpinning the window worked for me.

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

79766113

Date: 2025-09-16 10:36:36
Score: 0.5
Natty:
Report link

Just in case anyone else comes across this it now appears to work simply surrounding the text with back ticks

this is my paragraph with some `code goes here` to review

which appears as

this is my paragraph with some code goes here to review

which is handily the same syntax as these posts :-)

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

79766111

Date: 2025-09-16 10:34:35
Score: 1.5
Natty:
Report link
macro bind_doc()
    quote
        text(s::AbstractString) = println(s)
        
        macro text_str(str)
            interpolated = Meta.parse("\"$str\"")
            :(text($interpolated))
        end
    end |> esc
end
@bind_doc()

text"Hi $(1 + 2)"

Here is the implementation of getting Hi 3

Reasons:
  • Blacklisted phrase (1): :(
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mohsin Raza

79766109

Date: 2025-09-16 10:31:34
Score: 0.5
Natty:
Report link

based on https://learn.microsoft.com/en-us/azure/azure-signalr/signalr-concept-client-negotiation#self-exposing-negotiate-endpoint I managed to inject custom user identity claim from our custom incoming JWT into SignaR access token:

import { sign, decode } from "jws";

const inputSignalR = input.generic({
  type: "signalRConnectionInfo",
  name: "connectionInfo",
  hubName: "my-hub",
});

async function negotiate(request: HttpRequest, context: InvocationContext) {
  const signalRDefaultConnectionInfo = context.extraInputs.get(inputSignalR);
  const signalRConnectionString = process.env.AzureSignalRConnectionString;
  const signalRAccessKey = /AccessKey=(.*?);/.exec(signalRConnectionString)[1];

  const userId = extractUserId(request); // extract user identity claim from your JWT
  const originalDecodedToken = decode(signalRDefaultConnectionInfo.accessToken);
  const customizedToken = sign({
    header: originalDecodedToken.header,
    payload: {
      ...originalDecodedToken.payload,
      "asrs.s.uid": userId, // claim used by SignalR Service to hold user identity
      },
    secret: signalRAccessKey
  });

 return { url: signalRDefaultConnectionInfo.url, accessToken: customizedToken };
}

app.post("negotiate", {
  authLevel: "anonymous",
  handler: negotiate,
  route: "negotiate",
  extraInputs: [inputSignalR],
});
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: yohny

79766088

Date: 2025-09-16 10:11:29
Score: 0.5
Natty:
Report link

After a bit of research on gg_ordisurf github source code, the problem was coming from this part of the code function:

  # Calculate default binwidth
  # Can change the binwidth depending on how many contours you want
  if(missing(binwidth)) {
    r <- range(env.var)
    binwidth <- (r[2]-r[1])/15
  } else {
    binwidth = binwidth
  }

so I added na.rm=TRUE in the range function:

  # MODIFED gg_ordisurf function
  if(missing(binwidth)) {
    r <- range(env.var, na.rm = TRUE)
    binwidth <- (r[2]-r[1])/15
  } else {
    binwidth = binwidth
  }

and made my own gg_ordisurf function by copying the source code.

Note: the vegan::ordisurf function was working perfectly fine with this issue.

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

79766086

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

FetchHeaders failed because your application passed an empty message set. With nothing to fetch, it returned a failed status to alert you.

Ensure your code verifies the success of the `imap.Search` call. If it returns null, inspect `imap.LastErrorText` for details. Additionally, check that all prior IMAP method calls succeeded to rule out earlier failures.

Also, you can check the `Imap.SessionLog` if `Imap.KeepSessionLog` is true. See https://www.example-code.com/csharp/imap_sessionlog.asp

Reasons:
  • No code block (0.5):
Posted by: Chilkat Software

79766082

Date: 2025-09-16 10:07:28
Score: 2.5
Natty:
Report link

My solution was the next on Android.

In AndroidManifest file replaced the next android:launchMode="singleTop" to this android:launchMode="singleTask" and removed the next android:taskAffinity="" .

After the changes I needed to rebuild the whole project.

It solved my problem.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Uigitdev

79766081

Date: 2025-09-16 10:07:28
Score: 2.5
Natty:
Report link
I receive null  
Element player = scriptElements.select("playerParams").first();
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Enjo Flash

79766079

Date: 2025-09-16 10:02:27
Score: 0.5
Natty:
Report link

The Inspect/Selenium method doesn’t work anymore, LinkedIn only shows relative times in the DOM, while the exact timestamp is hidden in the post ID.

For a quick solution, you can use a free tool like https://onclicktime.com/linkedin-post-date-extractor
For more details, here’s a helpful article:https://onclicktime.com/blog/how-to-see-linkedin-post-date

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

79766077

Date: 2025-09-16 10:00:26
Score: 1.5
Natty:
Report link

Ensure the Nwidart/laravel-modules version installed matches the application's Laravel version. for instance for laravel 10.0 run composer require --dev nwidart/laravel-modules:^10`

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

79766076

Date: 2025-09-16 09:58:25
Score: 2.5
Natty:
Report link
document.querySelectorAll('style, link[rel="stylesheet"]').forEach(e => e.remove());
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Zari Habibi

79766075

Date: 2025-09-16 09:57:24
Score: 1
Natty:
Report link

enter image description here

I found the solution I was using reactJs vite in my project and because it had hot reload and every change would refresh the localhost page in the browser and the translator popup would open in the default browser and I didn't pay attention to it, the autofocus would go to the browser because of the browser translator popup.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-2): I found the solution
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: H24

79766069

Date: 2025-09-16 09:48:22
Score: 4.5
Natty:
Report link

Same issue here both with ping and initialize

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

79766064

Date: 2025-09-16 09:45:21
Score: 1.5
Natty:
Report link

I haven't tested it but you can apparently do it with python

import xlwings as xw

# Update these paths

iqy_file_path = r"C:\\Path\\To\\Your\\File.iqy"

excel_file_path = r"C:\\Path\\To\\Your\\Workbook.xlsx"

# Launch Excel

app = xw.App(visible=True)

wb = app.books.open(excel_file_path)

# Choose the sheet

sheet = wb.sheets['Sheet1']

# Refresh all queries

wb.api.RefreshAll()

# Save and close

wb.save()

wb.close()

app.quit()

print("Excel workbook refreshed with .iqy data.")

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

79766062

Date: 2025-09-16 09:45:21
Score: 2.5
Natty:
Report link

Once the ImportError for BigQueryCreateEmptyTableOperator has been fixed, clear the PyCache and restart the Airflow scheduler and web server. It prevents DAGs from disappearing from the user interface by refreshing DAG parsing.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pauls Creationids Interior Des

79766060

Date: 2025-09-16 09:45:21
Score: 2
Natty:
Report link

Solution in 2025:

pip uninstall pip-system-certs

pip install pip_system_certs

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

79766054

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

i think the problem is here.

// Initialize PEPPOL validation rules
//PeppolValidation.initStandard(validationExecutorSetRegistry);
PeppolValidation2025_05.init(validationExecutorSetRegistry);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Franco Graziani

79766051

Date: 2025-09-16 09:45:21
Score: 2
Natty:
Report link

If you are sure you did everything correctly, check your spelling. In my case, I did module.exprots instead of module.exports

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

79766050

Date: 2025-09-16 09:45:21
Score: 3.5
Natty:
Report link

Any idea to solve the above problem Omnet++ 5.7

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

79766047

Date: 2025-09-16 09:45:21
Score: 2
Natty:
Report link

After fiddling with CMake and CPack, it seems that it is not possible to use NSIS Plugin commands from there.

In general, it seems it is better to use the vanilla version of NSIS and make do with packing ExecuteCommand with the list of shell commands you want done.

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

79766046

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

Does, but extremely verbosely.

fn=("upload.abs.2025-09-15T20.06.37.564Z.e0f24926/1");
m1(String g){return fn+'/'+g;}
Arrays.asList(f.list()).stream().map(new java.util.function.Function(){Object apply(Object o){return m1((String)o);}}).collect(java.util.stream.Collectors.toList());
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Michael Skidan

79766044

Date: 2025-09-16 09:44:20
Score: 1
Natty:
Report link

The easiest way to fix it is to create a styled.d.ts file in the root of the project and paste this code:

import theme from '@/constants/theme'; // Your path
import 'styled-components';

declare module 'styled-components' {
  type MyTheme = typeof theme;

  interface DefaultTheme extends MyTheme {}
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Er Bakhshyan

79766042

Date: 2025-09-16 09:34:54
Score: 10.5 🚩
Natty: 5
Report link

Did you ever find a solution to this? I am having the same issue

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: user42859607

79766036

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

1.If the processID is different,kill one of the processes。

2.If the processID is the same,check the tomcat workspace---webapps&ROOT。

Normally we put the jenkins.war into the webapps then will exist a file folder

named jenkins after tomcat started successfully.if you put * of the jenkins folder

into ROOT folder,then you can visit jenkins by http://ip:port/ or

http://ip:prot/jenkins.And also you will hit the problem like this。

My way is delete the ROOT folder。IF you want visit the jenkins by

http://ip:port without the postfix,you can edit the /conf/server.xml and

add Context parameter.Good luck!

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

79766013

Date: 2025-09-16 09:12:44
Score: 2.5
Natty:
Report link

Very probably you have too many lags in your VAR model. If you lower number of lags, it should help you. In the beginning you should find out optimal number of lags. In R you can do it by selectVAR function for your data and the optimal number of lags (usually it is AIC) paste to p parameter in VAR function. This kind of thing happens especially when you have low number of observations or too big number of lags.

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

79766012

Date: 2025-09-16 09:12:44
Score: 3
Natty:
Report link

<?xml version="1.0"?>

<Animations target="all" framePerSecond="15" showAllFrame="true" loop="true"/>

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Денис Гаина

79765998

Date: 2025-09-16 09:01:41
Score: 1.5
Natty:
Report link

i had this problem. and find that: you have to check this git https://github.com/JetBrains/JetBrainsRuntime

and find out what is the compitable version of JBR with JCEF with your IDE version

press double "SHIFT" to show search

select "ACTION" tab

search "choose boot java run time ..."

select compitable JBR version

wait to download

restart ide

TADAAAA your welcome

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

79765987

Date: 2025-09-16 08:47:37
Score: 1
Natty:
Report link
  1. Use the supported SDKs as per: https://learn.microsoft.com/en-us/azure/cosmos-db/hierarchical-partition-keys?tabs=net-v3%2Carm-json#limitations-and-known-issues

  2. Use this format, for a Cosmos DB SQL database with a container using the below Terraform code, the plural-version of partition-key-paths:

     partition_key_paths   = ["/parent", "/child"]
     partition_key_kind    = "MultiHash"
     partition_key_version = 2
    
  3. Once created, use https://cosmos.azure.com/ portal click on your container, Settings to view your new hierarchical setup:
    enter image description here

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

79765962

Date: 2025-09-16 08:31:33
Score: 3
Natty:
Report link

You can try DBot API / WS. It gives fast token price data (Uniswap, SushiSwap, etc.) with low cost, quick response, and free monthly quota.

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

79765961

Date: 2025-09-16 08:31:33
Score: 0.5
Natty:
Report link

It works for me from .NET 8 to .NET Framework 4.5.2, only by modifying to <TargetFramework>net8.0</TargetFramework><TargetFramework>net452</TargetFramework>. (Not TargetFrameworkVersion!)

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Surmount

79765959

Date: 2025-09-16 08:30:32
Score: 1.5
Natty:
Report link

You are using the wrong image name. It should be rancher/k3s:v1.20.11-k3s2 instead of rancher/k3s:v1.20.11+k3s2.

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

79765957

Date: 2025-09-16 08:29:32
Score: 1.5
Natty:
Report link

Delete the corresponding key from /etc/sysctl.conf or a file in /etc/sysctl.d/

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

79765955

Date: 2025-09-16 08:27:31
Score: 2.5
Natty:
Report link

Please check table definition and size of column , In my case it was tinyint(2) and hence the error.

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

79765942

Date: 2025-09-16 08:14:28
Score: 3
Natty:
Report link

Interesting question! Keeping the user experience clean is key — I faced something similar while testing features for Pak Game. We found it's better to avoid showing locked features in the free version, as it keeps users more engaged and reduces confusion. A clean UI really does make a difference

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

79765933

Date: 2025-09-16 08:11:27
Score: 3
Natty:
Report link

Since July 2025 WhatsApp Cloud API supports both inbound and outbound voice calls:

Cloud API Calling

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

79765930

Date: 2025-09-16 08:08:25
Score: 10 🚩
Natty: 5
Report link

I have the same problem that after 30s my OTP no longer work. How can I keep getting the updated OTP in google authenticator instead of rescan QR Code adding another account for new OTP? What can I do with the txtOTP.Text.Trim()?

My problem: Here

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): can I do
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): What can I do
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Matthew

79765924

Date: 2025-09-16 08:04:23
Score: 1.5
Natty:
Report link
getItemInputValue({ item }) {
    return item.name;
}

The getItemInputValue function returns the value of the item. It lets you fill the search box with a new value whenever users select an item, allowing them to refine their query and retrieve more relevant results.

https://www.algolia.com/doc/ui-libraries/autocomplete/core-concepts/sources/#param-getiteminputvalue

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

79765919

Date: 2025-09-16 08:04:23
Score: 0.5
Natty:
Report link

Try subprocess.Popen():

import subprocess

p = subprocess.Popen('ping 10.1.0.1')

p.wait()

print (p.poll())
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Bending Rodriguez

79765918

Date: 2025-09-16 08:04:23
Score: 2.5
Natty:
Report link

Since this post was posted 8 years ago and if you guys can't even fix this, the only thing you can do is click the text box area at the top of the vscode(or just use CTRL+SHIFT+P) and type : " >Developer: Reload Window " , or you can select it once the dropdown appears.

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

79765916

Date: 2025-09-16 07:53:57
Score: 5.5
Natty: 6
Report link

@jmoerdyk and Toby Speight, nice to prevent me to add a comment to your comments, so I cannot justify why I put an ANSWER instead of a COMMENT.

It's just because the maximum COMMENT size is too short to contain my post, that's why I wrote an ANSWER instead...

And Thank you is a form of politeness in my country. Maybe you prefer Regards ?

:-)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (0.5): I cannot
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @jmoerdyk
  • Low reputation (1):
Posted by: Luuke

79765915

Date: 2025-09-16 07:52:57
Score: 3
Natty:
Report link

check out DBot API WS, real-time decoded DEX swaps + pool/pair prices, super fast, low cost, and comes with free monthly quota.

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

79765898

Date: 2025-09-16 07:36:52
Score: 1.5
Natty:
Report link

Same for me. This helps:

    1. Quit Xcode.

    2. Go to ~/Library/Developer/Xcode/UserData/Provisioning Profiles and delete all your profiles.

    3. Relaunch Xcode.

    4. Try again.

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

79765879

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

Thanks to everyone. Your answers were really helpful

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: pityamskoy

79765878

Date: 2025-09-16 07:17:48
Score: 2
Natty:
Report link

The HTTP ERROR 400 Invalid SNI issue you encountered is because NiFi's HTTPS certificate does not match the IP/domain name you use when accessing. NiFi will strictly verify the SAN (Subject Alternative Name) in the certificate by default. If there is no corresponding IP or domain name in the certificate, the connection will be rejected

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

79765876

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

After reading @DazWilkin's replies, I ended up realizing that what I'm trying to do is really not a good solution. So after a bit more tinkering I finally got Signed URLs to work on my backend by using a service account and creating a service account key, which can then be used to create signed URLs on the backend.

//using expressjs

const {Storage} = require('@google-cloud/storage');
const storage = new Storage({
  projectId:"your-project",
  keyFilename:"./key-location.json"
});   

router.post("/returnSignedUrl", async (req, res) => {
    console.log('/returnSignedUrl', req.body)

    let a = req.body.data

    const options = {
      version: 'v4',
      action: 'read',
      expires: Date.now() + 15 * 60 * 1000 // 15 minutes
    };

    // Get a v4 signed URL for reading the file
    const [url] = await storage
      .bucket(a.bucket)
      .file(a.filename)
      .getSignedUrl(options).catch((err)=> console.log(err));

      console.log(url)
    res.send(url)
});

Anyway, it works now. If anyone else wants to figure out how to answer my original question, the API response is a valid UTF8 based on this package. I just never figured out how to properly convert that into a blob or something downloadable.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @DazWilkin's
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Art T.

79765868

Date: 2025-09-16 07:06:45
Score: 3.5
Natty:
Report link

I encountered the same issue and consulted ChatGPT.
According to the response, the changelog dated July 12 refers to the limitation of five repositories.

https://github.blog/changelog/2025-06-11-gain-more-control-and-clarity-with-scheduled-reminders-for-pull-requests/?utm_source=chatgpt.com

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

79765857

Date: 2025-09-16 06:53:41
Score: 2
Natty:
Report link

Delete the .xcode.env.local file once, then run pod install, and after that run the project again.

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

79765849

Date: 2025-09-16 06:41:15
Score: 6.5 🚩
Natty: 5.5
Report link

Yeah, Command-Shift-L does the trick. Just like before, right?

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

79765847

Date: 2025-09-16 06:37:14
Score: 3.5
Natty:
Report link

However, in all my tests, the import statement for MoreObjects is not being added. Can anyone explain why?

I was running into something similar tonight. I would say try using the fully qualified name in the JavaTemplate, so that maybeAddImport() detects the usage correctly. That worked me!

JavaTemplate template = JavaTemplate.builder("com.google.common.base.MoreObjects.toStringHelper(#{any()})")
.build();
Reasons:
  • Blacklisted phrase (0.5): why?
  • RegEx Blacklisted phrase (2.5): Can anyone explain
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: NaanProphet

79765844

Date: 2025-09-16 06:34:13
Score: 2.5
Natty:
Report link

the same issue,run on real iphone device
0xe800801a (This provisioning profile does not have a valid signature (or it has a valid, but untrusted signature).)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: 张洪兴