79084709

Date: 2024-10-14 04:37:39
Score: 4.5
Natty: 4
Report link

you are should in correct folder path

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

79084665

Date: 2024-10-14 04:05:32
Score: 4
Natty: 4
Report link

Have you made any progress on this? I'm just starting a project based on this: building an SSH + VPN tunnel.

Reasons:
  • Blacklisted phrase (0.5): made any progress
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David B

79084554

Date: 2024-10-14 02:29:11
Score: 6.5 🚩
Natty: 4.5
Report link

have you found the way to do it yet? I'm running into a similar problem with this agent.

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found the way to do it yet
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Do Nam

79084549

Date: 2024-10-14 02:25:09
Score: 5.5
Natty:
Report link

I use python so I don't know. Are you sure you have the most recent version of .net?

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

79084355

Date: 2024-10-13 23:22:32
Score: 5
Natty: 5
Report link

Would it be possible to do the opposite? That is receive the email using aws ses with a .zip file as it's attachment and save it to an s3 bucket?

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

79084329

Date: 2024-10-13 23:01:27
Score: 8.5 🚩
Natty: 4
Report link

Did you find the answer? I am also looking for same question answer but haven’t find it yet.

Reasons:
  • Blacklisted phrase (2): I am also looking
  • RegEx Blacklisted phrase (3): Did you find the answer
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find the answer
  • Low reputation (0.5):
Posted by: Ankit Singh

79084316

Date: 2024-10-13 22:53:24
Score: 12 🚩
Natty: 6.5
Report link

How do you resolve this? I'm having the same issue

Reasons:
  • Blacklisted phrase (1): How do you
  • RegEx Blacklisted phrase (1.5): resolve this?
  • RegEx Blacklisted phrase (2.5): do you resolve this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do you
  • Low reputation (1):
Posted by: Olu Bello

79084212

Date: 2024-10-13 21:41:08
Score: 4.5
Natty:
Report link

just pip install win32security

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

79084109

Date: 2024-10-13 20:46:56
Score: 5
Natty: 6.5
Report link

You may check this out https://github.com/marketplace/actions/rerun-checks

this plugin will rerun the check by its name

Reasons:
  • Blacklisted phrase (1): this plugin
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ahlam Al-Hmeadat

79084001

Date: 2024-10-13 19:43:40
Score: 6 🚩
Natty: 6
Report link

I'm currently having same issue, how can I sole it

If u need me to provide my code let me know. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): how can I
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having same issue
  • Low reputation (1):
Posted by: Michael

79083974

Date: 2024-10-13 19:29:36
Score: 4.5
Natty: 6
Report link

Go look at my question and answer at How do you open multiple new tabs with target=_blank and have each in a seperate tab?

should give you some idea as to what is happening.

Reasons:
  • Blacklisted phrase (1): How do you
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: SimonT

79083909

Date: 2024-10-13 18:55:27
Score: 5
Natty:
Report link

@marcinj Can you answer as an unit-test?

I dont recommend unit testing thread correction of your code, how do you know how long such test would have to last? 2s, 10minutes or 10h? Maybe it would fail after a 12h of testing. Currently it fails after few seconds in multithreaded environment, but there are other subtle errors.

The truth is if you would code it to the moment it starts working correctly, you would probably end up with implementation similar to the one from the java.util.concurrent.Executors, so why dont you just reuse what is well tested and official.

As for testing, I suggest checking other things, like if the exception reporting in your class works as intended (errorHandler). Maybe if some scheduled work finishes before executeUntilDeplated.

Below is my try to rewrite your code with Executors thread pool:

package org.example;

import java.util.concurrent.*;
import java.util.function.Consumer;
import java.util.logging.Level;
import java.util.logging.Logger;

public class DepleatingFiFoThreadPool<A> {

public static final Logger LOG = Logger.getLogger(DepleatingFiFoThreadPool.class.getCanonicalName());

private final ExecutorService executor;
private final Consumer<Throwable> errorHandler;
private final String prefix;
private final Consumer<A> invoker;

public DepleatingFiFoThreadPool(final int threadsRunningMax, final Consumer<Throwable> errorHandler,
                            final String prefix, final Consumer<A> invoker) {
    this.errorHandler = errorHandler;
    this.prefix = prefix;
    this.invoker = invoker;
    this.executor = Executors.newFixedThreadPool(threadsRunningMax, new ThreadFactory() {
        private int count = 0;

        @Override
        public Thread newThread(Runnable r) {
            Thread t = new Thread(r, prefix + "-Thread-" + (++count));
            t.setUncaughtExceptionHandler((thread, e) -> {
                try {
                    errorHandler.accept(e);
                } catch (Throwable ta) {
                    ta.addSuppressed(e);
                    LOG.log(Level.SEVERE, ta.getMessage(), ta);
                }
            });
            return t;
        }
    });
}

public void addAndStartThread(final A notRunningThread, final String threadPostfix) {
    executor.submit(() -> {
        Thread.currentThread().setName(prefix + "-Thread-" + threadPostfix); // Set thread name per task
        try {
            invoker.accept(notRunningThread);
        } catch (Throwable e) {
            // note: this blocks any exceptions to be passed to errorHandler, is this intentional?
            LOG.log(Level.SEVERE, "Task execution error", e);
        }
    });
}

public boolean executeUntilDeplated(long timeoutMs) throws InterruptedException {
    executor.shutdown();
    return executor.awaitTermination(timeoutMs, TimeUnit.MILLISECONDS);
}

}

Reasons:
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (2.5): Can you answer
  • RegEx Blacklisted phrase (2.5): do you know how
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @marcinj
  • High reputation (-2):
Posted by: marcinj

79083862

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

were you able to find a solution? having the same issue with multiple websites when running my script in EC2.

Reasons:
  • RegEx Blacklisted phrase (1): were you able to find a solution
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: yon lo

79083828

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

I found this which might help, still searching for a clear answer though: https://www.awesomeacf.com/extension/permalinks/

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

79083801

Date: 2024-10-13 17:59:11
Score: 4
Natty: 4.5
Report link

I've been working independently on a solution for this problem and now have a working proof-of-concept using real data to demonstrate it. I did a search to see if anyone else was addressing this challenge, and came up with this rather old thread.

Happy to share my link, algorithms etc if there is still any interest?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Chris

79083756

Date: 2024-10-13 17:35:04
Score: 6.5 🚩
Natty: 6.5
Report link

I am using @okta/okta-react. I am using the signIn method. Yes, the response has factors with enroll methods. But if you enroll in one factor, further responses no longer include the other factors. How do you use okta-react to enroll in more than one factor at a time?

Reasons:
  • Blacklisted phrase (1): How do you
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: wingedearth

79083701

Date: 2024-10-13 17:17:59
Score: 4
Natty:
Report link

how to run a excel data name weight height age in csv file run into R

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: Yousaf Tahir Khan

79083674

Date: 2024-10-13 17:01:55
Score: 6.5 🚩
Natty: 6.5
Report link

I have similar requirement. If I have null dated record along with other dated records for same empl id, I need to pick only null dated record.

If there are say two records with date and no null dated records for same empl id then I need to fetch max date.

How can I achieve this?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I have similar
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user27779748

79083659

Date: 2024-10-13 16:56:53
Score: 4
Natty:
Report link

I was also facing this issue and tried some stuffs but switching back to nodejs 18 LTS version has helped and now applications are running fine.

Reasons:
  • Blacklisted phrase (1): also facing this
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nikhil Sharma

79083638

Date: 2024-10-13 16:44:49
Score: 9.5
Natty: 7.5
Report link

I also want to scrape fxstreet.com/news but i just can not connect to the server. i have tried it with requests, playwright, selenium but nothing work. Do you have the same problem? (I just want to confirm the problem source. Thank you)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): but nothing work
  • RegEx Blacklisted phrase (2.5): Do you have the
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Đình Nguyên Trần

79083539

Date: 2024-10-13 15:55:37
Score: 5
Natty:
Report link

You can ref this good solution for the react project not pre-configured with path alias

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

79083475

Date: 2024-10-13 15:19:29
Score: 5
Natty: 5
Report link

l33t h4ck0r5 !!!!111OneOneEleven

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

79083463

Date: 2024-10-13 15:12:27
Score: 5
Natty:
Report link

this was my situation:

(venv)>> python manage.py runserver !!! but permission denied: python

after many searches finally i cant find the solution. i am in ubuntu 24.04. suddenly i try python3 inplace of python in command and it worked

(venv)>> python3 manage.py runserver

Reasons:
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (1.5): cant find the solution
  • RegEx Blacklisted phrase (2): cant find the solution
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: mehrdad abdi

79083397

Date: 2024-10-13 14:40:20
Score: 8 🚩
Natty:
Report link

Me gustaría saber con quién puedo hablar dentro de tu empresa Btnkumar para comentar la posibilidad de que aparezcáis en prensa. Hemos conseguido que negocios como el tuyo sean publicados en periódicos como La Vanguardia o La Razón, entre muchos otros.

Aparecer en periódicos digitales es una solución de gran valor para vosotros porque os permitirá: Mejorar vuestro posicionamiento y visibilidad en los buscadores, incrementar la confianza que transmitís cuando vuestros clientes os busquen en internet y diferenciaros de la competencia.

Nuestro precio es de 195e. Te puedo enseñar ejemplos y casos de éxito para que veas cómo funciona. Ofrecemos devolución del dinero si no conseguimos resultados.

¿Cuándo te iría mejor que te llamáramos? Puedes reservar una llamada con nosotros: https://calendly.com/prensa-digital/15min

Un saludo.

Reasons:
  • Blacklisted phrase (1): ¿
  • Blacklisted phrase (1): cómo
  • Blacklisted phrase (1): porque
  • Blacklisted phrase (3): solución
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Julia

79083265

Date: 2024-10-13 13:45:06
Score: 4
Natty: 4.5
Report link

Cloning https://github.com/Lamprecht/perl-tk.git ... FAIL ! Failed cloning git repository https://github.com/Lamprecht/perl-tk.git ! Couldn't find module or a distribution https://github.com/Lamprecht/[email protected]

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

79083231

Date: 2024-10-13 13:26:01
Score: 5
Natty:
Report link

You can try using a border pane :

JavaFX Panes

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

79083112

Date: 2024-10-13 12:25:47
Score: 4.5
Natty: 4
Report link

Worked like a charm! How to extract the text within the squares? Tried pytesseract with no much success.

Reasons:
  • Blacklisted phrase (1): Worked like a charm
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nayyer

79082900

Date: 2024-10-13 10:26:18
Score: 10.5 🚩
Natty: 4.5
Report link

I am working on a similar project where I am trying to develop a algotrading software which works on TV indicators. I am looking for colab as I need help on a lot of things. Please let me know if you are willing to collab as you seem knowledgable about indicators and I have a really successful strategy in progress.

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (2.5): I need help
  • RegEx Blacklisted phrase (2.5): Please let me know
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Venky karthz

79082887

Date: 2024-10-13 10:18:16
Score: 4.5
Natty: 3
Report link

it's possible with mediarecorder and canvas. here is an example https://smartcamforsocialnetworks.com/

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

79082827

Date: 2024-10-13 09:38:07
Score: 4
Natty: 4.5
Report link

same problem here... This parameter doesn't seem to be doing anything at all. Results are simply based on geolocation. I can see by simply switching countries through my VPN

Reasons:
  • RegEx Blacklisted phrase (1): same problem
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mario Gutierrez

79082815

Date: 2024-10-13 09:33:05
Score: 10 🚩
Natty:
Report link

is your issue solved? I got the same issue, can you share the solution with me? thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (2.5): can you share the solution
  • RegEx Blacklisted phrase (1.5): solved?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user1741102

79082811

Date: 2024-10-13 09:30:04
Score: 4
Natty:
Report link

Here is a GitHub post that answer the question https://gist.github.com/ultragtx/6831eb04dfe9e6ff50d0f334bdcb847d

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

79082771

Date: 2024-10-13 08:59:57
Score: 12
Natty: 7
Report link

I am running into same problem. As you mentioned. I tried above comment's solution but it didn't work. Was your problem solved? How did you solve it?

Reasons:
  • Blacklisted phrase (1): How did you solve it
  • RegEx Blacklisted phrase (3): did you solve it
  • RegEx Blacklisted phrase (1.5): solved?
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Evan Shareef

79082764

Date: 2024-10-13 08:52:56
Score: 4.5
Natty:
Report link

In your security group add an inbound rule with source 0.0.0.0/0 on port 443.

Thank you @AshleyJ for your help

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @AshleyJ
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Worldwide

79082655

Date: 2024-10-13 07:43:42
Score: 4.5
Natty: 4
Report link

Use a Bluetooth wifi bridge or router

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

79082611

Date: 2024-10-13 07:21:37
Score: 5.5
Natty: 5.5
Report link

אני יודע איך לעשות את זה תשלח לי את הקובץ המלא PAC ואני ידגים לך

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: פיני

79082433

Date: 2024-10-13 05:14:10
Score: 4.5
Natty: 5.5
Report link

@Ansgar Wiechers Appreciate the share - helped with what I was looking for. Many thanks!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Ansgar
  • Low reputation (1):
Posted by: mat

79082282

Date: 2024-10-13 02:21:38
Score: 7.5
Natty: 7
Report link

Did you get the solution or not ? Plesease,Im struggling in the same issue for 6 days and I want to solve this problem. Please, Send me the solution if you have at this email and thank you email = [email protected]

Reasons:
  • Blacklisted phrase (0.5): thank you
  • RegEx Blacklisted phrase (3): Did you get the solution
  • RegEx Blacklisted phrase (1): I want
  • Low length (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: dridi mohammed amine

79082257

Date: 2024-10-13 01:48:32
Score: 5
Natty: 5
Report link

What is all this crap! All I want is to get back to the classic outlook for windows 10!

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What is
  • Low reputation (1):
Posted by: Nancy Walker

79082231

Date: 2024-10-13 01:13:25
Score: 6.5
Natty: 7.5
Report link

How can i assign bot to send out this message to channel?

Reasons:
  • Blacklisted phrase (0.5): How can i
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How can i as
  • Low reputation (1):
Posted by: Mann

79082194

Date: 2024-10-13 00:39:18
Score: 6 🚩
Natty: 5.5
Report link

How many screenshots you take on average in a day?

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

79082045

Date: 2024-10-12 22:23:51
Score: 4
Natty:
Report link

Refer to the following link for generating verilog hierarchy

https://youtu.be/v47HgBfoQGA

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: satish kadaba

79082013

Date: 2024-10-12 22:00:45
Score: 5.5
Natty:
Report link

I'm in the same situation and still can't find a solution haha...

Reasons:
  • RegEx Blacklisted phrase (2): can't find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Leonardo Citton

79081990

Date: 2024-10-12 21:45:41
Score: 5.5
Natty: 6
Report link

This guide will help you disable the Phantom Process Killer using adb over wireless debugging to prevent these processes from being killed.

https://github.com/emseh/rails-on-termux?tab=readme-ov-file#phantom-processes-killed-process-completed-signal-9---press-enter-in-android-12--13

Reasons:
  • Blacklisted phrase (1): This guide
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: emseh

79081957

Date: 2024-10-12 21:25:36
Score: 4
Natty: 4.5
Report link

Yeah, sadly, CollectionView is broken for Windows apps:

https://github.com/dotnet/maui/issues/23684

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

79081827

Date: 2024-10-12 20:19:21
Score: 5.5
Natty:
Report link

When I did this with two local repos that I know to be almost identical, I still got a result file that was almost 400KB - basically impossible to interpret.

C:\Windows\System32>git diff --no-index -- C:\src\PrusaSlicer C:\draftshld\PrusaSlicer > C:\draftshld\PrusaSlicer\mydiff.txt

Any idea what I did wrong here?

TIA,

Frank

Reasons:
  • RegEx Blacklisted phrase (2): TIA
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): When I
  • Low reputation (0.5):
Posted by: user3765883

79081801

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

Fixes are as described above in original post

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

79081791

Date: 2024-10-12 19:56:14
Score: 7.5 🚩
Natty: 5.5
Report link

How can i use the formio on react-native. please help

Reasons:
  • Blacklisted phrase (0.5): How can i
  • RegEx Blacklisted phrase (3): please help
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How can i use the for
  • Low reputation (1):
Posted by: Yonas

79081770

Date: 2024-10-12 19:48:12
Score: 9 🚩
Natty: 6.5
Report link

I also facing this error while using a holistic model of mediapipe. What should i do? How can i install the updated version?

Reasons:
  • Blacklisted phrase (0.5): How can i
  • Blacklisted phrase (1): also facing this
  • Blacklisted phrase (2): What should i do
  • RegEx Blacklisted phrase (1): I also facing this error
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Gitesh Pal

79081733

Date: 2024-10-12 19:25:06
Score: 5.5
Natty: 4.5
Report link

Open the Settings on the projects screen (click this link to see screenshot)

Change the Vm Options with K2=false (link for screenshot)

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Artem Samoshkin

79081693

Date: 2024-10-12 19:03:01
Score: 4
Natty: 4.5
Report link

Since Bootstrap 5.x use text-start instead of text-left

https://getbootstrap.com/docs/5.0/utilities/text/

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

79081650

Date: 2024-10-12 18:33:53
Score: 6 🚩
Natty: 5
Report link

Do I need to - - skip-ssl to connect to mysql via php log script? I am having problems when I try to run mtsql service, and privileges escalation errors. Should I use php ssl2 connection first to establish contact with the server first?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I am having problem
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tomescu adrian

79081530

Date: 2024-10-12 17:28:40
Score: 5
Natty: 4
Report link

Have you ever figured out a solution? I'm encountering the same issue. The web application works fine on the old server, but if running on a new server the "ConvertUrl" function just hangs there forever...

Reasons:
  • RegEx Blacklisted phrase (2): Have you ever figured
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user23511052

79081374

Date: 2024-10-12 16:07:21
Score: 4.5
Natty:
Report link

Eclipse opening filters .* resources should be unchecked.

unchecking .* resources

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

79081340

Date: 2024-10-12 15:48:16
Score: 4.5
Natty:
Report link

Anyone found a way to do this for Visual Studio 2022?

So, for example, for #pragma region TEXT, I want to change the colour of TEXT.

I set Preprocessor Text to green (link to screenshot) but it's not changing (another screenshot) TEXT. Is there a different item that I need to select?

Preprocessor Keyword changes the #pragma region bit but not TEXT either (even after restarting Visual Studio).

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2): Anyone found
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Emil Almazov

79081324

Date: 2024-10-12 15:38:13
Score: 4.5
Natty:
Report link

@ImranBinAzhar, @JoelCampos thank you guys it worked!!! I appreciate you spending your time on this question. Thx.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): Thx
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @ImranBinAzhar
  • User mentioned (0): @JoelCampos
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Chris der Hov

79081290

Date: 2024-10-12 15:23:09
Score: 4
Natty:
Report link

There's a crate to do that: windows-env

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

79081231

Date: 2024-10-12 14:50:02
Score: 7 🚩
Natty:
Report link

Any news? Same problem here...

Reasons:
  • RegEx Blacklisted phrase (1): Same problem
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jesus Campos

79081218

Date: 2024-10-12 14:40:59
Score: 4.5
Natty:
Report link

The only thing that seems to be working for me is - https://github.com/iMerica/dj-rest-auth/issues/503#issuecomment-1937769215

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

79081154

Date: 2024-10-12 14:06:51
Score: 6.5 🚩
Natty: 4
Report link

i am facing the same problem here , in CodeBlocks you can just add the file to the project from (project->addFiles)

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i am facing the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: DJABRI MAROUANE

79081112

Date: 2024-10-12 13:41:46
Score: 4.5
Natty: 6
Report link

Thanks this really helped!! :)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ananya-singh-afk

79081055

Date: 2024-10-12 13:09:38
Score: 5
Natty: 6
Report link

What about if there are foreign keys in the table?

Reasons:
  • 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
Posted by: Darryl Wilson

79081049

Date: 2024-10-12 13:05:36
Score: 8 🚩
Natty: 4
Report link

Did you ever resolve this issue? I have the same situation. I can connect to the same RDS database from localhost but when deployed to Amplify, the app doesn't connect to database. I am using Next.js and develop it locally.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever resolve this
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: SreeV

79081046

Date: 2024-10-12 13:03:35
Score: 6.5 🚩
Natty:
Report link

عدل على التنسيق الشرطى


عدل على التنسيق الشرطى

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: ahmed al sheikh

79081007

Date: 2024-10-12 12:42:30
Score: 4
Natty:
Report link

Try to run like that?

npx cucumber-js

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Peter Lukić

79080974

Date: 2024-10-12 12:22:25
Score: 4.5
Natty: 6
Report link

I am also doing the same course and stuck in the chapter 32 (Displaying notes in notes view). Did you complete the course? I need some guiding please. My notes view is empty and I am lost

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I need some guiding please
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Dev I

79080973

Date: 2024-10-12 12:22:25
Score: 4
Natty:
Report link

Samia, I think you have it backwards.

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

79080910

Date: 2024-10-12 11:36:16
Score: 8.5
Natty: 8
Report link

Could you please share your working code?

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):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bayzi

79080901

Date: 2024-10-12 11:33:15
Score: 9.5 🚩
Natty:
Report link

HAHAHAHAHAHHAAHHAHAHAHAHHAHAHAHAHAH

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: wee

79080883

Date: 2024-10-12 11:24:12
Score: 4.5
Natty: 6
Report link

File-Settings-Build - [1]: https://i.sstatic.net/g5EBaQIz.png**here**

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: Stanislav

79080829

Date: 2024-10-12 10:47:03
Score: 7 🚩
Natty: 5.5
Report link

Have you got solution? I also facing same error but First time my connection was ok and I was setup and live my project perfectly. Then I close my terminal and pc and try another time but not working.

Reasons:
  • Blacklisted phrase (1): but not working
  • RegEx Blacklisted phrase (1): I also facing same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I also facing same error
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Masud Rana

79080773

Date: 2024-10-12 10:17:55
Score: 4
Natty:
Report link

To address all this scenario i had implemented latest github repo Repo using Blazor UI or direct .cs link at GraphService

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

79080772

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

Is it necessary to find a solution in this table? If it is allowed, can we rely on the second table to solve it?

Reasons:
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: zd h

79080672

Date: 2024-10-12 09:27:45
Score: 10
Natty: 7.5
Report link

Have you managed to resolve this issue?

I have encountered the same problem trying to install Oracle 19c on RHEL 9.4

Appreciate any help or advice I can get

Regards, Santosh

Reasons:
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (1): any help
  • Blacklisted phrase (3): Have you managed
  • RegEx Blacklisted phrase (1.5): resolve this issue?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Santosh Heranjal

79080669

Date: 2024-10-12 09:26:44
Score: 4
Natty: 4.5
Report link

please use hypercorn ! I have stack in this problem 2days! https://blog.csdn.net/gitblog_00116/article/details/141153910

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

79080396

Date: 2024-10-12 07:29:18
Score: 4
Natty:
Report link

u are realy a code master, i have searched a lot of time until i see your answer @Clifford Cheefoon , 3ku

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Clifford
  • Single line (0.5):
  • Low reputation (1):
Posted by: user27762448

79080377

Date: 2024-10-12 07:18:14
Score: 8 🚩
Natty: 6
Report link

no one answered this question, i also need ko know how to do? please help

Reasons:
  • RegEx Blacklisted phrase (3): please help
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Erman Ispir

79080360

Date: 2024-10-12 07:09:12
Score: 11 🚩
Natty:
Report link

I got the same problem. Did you solve it? Any updates are appreciated. :)

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): I got the same problem
  • RegEx Blacklisted phrase (3): Did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (0.5): Any updates
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John

79080319

Date: 2024-10-12 06:40:04
Score: 7.5 🚩
Natty:
Report link

I found I could write like below, it works! But I'm not sure if there's a danger to doing this, can anyone give me some advice?

rule all:
    input:
        "test2"

rule a:
    name: "test",
    output:
        "test",
    shell:
        "touch {output} "

rule b:
    name: "test2",
    input: rules.a.output,
    output:
        "test2",
    shell:
        "touch {output} "

log:

Building DAG of jobs...
Using shell: /usr/bin/bash
Provided cores: 16
Rules claiming more threads will be scaled down.
Job stats:
job      count
-----  -------
all          1
test         1
test2        1
total        3

Select jobs to execute...
Execute 1 jobs...

[Sat Oct 12 14:33:20 2024]
localrule test:
    output: test
    jobid: 2
    reason: Missing output files: test
    resources: tmpdir=/tmp

touch test
[Sat Oct 12 14:33:20 2024]
Finished job 2.
1 of 3 steps (33%) done
Select jobs to execute...
Execute 1 jobs...

[Sat Oct 12 14:33:20 2024]
localrule test2:
    input: test
    output: test2
    jobid: 1
    reason: Missing output files: test2; Input files updated by another job: test
    resources: tmpdir=/tmp

touch test2
[Sat Oct 12 14:33:20 2024]
Finished job 1.
2 of 3 steps (67%) done
Select jobs to execute...
Execute 1 jobs...

[Sat Oct 12 14:33:20 2024]
localrule all:
    input: test2
    jobid: 0
    reason: Input files updated by another job: test2
    resources: tmpdir=/tmp

[Sat Oct 12 14:33:20 2024]
Finished job 0.
3 of 3 steps (100%) done
Complete log: .snakemake/log/2024-10-12T143320.208718.snakemake.log

Reasons:
  • Blacklisted phrase (3): give me some
  • RegEx Blacklisted phrase (2.5): can anyone give me some
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ManJi

79080301

Date: 2024-10-12 06:26:01
Score: 4
Natty: 4
Report link

I have same problem Before i know the problem, my code like this.

$user = Socialite::driver($provider)->stateless()->user();
$existingUser = User::where('email', $user->email)->first();

on my history error happen in method user() after stateless() the problem happen when user click button cancel in sign in to process on page login with google. As we know, after you choose your email will redirect you to choose new page with option Cancel | Continue

so we apply try catch like this

try {
  $user = Socialite::driver($provider)->stateless()->user();
} catch (\Exception $e) {
  return redirect()->to('https://blablabla.id/login');
}

and it solved. So, thank you sir. I hope my description for this issue make help someone.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): I have same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have same problem
  • Low reputation (1):
Posted by: Muhammad Khoirul Yahya

79080174

Date: 2024-10-12 04:21:39
Score: 4
Natty:
Report link

The Windows paths in WSL were interfering with GTest.

I just disabled the Windows path and it started working fine.

https://stackoverflow.com/a/51345880/8551671

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rudransh Srivastava

79080160

Date: 2024-10-12 04:07:35
Score: 7 🚩
Natty: 5.5
Report link

We are also getting same error suddenly from last 2 days. It was working earlier without issue. Any Help/Suggestions Please as it is failing in Production environment also.

Reasons:
  • Blacklisted phrase (1): Any Help
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): also getting same error
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ashok

79080105

Date: 2024-10-12 03:10:25
Score: 4
Natty:
Report link

Change springdoc-openapi-starter-webflux-ui to springdoc-openapi-starter-webmvc-ui

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yahya Ibrahim

79080053

Date: 2024-10-12 01:59:13
Score: 4.5
Natty:
Report link

Please raise the issue to liferay plugin team https://liferay.atlassian.net/jira/software/c/projects/INTELLIJ/issues?jql=project%20%3D%20%22INTELLIJ%22%20ORDER%20BY%20created%20DESC

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

79080045

Date: 2024-10-12 01:40:09
Score: 7.5 🚩
Natty: 4.5
Report link

Have you solved it yet? I also encountered the same problem

Reasons:
  • Blacklisted phrase (2): Have you solved it
  • RegEx Blacklisted phrase (1.5): solved it yet?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: gool BEAR

79079971

Date: 2024-10-12 00:14:52
Score: 5.5
Natty:
Report link

I just realized you can't use * annotation and it works if I list out the columns. Any idea why this works, but * doesn't?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: frontendLearner

79079965

Date: 2024-10-12 00:11:51
Score: 11.5
Natty: 7
Report link

Is there any way can exclude the Grand Total column??? Thanks in advance

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): ???
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: Ly Minh Chau

79079859

Date: 2024-10-11 22:29:30
Score: 4
Natty: 4.5
Report link

This repo seems to be a good source. I'll try it myself.

https://github.com/lukasthaler/fastapi-oauth-examples

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

79079852

Date: 2024-10-11 22:23:28
Score: 8 🚩
Natty: 5
Report link

I am trying to use the same process in my project, could you help me if you were able to solve the problem

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (3): could you help me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: busra tugul

79079829

Date: 2024-10-11 22:13:22
Score: 4.5
Natty: 5
Report link

Thank you this was super helpful

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

79079781

Date: 2024-10-11 21:45:49
Score: 5
Natty: 6
Report link

Where is the ubuntu server located, when we we run the pipeline? Does GitHub uses Microsoft Azure to perform this task for Virtual Machine creation of Ubuntu server?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Where is the
  • Low reputation (1):
Posted by: Sagar Giri

79079779

Date: 2024-10-11 21:45:49
Score: 4.5
Natty:
Report link

I have the exact same problem when I connect to lxplus from my mac.

I have also tried to permit Pty allocation to avoid the -T flag when running ssh (after finding https://github.com/microsoft/vscode-remote-release/issues/7673) but this does not solve the problem!

VSCode version: 1.94.2

macOS Ventura 3.6.6 (22G630)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same problem
  • Low reputation (1):
Posted by: Diego Mendoza Granada

79079757

Date: 2024-10-11 21:31:45
Score: 4.5
Natty: 4
Report link

Honestly, i did not understand

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

79079745

Date: 2024-10-11 21:26:43
Score: 5.5
Natty: 7
Report link

Please refer to this guide. It addresses the same problem https://docs.aws.amazon.com/prescriptive-guidance/latest/patterns/customize-default-role-names-by-using-aws-cdk-aspects-and-escape-hatches.html

Reasons:
  • Blacklisted phrase (1): this guide
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sandeep singh

79079715

Date: 2024-10-11 21:09:39
Score: 4
Natty:
Report link

same error on my account.

unable to load existing flows unless I use another account.

I have tried:

rolling back power automate updates, windows updates - no luck created a new vm on a clean windows install - no luck
used a known working pc that had the same account / flows - no luck

Reasons:
  • Blacklisted phrase (1): no luck
  • RegEx Blacklisted phrase (1): same error
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Will C

79079660

Date: 2024-10-11 20:39:33
Score: 8.5 🚩
Natty: 4.5
Report link

I'm facing the exact same error. I tried to add a groovy-all.jar file to the classpath in the command line:

java -classpath path\to\groovy-all-2.4.15.jar batch_runner.jar -hl -r -c path\to\batch_configuration.properties

but the error kept the same:

    INFO  17:21:24,232 repast.simphony.batch.gui.HeadlessMain - Writing batch run config file to: C:\Users\14
62639\git\IFMAS\output\config.props
java.lang.reflect.InvocationTargetException
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:7
7)
        at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImp
l.java:43)
        at java.base/java.lang.reflect.Method.invoke(Method.java:568)
        at repast.simphony.batch.standalone.StandAloneMain.run(StandAloneMain.java:207)
        at repast.simphony.batch.standalone.StandAloneMain.main(StandAloneMain.java:276)
Caused by: java.lang.NoClassDefFoundError: groovy/lang/GroovyObject
        at repast.simphony.batch.gui.HeadlessMain.createAntProject(HeadlessMain.java:87)
        at repast.simphony.batch.gui.HeadlessMain.run(HeadlessMain.java:66)
        at repast.simphony.batch.gui.HeadlessMain.main(HeadlessMain.java:310)
        ... 6 more
Caused by: java.lang.ClassNotFoundException: groovy.lang.GroovyObject
        at java.base/java.net.URLClassLoader.findClass(URLClassLoader.java:445)
        at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:592)
        at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)
        ... 9 more

Did you solve the problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did you solve the problem
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm facing the exact same error
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Bruno Henrique

79079561

Date: 2024-10-11 19:55:22
Score: 5
Natty:
Report link

Actually it is 2024 and I have same issue. for some reasons when I use hash router with baseName its just a blank page with no errors

import { BrowserRouter, HashRouter } from "react-router-dom";

<HashRouter basename={import.meta.env.VITE_BASE_URL}>
      <Suspense fallback={<div>Loading...</div>}>
        <AppResolver />
      </Suspense>
    </HashRouter>

my vite config is next

export default defineConfig(({ mode }) => {
prefix.
  const env = loadEnv(mode, process.cwd(), "");

  return {
    plugins: [
      react(),
      ...
    ],
    build: {
      outDir: "./dist",
    },
    base: env.VITE_BASE_URL || "/",
  };
});

and in package.json file I have a string "homepage": "." Which is all works with browser router but not hash. I decided to try has router since GH pages not working great with SPA's. So I'm confused. any ideas, solutions how to run hasrouter on GH pages?

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

79079504

Date: 2024-10-11 19:28:16
Score: 4.5
Natty:
Report link

Could you make sure you are starting the consumer pipeline first and make sure it's running before starting the producer?

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

79079453

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

here is the answer found in another post https://stackoverflow.com/a/38265284

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

79079440

Date: 2024-10-11 19:00:09
Score: 4.5
Natty:
Report link

Your solution seems to work for me. pdf image

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