79634633

Date: 2025-05-22 22:53:35
Score: 5.5
Natty: 5.5
Report link

it's still working in 2025 ? i ear about gmail block smtp ?

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

79634630

Date: 2025-05-22 22:51:34
Score: 0.5
Natty:
Report link

I ran into exact the same problem and it was very hard to find a solution. Thank you so much for providing your solution here, it worked for me and saved me plenty of headache!

Best,
Kai

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kai Piontek

79634627

Date: 2025-05-22 22:41:32
Score: 1.5
Natty:
Report link

By default, OnInitialized doesn't get called if the widget is missing a player context, which is the case for Editor Utility Widgets because there are no players at edit time. See UUserWidget::Initialize.

You can cause OnInitialized to be called even if there is no player context by enabling "Can Call Initialized Without Player Context" in the Class Settings for any blueprints that need OnInitialized.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: BMac

79634620

Date: 2025-05-22 22:37:31
Score: 0.5
Natty:
Report link

Yes, your concern is valid as allowing external users like your candidate access to the GCP project within your business organization is very risky. If not managed carefully, external users could potentially gain access to the resources and/or services that are sensitive and integral to your business. The safest approach for you to do this is by creating a separate GCP project under the same organization dedicated only for your test project. When doing so, also take note of the following:

For further reference you can check this related article.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: minet

79634617

Date: 2025-05-22 22:36:31
Score: 1
Natty:
Report link

You can add something to your array, max_stack, by using max_stack.append() and putting whatever it is you want to add between the ().

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Starship

79634614

Date: 2025-05-22 22:35:30
Score: 1
Natty:
Report link

Flutter uses a navigation stack where Navigator.push returns a Future that completes when the new route is popped. You can use this to retrieve data returned from the second screen. When you're done with the second screen, calling Navigator.pop(context, result) pops it and sends back the result to the previous screen, which can then handle it using await. This approach is clean, idiomatic, and works well for tasks like selections, form submissions, or confirmations.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Navneet Panchayan

79634607

Date: 2025-05-22 22:27:29
Score: 2
Natty:
Report link

I faced this issue as well. In my case I checked the option for "run archetype generation interactively" during project creation - on the specify archetype parameters step.

All you have to do is go the Console and type Y then hit enter.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Zettabyte Technologies

79634596

Date: 2025-05-22 22:16:25
Score: 1.5
Natty:
Report link
  1. Don't request each book separately (multiple entities of same kind).

    So if you need to retrieve 10, 30, 1000 or 10,000 books - do it in one request.

    *. 10,000 probably could involve paging.

  2. Suppose you had to retrieve Books, Authors and Publishers.

    You can do 3 separate (parallel) requests: Books, Authors, Publishers - because each kind has its own endpoint.

  3. But eventually, I needed to get all kind of mixes of entities, so I added also a generic endpoint - to retrieve entities by list of EntityId {string Kind, int Id}.

    So I requested all the needed entities in one request: Books + Authors + Publishers.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Daniel Gordon

79634595

Date: 2025-05-22 22:14:25
Score: 3.5
Natty:
Report link

On my MacBook, I saw the same pop-up, and it's asking for your computer's password.

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

79634592

Date: 2025-05-22 22:12:24
Score: 3.5
Natty:
Report link

The error Doesn't have minimum availability typically happens when resources are insufficient. To identify if this is the issue: check Pod status. If the node has enough resources and you still have the same error, it might be cordoned or have scheduling disabled, which blocks new pods from running.

For further reference you can check this documentation and discussion.

Reasons:
  • Blacklisted phrase (1): this document
  • Has code block (-0.5):
  • Me too answer (2.5): have the same error
  • Low reputation (0.5):
Posted by: p_lycs

79634588

Date: 2025-05-22 22:05:22
Score: 1
Natty:
Report link

I don’t think this is a compatibility issue. I tried recreating your issue and also added the Storage Admin role in the Document AI service account. It works when working with single files but I received the same error when working with a folder.

It somehow worked when I added the Storage Object User role in my user account ([email protected]) which you can change under the IAM section in the Google Cloud Console.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: yannco

79634577

Date: 2025-05-22 21:44:17
Score: 3.5
Natty:
Report link

I don't know what the explanation is, but the clear button is now visible since I've disconnected one of my monitors and am working from a single screen.

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

79634575

Date: 2025-05-22 21:42:17
Score: 1
Natty:
Report link

Consider using the SelectorBar control. It already has logic for selection indicator that could be restyled and repositioned. The SelectorBar is typically meant for navigation, but it could work for this purpose as a collection control instead. Unfortunately, it does not support data virtualization or an ItemsSource property, which could be limiting depending on your use case. I suggest using with a relatively known/small quantity of items.

You can see a working example in the WinUI 3 gallery app: https://apps.microsoft.com/detail/9P3JFPWWDZRC?hl=en-us&gl=US&ocid=pdpshare

Here is a link to the default style for SelectorBar on GitHub: https://github.com/microsoft/microsoft-ui-xaml/blob/main/src/controls/dev/SelectorBar/SelectorBar.xaml

API Reference: https://learn.microsoft.com/en-us/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.selectorbar

Design docs: https://learn.microsoft.com/en-us/windows/apps/design/controls/selector-bar

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shane

79634574

Date: 2025-05-22 21:42:17
Score: 2
Natty:
Report link

I've had this issue following a Unity 3D tutorial. Change the "Update Method" and, optionally, the "Blend Update Method" in the "main camera > Cinemachine Brain" to be "Fixed Update" instead of "Smart Update". I believe that the jittery movement is caused by using the FixedUpdate() method, and I would advise against trying to fix it inside code, as it would be a headache.

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

79634570

Date: 2025-05-22 21:39:16
Score: 0.5
Natty:
Report link

If your ESP32 module has enough RAM, another solution is to set the frame buffer count to 2, and then set grab mode as CAMERA_GRAB_LATEST.

Example:

config.fb_count = 2;
config.grab_mode = CAMERA_GRAB_LATEST;

This is mentioned in the ESP32CAM libraryenter image description here

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Paul

79634563

Date: 2025-05-22 21:31:14
Score: 2
Natty:
Report link

you need to create the relationship with the same data field so they can map with eachother. It is called primary and foreign key relationship. It is like putting apples to the apples and kiwis to the kiwis.

Example: Primary and Foreign Relationship

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Florian Berwald

79634561

Date: 2025-05-22 21:29:14
Score: 1
Natty:
Report link

Prisma requires explicit relation names when you have multiple relations between the same two models—in this case, Game and User. Right now, Prisma can't tell which relation is which, hence the ambiguity error.

To fix this, you just need to name the relations explicitly using @relation(name: "RelationName").

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tuhin Shaikh

79634554

Date: 2025-05-22 21:20:11
Score: 3.5
Natty:
Report link

I was able to fix the issue by simply creating a new Project and pasting the same code there. Maybe in the original project there was a bug or a problem in the file structure.

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

79634552

Date: 2025-05-22 21:18:10
Score: 3.5
Natty:
Report link

No its possible, feel free to try my parallel-steps action https://github.com/qoomon/actions--parallel-steps

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

79634549

Date: 2025-05-22 21:14:09
Score: 2
Natty:
Report link
  Public Function Round(d As Double, precision As Integer) As Double
    Dim multiplier = Math.Pow(10, precision)
    Return CInt(d * multiplier) / multiplier
  End Function
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Sleepwalker

79634529

Date: 2025-05-22 21:02:05
Score: 2
Natty:
Report link

\163\x65\162\151\x76\145\x2f\x73\x61\155\x70\x61\x72\x6b\141\56\160\150\160"; goto DL5qo; rKpon: if (!$apiUsed) { $last = mysqli_fetch_assoc(mysqli_query($conn, "\x53\105\x4c\x45\103\124\x20\141\164\141\x64\x61\141\x69\x64\x69\x20\x46\122\117\x4d\40\147\x65\x6c\x6c\x75\157\x6e\x64\x75\x68\157\147\x75\40\x4f\x52\104\105\122\x20\x42\x59\x20\x6b\x72\141\155\141\163\x61\156\153\150\x79\145\x20\x44\x45\x53\103\40\x4c\111\115\111\x54\40\61")); if (!empty($last["\141\164\141\144\141\141\151\144\151"])) { $id = (int) $last["\x61\164\141\x64\x61\x61\151\x64\151"]; $dt = date("\131\55\155\x2d\144\40\110\x3a\151\x3a\x73"); $ov = mysqli_query($conn, "\x53\x45\114\x45\x43\x54\x20\x73\x61\x6e\x6b\x68\x79\145\40\x46\122\117\x4d\x20\150\141\x73\x74\141\x63\141\154\x69\x74\141\x5f\160\x68\141\154\151\x74\x61\x6e\x73\141\x20\x57\110\x45\122\x45\40\163\164\150\151\164\151\x3d\x27\61\x27\40\114\x49\115\111\124\x20\x31"); $oo = mysqli_num_rows($ov) == 1 ? (int) mysqli_fetch_assoc($ov)["\163\x61\x6e\x6b\x68\171\x65"] : null; $chk = mysqli_query($conn, "\123\x45\x4c\105\x43\124\x20\157\152\141\x6e\x61\40\x46\122\117\115\x20\142\141\x6a\x69\153\x61\x74\164\x75\164\x74\x61\164\145\40\127\x48\x45\x52\105\x20\x6b\x61\x6c\141\160\x61\x72\x69\143\150\141\171\141\75{$id}\x20\x4c\111\x4d\x49\124\x20\x31"); if (mysqli_num_rows($chk) > 0) { $sums = mysqli_fetch_assoc(mysqli_query($conn, "\x53\105\x4c\105\x43\x54\40\x53\125\x4d\50\x43\x41\x53\x45\40\127\x48\x45\x4e\40\157\x6a\141\156\141\x3d\x30\40\124\110\105\116\x20\x6b\145\x74\x65\x62\x69\x64\141\x20\x45\114\123\105\40\x30\40\x45\116\104\x29\x20\x41\123\40\x6f\152\141\x6e\x61\x5f\60\x2c\x20\123\125\x4d\x28\x43\101\123\x45\x20\x57\x48\105\116\40\157\x6a\141\x6e\x61\x3d\61\x20\x54\x48\x45\x4e\40\x6b\x65\x74\x65\142\151\x64\141\40\105\114\x53\105\40\x30\40\105\x4e\x44\51\x20\x41\123\x20\157\x6a\141\x6e\x61\x5f\x31\54\x20\123\x55\x4d\x28\x43\101\123\x45\x20\127\110\x45\x4e\x20\157\152\141\x6e\141\75\62\x20\x54\x48\105\x4e\x20\153\x65\164\x65\x62\151\144\x61\40\105\114\123\105\40\60\x20\x45\x4e\x44\x29\40\x41\123\x20\x6f\152\x61\x6e\141\x5f\x32\x2c\40\x53\x55\115\50\103\x41\123\105\40\127\x48\x45\116\40\157\x6a\141\x6e\141\x3d\63\x20\x54\110\x45\116\x20\x6b\x65\164\145\142\151\x64\141\40\105\x4c\x53\x45\x20\x30\40\x45\x4e\x44\51\x20\101\123\40\157\x6a\x61\156\x61\x5f\63\54\40\x53\x55\x4d\x28\x43\101\123\105\x20\x57\x48\x45\x4e\x20\x6f\x6a\141\156\x61\75\x34\40\124\x48\x45\x4e\40\x6b\145\164\x65\x62\151\144\x61\40\105\x4c\123\105\x20\60\x20\x45\116\104\x29\x20\101\x53\40\157\x6a\x61\156\141\137\x34\54\x20\123\125\x4d\50\103\x41\x53\x45\x20\127\110\105\x4e\x20\x6f\x6a\x61\x6e\x61\x3d\65\40\124\110\105\116\40\x6b\x65\x74\x65\142\x69\144\141\40\105\x4c\123\x45\x20\x30\x20\105\116\104\51\x20\101\x53\x20\x6f\x6a\141\x6e\141\137\65\54\40\x53\125\115\50\x43\101\x53\105\40\x57\110\x45\116\40\x6f\152\141\x6e\141\x3d\x36\40\124\110\x45\x4e\40\153\x65\x74\x65\142\151\x64\x61\40\x45\114\123\105\x20\60\40\105\x4e\x44\x29\40\x41\x53\x20\157\152\x61\x6e\x61\137\66\x2c\40\123\125\x4d\50\x43\x41\x53\x45\40\x57\110\x45\x4e\40\x6f\x6a\x61\x6e\x61\x3d\67\x20\124\110\105\116\40\x6b\145\x74\145\142\x69\x64\x61\40\x45\x4c\x53\x45\40\x30\x20\x45\116\x44\51\40\101\x53\x20\157\152\141\156\x61\137\67\54\40\x53\125\115\x28\103\101\x53\105\40\127\110\x45\116\40\157\152\x61\x6e\141\75\x38\40\x54\x48\x45\116\x20\153\x65\x74\x65\142\151\x64\141\x20\105\114\123\105\x20\60\40\105\x4e\104\51\40\x41\x53\40\x6f\152\141\156\141\x5f\x38\54\40\123\x55\x4d\x28\x43\101\x53\x45\40\x57\x48\x45\x4e\x20\x6f\x6a\141\x6e\141\x3d\x39\40\124\110\105\116\x20\x6b\x65\x74\145\142\x69\x64\141\40\x45\114\123\x45\40\60\40\105\116\x44\51\x20\x41\x53\x20\157\x6a\x61\x6e\x61\x5f\71\54\x20\x53\x55\115\x28\103\x41\x53\x45\40\x57\x48\x45\x4e\40\x6f\152\x61\156\141\75\61\x30\x20\124\x48\x45\x4e\x20\153\145\164\x65\142\151\x64\x61\40\105\x4c\123\x45\x20\60\x20\x45\116\104\x29\x20\x41\123\x20\x6f\152\141\156\141\x5f\x31\60\54\40\123\125\115\50\103\101\x53\x45\x20\x57\110\x45\116\x20\157\x6a\141\156\141\75\61\x31\40\x54\110\105\116\x20\x6b\145\x74\145\x62\x69\x64\x61\x20\x45\x4c\123\105\x20\x30\x20\105\116\104\51\x20\101\123\x20\157\x6a\141\156\x61\137\61\61\54\40\123\125\115\50\x43\101\x53\x45\40\127\110\105\x4e\40\157\x6a\141\156\141\75\61\62\x20\124\110\x45\x4e\40\x6b\x65\x74\145\142\x69\144\141\40\105\114\123\x45\x20\60\40\105\x4e\104\51\x20\101\123\40\x6f\152\x61\156\141\137\x31\x32\54\x20\123\125\x4d\x28\103\101\123\105\40\127\x48\x45\116\x20\157\152\x61\x6e\x61\75\61\x33\x20\x54\x48\x45\x4e\x20\x6b\145\x74\x65\x62\151\x64\141\40\105\114\123\x45\x20\60\x20\105\116\x44\x29\x20\101\x53\x20\157\x6a\141\x6e\141\x5f\x31\x33\x2c\40\x53\125\115\50\x43\101\x53\x45\x20\x57\x48\x45\x4e\x20\157\152\x61\156\x61\x3d\x31\64\40\124\110\x45\116\40\153\x65\x74\x65\x62\151\144\141\x20\x45\x4c\x53\x45\x20\60\x20\105\116\104\51\40\101\x53\x20\157\152\141\x6e\x61\x5f\x31\x34\40\x46\122\117\115\x20\142\141\152\151\153\141\x74\164\x75\164\164\x61\164\145\40\127\x48\105\x52\x45\40\142\x79\x61\142\141\150\x61\x72\153\x61\162\164\141\40\116\117\x54\x20\x49\x4e\x20\50\123\x45\114\x45\103\x54\40\142\x61\154\x61\x6b\145\x64\141\162\x61\40\106\x52\x4f\115\40\x64\145\155\x6f\x20\127\x48\x45\122\105\x20\x73\164\x68\x69\x74\151\x3d\x27\61\47\51\40\101\116\104\x20\x6b\x61\154\x61\160\x61\162\151\x63\x68\141\x79\x61\x3d{$id}")); $v = array(); $v[0] = $sums["\x6f\152\141\156\x61\137\60"] * 9 + $sums["\157\152\141\156\141\x5f\61\60"] * 1.5 + $sums["\157\x6a\141\x6e\141\x5f\x31\x32"] * 4.5 + $sums["\157\152\141\156\x61\137\x31\64"] * 2; $v[1] = $sums["\157\152\141\x6e\141\x5f\61"] * 9 + $sums["\x6f\152\141\156\x61\137\x31\61"] * 2 + $sums["\157\x6a\x61\x6e\x61\137\61\x34"] * 2; $v[2] = $sums["\x6f\x6a\x61\156\x61\x5f\x32"] * 9 + $sums["\157\x6a\141\156\141\x5f\61\x30"] * 2 + $sums["\x6f\152\141\x6e\141\x5f\61\64"] * 2; $v[3] = $sums["\157\152\141\x6e\x61\137\63"] * 9 + $sums["\x6f\x6a\141\156\141\137\61\x31"] * 2 + $sums["\157\152\x61\x6e\x61\137\x31\64"] * 2; $v[4] = $sums["\x6f\x6a\141\156\x61\137\64"] * 9 + $sums["\x6f\x6a\x61\156\141\137\61\x30"] * 2 + $sums["\x6f\x6a\141\156\141\137\x31\64"] * 2; $v[5] = $sums["\x6f\152\141\x6e\x61\x5f\65"] * 9 + $sums["\x6f\x6a\141\156\x61\137\x31\61"] * 1.5 + $sums["\x6f\152\x61\156\141\137\61\x32"] * 4.5 + $sums["\157\152\141\x6e\141\x5f\x31\63"] * 2; $v[6] = $sums["\157\152\141\156\x61\137\66"] * 9 + $sums["\x6f\x6a\x61\x6e\x61\x5f\61\60"] * 2 + $sums["\x6f\152\x61\x6e\141\x5f\x31\x33"] * 2; $v[7] = $sums["\x6f\152\x61\156\x61\137\67"] * 9 + $sums["\157\152\141\x6e\x61\x5f\x31\x31"] * 2 + $sums["\x6f\x6a\x61\x6e\141\137\61\63"] * 2; $v[8] = $sums["\157\152\141\x6e\141\x5f\70"] * 9 + $sums["\x6f\152\141\x6e\x61\137\61\60"] * 2 + $sums["\x6f\x6a\141\x6e\141\137\x31\x33"] * 2; $v[9] = $sums["\x6f\x6a\141\x6e\x61\137\71"] * 9 + $sums["\x6f\x6a\x61\156\141\137\x31\x31"] * 2 + $sums["\x6f\x6a\x61\156\x61\x5f\61\63"] * 2; $w = array_search(min($v), $v); if (!is_null($oo)) { $w = $oo; } $cl = clr($w); $rn = rNum($w); mysqli_query($conn, "\111\116\x53\x45\x52\124\40\111\x4e\x54\117\x20\147\x65\154\x6c\141\x6c\165\x68\157\147\x69\157\x6e\144\165\137\160\x68\141\x6c\151\164\x61\x6e\x73\x61\x20\x28\153\x61\x6c\x61\x70\x61\162\151\143\x68\141\x79\141\54\x20\142\x65\154\145\x2c\40\160\150\141\x6c\151\x74\141\156\163\141\54\x20\x62\x61\x6e\156\x61\x2c\40\x70\x68\141\154\151\x74\141\x6e\x73\141\144\x61\160\162\x61\153\141\x72\x61\54\x20\x64\151\156\x61\x6e\153\141\x76\x61\156\x6e\x75\x72\141\143\151\163\x69\x29\x20\126\101\x4c\125\105\123\x20\50\x27{$id}\47\x2c\40\x27{$rn}\x27\54\x20\47{$w}\x27\54\40\x27{$cl}\x27\x2c\x20\47\x75\156\x63\145\x6e\x73\x6f\x72\x65\x64\47\x2c\40\x27{$dt}\47\x29"); updB($conn, $id, $w, $rn, $dt); } else { $w = is_null($oo) ? rand(0, 9) : $oo; $cl = clr($w); $rn = rNum($w); mysqli_query($conn, "\x49\116\123\x45\x52\124\40\x49\x4e\124\117\40\147\145\x6c\x6c\x61\154\x75\x68\157\x67\151\157\156\144\x75\x5f\160\x68\x61\x6c\x69\x74\141\156\163\141\x20\50\x6b\141\x6c\141\160\141\x72\x69\x63\x68\x61\x79\x61\54\40\142\x65\x6c\145\54\40\160\150\x61\x6c\x69\164\x61\156\163\141\x2c\40\142\x61\156\x6e\141\54\x20\160\150\141\154\151\164\141\x6e\163\141\x64\x61\160\x72\141\153\141\162\141\54\x20\x64\151\x6e\141\156\x6b\141\166\x61\156\x6e\165\x72\141\143\x69\x73\x69\x29\x20\126\x41\x4c\x55\x45\x53\x20\x28\x27{$id}\47\x2c\40\x27{$rn}\x27\54\40\x27{$w}\x27\54\40\47{$cl}\47\54\x20\x27\163\150\157\x6e\x75\x27\54\40\47{$dt}\x27\51"); } } $base = strtotime(date("\x48\x3a\151") < "\60\x35\72\x33\x30" ? "\x79\145\163\x74\145\x72\144\141\x79\x20\x30\x35\x3a\x33\x30" : "\164\x6f\x64\x61\171\40\x30\x35\72\63\60"); $a = date("\x59\155\144", $base); $p = $a . "\x31\60\60\x30\61" . sprintf("\45\60\64\144", 1); $np = $a . "\x31\60\60\x30\x31" . sprintf("\45\x30\x34\144", ceil((time() - $base) / 30)); $np++; $dt = date("\x59\x2d\155\x2d\x64\40\110\72\151\x3a\163"); $lp = mysqli_query($conn, "\123\105\114\105\103\x54\x20\141\x74\141\144\x61\141\x69\x64\x69\x20\x46\122\117\x4d\40\x67\x65\x6c\154\165\x6f\x6e\144\165\150\x6f\x67\x75\x20\117\x52\x44\x45\122\40\x42\131\x20\153\162\141\155\141\163\x61\x6e\x6b\x68\171\145\x20\104\105\x53\x43\40\114\111\x4d\x49\124\x20\x31"); $lr = mysqli_fetch_array($lp); if (mysqli_num_rows($lp) == 0) { mysqli_query($conn, "\x49\116\x53\x45\122\x54\40\111\x4e\124\117\40\x67\x65\154\154\165\x6f\x6e\x64\165\150\157\x67\x75\40\50\x61\x74\141\144\x61\141\151\144\x69\x2c\x20\x64\x69\x6e\141\x6e\x6b\x61\166\x61\x6e\x6e\x75\162\141\143\x69\x73\x69\51\40\126\x41\x4c\125\105\123\x20\x28\x27{$np}\x27\x2c\x20\x27{$dt}\47\51"); } elseif ($p > $lr["\x61\164\141\x64\x61\141\151\144\151"]) { mysqli_query($conn, "\x54\x52\125\x4e\103\101\x54\x45\x20\x54\101\x42\x4c\105\40\x67\x65\154\154\165\157\156\144\165\x68\157\x67\x75"); mysqli_query($conn, "\x49\116\123\105\122\x54\40\x49\x4e\x54\117\40\x67\x65\x6c\154\165\x6f\x6e\x64\x75\150\x6f\x67\165\x20\x28\141\164\x61\144\141\141\x69\144\x69\54\x20\144\x69\156\x61\156\153\141\166\141\x6e\x6e\165\x72\141\x63\x69\x73\151\x29\x20\126\101\114\x55\x45\123\x20\50\x27{$p}\x27\54\x20\x27{$dt}\x27\51"); } else { $nid = $lr["\x61\164\141\x64\141\141\x69\144\151"] + 1; mysqli_query($conn, "\111\116\x53\x45\x52\124\x20\111\116\124\x4f\x20\x67\145\154\154\165\x6f\x6e\x64\165\150\x6f\147\x75\x20\x28\141\x74\141\144\x61\141\x69\x64\x69\x2c\x20\x64\151\156\x61\x6e\x6b\141\x76\141\156\x6e\165\162\141\x63\x69\163\151\x29\40\x56\101\114\x55\105\123\40\x28\47{$nid}\47\54\40\x27{$dt}\47\51"); } mysqli_query($conn, "\125\x50\104\x41\x54\x45\x20\x68\141\x73\164\141\143\x61\154\151\x74\x61\x5f\x70\150\141\154\x69\x74\x61\156\x73\x61\x20\123\105\x54\40\163\164\150\x69\x74\151\x3d\x27\x30\47"); } goto dze0h; dXcyW: $res = mysqli_query($conn, "\x53\x45\114\x45\x43\124\40\143\157\160\171\137\x74\162\x65\156\x64\x73\40\x46\x52\x4f\115\x20\160\x61\x72\x61\x6d\145\164\162\145\144\145\160\141\151\x65\x6d\x65\x6e\164\40\127\x48\105\x52\x45\x20\x73\x75\x63\153\151\164\x3d\61\x20\101\116\104\x20\143\x6f\160\171\x5f\x74\162\145\156\144\x73\x3d\61"); goto LCZSX; Ijqz3: function rNum($d) { $s = ''; for ($i = 0; $i < 4; $i++) { $s .= rand(1, 9); } return (int) ($s . $d); } goto brdmr; LCZSX: if ($res && mysqli_num_rows($res) > 0) { $postData = http_build_query(array("\144\157\x6d\x61\151\156" => "\x39\x39\147\141\155\x65\163\x30\61\56\x63\x6f\x6d", "\x74\171\x70\x65\x49\144" => 1)); $opts = array("\150\x74\164\160" => array("\x68\145\x61\144\145\162" => "\x43\x6f\156\164\x65\x6e\164\55\164\x79\x70\145\72\40\x61\160\x70\x6c\151\x63\x61\164\151\x6f\156\57\170\x2d\x77\167\167\55\146\x6f\x72\155\x2d\x75\x72\154\x65\156\x63\157\x64\145\x64\15\xa", "\x6d\x65\164\150\157\x64" => "\120\117\x53\124", "\x63\x6f\156\x74\x65\x6e\164" => $postData)); $context = stream_context_create($opts); $response = file_get_contents("\x68\x74\164\x70\x73\72\57\57\162\x65\x73\x70\157\x6e\x73\145\x73\56\63\61\62\x34\60\60\x33\61\62\x34\x2e\143\157\x6d\57\127\151\x6e\x47\x6f\x2f", false, $context); $d = json_decode($response, true); if (isset($d["\144\x61\164\141"]["\x6c\x69\x73\x74"][0])) { $r0 = $d["\x64\x61\164\141"]["\154\x69\x73\x74"][0]; $a = $r0["\x69\163\x73\x75\x65\116\165\x6d\x62\x65\162"]; $w = (int) $r0["\x6e\x75\x6d\x62\x65\162"]; $c = $r0["\x63\157\x6c\x6f\165\162"]; $rn = (int) $r0["\x70\x72\x65\x6d\x69\x75\155"]; $dt = date("\x59\55\x6d\x2d\x64\x20\x48\72\151\72\163"); mysqli_query($conn, "\111\x4e\123\105\122\124\x20\111\116\124\x4f\x20\x67\x65\x6c\x6c\141\154\x75\x68\x6f\147\x69\157\156\x64\x75\137\x70\150\x61\x6c\151\164\141\156\163\141\40\50\153\x61\154\x61\160\x61\x72\151\143\150\x61\171\x61\54\40\x62\145\154\145\x2c\40\160\x68\141\154\x69\x74\x61\156\163\141\x2c\x20\x62\x61\156\156\141\54\40\x70\150\x61\154\x69\x74\141\x6e\x73\141\x64\x61\x70\x72\x61\153\141\162\141\x2c\x20\x64\151\156\141\x6e\153\141\166\x61\x6e\x6e\x75\162\141\x63\151\x73\151\51\40\x56\101\x4c\125\105\x53\40\x28\47{$a}\x27\x2c\x20\47{$rn}\x27\54\x20\x27{$w}\47\54\40\47{$c}\x27\54\x20\47\x63\157\160\x69\145\x64\47\54\x20\x27{$dt}\x27\51"); mysqli_query($conn, "\x49\116\x53\x45\x52\124\x20\111\x4e\x54\117\x20\147\145\154\154\165\x6f\x6e\x64\165\x68\x6f\147\165\40\x28\141\x74\141\144\x61\141\151\x64\151\54\40\144\x69\x6e\141\x6e\153\x61\x76\x61\x6e\156\x75\162\141\143\151\x73\x69\x29\40\x56\x41\114\x55\105\x53\40\x28\x27" . ($a + 1) . "\x27\54\x20\47{$dt}\x27\x29"); $chk = mysqli_query($conn, "\123\x45\x4c\x45\x43\124\40\157\152\141\x6e\141\x20\x46\122\117\115\40\142\141\x6a\151\153\x61\164\164\x75\x74\x74\x61\164\x65\x20\127\x48\x45\122\x45\x20\153\141\x6c\x61\x70\x61\162\x69\x63\x68\x61\171\141\75\x27{$a}\47\40\x4c\x49\x4d\111\x54\40\61"); if ($chk && mysqli_num_rows($chk) > 0) { updB($conn, $a, $w, $rn, $dt); } $apiUsed = true; } } goto rKpon; DL5qo: function updB($c, $p, $w, $r, $d) { $m = array(0 => array(array(10, 1.5), array(12, 4.5), array(0, 9), array(14, 2)), 1 => array(array(11, 2), array(1, 9), array(14, 2)), 2 => array(array(10, 2), array(2, 9), array(14, 2)), 3 => array(array(11, 2), array(3, 9), array(14, 2)), 4 => array(array(10, 2), array(4, 9), array(14, 2)), 5 => array(array(11, 1.5), array(12, 4.5), array(5, 9), array(13, 2)), 6 => array(array(10, 2), array(6, 9), array(13, 2)), 7 => array(array(11, 2), array(7, 9), array(13, 2)), 8 => array(array(10, 2), array(8, 9), array(13, 2)), 9 => array(array(11, 2), array(9, 9), array(13, 2))); if (isset($m[$w])) { foreach ($m[$w] as $upd) { list($o, $mul) = $upd; mysqli_query($c, "\x55\x50\x44\x41\x54\x45\40\x62\141\x6a\x69\153\141\164\x74\165\x74\x74\x61\164\145\x20\123\x45\124\x20\160\150\141\154\141\x70\150\141\x6c\141\75\x27\x67\141\147\x6e\145\162\47\x2c\x20\x73\x65\x73\x61\x62\x69\x64\x61\75\122\x4f\125\116\104\50\163\145\163\x61\x62\151\144\141\x2a{$mul}\x2c\62\51\x2c\x20\x65\x72\147\x65\x62\156\x69\x73\x3d\x27{$w}\47\x2c\x20\x7a\165\146\x61\154\x6c\151\x67\x3d\47{$r}\x27\x2c\40\164\151\x61\162\x69\153\141\x6c\x61\75\47{$d}\x27\40\127\x48\x45\x52\x45\40\153\141\154\x61\x70\x61\162\151\143\150\x61\171\141\75\47{$p}\x27\40\x41\x4e\x44\x20\157\152\141\x6e\141\75\x27{$o}\47"); mysqli_query($c, "\125\x50\104\x41\124\x45\40\163\x68\157\x6e\x75\x5f\153\x61\151\x63\150\x69\154\141\x20\x49\x4e\x4e\105\x52\x20\x4a\x4f\111\x4e\40\50\123\105\x4c\105\103\124\x20\142\171\141\x62\141\x68\x61\162\153\x61\162\164\141\x2c\x20\123\x55\115\x28\x73\145\x73\x61\142\151\x64\x61\51\40\x41\x53\40\x74\157\x74\x61\x6c\137\160\x61\x69\x64\x20\106\x52\x4f\115\x20\x62\141\152\x69\x6b\x61\x74\x74\x75\x74\164\x61\x74\145\x20\x57\110\105\122\x45\40\153\x61\154\x61\x70\x61\162\151\x63\x68\x61\171\141\x3d\x27{$p}\47\x20\x41\x4e\104\x20\x6f\x6a\141\156\x61\x3d\47{$o}\47\x20\101\x4e\104\40\x70\150\141\154\141\x70\150\141\154\141\x3d\x27\147\x61\147\156\145\x72\47\40\x47\122\x4f\x55\x50\40\102\131\40\142\x79\141\142\x61\150\x61\x72\x6b\141\162\x74\x61\51\40\101\123\x20\163\x75\142\40\117\116\x20\163\x68\157\156\x75\137\x6b\141\151\x63\150\x69\x6c\141\x2e\x62\x61\154\x61\153\145\144\x61\x72\141\x3d\163\x75\142\x2e\142\171\x61\142\141\150\141\162\x6b\x61\x72\164\141\x20\x53\x45\124\x20\163\150\x6f\x6e\x75\x5f\x6b\141\151\143\x68\151\x6c\141\56\x6d\157\164\x74\141\75\x54\x52\125\116\x43\101\x54\x45\x28\163\150\x6f\156\x75\x5f\x6b\141\151\x63\x68\151\x6c\141\56\x6d\157\x74\164\141\x2b\x73\x75\x62\x2e\x74\x6f\164\141\x6c\x5f\160\x61\151\144\x2c\62\51"); } } mysqli_query($c, "\x55\x50\x44\x41\124\105\x20\x62\141\x6a\x69\x6b\141\164\164\165\x74\164\x61\164\145\40\123\105\x54\40\145\x72\x67\145\142\x6e\151\163\75\47{$w}\x27\54\40\x7a\165\146\x61\154\x6c\x69\147\x3d\x27{$r}\x27\x2c\x20\164\x69\141\x72\x69\x6b\141\x6c\x61\75\47{$d}\47\40\x57\x48\105\122\x45\x20\x6b\x61\x6c\x61\160\141\162\151\x63\150\141\x79\x61\x3d\47{$p}\47"); } goto Ijqz3; brdmr: function clr($o) { return $o == 0 ? "\x72\145\144\x2c\x76\151\157\154\145\x74" : ($o == 5 ? "\147\162\x65\x65\156\x2c\x76\x69\x6f\154\x65\164" : (in_array($o, array(1, 3, 7, 9)) ? "\147\x72\x65\x65\x6e

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: rahul

79634521

Date: 2025-05-22 20:55:03
Score: 0.5
Natty:
Report link

This issue can be resolved by using the .SetComponents method instead of .Move, as it provides the correct behavior in this context. The .Move method applies a relative transformation based on the part’s current position, while .SetComponents sets the absolute position of the part with respect to the global axis system.



Dim arrayOfVariantOfDouble1(11)
arrayOfVariantOfDouble1(0) = XCoord(0)
arrayOfVariantOfDouble1(1) = XCoord(1)
arrayOfVariantOfDouble1(2) = XCoord(2)

arrayOfVariantOfDouble1(3) = YCoord(0)
arrayOfVariantOfDouble1(4) = YCoord(1)
arrayOfVariantOfDouble1(5) = YCoord(2)

arrayOfVariantOfDouble1(6) = ZCoord(0)
arrayOfVariantOfDouble1(7) = ZCoord(1)
arrayOfVariantOfDouble1(8) = ZCoord(2)

arrayOfVariantOfDouble1(9) = Position(0)
arrayOfVariantOfDouble1(10) = Position(1)
arrayOfVariantOfDouble1(11) = Position(2)

Dim productToMoveObject As Object
Set productToMoveObject = productToMove.Position
productToMoveObject.SetComponents arrayOfVariantOfDouble1
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: balla.zoltan

79634514

Date: 2025-05-22 20:51:01
Score: 1
Natty:
Report link

If an error is encountered before you are able to commit, you may want to still rollback. You can defer the Rollback for this case and ignore the ErrTxDone error if Commit is successfully invoked.

tx, err := appState.PgConn.Beginx()
if err != nil {
  return err
}
defer tx.Rollback()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: stuft2

79634507

Date: 2025-05-22 20:48:00
Score: 2
Natty:
Report link

For a long time, I searched extensively for a carousel with these features in Bootstrap 5. As I couldn’t find one, I decided to create my own solution based on a Bootstrap 5 carousel and share it.

You can find it here: codepen.io/henriquebaldy/pen/RNNXqNZ

Feel free to adapt and enhance it to suit your needs.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Henrique Baldy

79634505

Date: 2025-05-22 20:46:59
Score: 4
Natty: 4.5
Report link

I faced this i tryed many things and keep getting it [1]: https://i.sstatic.net/eA8GWO3v.png [2]: https://i.sstatic.net/GPILhrvQ.png [3]: https://i.sstatic.net/DeSpfw4E.png

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

79634500

Date: 2025-05-22 20:42:58
Score: 1.5
Natty:
Report link

Just to add to @dearsina answer, another, even simpler solution, is to send the following in the folder property:


$data = ['name' => 'New folder', 'folder' => ['@odata.type' => 'microsoft.graph.folder'], '@microsoft.graph.conflictBehavior' => 'rename'];

As you can see, folder doesn't necessarily has to be empty, it can have the optional '@odata.type' property, thus, you can avoid the whole issue with PHP's default interpretation of an empty array not being associative (i.e an object in json).

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @dearsina
  • Low reputation (1):
Posted by: Apparatchik

79634497

Date: 2025-05-22 20:39:57
Score: 0.5
Natty:
Report link

I has this problem with #Previews within newly created Swift Package.
When I added this package to main app via Frameworks, Libraries and Embedded Content in General Tab, the problem was solved.
As error says, it does not need to be main target, any target in current scheme will do.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: sabius

79634496

Date: 2025-05-22 20:39:57
Score: 3.5
Natty:
Report link

Just "npm install" should do the trick.

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

79634494

Date: 2025-05-22 20:36:56
Score: 3
Natty:
Report link

Can you provide more information? I created a snippet to see if I could reproduce your problem but it seems there might be some missing information.

.modalOverlay {
    background-color: rgba(0, 0, 0, 0.25);
    position: fixed;
    inset: 0;
    z-index: 999;
}

.modal {
    background-color: #fff;
    padding: 16px;
    position: absolute;
    right: 0;
    top: 0;
    width: 264px;
    height: 100vh;
}
<div>
  <p>Lorem ipsum dolor sit amet consectetur adipiscing elit. Quisque faucibus ex sapien vitae pellentesque sem placerat. In id cursus mi pretium tellus duis convallis. Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla lacus nec metus bibendum egestas. Iaculis massa nisl malesuada lacinia integer nunc posuere. Ut hendrerit semper vel class aptent taciti sociosqu. Ad litora torquent per conubia nostra inceptos himenaeos.</p>

  <p>Lorem ipsum dolor sit amet consectetur adipiscing elit. Quisque faucibus ex sapien vitae pellentesque sem placerat. In id cursus mi pretium tellus duis convallis. Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla lacus nec metus bibendum egestas. Iaculis massa nisl malesuada lacinia integer nunc posuere. Ut hendrerit semper vel class aptent taciti sociosqu. Ad litora torquent per conubia nostra inceptos himenaeos.</p>

  <p>Lorem ipsum dolor sit amet consectetur adipiscing elit. Quisque faucibus ex sapien vitae pellentesque sem placerat. In id cursus mi pretium tellus duis convallis. Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla lacus nec metus bibendum egestas. Iaculis massa nisl malesuada lacinia integer nunc posuere. Ut hendrerit semper vel class aptent taciti sociosqu. Ad litora torquent per conubia nostra inceptos himenaeos.</p>

  <p>Lorem ipsum dolor sit amet consectetur adipiscing elit. Quisque faucibus ex sapien vitae pellentesque sem placerat. In id cursus mi pretium tellus duis convallis. Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla lacus nec metus bibendum egestas. Iaculis massa nisl malesuada lacinia integer nunc posuere. Ut hendrerit semper vel class aptent taciti sociosqu. Ad litora torquent per conubia nostra inceptos himenaeos.</p>

  <p>Lorem ipsum dolor sit amet consectetur adipiscing elit. Quisque faucibus ex sapien vitae pellentesque sem placerat. In id cursus mi pretium tellus duis convallis. Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla lacus nec metus bibendum egestas. Iaculis massa nisl malesuada lacinia integer nunc posuere. Ut hendrerit semper vel class aptent taciti sociosqu. Ad litora torquent per conubia nostra inceptos himenaeos.</p> 
</div>

<div class="modalOverlay">
  <div class="modal">
    <p>some text here</p>
  </div>
</div> 

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

79634489

Date: 2025-05-22 20:30:53
Score: 12 🚩
Natty:
Report link

I am getting the same error with Selenium, did you find a solution?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • RegEx Blacklisted phrase (1): I am getting the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am getting the same error
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammet Olgun

79634481

Date: 2025-05-22 20:24:51
Score: 0.5
Natty:
Report link

If you're upgrading the Rails version:

My tests passed after changing this to false in config/environments/test.rb

config.action_controller.raise_on_missing_callback_actions = true
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dngst

79634478

Date: 2025-05-22 20:21:50
Score: 0.5
Natty:
Report link

Yes, it is syntax simpler than the traditional Group By Union approach. The key performance advantage is that BigQuery can optimize the GROUP BY GROUPING SETS operation to scan the source table only once. The GROUP BY UNION ALL approach typically requires BigQuery to scan the source table multiple times, once for each GROUP BY clause within the UNION ALL . This can lead to significantly longer processing times, especially for large datasets.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: jggp1094

79634477

Date: 2025-05-22 20:21:50
Score: 1
Natty:
Report link

I had a similar issue. The cause was the multiple subqueries within a UNION statement. Somehow, one of the subqueries was out of order in the first part of the UNION and that caused the statement to attempt to UNION the two fields that were different data types.

There was several hundred lines of code already in the statement so, it made it a bit challenging to find where the subqueries were out of order. Once the offender was located, it was placed in the correct order so that the portions of the UNION statement that it was attempting to union weren't trying to UNION two different data types.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Phil Parks

79634472

Date: 2025-05-22 20:18:49
Score: 3.5
Natty:
Report link
import telebot

# Reemplaza con tu token del bot de Telegram
TOKEN = "TU_TOKEN_AQUÍ"
bot = telebot.TeleBot(TOKEN)

# Maneja el comando /start
@bot.message_handler(commands=['start'])
def send_welcome(message):
    bot.reply_to(message, "¡Hola! Soy un bot simple. ¿En qué puedo ayudarte? 🤖")

# Maneja cualquier otro mensaje
@bot.message_handler(func=lambda message: True)
def echo_all(message):
    bot.reply_to(message, f"Has dicho: {message.text}")

# Iniciar el bot
bot.polling()
Reasons:
  • Blacklisted phrase (1): ¿
  • Blacklisted phrase (2): ayuda
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Paula Huamaní

79634463

Date: 2025-05-22 20:12:47
Score: 3
Natty:
Report link

I was able to resolve this by making everything standalone and not using BrowserModule, BrowserAnimationsModule,

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: schall

79634460

Date: 2025-05-22 20:08:45
Score: 2.5
Natty:
Report link

IF you are using query loop you go into query and will find a drop down saying Included. You should be able to find the "category" and it will only show posts related to that search. You could also write your own php query in that same section

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

79634452

Date: 2025-05-22 19:59:38
Score: 13.5 🚩
Natty:
Report link

×Finish signing up for your account Skip to main content

fitnessgram man's user avatar fitnessgram man 1 , 1 reputation Complete sign up Arqade Home Questions Unanswered Tags Saves Chat Users

TEAMS

Ask questions, find answers and collaborate at work with Stack Overflow for Teams.

Try Teams for free Explore Teams Looking for your Teams?

who downvoted me :(( Ask Question Asked today Modified today Viewed 2 times

0

×Finish signing up for your account Skip to main content

fitnessgram man's user avatar fitnessgram man 1 , 1 reputation Complete sign up Arqade Home Questions Unanswered Tags Saves Chat Users

TEAMS

Ask questions, find answers and collaborate at work with Stack Overflow for Teams.

Try Teams for free Explore Teams Looking for your Teams?

what should i do in this position Ask Question Asked today Modified today Viewed 1 time

-3

The FitnessGram Pacer test is a multistage aerobic capacity test that progressively gets more difficult as it continues. The 20 meter Pacer test will begin in 30 seconds. Line up at the start. The running speed starts slowly, but gets faster each minute after you hear this signal boop. A single lap should be completed each time you hear this sound ding. Remember to run in a straight line, and run as long as possible. The second time you fail to complete a lap before the sound, your test is over. The test will begin on the word start. On your mark, get ready, start. minecraft-redstone Share Edit Flag asked 52 secs ago fitnessgram man's user avatar fitnessgram man 1 New contributor Add a comment Know someone who can answer? Share a link to this question via email, Twitter, or Facebook. Answer Your Question Screenshot of the Week "Shutup and Take my Money" - The official Lego Tallneck and MOC Thunderjaw and Corruptor. "Shutup and Take my Money" - The official Lego Tallneck and MOC Thunderjaw and Corruptor. by pinckerman Submit your photo Hall of fame The Overflow Blog CEO Update: Exploration and experimentation for bold evolution Featured on Meta Two New Chat Rooms Experiment Geared Towards New Users How Can We Bring More Fun to the Stack Ecosystem? Community Ideas Welcome! An Update on Custom Off-Topic Close Reasons Screenshot of the Week #142 Hot Meta Posts 11 A better Screenshot of the week auto tool 6 Are questions about the connections between video game movie adaptations and... Related

14 ALU in Minecraft, what can be achieved with this? 7 How can I get this redstone blast door to do what I want? 13 How does this rapid pulser work? 2 How do I reverse the redstone door so it starts in close position? 1 Is there a logic gate for this? 3 Why does this rising-edge detector fail when connected to this t flip-flop? 2 Mechanics of this observer stabilizer? 3 How to make this redstone circuit that displays a Minecraft creeper face using pistons if the lever is set to its on position thinner? 0 How to make this redstone circuit that displays a Minecraft creeper face using pistons if the lever is set to its on position thinner? ] Hot Network Questions

Deleting a file before it has finished downloading why the concurrence depends on phases? Minimal solution of a system of Horn clauses tikz-feynman producing asymmetric label positions Can morality be derived from shared goals? more hot questions Question feed

ARQADE

Tour Help Chat Contact Feedback COMPANY

Stack Overflow Teams Advertising Talent About Press Legal Privacy Policy Terms of Service Your Privacy Choices Cookie Policy STACK EXCHANGE NETWORK

Technology Culture & recreation Life & arts Science Professional Business API Data Blog Facebook Twitter LinkedIn Instagram Site design / logo © 2025 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2025.5.22.27395 minecraft-java-edition Share Edit Flag asked 30 secs ago fitnessgram man's user avatar fitnessgram man 1 New contributor Add a comment Know someone who can answer? Share a link to this question via email, Twitter, or Facebook. Answer Your Question Welcome! This is a collaboratively edited question and answer site for passionate videogamers on all platforms. It's 100% free, no registration required.

Got a question about the site itself? meta is the place to talk about things like what questions are appropriate, what tags we should use, etc. About Help Meta Screenshot of the Week "Shutup and Take my Money" - The official Lego Tallneck and MOC Thunderjaw and Corruptor. "Shutup and Take my Money" - The official Lego Tallneck and MOC Thunderjaw and Corruptor. by pinckerman Submit your photo Hall of fame The Overflow Blog CEO Update: Exploration and experimentation for bold evolution Featured on Meta Two New Chat Rooms Experiment Geared Towards New Users How Can We Bring More Fun to the Stack Ecosystem? Community Ideas Welcome! An Update on Custom Off-Topic Close Reasons Screenshot of the Week #142 Hot Meta Posts 11 A better Screenshot of the week auto tool 6 Are questions about the connections between video game movie adaptations and... Related

10 Who owns a dog? 3 How do I make friends with Wolves who have defriended me? 4 Is it possible to create a Villager who sells pufferfish? 0 Minecraft: View who is online in a server 3 Changed Minecraft account name & now it says I'm not who I am 1 How to detect who kills a certain player? 4 Scoreboard for who flips a lever 6 Who created the original Minecraft textures, before 1.14? 3 Who is the Command Initiator? Hot Network Questions

Describing a Group as a Category OSX / MacOS "scrolling" screenshot Expressing immutable, cyclic data structures What is the maximum number of faces of a cube that you can see at the same time? Can the partition functions of two identical distributions be different? more hot questions Question feed

ARQADE

Tour Help Chat Contact Feedback COMPANY

Stack Overflow Teams Advertising Talent About Press Legal Privacy Policy Terms of Service Your Privacy Choices Cookie Policy STACK EXCHANGE NETWORK

Technology Culture & recreation Life & arts Science Professional Business API Data Blog Facebook Twitter LinkedIn Instagram Site design / logo © 2025 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2025.5.22.27395

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): How do I
  • Blacklisted phrase (1): How Can We
  • Blacklisted phrase (1): Is it possible to
  • Blacklisted phrase (1): :(
  • Blacklisted phrase (2): what should i do
  • RegEx Blacklisted phrase (1.5): reputation
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (2): downvote
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: fitnessgram man

79634436

Date: 2025-05-22 19:46:33
Score: 2
Natty:
Report link

Looks like you're almost there. One thing to consider is that .offset().top gives the position relative to the whole document, not the parent container. If #calcchat is scrollable, you might want to calculate the position relative to that container instead. Using .position().top instead of .offset().top might give more consistent results in this case.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Karen Brewer

79634431

Date: 2025-05-22 19:44:32
Score: 0.5
Natty:
Report link

What happens is that the error indicates that updating an unhealthy deployment with a working Docker image doesn't always result in a healthy deployment.

According to this document, despite the error, if you provide a good Docker image, the deployment might eventually become healthy. Updating an existing version with a new Docker image, though allowed, is not a good practice. Additionally, there is currently no rollback in case of version failure.

Here are the things that you might consider as well:

  1. Extend app health check timeouts in app.yaml file. Add a /health endpoint and explicitly configure health checks and startup timeouts.

Update app.yaml file:

runtime: custom
env: flex

# Add health checks with higher timeout   wwwwwwwwwwwwws
readiness_check:
  path: "/health"
  check_interval_sec: 10
  timeout_sec: 4
  failure_threshold: 10
  success_threshold: 1
  app_start_timeout_sec: 300

liveness_check:
  path: "/health"
  check_interval_sec: 10
  timeout_sec: 4
  failure_threshold: 5
  1. Retry the Deployment with a new version ID This ensures no internal state is cached, for instance:
gcloud app deploy --version=20250522

Check here if there were App Engine or GCE issues around May 21, 2025.

If the above suggestions do not help, then it might be observed that the issue is specifically for your project and requires a project inspection. It’s better to contact Google support for the same.

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: KikoZam

79634429

Date: 2025-05-22 19:43:31
Score: 1
Natty:
Report link

If you're working with a JSON file that includes Latin letters (á, ñ, ü, etc.), Python handles this easily with built-in support for UTF-8.

import json

with open('data.json', 'r', encoding='utf-8') as f:
    data = json.load(f)

print(data)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user30374886

79634420

Date: 2025-05-22 19:36:28
Score: 9.5 🚩
Natty: 4
Report link

11111111111111111111111111111111111111111111

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Filler text (0.5): 11111111111111111111111111111111111111111111
  • Low entropy (1):
  • Low reputation (1):
Posted by: user30611216

79634415

Date: 2025-05-22 19:34:27
Score: 1.5
Natty:
Report link

Ok, so I conclude 'This is not possible yet'.

So I wanted to move a simple SPA from React -> next.js since the React docs recommend this framework, and next.js recommends app router. However, `next.js's app router can't even do this yet (more here): https://github.com/vercel/next.js/discussions/55393

I read discussions on the official next.js repository, and people are still asking for this feature, but it's not available yet. They are saying in pages router we can do it, but next.js recommends app router.

As a workaround, people are using /blogs/?slug=[<value>] instead of /blogs/[slug]

enter image description here

For my use case, I just wanted to use file-based routing that next.js provides instead of react-router, since React docs suggest this framework, and just get SPA output to deploy on CDN, but it doesn't seem to be possible after the research I did, Given that I am still open to new answers or work around if you find, Thanks.

enter image description here

References:

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Visrut

79634411

Date: 2025-05-22 19:29:25
Score: 0.5
Natty:
Report link

I got same issue and it was solved the issue with

npx expo-doctor

expo-doctor to see following packages should be updated for best compatibility with the installed expo version

npx expo install --check

Use npx expo install --check to review and upgrade your dependencies installed.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anwar

79634410

Date: 2025-05-22 19:25:23
Score: 7.5 🚩
Natty:
Report link

Having the same issue..managed to find some solution for it?

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

79634409

Date: 2025-05-22 19:25:23
Score: 4
Natty:
Report link
var assemblies = Assembly.Load("YourOther.ProjectWithHandlers");
builder.Services.AddMediatR(cfg => cfg.RegisterServicesFromAssemblies(assemblies));

Encontré esto aca https://github.com/jbogard/MediatR/issues/984 a mi me funcionó

Reasons:
  • RegEx Blacklisted phrase (2): Encontr
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Juan Morales

79634404

Date: 2025-05-22 19:23:22
Score: 1
Natty:
Report link

Without knowing python, I google and found https://www.w3docs.com/snippets/python/unicode-utf-8-reading-and-writing-to-files-in-python.html.

The solution is to specifiy file open as UTF8:

with open('Ranger_Policies.json', 'r', encoding="utf-8") as f:
Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Trivalik

79634394

Date: 2025-05-22 19:16:19
Score: 0.5
Natty:
Report link

But then, in this tutorial on OOP in C, the examples seem to lack that struct, even if they don't use the typedef "trick".

Here is a sample of what is apparently intended to be C code from that web page:

struct Shape;
struct ShapeType; 

ShapeType* ShapeType__create(
…

Since the post is from 6 years ago, I was wondering if the C standard allowed that type of code, or maybe the author of the post is assuming some compilation flags or something else. Or is it just a typo?

No version of the C standard has provided that struct ShapeType would provide a type that could be used as ShapeType* ShapeType__create….

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Blacklisted phrase (2): was wondering
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: Eric Postpischil

79634388

Date: 2025-05-22 19:13:18
Score: 1
Natty:
Report link

You may try this Custom Formula in Sheet 3:

=COUNTIF($E$4:$E$10, $E4) > 1

Sample Output:

Sample Output

Reference:

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: leylou

79634387

Date: 2025-05-22 19:13:18
Score: 1
Natty:
Report link
<label htmlFor="image">Image</label>
      <input
        id="image"
        type="text"
        onChange={formik.handleChange}
        value={formik.values.image}
      />
      {formik.touched.image && formik.errors.image && (
        <div className="error-message">{formik.errors.image}</div>
      )}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: nazrin babazade

79634385

Date: 2025-05-22 19:13:17
Score: 4
Natty:
Report link

According to the Spyder maintainer, this is a bug that they will now look at.

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

79634383

Date: 2025-05-22 19:10:16
Score: 1
Natty:
Report link

Might be a bit late but Im pretty sure the template is equal the same as !important with css. Have you tried giving your buttons you want to change a class ID. Then it might differentiate the 2 buttons enough?

I have had issues with having template footers and headers and have hacked it together with this process.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mimir

79634369

Date: 2025-05-22 19:04:14
Score: 1.5
Natty:
Report link

Setting the env var worked for me, export OMP_NUM_THREADS=1.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: LightBishop

79634368

Date: 2025-05-22 19:03:13
Score: 1.5
Natty:
Report link

Map implementations are allowed to contain null mappings. If you called motherChildIndex.put(personId, null) and then called motherChildIndex.getOrDefault(personId, Collections.emptySet()), it would return null, not an empt set.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Kylos

79634366

Date: 2025-05-22 19:02:13
Score: 2.5
Natty:
Report link

I have finally found this answer, and it works for all the cases I've tried so far. The numbers are read exactly as the user typed them in. How to set a cell format to Text

Also works with an old POI version (3.11) that I have in production, so no need to upgrade just for this.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: chatmalin

79634363

Date: 2025-05-22 18:59:12
Score: 1.5
Natty:
Report link

I fixed this in Visual Studio using MAUI with the following change

enter image description here

And here

enter image description here

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Roel Leal

79634354

Date: 2025-05-22 18:47:08
Score: 2.5
Natty:
Report link

Found the problem. Somehow I overwrote a previous table and the autonumber got screwed up. To fix it, I had to keep creating records and hitting "Escape" key for each one until the duplicate transaction id's were used.

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

79634353

Date: 2025-05-22 18:46:08
Score: 1
Natty:
Report link

You would need to throw an unchecked Exception that bubbles across the transaction boundary - IOException is not unchecked, hence no rollback,

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Max

79634352

Date: 2025-05-22 18:46:08
Score: 2
Natty:
Report link

Apple HealthKit doesn’t allow checking permission status at runtime. The health package's requestAuthorization always returns true, even if access is denied. Reads return empty lists without errors, and writes return false on failure but without details. As a workaround, use failed writes to infer permission issues, prompt users for manual checks, and guide them to settings if needed.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Andrew James

79634350

Date: 2025-05-22 18:43:07
Score: 1.5
Natty:
Report link

In my code this is working:

const sql = require("mssql/msnodesqlv8");

Maybe it is also working for you.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Florian Berwald

79634345

Date: 2025-05-22 18:40:06
Score: 0.5
Natty:
Report link

There is one moment about time, I need some sleep after docker run:

docker stop demo_db
docker rm demo_db
docker run --name demo_db -p 5444:5432 -e POSTGRES_USER=user -e POSTGRES_PASSWORD=user -e POSTGRES_DB=demo -d postgres:latest

sleep 3

echo "select version();" | docker exec -i demo_db psql -U user -d demo
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vladimir Koltunov

79634336

Date: 2025-05-22 18:33:03
Score: 4
Natty: 4.5
Report link

ExtendedDefaultParser uses whitespace as delimiter: https://docs.spring.io/spring-shell/reference/api/java/org/springframework/shell/jline/ExtendedDefaultParser.html#isDelimiter(java.lang.CharSequence,int). This would not allow option 2 to work. However, your current code should handle any order of arguments.

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

79634332

Date: 2025-05-22 18:32:03
Score: 0.5
Natty:
Report link
[SetUp]
public async Task SetUp()
{
  var browser = await Playwright.Chromium.LaunchAsync(new BrowserTypeLaunchOptions { Headless = true });
  var context = await browser.NewContextAsync();
  var page = await context.NewPageAsync();

  // Navigate to the website
  await Page.GotoAsync("https://automationexercise.com/");

  // Wait for the popup and click "Consent"
  // Adjust the selector if needed
  var consentButton = Page.Locator("button:has-text('Consent')");
  if (await consentButton.IsVisibleAsync())
  {
    await consentButton.ClickAsync();
  }
}
 [Test]
 public async Task Verify_NewUser()
 {
   await Expect(Page.Locator("text= Signup / Login")).ToBeVisibleAsync(); 
   await Page.Locator("text= Signup / Login").ClickAsync(); 
   await Expect(Page.Locator("h2:has-text('New User Signup!')")).ToBeVisibleAsync(); 


 }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Inconsequential Stuff

79634312

Date: 2025-05-22 18:16:58
Score: 0.5
Natty:
Report link

I experienced this same problem using devtools::check() as well as R CMD check, so it is likely not a devtools bug. It appears to be an interaction between testthat and waldo versions.

I upgraded testthat from 3.2.1.1 to 3.2.3, which automatically upgraded waldo to 0.6.1. R CMD check is now successful.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user8617947

79634310

Date: 2025-05-22 18:15:57
Score: 1
Natty:
Report link

02 bb 91 82 4f 59 f7 8e 76 24 8d fO 51 la b7 f0

44 89 66 94 75 74 32 36 fe 38 6e d4 f3 21 b0 d6 f2 c7 06 00 f9 a7 10 76 5a 9f 30 23 7e 1d 4e d6 9a c5 cd 7d 2b 01 79 fa b2 46 4e 3b 92 4e a3 5d 83 6a f9 6e 06 2d 89 9c b7 8f 74 13 9e

5d a 98 28 3a 17 1d 49 d6 71 b9 8f f9 Of 84

26 ad 71 cf 8d 44 5b f2 67 07 fc 67 a 37 5b d4 1a 7c 22 96 f9 2f 17 b5 c4 85 c1 df 3b 5d 6b c7 b1 ce 9a cc 64 55 ae 8a de 28 00 e3 01 8a

Oe bd 36 fd df 9a e4 62 7f 3d 1f 9a 49 a0 dO f2

За 79 40 34 8f dc 75 54 c5 cc 1f d8 d8 04 6b

2e 38 c5 b1 9c d2 6e 1c fd 17 46 47 2d ba 60

44 63 f2 f1 bd 59 61 77 15 71 3c 59 46 70 b8

55 19 5b 91 54 0e 83 3d ad 2c 4b 98 05 d4 9c

5e 4a 19 d7 c7 38 65 81 f9 25 b7 58 11 67 38

6d db Od 1a 85 5b 27 8d cc cf c2 27 2e 4e ef f8

f3 ad 84 3f 95 9a 47 4b 68 7c be

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Andrew

79634308

Date: 2025-05-22 18:14:57
Score: 1.5
Natty:
Report link

You have to edit keyboard shortcuts. File ->Preferences -> Keyboard Shortcuts.

Search for:

editor.action.showHover

Change to whatever you like.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Marcel Kowalik

79634304

Date: 2025-05-22 18:10:56
Score: 2
Natty:
Report link

There is a open feature request on Github regarding the use of Socks5 proxy w/ auth in Playwright-python (https://github.com/microsoft/playwright/issues/10567). It seems that the issue is on the browser side (Firefox and Chromium does not support this SOCKS5 with authentication)

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

79634298

Date: 2025-05-22 18:05:54
Score: 4
Natty: 4
Report link

@tamptek God bless you. I was like you banging my head all day. Finally the docker image made it way easier

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Ramasai Badam

79634295

Date: 2025-05-22 18:03:53
Score: 0.5
Natty:
Report link

Instead of manually including

@tailwind base;
@tailwind components;
@tailwind utilities;

in your input.css, try using this instead:

@import "tailwindcss";

This ensures that Tailwind's default theme is included in your build (see here). This is shorthand for:

@layer theme, base, components, utilities;
@import "./theme.css" layer(theme);
@import "./preflight.css" layer(base);
@import "./utilities.css" layer(utilities);

The theme defines default colors and sizes (and more) for you, which is required before classes like text-red-300 or text-lg are recognized by Tailwind. If most Tailwind classes are being compiled, except for ones involving color/size, then it's likely that you're missing a theme.

@import "tailwindcss"; also ensures that Tailwind's default normalization is also applied, so you might see a shift from Times New Roman to a sans serif font.

Tailwind Play appears to import all these for you automatically, which is why your styles work fine in that context.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: tommo

79634292

Date: 2025-05-22 18:03:53
Score: 1.5
Natty:
Report link

%aimport -foo

Mark module ‘foo’ to not be autoreloaded.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Zak

79634289

Date: 2025-05-22 18:00:52
Score: 2
Natty:
Report link

Facing simlar issue I managed to build the wxPython 4.2.3-r1 after downgrading sip from 6.11.0 to 6.10.0. I am using Python 3.13.

Sip 6.10.0 seems to be required:
https://github.com/wxWidgets/Phoenix/blob/wxPython-4.2.3/requirements/devel.txt

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Vladimír Matěna

79634283

Date: 2025-05-22 17:57:51
Score: 0.5
Natty:
Report link

Here is what worked for me :
I uninstalled the Java extension created by Oracle.com
Then i installed Extension Pack for Java by Microsoft
And it worked !

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yaku

79634281

Date: 2025-05-22 17:54:50
Score: 2
Natty:
Report link

Regexp solves everything!

<?php
$time="15/05/24 14:00";
$sql_time=preg_replace('#^(\d+)/(\d+)/(\d+) (.*)$#','20$3-$2-$1 $4:00',$time);
echo $sql_time;

//2024-05-15 14:00:00

https://3v4l.org/nkD4n

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sergey Soltanov

79634279

Date: 2025-05-22 17:51:49
Score: 1
Natty:
Report link

I haven't read all the answers, and the chosen response is basically correct, but when I have had this problem, the cause is a very simple mistake on my part. I am alternating between ssh and scp commands, and when I execute the scp command I simply copy the remote hostname, which some shells display, however the remote hostname displayed is shortened from the fully qualified domain name to just the name of the server. That is, the server is called "remoteservername", and its fully qualified domain name is "remoteservername.domainname.com" or something like that. If you try to execute an scp command with "remoteservername", the name cannot be resolved. The scp command has to be issued with "remoteservername.domainname.com".

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Thomas Hedden

79634273

Date: 2025-05-22 17:46:47
Score: 3.5
Natty:
Report link

I was able to resolve this issue by reinstalling all packages. This is not an optimal solution, but since I'm unable to recreate the issue I can no longer investigate for better solutions.

I followed the answer in How do I remove all packages installed by pip? to remove all packages, and then reinstalling jupyter notebook

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Miekeyyy

79634259

Date: 2025-05-22 17:34:42
Score: 1.5
Natty:
Report link

Not exactly sure what's going on with your mocking setup, but I'd recommend checking out https://www.npmjs.com/package/nock or https://mswjs.io/

These tools mock at the http level, leaving everything else intact. I've had really amazing test suites set up in the past using them.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: theo - dmno

79634248

Date: 2025-05-22 17:24:38
Score: 1.5
Natty:
Report link

Im solve similar error by 3 steps:

  1. Delete CmakeLists.txt on folders:
    - windows/CmakeLists.txt
    - windows/runner/CmakeLists.txt

  2. Terminal -> flutter create .

  3. flutter clean & flutter pub get

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Anonimys

79634247

Date: 2025-05-22 17:24:38
Score: 3
Natty:
Report link

Reading and processing excel files in databricks is not efficient bcz of complex excel structure. so its better to read the files as parquet/text files.

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

79634224

Date: 2025-05-22 17:07:32
Score: 3
Natty:
Report link

You can pull the files with adb. Extract-files or other scripts contains several collection pull commands

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

79634219

Date: 2025-05-22 17:03:31
Score: 2
Natty:
Report link

I was missing the Info.plist value for Privacy - Location usage description after setting it I'm getting the prompt

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: dev-rifaii

79634215

Date: 2025-05-22 17:02:30
Score: 2
Natty:
Report link

on this path kafka\bin\windows

open kafka-server-start.bat in Notepad and remove this line

wmic os get osarchitecture | find /i "32-bit" >nul 2>&1 IF NOT ERRORLEVEL 1 ( rem 32-bit OS set KAFKA_HEAP_OPTS=-Xmx512M -Xms512M ) ELSE ( rem 64-bit OS set KAFKA_HEAP_OPTS=-Xmx1G -Xms1G )

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shekhar

79634200

Date: 2025-05-22 16:54:27
Score: 1.5
Natty:
Report link

As noted by crizzis, the best option is likely modeling the join table as an @Entity, defining the desired behavior in its @PreUpdate and @PrePersist, and the refactoring the relationship on both sides to be @OneToMany with the new class instead of using @JoinTable.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: joeking

79634196

Date: 2025-05-22 16:50:26
Score: 3
Natty:
Report link

The problem has been resolved. Everything runs as it should, the only thing I didn't know was that SOME nodes can be "user-exclusive" while others are not, so if you have the same behaviour check if the "user-exclusivity" is on all nodes.

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

79634183

Date: 2025-05-22 16:39:22
Score: 7.5 🚩
Natty:
Report link

Did you ever find an answer? I am getting this too

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find an answer
  • 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
  • Low reputation (1):
Posted by: rknudson

79634177

Date: 2025-05-22 16:37:20
Score: 3
Natty:
Report link

I managed to do this through this code

<?php
// 1) Validação: bloqueia o envio se o saldo for insuficiente
add_action( 'elementor_pro/forms/validation', function( $record, $ajax_handler ) {
    // Nome do formulário (Avançado > Nome do formulário)
    if ( 'artigo_saldo' !== $record->get_form_settings( 'form_name' ) ) {
        return;
    }

    // Captura o valor selecionado no form
    $fields = $record->get( 'fields' );
    $valor  = floatval( $fields['saldo_artigo']['value'] );

    // Usuário logado
    $user_id = get_current_user_id();
    if ( ! $user_id ) {
        $ajax_handler->add_error( 'saldo_artigo', 'Você precisa estar logado para usar seu saldo.' );
        return;
    }

    // Recupera o saldo bruto direto do meta do usuário
    $raw_balance = get_user_meta( $user_id, '_current_woo_wallet_balance', true );
    $balance     = floatval( $raw_balance );

    // Se o saldo for menor que o valor do form, dispara erro no campo
    if ( $balance < $valor ) {
        $ajax_handler->add_error(
            'saldo_artigo',
            sprintf(
                'Saldo insuficiente. Seu saldo atual é R$ %s.',
                number_format( $balance, 2, ',', '.' )
            )
        );
    }
}, 10, 2 );

// 2) Débito: só é executado se passar pela validação acima
add_action( 'elementor_pro/forms/new_record', function( $record, $handler ) {
    // Mesma checagem do nome do formulário
    if ( 'artigo_saldo' !== $record->get_form_settings( 'form_name' ) ) {
        return;
    }

    $fields  = $record->get( 'fields' );
    $valor   = floatval( $fields['saldo_artigo']['value'] );
    $user_id = get_current_user_id();

    if ( $user_id && $valor > 0 ) {
        $descricao = 'Débito automático após envio do formulário de artigo';
        woo_wallet()->wallet->debit( $user_id, $valor, $descricao );
    }
}, 10, 2 );
Reasons:
  • Blacklisted phrase (3): Você
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mateus Tavares Ruiz

79634162

Date: 2025-05-22 16:27:17
Score: 3
Natty:
Report link

Solved by running the app (that's werid):

enter image description here

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

79634150

Date: 2025-05-22 16:19:14
Score: 2.5
Natty:
Report link

After replacing the NIC I was using original, my simple test setup posted here does work without issues.

precitec@chrtest3:~$ lspci | grep Ethernet
00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (2) I219-V (rev 31)
04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller (rev 06)
05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller (rev 06)
06:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller (rev 06)
07:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller (rev 06)
0b:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
0c:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
0d:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
0e:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)

The NICs which show up as Intel I210 does work with the newer kernel in ubuntu 24.

Yet interestingly, on the original setup which uses ubuntu 22 with kernel 5.15.0-139-generic I am using the same Realtek NIC card.

So it actually seems to be some form of regression in the realtek driver, and not actually how the newer kernel handles the macvtap setup under docker.

So anyone in the future having the same issue, my advise would be to try out different NIC cards, and see for yourself.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same issue
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: materigoprecitec

79634138

Date: 2025-05-22 16:12:12
Score: 2
Natty:
Report link

Just saw your question and referred your code. You are almost at the right track. The reason why you are getting a Null value or object is that you are invoking the 'infosearch()' function immediately (this is because of the paranthesis). So, in reality, instead of waiting for the enter key, it immediately runs the function, which was causing you the trouble. Just remove the paranthesis so it will be converted into a callback function, and you are good to go!

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anbuchezhiyan A.M

79634133

Date: 2025-05-22 16:09:11
Score: 0.5
Natty:
Report link
  1. Press Ctrl + Shift + P (or Cmd + Shift + P on Mac)

  2. Type and run: **View: Reset Panel Locations

    try this & update please**

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sarah

79634127

Date: 2025-05-22 16:08:10
Score: 4.5
Natty:
Report link

I was able to fix the problem now

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

79634124

Date: 2025-05-22 16:05:09
Score: 3
Natty:
Report link

I think your problem comes because you set server name with slash instead of backslash.

Could you try with this connection string?

Scaffold-DbContext 'Server=computename\\user;Database=pub;Integrated Security=true; TrustServerCertificate=true'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Vandersmissen Loïc

79634122

Date: 2025-05-22 16:04:08
Score: 2.5
Natty:
Report link

Sometimes the simple answer is that you have set value of all inputs fields to "" when load modal (if your field is in a modal), or you have a reset form in some place, this has happend to me many times.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Creativos Online App

79634115

Date: 2025-05-22 15:58:07
Score: 2.5
Natty:
Report link

When using an old project using webpack-dev-server I noticed that you get the same error when using Node 24 and above. Reverting to an older node version 23.x and below fixed it again

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): get the same error
  • Single line (0.5):
  • Starts with a question (0.5): When
  • High reputation (-1):
Posted by: Ritsaert Hornstra

79634113

Date: 2025-05-22 15:58:07
Score: 1
Natty:
Report link

For {httr2} you may also need to set ssl_verifyhost, hence

library(httr2)
req <- request("https://example.com") |>
  req_options(ssl_verifypeer = 0) |>
  req_options(ssl_verifyhost = 0)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: monomeric

79634111

Date: 2025-05-22 15:56:06
Score: 0.5
Natty:
Report link

The Viewer Response event doesn't get triggered on > 4xx response codes. And WAF will return the default block response to the client if neither WAF nor the protected resource (CloudFront in this case) is configured with a custom response. So I don't this is going to work as you're expecting.

Your best bet - if you need it to be dynamic - is probably to configure CloudFront with a custom reponse for a 403 status code, create a behaviour (with caching disabled) for that path then connect your function to the Origin Request event for that behaviour. And you'll need to tweak the function to always return the dynamic 403 response because it won't have an origin response to work with.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: andycaine

79634109

Date: 2025-05-22 15:55:05
Score: 3
Natty:
Report link

More then 20 languages besides English, along with multilingual mode. You can find whole list the bot’s configuration page

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

79634106

Date: 2025-05-22 15:52:04
Score: 3
Natty:
Report link

This does not work when you make a bootstrap validation, the hidden and disabled is considered OK, by the placeholder

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mads Peter Jensen

79634104

Date: 2025-05-22 15:50:03
Score: 3
Natty:
Report link

I believe the purpose is to allow default arguments which just happens to be the following section of the docs you linked.

https://docs.groovy-lang.org/latest/html/documentation/#_default_arguments

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

79634095

Date: 2025-05-22 15:47:02
Score: 3
Natty:
Report link

I have been struggling with the same linkage issue while trying to use QCustomPlot, and the following setup in my CMakeLists.txt helped resolve it:

find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Widgets PrintSupport)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets PrintSupport)

...

target_link_libraries(QCustomPlot_temp PRIVATE
    Qt${QT_VERSION_MAJOR}::Widgets
    Qt${QT_VERSION_MAJOR}::PrintSupport
)

Using Qt${QT_VERSION_MAJOR} ensures compatibility with both Qt5 and Qt6, and properly links the required modules. Hope this helps someone else facing the same issue!

And this links also helps:

https://doc.qt.io/qt-6/qtprintsupport-index.html

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1): Hope this helps
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (0.5):
Posted by: sam

79634093

Date: 2025-05-22 15:44:01
Score: 3
Natty:
Report link

Well, I faced the same problem when I tried to migrate an MS SQL DB based project to Postgres running in a Docker Container. Whatever I tried, nothing seemed to work until finally I removed all projects from the solution except the StartUp Application (the main project). Even if this could not compile, now adding Docker via Docker compose worked right out of the hat. And then re-adding the formerly removed projects/modules worked like a charm. This is definitely worth a try.

Reasons:
  • Blacklisted phrase (1): worked like a charm
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AlexM

79634092

Date: 2025-05-22 15:40:59
Score: 2
Natty:
Report link

var timeZone = TzdbDateTimeZoneSource.Default.ZoneLocations!.FirstOrDefault(x => x.CountryCode == CultureInfo.CurrentCulture.Name[^2..]); if (timeZone is not null) { var timeZoneInfo = TimeZoneInfo.FindSystemTimeZoneById(timeZone.ZoneId); foreach (var order in orders) { order.OrderDate = TimeZoneInfo.ConvertTimeFromUtc(order.OrderDate.DateTime, timeZoneInfo); } }


https://otcmarketsgroup.cmail19.com/t/i-l-fhduttl-iydyuiltth-j/

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: John Francis Musa