79725599

Date: 2025-08-05 04:33:34
Score: 4.5
Natty:
Report link

Thank you @ChristianStieber I had completely missed that I was using a constructor with parameters for the default constructor. :(

class A {
public:
    A() : obj(nullptr) {}
    A(int*& obj_) : obj(obj_) {}

protected:
    int* obj;
};

class B : public A {
public:
    B() : A() {}
    B(int*& obj_) : A(obj_) {}
};
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): :(
  • Has code block (-0.5):
  • User mentioned (1): @ChristianStieber
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: BalmyWinner

79725564

Date: 2025-08-05 03:15:13
Score: 6
Natty:
Report link

met too, what should I do? I have installed pinentry-mac

Reasons:
  • Blacklisted phrase (2): what should I do
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Acaibird

79725521

Date: 2025-08-05 01:32:51
Score: 4.5
Natty:
Report link

If I specify the target dns server it works, thanks to another AI bot

http://10.0.1.192:9115/probe?module=dns&target=8.8.8.8&debug=true

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

79725496

Date: 2025-08-05 00:35:36
Score: 7
Natty:
Report link

les dejo la solucion que me funciono a mi, espero sea de ayuda y de paso les dejo un link para que visiten mi pagina, saludo grande a todos (https://programacion365.com/):

el codigo de mi clase principal es el siguiente:

package com.example.spring_email; 

import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
public class SpringEmailApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringEmailApplication.class, args);
    }

    @Bean
    CommandLineRunner runner(EmailService emailService) {
        return args -> {
            String destinatarios = "[email protected],[email protected]";
            String asunto = "Correo de prueba";
            String cuerpo = "<h1>Hola a todos</h1><p>Este es un mensaje para múltiples destinatarios.</p>";
            emailService.enviarCorreo(destinatarios, asunto, cuerpo);
        };
    }

}

creamos un controlador con el siguiente codigo:

package com.example.spring_email.controladores;

import com.example.spring_email.EmailService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;

@Controller
public class EmailController {

    @Autowired
    private EmailService emailService;

    @GetMapping("/formulario")
    public String mostrarFormulario() {
        return "email_form";
    }

    @PostMapping("/enviar")
    public String enviarCorreo(
            @RequestParam("destinatarios") String destinatarios,
            @RequestParam("asunto") String asunto,
            @RequestParam("cuerpo") String cuerpo,
            Model model) {

        try {
            emailService.enviarCorreo(destinatarios, asunto, cuerpo);
            model.addAttribute("mensaje", "Correo enviado exitosamente.");
        } catch (Exception e) {
            model.addAttribute("mensaje", "Error al enviar el correo: " + e.getMessage());
        }

        return "email_form";
    }
}

tambien creamos un servicio:

package com.example.spring_email;

import jakarta.mail.internet.MimeMessage;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.ClassPathResource;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.mail.javamail.MimeMessageHelper;
import org.springframework.stereotype.Service;

@Service
public class EmailService {

    @Autowired
    private JavaMailSender mailSender;

    public void enviarCorreo(String destinatarios, String asunto, String mensajeHtml) throws Exception {
        MimeMessage mensaje = mailSender.createMimeMessage();
        MimeMessageHelper helper = new MimeMessageHelper(mensaje, true);

        String[] destinatariosArray = destinatarios.split("[;,]");
        helper.setTo(destinatariosArray);
        helper.setSubject(asunto);

        // Agregar contenido HTML con firma
        String htmlConFirma = mensajeHtml +
                "<br><br><img src='cid:firmaImagen' alt='Firma' width='200'/>";

        helper.setText(htmlConFirma, true);

        // Cargar imagen desde resources
        ClassPathResource imagen = new ClassPathResource("static/images/logo.png");
        helper.addInline("firmaImagen", imagen);

        mailSender.send(mensaje);
    }
}












y por ultimo creamos el formulario de envio en html:

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>Enviar Correo</title>
    <meta charset="UTF-8">
</head>
<body>
<h1>Enviar correo a múltiples destinatarios</h1>

<form th:action="@{/enviar}" method="post">
    <label>Destinatarios (separados por coma):</label><br>
    <input type="text" name="destinatarios" style="width: 400px;" required><br><br>

    <label>Asunto:</label><br>
    <input type="text" name="asunto" style="width: 400px;" required><br><br>

    <label>Cuerpo del mensaje:</label><br>
    <textarea name="cuerpo" rows="10" cols="50" required></textarea><br><br>

    <button type="submit">Enviar</button>
</form>

<p th:text="${mensaje}" style="color: green;"></p>
</body>
</html>





Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (2): espero
  • Blacklisted phrase (2.5): solucion
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: programacion365.com

79725477

Date: 2025-08-04 23:50:27
Score: 4
Natty:
Report link

You can check this library: https://pypi.org/project/sklearn-migrator/

It is very useful to migrate models of scikit learn

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alberto Valdés

79725433

Date: 2025-08-04 22:21:08
Score: 5.5
Natty: 4.5
Report link

گاهی یه هدیه، می‌تونه پناهِ لحظه‌های سخت باشه؛
اما از اون مهم‌تر، فکریه که پشت اون هدیه بوده.

این کوچولوی ناز، یادآور مهربونی کسیه که خوب می‌دونه "آرامش" یعنی چی...
و مهم‌تر از اون، می‌دونه آرامش واسه "نوشین"، تو همین لحظه‌های بی‌ادعا و ساده‌ست؛ نه پرزرق‌وبرق، نه شلوغ...

خیلی خوشحالم که هنوز این حس درونم زنده‌ست؛ که می‌تونم با همین سادگی پرمعنا، بی‌نهایت لذت ببرم و ذوق کنم. 🤍

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: user31211847

79725430

Date: 2025-08-04 22:14:02
Score: 8.5
Natty:
Report link

I have similar issue. Entities not known. The trick is that HA does not recognize those 'switch' entities. It works perfectly via node-red though.

I was wondering if you have the same ADVANCED settings inside VirCOM

enter image description here

Reasons:
  • Blacklisted phrase (1): I have similar
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (2): was wondering
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have similar issue
  • Low reputation (1):
Posted by: Karol

79725285

Date: 2025-08-04 18:52:04
Score: 4
Natty: 4.5
Report link

does updateAge extend the expiry time of maxAge ? when using jwt as session strategy

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

79725172

Date: 2025-08-04 16:35:27
Score: 6.5
Natty:
Report link

What do you need a border for anyway? To keep the Mexican proletariat out?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What do you
  • Low reputation (1):
Posted by: Iosif

79725124

Date: 2025-08-04 15:48:13
Score: 6
Natty: 4
Report link

I'm currently doing some modifications on a website where I created a banner that has a button to open a "mailto:" link, and I managed to customize it so when it opens the mail client window, it already has the desired info on recipient, subject and body fields.

It's a Wordpress site, built with Elementor and I used the Royal Elementor Addons plugin to create a popup banner, but when I added the "mailto:" link, none of the HTML tags I tried to use worked (I wanted to add paragraphs, bold and underlines). After reasearching a bit further I found out that there are specific tags for these type of links and I managed to add the paragraphs on the mail body, like this (without having to use "<a href>" and similar tags):

mailto:[email protected]?subject="Novo Cliente JCR iTech"&body="Dados para Inscrição%0A%0ANome:%0ATelefone:%0ATipo de serviço/compra:%0A%0A"

But I'm having a hard time in discovering how to add bold or underline on the body text (if it's even possible). I read this article but it seems that the extra work doesn't deserve the effort (I want to keep it simple), but still I just want to ask if anyone knows a simpler method to achieve this.

Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (1): anyone knows
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mike JCR iTech

79724979

Date: 2025-08-04 13:49:38
Score: 9.5
Natty: 6.5
Report link

Were you able to resolve this? I have been on this issue for like a week now :(

Reasons:
  • Blacklisted phrase (1): :(
  • RegEx Blacklisted phrase (1.5): resolve this?
  • 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: josh ross

79724873

Date: 2025-08-04 11:55:09
Score: 4
Natty:
Report link

Turns out it is a bug with the OpenApi generation on .NET 9, it will be fixed in .NET 10.

https://github.com/dotnet/aspnetcore/issues/62079

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

79724798

Date: 2025-08-04 10:48:52
Score: 4
Natty: 4.5
Report link

It looks like it is possible now using sql stored procedures:
https://www.snowflake.com/en/engineering-blog/sql-stored-procedures-async-execution/

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

79724787

Date: 2025-08-04 10:40:50
Score: 4
Natty:
Report link

How to assign the elastic ip as load balancer in nginx-controller

is there any option to get the elastic ip a

Reasons:
  • Blacklisted phrase (1): is there any
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): How to as
  • Low reputation (1):
Posted by: Bhanu Prakash

79724761

Date: 2025-08-04 10:23:45
Score: 8
Natty: 8.5
Report link

damn bro where did you found this user prefix being needed??!!!
thanks for your help

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-0.5): thanks for your help
  • RegEx Blacklisted phrase (3): did you found this
  • RegEx Blacklisted phrase (1.5): fix being needed??
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mj Gamer

79724736

Date: 2025-08-04 09:59:39
Score: 4.5
Natty: 5
Report link

Install the latest version of CNWizard.

https://www.cnpack.org/download.php?id=763&lang=en

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

79724733

Date: 2025-08-04 09:55:37
Score: 7.5
Natty: 5
Report link

Hey did you find a solution for this. im also having issues with that as it polls redis too much increasing costs for me on upstash, so wondering if you found a way that works to timeout and poll after few seconds or minutes?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bilal Waseem

79724646

Date: 2025-08-04 08:47:20
Score: 9
Natty: 7
Report link

I have a similar problem and this formula works well, but it considers blank cells as zero in the calculation of standard deviation. Is there a way to calculate it without considering blank cells?

Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • Blacklisted phrase (1): Is there a way
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jeanini Jiusti

79724579

Date: 2025-08-04 07:09:55
Score: 4
Natty:
Report link

After disabling the mcAfee program, the installation is completed.

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

79724572

Date: 2025-08-04 07:01:53
Score: 6.5
Natty: 7.5
Report link

Вот как добавить NodeJS в ISPConfig: https://edgesection.ru/sphere/1

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: EDGESECTION

79724560

Date: 2025-08-04 06:46:49
Score: 4.5
Natty:
Report link

Bro if you find out tell me please. i don't need text in real time. i want to use it through recorded audio files.

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31206586

79724460

Date: 2025-08-04 03:41:09
Score: 5
Natty: 4.5
Report link

enter image description here

Realizame el ejercicio y que me de ese resultado

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

79724457

Date: 2025-08-04 03:34:07
Score: 4
Natty:
Report link

I like the patchwork package suggestion that was given in this post. So far I have come up with this solution to handle a variable number of graphs, but I can't figure out how to make it handle numbers not divisible by 3. Any suggestions? Can we make it simpler?

    x <- c(5,7,2,4,9)
    y <- c(2,10,15,8,14)
    df <- data.frame(x,y)
    myfunct <- function(i){
      p<-ggplot(df, aes(x=x,y=y*i)) + geom_point()
      return(p)
    }
    myGrobs <- lapply(1:10,myfunct)
    library(patchwork)
    pdf("test pdf.pdf", width = 6.5, height = 9, paper="letter")
    for(i in c(1,4,7)){
      print(myGrobs[[i]] / myGrobs[[i+1]] / myGrobs[[i+2]])
    }
    dev.off()
Reasons:
  • RegEx Blacklisted phrase (2): Any suggestions?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: BenW

79724362

Date: 2025-08-03 23:11:11
Score: 5
Natty:
Report link

I'm using VS code and having the same issue. Someone had said that it is because VS code is linked to an online server and that makes things cloudy. I followed the advice on this No Window Displayed by Tkinter in VSCode
but I just found myself on a new tab that couldn't do anything for me. I still that what is posted in think this link is onto somthing.

Reasons:
  • Blacklisted phrase (1): this link
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: jacob 6823

79724346

Date: 2025-08-03 22:18:00
Score: 5
Natty:
Report link

I have built the C code with the CLang compiler.

How do I tell the Swift Code about the foo symbol? That kind of is my question.

In XCode on the Mac you just include a c file in the project and voila! It ask you if you want to have a bridging header, you say yes and it's done.

oh well, I have been doing some reading since yesterday and realize that I have to do some kind of package, and that I have to know how git works as well. I have seen a number of posts but it is clear as mud. Looks lot more complicated than to learn Swift in the first place :(

Reasons:
  • Blacklisted phrase (1): How do I
  • Blacklisted phrase (1): I have to do
  • Blacklisted phrase (1): :(
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31204927

79724336

Date: 2025-08-03 21:53:54
Score: 11.5
Natty: 5
Report link

how do you fix it? I have the same problem

ruby -v 3.4.5
pod 1.16.2
flutter 3.32.8
dart 3.8.1
devtools 2.45.1

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (1.5): fix it?
  • RegEx Blacklisted phrase (2.5): do you fix it
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): how do you fix it
  • Low reputation (0.5):
Posted by: EagleCode

79724310

Date: 2025-08-03 20:54:40
Score: 4.5
Natty:
Report link

The reason your password didn't work is because you started your password with a space, so your password was "(space)fucku" not just "fucku" or "_fucku"

Funny error, for future users, your password is everything after the ==

Reasons:
  • Blacklisted phrase (2): fuck
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Anonymouscacti

79724245

Date: 2025-08-03 18:37:08
Score: 4
Natty:
Report link

Django3.2 ORM is syncronous can't support async task and dnd never try to do so simply abandon any ideas of launching independent threads or processes from within a view

Reasons:
  • Blacklisted phrase (1): any ideas
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dylan

79724229

Date: 2025-08-03 18:13:59
Score: 11
Natty: 4
Report link

did u solve this problem?
*sorry for answer, can't comment without reputation :\

Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • RegEx Blacklisted phrase (1.5): reputation
  • RegEx Blacklisted phrase (3): did u solve this problem
  • RegEx Blacklisted phrase (1.5): solve this problem?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: mlt_melt

79724127

Date: 2025-08-03 15:28:20
Score: 4
Natty:
Report link

This is 13 years old and I still have the same problem. Incredible.

For me the screen was only halfway off, so dragging the resize handle just a pixel or two is enough to bring it all back on screen.

Still super annoying. Have to do it every time you start the server.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (0.5):
Posted by: mateoc15

79724114

Date: 2025-08-03 15:13:16
Score: 5
Natty: 5
Report link

Коллеги, из ваших ответов очевидно, что вы не поняли вопрос. Ариан, задавший вопрос, желает получить не индекс [gcr_id] по значению 21, а желает получить индекс [3], зная, что [gcr_id]=>21.

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

79724106

Date: 2025-08-03 14:59:13
Score: 4
Natty:
Report link

Hello Im trying to do the same thing here
when i start the Hikvision SDK Demo and Start Listen to incoming events nothing appears same thing with HTTP Listener mode Despite the connection success .
but when i call the Api from web browser it loads the data successfully.

how can i start the listening successfully
here is my web cam settings
enter image description here cam settings
enter image description here listening host settings

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Blacklisted phrase (1): enter image description here
  • Blacklisted phrase (1): trying to do the same
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mohamed Hanti

79723980

Date: 2025-08-03 11:14:25
Score: 4
Natty:
Report link

Interested in knowing about this topic!

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

79723957

Date: 2025-08-03 10:41:15
Score: 6.5
Natty: 5.5
Report link

Самое главное, это в настройках бота, включить бизнес режим, без него оплата работать не будет.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Радиф Гатауллин

79723948

Date: 2025-08-03 10:22:10
Score: 5
Natty:
Report link

This might help you - https://mankeyss.gumroad.com/l/ios-theme there's a lot of different ios styling options

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

79723935

Date: 2025-08-03 10:02:05
Score: 4
Natty:
Report link

As Jesus said "it's sad that a negro like u is allowed to use a persona computer"

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

79723929

Date: 2025-08-03 09:58:03
Score: 4.5
Natty:
Report link

The problem is that you are a mentally ill nigger, let's be honest ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀ ⠀ ⠀

⠀ ⠀ ⠀ ⠀ ⠀

<img url="https://i.sstatic.net/AJ17h4j8.png">

What the fuck guys i cant enter a picture? Ah wait its src OH NO U CANT POST SRC ATTRIBUTES

Reasons:
  • Blacklisted phrase (2): fuck
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: Stalin

79723924

Date: 2025-08-03 09:52:01
Score: 5
Natty:
Report link

If you're doing IOS design i would suggest this: https://mankeyss.gumroad.com/l/ios-theme

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

79723923

Date: 2025-08-03 09:51:01
Score: 4
Natty:
Report link

⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

⠀ ⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀


⠀ ⠀

"I don't like Microsoft niggers either bro"
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • No latin characters (3):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Stalin

79723858

Date: 2025-08-03 07:45:31
Score: 6
Natty:
Report link

Have you had a look at sublist?

https://code.kx.com/q/ref/sublist/

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

79723816

Date: 2025-08-03 06:46:19
Score: 4
Natty: 4.5
Report link

I made a qr code generator using javascript.

Free QR code generator : No Signup Required

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

79723766

Date: 2025-08-03 04:17:50
Score: 8.5
Natty: 7.5
Report link

https://drive.google.com/file/d/1FQyxM1RK_Up0lIXCIOkvsr9lvG_VJuqi/vi

ew?usp=drivesdk

Can someone help me with that

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can someone help me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: nihad khalil

79723761

Date: 2025-08-03 03:40:42
Score: 6.5
Natty: 6
Report link

Then last P would be for "PLUS" ?

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

79723754

Date: 2025-08-03 02:58:31
Score: 7.5
Natty:
Report link

Been hearing alot about both downloading and copying and then some

I have a mirror website, some time ago my website was hacked, I discovered the folders in file manager via cpanel were gone

Have tried from memory the best I could do is mirror mirrorsearch and the other website

There's about 5 folders, I lack the rest

If you can help me out here buybestlinks.com

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): you can help me
  • RegEx Blacklisted phrase (2): help me out
  • No code block (0.5):
  • Low reputation (1):
Posted by: Steven Baldwin

79723649

Date: 2025-08-02 20:45:19
Score: 4
Natty:
Report link

You might be missing call to PyImport_AppendInittab(params) before initialization. Read more about it here https://cython.readthedocs.io/en/latest/src/userguide/source_files_and_compilation.html

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

79723632

Date: 2025-08-02 20:18:13
Score: 4.5
Natty: 5.5
Report link

https://github.com/Nischalcs50/nsEVDx, use this package, may be this will be helpful.

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

79723623

Date: 2025-08-02 19:54:06
Score: 6.5
Natty: 5
Report link

I have the same problem. I hope DevExpress responds to our problem.

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 (0.5):
Posted by: Karwan E. Othman

79723595

Date: 2025-08-02 19:03:54
Score: 10.5
Natty: 6.5
Report link

@Srikanth Gopi Vivian, did you find a solution?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Srikanth
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Wolf Creek

79723573

Date: 2025-08-02 18:33:46
Score: 4
Natty:
Report link

This is what happens when a negro is allowed to use a personal computer.

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

79723565

Date: 2025-08-02 18:15:41
Score: 4.5
Natty:
Report link

Whoever upvoted upvote this too so i can participate in chat bb

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

79723563

Date: 2025-08-02 18:11:40
Score: 4
Natty:
Report link

I think you should use getPrescriptionId instead, for your schizophrenic meds before you write such shitty code again. Given your username I think you are of an inferior race so it doesn't matter?

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

79723539

Date: 2025-08-02 17:40:32
Score: 4
Natty:
Report link

I have a problem with this, that I can't find a solution yet. I have two modals on my code, one of them make this when it opens:

<body class="modal-open" id="page-top" style="padding-right: 15px; overflow: hidden;" data-bs-padding-right="15px" data-bs-overflow="hidden">

But, the other add only this when it opens:

<body class="modal-open" id="page-top" style="overflow: hidden; padding-right: 15px;">

The problem is, when it closes, the first version don't remove the overflow: hidden , and because this, the scroll bar stay hidden.

Very crazy, sorry for my comment about the problem, but it's a strange behaviour.

Reasons:
  • RegEx Blacklisted phrase (2): I can't find a solution
  • RegEx Blacklisted phrase (2): can't find a solution
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vinicius Carlos

79723525

Date: 2025-08-02 17:21:27
Score: 5
Natty:
Report link

Needed to add "*Friday*"

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joshua Gayhart

79723434

Date: 2025-08-02 14:56:55
Score: 5
Natty: 4.5
Report link

https://stackoverflow.com/users/6110557/rohitcoder

TQ for the INFO above. You save me fro continue being attacked by any.

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

79723277

Date: 2025-08-02 10:23:52
Score: 4.5
Natty:
Report link

ctrl + enter works on windows.

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

79723214

Date: 2025-08-02 08:32:26
Score: 6
Natty: 5
Report link

this article solved my problem that the two way in the artical

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

79723180

Date: 2025-08-02 07:12:09
Score: 4
Natty:
Report link

to just www.Example.com.I have changed my internal links

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

79723176

Date: 2025-08-02 06:55:05
Score: 4
Natty:
Report link

the javascript looks fine but the html doesn't look right for a javascript function call.

also the purpose of functions is to write once and call many times, so using

<body onload="printBtn();"> defeats that purpose; so how do we call it again???
Reasons:
  • Blacklisted phrase (1): ???
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: cloudmichael

79723112

Date: 2025-08-02 04:06:29
Score: 4
Natty:
Report link

ok, apparently this is just a bug

https://github.com/golang/go/issues/71497?issue=golang%7Cgo%7C74835

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Dave Butler

79722949

Date: 2025-08-01 21:04:58
Score: 13.5
Natty: 6
Report link

Do you find any solution? i have the same question, since the max scene model limitation, i need to know if is posible to save and load the models

Reasons:
  • Blacklisted phrase (1): i have the same question
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): Do you find any
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have the same question
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniel Gómez

79722935

Date: 2025-08-01 20:39:53
Score: 5.5
Natty: 6.5
Report link

What about be the best trigger to use in this case? Purchase? or as soon as the hashed email OR phone are available?

Reasons:
  • Low length (1):
  • 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: BackY

79722892

Date: 2025-08-01 19:25:36
Score: 5
Natty:
Report link

I am having the same issue with this package.json:

{
  "name": "wanderbuddies",
  "version": "1.0.0",
  "main": "index.ts",
  "scripts": {
    "start": "expo start",
    "android": "expo start --android",
    "ios": "expo start --ios",
    "web": "expo start --web"
  },
  "dependencies": {
    "@react-native-async-storage/async-storage": "2.1.2",
    "@react-native-community/datetimepicker": "8.4.1",
    "@react-native-picker/picker": "^2.11.1",
    "@react-navigation/bottom-tabs": "^7.4.4",
    "@react-navigation/native": "^7.1.16",
    "@react-navigation/stack": "^7.4.4",
    "@types/react-native-vector-icons": "^6.4.18",
    "axios": "^1.11.0",
    "expo": "~53.0.20",
    "expo-av": "~15.1.7",
    "expo-clipboard": "~7.1.5",
    "expo-document-picker": "~13.1.6",
    "expo-file-system": "~18.1.11",
    "expo-image": "~2.4.0",
    "expo-image-picker": "~16.1.4",
    "expo-intent-launcher": "~12.1.5",
    "expo-sharing": "~13.1.5",
    "expo-status-bar": "~2.2.3",
    "expo-web-browser": "~14.2.0",
    "react": "19.0.0",
    "react-native": "0.79.5",
    "react-native-date-picker": "^5.0.13",
    "react-native-gesture-handler": "^2.27.2",
    "react-native-image-picker": "^8.2.1",
    "react-native-paper": "^5.14.5",
    "react-native-safe-area-context": "5.4.0",
    "react-native-screens": "~4.11.1",
    "react-native-vector-icons": "^10.3.0",
    "react-native-webview": "13.13.5"
  },
  "devDependencies": {
    "@babel/core": "^7.25.2",
    "@types/react": "~19.0.10",
    "typescript": "~5.8.3"
  },
  "private": true
}

Has someone solved it yet?

Reasons:
  • RegEx Blacklisted phrase (1.5): solved it yet?
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I am having the same issue
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Mazhar Ali

79722847

Date: 2025-08-01 18:17:19
Score: 4
Natty:
Report link

Any updates? I'm seeing the same behavior.

enter image description here

Reasons:
  • RegEx Blacklisted phrase (0.5): Any updates
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: mariomenjr

79722802

Date: 2025-08-01 17:27:07
Score: 4
Natty:
Report link

GO TO SETINGS AND ENABLE MINI MAP

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

79722738

Date: 2025-08-01 16:05:46
Score: 5
Natty: 5
Report link

I tried MimeMessage.saveChanges und .writeTo but the .eml file opened by outlook is not editable, I cant enter to-adress, body text (...) . How to manage it?

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

79722732

Date: 2025-08-01 15:58:44
Score: 4.5
Natty: 5.5
Report link

It seems that there is a solution at below

https://github.com/microsoft/vscode/issues/65232

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

79722670

Date: 2025-08-01 15:01:28
Score: 5
Natty:
Report link

Found the answer here: https://learn.microsoft.com/en-us/aspnet/core/fundamentals/map-static-files?view=aspnetcore-9.0

I needed to use UseStaticFiles() in my program.cs.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Xephis

79722630

Date: 2025-08-01 14:26:20
Score: 13
Natty: 8
Report link

I have the same problem in colab, any solution yet? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution yet?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Natalia

79722619

Date: 2025-08-01 14:15:18
Score: 5
Natty:
Report link

So I dont have enough reputation points yet to comment or upvote, but the answer of "Insert name here" absolutely works. I've been looking for this for too long and cant believe that I finally found an answer. Thank you very much!
The issue is, that this post does not pop up to "Adding internal hyperlinks to runs in python pptx", which I think most people (including myself) searched for.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (0.5): upvote
  • RegEx Blacklisted phrase (1.5): I dont have enough reputation points
  • No code block (0.5):
  • Low reputation (1):
Posted by: GergaBendi

79722549

Date: 2025-08-01 13:13:02
Score: 4
Natty: 4
Report link

If we have to go through the long way of creating a new temporary file and copying the content of the previous files into the temporary file, renaming and deleting the previous file...

Than why are std::ios::beg, std::ios::cur and std::ios::end existing?

I mean what, what exactly are there use?

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

79722536

Date: 2025-08-01 13:02:58
Score: 6.5
Natty:
Report link

Is there any way you can go at the compression from the other direction and have the dashboard decompress?

Reasons:
  • Blacklisted phrase (1): Is there any
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (1):
Posted by: Keith Higgs

79722484

Date: 2025-08-01 12:09:44
Score: 7
Natty:
Report link

i am new here .....Am i on the right place?

Reasons:
  • RegEx Blacklisted phrase (1.5): i am new here
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex409

79722424

Date: 2025-08-01 11:21:32
Score: 5.5
Natty:
Report link

Do you have any options to keep the database connection alive between calls? That is normally done by establishing the connection as a global object as the application starts and maintaining it throughout operations. Having to create a new connection for each transaction can be a major performance killer.

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Keith Higgs

79722414

Date: 2025-08-01 11:13:30
Score: 4
Natty: 4
Report link

I am trying to use below -

capabilities.setCapability(MobileCapabilityType.DEVICE_NAME, "Android Emulator");

but after typing MobileCapabilityType system is showing No default proposal.

Whats wrong here.

enter image description here

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nitesh Kumar

79722354

Date: 2025-08-01 10:21:17
Score: 4.5
Natty: 5
Report link

Replying on reviews via API seems not supported. https://developers.facebook.com/support/bugs/384813126273486/

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

79722342

Date: 2025-08-01 10:13:13
Score: 10
Natty: 6
Report link

Actually I am using Darknet yolov3 to train for my custom dataset I am unable to train what could be an issue anybody suggest I am following this github repo https://github.com/AlexeyAB/darknet and to download weights and .cfg file I am using this repo https://pjreddie.com/darknet/yolo/ so please guide me and let me know where I am lacking my dataset consists of 61 classes I am configured all the things according to my dataset thank you for understanding in advance

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (1): what could be
  • RegEx Blacklisted phrase (2.5): please guide me
  • RegEx Blacklisted phrase (3): thank you for understanding in advance
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vikas Vikku

79722258

Date: 2025-08-01 08:43:50
Score: 4.5
Natty:
Report link

Here is the expectation with all the different cases

enter image description here

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: sayan nandi

79722220

Date: 2025-08-01 08:14:40
Score: 6
Natty: 6
Report link

can you explain it cleary the approach using neko.
@Sean DuBois

Reasons:
  • RegEx Blacklisted phrase (2.5): can you explain
  • Low length (1.5):
  • No code block (0.5):
  • Starts with a question (0.5): can you
  • Low reputation (1):
Posted by: Srishma Reddy

79722188

Date: 2025-08-01 07:31:28
Score: 8
Natty: 5.5
Report link

I'm facing same issue, any update here ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fabrice Mpenge

79722096

Date: 2025-08-01 05:43:01
Score: 4
Natty:
Report link

I'm facing the same issue with Jio network and Firebase Realtime Database. The listener doesn't trigger onDataChange() or onCancelled() — it just hangs.

Tested fixes:

Workaround:
I now use a Firebase Cloud Function as a proxy to access Realtime Database. This works reliably even on Jio.

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

79722054

Date: 2025-08-01 04:14:41
Score: 7
Natty:
Report link

Yes facing the same issue. There was same kind of issue in 2020 https://status.firebase.google.com/incidents/oCJ63zAQwy6y284dcEp3

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: atul zade

79722037

Date: 2025-08-01 03:41:34
Score: 5.5
Natty:
Report link

i have the same problem for around a year. jupyter lab3.

recently, annoyed by it. after study github serveral post and others. occasionally i noticed in the cmd shell output, i noticed it said

 [xxxx ServerApp] folder '' :my real work folder not found.

the address with additional '' & my work folder

[solution success]

jupyter lab config.py

c.LabServerApp.workspaces_dir = :my real work folder

pls noted no ' ' OR " " for the folder path.

others are default seting.

maybe it can solve your problem too?

refer:

reply from andrewfulton9 and echarles in https://github.com/jupyterlab/jupyterlab/issues/12111

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • RegEx Blacklisted phrase (1.5): solve your problem too?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i have the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Kevin Han

79722023

Date: 2025-08-01 03:27:29
Score: 6
Natty:
Report link

test dasdsadasd da sad sad sa dsadasd asd asd asdasdasdasdas dasdasd sadsadsad

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

79721978

Date: 2025-08-01 01:41:06
Score: 4
Natty:
Report link

We have the same problem with the Oracle Database, and we don't have a 500ms latency when our code runs on Linux, on Windows, however, there is a 500ms delay.

We believe that this issue is related to a certain mechanism of TCP, and there are differences in the implementation between Windows and Linux. This is because our Linux is WSL, which is essentially a virtual machine of Windows 10

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Low reputation (1):
Posted by: DongTianDeHai

79721950

Date: 2025-08-01 00:48:53
Score: 4
Natty:
Report link

I probe a many solutions and the correctly solution was add the PATH to variable Entorno on windows "C:\Users\TU_USUARIO\AppData\Local\Android\Sdk\emulator" and restart windows. It's works fine.

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

79721890

Date: 2025-07-31 22:24:23
Score: 5
Natty:
Report link

() => { const [employees, setEmployees] = useState([]) const [selectedEmployee, setSelectedEmployee] = useState(null) const [createEmployee, setCreateEmployee] = useState(false)

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

79721853

Date: 2025-07-31 21:29:04
Score: 7.5
Natty:
Report link

I am facing the same issue, and it took me almost two days, and still not find how to implement it. I am building personalized Guacamole platform. I have VMs hosted on ESXi that are added as connections on Guacamole. Please, if you found the solution could you share it with us please

Reasons:
  • RegEx Blacklisted phrase (2.5): could you share
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: El Hizabri Marouane

79721766

Date: 2025-07-31 19:43:39
Score: 4
Natty:
Report link

some responder give impression they do not get a clue what it is all about .

when one adds a new file to a project one needs to avoid all the messy output, and concentrate ONLY on this file, until it compiles clean, that how work on complex software goes, it used to be a menu option in VS before 2022 to compile only a single file ( one wich has keyboard focus on), WHERE IS IT NOW!!!???? I expect an official answer from Microsoft, please.

Reasons:
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (1): I expect an official answer from Microsoft, please
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Igor Polkovnikov

79721723

Date: 2025-07-31 18:55:26
Score: 4
Natty:
Report link

They are deprecated though (https://angular.dev/api/core/provideNgReflectAttributes), I suggest you use other attributes or selectors like data-cy for Cypress tests

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

79721714

Date: 2025-07-31 18:47:23
Score: 4
Natty:
Report link

1. 服务器IP改 127.0.0.1 ,避免IPv4/IPv6冲突;

2. Lua客户端给 udp:send() 加错误检查,确认是否发送成功;

3. 去掉Go的全局 conn 变量, send 函数通过参数接收连接;

4. 检查端口是否被占用,观察服务器 ReadFromUDP 是否有输出。

Reasons:
  • Low length (1):
  • No code block (0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: 米斯得甄

79721687

Date: 2025-07-31 18:16:14
Score: 4.5
Natty: 4
Report link

yeah this wasn't helpful. I'm an amiture and I immediately realized this is dependent on how many simultaneous multiplications you can preform. Maby it's the best answer for a question the is alot harder to answer than it is to state though?

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

79721678

Date: 2025-07-31 18:06:10
Score: 8.5
Natty: 5.5
Report link

got the same problem.. did you find a solution for this?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: simpledev

79721650

Date: 2025-07-31 17:42:04
Score: 4
Natty:
Report link

Thats shitty af. Its pissing me off

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

79721629

Date: 2025-07-31 17:22:58
Score: 4.5
Natty:
Report link

Hello I'm beginner and I found this site very helpful while learning maven maven-docs
you might also find this docs helpful!

Reasons:
  • RegEx Blacklisted phrase (2): I'm beginner
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Md Monabbar Anjum

79721594

Date: 2025-07-31 16:43:44
Score: 7
Natty:
Report link

me salia el mismo error todo tenia bien solo me faltaba el punto de conexion ya con eso quedo, esto es debido a que mi bucket es privado

Creación de un punto de conexión de un gateway

Utilice el siguiente procedimiento para crear un punto de conexión de la puerta de enlace que se conecte a Amazon S3.

Para crear un punto de enlace de gateway con la consola
  1. Abra la consola de Amazon VPC en https://console.aws.amazon.com/vpc/.

  2. En el panel de navegación, elija Puntos de conexión.

  3. Elija Crear punto de conexión.

  4. En Categoría de servicios, elija Servicios de AWS.

  5. En el caso de los servicios, añada el filtro Type = Gateway y seleccione com.amazonaws. region.s3.

  6. En VPC, seleccione la VPC en la que desea crear el punto de conexión.

  7. En Route tables (Tablas de enrutamiento), seleccione las tablas de enrutamiento que debe utilizar el punto de conexión. De forma automática, se agregará una ruta para dirigir el tráfico destinado al servicio a la interfaz de red del punto de conexión.

  8. En Policy (Política), seleccione Full access (Acceso completo) para permitir todas las operaciones de todas las entidades principales en todos los recursos del punto de conexión de VPC. De lo contrario, seleccione Custom (Personalizar) para adjuntar una política de punto de conexión de VPC que controle los permisos que tienen las entidades principales para realizar acciones en los recursos a través del punto de conexión de VPC.

  9. (Opcional) Para agregar una etiqueta, elija Agregar etiqueta nueva e ingrese la clave y el valor de la etiqueta.

  10. Elija Crear punto de conexión.

Para crear un punto de conexión de la puerta de enlace mediante la línea de comandos

https://docs.aws.amazon.com/es_es/vpc/latest/privatelink/vpc-endpoints-s3.html

Reasons:
  • Blacklisted phrase (1): todas
  • Blacklisted phrase (2): crear
  • Blacklisted phrase (2): Crear
  • RegEx Blacklisted phrase (2.5): mismo
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: gerald rojas

79721557

Date: 2025-07-31 16:06:34
Score: 4.5
Natty: 5
Report link

It appears the section linked in the answer has been moved in the docs to here: https://docs.github.com/en/actions/reference/workflows-and-actions/reusable-workflows#supported-keywords-for-jobs-that-call-a-reusable-workflow

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

79721539

Date: 2025-07-31 15:48:29
Score: 4
Natty:
Report link

Thanks so much for helping me out. Maybe it's because I'm new to Vite, but nothing suggested worked. So, I created a new React project without Vite, added my files and edited any areas needed, and deployed it to Netlify and that worked.

Thanks so much for trying.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Alexandria Fuller

79721482

Date: 2025-07-31 15:03:17
Score: 4
Natty:
Report link

Your website might be doing something different between the two ways of modifying window size.
I cannot reproduce this issue with my sample.
Please give it a try. 
https://github.com/adamenagy/Container/blob/master/ViewerTest.zip
Just serve the HTML page using any HTTP server - e.g. "Live Server" in Visual Studio Code:
https://youtu.be/pqS4h7WpeWc

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (2.5): Please give
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Adam Nagy

79721458

Date: 2025-07-31 14:46:12
Score: 8.5
Natty: 7.5
Report link

Hello did you manage to find the root cause?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to find the
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Karim Test

79721247

Date: 2025-07-31 11:57:26
Score: 7
Natty: 5.5
Report link

It has been 4 years, did you finally find how to do it? I've been struggling for weeks looking for the answer... Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): did you finally find
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Camille Sage