79140205

Date: 2024-10-30 08:22:10
Score: 7 🚩
Natty: 6
Report link

so is there any way to retrieve chat data from google chat using Appscript?

Reasons:
  • Blacklisted phrase (1): is there any
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28056663

79140201

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

After having the same error, I moved my service to a Cloud Run - Gen 2 and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mike

79140131

Date: 2024-10-30 07:56:03
Score: 4
Natty:
Report link

Currently, I use this PowerShell script to turn off the Diagnostics settings (classic) for multiple new-created Storage Accounts.

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

79140094

Date: 2024-10-30 07:38:57
Score: 9 🚩
Natty: 5.5
Report link

I also encountered this problem, have you solved it?

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

79140078

Date: 2024-10-30 07:33:55
Score: 5
Natty:
Report link

Yes, I have already added both things, but the same issue persists.Please let me know if there is anything I need to do because suddenly it stopped and I didn't understand what went wrong.

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: krishna

79140003

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

Here is this problem. Wait new version. https://github.com/invertase/react-native-firebase/issues/8082

UPDATE: Have a new version.

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

79140002

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

I recently read an article on Syntax Scenarios (Read More) about handling None values in Python lists, but I'd love to hear from others who have tried these methods in practice. Could someone provide a quick review or more examples to confirm what really works best for filtering out or replacing None elements? Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Could someone provide
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chris joe

79139980

Date: 2024-10-30 07:13:46
Score: 4
Natty: 4
Report link

Sorry for jumping in this someone asked question.. But is it possible to export as DLL then how can cline run that program?? I have created my first desktop application with windows forms and released exe from this project is getting blocked by client's network administrator. So I can ant to export as DLL then I want to have option to use this DLL to open that app in client system.

Reasons:
  • Blacklisted phrase (1): is it possible to
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: chetan soni

79139823

Date: 2024-10-30 06:08:32
Score: 5.5
Natty: 5.5
Report link

any solution for this problem recently

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

79139560

Date: 2024-10-30 03:14:54
Score: 4
Natty:
Report link

I know this is an old post but if is useful for anyone, I ran into the same problem trying to make an application launcher with an option to close when unfocused, my solution was to use a g_timeout (if I didn't do it, the program went ahead and closed) and when that timer finished, check a couple of things:

ismoving=0;

gboolean on_button_press(GtkWidget *widget, GdkEventButton *event, gpointer data)
{
   // check for mouse button 1 to set ismoving
    if (event->type == GDK_BUTTON_PRESS && event->button == 1)
    {
        ismoving = 1;
    }
    //GDK_BUTTON_RELEASE doesn't work for me in Wayland
    return FALSE;
}

gboolean close_window_if_unfocused(gpointer widget)
{
    //submenu is a popup menu, dialog is a global variable that i use for dialogs
    if (gtk_widget_get_visible(submenu) || gtk_widget_get_visible(dialog) || ismoving)
    {
        ismoving = 0; // Changing this is a workaround because i don't know other way in Wayland
        return FALSE;
    }

    // I also check for modifier keys
    GdkModifierType modifier_state = gdk_keymap_get_modifier_state(gdk_keymap_get_for_display(gdk_display_get_default()));
    GdkSeat *seat = gdk_display_get_default_seat(gdk_display_get_default());
    GdkDevice *pointer = gdk_seat_get_pointer(seat);
    guint button_state = 0;

    gdk_device_get_state(pointer, gtk_widget_get_window(GTK_WIDGET(widget)), NULL, &button_state);

    if (!gtk_window_has_toplevel_focus(GTK_WINDOW(widget)) &&
        !(modifier_state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK | GDK_MOD1_MASK | GDK_SUPER_MASK)))
    {
        gtk_widget_destroy(GTK_WIDGET(widget));
    }
    return FALSE;
}

gboolean on_focus_out(GtkWidget *widget, GdkEventFocus *event, gpointer user_data)
{
    g_timeout_add(100, close_window_if_unfocused, widget);
    return FALSE;
}

...

g_signal_connect(window, "key-release-event", G_CALLBACK(on_key_release), NULL); // check input
g_signal_connect(window, "focus-out-event", G_CALLBACK(on_focus_out), window);

Please let me know if you know a better solution, this works for my situation

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ItsZariep

79139512

Date: 2024-10-30 02:40:44
Score: 9.5 🚩
Natty: 5.5
Report link

Could you please give me some help! I found this topic and this code works for me well, but it doesn't remove white spaces in js code! Also I found the next expression - ("#^\s*([^\s].)\s$#U", - it removes white spaces in js! Is it possible to insert it in code? If so, help me to insert.

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): Is it possible to
  • Blacklisted phrase (3): give me some
  • Whitelisted phrase (-1): works for me
  • RegEx Blacklisted phrase (2.5): Could you please give me some
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SirDistr

79139485

Date: 2024-10-30 02:19:40
Score: 4.5
Natty: 5
Report link

I did some experiment on this topic and came up with observations that I need to understand in light of prior analyses reported above. I have a DF with three columns named A, B, and C. My goal is see if groupby stores a copy of the DF. My test code snippet is as follows:

# Make Df with columns A, B, C.
grp = df.groupby(by=['A', 'B'])
del df  
print(grp.transform(lambda x: x))  # The above outputs the whole DF.

The above snippet seems to indicate that grp contains the DF because the original DF has been deleted and grp can still produce it. Is this conclusion true?

May be that grp maintains a pointer to the DF and after the del operation, the reference count does not go to zero so the data hangs around in memory for grp to use. Can this be true?

My Pandas is V 2.2.2. Thanks in advance for clarification.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user2585330

79139415

Date: 2024-10-30 01:35:30
Score: 4.5
Natty:
Report link

You can refer to the CSS specifically for Safari browser here: https://browserstrangeness.bitbucket.io/css_hacks.html#safari

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

79139395

Date: 2024-10-30 01:18:25
Score: 10.5 🚩
Natty: 6
Report link

Did you manage to find an answer? I have the same issue—in the cart, I can change the price, but on the order, it's the same as calculated by Presta.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Did you manage to find an answer
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Dariusz Włodarski

79139207

Date: 2024-10-29 22:54:55
Score: 4
Natty:
Report link

Having the same issue. Using turbopack by running npx next dev --turbo fixed it for me temporarily.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): Having the same issue
  • Low reputation (1):
Posted by: Felix

79139188

Date: 2024-10-29 22:39:52
Score: 4.5
Natty:
Report link

(colima status 2>&1 | grep -Fqe 'colima is running') runs in a subshell because it is in parentheses. I am not sure for your system, but this could be causing the problem because it might return an extra linefeed or some other thing. Try your "if" block with the parentheses removed and go from there?

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

79139161

Date: 2024-10-29 22:24:49
Score: 12
Natty: 7
Report link

I have the same problem, I correctly upload the type of image file which is JPG and I get that BadRequest, could you solve it?

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (2): could you solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1):
  • 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: Andres Gutierrez

79139124

Date: 2024-10-29 22:07:45
Score: 4
Natty:
Report link

Solved it by updating Next-Auth npm-package to the last version)

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

79139042

Date: 2024-10-29 21:30:36
Score: 4.5
Natty:
Report link

I am getting the same issue after applying for and receiving an increased api quota so that I can perform a migration for our content from Vimeo. It is very frustrating to now be hitting this per-user limit that seems to have no workaround.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same issue
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jeremy Bauman

79138948

Date: 2024-10-29 20:53:27
Score: 8.5
Natty: 7
Report link

Having the same issue. Running 4.35, Windows 10 Enterprise.

Any help out here?

Reasons:
  • Blacklisted phrase (1): Any help
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Having the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Kevin Wu

79138946

Date: 2024-10-29 20:51:26
Score: 4.5
Natty:
Report link

Solved with the help of @SteffenUlrich. The problem was an internal error in the backkend.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @SteffenUlrich
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: adiet

79138937

Date: 2024-10-29 20:47:24
Score: 4.5
Natty:
Report link

You could try the extended-embedded-languages extension

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

79138917

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

In latest ReSharper version, you can disable all performance suggestions:

enter image description here

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

79138904

Date: 2024-10-29 20:34:18
Score: 11 🚩
Natty: 5.5
Report link

I am having same issue. Did you found solution for this issue?

Reasons:
  • RegEx Blacklisted phrase (3): Did you found solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: pythonic_way

79138881

Date: 2024-10-29 20:25:15
Score: 5
Natty: 6.5
Report link

Confirming the post above, this documentation shows that information:

https://learn.microsoft.com/en-us/previous-versions/ms893522(v=msdn.10)?redirectedfrom=MSDN

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vinicius Oliverio

79138860

Date: 2024-10-29 20:19:13
Score: 5.5
Natty:
Report link

Do you have any code snippt? Usually ConcurrentModificationException happens when you are trying to modify a collection while you are iterating it. To modify an existing collection it has to be threadsafe collections. Also, check for any circular dependencies in code.

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: Blitz Crank

79138857

Date: 2024-10-29 20:18:10
Score: 11 🚩
Natty: 5.5
Report link

Im facing the same issue as of now. Did you got the solution ?

Reasons:
  • RegEx Blacklisted phrase (3): Did you got the solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: karthick R

79138825

Date: 2024-10-29 20:11:08
Score: 4.5
Natty: 4
Report link

I like the answer given by @0livier above. For those wondering what a use case might be, I found it to be useful when I needed to render views recursively

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @0livier
  • Single line (0.5):
  • Low reputation (1):
Posted by: b-rack

79138755

Date: 2024-10-29 19:59:02
Score: 7 🚩
Natty: 6
Report link

did u try disabling antivirus?

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

79138718

Date: 2024-10-29 19:48:59
Score: 4
Natty:
Report link

Ohh,okay guys o got It, probably im gonna pop ALL tem and push the odds after

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

79138628

Date: 2024-10-29 19:15:48
Score: 8 🚩
Natty: 5
Report link

Thank you @t.niese yours works great but what about antialiasing?img

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Emircan ERKUL

79138567

Date: 2024-10-29 18:55:40
Score: 10.5 🚩
Natty:
Report link

tengo el mismo problema, pase la solucion

Reasons:
  • Blacklisted phrase (2): tengo
  • Blacklisted phrase (2.5): solucion
  • RegEx Blacklisted phrase (2.5): mismo
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: José Cruz

79138561

Date: 2024-10-29 18:53:39
Score: 4.5
Natty:
Report link

The problem is the import type. You exported a named const and need import as named on the MDX file, like @Dogbert suggested. I forked an example for MDX from the Astro's github examples and modified for your case on the StackBlitz.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Dogbert
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: marcelofreires

79138510

Date: 2024-10-29 18:30:34
Score: 4
Natty: 4.5
Report link

It definitely seems to be supported through Spring Boot Actuator

https://docs.spring.io/spring-boot/api/rest/actuator/prometheus.html

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

79138502

Date: 2024-10-29 18:25:30
Score: 6 🚩
Natty: 5.5
Report link

does this work for ADVISION devices ?

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

79138251

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

the same, and download the latest version of the simulator(ios18) which mentioned by @Lightwaxx helped!and my xcode(16.1)

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

79138226

Date: 2024-10-29 17:03:07
Score: 10 🚩
Natty: 4
Report link

Thank you, Chris! I'm having the same issues and will see if it fixes. Töö bad the q and a are both downvoted. Will add a +1 when I get a reputation 😂

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): 😂
  • RegEx Blacklisted phrase (1.5): reputation
  • RegEx Blacklisted phrase (2): downvote
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Low reputation (1):
Posted by: Martin Karu

79138220

Date: 2024-10-29 17:00:05
Score: 5.5
Natty: 4.5
Report link

Will this work with variable products? Also, is it possible to share the whole code because I did not get this part. "then used woocommerce_process_product_meta_simple to save the data. And then by using woocommerce_add_cart_item_data, woocommerce_before_calculate_totals actions, I added the cart meta into it for the custom field i just created and set the item price to zero so user can be able to checkout with zero pricing."

Thanks for offering help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): is it possible to
  • Blacklisted phrase (2): share the whole
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Firat Sekerli

79138174

Date: 2024-10-29 16:46:00
Score: 4
Natty:
Report link

use documentId, id does not work in v5

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

79138155

Date: 2024-10-29 16:41:58
Score: 4
Natty: 4.5
Report link

How to import the certificates .pem file into the old macOS ? Keychain Access - import.....

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Arend

79138144

Date: 2024-10-29 16:39:58
Score: 5
Natty: 5
Report link

I think this may answer your question.

https://onexception.dev/news/1365226/nuxt3-app-with-unix-socket-serving

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

79138088

Date: 2024-10-29 16:25:51
Score: 12 🚩
Natty: 6
Report link

Have same issue. Did u find solution?

Reasons:
  • RegEx Blacklisted phrase (3): Did u find solution
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): Have same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andrey

79138055

Date: 2024-10-29 16:16:48
Score: 4
Natty:
Report link

@NickHolt answer have guided me to the right direction I had a problem with the way I had configured my Jpa Auditing... the user_id is of type Integer but I had configured the JpaAuditing info created_by as String in the BaseEntity class

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @NickHolt
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Steve

79138005

Date: 2024-10-29 16:02:43
Score: 4.5
Natty: 4.5
Report link

One new desktop tool for Cosmos DB https://github.com/peppial/LiteCosmosExplorer/wiki/Lite-CosmosDB-Explorer

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

79137890

Date: 2024-10-29 15:31:34
Score: 4
Natty:
Report link

It seems to be there again 🙌

https://github.com/elastic/elasticsearch-php

Thank you for the fast fixing elastic team!

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

79137850

Date: 2024-10-29 15:20:29
Score: 11.5 🚩
Natty: 5
Report link

te ayudo este codigo? o lograste armar otro? estoy en una situacion muy similar.... todas mis muestras fueron tomadas fuera de laboratorio por eso no todas tienen la misma escala a pesar de tener todas la misma referencia...

Gracias, saludos.

Ernesto.

Reasons:
  • Blacklisted phrase (2): Gracias
  • Blacklisted phrase (1): todas
  • Blacklisted phrase (1.5): saludos
  • Blacklisted phrase (2): estoy
  • RegEx Blacklisted phrase (2.5): misma
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ernesto Orrillo

79137735

Date: 2024-10-29 14:53:22
Score: 5.5
Natty: 6.5
Report link

what if you have install tha SDK in unity but when you build the game it still syas that you don't have SDK?

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 if you have in
  • Low reputation (1):
Posted by: Ega Abigail

79137656

Date: 2024-10-29 14:35:14
Score: 8.5 🚩
Natty: 5
Report link

I am also facing the same error. I am following the same video. Did you come up with a solution for this?

Reasons:
  • RegEx Blacklisted phrase (1): I am also facing the same error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same error
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jasleen Kaur

79137605

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

This did not work for me; F was not defined.

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Barry DeCicco

79137583

Date: 2024-10-29 14:17:07
Score: 10.5 🚩
Natty: 4
Report link

Even i am getting the same error, can you pleasse help me in solving this error

<< Error executing action install on resource 'dnf_package[httpd]' >>

below is the command chef-client -zr "recipe[apache-cookbook::r5]"

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can you pleasse help me in
  • RegEx Blacklisted phrase (1): i am getting the same error
  • RegEx Blacklisted phrase (2): Even i am
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i am getting the same error
  • Low reputation (1):
Posted by: Vishwas S S

79137563

Date: 2024-10-29 14:12:04
Score: 7 🚩
Natty: 6
Report link

Did you manage to increase the performance? I also just started working with model based RL and was shocked how slow it was

Reasons:
  • RegEx Blacklisted phrase (3): Did you manage to
  • 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
  • Low reputation (1):
Posted by: SimJon1

79137551

Date: 2024-10-29 14:09:00
Score: 10 🚩
Natty: 5.5
Report link

HI did you figured it out I have same problem

Reasons:
  • Blacklisted phrase (1): I have same problem
  • RegEx Blacklisted phrase (3): did you figured it out
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniel M_D

79137537

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

Can you please share your nginx config

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please share your
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you please share you
  • Low reputation (0.5):
Posted by: Farhan

79137460

Date: 2024-10-29 13:42:51
Score: 4
Natty:
Report link

Please check below link hope it may help you https://www.techrobbers.com/2019/11/how-to-create-list-using-template-in.html

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

79137310

Date: 2024-10-29 13:00:39
Score: 4
Natty:
Report link

To build on what @Gaël J said. Here's a image of what he's talking about.

enter image description here

I would have added to the original answer but stackoverflow has too many edits in the queue. :/

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

79137308

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

Add the [Required] data annotation

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

79137267

Date: 2024-10-29 12:48:34
Score: 6.5 🚩
Natty:
Report link

Im having the same issue, te animations seem fine, but after change windows dor a while, its overlaps and get ugly. Mode="popLayout" doesnt works for me :( Any idea )?

<AnimatePresence mode="popLayout" initial={false}>
        <motion.div
          key={index}
          initial={{ y: cycle === 1 ? 80 : -80, opacity: 0 }}
          animate={{ y: 0, opacity: 1 }}
          exit={{ y: cycle === 1 ? -80 : 80, opacity: 0 }}
          transition={{
            type: "spring",
            stiffness: 150,
            duration: 0.6,
          }}
          style={{ position: "absolute", width: "800px" }}
        >
          <Text variant="h1" color="primary.orange">
            {words[index]}
          </Text>
        </motion.div>
      </AnimatePresence>
Reasons:
  • Blacklisted phrase (1): doesnt work
  • Blacklisted phrase (1): :(
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Juan Toledo

79137262

Date: 2024-10-29 12:46:30
Score: 8 🚩
Natty: 4
Report link

Just checking if you found solution to your query. I am also facing same issue with no luck.

Regards, Vishal

Reasons:
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (1): no luck
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing same issue
  • Low reputation (1):
Posted by: vishal

79137244

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

Google has now history tab. Using that you can get idea. Who, when and what changed enter image description here

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

79137186

Date: 2024-10-29 12:26:25
Score: 4.5
Natty:
Report link

Can you provide more context on the schema? IF you add

schema:
   type: object
   properties:
       yourCustomProteries:
           type: object 
           ...

Should render it for you. With that told, if you share your yml code it will be more helpful.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you provide
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Blitz Crank

79137171

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

Could be this or do we have to add anything else? I've taken dates of quarters as period to don't waste time.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Luis Miguel

79137110

Date: 2024-10-29 12:04:19
Score: 4.5
Natty: 5
Report link

Thank you for sharing this solution! I noticed it’s compatible with Odoo 14 and Odoo 15. Has anyone adapted this code for Odoo 17, or is there an updated version available? Any guidance on making it compatible with Odoo 17 would be greatly appreciated.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): appreciated
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bessem Toumia

79137087

Date: 2024-10-29 11:57:15
Score: 8 🚩
Natty: 5.5
Report link

facing the same problem, could you find the way around this?

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

79137003

Date: 2024-10-29 11:32:07
Score: 4.5
Natty: 5
Report link

I guess LIKE in "SHOW TABLES" refers to https://docs.databricks.com/en/sql/language-manual/functions/like.html. It seems to be a string operator.

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

79136985

Date: 2024-10-29 11:27:05
Score: 4.5
Natty:
Report link

Although @Sergey has mentioned this at the end of his answer, the actual answer that works is this dgolhar's comment on github thanks to him:

https://github.com/eKoopmans/html2pdf.js/issues/83#issuecomment-559780370

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Sergey
  • Low reputation (0.5):
Posted by: Muhammad Waqar Anwar

79136927

Date: 2024-10-29 11:07:57
Score: 8 🚩
Natty:
Report link

@Aaron McGuire I tried adding delays using set timeout in my case but it didn't work either.

private downloadMultipleFiles(boardingPassURLs : string[]): void{
    boardingPassURLs.forEach((url) => {
      setTimeout(() => {
        this.downloadFileService.downloadFileFromURL(url).subscribe((blob) => {
          const a = document.createElement('a');
          const objectUrl = URL.createObjectURL(blob);
          a.href = objectUrl;
          a.download = 'filenameXYZ.pkpass';
          a.click();
          URL.revokeObjectURL(objectUrl);
        });
      },500);
    });
    this.checkinDetailsBoardingpassService.setIsBoardinpassLoaderVisible(false);
  }

downloadFileFromURL(url: string) {
    return this.http.get(url, { responseType: 'blob' });
  }
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.17/angular.min.js"></script>

can you please suggest how you get it resolved? or am I doing something wrong here?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you please suggest how you
  • RegEx Blacklisted phrase (1.5): resolved?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Aaron
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Rachit Saxena

79136924

Date: 2024-10-29 11:06:57
Score: 5
Natty: 5
Report link

Check the guide at https://pulsar.apache.org/docs/next/getting-started-docker-compose/ Might be of help

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

79136800

Date: 2024-10-29 10:38:47
Score: 4.5
Natty: 5
Report link

I also like the way it was done in the project : https://github.com/bbrewington/dbt-bigquery-information-schema/blob/main/dbt_bigquery_info_schema/macros/from_info_schema.sql

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

79136787

Date: 2024-10-29 10:34:46
Score: 5
Natty:
Report link

Have you installed the "C# Dev Kit" from the extensions? It might help.

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

79136759

Date: 2024-10-29 10:25:41
Score: 6.5 🚩
Natty: 5.5
Report link

I'm running Sugar Enterprise v 13.0.3 , exactly same issue, on random users, any idea?

Reasons:
  • Blacklisted phrase (1): any idea?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: RadioLontra

79136683

Date: 2024-10-29 10:07:36
Score: 5
Natty:
Report link

Renaming the header is not an option for us unfortunately. The domain forwarding workaround did also not work for us. Does anyone have another workaround I could try?

I re-posted the issue here: https://vercel.community/t/authorization-header-not-passed-to-serverless-function/1726

Reasons:
  • RegEx Blacklisted phrase (3): Does anyone have
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Maximilian Friedmann

79136682

Date: 2024-10-29 10:07:34
Score: 6.5 🚩
Natty:
Report link

Can you deploy the code to codesandbox?

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

79136652

Date: 2024-10-29 10:00:32
Score: 10.5
Natty: 7.5
Report link

I have the same question with you.Have you solved this problem now?

Reasons:
  • Blacklisted phrase (1): I have the same question
  • RegEx Blacklisted phrase (1.5): solved this problem now?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same question
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Zheng Kim

79136602

Date: 2024-10-29 09:49:27
Score: 9.5 🚩
Natty: 6
Report link

I have met the same problem, have you solved it?

Reasons:
  • Blacklisted phrase (2): have you solved it
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: htt

79136584

Date: 2024-10-29 09:44:23
Score: 7 🚩
Natty: 6.5
Report link

Посмотрите реализацию здесь, я воспользовался данным классом и все работает https://github.com/OxMohsen/validating-data/blob/main/src/Validate.php

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: paungire

79136581

Date: 2024-10-29 09:43:23
Score: 4
Natty: 5
Report link

what the mean of intel_iommu=off , why add this parameter

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what the mean of in
  • Low reputation (1):
Posted by: user27943739

79136544

Date: 2024-10-29 09:35:19
Score: 5
Natty:
Report link

The actual correct answer is to add a @Contract annotation to the method checking for null.

See: https://blog.jetbrains.com/idea/2013/10/better-control-flow-analysis-with-contract-annotations-and-intellij-idea-13/

Credits: How can I make IntelliJ IDEA understand my null-checking method?

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Christian Kern

79136533

Date: 2024-10-29 09:34:19
Score: 9.5
Natty: 7.5
Report link

Hi may I ask what if I only want to load the index.html but I having a problem is that the router I use in web enviroment the app can not reach that. Are there any solution about this situation?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): may I ask
  • RegEx Blacklisted phrase (2): any solution about this situation?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jing liu

79136495

Date: 2024-10-29 09:20:13
Score: 7 🚩
Natty: 5
Report link

Hi im trying to do this in my html and js app to make offline routing available any tips on where to start please help

Reasons:
  • Blacklisted phrase (1): any tips
  • RegEx Blacklisted phrase (3): please help
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: waseem

79136486

Date: 2024-10-29 09:16:11
Score: 11.5
Natty: 7.5
Report link

i am looking for the similar solution, could you please share how you have resolved it?

Reasons:
  • Blacklisted phrase (2): i am looking for
  • RegEx Blacklisted phrase (2.5): could you please share how you
  • RegEx Blacklisted phrase (1.5): resolved it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TA01

79136455

Date: 2024-10-29 09:09:07
Score: 7.5 🚩
Natty: 4.5
Report link

did you find a solution? i got a similar problem

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

79136453

Date: 2024-10-29 09:09:07
Score: 4.5
Natty:
Report link

Please try Regular Expression Threat Protection for API Gateway

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

79136393

Date: 2024-10-29 08:48:01
Score: 4
Natty: 5
Report link

Thanks for your idea Bob, it helps me a lots. I've solved it successfully ^^

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Trần Anh

79136316

Date: 2024-10-29 08:20:53
Score: 4
Natty: 4
Report link

in iOS Xcode swift , how to redirect users after they completed google sign_in . I used oauth. I want to redirect the users to my app's tabbar page. give me solutions for what I need to update in app delegate to handle the url , and what I need to write in @inbound action google sign in button . I updated the info.plist .

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • User mentioned (1): @inbound
  • Low reputation (1):
Posted by: kumaran

79136296

Date: 2024-10-29 08:13:50
Score: 4
Natty:
Report link

I am getting what i am looking for by : mapper.readTree(json).path("paths").path( "/v1/test/anySales").path("post").path("requestBody").path("content")

any better approach use path expression

Reasons:
  • Blacklisted phrase (2): i am looking for
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mak

79136257

Date: 2024-10-29 08:00:46
Score: 4
Natty:
Report link

In the past it was trivial to edit formula - you didn't even need to "Show Formulas" (I have been building spreadsheets over four decades, since well before Microsoft introduced Office (Word, Excel, etc.).

- Background (not necessary to read this, but some may find it helpful to understand what I am doing...) I am pulling data from an unstructured data souce with variable number of items per record but I need to process the data in fixed arrays. Anyway, I have parsed each record into a tab "1" "2" "3" and so on.

The sheet I am creating is full of matrix arrays of data and the data is fetched from arrays of data in the worksheet tabs '1' '2' '3' etc. - so there is a massive duplication of arrays of formulae.

I am analyising the data from each record and cross adding for each record.

In each repetition of these arrays I am refrencing the same cell coordinates (such as B3, B4, B5 ... C3, C4, C5 ... etc.

However, they are fetched from different tabs and so after I copy an array, I need to search and replace the worksheet tab names.

So, for example, I need to do search and replace for a block (9 x 16) - 144 elements):

=IF('1'!B$3="","n/a",'1'!B$3)   ...  =IF('1'!J$3="","n/a",'1'!J$3)
           ...                                   ...
=IF('1'!B$18="","n/a",'1'!B$18) ...  =IF('1'!J$18="","n/a",'1'!J$18)

There are sixteen such blocks (actually 32, for weighting)

If I copy this array and paste 15 times (making 16 identical arrays, each of 144 cells = 2,304 cells.

So, for the second block, I want to do a global search and replace of the part of the forulae that calls up sub-worksheet 2, 3, 4, 5 ... 16 for each of the 16 blocks.

So, the string I am searching for is '1' - to be replaced by '2' for the second block - by '3' for the third block, and so on.

I have done this kind of mass replacement of elements within a formula - but this does not seem to be possible anymore - not at least any method I have tried so far.

In the past it was possible to do this without clicking on [Show Formulas] - but I have tried to do it without showing formulas and when showing formulas - but it makes no difference - I always get the same response:

This spreadsheet is not protected in any way.

Can anyone suggest a soliution to replace '1' with (say) '9' in the above arrays of formulae?
🤔
~~

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): Can anyone suggest
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Enquire

79136256

Date: 2024-10-29 08:00:44
Score: 7 🚩
Natty: 6.5
Report link

@Jeremy - From where this "useGLTF" is imported. I am also stuck in the same scenario.

Reasons:
  • RegEx Blacklisted phrase (1.5): I am also stuck
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Jeremy
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Jai

79136235

Date: 2024-10-29 07:50:41
Score: 5.5
Natty:
Report link

Why are you setting value of "pref.biometric_enable" in onNavigationItemSelected? Aren't you already doing it in setOnToggledListener?

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

79136183

Date: 2024-10-29 07:31:34
Score: 7 🚩
Natty: 4
Report link

Did you find a solution? In my case the "{ASSEMBLY NAME}.styles.css" is generated, but it is an html file instead of a css file.

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

79136150

Date: 2024-10-29 07:17:30
Score: 4
Natty:
Report link

"@opentelemetry/exporter-prometheus": "^0.54.0" seems to solve the issue.

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

79136128

Date: 2024-10-29 07:08:27
Score: 4
Natty:
Report link

GUI like redis Insight also show it.

enter image description here

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

79136106

Date: 2024-10-29 07:01:25
Score: 5
Natty: 4.5
Report link

Thanks for the genious reverse engineering and solution @Thomas Hilbert. Also thanks @Mo enen for the correct event.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Thomas
  • Single line (0.5):
  • Low reputation (1):
Posted by: kostas petsis

79136042

Date: 2024-10-29 06:34:16
Score: 8 🚩
Natty: 5
Report link

hi sir I have the same problem with dompdf version 3.0.0 but I cant find this dompdf/include/text_renderer.cls.php file can any help me

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I have the same problem
  • Blacklisted phrase (1): any help
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (1):
Posted by: abdulrahman

79136041

Date: 2024-10-29 06:33:15
Score: 4.5
Natty:
Report link

Blockchain Customer Care: Where Crypto Knowledge Meets Expert Guidance

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

79136037

Date: 2024-10-29 06:32:15
Score: 4.5
Natty: 4.5
Report link

https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/inference#python_2

See sample code here. Just need mimetype and URI.

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

79135967

Date: 2024-10-29 06:00:06
Score: 7 🚩
Natty: 6
Report link

@derHugo How to reverse trail redener when collion with wall ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @derHugo
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: NaMy

79135935

Date: 2024-10-29 05:43:02
Score: 4.5
Natty: 4
Report link

The system won't let me comment because I'm a new user. So submitting an answer to comment about the post.

  1. This helped me a lot.
  2. I looked for information about using right-click, Text Document to make a .txt file in File Explorer. The problem was the default setup would disappear sometimes.
  3. Your post gives me a more reliable solution. Generic is ok.
Reasons:
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (1): helped me a lot
  • RegEx Blacklisted phrase (1): won't let me comment
  • No code block (0.5):
  • Low reputation (1):
Posted by: Arthur Hebert

79135926

Date: 2024-10-29 05:39:01
Score: 4
Natty:
Report link

If I'm understanding correctly, you are using this package:

https://jwt-auth.readthedocs.io/en/stable/quick-start/

Here, you can see the modifications to the User model, I can't see if you did that. Also did you configure auth.php to use the jwt driver for api guard?

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

79135889

Date: 2024-10-29 05:14:53
Score: 8.5 🚩
Natty: 6.5
Report link

www.trust-reality.in Who is the owner of this in Gurgaon? Please tell me

Reasons:
  • RegEx Blacklisted phrase (2.5): Please tell me
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Who is the
  • Low reputation (1):
Posted by: Rohit Chauhan

79135822

Date: 2024-10-29 04:26:43
Score: 4
Natty:
Report link

Just use 100dvh, instead of 100vh

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