79732982

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

It doesn't work on:

+1

Sonoma 14.5 M3 Pro

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

79732981

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

all these steps, diddnt work for me, i have a solution without repair or reinstall.

Go to -> Services and restart "VMAuthdService" on your host.

And if you need a desktop Shortcut, use my BAT script:

@echo off
REM Batch-Datei zum Neustarten des VMware Authd Service

REM Muss mit Administratorrechten ausgeführt werden

echo Stoppe Dienst...

net stop VMAuthdService

echo Starte Dienst neu...

net start VMAuthdService

echo Fertig.

pause

IMPORTANT: Make your Bat file on your Hardisk where you want and create a shortcut on your desktop.
You need admin privilegs on your shortcut. You can set it, by right click on your shortcut, advanced settings -> run as Admin

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @echo
  • Low reputation (1):
Posted by: Chuck J

79732971

Date: 2025-08-12 09:49:42
Score: 1.5
Natty:
Report link

You should test with realistic data before adding indexes in production.

1. Create only the necessary indexes for JOB A’s queries.
2. Benchmark JOB B’s performance in staging with those indexes to see the actual overhead.
3. If JOB B’s bulk writes slow down too much, consider:

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

79732961

Date: 2025-08-12 09:43:40
Score: 1
Natty:
Report link

Seeing as no one is able to answer this and I can't find the code to do it anywhere it looks like it's possible to apply/modify incremental policies using tabular editor if anyone gets stuck in this scenario. enter image description here

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

79732954

Date: 2025-08-12 09:39:40
Score: 2
Natty:
Report link

If you have tried to install pyspark through both pip and anaconda then you might face this problem

Try creating a new conda environment and dont use pip this time to install pyspark just install pyspark throught conda.

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

79732952

Date: 2025-08-12 09:38:39
Score: 3.5
Natty:
Report link

Delete the cache of your NetBeans version if you have fake duplicate class error

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

79732951

Date: 2025-08-12 09:37:39
Score: 1
Natty:
Report link

I found this Post since I had the Need to Mock a DbSet<X>:

https://sinairv.github.io/blog/2015/10/04/mock-entity-framework-dbset-with-nsubstitute/

Basicaly to Mock a DbSet Using Substitute you can do the following

IQueryable<X> samples = new List<X>{...}.AsQueryable();

DbSet<X> DbSetMock = Substitute.For<DbSet<X>, IQueryable<X>>();
((IQueryable<X>)mockSet).Provider.Returns(samples.Provider);
((IQueryable<X>)mockSet).Expression.Returns(samples.Expression);
((IQueryable<X>)mockSet).ElementType.Returns(samples.ElementType);
((IQueryable<X>)mockSet).GetEnumerator().Returns(samples.GetEnumerator());

IDbContext databaseMock = Substitute.For<IDbContext>();
databaseMock.X = mockSet;
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Robert

79732943

Date: 2025-08-12 09:33:38
Score: 1
Natty:
Report link

Just to exemplify Yut176's answer

filePermissions {
    user {
        read = true
        execute = true
    }
    other.execute = false
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hugo Landim

79732939

Date: 2025-08-12 09:27:36
Score: 0.5
Natty:
Report link

FastAPI != FastHTML (idiomatic), even if both are based on Starlette and built on similar arch vision.

Go for idiomatic OAuth with FastHTML: https://github.com/AnswerDotAI/fasthtml-example/tree/main/oauth_example, read the doc https://www.fastht.ml/docs/explains/oauth.html

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Luca G. Soave

79732938

Date: 2025-08-12 09:25:35
Score: 6.5
Natty: 7.5
Report link

Can we delete the app-insights attached with apim using azure cli?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can we
  • Low reputation (1):
Posted by: Manisha Poonia

79732932

Date: 2025-08-12 09:19:33
Score: 1
Natty:
Report link

Had the same problem in debug mode on emulator.
Spent a day looking for a solution.

When I installed app-release.apk, everything worked.

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

79732922

Date: 2025-08-12 09:10:31
Score: 1.5
Natty:
Report link

I know I'm late to this but the below should work:

SELECT table_name, column_name 
FROM information_schema.columns 
WHERE column_name LIKE '%column_name%';
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: tnasirov

79732911

Date: 2025-08-12 09:00:28
Score: 0.5
Natty:
Report link

This has been fixed in the beamer development version: https://github.com/josephwright/beamer/commit/0590aca2f8a175904994dc0693ae42aed1feca11


Until a new beamer version is released, Latex users can temporarily add the file https://raw.githubusercontent.com/josephwright/beamer/0590aca2f8a175904994dc0693ae42aed1feca11/base/beamerbaseoverlay.sty to the same folder as their .tex file.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-2):
Posted by: samcarter_is_at_topanswers.xyz

79732909

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

I do not think Android WebView supports this. Even if it does uBlock origin does not work well or at all in Chrome. To be future proof I'd stay away from it.

The only option that I see is to use GeckoView and here is the guide to add a plugin to it: https://firefox-source-docs.mozilla.org/mobile/android/geckoview/consumer/web-extensions.html

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

79732908

Date: 2025-08-12 08:58:27
Score: 1
Natty:
Report link

If extraction is what you want, you don't need to explicitly use RecursiveParserWrapper if you use AutodetectParser. Autodetect parser does it automatically for you. It sets RecursiveParserWrapper and by default sets ParsingEmbeddedDocumentExtractor as EmbeddedDocumentExteractor by default.

This extractor delegates parsing to the same instance of AutodetectParser. That is the embedded images also get parsed by the same AutodetectParser you passed the parent documents to. This parser will perform ocr extraction if any parser is in the registry supports ocr media types (eg: image/ocr-png, image/ocr-jpeg).

TesseractOCRParser will only register itself with ocr support types if tesseract is present in the host machine or the parser is ignored as it returns an empty set for supported types

related answer

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

79732902

Date: 2025-08-12 08:50:26
Score: 1
Natty:
Report link

try to add follow to the HttpSecurity configuring:

            http
                .authorizeHttpRequests(auth -> auth
                         .csrf(csrf -> csrf.disable())
                       //...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: vitaliiH

79732901

Date: 2025-08-12 08:49:26
Score: 3
Natty:
Report link

I think you could set up a simple proxy server that forwards requests to the ADK API server and adds the necessary CORS headers (I'm not 100% sure if this would work)

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

79732898

Date: 2025-08-12 08:47:25
Score: 0.5
Natty:
Report link

AWS KMS (Key Management Service) and AWS CloudHSM both use Hardware Security Modules (HSMs) for cryptographic operations, but the control model, compliance level, and operational responsibilities are very different.

1. Control & Key Ownership

2. Compliance & Isolation

3. Use Cases

4. Cost & Management

In short:

KMS = AWS-managed convenience & integration.
CloudHSM = full control & compliance-grade isolation.

For a deeper, scenario-based breakdown (including when organizations switch from KMS to CloudHSM), see:
Cloud HSM vs KMS – Strategic Guide

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

79732895

Date: 2025-08-12 08:45:24
Score: 2
Natty:
Report link

The short answer to this is not possible now, Please migrate the application to .NET Maui, and Microsoft provides tools to migrate the applications easily, Please refer the Microsoft Document.

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

79732890

Date: 2025-08-12 08:43:23
Score: 8
Natty:
Report link

hey did you get the solution i am stuck too

Reasons:
  • RegEx Blacklisted phrase (1.5): i am stuck
  • RegEx Blacklisted phrase (3): did you get the solution
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ayush Poddar

79732889

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

Any answer worked for me, the simplest way to me is to connect to the jmx queue with mbean and retrieve java MBean, you can help with jconsole tool to find which method to execute.

public String getQueueSize() {
    try {
        String jmxUrl = "service:jmx:rmi://host:port/jndi/rmi://host:port/jmxrmi";
        JMXServiceURL url = new JMXServiceURL(jmxUrl);
        Map<String, Object> params = new HashMap<>();
        String[] credentials = {"user","password"
        };
        params.put(JMXConnector.CREDENTIALS, credentials);

        try (JMXConnector connector = JMXConnectorFactory.connect(url, params)) {
            MBeanServerConnection connection = connector.getMBeanServerConnection();
  
            // Use correct MBean for WSO2 Andes : see jconsole
            ObjectName queueMBean = new ObjectName("org.wso2.andes:name=QueueManagementInformation,type=QueueManagementInformation");

            // queue name is key and value is size in the object : see jconsole
            String queueName = env.getProperty("REQUEST_QUEUE");
            CompositeData allCounts = (CompositeData) connection.getAttribute(queueMBean, "MessageCountOfQueuesAsCompositeData");

            return allCounts.get(queueName).toString();
        }
    } catch (Exception e) {
        LOGGER.error("cannot connect to jms", e);
    }
    return "error";
}

The example is show with wso2 but works in another cases.

As a result you should manage all queue if you have multiple by adding name in method parameter !

Regards.

Reasons:
  • Blacklisted phrase (1): Regards
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (3): you can help
  • Long answer (-1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Zhar

79732882

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

dvc exp show has --hide-workspace option to support this. Documentation can be found here.

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

79732873

Date: 2025-08-12 08:32:20
Score: 3
Natty:
Report link

For me at the bottom status-bar VS Code was indicating the wrong python version. Clicked on it and changed it. Now it works well again.

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

79732866

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

In case of JS we need to use the below code on ribbon button to show and hide based on access rights:

function canCurrentUserWrite(primaryControl) {
    if (!primaryControl) return false;
 
    var privileges = primaryControl.data.entity._privileges;
 
    if (privileges && typeof privileges.canUpdate !== "undefined") {
        return privileges.canUpdate;
    }
 
    return false;
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Sriramakrishna

79732862

Date: 2025-08-12 08:16:17
Score: 2
Natty:
Report link

=(ROUND(A2;2))+(ROUND(C2;2))+(ROUND(D2;2))&"€"

This is how I could made it ,I tried with Round and Sum in the ways above but only with the + sign and rounding separately the cells helped me.

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

79732856

Date: 2025-08-12 08:10:14
Score: 2
Natty:
Report link
chmod -R guo+w storage && php artisan cache:clear
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: ankit singh

79732855

Date: 2025-08-12 08:10:14
Score: 0.5
Natty:
Report link

I took inspiration from the shell script shared by @adrock20 and i implemented it in java

import javaioBufferedInputStream;
import javaioFileInputStream;
import java.io.FileOutputStream;
import java.net.URL;
import java.security.KeyStore;
import java.security.PrivateKey;
import java.security.cert.CertificateFactory;
import java.security.certX509Certificate;
import java.util.Enumeration;
import javax.net.ssl.KeyManagerFactory;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
import org.bouncycastle.asn1.DERIA5String;
import org.bouncycastle.asn1.DERTaggedObject;
import org.bouncycastle.asn1.x509.AccessDescription;
import org.bouncycastle.asn1.x509.AuthorityInformationAccess;
import org.bouncycastle.asn1.x509.Extension;
import org.bouncycastle.asn1.x509.GeneralName;
import org.bouncycastle.asn1.x509.X509ObjectIdentifiers;
import org.bouncycastle.cert.jcajce.JcaX509ExtensionUtils;

public class CertificateUtil {

  public static void convertPfxToFullChainJks(String pfxPath, String password, String jksPath) {
    String alias = getX509CertificateAliasFromPfxFile(pfxPath, password);
    X509Certificate certificate = getX509CertificateFromPfxFile(pfxPath, password);
    PrivateKey privateKey = getPrivateKeyFromPfxFile(pfxPath, password);
    String intermediateCertificateUrl = getAuthorityCertificateUrl(certificate);
    X509Certificate intermediateCertificate = downloadCertificateFromUrl(intermediateCertificateUrl);
    String rootCertificateUrl = getAuthorityCertificateUrl(intermediateCertificate);
    X509Certificate rootCertificate = downloadCertificateFromUrl(rootCertificateUrl);
    createFullChainJks(jksPath, alias, password, certificate, privateKey, intermediateCertificate, rootCertificate);
  }

  private static void createFullChainJks(String jksPath, String alias, String password, X509Certificate certificate, PrivateKey privateKey,
      X509Certificate intermediateCertificate,
      X509Certificate rootCertificate) throws Exception {
    try {
      try (FileOutputStream fos = new FileOutputStream(jksPath)) {
        KeyStore ks = ("JKS");
        (null, ());
        X509Certificate[] certificateChain = new X509Certificate[]{certificate, intermediateCertificate, rootCertificate};
        (alias, privateKey, (), certificateChain);
        (fos, ());
      }
    } catch (Exception e) {
      throw new Exception("Failed to create full chain jks", e);
    }
  }

  private static String getX509CertificateAliasFromPfxFile(String pfxPath, String password) throws Exception {
    try {
      KeyManagerFactory kmf = ("SunX509");
      KeyStore keystore = ("PKCS12");
      (new FileInputStream(pfxPath), ());
      (keystore, ());
      Enumeration<String> aliases = ();
      while (aliases.hasMoreElements()) {
        String alias = ();
        if ("X.509".equals((alias).getType())) {
          return alias;
        }
      }
    } catch (Exception e) {
      throw new Exception("Failed to retrieve X509 certificate alias from PFX file", e);
    }
    throw new Exception("No valid X509 certificate alias found in the PFX file");
  }

  private static X509Certificate getX509CertificateFromPfxFile(String pfxPath, String password) throws Exception {
    try {
      KeyManagerFactory kmf = ("SunX509");
      KeyStore keystore = ("PKCS12");
      (new FileInputStream(pfxPath), ());
      (keystore, ());
      Enumeration<String> aliases = ();
      while (aliases.hasMoreElements()) {
        String alias = ();
        if ("X.509".equals((alias).getType())) {
          return (X509Certificate) (alias);
        }
      }
    } catch (Exception e) {
      throw new Exception("Failed to retrieve X509 certificate from PFX file", e);
    }
    throw new Exception("No valid X509 certificate found in the PFX file");
  }

  private static PrivateKey getPrivateKeyFromPfxFile(String pfxPath, String password) throws Exception {
    try {
      KeyManagerFactory kmf = ("SunX509");
      KeyStore keystore = ("PKCS12");
      (new FileInputStream(pfxPath), ());
      (keystore, ());
      Enumeration<String> aliases = ();
      while (aliases.hasMoreElements()) {
        String alias = ();
        if ("X.509".equals((alias).getType())) {
           privateKeyEntry = () (alias,
              new (()));
          return ();
        }
      }
    } catch (Exception e) {
      throw new Exception("Failed to retrieve private key from PFX file", e);
    }
    throw new Exception("No valid private key found in the PFX file");
  }

  private static X509Certificate downloadCertificateFromUrl(String certificateUrlString) throws Exception {
    try {
      URL certificateUrl = new URL(certificateUrlString);
      String filename = ().split("/")[2];
      String filePath = "target/" + filename;
      try (BufferedInputStream in = new BufferedInputStream(certificateUrl.openStream());
          FileOutputStream fileOutputStream = new FileOutputStream(filePath)) {
        byte[] dataBuffer = new byte[1024];
        int bytesRead;
        while ((bytesRead = (dataBuffer, 0, 1024)) != -1) {
          (dataBuffer, 0, bytesRead);
        }
      }
      try (FileInputStream inStream = new FileInputStream(filePath)) {
        CertificateFactory cf = ("X.509");
        return (X509Certificate) (inStream);
      }
    } catch (Exception e) {
      throw new Exception("Failed to download certificate from URL", e);
    }
  }

  private static String getAuthorityCertificateUrl(X509Certificate certificate) throws Exception {
    try {
      byte[] extVal = (());
      if (extVal == null) {
        throw new Exception("Certificate does not contain Authority Information Access extension");
      }
      AuthorityInformationAccess aia = ((extVal));
      AccessDescription[] descriptions = ();
      for (AccessDescription accessDescription : descriptions) {
        final ASN1ObjectIdentifier accessMethod = ;
        final boolean correctAccessMethod = ().equals(accessMethod);
        if (!correctAccessMethod) {
          continue;
        }
        final GeneralName gn = ();
        if (gn.getTagNo() != GeneralName.uniformResourceIdentifier) {
          continue;
        }
        final DERIA5String str = (DERIA5String) ((DERTaggedObject) gn.toASN1Primitive()).getBaseObject();
        final String accessLocation = ();
        if (accessLocation.startsWith("http")) {
          return accessLocation;
        }
      }
    } catch (Exception e) {
      throw new Exception("Failed to get authority certificate URL", e);
    }
    throw new Exception("No valid authority certificate URL found in the certificate");
  }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @adrock20
  • Low reputation (1):
Posted by: Diego Pansica

79732854

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

There is very important subtle difference between you alt_subn and Nat.sub: the line N0 => N0 is N0 => a which gives the same result but makes the termination checking work. I though this was explained in the book but I don't remember precisely.

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

79732833

Date: 2025-08-12 07:45:09
Score: 3.5
Natty:
Report link
=RIGHT(A2,LEN(A2)-SEARCH(",",A2)-1)
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sahil munjal

79732816

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

I am afraid that you cannot do it.

Let's dig around the docs a little:

In this document, we can see metadata policies. Especially:

In both of these sites, there is written explicitly, that they are both readonly properties

So shortly, there's no way to update them.

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Michał Turczyn

79732796

Date: 2025-08-12 07:02:59
Score: 4
Natty: 4.5
Report link

NextJs v15 + AuthJs v5 + Next-intl v4 + middleware + typescript

https://gist.github.com/pangeaos/39b1d95a5131a3849d55fb75d6faf98d

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

79732778

Date: 2025-08-12 06:35:52
Score: 4.5
Natty:
Report link

something like this, and it is a kind of hierarchical table nested in tbl_summary.

enter image description here

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

79732759

Date: 2025-08-12 06:16:48
Score: 1.5
Natty:
Report link

rvm gemset empty GEMSET

This command will help you

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

79732757

Date: 2025-08-12 06:08:47
Score: 2
Natty:
Report link

The API only retrieves content that is stored in the database. If your page includes dynamic data added via the admin panel, it will be included in the API response. However, if the template contains static content written directly in the page template using HTML tags (i.e., not stored in the database), that content will not be rendered in the API response.

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

79732751

Date: 2025-08-12 05:56:44
Score: 4
Natty: 7
Report link

Can you try remove on your home path .vscode-server folder ?

Reasons:
  • Whitelisted phrase (-2): Can you try
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Birkan Herdinç

79732736

Date: 2025-08-12 05:41:40
Score: 1.5
Natty:
Report link

Had the same issue. I was trying to add my public ssh key to the git repo itself, but I still wasn't allow to push.

Once I added the key to the account itself, everything worked just fine.

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

79732735

Date: 2025-08-12 05:40:40
Score: 1
Natty:
Report link

Use unzip for extracting jar

# jar xf medusa-java-jar-with-dependencies.jar 
unzip medusa-java-jar-with-dependencies.jar 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Heedo Lee

79732734

Date: 2025-08-12 05:38:39
Score: 0.5
Natty:
Report link

My Alienware x14 1st Gen has returned from its maintenance contract. The mainboard (inc NVIDIA GPU and heatsink) was replaced.

Windows 11 was also reinstalled, and everything under Program Files was deleted. It was a struggle to restore the environment, but all the problems were resolved.

>emulator-check accel
accel:
0
WHPX(10.0.26100) is installed and usable.
accel

>systeminfo
Virtualization-based security: Status: Running
                               Required Security Properties:
                               Available Security Properties:
                                     Base Virtualization Support
                                     DMA Protection
                                     UEFI Code Readonly
                                     Mode Based Execution Control
                                     APIC Virtualization
                               Services Configured:
                                     Hypervisor enforced Code Integrity
                               Services Running:
                                     Hypervisor enforced Code Integrity
                               App Control for Business policy: Enforced
                               App Control for Business user mode policy: Audit
                               Security Features Enabled:
Hyper-V Requirements:          A hypervisor has been detected. Features required for Hyper-V will not be displayed.

Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Ohgochi

79732727

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

Try this -->
wp-content/themes/Awake/learndash/ld30/shortcodes/ld_course_list.php

Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Sunder Kandel

79732717

Date: 2025-08-12 05:04:31
Score: 1.5
Natty:
Report link

just add a removeClippedSubviews={false} to the flatlist component solved the issue ,removeClippedSubviews={false} basically tells React Native “don’t aggressively detach off-screen child views”, so the native ViewGroup child count stays consistent with what JS thinks it has.

The trade-off is slightly higher memory usage because those off-screen items stay mounted instead of being recycled, but it’s a perfectly fine fix if the list isn’t huge.

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

79732714

Date: 2025-08-12 05:00:30
Score: 0.5
Natty:
Report link

Found it:

Private Sub CommandSearch_Click()
    
    'use DAO when working with Access, use ADO in other cases
    Dim db As DAO.Database
    Dim rs As DAO.Recordset
    Dim sql As String
        
    'eerst een check of het zoekveld niet leeg is
    If Nz(Me.txtSearch.Value, "") = "" Then
        MsgBox "Geef een bestelbon in !!", vbExclamation
        Debug.Print "Geef een bestelbon in !!"
        Exit Sub
    Else


    ' Define your SQL query
    sql = "SELECT [Transporteur], [Productnaam], [Tank] FROM [Planning] WHERE [Bestelbon] = " & Me.txtSearch & ""

    ' Set database and recordset
    Set db = CurrentDb
    Set rs = db.OpenRecordset(sql)

    Me.txtResult.Value = rs!Transporteur
    Me.txtProduct.Value = rs!Productnaam
    Me.txtTank.Value = rs!Tank
    
    ' Clean up
    rs.Close
    
    End If
    
    Set rs = Nothing
    Set db = Nothing
    
End Sub
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Don Quixote

79732711

Date: 2025-08-12 04:58:29
Score: 3.5
Natty:
Report link

You can cross check the token at JWT (https://www.jwt.io/), the oAuth token should be valid.
For example.

enter image description here

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

79732708

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

Got the solution from someone! I had to add a runtimeconfig.template.json to the C++/CLI project with this property set:

{
  "configProperties": {
    "System.Runtime.InteropServices.CppCLI.LoadComponentInIsolatedContext": true
  }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Chrono Vortex

79732695

Date: 2025-08-12 04:24:22
Score: 2
Natty:
Report link

I had the same issue. the fix is to make the characterbody2D your root node in the character scene.

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

79732691

Date: 2025-08-12 04:19:21
Score: 11.5
Natty: 5.5
Report link

Have you solved the issue ?

I am also facing the same issue .

If you solved the issue then could you please share how to solve this.

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (2.5): could you please share how
  • RegEx Blacklisted phrase (1.5): solved the issue ?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ratikanta Mishra

79732690

Date: 2025-08-12 04:15:19
Score: 2
Natty:
Report link

As this is an intermittent issue and you cancelled (as per the status), One of the reasons could be resource exhaustion. Probably your Integration runtime is maxed out of resources due to other concurrent jobs by your colleagues.

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

79732680

Date: 2025-08-12 03:57:16
Score: 2
Natty:
Report link

Turns out I misunderstood what was happening. Postgres doesn't seem to be defaulting to use or not use the provided credentials if trust isn't allow. It just either allows or rejects the connection with indifference to the credentials. It seems I have to edit pg_hba.conf.

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

79732677

Date: 2025-08-12 03:52:14
Score: 3.5
Natty:
Report link

The internal header for Boxa is leptonica/pix_internal.h

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

79732674

Date: 2025-08-12 03:43:12
Score: 0.5
Natty:
Report link

If you already had drizzle-orm installed, pnpm exec drizzle-kit push should suffice. This would allow pnpm to refer to the already-installed drizzle-orm and succeed in running.

There is an ongoing discussion regarding this issue on the drizzle-orm repo as well: https://github.com/drizzle-team/drizzle-orm/issues/2699.

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

79732671

Date: 2025-08-12 03:36:11
Score: 1
Natty:
Report link
$('#myCheckbox').on('click', function() {
  if ($(this).prop('checked')) {
    console.log('Checkbox is checked.');
  } else {
    console.log('Checkbox is unchecked.');
  }
});
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bang Andre

79732670

Date: 2025-08-12 03:30:09
Score: 4.5
Natty: 4.5
Report link

Check this out - This might be helpful
https://community.squaredup.com/t/show-azure-devops-multi-stage-pipeline-status-on-a-dashboard/2442

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

79732662

Date: 2025-08-12 03:06:04
Score: 0.5
Natty:
Report link

I've solved this by using the ObjectsApi to generate a signed URL and removing the authorisation header from the request.

        ObjectsApi objectsApi = new ObjectsApi(new ClientCredentials(_clientId, _clientSecret));

        var resource = await _ossClient.CreateSignedResourceAsync(bucketKey,
            resultKey,
            new CreateSignedResource(),
            Access.ReadWrite,
            true, accessToken: token.AccessToken);
        
        var outputFileArgument = new XrefTreeArgument()
        {
            Url = resource.SignedUrl,
            Verb = Verb.Put
        };
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: maciejwypych

79732655

Date: 2025-08-12 02:49:00
Score: 0.5
Natty:
Report link

This is really just what I ended up doing after testing the answer from Andy Jazz. I've left his answer as the correct answer, but this function does what I needed without the additional need to receive a tap. In my scenario, the distance needs to be computed whether it's a tap, or a thumbstick movement on a Game Controller; I need to know if the player can move in the direction it is facing. This function works well.

    /// Returns the distance to the closest node from `position` in the direction specified by `direction`.  Its worth noting that the distance is
    /// computed along a line parallel with the world floor, 25% of a wall height from the floor.
    /// - Parameters:
    ///   - direction: A vector used to determine the direction being tested.
    ///   - position: The position from which the test if being done.
    /// - Returns: A distance in world coordinates from `position` to the closest node, or `.zero` if there is nothing at all.
    func distanceOfMovement(inDirection direction: SIMD3<Float>, fromPosition position: SIMD3<Float>) -> Float {
        // Set the x slightly off center so that in some scenarios (like there is an ajar doorway) the door is
        // detected instead of the wall on the far side of the next chamber beyond the door.  The Y adjustment
        // is to allow for furniture that we dont want the player to walk into.
        //
        let adjustedPosition = position + SIMD3<Float>(0.1,  ModelConstants.wallHeight * -0.25,  0.0)

        if let scene = self.scene {
            let castHits: [CollisionCastHit] = scene.raycast(
                origin: adjustedPosition,
                direction: direction,
                query: .nearest)
            
            if let hit = castHits.first {
                return hit.distance
            }
        }
        
        return .zero
    }

The primary downside of this mechanism is that, unlike SceneKit, if I want this function to work, I have to add a CollisionComponent to each and every wall or furniture item in the model. I'm left wondering about the potential performance impact of that, and also the need to construct sometimes complex CollisionComponents (doorways for example) where in SceneKit, this was all done behind the scenes somehow.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: PKCLsoft

79732654

Date: 2025-08-12 02:42:59
Score: 0.5
Natty:
Report link

                                            <div class="fileName">Name v.1.2.2b.apk</div>
                                            <div class="fileType">
                                                <span>Archive</span>
                                                <span> (.APK)
                                                    <span>
                                                    </div>
                                                </div>
                                                <ul class="dlInfo-Details">
                                                    <li>File size: 
                                                        <span>13.37 MB</span>
                                                    </li>
                                                    <li>Uploaded: 
                                                        <span>2017-03-19 16:59:52</span>
                                                    </li>
                                                    <li>Uploaded From: 
                                                        <span></span>
                                                    </li>
                                                </ul>

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Vaishali Pal

79732640

Date: 2025-08-12 02:12:53
Score: 3
Natty:
Report link

Apparently, in some cases, there is a problem with the IPv6 direction of rubygems.org. Just disable the IPv6 for your network and retry.

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

79732636

Date: 2025-08-12 01:57:49
Score: 2
Natty:
Report link

I had similar request, to run my application created by Delphi on my RPi. And I had requested this one to EMBT in 2020. The ARM 64 Linux was not listed in Roadmap 2020, I hope that we can have the Linux Arm 64 in next couple versions.

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

79732620

Date: 2025-08-12 01:11:40
Score: 3
Natty:
Report link

Download the HP Connectivity Kit app and also plug in the calculator. Edit the program VIA the app, by pasting in the working code to the program, accessed via the sidebar.

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

79732595

Date: 2025-08-12 00:18:29
Score: 4
Natty:
Report link

after digging on django tickets, it's still work in progress

https://code.djangoproject.com/ticket/36036

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

79732591

Date: 2025-08-12 00:06:26
Score: 5
Natty:
Report link

Maybe its because youre a faggot nigger who has to use hacks to win in bronze fusion world. You should just kill yourself already you fucking cocksucking faggot nigger.

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Annihilus 222

79732586

Date: 2025-08-11 23:54:23
Score: 4
Natty: 4.5
Report link

https://github.com/microsoft/vscode/issues/185999

checkout this issue, someone asked same question

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

79732577

Date: 2025-08-11 23:32:17
Score: 1.5
Natty:
Report link

This issue usually happens because BricsCAD’s LISP environment is not 100% identical to AutoCAD’s, and a .FAS file compiled for AutoCAD may contain functions or calls that BricsCAD doesn’t support. Even if the logic is the same, the compiled FAS can be platform-specific. To fix this, try compiling the LISP separately for BricsCAD using its own vlisp or compile tools, or load the original .LSP file in BricsCAD to confirm it works before compiling. Also make sure the file path is trusted in Settings → Program Options → Files → Trusted Locations, as BricsCAD blocks untrusted FAS files by default.

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

79732575

Date: 2025-08-11 23:28:16
Score: 1.5
Natty:
Report link

In my case, I had to make a build in order for VS to recognize a new path, so npx expo start fixed it.

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

79732553

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

<!-- The JavaScript will replace the content between this span.

Add place holder number if they are stable in number. -->30

<span id="fb-likes-count"></spa

n>https://www.facebook.com/share/r/1DEFGcsCSt/

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

79732549

Date: 2025-08-11 22:34:06
Score: 1.5
Natty:
Report link
{
string $selObj[] = `ls -selection`;
    for($sel in $selObj){
        if (`getAttr ($sel+".visibility")`){
            setAttr ($sel+".visibility") 0;
        }else{
            setAttr ($sel+".visibility") 1;
        }
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: nasbi

79732546

Date: 2025-08-11 22:29:04
Score: 4
Natty: 4.5
Report link

This repo on github has many versions from pentaho:
https://github.com/ambientelivre/legacy-pentaho-ce

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

79732537

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

Ahh it works now. Laptop was using 5G network and S3 upload was failing.

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

79732534

Date: 2025-08-11 22:03:57
Score: 4.5
Natty: 6.5
Report link

This article can help: https://kyleshevlin.com/react-native-curved-bottom-bar-with-handwritten-svg/
using svg we can get the shape we need and all the benefits of SVGs.

Reasons:
  • Blacklisted phrase (1): This article
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: santiago7r

79732527

Date: 2025-08-11 21:52:55
Score: 3.5
Natty:
Report link

Try to set MAILTO="[email protected]" in your cron job before the actual script.

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

79732525

Date: 2025-08-11 21:46:53
Score: 9
Natty: 4.5
Report link

hey did you find any suitable soultion ?If yes then please share i'm strucked with same issue

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • RegEx Blacklisted phrase (3): did you find any
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammad Awais Shan

79732511

Date: 2025-08-11 21:22:47
Score: 2
Natty:
Report link

Add the Jersey servlet configuration before your </web-app> closing tag

<servlet>
    <servlet-name>Jersey REST Service</servlet-name>
    <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
    <init-param>
        <!-- Tell Jersey where to find your REST classes -->
        <param-name>com.sun.jersey.config.property.packages</param-name>
        <param-value>com.dan.rest</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>Jersey REST Service</servlet-name>
    <url-pattern>/rest/*</url-pattern>
</servlet-mapping>

After deploying to Tomcat, you should be able to hit:

bash

http://localhost:8080/testmavenproject/rest/a

This should return:

nginx

Hello World

How about it?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Matthew Duniec

79732503

Date: 2025-08-11 21:10:44
Score: 2
Natty:
Report link

You can do this in two ways:

  1. Manually – Use Google Forms HTML Exporter to get the HTML code for your form, then adjust the look and feel yourself with custom CSS/HTML.

  2. With online tools – Use a service that lets you customize Google Forms more easily. For example, CustomGForm offers a free plan for basic customization.

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

79732491

Date: 2025-08-11 20:54:40
Score: 8.5
Natty:
Report link

Olá eu notei um erro crucial e importante no seu código ao chamar ServiceName o service fica com o S minúsculo talvez seja esse o erro do seu código pois ele tem o Se N maiúsculo espero ter ajudado de alguma forma

Reasons:
  • Blacklisted phrase (2): espero
  • Blacklisted phrase (2): código
  • Blacklisted phrase (2): Olá
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: CLEYROW C4

79732486

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

I figured it out. MacOS prevented IntelliJ to access the local network.

Solution 1 in the support article below helped me.

https://youtrack.jetbrains.com/articles/SUPPORT-A-564/Cannot-connect-to-remote-host-No-route-to-host-macOS-15-Sequoia

Reasons:
  • Whitelisted phrase (-2): I figured it out
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: abedurftig

79732485

Date: 2025-08-11 20:35:36
Score: 2
Natty:
Report link

If your environment is so concurrent that such rare/hypothetical situation becomes an issue (or you positively can not afford to left even a single record behind) - then go for the most concurrent option in your DBMS and allow dirty reads (set it READ UNCOMMITTED in other words).

Cause, alas, no other offset tracking option (e.g. mode=timestamp+incrementing) would help you there, as timestamp is set at the moment insert/update physically happens, NOT at the moment of commit.

Other option here would be to establish a kind of reconciliation workflow there. But that's gonna complicate things significantly.

P.S. As for "redesign this setup" - think of the following: you, practically, are "publishing" record into a DB table, and then trigger "re-publishing" it into Kafka topic.

Why not skip the DB altogether & just publish direct to Kafka?
Or, if you need your DB table for other purposes - just initiate both events at once: insert into table AND produce into Kafka topic?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
Posted by: Yuri G

79732481

Date: 2025-08-11 20:26:33
Score: 4.5
Natty:
Report link

: command not found19990743081999074308

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shakib Kgf

79732466

Date: 2025-08-11 20:07:28
Score: 1
Natty:
Report link

Old chat I know, but it helped me and allowed me to find another "quirk" I guess....

We have Report Builder 10, and it is fine with "LIKE". I use parameters with it to get Starts with or Contains.

In Select statements if you want "Starts with" I use LIKE @Parameter + '%'

But I did discover that to use it for "Contains" instead of "Starts With", I wasn't getting any results with

LIKE '%' + @Parameter + '%' as you would expect to do. I think it may be ok if you wanted text inside a word, but in my case the "Contains" may be second word in a name, after a space.... eg Mt Everest.

I found when I added a second wildcard eg. LIKE '%' +'%' + @Parameter + '%' it worked!

Reasons:
  • Whitelisted phrase (-1): it worked
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Parameter
  • User mentioned (0): @Parameter
  • User mentioned (0): @Parameter
  • Low reputation (1):
Posted by: JP1

79732462

Date: 2025-08-11 20:01:26
Score: 1
Natty:
Report link

That's a relief to know. I traced the problem, it was not in the code. My text editor was not showing the final newline. When I used cat on the file, I could see that there was indeed a new line there.

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

79732456

Date: 2025-08-11 19:58:25
Score: 0.5
Natty:
Report link

I was provided an answer through SDL support.

The issue was due to fragment shader missing the appropriate space binding. According to https://learn.microsoft.com/en-us/windows/win32/direct3d12/resource-binding-in-hlsl, "if the space keyword is omitted, then the default space index of 0 is implicitly assigned to the range." So the uniform buffer must have been using space0.

The corrected fragment shader:

struct Input
{
    float4  Color       : COLOR0;
    float4  Position    : SV_Position;
};


cbuffer UniformBlock : register(b0, space3)
{
    float4x4 pallete;
};


float4 main(Input input) : SV_Target0
{
    float3 rgb = pallete[0].xyz;
    return float4(rgb, 1.0);
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: nu_id

79732424

Date: 2025-08-11 19:28:17
Score: 1.5
Natty:
Report link

data:text/html,<html><head><title>แอปเทพ UI</title><style>body{font-family:sans-serif;background:#f9f9f9;color:#111;display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh;margin:0}button{font-size:24px;padding:15px 30px;margin:10px;border:none;border-radius:15px;background:#007aff;color:#fff;cursor:pointer;box-shadow:0 8px 15px rgba(0,122,255,0.3)}button:hover{background:#005fcc}h1{margin-bottom:20px}#count{font-size:72px;font-weight:900;margin:20px}</style></head><body><h1>แอปเทพ UI ง่ายๆ</h1><div id="count">0</div><button onclick="document.getElementById('count').innerText=+document.getElementById('count').innerText+1">กดเพิ่ม +1</button></body></html>

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ธนากร KK

79732422

Date: 2025-08-11 19:27:17
Score: 1
Natty:
Report link

I ran into a similar issue and noticed that all the connection in docker build took at least 5 seconds. The mise fetch version default timeout is 5s.

So adding this environemnt variable fixed the issue.

ENV MISE_FETCH_REMOTE_VERSIONS_TIMEOUT=10s
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Matthew Taylor

79732412

Date: 2025-08-11 19:13:14
Score: 1
Natty:
Report link

This shoudl do what you described:

gens_avg_change <- gens_avg %>%
  group_by(hap) %>%
  mutate(percent_change=(avg-lag(avg))/lag(avg)*100)
  
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: BEVAN

79732410

Date: 2025-08-11 19:11:13
Score: 1
Natty:
Report link

I recommend a different approach to your design.

A 30-second delay in 2025 is quite long, unless you're performing deep research that involves web crawling, compiling, and generating a report. For long running tasks, it's advisable to use an intermediate system like a Pub/Sub Queue. While this introduces the overhead of setting up new queues, managing message reception, and handling retries for failures, it's generally more efficient.

If you prefer to maintain a simpler system and a certain degree of latency is acceptable, consider the following:

  1. Utilize AsyncIO as suggested in https://stackoverflow.com/a/78884632/1686903.
  2. Improve model performance by using a Global Endpoint or Provisioned Throughput.
  3. Experiment with Gemini Flash-lite models to evaluate their advantages and disadvantages.
  4. Explore libraries such as https://pypi.org/project/backoff/ along with timeout based response mentioned in https://stackoverflow.com/a/79722709/1686903
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
Posted by: sam

79732403

Date: 2025-08-11 19:02:11
Score: 1
Natty:
Report link

Seems like You have a Scaffold inside another Scaffold.
Check it with the Widget Inspector, and on the top Scaffold set resizeToAvoidBottomInset: false
I hope this will help.

Good Luck!

Reasons:
  • Whitelisted phrase (-1): hope this will help
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: roGri

79732400

Date: 2025-08-11 18:57:10
Score: 1.5
Natty:
Report link

defaultProps is deprecated. You can create a Text component, apply the props and default styles, and use that component app wide

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

79732391

Date: 2025-08-11 18:50:08
Score: 0.5
Natty:
Report link

You need to define a _layout.tsx file in (auth), and define Stack.Screen since you don't have an index file.

In my experience, it might also take some time for the error to clear. You can try restarting your code editor, or restarting the expo server

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

79732383

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

Since 1.69.0 there is std::marker::PointerLike, and the following 1.70.0 release also introduced std::marker::FnPtr. However, both of them are still unstable (i.e. nightly-only and experimental).

It's also worth noting the std::fmt::Pointer trait, because its name is very misleading, as it's actually not suitable for describing a generic pointer type.

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

79732382

Date: 2025-08-11 18:46:07
Score: 1
Natty:
Report link

You can do:

optional(:per_page).filled(Types::Integer.default(10.freeze))

Dry.rb reference

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

79732361

Date: 2025-08-11 18:17:59
Score: 4
Natty:
Report link

The following little crate is new: https://crates.io/crates/utf8-supported

Could it be helpful for the task at hand?

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Troels Arvin

79732357

Date: 2025-08-11 18:13:57
Score: 3.5
Natty:
Report link

In response to the question of ` is it possible to use retries and deadletter queues in celery? Answer:- Retries:- You can sell self.retry() in a task or set autoretry_for, max_retries, and retry_backoff to automatically retry failed tasks. Dead Letter Queues (DLQ):- Not built-in, but you can configure your broker (RabbitMQ, Redis) to route expired or rejected messages to a DLQ. Celebrity will work that configuration. Source of answer:- results from carried out experiments.

Reasons:
  • Blacklisted phrase (1): is it possible to
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Deehackershacker

79732355

Date: 2025-08-11 18:10:57
Score: 0.5
Natty:
Report link

There is no way to replace a class with a class in Symphony, need to redo the binding to the interface:

App\Service\S3Client\S3Client:
        arguments:
            $version: 'latest'
            $region: 'us-east-1'
            $host: '%env(MINIO_HOSTNAME)%'
            $port: '%env(MINIO_INTERNAL_PORT)%'
            $accessKey: '%env(MINIO_ACCESS_KEY)%'
            $secretKey: '%env(MINIO_SECRET_KEY)%'

    App\Service\S3Client\S3ClientInterface:
        class: App\Service\S3Client\S3Client
        arguments:
            $version: 'latest'
            $region: 'us-east-1'
            $host: '%env(MINIO_HOSTNAME)%'
            $port: '%env(MINIO_INTERNAL_PORT)%'
            $accessKey: '%env(MINIO_ACCESS_KEY)%'
            $secretKey: '%env(MINIO_SECRET_KEY)%'

when@test:
    services:
        App\Service\S3Client\S3ClientInterface:
            class: App\Service\S3Client\TestS3Client
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Walk

79732345

Date: 2025-08-11 17:52:51
Score: 9
Natty: 4.5
Report link

did u get to solve it? I can't figure out how to include ads in my angular project

Reasons:
  • RegEx Blacklisted phrase (3): did u get to solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: Y_2605

79732343

Date: 2025-08-11 17:49:50
Score: 2
Natty:
Report link

Mozilla signs extensions as a defense against malicious software. If an extension's files are altered, the signature becomes invalid (i.e., "corrupt"), so Firefox will refuse to load it.

You can disable signature verification by setting xpinstall.signatures.required in about:config to false in Firefox nightly, developer, and enterprise (esr). The setting exists for all versions of Firefox, but it has no effect in released and beta. (Nightly and developer are pre-release. Beta is pre-release, too, but it's supposed to behave as if it's released.) The setting might also work for some clones, but that depends on the clone.

See How can I disable signature checking for Firefox add-ons?.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Nanigashi

79732341

Date: 2025-08-11 17:48:50
Score: 1
Natty:
Report link

I followed Mageworx answer above and added price_per_unit attribute to the attribute set where it was removed. However I threw it in the main group and it didn't work. There's one additional component to this. It has to go inside the mageworx-dynamic-options group.

From the Mysql CLI, I did:

mysql> SELECT * FROM eav_attribute_group WHERE attribute_set_id = 4 AND attribute_group_code = 'mageworx-dynamic-options';
+--------------------+------------------+--------------------------+------------+------------+--------------------------+----------------+
| attribute_group_id | attribute_set_id | attribute_group_name | sort_order | default_id | attribute_group_code | tab_group_code |
+--------------------+------------------+--------------------------+------------+------------+--------------------------+----------------+
| 485 | 4 | Mageworx Dynamic Options | 16 | 0 | mageworx-dynamic-options | NULL |
+--------------------+------------------+--------------------------+------------+------------+--------------------------+----------------+
1 row in set (0.00 sec)

I just added another row to the table but with the attribute_set_id 73 which was missing.

mysql> INSERT INTO `eav_attribute_group` (`attribute_set_id`, `attribute_group_name`, `sort_order`, `default_id`, `attribute_group_code`) VALUES(73, 'Mageworx Dynamic Options', 16, 0, 'mageworx-dynamic-options');
Query OK, 1 row affected (0.01 sec)

Make sure you edit the attribute set where the attribute was missing and drag and drop price_per_unit into that group which should now be there.

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

79732338

Date: 2025-08-11 17:43:48
Score: 2
Natty:
Report link

I think you want to send groups in slack message so structured that anyone easily identify it.

To do so you can format your result in table or something else using Markdown syntax

Slack supports markdown messages

Slack markdown message format doc

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

79732335

Date: 2025-08-11 17:41:47
Score: 2
Natty:
Report link

From early mornings to late nights, 7 Brew keeps coffee lovers energized with a creative range of beverages. Popular picks like the Creme Brulee Breve, Caramel Macchiato, and Strawberry Smoothie are perfect for every mood. Along with shakes, teas, and the famous 7 Energy line, you’ll find endless flavor combinations to try. Discover all the latest drinks and specials by browsing the Latest Menu 2025.

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

79732313

Date: 2025-08-11 17:14:39
Score: 3
Natty:
Report link

Celery itself supports retries and dead letter queue behavior ( when paired with brokers like RabbitMQ or Redis

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

79732282

Date: 2025-08-11 16:50:30
Score: 3
Natty:
Report link

Oracle Database Installation Errors A to Z Guide

You'll find all solutions here. I COULDNT copy all the contents of it here cuz there is limit of 300000 characters.

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

79732273

Date: 2025-08-11 16:39:28
Score: 2.5
Natty:
Report link

This has been an issue for years. I wonder why the IntelliJ team doesn't resolve it once and for all.

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

79732270

Date: 2025-08-11 16:34:26
Score: 1
Natty:
Report link

As far as I'm concerned, a nibble is a 4-bit group. For example, the byte 0xA1 (0b10100001 ) is split into two nibbles, 0xA and 0x1 (0b1010 and 0b0001 respectively), and the most significant bit of that byte is 0x1, (I'm using the little-endian format). The sequence 0xA1B2C3 is split into 6 nibbles, 0xA, 0x1, 0xB, 0x2, 0xC and 0x3. Assuming a little-endian format, the most significante byte is 0xA1, and the most significante bit of all the 24-bit sequence is 0b1. The sane logic applies to any other byte sequence, such as the one you provided.

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

79732256

Date: 2025-08-11 16:14:21
Score: 2.5
Natty:
Report link

I may have found the most inefficient way?


#include<stdio.h>

int main()
{
int a,b,c,d,ia,ib,ic,id, max, min;

 printf("Enter four integers:");
    scanf("%d %d %d %d", &a, &b, &c, &d);

ia=(a>b||a>c||a>d)-(a<b||a<c||a<d);
ib=(b>a||b>c||b>d)-(b<a||b<c||b<d);
ic=(c>b||c>a||c>d)-(c<b||c<a||c<d);
id=(d>b||d>c||d>a)-(d<b||d<c||d<a);

switch (ia)
{
case 1: max=a;
break;
case -1: min=a;
break;
default:
break;
}

switch (ib)
{
case 1: max=b;
break;
case -1: min=b;
break;
default:
break;
}

switch (ic)
{
case 1: max=c;
break;
case -1: min=c;
break;
default:
break;
}

switch (id)
{
case 1: max=d;
break;
case -1: min=d;
break;
default:
break;
}

    printf("Maximum: %d",max);
    printf("\nMinimum: %d",min);

return 0;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: 3r4n