79087150

Date: 2024-10-14 17:36:32
Score: 9.5 🚩
Natty: 6
Report link

did you manage to make ot work? I'm facing the same issue and I've been hitting a wall for two days.

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: jsber

79087124

Date: 2024-10-14 17:28:30
Score: 4
Natty: 4
Report link

Use syncfusion_flutter_charts library for customized line chart

official site

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

79087025

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

I know this is an older thread. I also know I'm asking a question instead of leaving an answer, but I don't know any other way to get advice for a similar question without asking a duplicate question.

I have a dynamic solution created with VBScript that's similar to Darren's first solution. My users typically have two or more IBM Personal Communications (PCOMM) sessions open on their Desktop to do their daily tasks. Some of those sessions are logged into business proprietary applications and need to be left alone. They also can't use their "A" session as that's their production session. To handle this, I've developed this logic:

Set Connect_Manager = CreateObject("pcomm.autECLConnMgr")
Set autECLConnList = CreateObject("PCOMM.autECLConnList")
Set ObjEmulator = CreateObject("pcomm.auteclsession")

autECLConnList.Refresh
Num = autECLConnList.Count
PrevNum = Num

If Num = 0 Then
   MsgBox "You must have at least two PCOMM sessions open to use this tool." & vbnewline & vbnewline &  "Program is now terminating.", vbOKOnly + vbExclamation + vbSystemModal, "No Session Error"
   SetEverythingToNothing
   WScript.Echo "EXIT"
   WScript.Quit
End If

strSession = autECLConnList(Num).Name
Connect_Manager.autECLConnList.Refresh

ObjEmulator.SetConnectionByName (strSession)
Window_Title = ObjEmulator.autECLWinMetrics.WindowTitle

If InStr(Window_Title, "HOSTORS") <> 0 Or strSession = "A" Or InStr(Window_Title, "NDB") <> 0 Then
   Set ObjEmulator = Nothing
   Loop_Count = 1
   Do
      ResEmulator = "No"
      PrevNum = PrevNum - 1
      If PrevNum = 0 Then
         MsgBox "You need to have more than one session open." & vbnewline & "Program is now terminating.", vbOKOnly + vbExclamation + vbSystemModal, "One Session Error"
         SetEverythingToNothing
         WScript.Echo "EXIT"
         WScript.Quit
      Else
         strSession = autECLConnList(PrevNum).Name
         If strSession = "A" Then
            MsgBox "You cannot use your production (A) session." & vbnewline & "Please open another session." & vbnewline & "Program is now terminating.", vbOKOnly + vbExclamation + vbSystemModal, "Production Session Error"
            SetEverythingToNothing
            WScript.Echo "EXIT"
            WScript.Quit
            Exit Do
         Else
            Set ObjEmulator = CreateObject("pcomm.auteclsession")
            Connect_Manager.autECLConnList.Refresh
            ObjEmulator.SetConnectionByName (strSession)
            Window_Title = ObjEmulator.autECLWinMetrics.WindowTitle
            If InStr(Window_Title, "NDB") <> 0 Or InStr(Window_Title, "HOSTORS") <> 0 Then
               Set ObjEmulator = Nothing
            Else
               ResEmulator = "Yes"
            End If
         End If
      End If
      Loop_Count = Loop_Count + 1
      If Loop_Count = 10 Then
         MsgBox "Unable to connect to a session." & vbnewline & "Please make sure you have working sessions." & vbnewline & "Program is now terminating.", vbOKOnly + vbExclamation + vbSystemModal, "Production Session Error"
         SetEverythingToNothing
         WScript.Echo "EXIT"
         WScript.Quit
         Exit Do
      End If
   Loop Until ResEmulator = "Yes"
End If

My department is moving away from VBScript and towards C#.NET. I've created a VERY similar version of the VBScript code.

AutConnList autECLConnList = new AutConnList();
AutConnMgr Connect_Manager = new AutConnMgr();
AutSess ObjEmulator = new AutSess();
       
autECLConnList.Refresh();
int Num = autECLConnList.Count;
int PrevNum = Num;

if (Num == 0)
{
    MessageBox.Show("You must have at least two PCOMM sessions open to use this tool." + Environment.NewLine + Environment.NewLine + "Program is now terminating.", "No Session Error", MessageBoxButtons.OK, 
    MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1, 
    MessageBoxOptions.DefaultDesktopOnly);
    return;
}

string strSession = autECLConnList[Num].Name;
autECLConnList.Refresh();

ObjEmulator.SetConnectionByName(strSession);
string Window_Title = ObjEmulator.autECLWinMetrics.WindowTitle;


if (Window_Title.IndexOf("HOSTORS") == 0 || strSession == "A" || Window_Title.IndexOf("NDB") == 0)
{
    ObjEmulator = null;
    int Loop_Count = 1;
    string ResEmulator = "No";
    do
    {
        PrevNum -= 1;
        if (PrevNum == 0)
        {
            MessageBox.Show("You need to have more than one session open." + Environment.NewLine + "Program is now terminating.", "One Session Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1, MessageBoxOptions.DefaultDesktopOnly);
            return;
        }
        else
        {
            strSession = autECLConnList[PrevNum].Name;
            if (strSession == "A")
            {
                MessageBox.Show("You cannot use your production (A) session." + Environment.NewLine + "Please open another session." + Environment.NewLine + "Program is now terminating.", "Production Session Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1, MessageBoxOptions.DefaultDesktopOnly);
                return;
            }
            else
            {
                AutSess ObjEmulator = new AutSess();
                autECLConnList.Refresh();
                ObjEmulator.SetConnectionByName(strSession);
                Window_Title = ObjEmulator.autECLWinMetrics.WindowTitle;
                if (Window_Title.IndexOf("HOSTORS") > 0 || Window_Title.IndexOf("NDB") > 0)
                {
                    ObjEmulator = null;
                }
                else
                {
                    ResEmulator = "Yes";
                }
            }
        } 
        Loop_Count++;
        if (Loop_Count == 10)
        {
            MessageBox.Show("Unable to connect to a session." + Environment.NewLine + "Please make sure you have working sessions." + Environment.NewLine + "Program is now terminating.", "Production Session Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1, MessageBoxOptions.DefaultDesktopOnly);
            return;
        }
    } while (ResEmulator == "Yes");
}

My issue is I'm getting the CS0136 - A local or parameter named 'ObjEmulator' cannot be declared in this scope because that name is used in an enclosing local scope to define a local or parameter when I'm trying to redeclare AutSess ObjEmulator = new AutSess();. I'm looking for a similar way to keep this dynamic like the VBScript code. Since ObjEmulator = null; doesn't fully kill the object in C#.NET like Set ObjEmulator = Nothing does in VBScript, does anyone have advice on how this can be done?

Reasons:
  • RegEx Blacklisted phrase (3): does anyone have
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Lou

79086931

Date: 2024-10-14 16:22:10
Score: 6 🚩
Natty: 5.5
Report link

have you fixed this problem or not?

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

79086857

Date: 2024-10-14 15:59:02
Score: 8 🚩
Natty: 6.5
Report link

Same issue, same stack. Anyone solve?

Reasons:
  • RegEx Blacklisted phrase (1.5): solve?
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Brian Aderer

79086816

Date: 2024-10-14 15:42:58
Score: 4
Natty:
Report link

If you're looking for the cheapest setup with minimal traffic, here's a combination you can try:

  1. AWS Lambda to run your API backend.

  2. Amazon S3 + CloudFront to serve static content (HTML/CSS/JS).

  3. Amazon Aurora Serverless (MySQL or PostgreSQL) or RDS (MySQL/PostgreSQL) for the database.

This would significantly reduce costs as you only pay for usage, and all infrastructure management is handled by AWS. Total costs could be around $10-30/month depending on your exact usage.

Or like you mentioned, GoDaddy would be a simpler/cheaper route, but may cost you the flexibility.

If this solution works for you, please consider marking the answer as accepted to help others who might have a similar question. Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): have a similar question
  • Low reputation (1):
Posted by: Erik Sierra

79086658

Date: 2024-10-14 14:56:45
Score: 6.5 🚩
Natty: 5
Report link

I have the same problem, I have done everything possible to fix this problem and still not rendering the server in frontend

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kony Nunez

79086625

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

cd "$(git rev-parse --show-toplevel)"

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

79086605

Date: 2024-10-14 14:43:41
Score: 4
Natty:
Report link

Is there any documentation describing how to "use BitBucket web hooks to create a merged branch like github does"?

I've tried a ton of different options to get TC to trigger a build when a BitBucket Cloud PR is opened to no avail. This looks like a good solution but I'm not particularly fluent in webhooks.

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: eeease

79086600

Date: 2024-10-14 14:42:39
Score: 10.5 🚩
Natty:
Report link

it is done and worked? i check the link it is worked, how? can you explain how it work? i get same error too

Reasons:
  • RegEx Blacklisted phrase (2.5): can you explain how
  • RegEx Blacklisted phrase (1): check the link
  • RegEx Blacklisted phrase (1): i get same error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i get same error
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: void

79086597

Date: 2024-10-14 14:41:38
Score: 6.5 🚩
Natty:
Report link

Did you get this to work? I'm in a similar situation with my iis applications. The application calling the other application is always identified as app pool user in the second one

Reasons:
  • RegEx Blacklisted phrase (3): Did you get this to
  • 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: user1471669

79086530

Date: 2024-10-14 14:24:33
Score: 4
Natty:
Report link

I think you have to reauthenticate your user and then change the email and then send a verification mail

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

79086473

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

If you are on windows then go to task manager>details and kill all processes named as httpd.exe

enter image description here

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

79086449

Date: 2024-10-14 13:59:25
Score: 5
Natty: 6
Report link

Have you tried creating a calculated field "Evaluate Expression" directly in Workday?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • 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: Sam

79086397

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

I want to run my next14 application forever how to do it using pm2? Basically requirement is that there will be no internet access, client just want to run on his local machine.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: anonymous

79086382

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

I tried route53 method but my site is not live yet this is image of my hosted zon

HELP

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

79086299

Date: 2024-10-14 13:18:11
Score: 6 🚩
Natty: 4
Report link

you can follow this link to solved it: https://www.cubebackup.com/docs/tutorials/gcp-allow-service-account-key-creation/

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jia cheney

79086263

Date: 2024-10-14 13:07:08
Score: 5
Natty: 7
Report link

Any update with the idea of getting the .pdf directly ?? I am stuck with that rn !!

Reasons:
  • RegEx Blacklisted phrase (1.5): I am stuck
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Swagnik

79086217

Date: 2024-10-14 12:53:04
Score: 4
Natty:
Report link

how is your OpenAPI spec defined? You need to define the security scheme as being a client_credentials oauth flow

That said... it looks like the generator your using does't have support for Oauth2 client credentials

Disclaimer that I work for the company, but Speakeasy generates a pydantic-based client, and does have support for OAuth2. You can maintain one SDK free. I would give it a look.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how is you
  • Low reputation (1):
Posted by: Nolan Di Mare Sullivan

79086157

Date: 2024-10-14 12:32:59
Score: 7.5 🚩
Natty: 5.5
Report link

Any update. How you fixed it ?

Reasons:
  • RegEx Blacklisted phrase (1.5): fixed it ?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sam

79086148

Date: 2024-10-14 12:30:58
Score: 5.5
Natty: 5.5
Report link

I am curious, can't this be achieved by MERGE?

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

79086060

Date: 2024-10-14 11:59:49
Score: 4
Natty: 4
Report link

Check if your Client ID and Secret is expired.

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

79086053

Date: 2024-10-14 11:58:48
Score: 4.5
Natty:
Report link

@nikunj-kakadiya This is not Spark-specific. This is Databricks Unity Catalog specific.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @nikunj-kakadiya
  • Single line (0.5):
  • Looks like a comment (1):
Posted by: Ganesh Chandrasekaran

79086021

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

UTL_MATCH doesn't run in parallel by default, see this answer for details:

https://stackoverflow.com/a/79085866/6925323

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jörg

79085993

Date: 2024-10-14 11:37:42
Score: 4.5
Natty: 4.5
Report link

There is a Google guide on this: https://developers.google.com/apps-script/guides/html/templates?hl=en#pushing_variables_to_templates

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

79085988

Date: 2024-10-14 11:36:42
Score: 5
Natty: 5
Report link

Does not work for me. As soon as I hit the play_obj.pause() statement the program exit with no messages!?

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

79085956

Date: 2024-10-14 11:25:39
Score: 4
Natty:
Report link

Hey there Christian Noble 🤪👋🏾..

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

79085906

Date: 2024-10-14 11:12:35
Score: 5.5
Natty:
Report link

is this the resource you are looking for?: https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/monitor_autoscale_setting.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is this the
  • Low reputation (1):
Posted by: Enes

79085896

Date: 2024-10-14 11:09:34
Score: 4
Natty: 4.5
Report link

Recently neo4j partnered with Bigquery to create this, maybe it will help you

https://github.com/neo4j-partners/neo4j-google-cloud-dataflow

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

79085882

Date: 2024-10-14 11:05:32
Score: 6 🚩
Natty: 5.5
Report link

In my React Native project, I want to use GitLab CI to automatically run lint checks and tests for every merge request. After that, I want to generate an APK for the branch I've committed to and send it to specific people on Slack. Is this possible?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user27791597

79085864

Date: 2024-10-14 10:58:29
Score: 4
Natty:
Report link

This issue occurred after upgrading Spring Boot from 3.2.x to 3.3.x.

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

79085828

Date: 2024-10-14 10:50:27
Score: 4
Natty:
Report link

it works only If dateA and dateB are in the same node. but If they are in two diffents nodes ? can we use the same function

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

79085779

Date: 2024-10-14 10:37:23
Score: 4
Natty: 5
Report link

I am trying to integrate the same with my application, how to initiate a call to to EFT API to perform a transaction.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: nani babu

79085772

Date: 2024-10-14 10:34:22
Score: 7 🚩
Natty: 5.5
Report link

I have the same problem, but no solution yet

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nghia Basil

79085742

Date: 2024-10-14 10:25:19
Score: 5
Natty: 4.5
Report link

This link help for me to resolve this issue: https://kayart.dev/how-to-add-custom-filters-to-the-wordpress-users-table/

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

79085711

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

is it solved? if yes then how, i am also facing this same error please help.

Reasons:
  • Blacklisted phrase (1): also facing this
  • RegEx Blacklisted phrase (3): please help
  • RegEx Blacklisted phrase (1.5): solved?
  • RegEx Blacklisted phrase (1): i am also facing this same error please
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is it solve
  • Low reputation (1):
Posted by: Coldnokoji

79085703

Date: 2024-10-14 10:10:14
Score: 6.5 🚩
Natty: 5.5
Report link

I am also encountering the same issue when trying to register through FIDO2 everything works fine, but when i try to login the user it shows "There aren't any passkey for app in this device". Have you found the solution for this?

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found the solution for this
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Naman Patel

79085698

Date: 2024-10-14 10:08:14
Score: 8.5
Natty: 7
Report link

im facing similar issue. Just wondering - how do you filter by LasrModified if this is not supported by the aws sdk ?

Reasons:
  • Blacklisted phrase (1): how do you
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing similar issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Roniron

79085683

Date: 2024-10-14 10:05:12
Score: 10.5 🚩
Natty: 5
Report link

We came across the same issue today (too many requests, c3p0, mysql 5 -> 8). Were you able to solve it? Thanks

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

79085548

Date: 2024-10-14 09:33:04
Score: 5
Natty:
Report link

Thanks for code, I would never be able to do it looking at it.

You could target the billing country code instead of targeting the first 2 characters from the VAT code.

How could I do that?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Daniel Górecki

79085531

Date: 2024-10-14 09:29:03
Score: 4
Natty: 4.5
Report link

Use REST API and call it from the web browser.

https://learn.microsoft.com/en-us/azure/devops/integrate/how-to/call-rest-api?view=azure-devops

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

79085522

Date: 2024-10-14 09:26:02
Score: 4.5
Natty: 4.5
Report link

this code is removing default email notifications - for both - customer and admin. How we can still have email notifications for customer with new order (on hold/processing) and for admin (with new order details)? And these two new statuses firing email on status change?

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

79085494

Date: 2024-10-14 09:15:59
Score: 4
Natty:
Report link

Seems to be fixed in Xcode 16/iOS 18

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

79085432

Date: 2024-10-14 08:59:54
Score: 5
Natty:
Report link

Why don't you try reinstalling your npm globally using this command npm install -g npm

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why don't you
  • Low reputation (1):
Posted by: Oba

79085429

Date: 2024-10-14 08:58:53
Score: 6 🚩
Natty: 5
Report link

is this applies for .net 8 also?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): is this
  • Low reputation (0.5):
Posted by: Javorov1103

79085396

Date: 2024-10-14 08:50:50
Score: 4.5
Natty: 4.5
Report link

Not working

Module connected, but not connected!

What wrong with Postgre?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Юрий Соснов

79085388

Date: 2024-10-14 08:47:48
Score: 15.5
Natty: 7.5
Report link

I am facing the same problem; did you get any solution for it?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): m facing the same problem
  • RegEx Blacklisted phrase (3): did you get any solution
  • RegEx Blacklisted phrase (2): any solution for it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pranali Dhane

79085325

Date: 2024-10-14 08:28:43
Score: 4.5
Natty:
Report link

For anyone else facing a similar issue. The issue will arise if you are running using a profile configured in another user. The config file should be in same user's ~/.aws directory.

If you have switched to another user when running the command it will try to find the profile of that user

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing a similar issue
  • Low reputation (1):
Posted by: Lakshitha Karunanayake

79085307

Date: 2024-10-14 08:23:41
Score: 4
Natty: 4
Report link

You can see this,it worked fine for me. https://www.reddit.com/r/rprogramming/comments/1ct8rma/missing_library_functions_and_unresolved_symbols/

Reasons:
  • Whitelisted phrase (-1): it worked
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jon Grey

79085277

Date: 2024-10-14 08:17:39
Score: 5.5
Natty: 6.5
Report link

I have add data-ref attribute to the cells of the ag-grid but the problem is that my table is really big and when I scroll down or expand the grid I don't this attribute on the cells which were not visible on the start of application. Any help with this ?

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

79085263

Date: 2024-10-14 08:12:37
Score: 6.5 🚩
Natty: 5.5
Report link

I'm having the same issue here, PowerShell 5 managed to parse my website but my Python script (I'm using scrapy lib) is getting redirected somewhere else. Any result from your search showing why this happens??

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Mohamed Aly

79085256

Date: 2024-10-14 08:11:36
Score: 4.5
Natty: 6.5
Report link

I have acually (14.10.2024) the same problem even with the newest update for visual studio when I edit javascript. Syntax highlighting really works up to code line 10000 and from line 10001 on all the code is in same color (no syntactical diffentiations by color)... This would not be so a big problem, but: It seems to me, that at runtime, i now get error messages (from the console-logs of the browsers) which reference code lines absolute unlogic in relation to the source code... So I thnik, that may be not only the syntax highlighting is confused but the whole source-code-line-numbering. I dont want to use "sytax fixers" and "large file viewers" etc. I think that this seems to be a fundamental problem which should be solved in a gener way!!! Waht can I do?

Reasons:
  • Blacklisted phrase (1): can I do
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Peter Trachsel Switzerland

79085219

Date: 2024-10-14 08:01:33
Score: 5
Natty:
Report link

It's a community bug, 2.47 and before is fine https://github.com/prometheus/prometheus/issues/15147

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: xing wu

79085166

Date: 2024-10-14 07:47:28
Score: 9.5 🚩
Natty: 4.5
Report link

Hey I am on the same issue as you can you help me

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can you help me
  • RegEx Blacklisted phrase (2): Hey I am
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user27788055

79085151

Date: 2024-10-14 07:43:26
Score: 4
Natty:
Report link

this is my ssh tunnel tool by rust, maybe it can help you.

https://github.com/xeekst/ssh-tunnel-rs

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

79085085

Date: 2024-10-14 07:25:21
Score: 7.5 🚩
Natty: 4.5
Report link

enter image description here В имени администратора или пользователя к базе данных есть символы, одна из причин.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Алескандр

79085041

Date: 2024-10-14 07:11:18
Score: 4.5
Natty: 6.5
Report link

What if put all the task on ScheduledExecutorService , but then if server goes off or server get updates and restarts there task which i have give to threads will be lost is there , any solution for this

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What if
  • Low reputation (1):
Posted by: Ramakrishna shetty

79085030

Date: 2024-10-14 07:06:16
Score: 9 🚩
Natty: 5.5
Report link

Did you find a solution to this problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to this problem
  • Low length (1.5):
  • 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 to this
  • Low reputation (1):
Posted by: Gustav

79084982

Date: 2024-10-14 06:49:12
Score: 4
Natty:
Report link

What i did was : https://youtrack.jetbrains.com/issue/IDEA-64781/Allow-auto-completion-for-plain-text-files-to-be-disabled

Settings/Preferences -> General -> Editor -> Code Completion

disable all plugin which allow to auto complete but make sure to turn it on when required

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): What i
  • Low reputation (1):
Posted by: Kartikeya Tiwari

79084920

Date: 2024-10-14 06:20:05
Score: 7 🚩
Natty: 5
Report link

I had exactly this problem and @Abel Rodríguez solution worked. I have no clue why this is happening. If someone has more insight and could possibly explain it?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Abel
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Sebastian van der Westhuizen

79084838

Date: 2024-10-14 05:45:56
Score: 6.5 🚩
Natty:
Report link

Has anyone been able to accomplish this in Java Selenium. There is no "AddUserProfilePreference" method in java...

Reasons:
  • RegEx Blacklisted phrase (3): Has anyone been
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniel

79084754

Date: 2024-10-14 05:06:47
Score: 4
Natty:
Report link

use wxAutoExcel, it is easy and have sample in there

link github: https://github.com/PBfordev/wxAutoExcel

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

79084750

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

Apart from Thisaru's answer, do you have a MySQL db running locally? Can you verify it by connecting via CLI?

  1. mysql -h localhost -P 3306 -u root -p
  2. Enter the pass
  3. Execute USE testdb;
Reasons:
  • RegEx Blacklisted phrase (2.5): do you have a
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Anjana Supun

79084718

Date: 2024-10-14 04:41:41
Score: 5.5
Natty: 4.5
Report link

I tried Hoshomoh's solution, however, when I'm doing it, the system can't tell the difference between /breweries/:id and /breweries/submit.

Is there a way to get around this?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Mark Rosenberg

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: פיני