79661824

Date: 2025-06-11 10:35:01
Score: 0.5
Natty:
Report link
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': '*',
        'USER': '*',
        'PASSWORD': '*', 
        'HOST': 'localhost',
        'PORT': '3306',
        'CONN_MAX_AGE': 0,   # add this
        'OPTIONS': {
            'charset': 'utf8mb4',
            'connect_timeout': 60,
            'init_command': "SET sql_mode='STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'"
            }

    }
}   




//This configuration has been working fine for me so far.
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: gin g

79661813

Date: 2025-06-11 10:29:59
Score: 16.5 đŸš©
Natty: 6.5
Report link

Facing same issue, Did you find any solution? I have Python FastAPI application in that I have used .env and I know it's not recommended or best practise to push .env file. If you the solution can you guide me?

Reasons:
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): can you guide me
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): Facing same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Karan Parwani

79661811

Date: 2025-06-11 10:28:58
Score: 3
Natty:
Report link

Another potential fix for people hitting this on work laptops is if your company uses Trend Vision One is to disable the Trend Micro LightWight Filter Driver on your network adaptors.

enter image description here

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

79661802

Date: 2025-06-11 10:23:56
Score: 4
Natty:
Report link

Please check image and confirm the X, Y, Z coordinates are correct.

enter image description here

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

79661801

Date: 2025-06-11 10:22:56
Score: 1
Natty:
Report link

actually for

v-navigation-drawer  when you set the max-height it becomes automatically 
scrollable , here is an example  
  <v-navigation-drawer
    v-model="historyPreviewDrawer"
    temporary
    location="bottom"
    style="max-height: 50%"
    class="custom-drawer"
  >
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: maissa zehhaf

79661795

Date: 2025-06-11 10:16:54
Score: 3
Natty:
Report link

I think people already know the answer, but for the newbie...

It is needed to set USART3's TX & rX at PD8 and PD9. As a default, USART3's TX and RX would be PB10 and PB11. So we need to change ports and pins manually.

For more information, you can find schematics at CAD resource page in ST.com: https://www.st.com/en/evaluation-tools/nucleo-f767zi.html#cad-resources

enter image description here

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

79661782

Date: 2025-06-11 10:09:51
Score: 3.5
Natty:
Report link

Solved! the problem was the src path missed.

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

79661776

Date: 2025-06-11 10:08:51
Score: 1
Natty:
Report link

I was able to resolve this issue by adding jaxb-2.2 and wmqJmsClient-2.0 features and removing wasJmsClient-2.0 and wasJmsServer-1.0.

I also had to add the following to server.xml:

<keyStore id="myTrustStore" location="/opt/ibm/wlp/usr/servers/defaultServer/resources/security/b00-truststore.jks" type="JKS" password="" />
<ssl id="defaultSSLConfig" trustStoreRef="myTrustStore"/>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Lyss P. Hacker

79661773

Date: 2025-06-11 10:05:50
Score: 1.5
Natty:
Report link

You can try to delete or modify this configuration , gradle.properties:

org.gradle.configuration-cache=false
org.gradle.unsafe.configuration-cache=false
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: olivia

79661769

Date: 2025-06-11 10:01:49
Score: 1
Natty:
Report link

Note: If your file uses React Hooks, you can't directly use async/await in that component, as React Hooks require a "use client" directive, whereas async functions are treated as server-side.

If you run into this conflict, a good approach is to nest a client component inside a server component. The server component can handle the data fetching using async/await, and then pass the retrieved values as props to the client component, which can safely use React Hooks.

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

79661765

Date: 2025-06-11 09:59:48
Score: 0.5
Natty:
Report link

I managed to find a solution. I noticed that in my data, just before the NAs, the values increase much more slowly, so the algorithm interprets that as a downward parabola. So I removed 3 values before and after each block of NAs, and I'm getting good results. It won't work in every case, but for me, it's working fine.

inertie2sens<- function(data_set,energie){
  for (i in 2:nrow(data_set)) {
    if (is.na(data_set[i, energie])& !is.na(data_set[i+1, energie])) {
    data_set[i+1, energie] =-1
    }
  }
  for (i in nrow(data_set):2) {
    if (is.na(data_set[i, energie])& !is.na(data_set[i-1, energie])) {
    data_set[i-1, energie] =-1
    }
  }
  for (i in 2:nrow(data_set)) {
    if (data_set[i, energie]==-1|is.na(data_set[i, energie])) {
    data_set[i, energie] <- NA
    }
  }
  return(data_set)
}

enter image description here

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

79661761

Date: 2025-06-11 09:57:43
Score: 6 đŸš©
Natty:
Report link

I have the same issue and after research i didn't find any way to do this. The content shadow-root of the autocomplete element is by default set to close so we can't access to input to change placeholder.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rémi

79661750

Date: 2025-06-11 09:49:40
Score: 1
Natty:
Report link

I don't know if the path has changed since the other answers were posted or if my answer is specific to Windows Server 2016, but I found the logs in C:\Windows\System32\config\systemprofile\AppData\Local\Temp\Amazon\EC2-Windows\Launch\InvokeUserData under InvokeUserDataOutput.log and InvokeUserDataError.log

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

79661736

Date: 2025-06-11 09:41:37
Score: 7.5 đŸš©
Natty:
Report link

This seems like there is a problem with your driver set up. Can you please share capabilities?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please share
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mithun pai

79661731

Date: 2025-06-11 09:38:36
Score: 3
Natty:
Report link

I tried to include different options into the exams2pdf / exams2nops command, but nothing worked for me...

height = 50, width = 50
height = 5, width = 5
height = 0.5, width = 0.5


fig.height = 0.5, fig.width = 0.5

out.width = 0.5

am I using the wrong numbers, or what am I doing wrong? I only have pictures that I generated within R:

```{r Elasticita, echo=FALSE, fig.height = 5, fig.width = 5, fig.path = "", fig.cap = ""}

...
...
...



and I also tried to change the size there, but it is then overwritten I think by the exams2nops command. 

What I did not yet try is modifying the template.

Am I making a mistake with the options in the exams2nops command?

Thank you already!
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): what am I doing wrong?
  • Blacklisted phrase (1): but nothing work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user301818

79661729

Date: 2025-06-11 09:38:36
Score: 1.5
Natty:
Report link

This is a solid and scalable solution, using global.setup.ts ensures consistent fixture data across retries and isolates setup from test logic. It also avoids the pitfalls of module-level variable re-initialization. Great approach for maintaining test reliability in state-dependent scenarios!

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

79661728

Date: 2025-06-11 09:37:36
Score: 3
Natty:
Report link

is due to how event handling and focus work in QtQuick when a MouseArea is placed inside the background of a TextField

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

79661725

Date: 2025-06-11 09:36:35
Score: 0.5
Natty:
Report link
  1. Advisable to have Apple Sign-in only happen on Apple devices/ iOS devices. Don't do Apple signin on Android. nevertheless.

  2. If authentication is successful, You can consider setting up Deeplinks for your app. Such that redirects from Chrome to your web url will launch the mobile app and perform the required operations.

  3. On Android Instead of opening up Chrome to perform the Sign-in operation. Consider opening the url in a dialog or new page that is a Webview. that way you can easily manage the redirects from within the Webview. Launching Chrome to perform an action and then redirect back to an App, is kind of an iOS behaviour.

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

79661714

Date: 2025-06-11 09:30:33
Score: 2.5
Natty:
Report link

Currently there is no API or tweak that will do what you are requesting. You can however request the feature via the idea station at https://forums.autodesk.com/t5/acc-ideas/idb-p/acc-ideas-en

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

79661710

Date: 2025-06-11 09:28:32
Score: 1
Natty:
Report link

What I can say is your card container will have fixed height and overflow: hidden, so when graphs appear, they overflow upward and get clipped.

So possible fix is remove fixed height from card component and remove overflow: hidden

If still issue not resolved then share your code block so I can help you out exactly.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): What I can
  • Low reputation (1):
Posted by: BuildWithGagan

79661705

Date: 2025-06-11 09:25:31
Score: 3
Natty:
Report link

I finaly solved the issue by uninstalling the langchain package and reinstalling it (only this package), even if it was looking up-to-date (the rest was up-to-date as well)

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

79661694

Date: 2025-06-11 09:19:29
Score: 0.5
Natty:
Report link

Thanks for your interensting question. Do you run your tests against localhost?

Otherwise if you run your app in Payara Micro, you can even run Arquillian against Payara Embedded by the help of Payara Server Embedded Arquillian Container Adapter - it's the most simple way of getting Arquillian work with Payara. Watch https://hantsy.github.io/ for a comparision between the Payara Arquillian adapters and their configuration - watch the simple embedded configuration.

There is an Open Github Issue with the Payara Embedded Adapter regarding Java's module system Jigsaw and slow shutdown of the Arquillian Deployment. Workarounds are listet there.

I migrate old Java EE apps with global installation application servers to Jakarata EE Payara Micro apps which leads to having a simple bootRun analogue with IDE integration:

build.gradle

plugins {
    ...
    id 'fish.payara.micro-gradle-plugin' version '...'
    ...
}

java {
    toolchain {
        languageVersion = JavaLanguageVersion.of(17)
    }
}

test {
    ...
    jvmArgs = [
        '--add-opens', 'java.base/sun.net.www.protocol.jar=ALL-UNNAMED',
        ...
    ]
}

payaraMicro {
    payaraVersion = '...'
    ...
}

dependencies {
    ...
    testImplementation("org.jboss.arquillian.junit5:arquillian-junit5-container:1.9.4.Final")
    testImplementation("fish.payara.arquillian:arquillian-payara-server-embedded:3.1")
    testRuntimeOnly("fish.payara.extras:payara-embedded-all:6.2025.4")
    ...
}

arquillian.xml

<?xml version="1.0"?>
<arquillian xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns="http://jboss.org/schema/arquillian"
            xsi:schemaLocation="http://jboss.org/schema/arquillian
                http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
    <container qualifier="payara-embedded" default="true">
        <configuration>
            <property name="resourcesXml">src/test/resources/glassfish-resources.xml</property>
        </configuration>
    </container>
</arquillian>

glassfish-resources.xml

<!DOCTYPE resources PUBLIC
        "-//GlassFish.org//DTD GlassFish Application Server 3.1 
        Resource Definitions//EN"
        "http://glassfish.org/dtds/glassfish-resources_1_5.dtd">
<resources>
    // TODO datasource definition
</resources>
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: rudi1602

79661679

Date: 2025-06-11 09:11:26
Score: 1.5
Natty:
Report link

I only just realised the HabitStreakManager was the only collection that was double-embedded AND not within the same file as it's parent collection (HabitTracker).

So, to fix it, I made the file containing HabitStreakManager a part of the file containing its parent collection, HabitTracker.

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

79661667

Date: 2025-06-11 09:01:24
Score: 0.5
Natty:
Report link
const {providers: timeagoProviders = [] } = TimeagoModule.forChild()

And then insert into your standalone component, providers array

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

79661666

Date: 2025-06-11 09:00:23
Score: 0.5
Natty:
Report link

Alternatively, instead of mvn jetty:run, use this command without the need to set MAVEN_OPTS:

mvnDebug jetty:run

Here's the reference.

In my case, I am using VS Code. When I run the command, the terminal would only show:

Preparing to execute Maven in debug mode
Listening for transport dt_socket at address: 8000

and wait until I click the Start Debugging button (after adding and the corresponding configuration in launch.json and selecting it)

Below is the configuration I used, just in case.

{
    "type": "java",
    "name": "Attach to Remote",
    "request": "attach",
    "hostName": "localhost",
    "port": 8000,
    "projectName": "your-project-name"  // Optional: Replace with your project name
}
Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Wit

79661656

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

Alright, thanks to @G.M. i could come up with an answer, if anyone is interested i will share it.
It resumes the steps from the document he shared on GNU GCC freestanding environnements:

main.c:

#include "app.h"
#include <gcov.h>
#include <stdio.h>
#include <stdlib.h>

extern const struct gcov_info *const __gcov_info_start[];
extern const struct gcov_info *const __gcov_info_end[];

static void dump(const void *d, unsigned n, void *arg) {
    (void)arg;
    fwrite(d, 1, n, stderr);
}

static void filename(const char *f, void *arg) {
    __gcov_filename_to_gcfn(f, dump, arg);
}

static void *allocate(unsigned length, void *arg) {
    (void)arg;
    return malloc(length);
}

static void dump_gcov_info(void) {
    const struct gcov_info *const *info = __gcov_info_start;
    const struct gcov_info *const *end = __gcov_info_end;

    __asm__ ("" : "+r" (info));

    while (info != end) {
        void *arg = NULL;
        __gcov_info_to_gcda(*info, filename, dump, allocate, arg);
        ++info;
    }
}

int main(void) {
    application();
    dump_gcov_info();
    return 0;
}

app.c:


#include "app.h"
#include <stdio.h>

void application(void) {
    int x = 1;

    if (x == 1) {
        printf("Works\n");
    }

    if (x == 2) {
        printf("Doesn't work\n");
    }
}

The app.h file is empty, just the application() function prototype.

gcc --coverage -fprofile-info-section -c app.c
gcc --coverage -fprofile-info-section -c main.c
ld --verbose | sed '1,/^===/d' | sed '/^===/d' > linkcmds
  .gcov_info      :
  {
    PROVIDE (__gcov_info_start = .);
    KEEP (*(.gcov_info))
    PROVIDE (__gcov_info_end = .);
  }
gcc --coverage main.o app.o -T linkcmds # This will output an executable file "a.out"
./a.out 2>gcda.txt
static void dump(const void *d, unsigned n, void *arg) {
    (void)arg;
    fwrite(d, 1, n, stderr);
}
gcov-tool merge-stream gcda.txt
gcov -bc app.c

-> File 'app.c'
Lines executed:85.71% of 7
Branches executed:100.00% of 4
Taken at least once:50.00% of 4
Calls executed:50.00% of 2
Creating 'app.c.gcov'

Lines executed:85.71% of 7
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Léo Fresnay

79661655

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

Frontend

When you make site its always static and you can't make it dynamic. You can make it only with server beside your frontend. I mean you need to make server that will response on users requests. You can't make it only with your frontend part, It's unbeliavable.

Backend

When you make your server-side part it's always dynamic cause you everytime you need to have response on your request. You can't do rate limiting only with Frontend.

What can you do?

Best solutions for Laravel:

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

79661649

Date: 2025-06-11 08:50:19
Score: 6 đŸš©
Natty: 5.5
Report link

yalla

sdfsfsdfsdfsdfsdfsfsdfssfsdfsdfsfsdfsd

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: sfs

79661647

Date: 2025-06-11 08:49:19
Score: 3
Natty:
Report link

The API official documentation doesn't list an "enableChat" property, so no surprise it doesn't do anything.
As far as I can tell, there's no way to enable/disable the chat on a given broadcast through the API.

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

79661643

Date: 2025-06-11 08:45:18
Score: 2.5
Natty:
Report link

I finally rebuild it with a different working example using the import-method and changed the way the position is added, without the Geocoder.

Also, in case it might be useful for someone: The map was so terribly slow because it used FontAwesome-Icons, which resulted in strange JS-errors (while being displayed correctly) - as soon as I replaced them with static SVG, it was fine.

One thing though that is being ignored without an error: The MarkerClusterer-Options don't work (minimumClusterSize: 10, maxZoom: 15) - any ideas how to do this correctly, or is it just broken?


<div id="map"></div>
<script>(g=>{var h,a,k,p="The Google Maps JavaScript API",c="google",l="importLibrary",q="__ib__",m=document,b=window;b=b[c]||(b[c]={});var d=b.maps||(b.maps={}),r=new Set,e=new URLSearchParams,u=()=>h||(h=new Promise(async(f,n)=>{await (a=m.createElement("script"));e.set("libraries",[...r]+"");for(k in g)e.set(k.replace(/[A-Z]/g,t=>"_"+t[0].toLowerCase()),g[k]);e.set("callback",c+".maps."+q);a.src=`https://maps.${c}apis.com/maps/api/js?`+e;d[q]=f;a.onerror=()=>h=n(Error(p+" could not load."));a.nonce=m.querySelector("script[nonce]")?.nonce||"";m.head.append(a)}));d[l]?console.warn(p+" only loads once. Ignoring:",g):d[l]=(f,...n)=>r.add(f)&&u().then(()=>d[l](f,...n))})
({key: "", v: "weekly"});</script>
<script type="module">
import { MarkerClusterer } from "https://cdn.skypack.dev/@googlemaps/[email protected]";
async function initMap() {
  const { Map } = await google.maps.importLibrary("maps");
  const { AdvancedMarkerElement } = await google.maps.importLibrary("marker");
  const center = { lat: 50.5459719, lng: 10.0703129 };
  const map = new Map(document.getElementById("map"), {
    zoom: 6.6,
    center,
    mapId: "4504f8b37365c3d0",
  });
  const labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  const markers = properties.map((property, i) => {
    const label = labels[i % labels.length];
    const marker = new google.maps.marker.AdvancedMarkerElement({
      position: new google.maps.LatLng(property.lat,property.lng),
      content: buildContent(property),
      title: property.name,
    });
    marker.addListener("gmp-click", () => {
        toggleHighlight(marker, property);
    });
    return marker;
  });

  const markerCluster = new MarkerClusterer({ markers:markers, map:map, options:{minimumClusterSize: 10, maxZoom: 15} });

}
Reasons:
  • Blacklisted phrase (1): any ideas
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: lichtpixel

79661642

Date: 2025-06-11 08:45:18
Score: 2.5
Natty:
Report link

In my case, this issue occurred in the production environment, but it was resolved by simply changing the API URL from HTTP to HTTPS. The development environment works fine with HTTP.

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

79661627

Date: 2025-06-11 08:14:10
Score: 1.5
Natty:
Report link

People can easily get around frontend rate limiting—either by disabling JavaScript, editing code, or directly hitting the API with tools. Even if your frontend tries to stop abuse, it’s not safe to rely on it alone. Backend rate limiting is much harder to bypass and helps protect your server from getting overloaded. It’s a necessary extra layer of defense that frontend code just can’t provide.

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

79661626

Date: 2025-06-11 08:13:10
Score: 2.5
Natty:
Report link

I'll join in because I also have a similar problem. I added a button to the app that changes the icon. When I click it, the app closes, the icon changes and theoretically there's no problem. However: shortcuts stop working, it doesn't start automatically after pressing debug. You have to manually start from the shortcut, and the errors I get are:

My main class: MainActivity
My alias name: MainActivityDefault

In the folder containing the main class I also have an empty class as in the shortcut name

When starting debug:

Activity class {com.myproject.myapp/com.myproject.myapp.MainActivityDefault} does not exist

When starting the shortcut:

Unable to launch. tag=WorkspaceItemInfo(id=-1 type=DEEPSHORTCUT container=# com.android.launcher3.logger.LauncherAtom$ContainerInfo@1a1bf6a targetComponent=ComponentInfo{com.myproject.myapp/com.myproject.myapp.MainActivityDefault} screen=-1 cell(-1,-1) span(1,1) minSpan(1,1) rank=0 user=UserHandle{0} title=PokaĆŒ na mapie) intent=Intent { act=android.intent.action.MAIN cat=[com.android.launcher3.DEEP_SHORTCUT] flg=0x10200000 pkg=com.myproject.myapp cmp=com.myproject.myapp/.MainActivityDefault bnds=[359,640][1115,836] (has extras) }
                                                                                                    android.content.ActivityNotFoundException: Shortcut could not be started
                                                                                                        at android.content.pm.LauncherApps.startShortcut(LauncherApps.java:1556)
                                                                                                        at android.content.pm.LauncherApps.startShortcut(LauncherApps.java:1521)
                                                                                                        at com.android.launcher3.BaseActivity.startShortcut(SourceFile:1)
                                                                                                        at com.android.launcher3.BaseDraggingActivity.startShortcutIntentSafely(SourceFile:8)
                                                                                                        at com.android.launcher3.BaseDraggingActivity.startActivitySafely(SourceFile:9)
                                                                                                        at com.android.launcher3.Launcher.startActivitySafely(SourceFile:6)
                                                                                                        at com.android.launcher3.uioverrides.QuickstepLauncher.startActivitySafely(SourceFile:2)
                                                                                                        at com.android.launcher3.touch.ItemClickHandler.startAppShortcutOrInfoActivity(SourceFile:14)
                                                                                                        at com.android.launcher3.touch.ItemClickHandler.onClickAppShortcut(SourceFile:8)
                                                                                                        at com.android.launcher3.touch.ItemClickHandler.onClick(SourceFile:6)
                                                                                                        at com.android.launcher3.touch.ItemClickHandler.b(Unknown Source:0)
                                                                                                        at O0.f.onClick(Unknown Source:0)
                                                                                                        at com.android.launcher3.popup.PopupContainerWithArrow.lambda$getItemClickListener$0(SourceFile:1)
                                                                                                        at com.android.launcher3.popup.PopupContainerWithArrow.d(Unknown Source:0)
                                                                                                        at F0.e.onClick(Unknown Source:2)
                                                                                                        at android.view.View.performClick(View.java:7441)
                                                                                                        at com.android.launcher3.shortcuts.DeepShortcutTextView.performClick(SourceFile:3)
                                                                                                        at android.view.View.performClickInternal(View.java:7418)
                                                                                                        at android.view.View.access$3700(View.java:835)
                                                                                                        at android.view.View$PerformClick.run(View.java:28676)
                                                                                                        at android.os.Handler.handleCallback(Handler.java:938)
                                                                                                        at android.os.Handler.dispatchMessage(Handler.java:99)
                                                                                                        at android.os.Looper.loopOnce(Looper.java:201)
                                                                                                        at android.os.Looper.loop(Looper.java:288)
                                                                                                        at android.app.ActivityThread.main(ActivityThread.java:7839)
                                                                                                        at java.lang.reflect.Method.invoke(Native Method)
                                                                                                        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)
                                                                                                        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1003)
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I also have a similar problem
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: MichaƂ

79661625

Date: 2025-06-11 08:12:09
Score: 0.5
Natty:
Report link

We have already partially answered this question, but I will duplicate it. Thanks КсH!
Excerpt from the documentation:

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Fast Life-ucky good

79661624

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

Thanks to those who tried to help, I got it working just now, after spending an entire day on it.

I'm not sure what exactly the problem was. After reinstalling VS, VS installer, SDKs and runtimes, including clearing dotnet references out of system environment vars, I was receiving an error on trying to launch a third-party program that also requires the SDK in question.

At that point I repaired the installation of V9 (which I had tried previously, before clearing out the sys enviro vars and reinstalling VS), and then everything came good.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ego Placebo

79661623

Date: 2025-06-11 08:10:09
Score: 3
Natty:
Report link

Same thing for us, I think it's a problem with their servers

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

79661618

Date: 2025-06-11 08:06:08
Score: 2.5
Natty:
Report link

Magento 1.9 doesn’t support applying the higher discount (catalog vs. promo) by default. You’ll need custom code or a third-party extension to compare both and apply the higher one automatically. Best practice is to avoid catalog price rules and use shopping cart rules for more control.

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

79661603

Date: 2025-06-11 07:55:05
Score: 1.5
Natty:
Report link

I got a new windows and struggled with this in RStudio for some days and finally solved it by unboxing this option:
Tools > Global Options > Git/SVN > Sign Git commits

I am not sure whether I accidentally ticked it or it was there in the first place in the new version of it.

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

79661600

Date: 2025-06-11 07:54:04
Score: 1
Natty:
Report link

The system cannot find the path specified.

C:\Users\Admin\Desktop\react 1> npm start

npm error code ENOENT

npm error syscall open

npm error path C:\Users\Admin\Desktop\react 1\package.json

npm error errno -4058

npm error enoent Could not read package.json: Error: ENOENT: no such file or directory, open 'C:\Users\Admin\Desktop\react 1\package.json'

npm error enoent This is related to npm not being able to find a file.

npm error enoent

npm error A complete log of this run can be found in: C:\Users\Admin\AppData\Local\npm-cache\_logs\2025-06-11T07_46_02_229Z-debug-0.log

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

79661593

Date: 2025-06-11 07:51:03
Score: 1
Natty:
Report link

I fixed the problem just logging out from docker desktop and logging in from terminal, following the instructions to verify my device.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Oscar Balbo

79661587

Date: 2025-06-11 07:48:02
Score: 2.5
Natty:
Report link

Add Proxies to your request using Residential proxies from a provider of your choice and you won't get flagged.

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

79661576

Date: 2025-06-11 07:43:00
Score: 5
Natty:
Report link

Hello Azure LoadBalancer expert

Six months ago, I installed a VM in Azure running an MSSQL server. The VM is located in a VNET and does not have a public IP. To access the SQL Server via the Internet, I first installed an external Azure Load Balancer and set up a NAT rule that forwards traffic from the public IP of the LB via port 3378 to port 1433 of the VM. In the NSG, I enabled port 1433 in the VNET (they are all open anyway) and allowed port 3378 to the internal IP of the VM from the Internet.
The port 1433 on VM is open and a connection from another vm in same vnet can be established.

This worked, but then suddenly it stopped working. I probably changed something and can't find the error.

enter image description here

enter image description here

For me looks my setup same like post Azure Load Balancer Inbound NAT rule targeting VM. The only diff is, I do have just one machine in backend pool.

Has anyone an idea, how to solve the issue?

Best Tino

Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (1.5): how to solve the issue?
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: user2209131

79661564

Date: 2025-06-11 07:35:58
Score: 1.5
Natty:
Report link

@RajdeepPal You can use python uroman package (github).


import uroman as ur
uroman = ur.Uroman()  
print(uroman.romanize_string('à€…à€‚à€€à€żà€ź à€Čà€•à„à€·à„à€Ż à€•à„à€Żà€Ÿ à€čà„ˆ'))


output: amtim lakssya kyaa hai
Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @You
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: khari-sing

79661560

Date: 2025-06-11 07:33:57
Score: 2
Natty:
Report link

Without a full reproducer, it's hard to tell, as there is nothing in the config that could cause this issue. There might by some bug in the .Net wrapper, make sure you are using the newest version.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Andrzej BuƂeczka

79661555

Date: 2025-06-11 07:28:56
Score: 3
Natty:
Report link

Some solution could be branch name + commit timestamp encoded as ie base36 (the sequence) + (short) commit hash

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

79661549

Date: 2025-06-11 07:23:54
Score: 1.5
Natty:
Report link

Follow the steps mentioned in the project-lombok

https://projectlombok.org/setup/maven

This worked for me.

Reasons:
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: anjanagnet

79661545

Date: 2025-06-11 07:19:53
Score: 3.5
Natty:
Report link

Download Chrome 64 bit

curl -L -o chrome_installer.exe https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi

install chrome

msiexec /i chrome_installer.exe /qn /norestart

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

79661543

Date: 2025-06-11 07:17:52
Score: 4.5
Natty:
Report link

I have reproduced the problem. I got a 403 response when I didn't send the UserInfo JSON data to the /save endpoint. When I send the JSON data correctly, I receive a 200 response. I've used the securityFilterChain like yours.

Can you share your UserInfo class? I think there's missing a setter method or appropriate constructor.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share your
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Hans van den pol

79661541

Date: 2025-06-11 07:15:50
Score: 6 đŸš©
Natty: 5.5
Report link

Envoy Proxy documentation said max_request_bytes is uint32 value. Does that mean I can't upload files that are larger than 2^32 bytes ?

ref: https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/filters/http/buffer/v3/buffer.proto#extensions-filters-http-buffer-v3-buffer

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Viet Anh Cao

79661535

Date: 2025-06-11 07:11:49
Score: 1.5
Natty:
Report link

If it can help ;)

thanks to Youtube : OverSeas Media

{# languagesForm.html.twig #}

{% from 'macros.html.twig' import languageFormMacro %}

<div class="languages-container form-control">
    <h3>{{ form_label(languagesForm) }}</h3>
    <button type="button" class="add-item-link btn btn-success" data-collection-holder-class="languages">
        <i class="fa-solid fa-plus"></i>
    </button>

    <ul class="languages collection"
        data-index="{{ languagesForm|length > 0 ? languagesForm|last.vars.name + 1 : 0 }}"
        data-prototype="{{ languageFormMacro(languagesForm.vars.prototype)|e('html_attr') }}"
    >
        {% for languageForm in languagesForm %}
            <li>
                <div class="form-control">
                    {{ languageFormMacro(languageForm) }}
                </div>
            </li>
        {% endfor %}
    </ul>
</div>
{# macros.html.twig #}

{% macro languageFormMacro(languageForm) %}
    <div class="row">
        {{ form_row(languageForm.name) }}
        {{ form_row(languageForm.expertise) }}
    </div>
{% endmacro %}
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mathias DaverĂšde

79661527

Date: 2025-06-11 07:07:48
Score: 2
Natty:
Report link

Yes, there’s a way to work around Codex-1’s lack of native Dart and Flutter support by writing a setup script that installs the necessary tools before running your commands. Here's a shell script that’s been shared by developers facing the same issue:

#!/bin/bash
set -ex
# Install Flutter SDK
FLUTTER_SDK_INSTALL_DIR="$HOME/flutter"
git clone https://github.com/flutter/flutter.git -b stable "$FLUTTER_SDK_INSTALL_DIR"
# Set up environment variables
export PATH="$FLUTTER_SDK_INSTALL_DIR/bin:$PATH"
echo "export PATH=\"$FLUTTER_SDK_INSTALL_DIR/bin:\$PATH\"" >> ~/.bashrc
# Precache Flutter binaries
flutter precache
# Navigate to your project directory
PROJECT_DIR="/workspace/[your_project_name]"
cd "$PROJECT_DIR"
# Get dependencies and run code generation
flutter pub get
flutter gen-l10n
flutter packages pub run build_runner build --delete-conflicting-outputs
# Run tests
flutter test

Replace [your_project_name] with your actual project folder. This script installs Flutter, updates the path, fetches dependencies, and runs tests — all in one go.

That said, some users have reported that Codex still struggles to execute test commands even after setup. If that’s the case, you might consider running tests outside Codex in a CI/CD pipeline or local dev environment and using Codex primarily for code generation and editing.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: Shahid Afridi

79661524

Date: 2025-06-11 07:02:46
Score: 0.5
Natty:
Report link

the %cmdcmdline% approach winds up yielding the same 'shell execute' style path under the special context where a custom Windows filetype (cmd.exe ftype command) has been associated with an auto execute file extension (assoc + %PATHEXT%) (here's my own project demonstrating that kind setup, but it's not in scope to include all that code here)

what worked for us is a quickly built util "pids.exe" that provides the nested parent process names, and then using that to check for whether explorer.exe was present, for example:

for /f %%v in ('pids.exe -name -level 3') do if \"%%v\"==\"explorer.exe\" timeout /t 10

permalink to this usage in a demonstrable script

pids will dump a typical usage block when no args are provided and there are a few more flags that might come in handy in slightly different situations

i imagine there are other command line tools already out there doing this, i just couldn't find them with an admittedly light amount of searching

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Beej

79661521

Date: 2025-06-11 07:01:45
Score: 7 đŸš©
Natty: 5.5
Report link

calvincac, has a solution been found?

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

79661518

Date: 2025-06-11 06:58:45
Score: 0.5
Natty:
Report link

the %cmdcmdline% approach winds up yielding the same 'shell execute' style path under the special context where a custom Windows filetype (cmd.exe ftype command) has been associated with an auto execute file extension (assoc + %PATHEXT%) (here's my own project demonstrating that kind setup, but it's not in scope to include all that code here)

what worked for us is a quickly built util "pids.exe" that provides the nested parent process names, and then using that to check for whether explorer.exe was present, for example:

for /f %%v in ('pids.exe -name -level 3') do if \"%%v\"==\"explorer.exe\" timeout /t 10

permalink to this usage in a demonstrable script

pids will dump a typical usage block when no args are provided and there are a few more flags that might come in handy in slightly different situations

i imagine there are other command line tools already out there doing this, i just couldn't find them with an admittedly light amount of searching

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Beej

79661512

Date: 2025-06-11 06:53:42
Score: 6 đŸš©
Natty: 5.5
Report link

We have similar case, we need history of changes, but after specific period of time (e.g. 6 years), we want to remove or anonymize personal data (according to european General Data Protection Regulation, GDPR). Any ideas?

Reasons:
  • Blacklisted phrase (1): Any ideas
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: mery

79661508

Date: 2025-06-11 06:48:40
Score: 8 đŸš©
Natty:
Report link

Same error here! Any idea how to fix it?

Reasons:
  • RegEx Blacklisted phrase (1.5): how to fix it?
  • RegEx Blacklisted phrase (1): Same error
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Diego Isaac FernĂĄndez Conde

79661507

Date: 2025-06-11 06:48:40
Score: 1.5
Natty:
Report link

SparkQoutes.com — Your Daily Dose of Inspiration 🌟

Hey everyone,

If you're someone who loves starting your day with a powerful qoute or sharing meaningful words with others, I’ve got something you'll love!

🎯 SparkQoutes.com is a free platform packed with motivational, love, birthday, life, and success qoutes — all carefully curated to uplift and empower. Whether you're looking for the perfect birthday wish, a qoute to inspire your team, or just something to help you reset your mindset, there's something for you.

đŸ”„ What you’ll find on SparkQoutes.com:

Here’s one of my favorites from the site:

"A single qoute can spark a thousand actions — choose your words wisely."

👉 Check it out here: https://sparkqoutes.com/

Let’s use the power of words to uplift each other. Feel free to share your favorite qoute below — I’d love to read what inspires you too!

**Stay motivated,

– The SparkQoutes Team ✹**

Reasons:
  • Blacklisted phrase (0.5): Check it out
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: alpha321

79661506

Date: 2025-06-11 06:47:39
Score: 8 đŸš©
Natty: 5.5
Report link

Horably great to find people struggling with the same problems. Did you ever find a fix for this?

I'm running a CMS Streaming and when chrome stops to ask if I want to continue it kills my streaming. And yes, Auto Refresh Plus does not offer any option to supress that pop-up.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a fix
  • RegEx Blacklisted phrase (1.5): fix for this?
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: DE GVN IT

79661503

Date: 2025-06-11 06:46:39
Score: 2
Natty:
Report link

I have xcode version 16.4
It worked on ios 17.5 but giving error on 18 and above

Reasons:
  • Whitelisted phrase (-1): It worked
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vishal Dhanawade

79661501

Date: 2025-06-11 06:44:38
Score: 1
Natty:
Report link

Challenges with Special Characters in Batch

Handling strings and variables in Batch scripts often presents complex challenges, even in seemingly simple tasks. This is especially true when dealing with special characters like <, &, |, or ", with double quotes being the key element for optimizing the ingenious solution proposed by George Robinson for a question he raised.

These symbols have specific meanings for CMD (the Windows command interpreter) and, if not handled correctly, can cause unexpected errors or undesired behavior.

This analysis explores a classic string manipulation problem in Batch. Due to the strict constraints imposed by the author, the technical challenge becomes complex and non-trivial, demanding both technical insight and command of CMD scripting.


Technical Constraints Defined by the Author

The author imposed a highly restrictive set of challenges for string manipulation in the Batch environment, making the solution more complex. Understanding these four limitations is crucial to grasping the difficulty of the problem.

1. Immutability of the Input

The variable myvar has a predefined value. Its initial definition, shown below, is an immutable aspect of the problem.

    SET myvar="aaa<bbb"

This means any solution must account for the double quotes and the < character present in this initial value — in other words, this line of code cannot be modified.

2. Restriction on Using System Files

Creating temporary files to assist in processing is not allowed. This invalidates common techniques, such as:

3. Restriction on the FOR Command

The powerful FOR command was disallowed, eliminating loops that would facilitate character-by-character string manipulation.

4. Prohibition of Delayed Expansion

The SETLOCAL EnableDelayedExpansion command and variables with ! are not allowed, excluding a fundamental tool for advanced variable manipulation in Batch.


Why Do These Constraints Make the Problem Difficult?

Without these restrictions, the solution would be simple. For example, the code below (which uses delayed variable expansion, restricted by the author) would solve the problem directly and concisely:

    SETLOCAL EnableDelayedExpansion
    SET "xxx=!myvar:~1,-1!"
    ECHO !xxx!

With the restrictions he imposed, the author was left with few options, leading him to devise a creative solution using only:


The Proposed Solution and Its Optimizations

The solution found by the author himself, which meets all the restrictions, uses two intermediate variables to achieve the goal.

    SET xxx=%myvar:<=^^^<%
    SET zzz=%xxx:"=%
    ECHO %zzz%

Delimiting the assignment with double quotes, as in SET "variable=value", allows for safer handling of the value, eliminating the need for a second intermediate variable.

    SET "xxx=%myvar:<=^^^<%"
    ECHO %xxx:"=%

Why Is Delimiting the Parameter with Quotes Superior?

The key to this optimization lies in how CMD processes the command line. By using SET "variable=value", the outer double quotes act as a clear delimiter for the SET command. CMD then interprets everything inside these double quotes as the argument to be assigned to the variable, ensuring two crucial benefits:

In contrast, when the parameter is not delimited with double quotes (SET variable=unquoted_value), CMD parses the entire content before passing it to the SET command. If the value contains double quotes or other unescaped special characters, CMD may interpret them as part of command syntax or redirection operators, leading to errors or unintended retention of double quotes in the final variable value.

This difference makes Batch scripts more robust and predictable, especially when dealing with strings and special characters.

Conclusion

Handling strings containing special characters in Batch scripts demands a deep understanding of the Windows command interpreter’s behavior, particularly with symbols like <, &, |, and ". The approach presented clearly demonstrates how creativity and advanced string manipulation techniques in CMD can overcome significant limitations, making automation more robust and predictable.

However, it is crucial to acknowledge that, given Batch’s parsing complexities and structural constraints — especially in the absence of Delayed Expansion — achieving truly secure and reliable handling of arbitrary string inputs remains a persistent challenge. This is largely due to CMD’s tendency to interpret special characters in unexpected ways, a direct consequence of its parsing model. Consequently, while ingenious solutions exist, the predictability and reliability of automation are more reliably achieved under controlled conditions — such as by carefully avoiding problematic characters or applying specific escaping techniques.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: JoĂŁo Mac

79661500

Date: 2025-06-11 06:44:38
Score: 1.5
Natty:
Report link

I'm afraid that ComponentCollection may not be used to integrate third-party React components within the SurveyJS Form Library. To integrate a third-party React component within SurveyJS Form Library, implement a custom question model and rendrerer which would render your EditView. Please follow this tutorial: Integrate Third-Party React Components

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: JaneJane

79661496

Date: 2025-06-11 06:40:37
Score: 2.5
Natty:
Report link

After check, Google App Script will redirect the response for doPost, and this is not supported by Google Appsheet.
https://www.googlecloudcommunity.com/gc/AppSheet-Q-A/Use-return-values-from-webhooks-conversion-error/m-p/772956/highlight/true

So the workaround is to change the Webhook to Call Google App Script directly.

BTW, the original idea is proposed by AI so it doesn't know this limitation and cost me a day.

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

79661494

Date: 2025-06-11 06:39:37
Score: 0.5
Natty:
Report link

The order of FirebaseApp.configure() and GMSServices.provideAPIKey() can matter. Try this sequence:

GMSServices.provideAPIKey("YOUR_GOOGLE_MAPS_API_KEY") 
FirebaseApp.configure()
Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MQ Tech Support

79661485

Date: 2025-06-11 06:31:34
Score: 1
Natty:
Report link

The Manifest.toml file updates when you do certain things in Julia:

  1. Adding a package

  2. Removing a package

  3. Updating packages

  4. If you use a different Julia version than the project version.

  5. Editing a package locally can add a special path to Manifest.toml.

So I think you can check if the versions are same and avoid modify packages unless it is necessary.

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

79661484

Date: 2025-06-11 06:30:34
Score: 3
Natty:
Report link

I believe now both Apple & Google allow for alternate billing

Google Play: https://developer.android.com/google/play/billing/alternative

Apple: https://developer.apple.com/support/apps-using-alternative-payment-providers-in-the-eu/

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

79661481

Date: 2025-06-11 06:29:34
Score: 1
Natty:
Report link

`Thread.Sleep()` blocks the current thread and should be avoided in most applications, especially UI (WinForms/WPF) or ASP.NET apps, as it can freeze the interface or waste server threads.

This code for sleep current thread for 10 second.

System.Threading.Thread.Sleep(10); 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mangesh Panchal

79661478

Date: 2025-06-11 06:25:32
Score: 3.5
Natty:
Report link

Could you specify the exact SCADA / historian product (and version) you’re using?

Different vendors expose different protocols—OPC UA, MQTT, proprietary SQL APIs, etc.—and several of them already ship with Azure connectors or can publish straight to IoT Hub/Event Hubs without a separate broker.

For most OT applications just MQTT or OPC UA Publisher is good enough. Why do you need the throughput of Kafka in your application?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Gokul Nath

79661476

Date: 2025-06-11 06:24:32
Score: 1.5
Natty:
Report link

It seems like there is some compatibility conflicts with your libraries. I tried to replicate the code and its working fine in the latest versions of tensorflow and keras. So, Please try to upgrade the tensorflow to the latest version. Kindly refer to this gist and this Tested build configurations to use compatible versions.

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

79661473

Date: 2025-06-11 06:22:31
Score: 2
Natty:
Report link

SELECT

COUNT(CASE WHEN Status = 'Pending' THEN 1 END) AS Pending,

COUNT(CASE WHEN Status = 'Delivered' THEN 1 END) AS Delivered,

COUNT(CASE WHEN Status = 'Cancelled' THEN 1 END)

AS Cancelled FROM Orders;

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

79661471

Date: 2025-06-11 06:19:30
Score: 5.5
Natty:
Report link

Had the same problem today, caused by a update of the (external) server API which changed its CORS settings.

Looking at the network tab of the developer tools in the browser made it seem like everything was OK (200), only in the console it showed the problem.

Further reads which helped me find the problem:

CORS - Is it a client-side thing, a server-side thing, or a transport level thing?

How to solve 'Redirect has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header'?

Reasons:
  • Blacklisted phrase (1): How to solve
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: devbf

79661465

Date: 2025-06-11 06:12:29
Score: 2.5
Natty:
Report link

If you want laravel to reload code/blade as soon as running a job, you need to use queue:listen instead of queue:work.

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

79661455

Date: 2025-06-11 06:00:25
Score: 2.5
Natty:
Report link

Just use search() method and it will stop at the first match.

The python uses

import re

re.search(r'somepattern', string)

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

79661449

Date: 2025-06-11 05:56:24
Score: 0.5
Natty:
Report link

Laravel Pint doesn't have a configurable option to use tabs instead of spaces. Instead of Pint, you can use PHP CS Fixer directly with a custom configuration that disables indentation rules.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Motunrayo Koyejo

79661448

Date: 2025-06-11 05:55:24
Score: 1
Natty:
Report link

You need to have a selectedNodes array and it should work:


<p-tree [value]="myObjectNodes" selectionMode="checkbox" [(selection)]="selectedObjectNodes" />
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: danielzenzen

79661445

Date: 2025-06-11 05:54:23
Score: 0.5
Natty:
Report link

You can also use RandomAccessFile:

try (final RandomAccessFile raf = new RandomAccessFile("fileToTruncate", "rw")) {
    final long size = raf.length();
    if (size > 0) {
        raf.setLength(size - 1);   
    }
} catch (final IOException ignored) {
  
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Leponzo

79661442

Date: 2025-06-11 05:50:22
Score: 2
Natty:
Report link

It seems like you haven't created the symbolic link between storage/app/public and public/storage. Laravel requires this link to make files stored in storage/app/public accessible via the web. Run this command - php artisan storage:link . You can read more about the link here

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Motunrayo Koyejo

79661421

Date: 2025-06-11 05:18:15
Score: 2
Natty:
Report link
  1. Open the app settings. (You will see this list)

  2. Go to Open by Default List item. (This screen will open)

  3. Enable the Open supported links and add the links by tapping on (+ Add Link). (See image)

  4. Now, you can tap on the links, it will open the app.

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

79661417

Date: 2025-06-11 05:15:14
Score: 1
Natty:
Report link

You should restart web server for example apache, nginx, lsws, and so on and just have to restart the page of browser.

# systemctl restart httpd

If you use nginx, don't forget to restart php-fpm.

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

79661415

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

I think I could reproduce your 403 exception. Try to add @ResponseBody annotation on the POST method in the controller.

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

79661414

Date: 2025-06-11 05:09:13
Score: 2
Natty:
Report link

Looks like 9.0.2 version of Elasticsearch is not compatible with ElasticsearchSinkConnector.

Once I switched to 8.x version (8.12.0) everything started to worked.

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

79661411

Date: 2025-06-11 05:08:12
Score: 2.5
Natty:
Report link

In fact you would just need to install aardvark-dns via the package manager of your distribution (thanks to podman issue tracker issue 15848):

ArchLinux/Manjaro: sudo pacman -S aardvark-dns

Debian/Ubuntu: sudo apt install aardvark-dns

And the warning goes away.

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

79661409

Date: 2025-06-11 05:03:11
Score: 0.5
Natty:
Report link

Try using:

Select::make('relationship')
    ->hidden()
    ->saveRelationshipsWhenHidden()

It's nowhere in the documentation but it does exactly it says. Also available is:

Select::make('relationship')
    ->disabled()
    ->saveRelationshipsWhenDisabled()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: salmanhijazi

79661407

Date: 2025-06-11 04:55:10
Score: 3
Natty:
Report link

Adding below code to program.cs resolved my issue:

builder.Services.AddHttpClient();

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

79661406

Date: 2025-06-11 04:55:10
Score: 2.5
Natty:
Report link

Good read. I also use a step in my task sequence that does the import - module and oddly it works amazingly in all models except recently not on the Lenovo M920s. When the step runs, the screen goes blank and then nothing. Not sure why, but this only happens when I image that model. I ended up creating a second TS that does not use that step. I use this so I can do a auto computer name generator that pulls the last five of the serial number, then adds the device to AD in a specific OU based on the device type. The process also checks of the device already exists in AD and prompts if this is reimage to check a box. Anyone experienced this blank screen issue? I am going to try rebuilding the package with new nuget and see if that helps.

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

79661401

Date: 2025-06-11 04:49:08
Score: 0.5
Natty:
Report link

For me this was occurring due to the way WSL handles files, it seems to conflict with the way pnpm uses symlinks. To fix this, I set the node linker to be hoisted.

In .npmrc file in the root of your project add the line

node-linker=hoisted
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Josh

79661398

Date: 2025-06-11 04:42:07
Score: 2.5
Natty:
Report link

Bigtable now supports Continuous Materialized Views for write-time, incrementally processed pre-aggregations and SQL GROUP BYs for read-time aggregations which make these kind of operations much easier.

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

79661397

Date: 2025-06-11 04:41:06
Score: 2.5
Natty:
Report link

I tried my code in another laptop, it worked flawlesly. There must be something wrong with my work-laptop

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Petri Lahtinen

79661396

Date: 2025-06-11 04:40:06
Score: 0.5
Natty:
Report link

This answer is written in Jun ,2025.

solution for me was to upgrade both compileSdkVersion and targetSdkVersion in build.gradle app level.
to 33

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Ű”Ù„ÙŠ Űčلي Ù…Ű­Ù…ŰŻ - Atef Farouk

79661390

Date: 2025-06-11 04:30:03
Score: 5
Natty: 4
Report link

Any luck on this? It seems like a silly thing to be missing if there really is no full screen option

Reasons:
  • Blacklisted phrase (1.5): Any luck
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ryan M

79661387

Date: 2025-06-11 04:28:02
Score: 3
Natty:
Report link

There is no free api for DL and Vehicle Details. For prod we can give details at low cost. if needed let me know.

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

79661382

Date: 2025-06-11 04:18:00
Score: 3.5
Natty:
Report link

I've just opened their properties and made them 'Hidden' so I don't see them. :)

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

79661378

Date: 2025-06-11 04:15:59
Score: 0.5
Natty:
Report link
loginUsername = input("Cunso: ")
loginPassword = input(" JanganDibuka#08")

data=open('database.txt', 'r')
accounts = data.readlines()

for line in data:
    accounts = line.split(",")
    if (loginUsername == accounts[0] and loginPassword == accounts[1]):
        print("LOGGED IN")
    else:
        print("Login SUCCES")

print(accounts)

How to check the username in text file or not and then ask for the password?
Asked 2 years, 7 months ago
Modified 2 years, 7 months ago
Viewed 3k times
2

loginUsername = input("Enter Username: ")
loginPassword = input("Enter PASSWORD: ")

data=open('database.txt', 'r')
accounts = data.readlines()

for line in data:
    accounts = line.split(",")
    if (loginUsername == accounts[0] and loginPassword == accounts[1]):
        print("LOGGED IN")
    else:
        print("Login FAILED")

print(accounts)
I want to make a text login system, which will ask for the username first. After checking the text file which stored username and password, the system will ask for password. But I don't know how to read the first column (which is username, the structure of the text file is "username, password"). If i use readlines() and split(","). But there is "n" at the end of the password.

pythonjupyter-notebook
Share
Improve this question
Follow
asked Nov 8, 2022 at 12:56
Mike's user avatar
Mike
2111 silver badge22 bronze badges
What is: accounts = data.readlines()? Surely this exhausts the file. – 
quamrana
 CommentedNov 8, 2022 at 13:09
Welcome to stackoverflow Mike. If the answer you received solved your issue, you can mark it as "correct", by clicking on the check mark beside the answer, to toggle it from greyed out to filled in. – 
Andreas Violaris
 CommentedNov 8, 2022 at 21:04 
Add a comment

Report this ad
2 Answers
Sorted by:

Highest score (default)
3

# You should always use CamelCase for class names and snake_case
# for everything else in Python as recommended in PEP8.
username = input("Cunso: ")
password = input("JanganDibuka#08: ")

# You can use a list to store the database's credentials.
credentials = []

# You can use context manager that will automatically
# close the file for you, when you are done with it.
with open("database.txt") as data:
    for line in data:
        line = line.strip("\n")
        credentials.append(line.split(","))

authorized = False

for credential in credentials:
    db_username = credential[0]
    db_password = credential[1]
    if username == db_username and password == db_password:
        authorized = True

if authorized:
    print("Login Succeeded.")
else:
    print("Login Failed.")

mystring = "password\n"
print(mystring.rstrip())

>>> 'password'
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1.5): You can use
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Cunso

79661377

Date: 2025-06-11 04:15:59
Score: 1.5
Natty:
Report link

I had a similar issue but mine DB column definition is int2, so I had to use ::smallint to cast the type.

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

79661373

Date: 2025-06-11 04:11:58
Score: 3.5
Natty:
Report link

enter image description hereI have created a username with a password and still left 3 other "root" users, I really do not want

someone login from outside to my database, so with "root I can delete or modify privileges (how so) to

accomplish this?

I attached a picture.

Get back....

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Gennady G.

79661370

Date: 2025-06-11 04:08:57
Score: 1
Natty:
Report link

Okay, if you want to split a set of N features (F) into two complementary subsets (S1, S2), and you have a complementarity score C(f_i, f_j) between any two features f_i and f_j:

Goal is to Maximize the total complementarity between S1 and S2.
say, Total_Complementarity(S1, S2) = sum(C(f_i, f_j) for f_i in S1 for f_j in S2)

Greedy Algorithm:

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

79661368

Date: 2025-06-11 04:07:57
Score: 2.5
Natty:
Report link

Your looking at documentation for Basic Display API. Graph API does not allow refresh of long lived tokens, instead you need to create a permanent token via a System User in Business Manager, assigned to your Meta App with the appropriate assets and permissions, and generate a System User access token using an App ID, App Secret, and the system user’s generated token

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

79661358

Date: 2025-06-11 03:49:52
Score: 4.5
Natty:
Report link

Solution provided by @Phil in the comment section. Update base config as well as router's basename with my app name, then update Tomcat config as mentioned in this post

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Phil
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: EcmaScriptIsMyNativeLanguage

79661351

Date: 2025-06-11 03:40:49
Score: 2.5
Natty:
Report link

Just type { ...localStorage } in the devtools to see all values. Its the same to sessionStorage.

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

79661347

Date: 2025-06-11 03:32:47
Score: 1.5
Natty:
Report link

Note that with autoconf+automake, CFLAGS belongs to the end-user, not the package developer or the package system. Your changes belong in AM_CFLAGS, AM_CXXFLAGS, AM_CPPFLAGS, AM_LDFLAGS where the end-user can override them with the non-AM_ variables on the configure command line or in the environment when configure is run. For details, see:

https://www.gnu.org/software/automake/manual/html_node/Flag-Variables-Ordering.html

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

79661337

Date: 2025-06-11 03:19:44
Score: 16
Natty: 7.5
Report link

I have the same problem, do you know how to solve it?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (1.5): how to solve it?
  • RegEx Blacklisted phrase (2.5): do you know how
  • RegEx Blacklisted phrase (2): know how to solve
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Trí Đào Minh