79635045

Date: 2025-05-23 07:39:05
Score: 2
Natty:
Report link

If you're searching to filter all blank rows, you can do it with multiple filters easily.
I used this formula (watch out the locale):
=ARRAYFORMULA(FILTER(Sheet1!A2:A;Sheet1!C2:C="mysearch";Sheet1!B2:B<>""))

enter image description here

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

79635041

Date: 2025-05-23 07:35:04
Score: 3
Natty:
Report link

For me this arises occasionally with Firefox. Changing to Chrome solved the issue.

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

79635040

Date: 2025-05-23 07:34:03
Score: 1
Natty:
Report link

I only needed to add a 1px to get it to work apparently! Posting here if someone has the same question :)

onLoadStop: (controller, url) async {
    await injectJavascript(controller);
    await Future.delayed(Duration(milliseconds: 300));

    await _webViewController?.evaluateJavascript(
     source: '''
     document.documentElement.style.height = document.documentElement.clientHeight + 1 + 'px';
      ''',
  );
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Clara

79635031

Date: 2025-05-23 07:28:01
Score: 2
Natty:
Report link

According to https://discourse.hibernate.org/t/criteriabuilder-cast-function-example/6631/4 there is a solution using cast instead of as:

var cast = ((JpaExpression) from.get("uuid")).cast(String.class);
cb.like(cast, "%" + stringValue + "%");
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kio21

79635026

Date: 2025-05-23 07:26:01
Score: 1
Natty:
Report link

To at least partially answer the Question, this is what I found out so far

1.) locale support in MinGW seems broken

2.) when retrieving a path with std::filesystem it is correct internally

3.) ofstrem and ifstream can take filesystem ::path, so if you retrieved an path with umlauts, you can load and save data with this path utilizing ofstrem and ifstream

4.) as soon you want to manipulate the path - need of conversion to a string and back to filesystem ::path - things go wrong. So e.g. if you replace the extension without touchning the part of the path with the umlauts, thats fine. If you replace the filename, even if you just retrieved the filename and appended some string, it goes wrong

as of today these are my findings with no solution to point 4

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

79635023

Date: 2025-05-23 07:24:59
Score: 13.5 🚩
Natty: 6
Report link

Did you found the solution? Im facing the same issue ... Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (3): Did you found the solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): facing 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: Miroslav

79635010

Date: 2025-05-23 07:15:57
Score: 1
Natty:
Report link

You're encountering this error because the method CriteriaBuilder.isFalse() expects a parameter of type Expression<Boolean>, but you're passing a mock of type Path<Object>. Although Path<Boolean> is a subtype of Expression<Boolean>, your mock is declared as Path<Object>, and that's why the compiler complains.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ζ΄ͺ紹恩

79635007

Date: 2025-05-23 07:14:56
Score: 1.5
Natty:
Report link

You can add a value after nameSingleItem with an example
SingleItemCategoryModel(nameSingleItem: "VVIP", vaalue '15-1')
//example value:15-1. 15 is the camp id, 1 is the room type id

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Cuma Dika ajah

79634996

Date: 2025-05-23 07:03:54
Score: 0.5
Natty:
Report link

I ended up fixing it by changing the grid structure.

If before was:

<Grid>
   <Row>
   <Row *>
   <Column *>
   <Column *>
   <Column *>
   <Column>

   <Content>

   <TreeItems Row:1 Colum:0-3>
</Grid>
<TreeItems>
   <Grid>
      <Column *>
      <Column *>
      <Column *>
   
      <Content>

   </Grid>
</TreeItems>

By separating the main grid into two:

<Grid>
   <Row>
   <Row *>

   <Grid Row:0> <!--The header now has its own grid -->
      <Column *>
      <Column *>
      <Column *>
      <Column>

      <HeaderContent>
   </Grid>

   <Content>

   <TreeItems Row:1> <!-- Note that now there is only one column so I don't need to declare it -->
</Grid>
<TreeItems>
   <Grid>
      <Column *>
      <Column *>
      <Column *>
   
      <Content>

   </Grid>
</TreeItems>

I still don't understand whats happening on the first option and my main take away is try not to declare a grid with columns and rows at the same time.

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

79634992

Date: 2025-05-23 06:59:51
Score: 8 🚩
Natty:
Report link

I am also facing the same issue, please put your solution here if you get it

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • RegEx Blacklisted phrase (1): I am also facing the same issue, please
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sai Kiran

79634985

Date: 2025-05-23 06:57:51
Score: 2
Natty:
Report link

The reason in the workmanager itself. I just replaced it with compute and it doesn't cause freezes anymore.

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

79634982

Date: 2025-05-23 06:56:51
Score: 0.5
Natty:
Report link

Here you go, I had to solve a similar problem... Credit to @andrew-coleman for the initial example

(
    $dotsToUnderscores := $each(?, function($v, $k) {
        { 
            $replace($k, '.', '_'): $type($v) = 'object' ? $dotsToUnderscores($v) : 
                                    $type($v) = 'array'  ? $map($v, function($vv) { $dotsToUnderscores($vv) } : 
                                    $v
        }
    }) ~> $merge;
    $dotsToUnderscores($)
)
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @andrew-coleman
Posted by: NeilC

79634979

Date: 2025-05-23 06:54:50
Score: 1
Natty:
Report link

Instead of specifying any specific browser we can use below line to use default browser set by user in the system to open the link.

Start-Process "https://www.google.com"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mansi Mishra

79634976

Date: 2025-05-23 06:52:49
Score: 1.5
Natty:
Report link

SetWindowTheme(hWnd, L" ", L" ");

Gives the Win95 look. Works with controls too.

Back to normal: SetWindowTheme(hWnd, NULL, NULL);

In UsbTreeView and other tools I use that to switch the theme on and off for the controls at runtime without any problem (Options -> Windows Theme).

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

79634966

Date: 2025-05-23 06:45:47
Score: 2.5
Natty:
Report link

Try this free Chrome extension it can maintain your collections on GitHub, its very simple and lightweight

https://chromewebstore.google.com/detail/github-postman-sync/daelpeneghnjcdhgmfiocjemdpblnofl

Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Saurabh Fodekar

79634964

Date: 2025-05-23 06:44:47
Score: 1
Natty:
Report link

Firstly, remove package-lock.json and node_modules folder. In the package.json folder, write :

  "overrides": {
  "rollup": "npm:@rollup/wasm-node" }

Then, do npm i, and it should work.

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

79634958

Date: 2025-05-23 06:41:45
Score: 2
Natty:
Report link

πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯ I’ve created a WhatsApp community for Laraclassified users β€” where I personally provide free support for

βš™ Bug fixes

πŸ›  Error solutions

πŸš€ Growth tips & tricks to scale your classified site faster

No fees. No fluff. Just real help to get the most out of your Laraclassified script.

If you’re using this script, you’ll want to be in this group.

Join here: https://chat.whatsapp.com/KdeGfl3PULF76ZVTD29I1y

Reasons:
  • No code block (0.5):
  • Filler text (0.5): πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯πŸ”₯
  • Low reputation (1):
Posted by: Talha Sahi

79634957

Date: 2025-05-23 06:41:45
Score: 3
Natty:
Report link

Google tech usability is a complete joke.

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

79634949

Date: 2025-05-23 06:28:42
Score: 2.5
Natty:
Report link

I have fixed issue by calling script outside of IIS. I created script using my application and created event scheduler that call script & generate stl file. This way script start using GPU.

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

79634948

Date: 2025-05-23 06:28:42
Score: 2.5
Natty:
Report link

This question seems to be Missing data version in tablet replicas. Check replica versions with show tablet and show partitions. Use admin repair or mark bad replicas with admin set replica status for automatic repair.

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

79634946

Date: 2025-05-23 06:26:41
Score: 1
Natty:
Report link

This might not be the answer you are looking for, but it is the only way I can get it to show multiple columns on one X-value; by adding each point to a separate Series.

chart1.Series.Add("series1");
chart1.Series["series1"].Points.AddXY("31.5 Hz", 52);
chart1.Series.Add("series2");
chart1.Series["series2"].Points.AddXY("31.5 Hz", 58);
chart1.Series.Add("series3");
chart1.Series["series3"].Points.AddXY("31.5 Hz", 67);

enter image description here

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

79634941

Date: 2025-05-23 06:19:39
Score: 1.5
Natty:
Report link

Try tflite.setWasmPath('https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/');, it still tried to load locally, and then did a fallback to this URL.

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

79634932

Date: 2025-05-23 06:16:38
Score: 3.5
Natty:
Report link

https://workspace.google.com/marketplace/app/chat_viewer_for_whatsapp/627542094284

You can upload your .txt file here and Select Primary Author.
Click on start replay.
Done.

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

79634911

Date: 2025-05-23 05:55:32
Score: 1
Natty:
Report link

I managed to get rind of this error and get the project adding msql, by installing version 7.3.5 of the mssql package.

npm install [email protected]

I have yet to actually try any of the mssql functions, but now I can require the mssql and not have the project crash.

const sql = require("mssql");

With other versions of mssql I got the errors and could not try anything with the SQL server connection. I am still not sure why I get the errors with later versions of mssql which should be compatible with the version of nodejs I am susing, all I can think is that some of the other packages perhaps interfered with finding the module 'node:events'.

Reasons:
  • RegEx Blacklisted phrase (1): I get the error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Barry Andrews

79634909

Date: 2025-05-23 05:54:32
Score: 4.5
Natty: 4.5
Report link

What does it mean? Please enter 10-digit mobile number starting with 6,7,8, or 9 only

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What do
  • Low reputation (1):
Posted by: Muhammad

79634899

Date: 2025-05-23 05:45:29
Score: 0.5
Natty:
Report link

# DPI-aware Tkinter + Matplotlib (Consistent Across IDEs and Standalone)

I tried the suggested one, did not work in some cases. Below is slightly heavy but works in every situation and has fine control over every element.

Get DPI and Screen Info


def get_display_context():
import tkinter as tk
root = tk.Tk()
root.withdraw()
root.update_idletasks()
root.state('zoomed')
root.update()
dpi = root.winfo_fpixels("1i")
width, height = root.winfo_width(), root.winfo_height()
root.destroy()
return {
"dpi": dpi,
"screen_width_pixel": width,
"screen_height_pixel": height
}

Define Font Helpers

**Tkinter:**

def font_ui_tk(size_pt, ctx, font="Segoe UI", bold=False):
scale = ctx["dpi"] / 96
return (font, int(size_pt * scale), "bold" if bold else "normal")

**Matplotlib:**

def font_ui_mpl(size_pt, ctx, font="Segoe UI", bold=False):
scale = ctx["dpi"] / 96
return {
"fontsize": int(size_pt * scale),
"fontweight": "bold" if bold else "normal",
"family": font
}

### Step 3: Apply in Your App

**Tkinter Example:**

ctx = get_display_context()
label = tk.Label(root, text="Run", font=font_ui_tk(11, ctx))

**Matplotlib Example:**

ax.set_title("Plot Title", **font_ui_mpl(12, ctx))

**Legend/Ticks:**

ax.legend(fontsize=font_ui_mpl(9, ctx)["fontsize"])
ax.tick_params(labelsize=font_ui_mpl(9, ctx)["fontsize"])

This method removes the need for `tk scaling` or `ctypes.windll.shcore.SetProcessDpiAwareness`.

Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahabir Prasad

79634895

Date: 2025-05-23 05:40:28
Score: 5
Natty: 5
Report link

HRM software development company in New York

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Best UI Designers in UAE

79634891

Date: 2025-05-23 05:33:26
Score: 3.5
Natty:
Report link

may I know how to keep the same number of observations for the dataset as the number present in the shapefile?
Suppose there are 2 period of panel data of 20 regions meanwhile the shpfile only have 20 regions, how to make them the same? Does it mean you split the 2 periods and attach the weight for each period?

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

79634890

Date: 2025-05-23 05:33:26
Score: 4.5
Natty:
Report link

How about

grouped.groups.pop(group_name)

?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Has no white space (0.5):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: Confounded

79634885

Date: 2025-05-23 05:31:25
Score: 0.5
Natty:
Report link

This is now possible using paketo-buildpacks/environment-variables

For example:

pack build --builder heroku/builder:20 --buildpack paketo-buildpacks/[email protected] --env BPE_MY_VARIABLE="SomeValue"

When you start the container interactively I run

env | grep MY_ 

to get

MY_VARIABLE=SomeValue
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: A. Penner

79634862

Date: 2025-05-23 05:10:19
Score: 10 🚩
Natty: 6
Report link

Did you ever find a solution to this?

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever find a solution to this
  • 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 you
  • Low reputation (1):
Posted by: Rob Wyrick

79634858

Date: 2025-05-23 05:07:18
Score: 1
Natty:
Report link

Redocly had updated its portal last year and switched to MarkDoc. Part of the migration is that admonitions are now formatted differently:

{% admonition type="warning" %}
  Important warning!
{% /admonition %}

The embedded snippet should still work and the admonition render accordingly.

source

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

79634852

Date: 2025-05-23 05:00:16
Score: 3.5
Natty:
Report link

use your * => app.get(/(.*)/,(req,resp)=>{ }

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: DEEPAK SHARMA

79634841

Date: 2025-05-23 04:36:11
Score: 11
Natty: 8
Report link

i am also facing the same issue, any fixes?

Reasons:
  • Blacklisted phrase (1): i am also facing the same issue
  • RegEx Blacklisted phrase (1.5): fixes?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i am also facing the same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30613687

79634834

Date: 2025-05-23 04:25:07
Score: 8 🚩
Natty: 4.5
Report link

I also face the same problem on my windows 10 PC. I start using Git without knowing it's garbage collection system. I usually use git from git bash terminal, so i create commit push it to git hub create branch, rebase it and lot's of things. One day i open Git GUI provided with git bash. It says that i have 704 loos object need to compress it. If i say yes then it give error like "Deletion of directory '.git/objects/01' failed, should i try again?" if it try 100 times it still not able to delete it. Git GUI i bad in this situation, i need to restart the PC to stop it ( task manager can't close it). then inside git bash i call git gc (gc for garbage collection) it also give the same error except i am able to close the git bash program, which is good. Then i tried "git gc --prune=now --aggressive --force" command but nothing works. At the end i have to manually delete all the directory git gc failed to delete, which is very very painful. After completing all the deletion my .git/objects folder contain only 5 directory. This is how i solve it. If anyone have a better solution, please share it.

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (2.5): please share
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): I also face the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fakir Rifat Hasan

79634813

Date: 2025-05-23 03:57:01
Score: 1
Natty:
Report link

Okay, there seems to be only one answer.

The behavior I described was very consistent across many tests and many hours, and when I searched for an answer all I could find was people telling me: this is impossible!

Well, I finally revisited it, and tried to reproduce it, and it doesn't work anymore. I haven't been able to reproduce this behavior.

So, the answer seems to be, if this happens to you, reboot, cross your fingers, and hope it goes away.

Apologies to all of you who were as frustrated with me as I was frustrated with you.

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

79634810

Date: 2025-05-23 03:53:00
Score: 2
Natty:
Report link

hello it's late but i'll explain to you what is the problem : https://developers.facebook.com/docs/pages-api/getting-started/#-tape-1--obtenir-l-id-de-votre-page-2

you have to get your access_token of page id with https://graph.facebook.com/v22.0/{user_id}/accounts

in your response you will have access_token.

You have to use this token not the user token.

Hope that will help some one

Reasons:
  • Whitelisted phrase (-1): Hope that will help
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nassim Amrane

79634809

Date: 2025-05-23 03:53:00
Score: 3
Natty:
Report link

Your approach is good but it works only for a couple of lines.. How about for a Report of 90 or 130 lines.. The For Next Loop needs to find the End of the Report, Read, Make the Calculations, and Write the Totals.. for each line.. Thanks to your Suggestions I made the Macro Run Well, but again it works on only One line.. I need it to loop thru the whole Report.. Can I send you my Code... ?

Beg your Pardon, my email is "[email protected]", Thanks,

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: LUIS G.

79634807

Date: 2025-05-23 03:48:59
Score: 1
Natty:
Report link

Sounds like you're really close β€” great job getting the backoffice working! That β€œYour app is running but waiting content” screen usually means your homepage isn’t published or linked correctly in Umbraco.

Check the following:

Happens to the best of us β€” you're almost there!

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

79634806

Date: 2025-05-23 03:48:59
Score: 2
Natty:
Report link

i can't find the cert to export
more info would be nice here
this emulator is a pain
maybe i should just install mongo

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

79634798

Date: 2025-05-23 03:38:57
Score: 1
Natty:
Report link

Thanks for the comment.

The issue is that SESSION_DRIVER was set to array which does not persists the server side sessions.

You can set it to file as the easiest solution.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
Posted by: Tatachiblob

79634797

Date: 2025-05-23 03:36:56
Score: 1.5
Natty:
Report link

The solution for Safari was very simple, but I do not understand why it was the solution.

Changing this:

setcookie( 'cookiename', '1', time()+1200, '/' );

... to this:

setcookie( 'cookiename', '1', time()+1200, '' );

Using an empty PATH parameter and PHP and JS both recognize the cookie and value.

I would love to know why this is the solution for Safari if anyone can elaborate!

Cheers

Reasons:
  • Blacklisted phrase (1): Cheers
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: jdm2112

79634795

Date: 2025-05-23 03:32:55
Score: 1
Natty:
Report link

Instead of:

Do:

β€’   width: 100% ensures it fits its parent.
β€’   aspect-ratio: 16/9 keeps the shape consistent regardless of screen size.
β€’   Avoid hard-coded width/height unless they’re adaptive.

And also Set viewport meta tag, without this, even responsive CSS won’t behave correctly on phones:

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

79634793

Date: 2025-05-23 03:30:55
Score: 2
Natty:
Report link

You're looking for the cherry-pick command:
https://git-scm.com/docs/git-cherry-pick

Using the hash of the commits you wish to copy, single commits may be merged in. Ranges are also an option.

https://www.geeksforgeeks.org/git-cherry-pick/

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

79634790

Date: 2025-05-23 03:27:54
Score: 1
Natty:
Report link

Here is a way

public static void prime(int n) {
    int i = 2;
    while(i < n) {
        if (n % i == 0){
            System.out.println(n + " is not prime");
            return;
        }
        i++;
    }
    System.out.println(n+" is a prime number");
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DigestRageIn

79634782

Date: 2025-05-23 03:13:51
Score: 7 🚩
Natty:
Report link
  1. Link 1: https://drive.google.com/file/d/1hvTb12GMF3NxryOi0WGn1PcAu5WKXx2v/view?usp=sharing

    ----------------------------------------------

  2. Link 2: https://drive.google.com/uc?export=download&id=1hvTb12GMF3NxryOi0WGn1PcAu5WKXx2v

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • No latin characters (2.5):
  • Filler text (0.5): ----------------------------------------------
  • Low reputation (1):
Posted by: HαΊ­u LΓͺ CΓ΄ng

79634780

Date: 2025-05-23 03:08:49
Score: 11 🚩
Natty: 5.5
Report link

I have same issue. did you find the solution?

Reasons:
  • RegEx Blacklisted phrase (3): did you find the solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Đẑt Nguyα»…n Quang

79634777

Date: 2025-05-23 03:02:47
Score: 2.5
Natty:
Report link

If the flutter clean, pod install nothing works then check - you have openend Runner.xcodeproj
OR Runner.xcworkspace

You have to open Runner.xcworkspace

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

79634775

Date: 2025-05-23 03:00:47
Score: 3
Natty:
Report link

This was only fixed for me on iOS. On Android, I'm still having the same problem after updating Expo SDK 52 to 53. I'm sharing the code that fixed the problem for me on iOS devices. If I remove any of these properties, including styles, the app crashes.

react-native: 0.79.2

expo: ^53.0.9

react-native-google-places-autocomplete: ^2.5.7

<GooglePlacesAutocomplete
   ...
   predefinedPlaces={[]}
   textInputProps={{}}
   styles={{}}
/>
Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): having the same problem
  • Low reputation (1):
Posted by: Azael Guerrero

79634767

Date: 2025-05-23 02:49:44
Score: 0.5
Natty:
Report link

I’m not really happy with this solution, but it is something that could work perfectly fine depending on your particular case.

What I did was to add data-sveltekit-reload to the link of the page which I need the styles to be cleared out, just like this:

<a href="/path-to-page" data-sveltekit-reload>
   Link text
</a>

Keep in mind that this will allow the browser to handle the link, causing a full-page navigation after it is clicked.

Official docs: https://svelte.dev/docs/kit/link-options#data-sveltekit-reload

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rodrigo D'Agostino

79634766

Date: 2025-05-23 02:48:44
Score: 4
Natty:
Report link

It turns out that this dictionary is an object from a library that is not coherent with what I am trying to acheive. I had to check the object browser before I realize this dictionary was from Selenium Basic instead of MS Scripting Runtime Library.

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Austin Weiss

79634763

Date: 2025-05-23 02:46:43
Score: 1.5
Natty:
Report link

Did a bunch more research on this by researching the cdc-acm, the usbmon function and the USB specification.

It looks like the bulk channels being the dropoff/entry points for serial data was a flawed assumption.

I won't rehash everything here, but if I were to do this again:

  1. The cdc_acm driver is a bit more involved than I realized and there are numerous exception cases to work around flawed/differing implementations.

  2. I ended up using the i2c-tiny-usb driver as my basis. I uploaded the Arduino i2c_tiny_usb_adapter example to my Seeeduino Xiao, connected, then offered it as an example. I then used i2cdetect to run a scan.

  3. I used usbmon to monitor traffic of that scan. That way I could reconstruct what was "really" going on.

  4. The USB Spec indicates every device has an endpoint 0 control interface which configure the device. For simple implementations, such as I2C, you can just get/request data via that interface.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): Did a
  • Low reputation (0.5):
Posted by: BarkerChippy

79634762

Date: 2025-05-23 02:44:43
Score: 4
Natty:
Report link

Alright, after a bunch more testing it seems that clamping the angle where the barrels can rotate up and down messes up the raycast hitpoint for some reason???? I don't understand why it makes the X value stop changing as soon as it hit something that wasn't terrain but when I removed the clamp it became normal.

Reasons:
  • Blacklisted phrase (1): ???
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Big Glasses

79634761

Date: 2025-05-23 02:42:42
Score: 0.5
Natty:
Report link

Additionally for anyone who came across this post (same as me), if git ignore is not ignoring as expected, clean the cache:

git rm --cached *.json

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Vitaly Borisov

79634755

Date: 2025-05-23 02:33:40
Score: 1.5
Natty:
Report link

Fully aware this is an old question, but I wanted to point other people with similar issues to some open sourced API documentation run by the community (I’m one of the contributors, full disclosure). It has nearly full coverage of the GroupMe API.

The relevant docs regarding GroupMe Topics are here, but I’d encourage anyone who’s interested to take a look at anything and everything else, because it’s a lot more complete than the official docs at dev.groupme.com.

https://github.com/groupme-js/GroupMeCommunityDocs

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

79634753

Date: 2025-05-23 02:30:40
Score: 3
Natty:
Report link

It is recommended to find a machine that can connect to the external network and compile it, and then copy the relevant directory of the thridparty to the development machine.

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

79634748

Date: 2025-05-23 02:26:39
Score: 1.5
Natty:
Report link

The setColumnVisible(key,visible) does not work anymore.

AG Grid: Since v31.1 api.setColumnVisible(key,visible) is deprecated. Please use setColumnsVisible([key],visible) instead.

The column methods have been migrated to the Grid API.

Read more:

let isVisible = true; // or false
let columns = ['columnFieldKey1', 'columnFieldKey2'];    
let gridApi = agGrid.createGrid(gridDiv, gridOptions);
gridApi.setColumnsVisible(columns, isVisible);
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: siumi

79634747

Date: 2025-05-23 02:23:38
Score: 3.5
Natty:
Report link

Check if your company's network prohibits video playback

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

79634740

Date: 2025-05-23 02:05:19
Score: 0.5
Natty:
Report link

Remove \n and re.DOTALL and also add strip()

Snippet:

time_stamp, messages = re.findall(r'(\d+/\d+/\d+ \d\d:\d\d:\d\d[.]\d\d\d\d)(.*)', line)[0]

And:

print(f'time_stamp: {time_stamp}, message: {messages.strip()}')

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

79634738

Date: 2025-05-23 02:01:19
Score: 0.5
Natty:
Report link
   <mat-tab-group dynamicHeight>
<mat-tab label="A">
  <ng-template matTabContent>
      <componentA></componentA>
  </ng-template>
</mat-tab>
<mat-tab label="B">
  <ng-template matTabContent>
      <componentB></componentB>
  </ng-template>
</mat-tab>

Render your compoent with matTabContent

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: M.H

79634736

Date: 2025-05-23 01:53:17
Score: 1.5
Natty:
Report link

2025

I was facing the exact problem, and switching from child_process.fork (Nodejs ) to ElectronJS's utilityProcess solved it for me ! (No more suspicious second instance on asar build)

https://www.electronjs.org/docs/latest/api/utility-process

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

79634735

Date: 2025-05-23 01:52:17
Score: 4
Natty:
Report link

Long thread about it here https://github.com/getcursor/cursor/issues/2976

Looks like the marketplace extension is being blocked.

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

79634724

Date: 2025-05-23 01:32:13
Score: 0.5
Natty:
Report link

Have you tried setting quarkus.smallrye-graphql.log-payload=query-and-variables

as documented here: https://quarkus.io/guides/smallrye-graphql#quarkus-smallrye-graphql_quarkus-smallrye-graphql-log-payload

Also, in a later version of Quarkus, there should be a GraphQL log tab in Dev UI (if this is dev mode only where you need this)

enter image description here

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Phillip KrΓΌger

79634717

Date: 2025-05-23 01:14:09
Score: 2
Natty:
Report link

Do File > Invalidate Caches... in your Android Studio.

and try to build your app again.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
Posted by: DevQt

79634714

Date: 2025-05-23 01:08:08
Score: 1
Natty:
Report link

In the Really Simple theme (good for hard coding web page layout for simplicity), in page.php, this line sends out main page content, including the title: get_template_part( 'template-parts/content', 'page' ); It also strips out javascript in the main page content. If you can find a good way to send back the title alone, comment this line out, and replace it with: echo get_post_field( 'post_content', get_the_ID(), 'raw' ); This does not filter out such javascript. As for including the title (in h1 html tags), get_template_part( 'template-parts/content', 'title' ); works, but not quite right. It turns the title into a link.

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

79634707

Date: 2025-05-23 00:59:05
Score: 4.5
Natty: 5.5
Report link

I use
pip install flash_attn-2.7.0.post2%2Bcu124torch2.4.0cxx11abiFALSE-cp311-cp311-win_amd64.whl
I want to know how to call it correctlyβ€”should I use:
from flash_attn import flash_attn_func
or
from torch.nn.functional import scaled_dot_product_attention
Additionally, I only installed the .whl file and did not install ninja. Is this correct?

Reasons:
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: η‰Ήθ’‚ε°Όθ€Ά

79634705

Date: 2025-05-23 00:54:04
Score: 0.5
Natty:
Report link

This post is nearly 15 years old, but I feel the need to add some missing context here. Stefan Kendall's answer is correct, but a proof is not given. Although it follows directly from properties of trees, it may not be apparent to every reader that this algorithm always works.

Firstly, if the input tree has an odd number of vertices, it is impossible for there to be a perfect matching in the tree since every edge has exactly two endpoints and a perfect matching contains exactly one edge incident to any vertex. However, not every tree with an even number of vertices has a perfect matching.

Algorithm: Identify an edge (u,v) of the forest T which has a leaf u. Delete vertex v from T, and recursively determine if T - v has a perfect matching. As base cases, if T is the trivial graph with no vertices, return true. If T has an odd number of vertices, return false.

Proof: The base cases are justified by above. It is a theorem of graph theory that every tree contains at least one leaf vertex. Deleting the unique neighbor of a leaf from a tree results in a forest. Certainly, if a tree T has a perfect matching and u is a leaf, then the edge (u,v), where v is the unique neighbor of u, must be in the perfect matching. Therefore, if a tree T has a perfect matching and u is a leaf in T with neighbor v, then the forest T' = T - {v} must also have a perfect matching. Furthermore, since every perfect matching must contain edge (u,v), it is also true that if tree T does not have a perfect matching, then T' cannot have a perfect matching. Thus, T has a perfect matching if and only if T' has a perfect matching. Moreover, all the properties of trees discussed above apply to each component of T'. The algorithm relies on these fact to recursively find whether forests obtained by deleting leaf vertices have perfect matchings. The proof of correctness has been implicit in the discussion so far

Additional notes of interest: This algorithm can be easily modified to return the actual perfect matching, if one exists. In fact, our discussion above also proves that if a tree has a perfect matching, then it is unique; thus, every tree contains at most one perfect matching. This is because at each stage of the (modified) algorithm, we guarantee that the edge (u,v) that we add is contained in every perfect matching of the graph that contains it, if a perfect matching exists.

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

79634704

Date: 2025-05-23 00:54:04
Score: 4
Natty: 4.5
Report link

Same error message and PYTHONPATH has resource folder on it but no easy way to rename as folder is part of LibreOffice suite. Easier to simply unset PYTHONPATH as required.

Reasons:
  • RegEx Blacklisted phrase (1): Same error
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: bozo88

79634701

Date: 2025-05-23 00:51:03
Score: 0.5
Natty:
Report link

For what it's worth in 2025, in my research it seems possible to use within Libraries, though it still could be subjective. Some form of official guidance from Google would be more helpful still as their dream of removing the older UI compat libs to reduce overall app size would depend on library devs also avoiding using those older libs.

The biggest downside I know of is the level of risk of breaking Compose version conflicts with the app using your library, and that's a risk with any dependency in a library project. Compose is a lot larger than most libraries though as it's many sub-dependencies. If Compose remains stable enough, it could work out fine.

I am curious to find more examples in the wild as I am actively weighing this migration as well for certain libraries. I have found one example in the Intercom SDK. You can see in their developer portal that there have been some developer issues in the past like this one, but they have been using Compose in their SDK for a while now.

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

79634689

Date: 2025-05-23 00:26:58
Score: 1
Natty:
Report link

the probem is in URI ,change your URI add ssc instead of only s

Neo4j URI: neo4j+s://53XXXe0e.databases.neo4j.io
//change this into
Neo4j URI: neo4j+ssc://53XXXe0e.databases.neo4j.io
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yash

79634683

Date: 2025-05-23 00:17:56
Score: 2
Natty:
Report link

If you have multiple SECRET_KEYS, go to your project IAM and add these

in the principal named : firebase-app-hosting-compute@PROJECT_ID.iam.gserviceaccount.com

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

79634680

Date: 2025-05-23 00:06:55
Score: 0.5
Natty:
Report link

Based on Edward's comment about the positioning of the y-axis title, I tinkered with Jon's patchwork solution. To preserve the default positioning of most plot elements, I used the patchwork functionality to calculate the amount by which I need to adjust the margin of the smaller plot. This solution works even when the sizing of multiple plot elements differs across plots (in the example, the axis text and the axis title).

library(ggplot2)
library(patchwork)
p1 <- ggplot(mpg, aes(x = hwy, y = cty)) +
  geom_point()
p2 <- ggplot(mpg, aes(x = hwy, y = cty*10000)) +
  geom_point()
p3 <- ggplot(mpg, aes(x = hwy, y = cty)) +
  geom_point() + ylab('blablablab\nblub')

p1_dims <- get_dim(p1)
p2_dims <- get_dim(p2)
p3_dims <- get_dim(p3)

p1_dims_tinker <- p1_dims
p2_dims_tinker <- p2_dims
p3_dims_tinker <- p3_dims

p1_dims_tinker$l[1] <- p1_dims_tinker$l[1] + max(sum(p1_dims$l), sum(p2_dims$l), sum(p3_dims$l)) - sum(p1_dims$l)
p2_dims_tinker$l[1] <- p2_dims_tinker$l[1] + max(sum(p1_dims$l), sum(p2_dims$l), sum(p3_dims$l)) - sum(p2_dims$l)
p3_dims_tinker$l[1] <- p3_dims_tinker$l[1] + max(sum(p1_dims$l), sum(p2_dims$l), sum(p3_dims$l)) - sum(p3_dims$l)

p1c <- set_dim(p1, p1_dims_tinker)
p2c <- set_dim(p2, p2_dims_tinker)
p3c <- set_dim(p3, p3_dims_tinker)

ggsave(plot = p1c, filename = "p1patchworktinker.pdf", height = 5, width = 6, units = "cm")
ggsave(plot = p2c, filename = "p2patchworktinker.pdf", height = 5, width = 6, units = "cm")
ggsave(plot = p3c, filename = "p3patchworktinker.pdf", height = 5, width = 6, units = "cm")

I have a lot of plots in my presentation, so I also developed a more general way of adjusting all four margins across a list of plots

p1 <- ggplot(mpg, aes(x = hwy, y = cty)) +
  geom_point()
p2 <- ggplot(mpg, aes(x = hwy, y = cty*10000)) +
  geom_point()
p3 <- ggplot(mpg, aes(x = hwy, y = cty)) +
  geom_point() + ylab('blablablab\nblub')

plotList <- list(p1,p2,p3)
dimList <- lapply(plotList, get_dim)
maxDimPerPlot <- lapply(dimList, function(x) lapply(x, sum))
maxDimAcrossPlots <- as.list(apply(do.call(rbind, lapply(maxDimPerPlot, data.frame)), 2, max))

for (i in 1:length(plotList)){
  dimsTMP <- dimList[[i]]
  for (m in names(dimsTMP)){
    dimsTMP[[m]][i] <- dimsTMP[[m]][i] + maxDimAcrossPlots[[m]] - maxDimPerPlot[[i]][[m]]
  }
  pTMP <- set_dim(plotList[[i]], dimsTMP)
  ggsave(plot = pTMP, filename = paste0("p", i, "patchworktinker2.pdf"), height = 5, width = 6, units = "cm")
}

This does the job, but it is not very elegant and requires constructing all plots of my presentation in one script. I would still be glad, if there is a way to set the coordinates of the center (or corner) of a fixed-size-panel within a PDF image.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Steph_B

79634676

Date: 2025-05-23 00:03:54
Score: 4
Natty:
Report link

This problem was resolved. It was a coding issue.

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

79634671

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

It should be pattern = phrase("δΌ‘ 桜") or pattern = list(c("δΌ‘","桜")).

phrase() simply splits the string by the whitespace and create a list.

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

79634669

Date: 2025-05-22 23:52:48
Score: 9 🚩
Natty:
Report link

Did you find a solution to this?

I'm having similar issues doing basically the same thing. It seems like an issue related to the usage of npm link.

https://github.com/vuejs/pinia/discussions/1073#discussioncomment-6297570

https://github.com/freddy38510/quasar-app-extension-ssg/issues/379

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution to this
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm having similar issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find a solution to this
  • Low reputation (1):
Posted by: RecursionError

79634661

Date: 2025-05-22 23:32:44
Score: 3
Natty:
Report link

I found a better workaround that worked for me. https://github.com/expo/expo/issues/24652

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Tom

79634646

Date: 2025-05-22 23:14:39
Score: 0.5
Natty:
Report link

The answer is scattered in all of these answers so I'll consolidate (because it could be the same as my problem, more than 1 setting not configured correctly)

  1. Make sure that your default formatter is set.
    default formatter

  2. Set your configuration file.
    config file

  3. Set Prettier Path.
    prettier path

This should fix it, but make sure that your .prettierignore file is also set (just a little bit above the path option).
prettierignore path

If you're using prettier globally vs locally, make sure the prettier path is set to your global install location (you can figure this out by typing $which prettier providing that you're using Linux.

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

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