79107997

Date: 2024-10-20 20:29:16
Score: 5
Natty: 5
Report link

I tried using react-thermal-printer on my Next.js app to print a receipt in Sunmi v2 but it didn't work. Anyone with a solution to this?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rollins Shadrack

79107977

Date: 2024-10-20 20:18:13
Score: 4
Natty:
Report link

I have found a single-line solution for this and related errors in projects using NestJS + Deno + GraphQL + npm packages. Other solutions were not working for me. Hence, sharing it here, as it might help someone save some time. It may be relatable to projects using other runtimes like bun, node.

You can find the detailed answer here >> https://stackoverflow.com/a/79107940/13607767

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (3): not working for me
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mehedi

79107965

Date: 2024-10-20 20:12:11
Score: 4
Natty:
Report link

I have found a single-line solution for this and related errors in projects using NestJS + Deno + GraphQL + npm packages. Other solutions were not working for me. Hence, sharing it here, as it might help someone save some time. It may be relatable to projects using other runtimes like bun, node.

You can find the detailed answer here >> https://stackoverflow.com/a/79107940/13607767

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (3): not working for me
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mehedi

79107957

Date: 2024-10-20 20:07:09
Score: 4
Natty:
Report link

I found a solution. I will not add duplicate Airlines. Thanks for your help.

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

79107857

Date: 2024-10-20 19:13:55
Score: 5
Natty: 4
Report link

you can follow this: https://youtu.be/MCEKCBA7zGk

Hope it helps,

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): youtu.be
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Adil Akbar

79107808

Date: 2024-10-20 18:48:47
Score: 4.5
Natty:
Report link

I updated my python to latest version from official python website on recommendation of @stark-jarvis, and that helped me. Thanks @stark-jarvis.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @stark-jarvis
  • User mentioned (0): @stark-jarvis
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sahil Rajput

79107796

Date: 2024-10-20 18:42:46
Score: 5
Natty:
Report link

I am still getting the same issue as Jon.

This is my Pom.xml

    <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>3.3.4</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.trojan</groupId>
    <artifactId>login-server</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>login-server</name>
    <description>login-server</description>
    <url/>
    <licenses>
        <license/>
    </licenses>
    <developers>
        <developer/>
    </developers>
    <scm>
        <connection/>
        <developerConnection/>
        <tag/>
        <url/>
    </scm>
    <properties>
        <java.version>17</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>com.mysql</groupId>
            <artifactId>mysql-connector-j</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>io.projectreactor</groupId>
            <artifactId>reactor-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.jetbrains</groupId>
            <artifactId>annotations</artifactId>
            <version>RELEASE</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>io.jsonwebtoken</groupId>
            <artifactId>jjwt</artifactId>
            <version>0.9.1</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.session</groupId>
            <artifactId>spring-session-core</artifactId>
            <version>3.2.1</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-logging</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-oauth2-client</artifactId>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>com.google.cloud.tools</groupId>
                <artifactId>jib-maven-plugin</artifactId>
                <version>3.3.0</version> <!-- Update to the latest version -->
                <configuration>
                    <from>
                        <image>openjdk:17-jdk-slim</image>
                    </from>
                    <to>
                        <image>trojan2877/login-server</image>
                    </to>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

Can someone please help out here.

Reasons:
  • RegEx Blacklisted phrase (3): please help
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): getting the same issue
  • Low reputation (1):
Posted by: yourandroidude 123

79107766

Date: 2024-10-20 18:29:42
Score: 4
Natty:
Report link

I'm not entirely sure what you're trying to accomplish, but why can't you write a single converter that - when called - branches to use one or the other way to deserialize, based on a global variable that represents the environment the code is running in?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Bram

79107746

Date: 2024-10-20 18:19:38
Score: 8.5 🚩
Natty: 5
Report link

I do have the same question. Can someone help here

Reasons:
  • RegEx Blacklisted phrase (3): Can someone help
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same question
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: linuxkaran

79107713

Date: 2024-10-20 18:06:35
Score: 4
Natty:
Report link

I have the same issue. Once you purchase a subscription, it works fine, but when the user plans to downgrade a subscription, the currentEntitlements will only list the active one, which might not be expired yet. Due to this the user does not see the updated subscription period.

I guess your users have the same issue. Once the current subscription period expired, the changed subscription will appear automatically.

I have found some suggestions, but cannot code it. autoRenewalPreference should show the updated productid for the next coming subscription product, so the downgraded one, but cannot figure out how to get this value from code.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Me too answer (0): have the same issue
  • Low reputation (0.5):
Posted by: Endre Olah

79107692

Date: 2024-10-20 17:58:30
Score: 13.5 🚩
Natty: 6.5
Report link

Did somebody got the autoRenewPreference working? I cannot find out how this should be used. When I downgrade a subscription, the currentEntitlement is only giving the right value, when the actual subscription is expired. This gives a false feeling of the user as in the meantime the subscription is downgraded.

Appstore is showing this properly, so there must be a way to get this out fro the jungle.

Any suggestion, code sample? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (3): Did somebody got the
  • RegEx Blacklisted phrase (2): Any suggestion
  • RegEx Blacklisted phrase (2): working?
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Did somebody
  • Low reputation (1):
Posted by: Endre Oláh

79107633

Date: 2024-10-20 17:25:22
Score: 8
Natty: 7
Report link

Can I contact you via telegram. If so, can I have your link?

Reasons:
  • Blacklisted phrase (2): Can I contact
  • 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 I
  • Low reputation (1):
Posted by: Otec Lee

79107594

Date: 2024-10-20 17:04:18
Score: 5
Natty: 3.5
Report link

I am trying scrape the info here too. If you succeeded, please contact me.

Reasons:
  • Blacklisted phrase (0.5): contact me
  • Blacklisted phrase (1): please contact me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Azamat Yessimkhanuly

79107592

Date: 2024-10-20 17:03:17
Score: 4
Natty:
Report link

enter image description here

I couldn't see the First row uncheck option of Sink properties

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

79107569

Date: 2024-10-20 16:53:14
Score: 4
Natty: 5
Report link

By using export ANSIBLE_HOST_KEY_CHECKING=False all works on Ubuntu. Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: pafcio

79107550

Date: 2024-10-20 16:46:10
Score: 8.5 🚩
Natty:
Report link

What is the problem here? Could you please share your problem here?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you please share your
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What is the
  • Low reputation (1):
Posted by: Dipesh Khanal

79107476

Date: 2024-10-20 16:03:00
Score: 4
Natty:
Report link

Please take a look at this flow diagram for your reference , this is what we are trying to achieve

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

79107462

Date: 2024-10-20 15:55:58
Score: 5.5
Natty:
Report link

I am also getting this issue. Here is my compile output. Please help me to fix this issue.

20:47:28: Running steps for project qtservice... 20:47:28: Configuration unchanged, skipping qmake step. 20:47:28: Starting: "C:\Qt\qtcreator-4.6.0-rc1\bin\jom.exe" cd examples\ && ( if not exist Makefile E:\C_Drive\QT5.15.2\5.15.2\msvc2015_64\bin\qmake.exe -o Makefile "D:\Work\Work_Qt_old\Qt-116\Qt116 Service\qtservice\examples\exam ples.pro" -spec win32-msvc "CONFIG+=debug" "CONFIG+=qml_debug" ) && C:\Qt\qtcreator-4.6.0-rc1\bin\jom.exe -f Makefile cd interactive\ && ( if not exist Makefile E:\C_Drive\QT5.15.2\5.15.2\msvc2015_64\bin\qmake.exe -o Makefile "D:\Work\Work_Qt_old\Qt-116\Qt116 Service\qtservice\examples\interactive\interactive.pro" -spec win32-msvc "CONFIG+=debug" "CONFIG+=qml_debug" ) && C:\Qt\qtcreator-4.6.0-rc1\bin\jom.exe -f Makefile C:\Qt\qtcreator-4.6.0-rc1\bin\jom.exe -f Makefile.Debug link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='' processorArchitecture=''" /MANIFEST:embed /OUT:debug\interactive.exe @C:\Users\Sikander_PC\AppData\Local\Temp\interactive.exe.748.0.jom LINK : fatal error LNK1181: cannot open input file 'debug\main.obj' jom: D:\Qt_builds\qtservice-Debug\examples\interactive\Makefile.Debug [debug\interactive.exe] Error 1181 jom: D:\Qt_builds\qtservice-Debug\examples\interactive\Makefile [debug] Error 2 jom: D:\Qt_builds\qtservice-Debug\examples\Makefile [sub-interactive-make_first] Error 2 cd server\ && ( if not exist Makefile E:\C_Drive\QT5.15.2\5.15.2\msvc2015_64\bin\qmake.exe -o Makefile "D:\Work\Work_Qt_old\Qt-116\Qt116 Service\qtservice\examples\server\server.pro" -spec win32-msvc "CONFIG+=debug" "CONFIG+=qml_debug" ) && C:\Qt\qtcreator-4.6.0-rc1\bin\jom.exe -f Makefile C:\Qt\qtcreator-4.6.0-rc1\bin\jom.exe -f Makefile.Debug link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='' processorArchitecture=''" /MANIFEST:embed /OUT:debug\httpservice.exe @C:\Users\Sikander_PC\AppData\Local\Temp\httpservice.exe.8736.15.jom cd controller\ && ( if not exist Makefile E:\C_Drive\QT5.15.2\5.15.2\msvc2015_64\bin\qmake.exe -o Makefile "D:\Work\Work_Qt_old\Qt-116\Qt116 Service\qtservice\examples\controller\controller.pro" -spec win32-msvc "CONFIG+=debug" "CONFIG+=qml_debug" ) && C:\Qt\qtcreator-4.6.0-rc1\bin\jom.exe -f Makefile C:\Qt\qtcreator-4.6.0-rc1\bin\jom.exe -f Makefile.Debug link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:CONSOLE "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='' processorArchitecture=''" /MANIFEST:embed /OUT:debug\controller.exe @C:\Users\Sikander_PC\AppData\Local\Temp\controller.exe.9244.15.jom LINK : fatal error LNK1181: cannot open input file 'debug\main.obj' jom: D:\Qt_builds\qtservice-Debug\examples\server\Makefile.Debug [debug\httpservice.exe] Error 1181 jom: D:\Qt_builds\qtservice-Debug\examples\server\Makefile [debug] Error 2 LINK : fatal error LNK1181: cannot open input file 'debug\main.obj' jom: D:\Qt_builds\qtservice-Debug\examples\controller\Makefile.Debug [debug\controller.exe] Error 1181 jom: D:\Qt_builds\qtservice-Debug\examples\Makefile [sub-server-make_first] Error 2 jom: D:\Qt_builds\qtservice-Debug\examples\controller\Makefile [debug] Error 2 jom: D:\Qt_builds\qtservice-Debug\examples\Makefile [sub-controller-make_first] Error 2 jom: D:\Qt_builds\qtservice-Debug\Makefile [sub-examples-make_first-ordered] Error 2 20:47:29: The process "C:\Qt\qtcreator-4.6.0-rc1\bin\jom.exe" exited with code 2. Error while building/deploying project qtservice (kit: QT5.15.2MSVC15_64) When executing step "Make" 20:47:29: Elapsed time: 00:00.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): help me to fix
  • RegEx Blacklisted phrase (3): Please help me to fix this
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sikander Rafiq

79107461

Date: 2024-10-20 15:54:55
Score: 6 🚩
Natty:
Report link

Did you ever find a solution?

So far I only got it to work partially. According to this article using a policies.json file would be a somewhat straight forward way to enable the extensions out of the box.

It does indeed work if I install firefox through a linux distributions package manager - it sadly doe not work out of the box when installing firefox as flatpak. So far I tested it for Ubuntu and AlmaLinux. No clue about Windows - haven't tried that so far.

In both cases the installed theme is however sometimes picked up and sometimes not - still trying to figure out why that is happening.

Reasons:
  • Blacklisted phrase (1): this article
  • RegEx Blacklisted phrase (3): Did you ever find a solution
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: philnewm

79107389

Date: 2024-10-20 15:17:46
Score: 5
Natty:
Report link

I ran into this question. I'll answer it just in case others have the same issue. The parent remove() function has a void return type, and an override method must have the same signature as the overridden base method. This is why you are receiving this error.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nandhu Manoj Pillai

79107354

Date: 2024-10-20 14:57:40
Score: 4
Natty:
Report link

seems I don't have enough credit to comment, now I try to answer. Thanks for Cory's answer, and that information could be found in "Dataset Format" section in VTK documentation: https://docs.vtk.org/en/latest/design_documents/VTKFileFormats.html#dataset-format

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): to comment
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Guangpu Yi

79107344

Date: 2024-10-20 14:52:39
Score: 5
Natty:
Report link

how about this, "adb install -d" command does not work

adb install -d not work

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how
  • Low reputation (1):
Posted by: audient

79107296

Date: 2024-10-20 14:27:34
Score: 4.5
Natty:
Report link

Neither of the solutions worked.

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

79107163

Date: 2024-10-20 13:37:20
Score: 12.5 🚩
Natty:
Report link

Did you found the solution i have same problem?

Reasons:
  • Blacklisted phrase (1): i have same problem
  • RegEx Blacklisted phrase (3): Did you found the solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Muhammed Safwat

79107119

Date: 2024-10-20 13:18:13
Score: 6 🚩
Natty: 5
Report link

I learned a lot from your answer. Is it possible to introduce me a practical book for learning UML in software modeling?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tony

79107022

Date: 2024-10-20 12:23:59
Score: 5
Natty:
Report link

I have this problem too and use this and it working for me, you can try it : https://github.com/expo/expo/issues/18150

Reasons:
  • Blacklisted phrase (1): I have this problem
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: shayan farshad

79106954

Date: 2024-10-20 11:45:52
Score: 4
Natty:
Report link

Thank you all for the suggestions! adding -static to the second command solved the problem.

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

79106888

Date: 2024-10-20 11:08:43
Score: 5
Natty: 5
Report link

for http requests , can it be used to determine that there are non zero number of bytes present in the input stream ?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sameer Kulkarni

79106877

Date: 2024-10-20 10:57:40
Score: 4.5
Natty: 6.5
Report link

yoo no way fellow FIITkar? //////

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

79106867

Date: 2024-10-20 10:51:36
Score: 6.5 🚩
Natty: 6
Report link

thanks for sharing, trying the same on digitalocean but unfortunately cannot get it working.

How did you specify the apisix configmap? On the dataPlane or ingressController with/without "extraConfig"?

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (2): thanks for sharing
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: FatTony

79106853

Date: 2024-10-20 10:41:34
Score: 4.5
Natty: 6
Report link

I also had the same problem. Use this plugin. It works https://github.com/File5/intellij-idea-guidesigner-plugin

Reasons:
  • Blacklisted phrase (1): this plugin
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Martin D

79106841

Date: 2024-10-20 10:35:32
Score: 4
Natty: 6.5
Report link

Thanks, this worked for me. I am just wondering, how can I convert the bold Unicode characters to normal text? so that when I get the header text of the item, I want to convert the text back to its normal text and not the bolded characters. Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): how can I
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Roderick Latoza

79106836

Date: 2024-10-20 10:34:32
Score: 4
Natty:
Report link

in the menu Build -> Rebuild Project

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Naghi Khalilnejad Kiasari

79106755

Date: 2024-10-20 09:55:21
Score: 8.5 🚩
Natty: 6
Report link

How did you manage to get the response after clicking on Googe login? In my case, I have tried it and everytime I click on Google login, it redirects me to Sign in with Google but it shows me error: Access Blocked: Authorization Error.

any idea?

Reasons:
  • Blacklisted phrase (1): any idea?
  • RegEx Blacklisted phrase (3): did you manage to get the
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How did you
  • Low reputation (1):
Posted by: Taha Sheikh

79106697

Date: 2024-10-20 09:16:11
Score: 6.5 🚩
Natty:
Report link

I have a text file which has the following input

ST Loan 2023 RABI DMR Report KOTA DCCB, RAMGANJ MANDI BRANCH BRANCH, KHEEMACH PACS Application No. BL00181453 Bhamashah No. 9999-YA5Z-00007 DMR A/c No. DMR27000000925542 Customer Name SUNITA Father's Name GAJANAND Caste GEN Farmer Type LARGE Crop RABI Share Capital Rs. 9,600.00 Agri Insurance Rs. 3,084.83 Life Insurance Rs. 0.00 Accidental Insurance Rs. 0.00 MCL Amt. Rs. 119,225.00 Sanctioned Amt. Rs. 116,229.00 TRANSACTION DETAILS Transaction Date Description Debit Credit Outstanding Balance (Dr) Remaining Limit 08-02-2024 DR PACS MAIN TO CR SB : 2700711154005777 - TRANSFER WITHDRAW 92,430.00 0.00 92,430.00 23,799.00 28-03-2024 AGRI INSURANCE DR FROM PACSMAIN:27007610640004900 - - 1,296.83 0.00 93,726.83 22,502.17 13-06-2024 CR FROM PACS MAIN:2700761064000490 - MATM AGT CR OR NO BOOK DEPOSIT TRANSFER 0.00 93,726.83 0.00 116,229.00 13-06-2024 DR 3% INT FROM DMR ACCT : DMR27000000925542 - - 962.79 0.00 962.79 115,266.21 13-06-2024 CR 3% INT IN DMR ACCT : DMR27000000925542 - - 0.00 962.79 0.00 116,229.00 13-06-2024 DR 4% INT FROM DMR ACCT : DMR27000000925542 - - 1,283.72 0.00 1,283.72 114,945.28 13-06-2024 CR 4% INT IN DMR ACCT : DMR27000000925542 - - 0.00 1,283.72 0.00 116,229.00

and output something

ST Loan 2023 RABI DMR Report KOTA DCCB, RAMGANJ MANDI BRANCH BRANCH, KHEEMACH PACS | None | None | None | None 09-01-2024 DR PACS MAIN TO CR SB : 2700510574004549 - TRANSFER WITHDRAW 29,809.00 0.00 29,809.00 0.00 | SUNITA | GAJANAND | BL00181453 | DMR27000000925542 31-08-2024 CR FROM PACS MAIN:2700561064000199 - MATM AGT CR OR NO BOOK DEPOSIT TRANSFER 0.00 29,809.00 0.00 29,809.00 | SUNITA | GAJANAND | BL00181453 | DMR27000000925542 31-08-2024 DR 3% INT FROM DMR ACCT : DMR27000000912329 - - 574.19 0.00 574.19 29,234.81 | SUNITA | GAJANAND | BL00181453 | DMR27000000925542 31-08-2024 CR 3% INT IN DMR ACCT : DMR27000000912329 - - 0.00 574.19 0.00 29,809.00 | SUNITA | GAJANAND | BL00181453 | DMR27000000925542 31-08-2024 DR 4% INT FROM- DMR ACCT : DMR27000000912329 - - 765.59 0.00 765.59 29,043.42 | SUNITA | GAJANAND | BL00181453 | DMR27000000925542 31-08-2024 CR 4% INT IN DMR ACCT : DMR27000000912329 - - 0.00 765.59 0.00 29,809.00 | SUNITA | GAJANAND | BL00181453 | DMR27000000925542

Can anyone help me to get the output like this ? Can someone write me the powershell code ?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can anyone help me
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Rayan Khan

79106680

Date: 2024-10-20 09:03:05
Score: 6.5 🚩
Natty: 6.5
Report link

I am also suffering from this error>> please help !!

Reasons:
  • RegEx Blacklisted phrase (3): please help
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bhaskar Katara

79106672

Date: 2024-10-20 08:56:03
Score: 4
Natty:
Report link

requests.exceptions.TooManyRedirects: Exceeded 30 redirects.i have this problem during processing InSAR data by licsbas

Reasons:
  • Blacklisted phrase (1): i have this problem
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shaukat Parvaiz

79106644

Date: 2024-10-20 08:31:58
Score: 5.5
Natty:
Report link

phải anh Phú khôngggggggggggggggggggggggggggggggggg

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Filler text (0.5): gggggggggggggggggggggggggggggggggg
  • Low entropy (1):
  • Low reputation (1):
Posted by: Aquarius

79106579

Date: 2024-10-20 07:40:49
Score: 5.5
Natty:
Report link

heloo con cacccccccccccccccccccccccccccccccccccccc

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Filler text (0.5): cccccccccccccccccccccccccccccccccccccc
  • Low entropy (1):
  • Low reputation (1):
Posted by: Aquarius

79106578

Date: 2024-10-20 07:39:48
Score: 4.5
Natty:
Report link

helo fdhfdhaskjhfkjdsahkjfhsiodjf vcnđ

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

79106563

Date: 2024-10-20 07:26:43
Score: 6 🚩
Natty: 5.5
Report link

@nonopolarity All the answers are focusing on just replying to a part of your question i.e. why does react use a virtual dom. But what about the question that After the text changed to “hi” in the actual DOM why did react not change the text back to its original state when the button is clicked after 3 seconds? The virtual dom in react’s memory would have the original text then why didn’t it change in the re-rendering?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @nonopolarity
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Intangible _pg18

79106442

Date: 2024-10-20 06:08:27
Score: 4.5
Natty:
Report link

Just use this library, it will handle everything for you. Read the docs and implement https://github.com/CodeWithTamim/NasaDownloader

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

79106411

Date: 2024-10-20 05:31:19
Score: 4.5
Natty:
Report link

pip install --upgrade jupyter-lsp

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

79106367

Date: 2024-10-20 04:35:08
Score: 5
Natty:
Report link

I don't know but is this pattern you are searching? please let me know I will try to provide another ^(?=[A-Z])(?:(?:[A-Z][a-z0-9!@#$%^&()_+-=,.?;:'"<>/\|`~ ]?)+|\w+)$

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Nymul Islam Moon

79106337

Date: 2024-10-20 04:04:02
Score: 5
Natty:
Report link

i have this error when deploying. {"error":{"message":"Network Error"}}enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): i have this error
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Houston Ho

79106301

Date: 2024-10-20 03:09:52
Score: 4
Natty: 4.5
Report link

Follow-up Q:

I really like the third solution above :Python wrapper for TradingView's Lightweight Charts library

How is this used for a real-time API datafeed so the candles are built in real time?

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

79106278

Date: 2024-10-20 02:40:46
Score: 5
Natty:
Report link

Finally the issue was fixed. I just uninstall the Ladybug version and downgraded to Giraffe (September 2023) version and everything works fine. If you have same problem downgrade your Android Studio.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have same problem
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Somnath Dash

79106132

Date: 2024-10-19 23:36:10
Score: 4.5
Natty:
Report link

Thank you so much mramsath. I'm very new to coding and I had been trying to install the missing gdb for Visual Studio Code for days! And finally reading your answer to Muhammad Shayan Usman's question (thank you also), I've at last managed to use the Command Prompt (which I'd never used before!) and install the whole mingw-w64. I didn't think I was ever going to do it. THANKS AGAIN

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): THANKS
  • RegEx Blacklisted phrase (1.5): I'm very new
  • No code block (0.5):
  • Low reputation (1):
Posted by: Percy F

79106130

Date: 2024-10-19 23:33:09
Score: 4
Natty: 4.5
Report link

Use : CMI Payment Gateway Laravel package https://packagist.org/packages/baidouabdellah/cmi-payment-gateway

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

79106015

Date: 2024-10-19 21:51:48
Score: 7 🚩
Natty: 6
Report link

I imported copy and I still get this name error, any ideas ?

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

79105978

Date: 2024-10-19 21:23:39
Score: 6.5 🚩
Natty: 5
Report link

I have same problem. Embedded Youtube videos are not on autoplay on the website.

Reasons:
  • Blacklisted phrase (1): I have same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same problem
  • Low reputation (1):
Posted by: Simon Giz

79105836

Date: 2024-10-19 20:15:23
Score: 5
Natty: 4
Report link

I am facing problem with #keras importing in #VSCode. I have installed #tensorflow package. I am using python3.12. I have tried so many ways to solve this problem. What should I do ? I can import #tensorflow, the problem is only in importing #keras

Reasons:
  • Blacklisted phrase (2): What should I do
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Zarlala khan

79105768

Date: 2024-10-19 19:38:12
Score: 9.5 🚩
Natty: 4.5
Report link

@Cola_Colin - Which path worked finally? I have similar issue with PouchDB Sqlite Ionic.

Reasons:
  • Blacklisted phrase (1): I have similar
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have similar issue
  • Contains question mark (0.5):
  • User mentioned (1): @Cola_Colin
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: amtoo17

79105762

Date: 2024-10-19 19:35:10
Score: 11.5
Natty: 9
Report link

Can you help me with how exactly the problem was solved?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (1.5): solved?
  • RegEx Blacklisted phrase (3): Can you help me
  • 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 help me with
  • Low reputation (1):
Posted by: Gal_Zoli

79105708

Date: 2024-10-19 19:05:02
Score: 4
Natty: 5
Report link

HOw can I label my x axis in the Altair such that I should be able to find out specific data while I have collased data structure

Reasons:
  • Blacklisted phrase (0.5): HOw can I
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): HOw can I
  • Low reputation (1):
Posted by: anand kshirsagar

79105640

Date: 2024-10-19 18:25:51
Score: 9
Natty: 7.5
Report link

I ran into this same issue. any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Olu Bello

79105594

Date: 2024-10-19 18:00:44
Score: 4.5
Natty: 5.5
Report link

It didn't work for me out of all the things I viewed👍

Reasons:
  • Blacklisted phrase (1): It didn't work for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: to your eternity

79105568

Date: 2024-10-19 17:51:41
Score: 4.5
Natty:
Report link

The response here https://stackoverflow.com/a/79075865/2363850 is what worked for me. Use openssh from choco install.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TheDodd

79105492

Date: 2024-10-19 17:11:32
Score: 5
Natty:
Report link

I was also getting the same issue, i tried the above given solution but it was not work, so i just commented all the lines then it was worked. Can anyone explain why it is needed local.properties

Reasons:
  • RegEx Blacklisted phrase (2.5): Can anyone explain
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Darshan Jadhav

79105470

Date: 2024-10-19 16:59:29
Score: 4
Natty:
Report link

I'm facing exactly the same issue. The number of tokens used doesn't make sense, even following the logic of RAG, where we need to count the tokens of the system prompt + main prompt + chunks. In my case, I'm retrieving 3 chunks of 256 tokens, asking a very small prompt and it results in ~3k tokens. More details here: https://learn.microsoft.com/en-us/answers/questions/2103832/high-token-consumption-in-azure-openai-with-your-d.

Wondering if there are additional steps running under the hood.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): I'm facing exactly the same issue
  • Low reputation (1):
Posted by: Filipa Castro

79105442

Date: 2024-10-19 16:47:24
Score: 6.5 🚩
Natty:
Report link

I have this problem too. Do you find and way to solve this

Reasons:
  • Blacklisted phrase (1): I have this problem
  • RegEx Blacklisted phrase (2.5): Do you find an
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Idrees Idrees

79105426

Date: 2024-10-19 16:38:22
Score: 5
Natty:
Report link

Following the syntax error, I decided to actually implement IIncrementalGenerator: [...]

However, even then, the same exact error is still reported.

Yes, of course, because you are still using GeneratorExecutionContext. The error told you in no uncertain terms that it is verboten to use GeneratorExecutionContext.

How can I solve this issue?

Do not use GeneratorExecutionContext.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • RegEx Blacklisted phrase (1.5): How can I solve this issue?
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: DamselInDress

79105425

Date: 2024-10-19 16:37:21
Score: 5
Natty:
Report link

In GCP, VPC networks, including their associated routes and firewall rules, are global resources. They are not associated with any particular region or zone. Therefore, I'm not able to specify different regions for the VPCs.

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

79105421

Date: 2024-10-19 16:33:20
Score: 4.5
Natty:
Report link

SOLVED: I am dumb and misreaded \ and /

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

79105377

Date: 2024-10-19 16:15:14
Score: 4
Natty:
Report link

My name is Zubayr. I am job programmer. I am not married. I am student. I am 12 years old. My hobby reading book and movie. I am from Uzbekistan. I am birthday 21 January. Questions; What are the codes? Which programming laguage should I choose first?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Zubayr Mavjudaliyev

79105342

Date: 2024-10-19 15:56:08
Score: 6.5 🚩
Natty: 5.5
Report link

How to change the display name?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Delinger Blanco

79105292

Date: 2024-10-19 15:33:02
Score: 5
Natty: 4
Report link

Looking for TEREA Dubai? Find premium IQOS-compatible heatsticks and enhance your experience with the best options available in the UAE.

Reasons:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TEREA Dubai

79105274

Date: 2024-10-19 15:23:59
Score: 4.5
Natty: 6
Report link

what is the difference between pnpm dlx vs pnpm exec?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): what is the
  • Low reputation (0.5):
Posted by: gftea

79105195

Date: 2024-10-19 14:51:51
Score: 4.5
Natty: 5.5
Report link

what if i used a link like this "https://gifted-satoshi.192-185-7-210.plesk.page.192-185-7-210.hgws27.hgwin.temp.domains/api/ProveAttachmentApi/open-prove-attachment/765b0ad0-20c5-4a99-f798-08dcef7f61b1"

it doesn't have the extension at the end of it , will it work ?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): what if i use
  • Low reputation (1):
Posted by: Mahamed Mando

79105161

Date: 2024-10-19 14:34:47
Score: 4.5
Natty:
Report link

did I find a solution? I'm looking for a solution too

Reasons:
  • 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 I find a solution
  • Low reputation (1):
Posted by: Onur T

79105160

Date: 2024-10-19 14:34:47
Score: 4
Natty:
Report link

Thanks for all reply. I have found a way that can find the target string(boundary) among binary data(Using member instead of strstr).

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

79105107

Date: 2024-10-19 14:06:40
Score: 4
Natty:
Report link

Check your Google Maps Api key.

and follow this installation steps https://github.com/react-native-maps/react-native-maps/blob/HEAD/docs/installation.md

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

79105096

Date: 2024-10-19 13:59:38
Score: 5.5
Natty: 5.5
Report link

Could you please share the app update... As the same happened with me also.

if yes, then how much time it takes to live again on play store.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you please share
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: eticket

79105095

Date: 2024-10-19 13:59:36
Score: 7.5 🚩
Natty: 4
Report link

I am having a similar problem. I want to add auto_increment for the option_id row in the wp_options table in WordPress. I get this error in phpmyadmin:

#1062 - ALTER TABLE causes auto_increment resequencing, resulting in duplicate entry '548741' for key 'PRIMARY'

Reasons:
  • Blacklisted phrase (1): I am having a similar problem
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1): I get this error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having a similar problem
  • Low reputation (1):
Posted by: Arda

79105080

Date: 2024-10-19 13:53:32
Score: 10 🚩
Natty: 5
Report link

I am using affiliate egg plugin integration with WordPress rehub theme and I am getting the same error, when I am searching any Flipkart product results not found, can anyone help me how to resolve this.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can anyone help me
  • RegEx Blacklisted phrase (1): I am getting the same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Compareclique

79105043

Date: 2024-10-19 13:30:25
Score: 10 🚩
Natty:
Report link

I have the same problem in Delphi Alexandria: the program runs, but debugging suddenly stopt working ( "Unable to create process, ..."). Then I followed Peter Jones' solution above: remove C:\Program Files (x86)\Embarcadero\Studio\22.0\bin\dbkw64_28_0.exe and placed it back (as administrator). Restarting Delphi. And now I get (in debugging mode): Debugger Assertion Failure: "apiOK" in ..\win32src\w64mgr.cpp at line 79

Don't know how to solve this and the original issue is not solved either. Unless I did something wrong, I cannot recommend following Peter's solution ...

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): how to solve
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (2): Don't know how to solve
  • RegEx Blacklisted phrase (2): know how to solve
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: Fred

79105032

Date: 2024-10-19 13:21:22
Score: 4
Natty:
Report link

I want undo or clear the dynamic control in ListView in all rows excepto the last row added, each rows is added by one to one using click a command button

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Uriel Fajardo

79105021

Date: 2024-10-19 13:15:17
Score: 6 🚩
Natty:
Report link

have you find the solution? i am still looking for this.

Reasons:
  • Blacklisted phrase (2): have you find
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dev Sharma

79104994

Date: 2024-10-19 13:05:15
Score: 5.5
Natty:
Report link

I have a similar issue, but not sure how to edit the redis functions since I'm using Spring Security:

Spring Boot / Spring Security App, geting AWS Redis Elasticache production error (failed: Connection reset by peer & CROSSSLOT error)

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar issue
  • Low reputation (0.5):
Posted by: Sachin

79104920

Date: 2024-10-19 12:31:07
Score: 4
Natty: 4.5
Report link

You can try this open source project: https://github.com/GorgonMeducer/perf_counter

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

79104885

Date: 2024-10-19 12:16:00
Score: 7 🚩
Natty:
Report link

Thanks, I tried that oFreadData.One = alue.Cells(1) . That did not work either, results is the same enter image description here

After some thinking I believe the class member property should have the worksheet also as a parameter. Am I totally wrong ?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Petri Lahtinen

79104851

Date: 2024-10-19 11:58:53
Score: 13 🚩
Natty: 5.5
Report link

I've encoutered the same issue. Were you able to fix it somehow?

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

79104837

Date: 2024-10-19 11:52:51
Score: 4
Natty:
Report link

Thanks for your help, this problem is solved !

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thanks for your help
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michel Sarrailh

79104833

Date: 2024-10-19 11:50:51
Score: 4
Natty:
Report link

I added the and now it works just fine.

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

79104816

Date: 2024-10-19 11:39:45
Score: 8 🚩
Natty: 4.5
Report link

have you found solution to it? @Tom

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found solution to it
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Tom
  • Single line (0.5):
  • Low reputation (1):
Posted by: hone shalom

79104776

Date: 2024-10-19 11:18:40
Score: 4.5
Natty:
Report link

check this post as I explain the probelm and how to solve :

https://www.linkedin.com/posts/abdallah-mohamed-%F0%9F%87%B5%F0%9F%87%B8-0b4270183_flutter-bitcodeabrproblem-activity-7253361610935681027-9LaP?utm_source=share&utm_medium=member_desktop

Reasons:
  • Blacklisted phrase (1): how to solve
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Abdallah Mohamed

79104695

Date: 2024-10-19 10:36:29
Score: 6.5 🚩
Natty: 5
Report link

I want to find the product (1-1/p^2)^1/2 for all primes p=1 mod 4 please tell me how to find the product on Pari/GP

Reasons:
  • RegEx Blacklisted phrase (2.5): please tell me how
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammad Usama

79104642

Date: 2024-10-19 10:09:23
Score: 5.5
Natty: 5.5
Report link

Are you willing to share a picture of the heatmap that you created?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rifat

79104622

Date: 2024-10-19 09:51:19
Score: 4
Natty:
Report link

Make sure you've closed all ejs tags.In my code I did this only <%=user.call> I was wondering in whole code no mistake found then where it lags. Then after 2hr I got this damn. I have to code <%=user.call%>

Reasons:
  • Blacklisted phrase (2): was wondering
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Muskan Shaikh

79104592

Date: 2024-10-19 09:30:14
Score: 4
Natty:
Report link

For myself, adding it to the dependencies section of the Gradle script worked:

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: Eva

79104590

Date: 2024-10-19 09:27:13
Score: 4.5
Natty:
Report link
  1. first make these changes in 'libs.versions.toml' enter image description here

  2. then in build.gradle.kts, make following changes enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nagesh Ajab

79104545

Date: 2024-10-19 09:02:05
Score: 8.5 🚩
Natty:
Report link

my probleme is when i want to upload my project hon github iam surprise with this $ git push -u origin master remote: Support for password authentication was removed on August 13, 2021. remote: Please see https://docs.github.com/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls for information on currently recommended modes of authentication. fatal: Authentication failed for 'https://github.com/fido192/myproject2.git/'

......can you help me please....

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can you help me
  • RegEx Blacklisted phrase (1): i want
  • RegEx Blacklisted phrase (2): help me please
  • No code block (0.5):
  • Low reputation (1):
Posted by: INFOSCIENCE fido

79104482

Date: 2024-10-19 08:24:52
Score: 9.5 🚩
Natty: 5.5
Report link

Did you find a solution ince your post?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution in
  • Low reputation (1):
Posted by: Yosr Naija

79104455

Date: 2024-10-19 08:06:48
Score: 4
Natty: 4
Report link

I am curious as to what happens if a scoped service is being used and I get disconnected and a reconnection is done on SignalR. Will the scoped service return a different value, for example if I am returning the currently logged in user? Will HttpContextAccessor be available on reconnection of the circuit?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: user3656651

79104453

Date: 2024-10-19 08:06:47
Score: 4.5
Natty:
Report link

Thanks @geoand... I updated the version and the problem disappeared.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @geoand
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: ave4496

79104411

Date: 2024-10-19 07:39:41
Score: 8.5
Natty: 9
Report link

Can you tell me how you decided to read the bot's messages by another bot?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you tell me how you
  • 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: Anton Yolshin

79104378

Date: 2024-10-19 07:10:34
Score: 4
Natty:
Report link

In windows I installed Microsoft Visual C++ Redistributable: https://aka.ms/vs/17/release/vc_redist.x64.exe and it works.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jakub Olędzki

79104361

Date: 2024-10-19 07:01:32
Score: 8
Natty: 7
Report link

I actually have the same question. I need to get a list of all expenses that a company incurs. I'm wondering which endpoints should I look at? Purchases and Bills?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): have the same question
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Valeriu

79104306

Date: 2024-10-19 06:06:22
Score: 4
Natty: 5
Report link

EXEC sp_updatestats; works like magic for me haha! Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Co Koi

79104153

Date: 2024-10-19 03:34:52
Score: 10.5
Natty: 7.5
Report link

I also have the same problem, have you found a solution?

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I also have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: DucK