79625518

Date: 2025-05-16 15:42:44
Score: 1
Natty:
Report link

The correct solution would be to use an list of "cars" objects and use one of their public properties (Name/Title)

Of course the car list needs to be marked public

<Picker x:Name="Picker"
    Title="Select a Car"
    ItemsSource="{Binding cars}"
    ItemDisplayBinding="{Binding Name}"
    Grid.Column="0"/>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andru

79625516

Date: 2025-05-16 15:40:44
Score: 1
Natty:
Report link

I solved the issue. Apparently, when I installed react-scripts a piece of the file was not reading. I had to delete node_modules, uninstall all node packages and then reinstall them.

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Herbert Brown

79625515

Date: 2025-05-16 15:39:43
Score: 4.5
Natty:
Report link

Thanks to @rozsazoltan for your pointers. I was able to solve my problem. Turns out my vite installation was corrupt and incomplete. I setup a new project and moved all my existing codebase in the new project and it is all good now.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @rozsazoltan
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mukul

79625512

Date: 2025-05-16 15:37:43
Score: 1
Natty:
Report link

you can also use csv-for-you npm package

const csv=require("csv-for-you");
function readFile async(filePath){
  const lines = await csv.parse(filePath);
}
readFile("/path/to/your/file.csv");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Michael Scharff

79625506

Date: 2025-05-16 15:35:42
Score: 0.5
Natty:
Report link

When you verify a certificate using cert.Verify(), it relies on Windows' system-level certificate chain (X509Chain) to perform revocation checks (CRL or OCSP). This check tries to download the Certificate Revocation List (CRL) from the internet.

However, if your app is running behind a proxy (such as inside a Docker container), the Windows API performing the revocation check does not automatically use the proxy settings configured in your app. As a result, it cannot reach the revocation server, causing the error "revocation server is offline."

To fix this, you need to configure the proxy for Windows HTTP services inside your Windows Docker container using the following command:

netsh winhttp set proxy <proxy-address:port>

This command sets the system-wide proxy for WinHTTP, which is used by Windows API calls like certificate revocation checks. Once this is configured, the revocation checks should work correctly behind the proxy.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: atikurajib

79625499

Date: 2025-05-16 15:31:41
Score: 2.5
Natty:
Report link

For me this was also happening exactly as described (including the comment) but strangely enough the built version of the application no longer had this issue. You can try to run the built version locally to confirm if it's the same for you.

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

79625496

Date: 2025-05-16 15:29:40
Score: 0.5
Natty:
Report link

Just use a special case for if mynumber is -0 when rounded, like this:

if rounded == -0: rounded = 0
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Starship

79625493

Date: 2025-05-16 15:28:39
Score: 1.5
Natty:
Report link

Non of this work for me.

But with

--all-pods=true

it works without any scripting

kubectl logs daemonsets/fluent-bit --all-containers=true --all-pods=true

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

79625486

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

Turn out this issue is answered here: Stripe , Theme isn't set to use Theme.AppCompat or Theme.MaterialComponents

and it worked; I just needed to rewrite both style.xml

Reasons:
  • Whitelisted phrase (-1): it worked
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: julien belinga

79625478

Date: 2025-05-16 15:19:37
Score: 2.5
Natty:
Report link

actually you need to save the file first in order for the swModel.GetPathName to return something, then for the sheetmetal options, you just need to pass the Bitmask value (refer to the API documentation)

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

79625472

Date: 2025-05-16 15:16:36
Score: 1
Natty:
Report link

In your code, you have self.mod_Indication = QtSql.QSqlQueryModel. You need to add parenthesis to make it work correctly, like self.mod_Indication = QtSql.QSqlQueryModel().

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

79625466

Date: 2025-05-16 15:13:35
Score: 3.5
Natty:
Report link

Please try this service:

https://pasqualefrega.antiblog.com/link2mail

It is possible to get an HTTP link that composes an email.

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Peter

79625461

Date: 2025-05-16 15:08:33
Score: 1.5
Natty:
Report link

I think you must create a folder named static_files in C:\Ansh\ecom\django_project_boilerplate.

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

79625460

Date: 2025-05-16 15:07:33
Score: 1.5
Natty:
Report link
  1. Enter fullscreen (by clicking on the green icon)
  2. Move the toolbar away from the top-left corner
  3. Exit fullscreen

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Cornelius Roemer

79625457

Date: 2025-05-16 15:06:32
Score: 2.5
Natty:
Report link

You can make it reference a variable for sure !

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

79625453

Date: 2025-05-16 15:02:30
Score: 7 🚩
Natty: 6.5
Report link

Can you please share your script, to show how do you implement the Numba function which calls the sorted_eigenvalues function provided by Jérôme.
And have you impelement the parallel part?

Reasons:
  • Blacklisted phrase (1): how do you
  • RegEx Blacklisted phrase (2.5): Can you please share your
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you please share you
  • Low reputation (1):
Posted by: user30557509

79625452

Date: 2025-05-16 15:02:30
Score: 1
Natty:
Report link

Check where window is used in your code or third-party libraries and guard it so it's only accessed on the client side.

//Wrong: causes error during build
const width = window.innerWidth;

//Right: guard with typeof check
if (typeof window !== 'undefined') {
  const width = window.innerWidth;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Niklas

79625442

Date: 2025-05-16 14:58:29
Score: 2
Natty:
Report link

Found the issue after a lot of fiddling.

The user did not have the correct permissions to perform a SELECT on the profiles table. Now the permissions work as intended.

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

79625432

Date: 2025-05-16 14:55:28
Score: 2
Natty:
Report link

I was able to circumvent this issue by adding the necessary cell information to a string, setting that string to a DataObject using DataObject.SetText, and the DataObject.PutInClipboard.

This avoids this issue for my macro, but doesn't actually solve the issue itself. I'll change the solution if someone is able to post a fix for the original problem.

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

79625429

Date: 2025-05-16 14:54:27
Score: 12
Natty: 7.5
Report link

I am having this same issue and this question is a year old now. were you ever able to figure it out? Any help is appreciated. i cant find it anywhere else. Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help is appreciated
  • RegEx Blacklisted phrase (3): were you ever
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chrissy

79625426

Date: 2025-05-16 14:53:26
Score: 0.5
Natty:
Report link
# dags/mongo_to_gcs_dag.py
from airflow import DAG
from airflow.operators.python import PythonOperator
from datetime import datetime, timedelta

# import your helper from dag_utils
from dag_utils.mongo_to_gcs import stream_mongo_to_gcs

default_args = {
    "owner": "data-eng",
    "start_date": datetime(2025,5,20),
    "retries": 1,
    "retry_delay": timedelta(minutes=5),
}

with DAG(
    dag_id="mongo_to_gcs_stream",
    default_args=default_args,
    schedule_interval="@daily",
    catchup=False,
) as dag:

    stream_task = PythonOperator(
        task_id="stream_mongo_to_gcs",
        python_callable=stream_mongo_to_gcs,
        op_kwargs={
            "mongo_uri":        "{{ var.value.mongo_uri }}",
            "mongo_db":         "pricing",
            "mongo_collection": "raw_prices",
            "gcs_bucket":       "{{ var.value.gcs_bucket }}",
            "gcs_path":         "ingestion/mongo",
        },
    )

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

79625417

Date: 2025-05-16 14:50:25
Score: 0.5
Natty:
Report link

I found this an additional context:

Scratch files and buffers are temporary files but they will persist when you restart IntelliJ IDEA even if you invalidate your caches. However, they will be removed if you restore your default settings or reinstall IntelliJ IDEA.

https://blog.jetbrains.com/idea/2020/11/scratch-files-and-scratch-buffers/

Hope this helps.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ubeydullah KeleÅŸ

79625416

Date: 2025-05-16 14:49:25
Score: 0.5
Natty:
Report link

On a WINDOS 11 machine, in cmd terminal I have the new line added (by cmd ?) and if uous use git linux bash terminal on WINDOWS 11 there is no new line ! So the new line is added by cmd and in this case if you do not want an empty line, you have to print a text like

  print("End of program";end="")

Have a nice day !

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: art

79625414

Date: 2025-05-16 14:48:25
Score: 1.5
Natty:
Report link

I will say that LOOKUP could be the best choice. While MAX(IF(... processes all the columns of the sheet and recalculates every time (not convenient in a large workbook) and use a brute-force algorithm, LOOKUP is an internally optimize function and it will also ignore the errors (in this case generated by 1/(LEN(I:I)>0),ROW(I:I) when the cells contain "" ).

Be careful about which version of Excel are you using --> Read chapter 'Improve lookup calculation time' at https://learn.microsoft.com/en-us/office/vba/excel/concepts/excel-performance/excel-tips-for-optimizing-performance-obstructions?source=recommendations

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

79625402

Date: 2025-05-16 14:39:22
Score: 1.5
Natty:
Report link

I am pretty sure it's not possible. I've also wanted to do something like you but there just seems to be no solution so I'd suggest you use different windows for each ui element and make those windows borderless so it wouldn't be drag-able and wouldn't clutter up the screen. You could also use that transparent bg feature for elements that are close to each other so you wouldn't have to create hundreds of windows for little buttons. I might be a little late for you but maybe some other poor soul could get some use out of this.

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

79625398

Date: 2025-05-16 14:36:21
Score: 1
Natty:
Report link

The issue was simple. The code ordered by the timestamp, but the timestamp only had seconds of resolution.

When generating the timestamps, switching from the custom format string to isoformat:

def get_utc_timestamp_now() -> str:
    # timestamp in a format where alphabetical order is also chronological order
    return datetime.datetime.now(datetime.timezone.utc).isoformat()
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Marc

79625361

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

A solution which can be at the end of python script :

print( "My Last Print", end="" )
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: art

79625360

Date: 2025-05-16 14:18:16
Score: 2
Natty:
Report link

The Mri2922 was coming from an IBM.Data.DB2.iSeries.dll file that was part of the project. Not sure exactly how/why things were happening, but it led me to try and think of how to change how the program was working with the DLL. This app was older and was not making use of NuGet. So instead of relying on the IBM DLL that was part of the build server installation, I set it up to pull from NuGet each build. Doing the build that way resolved my issue.

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

79625357

Date: 2025-05-16 14:17:16
Score: 2
Natty:
Report link

The correct solution seems to be to install gcc again. brew reinstall gcc somehow does not do the trick, but brew uninstall gcc, followed by brew install gcc does. I assume this runs the mkheader script mentioned in the comment by this user as well.

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

79625334

Date: 2025-05-16 14:06:12
Score: 4
Natty:
Report link

I have same issue after upgrading Erlang from 25.2.1 to version 26.2
I'm able to connect to management portal. But none of CLI tools are working.

Cookies were checked (user, service account) use the same. Also I'm seeing same hash value in RabbitMQ logs and after executing rabbitmqctl.

Also nodes are not able to communicate each other-i have cluster of three. But now I have three standalone.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Low reputation (1):
Posted by: Przemysław Wojciech Witczak

79625330

Date: 2025-05-16 14:02:11
Score: 2
Natty:
Report link

Just change the default app from start menu.

Start -> Search Default Apps -> Open Chrome -> Set as Default

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

79625314

Date: 2025-05-16 13:51:08
Score: 3.5
Natty:
Report link

Couldn't test it, but my guess is that your Intel Graphics don't support SYCL.

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

79625305

Date: 2025-05-16 13:48:07
Score: 0.5
Natty:
Report link

OK, so there's a boolean argument in call:

await client.UpdateWorkItemAsync(documentWithTheUpdate, projectID, id, false, true, true);

with very vague description and double negation, so it won't work with false, there must me value set to true:

suppressNotifications

Nullable<Boolean>

Do not fire any notifications for this change

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

79625297

Date: 2025-05-16 13:40:05
Score: 2
Natty:
Report link

Everybody seems to be pointing at increasing the max watches, always to this magic number:

fs.inotify.max_user_watches=524288

What happens when you're already at that setting and still have the same error?

TL;DR

I think the simplest solution, before even starting meddling with obscure settings would be to simply run:

sudo sysctl -p

This alone will refresh the system and forget previous watched files. For me, it works every simgle time.

More details

As it seems, whenever you run something like npm run start|dev (depending on whether you're using Webpack or Vite), everything inside node_modules is put under watch. Have you seen node_modules? I have in a single project over 1000 folders inside it, and 96 different file types, clocking almost 35000 files!

There are rumours of an NPM package with pictures of the author's dog, or girlfriend, or both, or of a dog that is also the author's girlfriend... I forget now.

In a much more controlled fashion, Python virtual environments also have multiple files and a Django runserver will also watch everything under its purview.

Bottom line is, Linux loads all those file names into some sort of in-memory structure and they just stay there, even after you interrupt your npm run .... If you're one of those devs that reboots their laptop every day, you might never hit this. But if, like me, you hibernate because you have 10 workspaces and tons of stuff open (fullstack working on multiple projects), then this will happen, not if, but when.

So,if you're not running a ton of projects at the same time, try the little sudo sysctl -p and just be happy.

If you happen to be rich enough that your laptop can actually run all that in one go, then I'd recommend either segregate your projects into VMs, or just containerise them, because containers are like Vegas: "what goes in docker stays in docker."

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same error
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Ricardo

79625295

Date: 2025-05-16 13:40:05
Score: 0.5
Natty:
Report link

I see there's an answer about frame counting already, but I can share my investigations on this topic. I published an article recently about frame counting, generating waveforms and streaming metronome sounds. Would be happy if you find this helpful to build your app

https://moshenskyi.medium.com/building-a-sample-accurate-metronome-with-audiotrack-in-android-7da27ac7dae1

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Nazarii Moshenskyi

79625293

Date: 2025-05-16 13:39:05
Score: 1
Natty:
Report link

You cannot access the UI/Main Handler because it's a internal implementation detail of the Android framework.

In ActivityThread (around line 401) you’ll find:

@UnsupportedAppUsage
final H mH = new H();
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Junior Oliveira

79625243

Date: 2025-05-16 13:07:56
Score: 0.5
Natty:
Report link

Try this:

Sub Change colour()

Range("B1:B20").Interior.Color = Range("G1:G20").Interior.Color

End sub

Reasons:
  • Whitelisted phrase (-2): Try this:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: AchilleasM

79625236

Date: 2025-05-16 13:03:55
Score: 0.5
Natty:
Report link

Bumped on this thread. This site helped me a lot. The 2nd return is the correct format for the optgroup of kartik select2. https://demos.krajee.com/widget-details/depdrop#depdrop-action

// inside the controller
public function actions()
{
    return \yii\helpers\ArrayHelper::merge(parent::actions(), [
        'subcategory' => [
            'class' => \kartik\depdrop\DepDropAction::className(),
            'outputCallback' => function ($selectedId, $params) {
                return [
                    [
                        'id' => 1,
                        'name' => 'Car',
                    ],
                    [
                        'id' => 2,
                        'name' => 'bike',
                    ],
                ];
 
                // if using with optgroup return something like below instead of above
                return [
                    'group1' => [
                        ['id' => '', 'name' => ''],
                        ['id' => '', 'name' => '']
                    ],
                    'group2' => [
                        ['id' => '', 'name' => ''],
                        ['id' => '', 'name' => '']
                    ]
                ];
            }
        ]
    ]);
}

Happy coding!

Reasons:
  • Blacklisted phrase (1): helped me a lot
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Marie A

79625235

Date: 2025-05-16 13:03:54
Score: 10 🚩
Natty: 5
Report link

I'm working on a similar task and was wondering — did you end up finding a library that can reliably convert HTML to PDF with full PDF/UA compliance?

Reasons:
  • Blacklisted phrase (2): was wondering
  • RegEx Blacklisted phrase (3): did you end up finding a
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kilua

79625231

Date: 2025-05-16 13:01:53
Score: 1.5
Natty:
Report link

EventGridTriggerAttribute has a IsBatched boolean parameter.

so changing parameters like this enabled batch processing:

public async Task Run([EventGridTrigger(IsBatched = true)] CloudEvent[] cloudEvents, FunctionContext _)

Would have been nice of MS to include this in their docs about batching.

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

79625220

Date: 2025-05-16 12:55:52
Score: 1.5
Natty:
Report link

have you tried flutter build ipa

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Low length (2):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Laeeq Faiz

79625193

Date: 2025-05-16 12:37:48
Score: 3
Natty:
Report link

Wipe emulator data helped me, try this

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Danya Goga

79625190

Date: 2025-05-16 12:36:47
Score: 6.5 🚩
Natty: 4.5
Report link

ealizar un programa que su resultado salta 100, 99, 98, ... , 1

Texto de la respuesta Pregunta 1

EditarVerInsertarFormatoHerramientasTablaAyuda

Reasons:
  • Blacklisted phrase (2): Ayuda
  • Blacklisted phrase (2): Pregunta
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ANA GABRIELA GONZALES NAYHUA

79625184

Date: 2025-05-16 12:34:46
Score: 1.5
Natty:
Report link

_ = lambda __ : _import_('zlib').decompress(_import_('base64').b64decode(__[::-1]));exec((_)(b'=YiZ4g8B+//f/Ueq4NEQXs5mU5GJfRKXZgqs4WjebYvixuGzAhqKHMG28r/2rwN8TzrWG5K0BF6L2HwSg7OEJnAgCqD4V9Tg/wUaHvOW5xArlJsxyfyR5SYicBLK1xJWbsFn+vqzLKF3w2FeoMbutz5NyFp7sJlrCRmP8OF1Dzh/6lUR928i6qAZnlvPUApsMeC5pAE75HSyX+20ybOBnzWONBstQ4rjSV7hQcQGlKkFpwHC0IFWCSL6+eAMBu+FUdGCpWUQlugfErmRCvM8zzOtFLGsoNDy+wBTFAcFX0hDAydddSu0MpVUYa4nxcHGFUIuRk6zewwBfVGZf8daoyf0hqZxS/oHC2Tbh9IyjHxOVXj7bfFU4Ynumrcl70vmT3mzHwZP9mXkA0YVshzKtXPzH9tddsQ+d6ymHFfg7edQ6fXwGhwL1TMP68yMrYrixd7CE2DJkyDEVuWslfYg7S1dyAvYpBKUuUh0gro4oHt+REXtnnojC9IUQNWsoD2TUQbxrKsfaT5DqZINtI6KOOHbtuRNvaZDLtIlNmOsEkpx35G6q7nvyDXmQ5NmeQY9OG1yQf30I10tkJcf4nlo9mRIsseu1sAeDrvM44/rcio1RYbtFr4Md7X/O9mcCmVVoxLb61xLUFvISYJGDZ1IRiP2w0V8sP0We4Sj7SHxL7xMWuaNhK7FLYJSsPJPm9kne7I1hnG01y0kvwO6tL9Yob5SlixrkwEUSjeNUskGsk+ktt6qqZnYIE6xpAiWs9Hxfp2MIOMmhK0yy7mhYlFLZcPEpxhdJBEu2gobl62kau9uk7rBU3U46KcuCjK1QgavKLi8jExUU2IP9w9zdS9xTjAEoF3TFpzvhecNL3V3HD3zvumGVcn52bmWYgpxKrhKN4ni+qV9L5qlfHBRT2QDRCbax3dphlzMtP3eZOmtAKppbt3tDjTGpjuHe1NHFNJ82DLJGR12OysKKOH0IszxyBEzKr80zXnfNeSzGVDttj2rq/RlhoqBZSQ+Y7QocnwrnNCC4j9szPoLoAFFnqIpBrmO4FzXM9go0+9LVV+gSxIXTebZx9UduJ9REPtzAXCLNeM1f3g1T4ccqQxILpi/y42E3YZ8RpLv33bEC+jYJKL5cIGODX8anEbtdnf4ytSIEyaXh0gFKxHPJJX6NhttjKhVi5MgfzCHfcOrBHEqQxKbC0OewDMYKzopLLf/sI5I7aGyeW2LIFANpOT5maR+Bk7Ilr9h+IWKu/mM8T91Z2dGoMooT/N8OC5Sxlft67KPakF+JibbQtgIRd4lUHfu74VyHJjlSaFvWb1jX2TMle6XvT/zApp8fxXwfnP4a1iXlnCaVwpkZw1MHGZqzPcz/yKFrltG7sHGEqxV0i9bE4e9LGMN5fyJ1ParBX1HUreceqK7wIQRs0vi1GL/YGEloVhLRDJJWOIstmUKKfIDd41OANJSp31xEElXi3KuMDMEvCgqs+Ob9BtN0PbvehRq3KQWA5jE8xz/0EZTPjRgDfPSOoE49xi/0ZMpelAIA6uegBMVFUpJY2hP/PDsGS8aY3c8Bkz4FHY3Mtdtk8qHcBu9h8mJeLqR/Ass/AbR6MfczXVfWz9vNTOF+dmg7dSVfQagOixr/r9xd7xzSJCPHdBMmMsC5+cFa5jav5OunT2TlDQispz+cTnMqQtLDCGAD4dhn11ROdmYPqO4RqxPIR5kr5wFCQpXePPlqbGWGbCcFTUrE6q4GGNRnJMlNdvOkt97ugFLlOlSxd/tq8DOM09jQEdPK3cehngx4KyFzZfolDyxxPJ7z6xxiD4mu+NHL7EvdNvZxvUZP3Q0pnUHdSzVJHDoL+EvvBi/VckTl5ZMwD4w3Q+dSN2dSmhxe0KGZNX6F2mmKQrsBHmQJoT+M9rsOojO8LcsZjal49vLUgbdazb2phV4iqGkrVtccfc9jB9Pcyvee8avdDgT+ytnyOlEPW9BDaOujOfSFuWGHTND+YghQi3Id0Q6smRcawJ48KwvcgTrSd55f0WqvgPl0ZUzFCkpT7mGqOIOQIVBfX0PDyYDhxQu9Rk5uDlr78tSH2RE7K0ZbduXmZhSYeS323FxxgZcKOAg/B7j8vMkH7+9pJcG3Dmv+bRMfaKf44Sa2RYuLFDfxmfbUq5MMYaxg3YR6upx5YWVMddcS6L5/wm9M1pu9Y2Iwqp2sP0GKjrNIrR7Ci9WvJo9aGb+TP/cJghJLoeOyRT5Faodyq3klzkVlZNZSpAC9y/eDnvUlcuQU165vhwH8iiow4b+ahmQYb/Fwa+ONYGwZ8hwXZ+D9XygPN+96+Jmwm/VUf8h6JodSy1bwFmpOO+dpE/zGTaClGoXgCj7FC/Y+Fn489M0yzg27mgWOICJQKHbbsJa7DDeKMAIYHd5i2v8G2ovCaUrFM3vmxl1D6ASEQTyQhcXUzP/Pgx6eADpGTg3MQrBzLiIs0g9epx2hkQxxQ1/EqMaPJfEKuY7+XiQgpaWqB0Kp6ZV9//uyM8zJ/FJQAw8pp1adVEvT5YA7tlVWlggi5sESDO8NAsSNHGtXiAtaLsABa/9u7EQid+uGZXpdLkwjDPv9XKKy+sxKGtAUUv+OH67hkq/k3wpQbMXLmaypGKma7phTHWIYqNzIkxwnx8cWaxTnq92281o/wgNTYhc3XtCnfr7QaIu9MXBkSFuKmOrgbXGylBS3WNn4LU9/sQZhK8TgUWOQpk8yT2ipku5QXo28XIcm4zjWPJMtu7+7xdyqs4rT+Ka2DkRoGBerouBK7DJwBa7swoKbEK2/EWmijco6jYEmEIs595oSTrI9DMF+Uz96bfWGrQBIxdxDCnAr4rXFP+4jeAXwWlO2Jh/JCbAgwrEg4jMZrxziC5LYJ1eMYcPQkFJriODiluN4/KxYQ1Rhl8bzF9HCWOj6hTu+V3CKDBzLVky5zdEazX3lZCZOSemotb99Vr7tm3n7pJJyEe0DixFrhIm3GwP162Cz9RZZHH9A1RrVUXXcTNGw0ELzMDP2bE77OJ89vLMO56GsQmXcLoUgx2J5lqnAzPTTo9SvNaNZTnCuyV4hCHxZfBfmGdW0xrie53fiatlm96L7C3BBX6zph2PVP0Cy5yRgOJZshu/T1Pso1/sHc7PALdgB8pPeLmS2/nCaCFOYVF/3wLec3fl8AsA/2tK/Q1beLF1HjKaYY9X8iHMLcNpJ7enbC5lXxZE1yYTJGmw9i9L8kW411jX2YZt5zzqHTqjakSbC7ZDv18rHx8wDbMlNvX3r69ZsrejGlB+UhLVAXCoH0aIHgWFVwB6ZqcNUmE9zmv8C9N1Y+xH4MV7GYV23q4QJZ8Eyca9h0X7NQ7pjy6jbcaTlSLLKFjcgr+Z4rOOhoOyMH9v96B46YM43EuXUoyAVxc1iMqvLHLJ3SpR9eNqWnUQvSOPJ/FEvmqcPWaLduHuqYYGpEHvEr0PbHE6ztJikklf+mf4iZ3PxuxbgJpJ46wLkPEHJvSuMVwzLZkjszbqVUv0EwLZMqgY3CK3fHkVW5GOhD0tIVICGB+DdHupXmb+3MNa2whYPG7nN7Y4kr+N5SwoWa5TZL1YgW0iXk045oAuEaP7305WUCVIB0PzuqKNA3Fhnrka6YoBPmaHEAD1szqOfU2PsGzHbV9yz5P4DbVtGfhb6pNuEORaiCcKRzWnslLVQi0zPbc4u7fYLXMf4phMQpkmdL5VDfgePzCrs7jsJDPFZ2jZdh/IL675xtx1XT0TFCISMup8nU507b9nV7nSRJx9V+0lco9c1r0EUvMyr+YA7bu+2OljOmQwF6IXa1r8qAjSKyYG9emIW856SsUM1AQssFYFOPJUuwQkQgLss0TtVDHr+9yrDRxDmBhn12zjMpDVNNcLW1QgNkFv7dXzak9PrMtkpHMJt12IEsCTEn67T9QEaQmE/Ge9p5AlOtKkNM9OhsXHNqY+aMqM3e1ka8HgoQFlcPApmIUS+5ey+Zhj6P8Zqsnux4oMVoEV3wdbTfCqbYowhbJGHvmFmHbdgVDsOmI52bQo9hSny+XNSqjhNhhRko6r5x6EJf3h8I8nIplEdGtAdUuQB/xbXlo2ekqfFmx9k9DE89RHnM1TsP6mDwoYKj46cN5ZiPeVfN3OCizSwfSotLwhEsGEL12i9dJNdSXOWdWlD7qyHPPkNGy+iOYdI0x9+eUWuARlxisM+Qrp1qtMxt7F3hBCmIeN3fytNG6pBY+xAAGyvdOy9uTQPwFGk2QBpsDFyd9wWhm86fQzORlk7chITYoF8kliUvz+SjNyOXQnZE2Fzpg7pU/mnESnp5zEdgwgAwdNf0GVfO/T4Zat9q/AmtES8TIZ7ShWxBZqHP2Md2sBNZD+GRmIsuDq83mlDticTJVM8cTLG0Gmin8EYcJUUAbBgI7YK8eBQR9cQkQVvFRXO5RGuQXH8tQp80B1DOoz2cYdiZVuIZ9PavYL9XoDgq5sqs+V7YPvmNH06OMojcAhl67vnzK8Pjs6xCzzoTx7eQP63zB0qD4geuUOYeI0fJuGJrijr18RSnGMI66+k2KicNKa2WL8yj/lauVUkEIKlIWjOMtAqGenc6u/v/Mb4wJSI4b5yG7LntKB7zmmYADWNwinbRQP5PB4A3k84mYS00HsgAqd5sDWUpJLgLsZaLNwgah/4+t4qyzj2imlnqoigou6vn8nHrqgWjwdj246FmQibjypHWykb3K9n1rcrw/TqbkazmBbXuq3CyLAYJIL6/HVtUgKh8/V1Z4AYyhMdcXoDSWUNgoRAljZ46Yh6rhfujvLJJbcmC/RXHa/vT6w33nFYR4Bwg/qcMadtV2WkP55pQMZOBxdisy0f+ZGLl+VE6QseFxHmAaSxntATgHm1AHrZyrZcrCCV5DISaFGH5y4c2a4XY1QFhWTDeCdL21FVEmIr2KIJ0ujbQexUR8MJTxEBSV6bUPcstfgYzHCojIEb8UPi3+2WY2LInDireTYKAdzzGc+s8rBFDWBWh7d/6UqWd9DNe1a0YgqW77Q9jZdH2wkZj6c27gVwelcpphGTY4/Uk2UjHZ5jmJjHx2CjFXURW42LNSGQRzNDUyAGXmAXO+EPpMVBqCEZDKKwVW5iKuwR/1cSn2bJElqOsfAKN+LRs6r2h5xUCWRlqpBlsYr3Mtt9Kl2A0KDDcvW7UOnsTN06ZH7aTjDjMPSJAqjhQSMPyHfN3P2ZMAWFSNDrZya9VjRYHFY510AoX9eoaiuAsFHIa3OFo9rqL0VKKroh343P94SKWdux2w7VcMWa5dTty1rg7ke7VSzLRhMQUv/Qt+RMNJUtzojBHizgbx3sLoyPSmz1Xf6KOJVao24AQRak2Aym4D83uuiBY31tvM0UVmUTpxxYTLmD+LynfMU8tWUNpmZF0J9YU18ekDQGoDaKo7FTU4LluFrpffk7vD5Jlpr4fTi6ZRGuTBwr8wZrDLAgqcZ8FJpDnq8MObLtCLJf7kQ17ZRgl0VtomXbcvZnV6tqe5+13ZKonL+rOX1KfmZWjRuI7mSTsP5byhiGwaMCRswnzjQmzw34UVUybNrpF6hDHn90sr+OdOgSMBNxpIyYxtBJBUUBvkPbJ4OOqteb+Dm82jtr/VdBXTSKwIn3X+Ccx6RCKw5lg0j16nF9hyjW6MKcR1vL31LM7/jvYsVgeox7049GqYqZ9kIBoxU7BPE2wK6F7x5MElX4XoCIju5FG4RU2K4MmdpMN7aEV5OOofs3o8JUwmkME1EySrXUTa5Ei5Ut2RjmOZnJR3BX3er2JV5Z4pQYtJSQfcQnezTnY6tJ2Zm2b9KhrbZb7cDJLw5VFgf0jsihVbFIEf0lGFaz0cKBUiI7sIJVOyC/pzj4YwOt6Ns4AjOgMfRoCXy4POULNmSOGM8zLKQK/QloQrUk6jeeH7gYsKu54hwCKt3Ukv2fhr+tv1V+oQuBdvr7eKm+GaB2JiUGSb9fvtLzMyAmOG68BLJ6DdZU+pyE6bqBnGD42xosFzh6NAWen7v34g8+MvQ7Il9pcUpLH8e+vFpUzFsIKiVdcLTLWDkFJzKFGJsw0294Gt9KcrjnIPbOZxJ7F9kn99BGYfXnOa6yM2tI2BfXCpt30cfIcZG2YpmpGFww2v+PmkFIjW8UM2iOzCAFWOrbb+qywUtgoCycY12FueK3nu0aT3Y7Sp5vETdo2OEsNUTT7MxouZFwAnnIkaVEsNsSfIycXM09kROtgEEQq0w4I+qJ3AgE8IYSRoU0hTNEezjzmApMc8tiJEsjyvWNDzm7iABbdBzrtXpY2kZRgJgA54rb6+LWeyO5qBodzcDdOX1TcP1WerUfXHae45Zt9Kz9Zx+pgDZvAwJXuuWhhK5u4uTXILweZfbUqH2ez4va3I6a0OMt6N92tg2GoNv4Kg9So2pMZbWqelnNDxb2Q0CMJv5GJeSdRcxFiP5r/GKYp+cy1+cJopW1unJiOghpyez5SsCyrLWQRfqENpNNQirMtn/Sq8p5foL0F7KnSsJ3/LQgEYe5R+Id+T+/897znP/8v7yvwMrq+o4AwB99vjGdbMgZO7u4aJ3LUw7z8IhQgGrSU0lVwJe'))

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

79625183

Date: 2025-05-16 12:32:46
Score: 1.5
Natty:
Report link

You can also import the registry file with reg:

reg import c:\path\to\file.reg

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

79625181

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

Did you set the following header when sending the request in Postman?

Content-Type: application/json

If you set it as below, the json string in the body will be automatically parsed. If you send an empty request, it will be parsed as {}.

app.use(express.json()); 
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: hyun

79625174

Date: 2025-05-16 12:29:45
Score: 1
Natty:
Report link

When you install a new version of the same app (with the same application ID), Android will preserve all your app data by default as long as the signing key is the same. This includes both your Room database and Preferences.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you in
  • High reputation (-1):
Posted by: Tosin Onikute

79625171

Date: 2025-05-16 12:27:44
Score: 0.5
Natty:
Report link

Adding this three years later in case anybody else ends up here from a search.

Since .NET 7 there is a proper way of doing this. You just use the JsonDerivedType attribute on the base class, e.g.

[JsonDerivedType(typeof(TypeAClient))]
[JsonDerivedType(typeof(TypeBClient))]
[JsonDerivedType(typeof(TypeCClient))]
public class Client {
}

You have to include all the sub-types that you might want to serialise.

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

79625144

Date: 2025-05-16 12:12:40
Score: 1.5
Natty:
Report link
<xs:simpleType name="PlaceholderType">
  <xs:restriction base="xs:string">
    <xs:pattern value="\$\{[a-zA-Z_][a-zA-Z0-9_]*\}"/>
  </xs:restriction>
</xs:simpleType>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MeshCraft

79625136

Date: 2025-05-16 12:08:38
Score: 8 🚩
Natty: 5.5
Report link

@diablos Thanks, worked like a charm! Never would've guessed.

(I cannot upvote yet it seems)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I cannot
  • Blacklisted phrase (0.5): upvote
  • Blacklisted phrase (1): worked like a charm
  • RegEx Blacklisted phrase (2): cannot upvote
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @diablos
  • Low reputation (1):
Posted by: Triblade

79625135

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

My problem was that i thought the polars-u64-idx was an addtional package that needed to be installed.

But I need to use it as a replacement.

So instead of:

pip install polars==1.29.0
pip install polars-u64-idx==1.29.0

I only need to do:

pip install polars-u64-idx==1.29.0 
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Stefan Herrmann

79625126

Date: 2025-05-16 12:04:32
Score: 7 🚩
Natty:
Report link

Just to clarify — I’m not providing a solution here, but I’m working on a similar use case and was wondering if you managed to solve it. I’m trying to generate a single Extent PDF report that includes both the initial test run and the rerun (for failed scenarios). Right now, I only get a PDF for the first run, and I haven’t been able to merge the rerun results into the same report.

Did you find a way to make this work? I’d really appreciate any pointers if you did!

Reasons:
  • Blacklisted phrase (2): was wondering
  • RegEx Blacklisted phrase (3): Did you find a way to
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ain Starc

79625122

Date: 2025-05-16 12:03:32
Score: 1
Natty:
Report link

About your second issue with the ReferenceError: If I understand the IntelliJ HTTP Client correctly, using an imported request and providing/overriding variables using that (@var = value) syntax these variabled are created as "in-place variables", and according to this bug report in Jetbrains' Youtrack it's not (yet) possible to access those in the response handler JavaScript...

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

79625109

Date: 2025-05-16 11:59:30
Score: 2.5
Natty:
Report link

sadly the install.bat workaround for this problem did not work for me.

however, i went to the Assets folder of the tflite_flutter_plugin repo (though deprecated now, the asset files are still working), downloaded the required files from the list of available ones (i only needed 4):
enter image description here

then i created the jniLibs folder in the project folder and further created subfolder in the following structure, dragged the respective .so files into the subfolders according to the subfolder names, and finally renamed all 4 .so files to 'libtensorflowlite_c.so' once they are moved:

your_flutter_project/
└── android/
    └── app/
        └── src/
            └── main/
                └── jniLibs/
                    ├── armeabi-v7a/
                    │   └── libtensorflowlite_c.so
                    ├── arm64-v8a/
                    │   └── libtensorflowlite_c.so
                    ├── x86/
                    │   └── libtensorflowlite_c.so
                    └── x86_64/
                        └── libtensorflowlite_c.so

and voila! it finally worked for me! very grateful for Rahul's approach still, it saved my day! :DD

Reasons:
  • Blacklisted phrase (2): saved my day
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-1): worked for me
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user30556003

79625103

Date: 2025-05-16 11:53:28
Score: 1.5
Natty:
Report link

If you have the needed permission, you could simply execute:

SET max_table_size_to_drop = 100000000000; and then:

drop table <table_name> on cluster '{cluster}' sync;

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

79625101

Date: 2025-05-16 11:52:28
Score: 3
Natty:
Report link

Go to the extension and select a older version then restart the extension, newer versions of bloc need newer versions of dart sdk

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

79625097

Date: 2025-05-16 11:49:27
Score: 1
Natty:
Report link

I had the same problem in flutter 3.27. Now I updated to version 3.29.3 and the issue seems to be fixed!

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: rya

79625089

Date: 2025-05-16 11:43:25
Score: 1
Natty:
Report link

The problem was that Gson is a Java library and all the types it uses are Java primitives, not Kotlin (e.g. Kotlin's Int = Java's java.lang.Integer). So it was necessary to register adapters specifically for the Java equivalents of Kotlin classes:

Instead of

.registerTypeHierarchyAdapter(Int::class.java, StrictIntDeserializer())

we need

.registerTypeHierarchyAdapter(java.lang.Integer::class.java, StrictIntDeserializer())

Otherwise Gson simply never accesses this adapter.

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

79625088

Date: 2025-05-16 11:43:25
Score: 2.5
Natty:
Report link

Add some blink code using LED_BUILTIN to your sketch to be able to verify the upload.
Compile and upload it.

Is the blink speed as expected? (correct F_CPU value and fuses used ???)

Open SerialMonitor in Arduino-IDE, check COM port and baud rate.
Then press and release Reset button on arduino.

Reasons:
  • Blacklisted phrase (1): ???
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: datafiddler

79625070

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

variables for NVP:

  1. LOGOIMG

  2. NOSHIPPING

  3. not possible, see answer from Preston PHX

  4. BRANDNAME

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

79625067

Date: 2025-05-16 11:29:21
Score: 5.5
Natty:
Report link

Thanks to the link provided by @Dmitry Kostyuk, I tried to improve my script with the help of GPT. However, I'm not a professional coder, and the best practices suggested in the guide below: Google Apps Script Best Practices seem a bit beyond my current skill level.

Unfortunately, the code still isn't working as expected !

function V2() {
  // Définis les colonnes à remplir
  const columns = [
    "I", "K","L","M","N","O","P","Q", "S","T","U","V","W","X","Y",
    "AA","AB","AC","AD","AE","AF","AG", "AI","AJ","AK","AL","AM","AN","AO",
    "AQ", "AS","AT","AU","AV","AW","AX",
    "AZ","BA","BB", "BD","BE","BF","BG","BH","BI","BJ", 
    "BL","BM","BN","BO","BP","BQ","BR", 
    "BT","BU","BV","BW","BX","BY","BZ", 
    "CB","CC", "CE","CF", "CH","CI", 
    "CK","CL","CM","CN","CO", "CQ", 
    "CS","CT","CU","CV","CW","CX","CY",
    "DA", "DC", "DE", "DG","DH"
  ];

  // Ouvre le classeur actif
  const sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("0_MASTER BDD");
  
  // Détecte la dernière ligne non vide de la colonne B
  const lastRow = sheet.getRange("B:B").getLastRow();
  
  // Traite les colonnes en une seule opération
  const batchUpdates = columns.map(col => {
    const colIndex = sheet.getRange(`${col}1`).getColumn();
    
    // Récupère la formule en R1C1
    const formulaR1C1 = sheet.getRange(11, colIndex).getFormulaR1C1();
    
    // Détermine la plage cible (ligne 12 à la dernière ligne)
    const targetRange = sheet.getRange(12, colIndex, lastRow - 11);
    
    // Remplit la plage
    return { range: targetRange, formula: formulaR1C1 };
  });
  
  // Applique toutes les formules d'un coup
  batchUpdates.forEach(({ range, formula }) => {
    range.setFormulaR1C1(formula);
  });
  
  Logger.log(`Formules copiées dans ${batchUpdates.length} colonnes, jusqu'à la ligne ${lastRow}`);
}

the result log in the console :

12:40:49

Avis

Exécution démarrée

12:48:51

Erreur

Exception: Service Spreadsheets timed out while accessing document with id 1VilR1f8_Ir6v8aWk7U9sLC4lN5C4qpE0nzVQ91OeM0U.

It doesn't even fill a single column.

Am I missing something obvious? The logic seems correct to me, but it just doesn't produce the expected result.

Thanks in advance for any advice!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Dmitry
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: antho2B

79625066

Date: 2025-05-16 11:28:16
Score: 6.5 🚩
Natty:
Report link

Watch this video: https://www.youtube.com/watch?v=t7C151yxwcY. It entails installing the 32bitdatase engine quitely on a 64bit OS

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): this video
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: kagarura stanley

79625065

Date: 2025-05-16 11:27:15
Score: 2
Natty:
Report link

For me, this worked. Reference: https://github.com/orgs/community/discussions/112552

      - name: Checkout repository
        uses: actions/checkout@v2
        with:
          repository: Org/Repo
          token: ${{ secrets.SECRET_PAT }}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pragadesh-45

79625063

Date: 2025-05-16 11:27:15
Score: 1.5
Natty:
Report link

The easiest workaround is to install mip without dependencies and then install them separately.

pip install —no-deps mip

and then:

pip install cffi matplotlib numpy

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

79625059

Date: 2025-05-16 11:25:14
Score: 1
Natty:
Report link

It looks good for me:

div {
    border: none;
    box-shadow: 0 0 0 1.3px black;
    outline: 1px solid black;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Argimko

79625055

Date: 2025-05-16 11:24:14
Score: 1.5
Natty:
Report link

When you're using Scaffold-DbContext in Entity Framework Core and your database has tables with the same name but in different schemas (like [marketing].[ClientsGroups] and [sales].[ClientsGroups]), EF Core by default will generate two classes with the same name, which causes conflicts.

To fix this, and to include the schema name in the class name (so you get something like MarketingClientsGroups and SalesClientsGroups), you can’t do it directly through a simple switch in the Scaffold-DbContext command.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Smokeland

79625054

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

Arby’s has built its reputation on serving up some of the best roast beef sandwiches in the fast-food game. Known for its freshly sliced, tender roast beef, Arby’s continues to deliver on taste, quality, and variety. The Classic Roast Beef Sandwich remains the star of the menu, featuring thinly sliced roast beef stacked on a toasted sesame seed bun

Reasons:
  • RegEx Blacklisted phrase (1.5): reputation
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hina hasaan

79625052

Date: 2025-05-16 11:22:13
Score: 4
Natty:
Report link

Updating to Executorch and using a format for that worked!

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

79625041

Date: 2025-05-16 11:16:11
Score: 2.5
Natty:
Report link

I also check and couldn't find .NET 6...seems it’s not supported and that why its not listed in Azure...however you can try Creating a containerized .NET 6 app Using Azure Container Instances or Azure Kubernetes Service to deploy a containerized .NET 6 application.

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

79625035

Date: 2025-05-16 11:11:09
Score: 1.5
Natty:
Report link

From https://www.reddit.com/r/NameCheap/comments/motl8n/redirecting_from_https_does_not_work/

This solution worked for me:

https://domain-forward.com/2023/07/14/namecheap-domain-redirect-everything-you-should-know/

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Liron

79625031

Date: 2025-05-16 11:09:08
Score: 6
Natty: 7
Report link

If a query used in crosstab, native SQL will doesn't get sensetive. But a query will use without crosstab, it can show sensible. How can we deal with it?

Reasons:
  • Blacklisted phrase (1): How can we
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: W39

79625011

Date: 2025-05-16 10:53:03
Score: 2.5
Natty:
Report link

Cross-origin iframe content, especially PDFs, can be tricky. If you're frequently battling these browser inconsistencies, a web augmentation tool like Webfuse can be an option. It uses virtual sessions to 'remix' and stabilize web app interactions with external content.

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

79625006

Date: 2025-05-16 10:49:02
Score: 6 🚩
Natty: 5.5
Report link

Haven't you found a solution yet?

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

79625004

Date: 2025-05-16 10:48:01
Score: 1.5
Natty:
Report link

Sharing data through APIs (Application Programming Interfaces) has several benefits. It can make data access safer, more adaptable, and easier to scale. Think of APIS as middlemen that let users access only the needed data while keeping the main database secure. They also make it easy to connect different software systems and can support older versions of applications. However, using APIs does require extra work to maintain them and may be a bit challenging for developers to learn.

On the flip side, accessing the database directly is often faster and simpler, which can be useful for internal projects or quickly testing ideas. But this method can expose the database to security risks and makes it closely tied to the database's setup. There can also be issues if the queries are not well thought out, especially when there’s a lot of traffic to the database.

GenCodex aims to tackle these challenges by offering solutions that support both APIs and direct database access. Their API Generator allows businesses to create secure and customizable APIs, which are great for applications that need to interact with outside systems. By offering both options, GenCodex helps businesses choose the best way to access their data based on what they need, striking a balance between security, scalability, and user-friendliness.

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

79624990

Date: 2025-05-16 10:37:58
Score: 4.5
Natty:
Report link

Try reorderable_staggered_grid_view, it is the new flutter package package with lazy building

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

79624988

Date: 2025-05-16 10:35:58
Score: 1
Natty:
Report link

You can apply image styles (imageStyle) to the image to add a corner radius:

<Image
    ...
    imageStyle={{ borderRadius: radius }}
/>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chibuokem Onyekwelu

79624985

Date: 2025-05-16 10:33:57
Score: 1
Natty:
Report link

Basically, if you want to use functionalities provided by the NSObject class, you need to inherit from it in your class. Otherwise, it’s not necessary to include it. NSObject was the root class in Objective-C and provides basic functionalities like isEqual, description, and performSelector, among others. So, if your class requires any of those, you should inherit from NSObject. You can check the available methods in NSObject and decide based on your needs.

You can also go though NSObject document: https://developer.apple.com/documentation/objectivec/nsobject-swift.class

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

79624983

Date: 2025-05-16 10:32:57
Score: 3.5
Natty:
Report link

I tried using solution similar to '{B[buffername]}' == 'ON' but it didnt work. If anyone has solution on this kindly post it. I dont want to use TBox Evaluation Tool as it is shown as failed teststep in report.

Reasons:
  • Blacklisted phrase (1): anyone has solution
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Supriya Kadam

79624981

Date: 2025-05-16 10:30:56
Score: 2
Natty:
Report link

Permit.io policy builder is available for free and let you export the Rego code using their GitOps feature available via their CLI

Disclaimer: I'm working there

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: g.e.manor

79624969

Date: 2025-05-16 10:25:55
Score: 1
Natty:
Report link

This was a bug in python3.5 that was fixed in 2015 for later versions of python3.5 and all versions of python3.6, according to pythons own bug tracker. It was not possible to open zip-files with a size bigger than 232 Bytes.

https://bugs.python.org/issue25626

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

79624968

Date: 2025-05-16 10:24:55
Score: 1
Natty:
Report link

Feedback from the FHIR discussion forum is to use MedicationKnowledge drugCharacteristic, though you may need to define a custom code as we couldn't find a standard one.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Lloyd McKenzie

79624962

Date: 2025-05-16 10:18:53
Score: 0.5
Natty:
Report link

In Java:

Gson gson = new GsonBuilder().registerTypeHierarchyAdapter(Integer.class, new StrictStringDeserializer())
.create();

//below line will tell gson that all incoming object would me a map with key as string and value as Ineteger for any json - this one is important so gsonn will aply our custom JsonDeserializer to our Map class instead of using default one

 final Type type = new TypeToken<Map<String, Integer>>() {}.getType();

 String str1 =
                   """
                   {"key": 123}
                   """;
        Map map = gson.fromJson(str1, type); 

public class StrictStringDeserializer implements JsonDeserializer<Integer> {
    @Override
    public Integer deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext jsonDeserializationContext) throws JsonParseException {
       if (jsonElement.toString().startsWith("\"")) {
           throw new JsonParseException("bad");
       }
        return jsonElement.getAsInt();
    }
}

// Cheers! )
Reasons:
  • Blacklisted phrase (1): Cheers
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user3072571

79624948

Date: 2025-05-16 10:08:50
Score: 1
Natty:
Report link

The accepted answer didn't work for me, but this did:

code --folder-uri vscode-remote://ssh-remote+<remoteHost><remotePath>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: fepegar

79624942

Date: 2025-05-16 10:06:50
Score: 1.5
Natty:
Report link

As I was upgrading the version, I found that a left join was added

when changing from org.hibernate.orm:hibernate-core:6.4.10.Final to org.hibernate.orm:hibernate-core:6.5.0.CR1

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

79624921

Date: 2025-05-16 09:51:46
Score: 1
Natty:
Report link

Update for v19.2

  .p-accordionpanel:not(.p-accordionpanel-active) {
    .p-accordioncontent {
      height: 0;
      overflow: hidden;
    }
  }

  .p-accordionpanel.p-accordionpanel-active {
    .p-accordioncontent {
      height: auto !important;
      overflow: auto !important;
    }
  }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Thomas Verneuil

79624918

Date: 2025-05-16 09:49:45
Score: 1
Natty:
Report link

I've found the problem.

When I debug context.lookup() from

DataSource ds = (DataSource)context.lookup("jdbc/RCVCERMAPB/EnregistrementTracesApplicatives");

I get:

MemoryContext{namesToObjects={default=org.postgresql.Driver::::jdbc:postgresql://172.25.94.30:5432/rspdb3::::rcvcermapb_traceappli}, subContexts={}, env={org.osjava.sj.jndi.shared=true, org.osjava.sj.root=src/main/resources/jndi/, java.naming.factory.initial=org.osjava.sj.MemoryContextFactory, org.osjava.sj.delimiter=/, jndi.syntax.separator=/, jndi.syntax.direction=left_to_right, org.osjava.sj.factory=org.osjava.sj.MemoryContextFactory}, nameParser=org.osjava.sj.jndi.SimpleNameParser@dbd940d, nameInNamespace=jdbc/RCVCERMAPB/EnregistrementTracesApplicatives, nameLock=true}

The datasource has the name default.

So I need to do a
context.lookup("jdbc/RCVCERMAPB/EnregistrementTracesApplicatives/default")
to get it

or define my datasource in jdbc/RCVCERMAPB/EnregistrementTracesApplicatives.properties rather than jdbc/RCVCERMAPB/EnregistrementTracesApplicatives/default.properties

It works fine this way.

Thanks to those who read my question and also to the editting by Mark Rotteveel.

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

79624912

Date: 2025-05-16 09:46:44
Score: 1
Natty:
Report link

Problem resolved here:

https://laracasts.com/discuss/channels/laravel/laravel-sanctum-generates-new-xsrf-token-for-stateful-api-requests

The XSRF token is encrypted and in fact it is the same token.

You cannot and should not disable Laravel's Set Cookie header, which it sends to SPA API requests (for my case with CSRF-protection).

The /sanctum/csrf-cookie is needed in order to be sure that the SPA has a token, because it may not send GET requests when the page loads, as in my case

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

79624906

Date: 2025-05-16 09:42:43
Score: 3.5
Natty:
Report link

This is really fir the government military its for professionals people like m self ma military number is mboni5451 a this wood open up cuntry s for military stuff we need more power coz it wood help us Scotland United Kingdom 🇬🇧 king chairs wood love to talk to the oner the power ove it

Reasons:
  • RegEx Blacklisted phrase (1): help us
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Marc Boni

79624900

Date: 2025-05-16 09:39:42
Score: 0.5
Natty:
Report link

Here's how to adapt Quandl data for Highstock:

  1. Basic Conversion (simple approach):
// Assuming Quandl returns data in format: [[date, open, high, low, close, volume],...]
const formattedData = quandlData.dataset.data.map(item => ({
    x: new Date(item[0]).getTime(), // Convert date to timestamp
    open: item[1],
    high: item[2],
    low: item[3],
    close: item[4],
    volume: item[5]
}));
  1. Highstock Configuration:
series: [{
    type: 'candlestick',
    name: 'Stock Price',
    data: formattedData
}]
  1. Alternative Solution - Use Highstock's dataParser callback to transform data on load if you're loading directly from Quandl URL.

Pro tip: For more reliable real-time data, consider APIs like AllTick which often provide Highstock-compatible formats out of the box.

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

79624891

Date: 2025-05-16 09:33:41
Score: 0.5
Natty:
Report link

In my case changing the parameter sort_buffer_size from 256K to 512MB did the trick.

This is the context:

I got this error:

SQLSTATE[HY000]: General error: 3 Error writing file '/rdsdbdata/tmp/MYfd=117' (OS errno 28 - No space left on device)'

It was due to this query running several times per minute:

SELECT c.code AS code_1,
       c.code AS code_2
  FROM clients c
 INNER JOIN clients_branch ch ON (c.id = ch.client_id)
 WHERE ((CONCAT(',', ch.branch_path, ',') LIKE '%,2555,%'
    OR ch.id = 2555)
   AND ch.client_id <> 5552)
    OR c.id = 5552
 ORDER BY c.name ASC;

This query would take around 25 seconds and the number of active sessions was piling up:

Number of Active Sessions graph, showing regular peaks.

It was all solved when we updated this parameter sort_buffer_size from 256K (default) to 512MB:

Number of Active Sessions suddenly dropping at certain point in time.

(you can see the drop in the bars).

We were able to check that when removing the "order by" from the query, the execution of said query would take much less.

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

79624877

Date: 2025-05-16 09:28:39
Score: 1
Natty:
Report link

Apparently, there are options in the filament-shield config that solves the problem. Set discoveries to true depending on your needs.

'discovery' => [
        'discover_all_resources' => true,
        'discover_all_widgets' => true,
        'discover_all_pages' => true,
    ],
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KrutSednar

79624868

Date: 2025-05-16 09:23:37
Score: 1
Natty:
Report link

I know that this question is old, but the most important thing here is to have downloaded and set up as system variable ffmpeg binaries. Using pip install ffmpeg-python you just downloading the library not the ffmpeg binaries itself. You can download this binaries from here: https://www.ffmpeg.org/download.html

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

79624867

Date: 2025-05-16 09:23:37
Score: 2.5
Natty:
Report link

The previous answer has been AI Generated.

The library simple-salesforce does not provide access to MarketingCloud

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

79624864

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

In case someone has the same headscratch as I did:

If you're doing a geom_line plot with facet_wrap and just one of the groups that your facetting with has an issue with the amount of data, you're going to get the message (ggplot 3.5.2)

`geom_line()`: Each group consists of only one observation.
ℹ Do you need to adjust the group aesthetic?

It took me a while to realize what was going on since I had a lot of groups and the plot looked mostly fine. The message concerns the panel which has only one observation. Simple example:

foo <- tibble(
  value = c(1:4,1:4,1),
  year = c(2001L:2004L, 2001L:2004L, 2002L),
  g = c(rep("G1", 4), rep("G2", 4), "G3")
)

ggplot(foo, aes(year, value)) +
  geom_line() +
  facet_wrap(~g)

A graph with three panels, of which the frist two show a simple line plot and the third has nothing.

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

79624860

Date: 2025-05-16 09:17:34
Score: 6.5 🚩
Natty: 6.5
Report link

Have you found a solution to the problem? I have "Urovo rt40" with the same problem.

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

79624852

Date: 2025-05-16 09:12:32
Score: 1.5
Natty:
Report link

Subtract by multiple of 10. for example:

minimum value of mulitple of 10 by which number is subtracted to give minimum positive number.

  1. for 9 = 1 * 10-9 = 1

  2. for 18= 2* 10- 18 = 2

  3. for 27 = 3* 10-27= 3

  4. for 36 = 4* 10 -36 = 4

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

79624827

Date: 2025-05-16 09:04:29
Score: 1.5
Natty:
Report link

I get this error in vs 2022 and a blazor wasm standalone project. I can resolve it by this solution :

  1. clean project
  2. make a change in a razor file and build the project.
Reasons:
  • RegEx Blacklisted phrase (1): I get this error
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Mohammad Komaei

79624823

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

I actually found out that you can see the logs. Tizen extension tool opens a browser inspect window, when you run the application on a real tv, and it is possible to see the logs. I just had to restart to make it work

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

79624822

Date: 2025-05-16 09:00:28
Score: 1
Natty:
Report link

I have faced this issue while publishing in Sitecore 10.1 update 3. For me the issue was coming on making any changes in rendering and then publishing. On making changes in rendering the workflow for related test lab item lab item was getting cleared in web db. On debugging got to know that the item:saved pipeline invokes Sitecore.ContentTesting.Events.PersonalizationTrackingHandler.OnItemSaved, which queries the Web database to check the workflow status. Since the workflow is cleared, the handler encounters an error. If we publish test lab items and then the page item, error won't come.

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

79624817

Date: 2025-05-16 08:58:27
Score: 3
Natty:
Report link

Try to debug the code at each step and see what values you are getting from container stats.

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