79115677

Date: 2024-10-22 20:44:25
Score: 5
Natty:
Report link

What's about your terminal(system) encoding?

enter image description here

This mean your .py file in utf encoding.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What's
  • Low reputation (1):
Posted by: Inbasu

79115618

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

Request failed code500 wat prblm

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

79115573

Date: 2024-10-22 20:06:14
Score: 5.5
Natty: 5.5
Report link

Is possible to add strict csp or nonce header in ssg build which means static generated ?

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

79115482

Date: 2024-10-22 19:24:00
Score: 13 🚩
Natty: 4.5
Report link

Were you able to solved this? I'm facing the same problem in my project

Reasons:
  • Blacklisted phrase (1): m facing the same problem
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solved this?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Juan Diego Ardila Gutiérrez

79115383

Date: 2024-10-22 18:40:48
Score: 4
Natty: 4.5
Report link

A Beginner’s Guide to Redux: Step by Step Explanation with Examples https://www.engineerstutorial.com/blog/technology/react/complete-beginners-guide-to-redux-learn-state-management-from-scratch

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

79115350

Date: 2024-10-22 18:27:44
Score: 4
Natty:
Report link

Answering my own question here. The issue was adjusting the cursor offset based on the font baseline. The default baseline is at the top, so a 0,0 works fine, but others align to the bottom, meaning you need to "push" it back onto the display. Thx!

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

79115333

Date: 2024-10-22 18:22:40
Score: 6.5 🚩
Natty: 5
Report link

I have tried every solution you told me I set the environment variables path --> restart my pc --> open and closed vs code --> but still the command shell is not executing please help me with this.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jithin Ch

79115305

Date: 2024-10-22 18:13:36
Score: 4.5
Natty:
Report link

from reportlab.lib.pagesizes import letter from reportlab.pdfgen import canvas

def crear_pdf(nombre_archivo): c = canvas.Canvas(nombre_archivo, pagesize=letter) ancho, alto = letter

# Título
c.setFont("Helvetica-Bold", 16)
c.drawString(100, alto - 40, "Cuadros Sinópticos y Tablas")

# Cuadro Sinóptico de Modificadores Directos
c.setFont("Helvetica-Bold", 12)
c.drawString(100, alto - 80, "Cuadro Sinóptico de Modificadores Directos")
c.setFont("Helvetica", 10)
c.drawString(100, alto - 100, "Modificadores Directos")
c.drawString(120, alto - 120, "├── Artículos")
c.drawString(140, alto - 140, "│   ├── el")
c.drawString(140, alto - 160, "│   ├── la")
c.drawString(140, alto - 180, "│   ├── los")
c.drawString(140, alto - 200, "│   └── las")
c.drawString(120, alto - 220, "├── Adjetivos")
c.drawString(140, alto - 240, "│   ├── grande")
c.drawString(140, alto - 260, "│   ├── pequeño")
c.drawString(140, alto - 280, "│   ├── rojo")
c.drawString(140, alto - 300, "│   └── feliz")
c.drawString(120, alto - 320, "└── Posesivos")
c.drawString(140, alto - 340, "    ├── mi")
c.drawString(140, alto - 360, "    ├── tu")
c.drawString(140, alto - 380, "    ├── su")
c.drawString(140, alto - 400, "    └── nuestro")

# Tabla de Modificadores Directos
c.setFont("Helvetica-Bold", 12)
c.drawString(100, alto - 440, "Tabla de Modificadores Directos")
c.setFont("Helvetica", 10)
data = [
    ["Tipo de Modificador Directo", "Modificador", "Ejemplo de Uso"],
    ["Artículo", "el", "El perro ladra."],
    ["Artículo", "la", "La casa es grande."],
    ["Artículo", "los", "Los niños juegan."],
    ["Artículo", "las", "Las flores son bonitas."],
    ["Adjetivo", "grande", "La casa es grande."],
    ["Adjetivo", "pequeño", "El gato es pequeño."],
    ["Adjetivo", "rojo", "El coche es rojo."],
    ["Adjetivo", "feliz", "El niño está feliz."],
    ["Posesivo", "mi", "Mi libro está aquí."],
    ["Posesivo", "tu", "Tu perro es bonito."],
    ["Posesivo", "su", "Su casa es grande."],
    ["Posesivo", "nuestro", "Nuestro coche es nuevo."]
]

x_offset = 100
y_offset = alto - 460
for row in data:
    for col, text in enumerate(row):
        c.drawString(x_offset + col * 150, y_offset, text)
    y_offset -= 20

c.save()

Crear el PDF

crear_pdf("cuadros_sinopticos_y_tablas.pdf")

Reasons:
  • Blacklisted phrase (1): está
  • Blacklisted phrase (2): crear
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Carina Sauretti

79115276

Date: 2024-10-22 18:00:33
Score: 5.5
Natty:
Report link

This code should fix the problem. enter image description here

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

79115255

Date: 2024-10-22 17:51:30
Score: 4
Natty:
Report link

SELECT DISTINCT(Policy) FROM table_name;

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

79115235

Date: 2024-10-22 17:44:28
Score: 12.5
Natty: 7.5
Report link

I have the same problem, have you solved it?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (2): have you solved it
  • RegEx Blacklisted phrase (1.5): solved it?
  • 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: Dexel Mas

79115204

Date: 2024-10-22 17:33:24
Score: 4
Natty: 4.5
Report link

Try disabling RPC validation using isLazy:

https://docs.cosmology.zone/cosmos-kit/provider/chain-provider#islazy

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

79115159

Date: 2024-10-22 17:18:19
Score: 4.5
Natty:
Report link

Is this what you want? You can add index column from power query and then add a DAX column using 'MonthLabel = [Months]& " " & [TeamName]'. This will add separate values for each month for each team in line chart. please see result here

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

79115149

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

I have similar issue. Found this: Project fail to build after update to VS 17.11.5 Look at: https://developercommunity.visualstudio.com/t/Project-fail-to-build-after-update-to-VS/10763457?sort=active&openOnly=false&closedOnly=false&topics=Database+Solution

Hope it helps

Reasons:
  • Blacklisted phrase (1): I have similar
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have similar issue
  • Low reputation (1):
Posted by: Felo Vala

79115109

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

Close it. Found the problem and resolved.

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

79115056

Date: 2024-10-22 16:44:08
Score: 4.5
Natty:
Report link

Add @import "primeng/resources/primeng.css" in styles.scss

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @import
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sergey Ronmanenko

79115033

Date: 2024-10-22 16:32:04
Score: 5.5
Natty: 5
Report link

@snarkwell I know it's an old post, but would you be willing to share that language file you created? I'm looking for something with this simplicity.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @snarkwell
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Hector Jimenez

79114962

Date: 2024-10-22 16:10:58
Score: 4.5
Natty:
Report link

Have you binded the secret to the function? If you have, you can share the part of the code where you initialized the secret?

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

79114957

Date: 2024-10-22 16:09:57
Score: 11
Natty: 7.5
Report link

How did you solve this issue ?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve this
  • RegEx Blacklisted phrase (1.5): solve this issue ?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How did you solve this is
  • Low reputation (1):
Posted by: Wesal

79114918

Date: 2024-10-22 15:59:53
Score: 5.5
Natty:
Report link

I am in search of away to hide/show app opened in task bar. I am using .NET MUAI blazor hybride ( windows)

user32.dll is possible the option but i dont know where to put import statement,

pls advise

Reasons:
  • RegEx Blacklisted phrase (2.5): pls advise
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): user32
  • Low reputation (1):
Posted by: Sanong Penmongkol

79114800

Date: 2024-10-22 15:27:43
Score: 4.5
Natty:
Report link

I thought of using static variables for shared data and maximum limit.

I am trying to figure out possible scenarios where this can be used in real time. Please help me for that.

Code :

#include<stdio.h>
#include<pthread.h>

pthread_mutex_t pmLock;
static int shared = 0;
static int limit = 10;

void* printEven(){
    printf("This is printEven() start.\n");
    pthread_mutex_lock(&pmLock);
    while(shared <= limit){
        if(shared%2 == 0){
            printf("Even:%d\n",shared);
            shared++;
        }
        pthread_mutex_unlock(&pmLock);
    }
    printf("This is printEven() End.\n");
}

void* printOdd(){
    printf("This is printOdd() start.\n");
    pthread_mutex_lock(&pmLock);
    while(shared <= limit){
        if(shared%2 != 0){
            printf("Odd:%d\n",shared);
            shared++;
        }
        pthread_mutex_unlock(&pmLock);
    }
    printf("This is printOdd() End.\n");
}

int main(){

    //init mutex lock.
    if (pthread_mutex_init(&pmLock, NULL) != 0) { 
        printf("\n mutex init has failed\n"); 
        return 1; 
    }

    pthread_t thread_ids[2];
    printf("Before Thread\n");

    pthread_create(&thread_ids[0], NULL, printEven, NULL);
    pthread_create(&thread_ids[1], NULL, printOdd, NULL);

    pthread_join(thread_ids[0], NULL);
    pthread_join(thread_ids[1], NULL);

    printf("After Thread\n");

    // destroy mutex
    pthread_mutex_destroy(&pmLock);
    return 0;
}
Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (3): Please help me
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: msankpal

79114784

Date: 2024-10-22 15:24:41
Score: 5.5
Natty:
Report link

I am also facing the same issue. Using the following libs and MySQL database:

Django==5.1.2

djangorestframework==3.15.2

django-filter==24.3

django-cors-headers==4.5.0

markdown==3.7

mysqlclient==2.2.5

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Low reputation (1):
Posted by: Aman

79114756

Date: 2024-10-22 15:15:39
Score: 4
Natty:
Report link

This bug seems to be resolved in MySQL 8.0.31. Thanks Oracle

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

79114719

Date: 2024-10-22 15:08:35
Score: 5
Natty:
Report link

We are building our own dot net core application for attendance using ZKTeco, can you please guide us the following:

  1. how to connect to the device
  2. how to register staff picture to the device

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): can you please guide us
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Haroon Ahmad

79114657

Date: 2024-10-22 14:58:32
Score: 5.5
Natty:
Report link

Resolved, I needed to add an advanced parameter for the key and value and now it works. enter image description here

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

79114654

Date: 2024-10-22 14:57:32
Score: 4
Natty:
Report link

createDecorationsCollection return interface IEditorDecorationsCollection. You call this method only one time and then work with returned object. https://microsoft.github.io/monaco-editor/typedoc/interfaces/editor.IEditorDecorationsCollection.html

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Александр Галещук

79114617

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

which versions you ended up using?

Reasons:
  • Low length (2):
  • 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: Anto Pisciolari

79114605

Date: 2024-10-22 14:42:25
Score: 4
Natty: 5
Report link

I have a similar situation, however the tab names are not sequential or numerical. In fact i extracted them in array format using "=(GET.WORKBOOK(1))&T(NOW())", and similarly to the above query I'd like to use the indirect formula to get cell C2 of each sheet.

I'm using this formula "=LET(A, "'" &A14#& "'!"&"C2", B,BYROW(A,LAMBDA(X,INDIRECT(X))), B)" However I'm getting a value! error. Strangely enough when I workout "A" named range in a separate cell and then refer to that cell using "#" since it would be a dynamic array, it works. However it is not very neat. Any help on this?

Reasons:
  • Blacklisted phrase (1): Any help
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: John

79114568

Date: 2024-10-22 14:37:23
Score: 4.5
Natty: 5.5
Report link

This blows goats. I just want a wireframe draw antialiased, it's completely wasted on my texture draws. stupid d3d wants so many other settings changed between draw calls but AA can't be changed?? is there a good reason for this limitation or just another clown aspect of d3d11?

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

79114474

Date: 2024-10-22 14:18:15
Score: 7.5 🚩
Natty: 5
Report link

Similar issues but with null values. Have you already solved this issue ?

Reasons:
  • RegEx Blacklisted phrase (1.5): solved this issue ?
  • RegEx Blacklisted phrase (1): Similar issue
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: YuriiChmil

79114455

Date: 2024-10-22 14:13:14
Score: 11.5
Natty: 7
Report link

Did you find any solution for this? I am facing this same issue.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (2): any solution for this?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find any solution for this
  • Low reputation (1):
Posted by: Abdul

79114398

Date: 2024-10-22 13:58:09
Score: 4.5
Natty:
Report link

Here you go 👇 Congratsssssssssssssssssssss

Congrats

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Filler text (0.5): sssssssssssssssssssss
  • Low reputation (1):
Posted by: Dark_programmer

79114331

Date: 2024-10-22 13:42:02
Score: 6 🚩
Natty: 5
Report link

Unfortnately, specflow does not have extension for vs code, and we can add it through command but vs code will not be able to run those tests. If i am wrong please let me know how you run those tests.

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know how you
  • RegEx Blacklisted phrase (1): i am wrong please
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ayushpreenza

79114315

Date: 2024-10-22 13:37:58
Score: 9 🚩
Natty: 4.5
Report link

I'm also having the same issue After updating IDE to the latest version. If anyone finds a solution, post here thanks in advance

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (3): thanks in advance
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm also having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: prithiviraj

79114306

Date: 2024-10-22 13:34:57
Score: 6
Natty: 7.5
Report link

With update I need ignore record with id, how to validate unique?

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tuan Nguyen Jam NG

79114236

Date: 2024-10-22 13:17:52
Score: 4.5
Natty: 4
Report link

what was the solution for this

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what was the solution for this
  • Low reputation (1):
Posted by: Ashinsana Mayuminda

79114149

Date: 2024-10-22 12:56:44
Score: 8.5 🚩
Natty: 6.5
Report link

Did you find a solution? I need it too

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution
  • Low reputation (1):
Posted by: ozgurozalp

79114126

Date: 2024-10-22 12:50:42
Score: 13
Natty: 9
Report link

Same issue here, did you find any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution
  • RegEx Blacklisted phrase (1): Same issue
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Antoine Bouché

79114099

Date: 2024-10-22 12:45:38
Score: 11.5 🚩
Natty: 6
Report link

Were you able to solve this issue? Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • 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):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pranil00

79114018

Date: 2024-10-22 12:24:31
Score: 4.5
Natty:
Report link

In android ladybug when i click add image asset i get this box. And i allows only icons and banners. I am unable to add an ordinary image.

enter image description here

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

79113976

Date: 2024-10-22 12:15:28
Score: 5
Natty: 2
Report link

After exhausting all other options to recover my social media accounts, I was referred to Angelina, a highly skilled professional at META. Her expertise and efficiency were impressive, as she helped me regain access to my account in under 24 hours. If you're facing similar issues with your account, I highly recommend reaching out to her. You can connect with her on Instagram at Angelina_Christopher1738 or via email at [email protected].

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): facing similar issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jeremy61

79113954

Date: 2024-10-22 12:09:24
Score: 8 🚩
Natty: 6.5
Report link

Can anyone post the mathematical formulas for the kurtosis and the excess kurtosis for population and the bias corrected formulas for both when using a sample?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can anyone post
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can anyone post the
  • Low reputation (1):
Posted by: Nicolai

79113857

Date: 2024-10-22 11:41:15
Score: 7 🚩
Natty: 5.5
Report link

I have a similar requirement. Has this been resolved?

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

79113833

Date: 2024-10-22 11:36:11
Score: 6 🚩
Natty:
Report link

from an email invitation: If I follow the invitation link, the page shows I am logged in but I get a 404 error.

@ebollmann1 plus @JohnUSCartool @ebollmann1 has invited you to collaborate on the ebollmann1/USCT-V16 repository You can accept or decline this invitation. You can also visit @ebollmann1 to learn a bit more about them.

This invitation will expire in 7 days.

View invitation Note: This invitation was intended for [email protected]. If you were not expecting this invitation, you can ignore this email. If @ebollmann1 is sending you too many emails, you can block them or report abuse.

Getting a 404 error? Make sure you’re signed in as JohnUSCartool.

Button not working? Copy and paste this link into your browser: https://github.com/ebollmann1/USCT-V16/invitations

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (2): working?
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @ebollmann1
  • User mentioned (0): @JohnUSCartool
  • User mentioned (0): @ebollmann1
  • User mentioned (0): @ebollmann1
  • User mentioned (0): @ebollmann1
  • Low reputation (1):
Posted by: John Pasemann

79113813

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

sample request how to fetch os user name from Microsoft graph api enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: prashant j

79113808

Date: 2024-10-22 11:30:07
Score: 9.5 🚩
Natty: 6
Report link

did you manage to solve your problem? i Have the same one and i don't how to solve it.

Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (3): did you manage to solve your problem
  • RegEx Blacklisted phrase (1.5): solve your problem?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Readix

79113784

Date: 2024-10-22 11:23:03
Score: 9.5 🚩
Natty: 5.5
Report link

Did You managed with this problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did You manage
  • 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: Agnieszka

79113704

Date: 2024-10-22 11:00:55
Score: 9.5 🚩
Natty: 6.5
Report link

I do currently face issue using logback within kotlin multiplatform for a desktop application running on linux and your implementation looks helpful. However, can you please share further details about the classes ContextAwareBase(), LoggerContextListener, LifeCycle?

Many thanks in advance, Claudius

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (2.5): can you please share
  • RegEx Blacklisted phrase (3): thanks in advance
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Claudius

79113606

Date: 2024-10-22 10:35:47
Score: 5.5
Natty:
Report link

I am looking for this solution. Is it possible to take the backup of function from global vars before it's overriden from other shared library so that I can call whichever version of function needed in the next steps

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Blacklisted phrase (1): Is it possible to
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sudarsan Bandi

79113490

Date: 2024-10-22 10:09:38
Score: 9 🚩
Natty: 6
Report link

did you solve the problem? I'm building and app using rhino and in the future I need to implement shinymanager.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): did you solve the problem
  • RegEx Blacklisted phrase (1.5): solve the problem?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you solve the
  • Low reputation (1):
Posted by: A.Arrigo

79113447

Date: 2024-10-22 09:57:34
Score: 5.5
Natty:
Report link

Please I’m facing the same issue. My pixel and picture sizes are okay, yet I can’t upload upload to my repo and profile

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

79113441

Date: 2024-10-22 09:55:34
Score: 5
Natty:
Report link

Have you checked your python set-up again and ensured that you have a requirements.txt file?

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

79113439

Date: 2024-10-22 09:54:33
Score: 5
Natty:
Report link

looks like it's possible although tricky https://github.com/amannn/next-intl/issues/1425

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

79113413

Date: 2024-10-22 09:45:30
Score: 4
Natty:
Report link

Disable this filter. Possibly you will need to relaunch Android Studio.

Disable this

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

79113350

Date: 2024-10-22 09:40:29
Score: 5.5
Natty: 4
Report link

Yes, from above problem is solved but while executing individual test case it fails with same error. I am working on Gradle project, and upgrade springBoot from 3.0.4 to 3.3.3. I am using IntelliJ IDE I add -parameter in setting/Build,Execution,Deployemnt/Compiler/Java Compiler : Additional Command line parameter : - parameters Kindly help me to resolve this issue.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (3): Kindly help
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sumit Srivastav

79113348

Date: 2024-10-22 09:39:26
Score: 6 🚩
Natty: 5.5
Report link

how to upload all this files to a project?

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

79113231

Date: 2024-10-22 09:07:17
Score: 5
Natty:
Report link

I find it difficult to reproduce your problem with the information given.Could you please provide a minimal reproducible example (i.e. giving the content of test3.html)?

Please also referr to this.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you please provide
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: gerberli

79113224

Date: 2024-10-22 09:05:17
Score: 10.5
Natty: 7.5
Report link

did you ever find the answer to this?

Reasons:
  • Blacklisted phrase (1): answer to this?
  • RegEx Blacklisted phrase (3): did you ever find the answer to this
  • 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: K. Martin

79113160

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

I'm also having the same issue,This looks like a hardware issue. I found that the frequency of this problem is very high in the powered state of the chip, and the operation in the non-powered state is almost non-existent

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm also having the same issue
  • Low reputation (1):
Posted by: 郑在忙

79113106

Date: 2024-10-22 08:37:07
Score: 9 🚩
Natty:
Report link

Did you find any answer for this--> how to make i2c-core as module.I'm also facing the same issue

Reasons:
  • RegEx Blacklisted phrase (3): Did you find any answer
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm also facing the same issue
  • Single line (0.5):
  • Starts with a question (0.5): Did you find any answer for this
  • Low reputation (1):
Posted by: Jagappradeep S

79113063

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

Here is some tips(please Checkout):

https://github.com/spring-attic/top-spring-boot-docker/pull/33

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

79112936

Date: 2024-10-22 07:50:54
Score: 6.5 🚩
Natty:
Report link

I also have the same problem. Whenever I add a phone number and verify the business name after it’s approved, I receive the message shown in image 1. After that, I download the certificate, but I’m not sure what to do next. I’m stuck. Have you researched this? I’ve read all the documents but can’t find any clues, and I also used AI to get any clue but couldn’t find it. If you get any clues, please ping me here. If I find anything, I’ll ping you here with the solution.

Reasons:
  • RegEx Blacklisted phrase (1.5): m stuck
  • No code block (0.5):
  • Me too answer (2.5): I also have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AYUSH JOSHI 2

79112909

Date: 2024-10-22 07:41:49
Score: 7 🚩
Natty: 5
Report link

Have you found solution to this??? I'm looking to subscribe buy/sell txns.

Reasons:
  • Blacklisted phrase (1): ???
  • RegEx Blacklisted phrase (2.5): Have you found solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: ajaythxkur

79112851

Date: 2024-10-22 07:22:42
Score: 6 🚩
Natty: 4.5
Report link

can any one explain this i am not getting it . it is showing error for any value of connection timeout

Reasons:
  • RegEx Blacklisted phrase (2.5): can any one explain
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can any one
  • Low reputation (1):
Posted by: Manikanta Perneedi

79112827

Date: 2024-10-22 07:16:40
Score: 5
Natty:
Report link

Kotlin has a specific extension for reading contents of InputStream.

val inputAsString = input.bufferedReader().use { it.readText() }

You can try reading about this at this stack overflow post: In Kotlin, how do I read the entire contents of an InputStream into a String?

Reasons:
  • Blacklisted phrase (1): how do I
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Epidermis

79112737

Date: 2024-10-22 06:48:33
Score: 4
Natty:
Report link

You could try to use sync function in sharepoint. enter image description here

Please refer to following document

https://support.microsoft.com/en-us/office/sync-sharepoint-files-and-folders-87a96948-4dd7-43e4-aca1-53f3e18bea9b

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

79112711

Date: 2024-10-22 06:35:27
Score: 9 🚩
Natty:
Report link

How do I mark this post solved and close it?

Reasons:
  • Blacklisted phrase (1): How do I
  • RegEx Blacklisted phrase (1.5): solved and close it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do I
  • Low reputation (1):
Posted by: Claes A

79112647

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

Working fine for me on more than 200 records uploading through webclient request.

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

79112630

Date: 2024-10-22 06:11:19
Score: 6 🚩
Natty:
Report link

If someone is facing similar issue with newRelic, you can see this:

Zoned Guard issue NewRelic

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing similar issue
  • Low reputation (0.5):
Posted by: Peter Bk

79112518

Date: 2024-10-22 05:21:08
Score: 4
Natty:
Report link

i got the solution for this is by using angular concept of reactive forms by using the reactive_forms

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

79112507

Date: 2024-10-22 05:09:03
Score: 11 🚩
Natty: 5.5
Report link

I am testing the scopus api and got the same error as you. How did you fix this error?

Reasons:
  • Blacklisted phrase (1): How did you fix
  • RegEx Blacklisted phrase (3): did you fix this
  • RegEx Blacklisted phrase (1.5): fix this error?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tran Bao Linh K17 HL

79112476

Date: 2024-10-22 04:52:58
Score: 6 🚩
Natty: 5
Report link

I'm getting the same issue with create_pandas_dataframe_agent:


from langchain_experimental.agents import create_pandas_dataframe_agent
from langchain.agents.agent_types import AgentType

agent = create_pandas_dataframe_agent(
    llm,
    df_chart,
    verbose=True,
    allow_dangerous_code=True,
    agent_type="zero-shot-react-description",
    include_df_in_prompt=True,
    number_of_head_rows=5
)


agent.invoke("what is the combined remaining balance of patient 3 and patient 39?")



> Entering new AgentExecutor chain...
Thought: I need to find the remaining balance of patient 3 and patient 38 in the dataframe.
Action: python_repl_ast
Action Input: `df.loc[df['Patient Name'] == 'Patient_3', 'Balance Remaining'].values[0]`
ObservSyntaxError: invalid syntax (<unknown>, line 1)The error message indicates that there is a syntax error in the code. Upon reviewing the code, I notice that the column name is actually 'Balance Remaining', not 'Balance'. I will correct the code.

output is causing the input line to have a newline then followed by the word "Observ". It seems like a problem with the embedded system prompt but how do you change this???

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): how do you
  • Blacklisted phrase (1): ???
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm getting the same issue
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: texasdave

79112450

Date: 2024-10-22 04:39:52
Score: 8.5 🚩
Natty:
Report link

Hi can you provide how this issue is resolved . I am facing exactly same issue.

Reasons:
  • RegEx Blacklisted phrase (2.5): can you provide how
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing exactly same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bhavana Chandana

79112425

Date: 2024-10-22 04:29:49
Score: 5.5
Natty: 7
Report link

Not an answer but a link with an interesting title. 😁 https://leg.colorado.gov/sites/default/files/documents/2023A/bills/2023a_098_01.pdf

Reasons:
  • Blacklisted phrase (1): Not an answer
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user3874733

79112381

Date: 2024-10-22 03:54:42
Score: 4
Natty: 6
Report link

I stumbled upon this site and I don't know anything about APIs, etc. Do I need to know programming to do this? I'm desperate to see the members of a channel

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: elle m.

79112275

Date: 2024-10-22 02:46:27
Score: 4
Natty:
Report link

Per the very helpful Geoserver forums, here is the resolution? https://discourse.osgeo.org/t/imagemosaic-timeregex-properites-not-reading-correctly/110680

In short: Shapefiles don't support time values, so have to move to postGIS.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: DarwinsBeard

79112251

Date: 2024-10-22 02:30:24
Score: 4
Natty:
Report link

I found the answer (via reddit) https://github.com/estin/simple-completion-language-server is the best way for now

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

79112223

Date: 2024-10-22 02:13:18
Score: 9.5 🚩
Natty: 5.5
Report link

Did you find a solution for this issue?

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

79112201

Date: 2024-10-22 01:58:15
Score: 5
Natty:
Report link

You can refer to python knowledge here: https://pythonid.com/tutorials/python-for-loops

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hữu Đoàn Trần

79112191

Date: 2024-10-22 01:49:13
Score: 4
Natty:
Report link

Can you show me more details about userService’s login function?

Also if you use spring security, check SpringSecurity config.

//ex
@Override
protected void configure(HttpSecurity http) throws Exception {
    http
        .authorizeRequests()
        .antMatchers("/login").permitAll()  
        .anyRequest().authenticated();   
}
Reasons:
  • RegEx Blacklisted phrase (2.5): Can you show me
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: lohny

79112177

Date: 2024-10-22 01:35:08
Score: 6.5 🚩
Natty: 4
Report link

I have the same question,but after upgrading the package version of imbalanced-learner to the 0.12.4,I find it work fine.My original version is 0.11.1. You can have a try.

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

79112175

Date: 2024-10-22 01:33:07
Score: 5.5
Natty:
Report link

Could you let me know which field is being skipped and share the link to your form? It sounds like there may be a validation issue on the form.

I’ve worked extensively with WordPress and Gravity Forms for over 5 years now. This issue is likely due to JavaScript or a conflict with another plugin. I can help you troubleshoot and implement a fix, ensuring that your mandatory field is correctly enforced.

Let’s connect via Zoom to dive deeper into this. I’m confident we can resolve this quickly and improve your data quality.

Best Regards, Clement

Reasons:
  • Blacklisted phrase (0.5): Best Regards
  • Blacklisted phrase (1): Regards
  • RegEx Blacklisted phrase (2.5): Could you let me know
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Clement Adegoroye

79112169

Date: 2024-10-22 01:29:06
Score: 5
Natty: 5
Report link

Is Water Nymph aka Vesna Car going to stay out of my Nicholas Di Chiara's life from October of 2024 to February of 2025?

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

79112124

Date: 2024-10-22 01:00:57
Score: 8 🚩
Natty:
Report link

we are also facing a similar kind of issue Do you have any update?

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cloud Engineer

79112066

Date: 2024-10-22 00:20:48
Score: 8 🚩
Natty: 5.5
Report link

Hi please can I know what you did to fix this having the same problem with vs code?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Neoko XXX

79112027

Date: 2024-10-21 23:40:39
Score: 11
Natty: 8.5
Report link

i am struggling with the same error, did you get a fix??

Reasons:
  • Blacklisted phrase (1): i am struggling
  • RegEx Blacklisted phrase (3): did you get a fix
  • RegEx Blacklisted phrase (1.5): fix??
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Prince Maheshwari

79111977

Date: 2024-10-21 23:06:29
Score: 8 🚩
Natty: 4
Report link

@rakitin, Could you explain to me how you organized the directory? I mean app.tsx, tab1, tab2 and tab3

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you explain
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @rakitin
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: victor costantini

79111885

Date: 2024-10-21 22:15:16
Score: 6.5 🚩
Natty: 6
Report link

Ever find the solution? I am having a similar problem, however I notice my custom RPC is initially pinged successfully, then immediately after the default/fallback RPC is used. Not sure how to force the custom RPC.

Reasons:
  • Blacklisted phrase (1): I am having a similar problem
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having a similar problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Colin Cooley

79111802

Date: 2024-10-21 21:29:03
Score: 9 🚩
Natty: 4
Report link

I am getting the same problem now but during export. Extremely frustrated, changed all the data types to numeric, decimal.. NOTHING HELPS. I just want to make a simple export. How can that be so difficult?!

Did anyone find a solution for this?

Reasons:
  • RegEx Blacklisted phrase (3): Did anyone find a solution
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same problem
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Vladi

79111755

Date: 2024-10-21 21:09:58
Score: 5.5
Natty: 3.5
Report link

I am looking for an easy way to do this in Google apps script. If people could reply, It would make my day.

Reasons:
  • Blacklisted phrase (2): I am looking for
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Graham B

79111700

Date: 2024-10-21 20:46:53
Score: 4.5
Natty: 4
Report link

You can get the firefox working in vnc on termux, see my post here https://h4ck3rm1k3.wordpress.com/2024/10/01/running-firefox-developer-in-vlc-on-android/

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

79111692

Date: 2024-10-21 20:43:51
Score: 5.5
Natty:
Report link

I'm also trying to deploy VS Code in Docker on Windows 10.

I found this nice guide: https://www.linkedin.com/pulse/connecting-microcontrollers-platformio-running-linux-windows-jenssen-c6ulf and followed it, but unfortunately I can't see the USB target port (e.g. connected ESP32) in VS Code (PlatformIO extension), which is connected to a running Docker container using WSL2.

I have the device binded and: attached, in Ubuntu app after lsusb command I can see: output

When I run the command lsusb I get this: output

so ubuntu sees the USB device connected. But after running ls /dev I don't see something like /dev/ttyUSBx or /dev/ttyACMx there but the device can be found in /dev/usb/... directory.

I also tried adding the file 99-platformio-udev.rules file in /etc/udev/rules.d according this tutorial: https://docs.platformio.org/en/latest/core/installation/udev-rules.html#platformio-udev-rules

and even add these permissions:

$ sudo adduser <username> dialout
$ sudo chmod a+rw /dev/ttyUSB0

but it didn't make any changes.

Could you please advise me if it is possible to ensure that, even when VS Code is running in a Docker container, USB devices can be seen in VS Code PlatformIO extension and therefore it is possible to upload a program to them?

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): this tutorial
  • RegEx Blacklisted phrase (2.5): Could you please advise me
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: iotdeveloper

79111590

Date: 2024-10-21 20:07:42
Score: 4.5
Natty: 4.5
Report link

Obviously everyone knows here that even if a byte is the tiniest storage place for data, there's also methods to store characters in one bit...?

right?

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

79111529

Date: 2024-10-21 19:45:35
Score: 4.5
Natty: 5
Report link

don't waste your time: there is a free version of MS SQL Server 2019 Express https://www.microsoft.com/ru-ru/download/details.aspx?id=101064

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

79111492

Date: 2024-10-21 19:29:31
Score: 4.5
Natty:
Report link

the solution is to cache locally, there is a library on github that does this https://github.com/kernel0x/bundlesaver

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kernel

79111489

Date: 2024-10-21 19:27:30
Score: 4.5
Natty:
Report link

hmm im new but ya do what he said or tell the experts https://www.raspberrypi.com/contact/ scroll and find not what your looking for and put in your email and other needed stuff i love raspberry pi hardware

Reasons:
  • RegEx Blacklisted phrase (1.5): im new
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: raspi fan

79111469

Date: 2024-10-21 19:20:28
Score: 4.5
Natty: 5
Report link

probably too late but I found this library for flutter https://pub.dev/packages/posz92printer/install

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

79111446

Date: 2024-10-21 19:13:25
Score: 6
Natty: 7
Report link

Can you please share the solution that worked for you.? I have tried to get back the edited image but enable to receive the same.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please share the solution
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you please share the solution that
  • Low reputation (1):
Posted by: Vishal Chavan

79111422

Date: 2024-10-21 19:08:23
Score: 4
Natty:
Report link

Thank you everyone!

You are all amazing people!!

I got my answer.

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

79111378

Date: 2024-10-21 18:54:19
Score: 4
Natty: 5
Report link

Thanks a lot, the approach with useApolloClient worked!

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