79262971

Date: 2024-12-08 17:20:27
Score: 6 🚩
Natty:
Report link

What version of react-native do you have? Are you using the "new architecture"?

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
  • Low reputation (1):
Posted by: Karina Ostrovska

79262969

Date: 2024-12-08 17:18:26
Score: 8.5 🚩
Natty:
Report link

Can you please provide some code so that I can offer better help?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please provide some code
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you please
  • Low reputation (1):
Posted by: ShadowKnight700

79262952

Date: 2024-12-08 17:09:23
Score: 4
Natty:
Report link

El código de cliente que finalmente ha funcionado es el siguiente.

async function exportarCanvasF1(nombrearchivo, start_) {       

let start = Number(start_);
        var chunkSize = 30000; // size of each chunk
        let start_limite = (start == 0 ? Number(start_) : 

Number(start_)) + chunkSize;      

 if (start_limite > dataURL.length) {
     start_limite = (start_limite - (start_limite -  dataURL.length - 1));
  }
 if (Number(start) + chunkSize > dataURL.length) {
    chunkSize = chunkSize - ((Number(start) + chunkSize) - dataURL.length) + 1;           }
            
  let dataURL_;
    
   if (Number(start) < dataURL.length) {           

   dataURL_ = dataURL.substr(start, chunkSize);
   **dataURL_ = encodeURIComponent(dataURL_);**
               
   $.ajax({               

   type: "POST",
   url: "Respuestaajax.aspx/Respuestaaj",
   contentType: "application/json; charset=utf-8",
   data: 

'{"parametro":"funcion","valor":"TroceadoFileBase64","tabla":"' + dataURL_ + '","campo":"' + nombrearchivo + '","criterio":"' + start_limite + '","v1":""}',
   dataType: "json",
   success: function (devolucion) {
     if (devolucion.d) {
       var d = JSON.parse(devolucion.d);
       exportarCanvasF1(d[0][1], d[1][1]);
           }
    },
     error: function (req, status, error) {
                    }
                });
     }
  else if (!Number(start) < dataURL.length) {
      dataURL_ = dataURL.substr(start, chunkSize);
      console.log("Length chunk: " + dataURL_.length);
      **dataURL_ = encodeURIComponent(dataURL_);**
                
       $.ajax({
         type: "POST",
         url: "Respuestaajax.aspx/Respuestaaj",
         contentType: "application/json; charset=utf-8",
         data: 
        '{"parametro":"funcion","valor":"TroceadoFileBase64","tabla":"' + 
        dataURL_ + '","campo":"' + nombrearchivo + '","criterio":"' + 
        start_limite + '","v1":""}',
         dataType: "json",
         success: function (devolucion) {
         if (devolucion.d) {
            var d = JSON.parse(devolucion.d);
                 $.ajax({
                  type: "POST",
                  url: "Respuestaajax.aspx/Respuestaaj",
                  contentType: "application/json; charset=utf-8",
                 data: '{"parametro":"funcion","valor":"TroceadoFileBase64_fin","tabla":"' + nombrearchivo + '","campo":"","criterio":"","v1":""}',
                 dataType: "json",
                 success: function (devolucion) {
                     if (devolucion.d) {
                                    }
                     },
                      error: function (req, status, error) {                                    
                                }
                            });
                        }
                    },
                    error: function (req, status, error) {
                     alert("No hubo respuesta desde el servidor. Prueba otra vez.");
                    }
                });
    
            }
        }

Y el de cliente:

public string TroceadoFileBase64(string base64file, string nombrefile, string start)
        {
    string jsonDevolucion = "";
           
  
   **string base64filedec1 = HttpUtility.UrlDecode(base64file);**  
                                                                               
    byte[] b = null;
    System.Text.ASCIIEncoding codificador = new 
    System.Text.ASCIIEncoding();
    b = codificador.GetBytes(base64filedec1);

    CrearfiledesdeArray(b, nombrefile);

     string[,] devolucion = new string[2, 2]; // 2 bloques de 2 datos                
                devolucion[0,0] = "nombrefile";
                devolucion[0,1] = nombrefile;
                devolucion[1,0] = "start";
                devolucion[1,1] = start;
                
     jsonDevolucion = JsonConvert.SerializeObject(devolucion);

     return jsonDevolucion;
}
               
public string TroceadoFileBase64_fin(string nombrefile)
        {
               
                string strtextfile = File.ReadAllText((string)HttpContext.Current.Server.MapPath("~") + "google/archivoseditados/" + Left(nombrefile, nombrefile.Length - 4) + ".txt");

                int mod4 = strtextfile.Length % 4;
                if (mod4 > 0)
                {
                    strtextfile += new string('=', 4 - mod4);
                }

                byte[] b = null;

                b = Convert.FromBase64String(strtextfile);

                File.WriteAllBytes((string)HttpContext.Current.Server.MapPath("~") + "google/archivoseditados/" + nombrefile, b);

                return "Finalizado";
        }

public void CrearfiledesdeArray(Byte[] array, string nombrefile)
        {
                FileStream fs = new FileStream((string)HttpContext.Current.Server.MapPath("~") + "google/archivoseditados/" + Left(nombrefile, nombrefile.Length - 4) + ".txt", FileMode.Append);
                fs.Seek(0, SeekOrigin.End);
                fs.Write(array, 0, array.Length);
                fs.Flush();
                fs.Dispose();
          
        }
   
Reasons:
  • Blacklisted phrase (2): código
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Manuel Cera Vera

79262907

Date: 2024-12-08 16:48:17
Score: 8 🚩
Natty:
Report link

Thanks for sharing your insights regarding the issue with desaturated and faded images in GANs. I’m encountering a similar problem but with an autoencoder model I’m training using TensorFlow 1.15.8 (DirectML). Problem Description:

My model outputs blurry and low-contrast images compared to the expected results. Here’s what I’m working with:

Python Version: 3.7
TensorFlow Version: TensorFlow 1.15.8 (DirectML)
GPU: AMD Radeon RX 6700XT
Model Type: Convolutional Autoencoder for image reconstruction.

Despite data normalization and implementing data augmentation (rotation, brightness adjustment, horizontal flipping), the model struggles to generate high-quality reconstructions. I suspect it might be related to the convolutional layers or loss function settings. What I’ve Tried:

Reducing the learning rate.
Normalizing the dataset ([0,1] range).
Adjusting the number of filters in the encoder and decoder.
Using MSE as the loss function.

Images:

I’ve included comparisons of the input, expected output (target), and the model’s predictions below:

Example 1: enter image description here

Example 2:

enter image description here

Questions:

1-) Could doubling the filters in the encoder/decoder layers help address the blurriness as it did for the critic in your GAN?

2-) Is there a way to combine MAE loss with MSE during training to prevent this desaturation?

3-) Are there any specific adjustments I can make to the learning process or network architecture to avoid the blurry and faded outputs?

I appreciate your advice and any suggestions you can provide to tackle this issue.

Thanks in advance!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Is there a way
  • Blacklisted phrase (2): Thanks for sharing
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (2): any suggestions
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Murat KA

79262900

Date: 2024-12-08 16:45:15
Score: 7.5
Natty: 7
Report link

האן אפשר ליצור בספרייה VPython דמות תלת מימד בה כל איבר ניתן להזזה ויבצע תנועה?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: תמר מאור

79262877

Date: 2024-12-08 16:36:13
Score: 4
Natty:
Report link

the error most likely indicates that models architecture isnt directly recognized by conversion script have you tried "python convert-hf-to-gguf.py /path/to/model --outtype f16" ?

these links might help: https://github.com/ggerganov/llama.cpp#obtain-and-prepare-the-model-files

for transforming it https://huggingface.co/docs/transformers/index

https://ollama.com/

Reasons:
  • Blacklisted phrase (1): these links
  • Whitelisted phrase (-1): have you tried
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user28685777

79262791

Date: 2024-12-08 15:53:03
Score: 4.5
Natty: 5
Report link

I was working on my master thesis and I made the same mistakes as you... I was so frustrated and have no idea how to restore my files. Did you end up with restore all your files in the end and how?

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

79262783

Date: 2024-12-08 15:49:01
Score: 4
Natty:
Report link

You need to install jdk first.

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

79262757

Date: 2024-12-08 15:35:58
Score: 4.5
Natty:
Report link

And what about if I want to filter by category, and also display fields like no. Of connects, budget, no. Of bids etc

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bilal

79262743

Date: 2024-12-08 15:27:55
Score: 4.5
Natty: 4
Report link

You can Checkout this repo : https://github.com/nextauthjs/next-auth/discussions/4557 ( official next-auth repo )

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

79262726

Date: 2024-12-08 15:13:52
Score: 4
Natty: 5
Report link

Thank you, but just editing the file that worked!

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

79262722

Date: 2024-12-08 15:13:51
Score: 5.5
Natty: 4.5
Report link

has your problem been resolved? I'm also having this problem right now

Reasons:
  • RegEx Blacklisted phrase (1.5): resolved?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Đạm Nguyễn Thanh

79262708

Date: 2024-12-08 15:05:46
Score: 7 🚩
Natty:
Report link

I want to add upon T.J's answer, since I faced this problem and could not figure it out, you should also make it a practice to use double quotes "" instead of single quotes '' when it comes to json, lest you face the same problem in future.Have a good day...

Reasons:
  • Blacklisted phrase (1): good day
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): face the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: dantalian

79262695

Date: 2024-12-08 14:57:44
Score: 5
Natty: 4
Report link

I added these files libssl-3-x64.dll libcrypto-3-x64.dll libintl-9.dll libiconv-2.dll libwinpthread-1.dll to the directory where my executable is located, and everything worked. But is there any way to make visual studio take these files from PostgreSQL\17\bin directory by itself?

Reasons:
  • Blacklisted phrase (1): is there any
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: There QMoro

79262677

Date: 2024-12-08 14:46:40
Score: 5
Natty:
Report link

Have you tested with TrOCR? If not, maybe this guide helps you: https://learnopencv.com/trocr-getting-started-with-transformer-based-ocr/

It works with computer generated and as well with handwritten inputs

Reasons:
  • Blacklisted phrase (1): this guide
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: rizzling

79262637

Date: 2024-12-08 14:25:35
Score: 4.5
Natty:
Report link

I avoid it by using markeddown it.

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

79262579

Date: 2024-12-08 13:43:25
Score: 10.5
Natty: 7
Report link

Have you found a solution? I have the same problem

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (2.5): Have you found a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28683985

79262538

Date: 2024-12-08 13:19:19
Score: 5.5
Natty:
Report link

I Have similar problem. It is about namespaces....

XMLDoc.SetProperty "SelectionNamespaces", "xmlns:dummy=""http://www.w3.org/2005/Atom""" Set Entries = XMLDoc.DocumentElement.SelectNodes(".//dummy:entry") 'Set Entries = XMLDoc.DocumentElement.SelectNodes(".//entry") 'DOES NOT WORK

From here: https://vbaplanet.com/xml.php

Reasons:
  • Blacklisted phrase (1): I Have similar
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I Have similar problem
  • Low reputation (1):
Posted by: Vít Jirman

79262517

Date: 2024-12-08 13:12:15
Score: 7.5 🚩
Natty:
Report link

Same here! When I refresh the page, it's back to normal, but then with every new line printed while the window is open, it again narrows more and more. So annoying. You guys found any solution yet?

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

79262471

Date: 2024-12-08 12:52:10
Score: 4
Natty:
Report link

@samcarter_is_at_topanswers.xyz somehow your suggestion looks this for me (maybe because of this setting? \captionsetup{labelfont={bf,footnotesize},textfont=footnotesize}) also I got at \begin{subfigure}{\textwidth} the error Missing number, treated as zero. Illegal unit of measure (pt inserted). And there is still a big gap between the second image and the top of the page.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: sophie

79262470

Date: 2024-12-08 12:52:10
Score: 4.5
Natty: 5
Report link

@mahouuuuuuu Unfortunately I am not yet allowed to comment, but I am very much struggling with the same issue (and searching for a simple solution) – I would be happy if you could share the code for your solution with everyone here. :)

For Wordpress I found a solution if someone wants to offer a video course and needs to be sure that participants are watching the whole video(s) without jumping, but this plugin is 'far too much'/bloated (for my needs): LearnDash LMS + Video Progression.

Reasons:
  • Blacklisted phrase (1): this plugin
  • Blacklisted phrase (1): to comment
  • No code block (0.5):
  • User mentioned (1): @mahouuuuuuu
  • Low reputation (1):
Posted by: art farmer

79262449

Date: 2024-12-08 12:34:06
Score: 9 🚩
Natty:
Report link

The FBI has me as a project and they shock me daily with Russian malware they are torturing me and I have been in my house being tortured for eight months I need help please my name is Beau Aguirre they shock my mother and our dog with a device that runs on satellite three

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • RegEx Blacklisted phrase (1.5): help please
  • RegEx Blacklisted phrase (1): I have been in my house being tortured for eight months I need help please
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Beau Aguirre

79262444

Date: 2024-12-08 12:31:05
Score: 4
Natty:
Report link

Fiam! Zsámó zsázsé megyünk vasé!

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mikorka Kálmán

79262432

Date: 2024-12-08 12:21:01
Score: 7.5 🚩
Natty:
Report link

Could you show us the docker compose file? or maybe some scripts you're trying to run

And I'm thinking about some ideas below:

Reasons:
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (2.5): Could you show us
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: SirT

79262405

Date: 2024-12-08 12:03:57
Score: 5.5
Natty:
Report link

Which expo version do you use? there is an issue on github, I think this can be the same root cause. Have you already checked it? https://github.com/clerk/javascript/issues/4669

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

79262403

Date: 2024-12-08 12:02:56
Score: 5.5
Natty:
Report link

Facing the same issue. I can't proceed to the next cause there is no app bundle to select. I don't know why this happened.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nahid Faraji

79262399

Date: 2024-12-08 11:57:54
Score: 7 🚩
Natty:
Report link

Where are you trying this? can you please elaborate

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please elaborate
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Where are you
  • Low reputation (1):
Posted by: Mani Shankar

79262396

Date: 2024-12-08 11:55:53
Score: 6 🚩
Natty:
Report link

same problem with popup in vscode everytime but i never used wsl before... after updating to the latest version this is happening as i am using windows 11 from quite a while. please post the update if you find any..

Reasons:
  • RegEx Blacklisted phrase (2.5): please post
  • RegEx Blacklisted phrase (1): same problem
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: It- is-it

79262351

Date: 2024-12-08 11:33:47
Score: 6 🚩
Natty: 4.5
Report link

I know this is an old thread, but I found it and I want to use it because it works well and I like it. My only problem is that I also have translatePress on top, and it sends these unique emails to customers in the primary language in all sorts of ways, regardless of what language they ordered in. Is there a way to set this up so that it doesn't translate these unique emails, and I create a status/email for each language? Or should it take the language of the order into account? Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Is there a way
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Xen42

79262328

Date: 2024-12-08 11:17:42
Score: 6.5 🚩
Natty:
Report link

I have the same issue, Didn't find solution. I already reported to support. my current solution to toggle collapse console, but it back again.

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

79262208

Date: 2024-12-08 10:04:24
Score: 4
Natty: 6.5
Report link

Why do i only see this when im on Restriction or banned on Fedbook? What is big tech doing to our phones with this code?? 👍

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why do i on
  • Low reputation (1):
Posted by: Bryan Carosi

79262159

Date: 2024-12-08 09:35:17
Score: 4
Natty: 4
Report link

I also used some thing in that line and to solve it try instead and it helped

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

79262020

Date: 2024-12-08 07:37:54
Score: 5
Natty: 5
Report link

Are the eigenvalues the same? The eigenvectors may be different by a phase, for non-degenerate eigenvalues, or rotated for degenerate eigenvalues. Could you be more specific?

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

79262008

Date: 2024-12-08 07:31:52
Score: 6.5 🚩
Natty: 5.5
Report link

Did you overcame your issue yet?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: explorateur

79261986

Date: 2024-12-08 07:06:46
Score: 8.5 🚩
Natty: 4.5
Report link

I am also trying to do the similar thing but no solutions so far. Were you able to resolve this issue by any chance?

Reasons:
  • RegEx Blacklisted phrase (3): Were you able
  • RegEx Blacklisted phrase (1): solve this issue by any chance?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Yashi Goyal

79261979

Date: 2024-12-08 07:01:42
Score: 8.5 🚩
Natty: 5
Report link

thank you, but that is not such a good advice, since it will be overwritten with the next update. any other suggestions? ... since accessibility checkers always complain about this... thanks in advance for better solutions!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (3): thanks in advance
  • RegEx Blacklisted phrase (2): any other suggestions?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Martina Bartik

79261953

Date: 2024-12-08 06:37:37
Score: 4
Natty: 4.5
Report link

The & nesting selector became available in browsers in December 2023: https://developer.mozilla.org/en-US/docs/Web/CSS/Nesting_selector.

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

79261942

Date: 2024-12-08 06:12:32
Score: 4.5
Natty: 5.5
Report link

i have already installed pytz. when i,m run its showing ModuleNotFoundError: No module named 'pytz' . Also my repo and vps same time zone. what can i do for that?

Ubuntu 22.04.5 LTS (GNU/Linux 5.15.0-25-generic x86_64) Python 3.10.12

Reasons:
  • Blacklisted phrase (1): can i do
  • Blacklisted phrase (1): what can i do
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: adgtiktok

79261941

Date: 2024-12-08 06:12:31
Score: 4
Natty:
Report link

there is project at Github https://github.com/buresu/ndi-python that shows how to read NDI in Python

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

79261899

Date: 2024-12-08 05:34:23
Score: 5.5
Natty: 5.5
Report link

when we run, I could see all the scenarios execute sequentially whether we can run parallel?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): when we
  • Low reputation (1):
Posted by: Bobby Stefy chris

79261855

Date: 2024-12-08 04:40:10
Score: 6.5 🚩
Natty:
Report link

I'm have similar issue with me , not sure if the "randomforest" libarary from CRAN is supported for my R version

RStudio 2024.09.0+375 "Cranberry Hibiscus" Release (c8fc7aee6dc218d5687553f9041c6b1e5ea268ff, 2024-09-16) for macOS Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) RStudio/2024.09.0+375 Chrome/124.0.6367.243 Electron/30.4.0 Safari/537.36, Quarto 1.5.57

Appreciate if any one can help, I have a project assignment to submit tomorrow EOD. sunday Dec-8-2024

Reasons:
  • RegEx Blacklisted phrase (3): any one can help
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm have similar issue
  • Low reputation (1):
Posted by: user27556210

79261816

Date: 2024-12-08 03:46:59
Score: 4.5
Natty:
Report link

I can not create comments yet, but if you do not find a better answer than this, or you can not wait until this is implemented in aspire as they told you in discussion in github

Consider creating a local project api that will act as a proxy for you external(s) apis, this will help for other things too (evaluate if you want this project to be publish or just for development).

you in this proxy you can implement strategys as retries, fallback, cache...

Reasons:
  • Blacklisted phrase (3): comments yet
  • No code block (0.5):
  • Low reputation (1):
Posted by: Maick

79261780

Date: 2024-12-08 03:00:49
Score: 7 🚩
Natty: 6.5
Report link

enter image description here

enter image description here

Have you added the configuration in the .pro file?

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: white

79261765

Date: 2024-12-08 02:48:45
Score: 4.5
Natty: 5
Report link

this is complete crap. why did they deprecate direct sound are they fricken crazy??? what the hell is the meaning of this.

Reasons:
  • Blacklisted phrase (1): ???
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Magnus Wootton

79261746

Date: 2024-12-08 02:33:42
Score: 5.5
Natty:
Report link

I am having the same issue "ValueError: '-' is a bad directive in format '%a %-d %b %Y'"

The trouble is that this is happening after removing all the code except 2 lines.

from datetime import datetime
df=xl("output[[#All],[Event]:[Taste]]", headers=True)

Is there a error cache or similar with Excel?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I am having the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: James Park

79261714

Date: 2024-12-08 01:32:30
Score: 10
Natty: 7
Report link

i am trying to bypass http ddos please help i am getting stuck no bad sources rule @julien-desgats thank you very match i lav u!

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): i am trying to
  • RegEx Blacklisted phrase (3): please help
  • RegEx Blacklisted phrase (1): i am trying to bypass http ddos please
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @julien-desgats
  • Single line (0.5):
  • Low reputation (1):
Posted by: bettercallworker

79261686

Date: 2024-12-08 00:59:23
Score: 14.5
Natty: 7.5
Report link

I'm having the same problem. Were you able to solve it?

Reasons:
  • Blacklisted phrase (1): I'm having the same problem
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Isaque França

79261685

Date: 2024-12-08 00:58:22
Score: 7.5 🚩
Natty: 4
Report link

lo solucione.... Instale PyQt5 como recomiendan: $ pip install PyQt5

Aun así no funcionaba.

Luego instale el tkinter en WSL

sudo apt-get install python3-tk

luego, lo implemente de esta manera:

import seaborn as sns

import matplotlib

matplotlib.use('TkAgg')

import matplotlib.pyplot as plt

al principio del código. luego lo ejecute y se mostró el grafico sin problemas… saludos.

Reasons:
  • Blacklisted phrase (2): código
  • Blacklisted phrase (2.5): solucion
  • Blacklisted phrase (1.5): saludos
  • No code block (0.5):
  • Low reputation (1):
Posted by: Julio Rucobo

79261665

Date: 2024-12-08 00:35:16
Score: 5.5
Natty: 4
Report link

Read this documentation first: tabulator.js doc

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

79261644

Date: 2024-12-08 00:17:11
Score: 4.5
Natty:
Report link

Have your tried os.replace() or shutil.move()?

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

79261618

Date: 2024-12-07 23:55:06
Score: 10
Natty: 8
Report link

Can someone please help me understand how to solve the following error: "zsh: bus error python show_laptop_V2.py --simulation" ?

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (3): please help me
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can someone please help me
  • Low reputation (1):
Posted by: Nadia

79261585

Date: 2024-12-07 23:26:59
Score: 7 🚩
Natty: 4
Report link

Muchas Gracias!, funciona perfecto!

Reasons:
  • Blacklisted phrase (2): Gracias
  • 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: Jonathan

79261581

Date: 2024-12-07 23:23:56
Score: 7.5 🚩
Natty:
Report link

I'm having the same issue, did you ever find a solution?

Funny actually it worked for like a day then stopped working again

Reasons:
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (3): did you ever find a solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: James Watts

79261552

Date: 2024-12-07 22:59:49
Score: 4.5
Natty: 7.5
Report link

My okwin gifts code free 2000 hajar ka plz help mi sir Gift code de do sar

Reasons:
  • Blacklisted phrase (1): plz help
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Subhir Koshle

79261424

Date: 2024-12-07 21:23:26
Score: 7.5 🚩
Natty: 4.5
Report link

did u find a solution? let me know if you did, please

Reasons:
  • RegEx Blacklisted phrase (3): did u find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: Alex Rubanov

79261314

Date: 2024-12-07 20:14:09
Score: 7 🚩
Natty: 5.5
Report link

i have the same problem, i don't know either

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: bruno pospiesh

79261285

Date: 2024-12-07 19:55:04
Score: 9.5 🚩
Natty: 4.5
Report link

I am still seeing the same issue, but I cannot downgrade the version because the 1.6.x series have the dependency overt the old httpclient jar. so what should i do now?

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Blacklisted phrase (2): what should i do
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): seeing the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: JackMa

79261240

Date: 2024-12-07 19:23:55
Score: 4
Natty:
Report link

Any luck resolving this?

I am experiencing the same thing, and just created an Instance Tracker issue for it.

Reasons:
  • Blacklisted phrase (1.5): Any luck
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Timothy Johns

79261239

Date: 2024-12-07 19:23:55
Score: 5
Natty: 4.5
Report link

My implementation that uses OSM https://github.com/joric/location-bot example Telegram bot https://t.me/joricslocationbot

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

79261234

Date: 2024-12-07 19:19:53
Score: 5
Natty:
Report link

Here are some resources that provide example code for discord.py slash commands:

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

79261155

Date: 2024-12-07 18:37:44
Score: 6.5
Natty: 7.5
Report link

how can i see only the modified/added content ?

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
  • Low reputation (1):
Posted by: Asaf Ben Shabat

79261119

Date: 2024-12-07 18:17:38
Score: 5
Natty:
Report link

It can be installed https://www.python.org/ftp/python/3.10.6/ from python.org

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

79260970

Date: 2024-12-07 16:47:15
Score: 7.5 🚩
Natty: 5
Report link

Somebody answer this I am looking for the answers for a long time https://stackoverflow.com/staging-ground/79260969

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nick Pap

79260964

Date: 2024-12-07 16:39:11
Score: 16 🚩
Natty: 5
Report link

I have the same problem enter image description here

I also try add powerline font to VSCode Setting and it's the same as terminal font but issue still occurs: enter image description here enter image description here

Could u please help me to fix it? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (1): help me to fix
  • RegEx Blacklisted phrase (3): Could u please help me to fix it
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: LV_Embedded

79260920

Date: 2024-12-07 16:05:02
Score: 5.5
Natty:
Report link

i am also trying to implement that now , can i contact with u for some doubt clearing.

Reasons:
  • Blacklisted phrase (2): can i contact
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rohit Ranaware

79260914

Date: 2024-12-07 16:02:00
Score: 11.5 🚩
Natty:
Report link

I'm also facing the same. Were you able to figure out the issue?

Reasons:
  • RegEx Blacklisted phrase (3): Were you able to figure out
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manan Raja

79260876

Date: 2024-12-07 15:33:52
Score: 7 🚩
Natty: 6
Report link

how to do this in TS(Typescript)?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: Neyps

79260856

Date: 2024-12-07 15:23:48
Score: 5
Natty: 4.5
Report link

Syntax Error Ocurring During the running Project after creating

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

79260698

Date: 2024-12-07 13:39:28
Score: 4
Natty:
Report link

not solved for screen recordings though. :(

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

79260681

Date: 2024-12-07 13:27:23
Score: 13 🚩
Natty: 5
Report link

@IntermediaryDeveloper I need help with integrating Adyen Web Drop In using sessions method. I would like to understand from you how you did the same for a test transaction step by step ! Can you please help me out ?

I have setup my test sandbox account, generated API credentials but stuck, you can refer my question at :

https://stackoverflow.com/staging-ground/79260476

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (3): Can you please help me
  • RegEx Blacklisted phrase (2): help me out
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @IntermediaryDeveloper
  • Low reputation (1):
Posted by: Dialen d'souza

79260629

Date: 2024-12-07 12:52:13
Score: 4
Natty:
Report link

I'd also have a look at some of the implementations from that era of extjs like : https://blog.thoughtwizards.com/2018/05/12/extjs-i18n-keys-translations-loaded-from-remote-endpoint/

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

79260606

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

Future peeps can find this in the docs for the ux Ext.ux.TabReorderer : https://docs.sencha.com/extjs/7.8.0/classic/Ext.ux.TabReorderer.html

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

79260595

Date: 2024-12-07 12:33:07
Score: 9.5 🚩
Natty: 6
Report link

bro can u please i need help urgently, i followed all the answers but i still cant fix this same error, i am trying to set up curl in VScode using mingw but i am not able to get it working, i keep getting the undefined reference error !!!

Reasons:
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): i am not able to
  • Blacklisted phrase (1): i am trying to
  • Blacklisted phrase (2.5): i need help
  • RegEx Blacklisted phrase (2): urgently
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Zuhayr Danish

79260539

Date: 2024-12-07 11:54:56
Score: 9 🚩
Natty: 5.5
Report link

I have given access to my google account. Can you please tell me how to remove access now. Can I do anything now? The code is similar to the following image. enter image description here

Reasons:
  • Blacklisted phrase (1): Can I do
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (1.5): tell me how to
  • RegEx Blacklisted phrase (2.5): Can you please tell me how
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Fatema Zohra Prottyasha

79260516

Date: 2024-12-07 11:40:52
Score: 4
Natty: 5
Report link

same here why does this happen

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

79260467

Date: 2024-12-07 11:04:43
Score: 4
Natty:
Report link

You're querying Users with a capital U, in contrast to your initial table check. Could that be it?

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

79260412

Date: 2024-12-07 10:27:34
Score: 5
Natty:
Report link

sudo: a password is required in jenkins

After adding it, it works fine.

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

79260348

Date: 2024-12-07 09:44:24
Score: 4
Natty:
Report link

Digital Marketing đang ngày càng trở thành yếu tố không thể thiếu cho các doanh nghiệp và cá nhân muốn xây dựng và phát triển thương hiệu trong thời đại công nghệ số. Với nhu cầu nhân lực chuyên nghiệp trong ngành ngày càng cao, các khóa học Digital Marketing được thiết kế để cung cấp kiến thức và kỹ năng từ cơ bản đến nâng cao. Vậy khóa học Digital Marketing bao gồm những nội dung gì? Hãy cùng tìm hiểu!

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

79260287

Date: 2024-12-07 09:00:12
Score: 6.5 🚩
Natty: 4.5
Report link

do you find the answer? it also happen in my react-js code .

Reasons:
  • RegEx Blacklisted phrase (2.5): do you find the
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: kosar mohammadi

79260245

Date: 2024-12-07 08:31:05
Score: 4
Natty:
Report link

I thought I had done adequate research before making this post but it wasn't until I submitted that I found 'related questions' which already cover the topic. Is it a Lexer's Job to Parse Numbers and Strings? & Where should I draw the line between lexer and parser? sufficiently answer my question.

Apologies for the duplicate

Reasons:
  • Blacklisted phrase (1.5): Where should I
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jake Perry

79260220

Date: 2024-12-07 08:09:58
Score: 6.5
Natty: 7.5
Report link

I have used "coding" : 8 in my api send content but not working good the message is recive on the destionation mobile as ??????

Reasons:
  • Blacklisted phrase (1): but not working
  • Blacklisted phrase (1): ???
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Majid Boorboor Shirazi

79260083

Date: 2024-12-07 06:41:39
Score: 12 🚩
Natty:
Report link

I have the same issue. Did you find a solution for it?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammed Navas Vpp

79260057

Date: 2024-12-07 06:12:33
Score: 5
Natty:
Report link

I have the same issue. Living in Belgium, the default keyboard layout is French AZERTY, but I use an international QWERTY layout. However, the simulator and the canvas are set to AZERTY by default! And changing it only works for one run, when I start it up again next time it switches back! I really don't understand why the system's keyboard layout is not used.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: Kevin Berden

79259987

Date: 2024-12-07 04:56:18
Score: 4.5
Natty:
Report link

Yeah, so the only way that I could get this to work was by force passing the command line tag. Could not find a way to do this better :(

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

79259896

Date: 2024-12-07 03:25:00
Score: 4.5
Natty:
Report link

So in the end, it was an issue with OpenPGP.js v6.0.0. The bug was fixed on November 21: https://github.com/openpgpjs/openpgpjs/commit/f75447afaa681dc6fa7448a4bf82c63b10265b46

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

79259889

Date: 2024-12-07 03:17:58
Score: 9.5 🚩
Natty:
Report link

were you able to solve this issue? I'm encountering the same problem.

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: RICARDO SOLIS

79259848

Date: 2024-12-07 02:40:48
Score: 6 🚩
Natty:
Report link

It's helped me (Changed MTU to 1400) stackoverflow.com/a/75452499

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

79259803

Date: 2024-12-07 01:41:36
Score: 5.5
Natty: 5.5
Report link

I'm in even worse situation: calling some methods of the host class works fine, while other give this "undefined" error. Leaning towards shared library, but would love to understand why???

Reasons:
  • Blacklisted phrase (1): ???
  • Blacklisted phrase (0.5): why?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: johngo

79259780

Date: 2024-12-07 01:23:32
Score: 4.5
Natty:
Report link

just wanted to ask a question. I am a newbie on leetcode and just wanted to ask doesn't the .size() function just returns the size of the array and not the actual length of the array, won't it be .size()/4. I am also confused with it for a few days so just wanted to ask. Would be very thankful if you could answer and explain it to me

Reasons:
  • RegEx Blacklisted phrase (2): Would be very thankful
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Random jagron

79259720

Date: 2024-12-07 00:23:18
Score: 4
Natty:
Report link

To make the subscription, your account must be a tenant other than 'Personal'.

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

79259652

Date: 2024-12-06 23:39:07
Score: 4
Natty: 4.5
Report link

Do you figure out what went wrong? I'm running into the same issues.

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

79259589

Date: 2024-12-06 23:01:59
Score: 4
Natty: 4
Report link

@Sølve using port in webServer config solved the timeout issue, but now

 await page.goto("http://localhost:3000");

is not working , how do you reference your base url in your tests

Reasons:
  • Blacklisted phrase (1): how do you
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Sølve
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user3613512

79259538

Date: 2024-12-06 22:28:50
Score: 5.5
Natty: 4.5
Report link

Have you resolve this problem ? I encountered the same one.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this problem ?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bartosz Podemski

79259481

Date: 2024-12-06 22:00:43
Score: 5
Natty:
Report link

I am having the exact same problem. Here is a simple example of what is getting 503 error:

import pandas as pd
from google.cloud import bigquery

# Sample DataFrame
x = [1, 2, 3, 4, 5]
y = [123, 345, 456, 678, 234]
df = pd.DataFrame({'x': x, 'y': y})

# Construct a BigQuery client
client = bigquery.Client()

# Define table reference
table_ref = client.dataset("TESTING").table("TEST")

# Load data into BigQuery
job = client.load_table_from_dataframe(df, table_ref)
job.result()  # Wait for the job to complete

If you have found the solution to this, please share with me.

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I am having the exact same problem
  • Low reputation (1):
Posted by: therealchriswoodward

79259436

Date: 2024-12-06 21:33:35
Score: 8.5 🚩
Natty: 6.5
Report link

I've been searching for an answer too, and it seems that when a UITextView shares a layout manager with other text views, the text view unfortunately becomes static. Is there a solution to this problem now? I would be very grateful for help.

Reasons:
  • Blacklisted phrase (3): Is there a solution
  • RegEx Blacklisted phrase (2): I would be very grateful
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Thom

79259427

Date: 2024-12-06 21:27:33
Score: 4.5
Natty: 4.5
Report link

This apparently is a bug related to Power BI. The following page explains the solution. https://medium.com/riccardo-perico/how-to-fix-couldnt-connect-to-analysis-service-in-power-bi-report-server-2849537de328

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abbas Roshan

79259348

Date: 2024-12-06 20:52:22
Score: 4
Natty: 4.5
Report link

Very late to the party, but delete can be overridden through proxies.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/deleteProperty

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

79259329

Date: 2024-12-06 20:43:19
Score: 4.5
Natty:
Report link

I have found that adding destroy as an argument makes it work more quickly enter image description here

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

79259311

Date: 2024-12-06 20:34:15
Score: 6 🚩
Natty: 5.5
Report link

Is there really "DataDirectory" and "Data Directory"?

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): Is there
  • Low reputation (1):
Posted by: Alex Gray

79259273

Date: 2024-12-06 20:18:09
Score: 6 🚩
Natty: 5
Report link

Hoping for help. I have some bnb in my token contract address: 0xC0DaB2BC78729618455452a4E670eF7ED233f910 Is there a way to withdraw that?

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