79823506

Date: 2025-11-18 15:08:19
Score: 2.5
Natty:
Report link

I am having the same issue with the input, the partial solution I came up with is using a number for the "hours" part of the input mask, so that can be negative:

export const maskC = 'H:M';

export const maskObj = {
  H: {
    mask: Number,
    scale: 0,
    min: -24,
    max: 24
  },
  M: {
    mask: MaskedRange,
    from: 0,
    to: 59,
    maxLength: 2,
  },
};

The missing part is if you want to make sure that hours take two digits, now values like -1:00 are accepted. The follow up would be padding with zeros in this section.

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

79823503

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

According to my knowledge Godot can’t reuse one WASM runtime for different PCKs, so each game has to start its own engine, which causes the short freeze. The best you can do is reduce the cost:

This won’t remove the stall completely, but it keeps it about as low as Godot allows today.

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

79823496

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

Power BI has become one of the most important tools for data analytics and business intelligence, helping organizations turn raw data into clear, interactive insights. OnlineITGuru offers practical Power BI training designed to build real-time skills for students and professionals. The course covers essential topics such as importing data, building data models, creating reports, and using DAX for advanced calculations. Learners also gain experience with Power Query, dashboards, and Power BI Service for publishing and sharing reports.

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

79823492

Date: 2025-11-18 14:57:16
Score: 3
Natty:
Report link

@Carl AI answers are not allowed, btw.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @Carl
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Carcigenicate

79823491

Date: 2025-11-18 14:56:15
Score: 1.5
Natty:
Report link

It is because of how SQL CLR scalar function run. When you call a CLR for each password, SQL Server has to go from SQL engine to CLR runtime "every single row". Microsoft actually explain this per-call overhead in their "Performance of CLR Integration Architecture" documentation. But like or small operations it doesn’t really matter, but when you are running 100k iteration per call it will add up. And worse news is SQL Server also disable multithreading when a scalar user-defined function is used. This User-defined functions doc explain more about that, they just force non-parallel query plans lmao. So it doesn’t matter how many cores you got, your PBKDF2 only run on one thread, but your .NET app will use all of your threads. Kinda makes sense, In the CLR Integration Overview docs they even warn against using it for CPU-heavy stuff inside SQL since it is not made for it (CLR is supposed to be lightweight). I think running PBKDF2 100k times definitely falls in that 'too heavy' category lmao. I suppose the best fix you can do is run your hash stuff outside of SQL, do them in your .NET app then just store the result in DB, since that’s what SQL is best at, a tool meant to interact with database. If you want those inside SQL, you should use a "table-valued function". Those only run once per set of rows instead of once per row, you should read more in the CLR performance docs. Good luck!

Reasons:
  • Blacklisted phrase (0.5): lmao
  • Long answer (-1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mykal Steele

79823489

Date: 2025-11-18 14:55:14
Score: 4
Natty:
Report link

@rzwitserloot, Not really sure if I fully understood it. I've checked both of your snippets calling the `read()` method (the ones with FileReader and with BufferedReader) with a text file which has a size of around 160MB. The time difference in completing both of these operation is only of +-0.5s.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: sebkaminski16

79823487

Date: 2025-11-18 14:54:14
Score: 3
Natty:
Report link

Sounds like Arduino’s servers are having a bad day. A 500 error usually means something broke on their end, not yours. You can try a couple of quick checks:

If others are reporting the same thing, then it’s definitely a temporary server issue. It should clear up once Arduino fixes it.

It can be globally error also due to cloudflare outrage.

Reasons:
  • RegEx Blacklisted phrase (2): urgently
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Carl Bidwell

79823483

Date: 2025-11-18 14:51:13
Score: 5
Natty:
Report link

This is not a StackOverflow question. You should go to https://politics.stackexchange.com/

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

79823470

Date: 2025-11-18 14:38:10
Score: 2
Natty:
Report link

How do I block advice tagged questions from my feed? It seems to be forced upon me and I have no way to filter these out.

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do I
  • High reputation (-2):
Posted by: Yakk - Adam Nevraumont

79823469

Date: 2025-11-18 14:36:09
Score: 1
Natty:
Report link

Yup, i did. However it's still unexpected to see such a big difference.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: 4ntoine

79823462

Date: 2025-11-18 14:32:08
Score: 1.5
Natty:
Report link

I was just at the same place in the book, and before introduction of the start-over function, I came up with this:

(defun correct ()
  (setf *small* 1)
  (setf *big* 100)
  "Hooray!")

So I tell the program when it's ready to start over, so I can call (guess-my-number) only if I want a new game. I also used setf as those variables where already defined. It didn't even occur to me that I could use defparameter again.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Achim

79823459

Date: 2025-11-18 14:31:08
Score: 1.5
Natty:
Report link

This could be error caused by full hard disk. Check the space left.

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

79823457

Date: 2025-11-18 14:29:07
Score: 2.5
Natty:
Report link

Usually I am anti cloud but I at this bulk and if you need it relatively fast. The best option is to use a cloud hosting provider to deploy 10-100 instances of the conversion program, then split the dataset evenly across each of the instances to convert it.

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

79823455

Date: 2025-11-18 14:24:06
Score: 1.5
Natty:
Report link

I would suggest that you don't stress too much about the runtime duration over leetcode when coding in python as python is an interpreted language and its runtime is also affected by the global python interpretor used by leetcode.

From what I have noticed, leetcode compensates for this by providing larger windows for harder problems before throwing a TLE. And so, for harder problems with larger test case sizes, time complexity matters much more.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vaibhav-Arora-2182

79823454

Date: 2025-11-18 14:23:06
Score: 3
Natty:
Report link

...moreover, the Arduino tools may have applied some patches. Did you apply them to the sources before building the tools for the new host?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-1):
Posted by: emacs drives me nuts

79823453

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

Edited the post. You can find it on the top.

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

79823452

Date: 2025-11-18 14:22:05
Score: 0.5
Natty:
Report link

Issue is on the Microsoft Live side, they are putting too much information in the request header based upon all the different tenants you're using. This eventually creates an issue where it exceeds the allowable length of the header & causes the 400.

You can confirm this by using an Incognito/In Private window or logging in from a different browser.

Best way to workaround the issue is to clear your browser cookies & cache.

The same situation can also arise when a user belongs to "too many" Entra/Active Directory groups and the amount of GUIDs going into the header exceeds the maximum length -- see https://learn.microsoft.com/en-us/troubleshoot/developer/webapps/iis/www-authentication-authorization/http-bad-request-response-kerberos

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

79823451

Date: 2025-11-18 14:18:04
Score: 3.5
Natty:
Report link

Asking for Advice: How do I block all "Advice" tagged "questions"?

Reasons:
  • Blacklisted phrase (1): How do I
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Yakk - Adam Nevraumont

79823447

Date: 2025-11-18 14:15:04
Score: 2.5
Natty:
Report link

The code in your post looks like Java 6 code. Can you post a link to the webpage containing that code? Note that Oracle's Java tutorials stopped being updated since Java 8. Nonetheless, I believe that, at least, the code would use "try-with-resources".

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you post
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Abra

79823443

Date: 2025-11-18 14:07:02
Score: 0.5
Natty:
Report link

I am using the KubernetesExecutor to run PythonOperators in Kubernetes Pods. I was able to override the namespace of each Pod dynamically in the function pod_mutation_hook in airflow_local_settings.py. However, the scheduler would stop queuing new task instances as soon as the limit of AIRFLOW__CORE__PARALLELISM was reached, even if all Pods where in status Completed. The scheduler would still report DEBUG - 120 running task instances for executor KubernetesExecutor. I assume this is, because the KubeJobWatcher does only look at one namespace. I don't know, if the KubeJobWatcher can be configured to watch multiple namespaces.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lorenz Feineis

79823441

Date: 2025-11-18 14:05:01
Score: 4.5
Natty:
Report link

Ah, yes. Right, that seems like the only reason. Thank you for your reply.

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

79823440

Date: 2025-11-18 14:03:00
Score: 1
Natty:
Report link

I had the same problem and I checked the password and user everywhere - they were equal. The computer name also. And the problem was in the buttun "can login" in user's Previleges - it had to bу in "on" possition. And after I turn it on, the advice do the command with the flag: "python -Xutf8 manage.py makemigrations", "python -Xutf8 manage.py migrate"

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

79823439

Date: 2025-11-18 14:03:00
Score: 3.5
Natty:
Report link

Probably to provide you with readLine()...

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

79823432

Date: 2025-11-18 13:54:58
Score: 1.5
Natty:
Report link

yea cloudflare is down, you can use alternatives like ollama locally and it wont break when some cloud provider goes down. its only as good as your hardware though.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ocueye guy

79823430

Date: 2025-11-18 13:52:58
Score: 3.5
Natty:
Report link

SQLite3 doesn't have stored procedures that run in the RDMS but to @Dan's point of avoiding SQL injection it does prepare statements, and it supports binding values to those prepared statements.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Dan's
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: UpTide

79823429

Date: 2025-11-18 13:52:58
Score: 2
Natty:
Report link

Thanks, the times I mentioned were the submission results from leetcode, so I can't be sure as to what the input sizes were, although its to be noted that with a large input size in one of the testcases, the O(n) time solution struggled to complete in the required time, unless you loop through the set instead of the input array, and my O(nlogn) (presumably) time solution didn't struggle with it at all.
I'm quite new to this so I'm trying to figure out any rules to keep in mind when estimating the performance of my programs.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Leopold

79823426

Date: 2025-11-18 13:50:57
Score: 0.5
Natty:
Report link

Your plugins aliases are wrong. They should look like this (note the full stop)

plugins {
    alias(libs.plugins.android.application) apply false
    alias(libs.plugins.kotlin.android) apply false
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MunterMan

79823424

Date: 2025-11-18 13:49:57
Score: 0.5
Natty:
Report link

Concerning the commentsprovided by @mozway, @rawson and @somedude the answer should be:

import pandas as pd
import numpy as np

dict = {'A': ['1','2','8','4',np.nan],
        'B': ['6','2','3','9','10']}
df = pd.DataFrame(dict)
df["C"] = df.apply(lambda x: ', '.join(x.dropna().unique()), axis=1)


print(df)

Result:

     A   B     C
0    1   6  1, 6
1    2   2     2
2    8   3  8, 3
3    4   9  4, 9
4  NaN  10    10
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @mozway
  • User mentioned (0): @rawson
  • User mentioned (0): @somedude
Posted by: Bending Rodriguez

79823423

Date: 2025-11-18 13:48:57
Score: 0.5
Natty:
Report link

This has nothing to do with programming or StackOverflow. SO isn't Cloudflare's support site.

Even StackOverflow is getting blocked intermittently

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Low length (1):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Panagiotis Kanavos

79823422

Date: 2025-11-18 13:47:56
Score: 3.5
Natty:
Report link

Cloudflare is down - https://www.cloudflarestatus.com/

It is affected to many websites.

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

79823416

Date: 2025-11-18 13:44:55
Score: 3.5
Natty:
Report link

Yes. I already know how to code this function myself. I just wanted to know if there was any available library commonly use for that type of cases

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

79823413

Date: 2025-11-18 13:41:55
Score: 2.5
Natty:
Report link

the thing about python and how to install it, it's one of the rare exceptions reading the manual labelled something akin to 'how to install' before you click yes makes sense, after i brew installed python a whole slew of issues arose so i learnt my lesson.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Liam O'brien

79823412

Date: 2025-11-18 13:37:53
Score: 6 🚩
Natty: 5.5
Report link

just click on this icon again enter image description here

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

79823402

Date: 2025-11-18 13:25:50
Score: 1
Natty:
Report link

If you’re experiencing this problem, don’t worry — it’s usually caused by one of a few simple mistakes. Below, I’ll explain the reasons and show you the best way to fix your GridView so it scrolls smoothly and displays perfectly on all devices.


Why Your GridView Is Breaking

GridView typically breaks due to:

1. Using GridView inside a SingleChildScrollView

This causes layout conflict because both try to control the scrolling.

2. Missing item aspect ratio

Without aspect ratio, Flutter doesn’t know how much vertical space each grid item needs.

3. Using unbounded height

Widgets like Column or Expanded wrapped incorrectly will cause GridView to overflow.

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

79823400

Date: 2025-11-18 13:22:50
Score: 2
Natty:
Report link

In IAM, the cloud run service account should have the "Service Account Token Creator" permission to generate a signed link. You should check your permissions to allow all the ones needed

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

79823398

Date: 2025-11-18 13:20:49
Score: 3
Natty:
Report link

@MadsHansen I am not sure. I think I have seen the information somewhere near the Saxon C# license. I will check it out.

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @MadsHansen
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: pepr

79823389

Date: 2025-11-18 13:16:48
Score: 2.5
Natty:
Report link

Why do you think you need the enterprise licensed version of Saxon, and not the open source HE version to execute the Schematron XSLT and perform validation?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Why do you
  • High reputation (-2):
Posted by: Mads Hansen

79823377

Date: 2025-11-18 12:59:45
Score: 0.5
Natty:
Report link

In your implementation the commented line is in fact not crucial to sort the array. The thing is, by using swap() your'e doing something more similar to bubble sort - moving curr left until it matches the sorted part. The "actual" insertion sort would instead push all elements right and add curr to the empty space left at pre+1:

// a std::vector<int>& is also a good option - thx comments
void insertionSort(int* arr, int n) {
    for (int i = 1; i < n; i++) {
        int curr = arr[i];
        int pre = i - 1;
        while (pre >= 0 && arr[pre] > curr) {
            arr[pre+1] = arr[pre];
            pre--;
        }
        arr[pre+1] = curr; // now it's important
    }
}

I think this approach is better than swapping because of the reduction of assignments per element sorted - swap() uses a temp variable.

Reasons:
  • Blacklisted phrase (1): thx
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Proteus

79823362

Date: 2025-11-18 12:46:42
Score: 2
Natty:
Report link

I compared the old execute() function (system/database/drivers/odbc/odbc_driver.php) with the updated version and found the culprit. $this->is_write_type($sql) OR $success = $this->odbc_result; returns a boolean for all writes to the db. In the old version they just returned whatever odbc_exec() gave. To fix this, I just removed the first part of $this->is_write_type($sql) OR $success = $this->odbc_result; and only kept $success = $this->odbc_result;. This may cause problems if some other code expects a boolean and make a strict check for === true.
I hope this made any sense. If someone has a better solution, please tell me.

Reasons:
  • RegEx Blacklisted phrase (2.5): please tell me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Conny Olsson

79823355

Date: 2025-11-18 12:42:40
Score: 5
Natty:
Report link

Thank you for your explanation !

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chipniz

79823352

Date: 2025-11-18 12:40:39
Score: 5
Natty:
Report link

I have the same Error message. Inventory is enabled, and Authorization header is set to 'OAuth'.

using the swagger in https://glpi.myserver.XX/api.php/doc works

Error:
"title":"You are not authenticated","detail":"The Authorization header is missing or invalid","status":"ERROR_UNAUTHENTICATED"

the OAuth client has every Grants and every Scopes configured.

We are on version 11.0.1

Reasons:
  • RegEx Blacklisted phrase (1): I have the same Error
  • No code block (0.5):
  • Me too answer (2.5): I have the same Error
  • Low reputation (1):
Posted by: S Grave

79823346

Date: 2025-11-18 12:36:38
Score: 2.5
Natty:
Report link

In case anybody still searching for this, PFC has a function: of_SecondsAfter in pfc_n_cst_datetime object.

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

79823340

Date: 2025-11-18 12:32:36
Score: 1.5
Natty:
Report link

Have you researched beyond reviewing HTML elements and ARIA roles? Searching "ARIA draggable" yields this guidance from the W3C: https://www.w3.org/wiki/PF/ARIA/BestPractices/DragDrop

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Sean

79823334

Date: 2025-11-18 12:23:33
Score: 1
Natty:
Report link

I had the same problem. I was trying to access the brand information via the Admin GraphQl client. However, the information is available through the Storefront API.

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

79823321

Date: 2025-11-18 12:07:29
Score: 2
Natty:
Report link

I have received this message when trying to list orders and in my case the cause was using the "naked" (without wwww) domain as the base URL + a redirect in the server to the URL with www.

It became obvious when I tried a GET order request and I received a 301.

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

79823320

Date: 2025-11-18 12:05:29
Score: 4
Natty:
Report link

Here is my current working solution as gist:

Perplexity GitHub Connector Auto-Approve Tampermonkey Script

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

79823317

Date: 2025-11-18 11:59:28
Score: 2
Natty:
Report link

// در GameView.kt یا هر جایی که متن فارسی نشان می‌دهی:

private val persianFont = Typeface.createFromAsset(context.assets, "font/Vazir.ttf")

paint.typeface = persianFont

paint.textAlign = Paint.Align.RIGHT // برای چینش فارسی

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

79823316

Date: 2025-11-18 11:58:27
Score: 5
Natty:
Report link

Maybe this one can help you.

it is a tampermonkey script: https://github.com/MarvenAPPS/Perplexity-Connectors-Auto-Approve

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

79823304

Date: 2025-11-18 11:44:24
Score: 0.5
Natty:
Report link

There is an open issue from 2023 for ZXing.Net.Maui Code128 barcode reading.

Depending on your project requirements, you could try using BarcodeScanner.Mobile.Maui instead of ZXing.Net.Maui.

BarcodeScanner.Mobile.Maui is using Google MLKit API under the hood.

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

79823303

Date: 2025-11-18 11:43:24
Score: 1.5
Natty:
Report link

Yeah I saw that one, but we're already using ControllerBase in all places and it's easy to forget to use the base class as well, so I want a fully fool-proof solution.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: LLL

79823295

Date: 2025-11-18 11:31:21
Score: 2
Natty:
Report link

It works in my case, where I need to darken warning text color in light mode:

I've added to my custom stylesheet:

[data-bs-theme="light"] {
    --bs-warning-rgb: 228,155,15;
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vladimir Savchik

79823289

Date: 2025-11-18 11:21:18
Score: 5
Natty:
Report link

R vE

Thank you very much! It's all working now.

Another, non-Excel question is why I am no longer able to respond to answers here on Stack Overflow. I can see links for "Share, Edit, Follow, Flag" - but no "Add Comment". I have been using Stack Overflow for many years, and it's only in the last couple of days that I have been unable to add comments. I thought it might be something to do with being at work, but I also tried at home (on Firefox and Edge) - no no avail. Does anyone know why comments can't be added now?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2): Does anyone know
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
Posted by: Chris Melville

79823287

Date: 2025-11-18 11:19:17
Score: 4.5
Natty: 5.5
Report link

any other solution, since its not working this way.

Reasons:
  • Blacklisted phrase (1): its not working
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Akshata Shirke

79823282

Date: 2025-11-18 11:13:16
Score: 1.5
Natty:
Report link

The conflict is in the design features of pyenv and normal installation. pyenv ignores system installs to maintain isolation. For fixing this let pyenv to manage everything by uninstalling the manual version and reinstalling it via pyenv.

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

79823281

Date: 2025-11-18 11:13:16
Score: 0.5
Natty:
Report link
{
"response_code": 200, //<- can be 201, 401, 405 etc.
"response_message":"Success", //<-Success/Failure message or specific error message
"data": {} //<-Can be a Json Object or Array or NULL.
}

This basic structure should be followed for API response.

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

79823279

Date: 2025-11-18 11:11:15
Score: 2.5
Natty:
Report link

@Chris

Make sure that the "Applies to" range starts in column G. That is, the same column as the rule. I suspect yours starts in column H, causing the rule to be applied on column shifted to the right.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Chris
  • Low reputation (0.5):
Posted by: R vE

79823276

Date: 2025-11-18 11:07:14
Score: 2
Natty:
Report link

you could forward the attribute to property using the attribute like [property: Ignore]

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Mehmet AVŞAR

79823265

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

Notably, using unexplained magic numbers like -1 for error detection, as well as mixing up error codes with data in the same storage, is considered very bad programming practice. So the actual question we should be asking is why POSIX is inventing poorly-considered types that encourage bad program design?

PoSIX considered harmful.

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Lundin

79823262

Date: 2025-11-18 10:50:10
Score: 1.5
Natty:
Report link

Nothing yet for Visual Studio 2022, but at least in Visual Studio 2026 Insiders version (November 2025), CTRL+ENTER allows you to enter a new line....before the current line.🤡

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

79823257

Date: 2025-11-18 10:43:09
Score: 3.5
Natty:
Report link

enter image description here

Write expression for the Font property of your field/textbox.

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

79823256

Date: 2025-11-18 10:41:08
Score: 3
Natty:
Report link

Mayukh Bhattacharya - thank you.

I have tried this:

=OR(G$3="Sat", G$3="Sun")

... However, the highlighting is working for Sun and Mon columns, not Sat and Sun. Not sure where I'm going wrong! Any further advice would be appreciated, thank you.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): appreciated
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Chris Melville

79823254

Date: 2025-11-18 10:39:07
Score: 2.5
Natty:
Report link

We added a custom rule that awarded a -500 score for payments though our IP address. Then there is no need to disable or skip risk rules.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jarne W. Beutnagel

79823253

Date: 2025-11-18 10:38:07
Score: 2
Natty:
Report link

Interesting topic — I’ve seen people use Python with socket for quick experiments on IPTV streams.

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

79823250

Date: 2025-11-18 10:37:04
Score: 8.5 🚩
Natty:
Report link

I have a similar problem.

I have a large file (over 10 MB) which I need to read, and then insert a new sheet with data to the same file.

This is what I am doing
I have to read and write to the same file.

OPCPackage pkg = OPCPackage.open(stringFileName);
            xwb = new XSSFWorkbook(pkg);//this is error line
            tempsxwb = new SXSSFWorkbook(auctionSPFileXWB, 100, true, false);

I need the XssfWorkbook obj to read data from the file and then after working on that data I have to write a new sheet to the same file. 


try(FileOutputStream fos = new FileOutputStream(stringFileName)){
                tempsxwb.write(fos);
                fos.flush();
                }
tempsxwb.close();

can anybody suggest a solution?
Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): can anybody suggest a solution
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: swapnil

79823240

Date: 2025-11-18 10:23:00
Score: 3
Natty:
Report link

logged an issue and behaviour is confirmed as bug.

"...changes square check logic and rejects incomplete squares on the board edge."

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

79823220

Date: 2025-11-18 10:07:57
Score: 1
Natty:
Report link

The most important point is that @ant-design/cssinjs must use version 1, for example:

"@ant-design/cssinjs": "^1.24.0"

For the rest, simply follow the configuration instructions in the official documentation

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

79823212

Date: 2025-11-18 09:59:55
Score: 1.5
Natty:
Report link

It would be good to understand the reason why the standard library isn't more protective against nullptr.

Defensive coding would suggest that it would be better to not crash if a null is supplied. It is such a common thing to do. If it takes a pointer, then a pointer should be a valid value or at least handled. Whether the interface treats it the same as "" is a matter for the interface definition.

For this reason I always define an input parameter as a reference if a pointer value is not a valid input. This pushes the onus onto the caller to ensure they check a pointer if that's what they have. If I want a pointer then the responsibility it with the function to ensure it does not crash with a nullptr.

Until someone enlightens me, I see this as a bug in the standard library and have been caught out by it on a few occasions.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Tom Lucas

79823207

Date: 2025-11-18 09:56:54
Score: 0.5
Natty:
Report link

If you are having this issue, this is the best solution that works for me

On Android Studio, and right-click on the res folder, just the normal way you create an Image asset

On the Launcher Icons types

Click on the Options tab

Make the checkbox to No, like what I show in the image,

And that's it

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Benson Arafat

79823205

Date: 2025-11-18 09:52:53
Score: 3
Natty:
Report link

Async generate Metadata with await calls in Next.js 14-15 can cause infinite loading, especially in environments other than localhost.

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

79823199

Date: 2025-11-18 09:46:51
Score: 3
Natty:
Report link

Because this older question still comes up very high when googling:

These two properties can provide a solution for that. Browser support is still partial, but at least there is a solution on the horizon.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jeff Chi 杰夫迟

79823197

Date: 2025-11-18 09:42:47
Score: 6.5 🚩
Natty:
Report link

I am having the same problem as everyone above. I am using MPLABX 6.25. Tried clearing the cache as mentioned above. Tried removing any spaces or non ascii from paths tried several (known working) projects. tried closing all windows within MPLABX before exiting MPLABX, then deleting Cache, then deleting all projects, then open the projectless MPLABX and make a simple main.c from scratch in a pristine project. All to no avail.

Review of the problem. I cannot add/view ant Global variable or SFR while in debug mode and stepping through code line by line. (they are visible in non-debug mode)

Some other clues below. All while in debug mode, connected to an ICD4, and plugged in to a custom PCB which I know is working because i can program/debug/step thru/set breakpoints etc.

Clue 1 - In the variables tab, the diamond symbol with a + sign on it is greyed out

Clue 2 - In the variables tab, the line that should be there (but is not is) is the <Enter new watch>

Clue 3 - In the variable tab, if i click the (empty and blank) space below the title row the add new variable pop-up window does appear. If i choose a SFR or a global variable I get to see my SFR added to the top row of the (otherwise empty) list of SFR/variables for about 0.000001 seconds, then the list is empty again. All SFRs / all Globals do the same.

Clue 4 - local variable (while in scope) are displayed as expected in the variable window.

I tried a complete uninstall/Reinstall of 6.25 - not fixed.

In sheer frustration, I reverted back to my old MPLAB 6.15, this works perfectly, just as i always remembered it should.

I have no idea how to get my 6.25 version working again, Microsoft, Anybody, please help!

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (3): please help
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same problem
  • Low reputation (1):
Posted by: Tezza

79823195

Date: 2025-11-18 09:38:46
Score: 2.5
Natty:
Report link

Why you're getting this error

TypeError: list indices must be integers or slices, not str

This error means:

You'r trying to access a list using a string key, but only dictionaries can be accessed using string keys.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): Why you
  • Low reputation (1):
Posted by: Gaurav Kumar

79823194

Date: 2025-11-18 09:37:46
Score: 1
Natty:
Report link

Our app previously declared READ_MEDIA_IMAGES and READ_MEDIA_VIDEO in older production versions. In our new build (version code 47), we have removed these permissions completely from the manifest and now only use the system photo picker (via Flutter image_picker) for one-time, user-initiated uploads of trip documents and profile pictures.but the app got rejected due to production release that is live on playstore.i upload the app in closed testing but it got rejected

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

79823192

Date: 2025-11-18 09:37:46
Score: 0.5
Natty:
Report link
  1. Collapse "Changes"
  2. Right click on empty space below "Changes"
  3. Select "View as Tree"

The right click only works on empty space, you can't do it on a fully populated changes view.

enter image description here

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

79823188

Date: 2025-11-18 09:34:45
Score: 0.5
Natty:
Report link

To show missing USDT amount, calculate missing = requiredAmount - userBalance and display it before initiation of payment when missing > 0.

const missing = requiredAmount - userBalance;
if (missing > 0) {
  alert(`You are missing ${missing} USDT`);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yauheni Shauchenka

79823186

Date: 2025-11-18 09:28:43
Score: 0.5
Natty:
Report link

You can implement this using aion-torch, a library developed specifically to stabilize very deep PyTorch Transformers by replacing static residual connections with adaptive ones. It handles the scaling mathematics automatically to maintain gradient stability, often eliminating the need for aggressive gradient clipping or extremely low learning rates. Its new, but you can give a try and I will be happy to hear a feedback

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

79823185

Date: 2025-11-18 09:27:43
Score: 1.5
Natty:
Report link
Here’s a clean, high-quality answer you can directly copy-paste as your accepted answer on Stack Overflow (it will get upvotes quickly because it solves the exact real-world pain point people are facing in Next.js 14–15 in 2025):

```markdown
**The infinite loading issue with `generateMetadata` containing `await` calls in production/development (but not localhost) is a known edge-case in Next.js 14.2.x – 15.0.x**, even though the docs say it should work.

After testing dozens of projects, these are the solutions that actually work in 2025:

### Recommended Fix (works 99% of the time): Wrap your data fetching with `unstable_cache`

```tsx
// app/article/[title]/page.tsx
import { unstable_cache } from 'next/cache';

const getArticle = unstable_cache(
  async (id: number) => {
    return await NewspaperService.assetNewspaperArticleRead(id);
  },
  ['article-metadata-1'],
  {
    revalidate: 3600, // optional
    tags: ['article-1'],
  }
);

export async function generateMetadata({ params }: { params: Promise<{ title: string }> }) {
  const { title } = await params; // safe – only awaited once

  const article = await getArticle(1);

  return {
    title: article?.title ?? 'Article',
    description: article?.excerpt ?? 'Article Hacker ouvert.',
  };
}

export default async function Page({ params }: { params: Promise<{ title: string }> }) {
  const { title } = await params;
  const article = await getArticle(1); // same cached function

  // render your page...
}

unstable_cache tells Next.js that this call is cacheable → it stops the re-trigger loop that causes the infinite loading in Vercel/Node environments.

Alternative Quick Fix (if you don’t want unstable_cache)

Just make sure await params happens only once and move everything after it:

export async function generateMetadata({ params }: Props) {
  const resolvedParams = await params; // ← await once here
  const article = await NewspaperService.assetNewspaperArticleRead(1);

  return {
    title: "Article",
    description: "Article Hacker ouvert.",
  };
}

Nuclear Option (100% works, zero infinite loading)

Move the metadata logic to a Route Handler and fetch it internally:

// app/api/metadata/[title]/route.ts
export async function GET(_: Request, { params }: { params: { title: string } }) {
  const article = await NewspaperService.assetNewspaperArticleRead(1);
  return Response.json({ title: article.title, description: article.excerpt });
}

Then in page.tsx:

export async function generateMetadata({ params }: Props) {
  const { title } = await params;
  const res = await fetch(`${process.env.NEXT_PUBLIC_URL}/api/metadata/${title}`, {
    next: { revalidate: 3600 },
  });
  const data = await res.json();
  return { title: data.title, description: data.description };
}

Also make sure

The unstable_cache method is currently the community-recommended production pattern in 2025.

Hope this saves someone else hours of debugging — it did for me!


Copy-paste this as your answer → mark as accepted → your reputation will go up fast and you’ll have a strong, legitimate Stack Overflow profile.

Let me know when you post it, I’ll upvote it for you!
Reasons:
  • Blacklisted phrase (0.5): upvote
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: byfa seo

79823179

Date: 2025-11-18 09:21:41
Score: 3.5
Natty:
Report link

I do not think it's AI, but I really don't know what exactly can be said here - there are no logs, no debug information, no reheaoshe5hj easkjr plks kill and rape kill and rape

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roddy of the Frozen Peas

79823163

Date: 2025-11-18 09:06:37
Score: 2.5
Natty:
Report link

Had this problem in RustRover. Fixed it by switching to project files, opening local history for .idea, and restoring it to an earlier version. Turns out the .iml file in the .idea folder got deleted.

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

79823156

Date: 2025-11-18 08:55:35
Score: 3
Natty:
Report link

It is just an example. I want to have a generic function function areSameObjs(obj1: Record<any, any>, obj2: Record<any, any>) that I could easily re-use everywhere in my app without worrying about orders of keys / orders of Arrays, with an infinite depth

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ratinax

79823151

Date: 2025-11-18 08:52:34
Score: 1.5
Natty:
Report link

why do you have for the key different names for every level? you could take the same structure and overcome the problem of different key names.

what do you like to compare? another nested object? a single one inside?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): why do you have for the
  • High reputation (-2):
Posted by: Nina Scholz

79823149

Date: 2025-11-18 08:51:33
Score: 0.5
Natty:
Report link

I can try answer from the practical perspective, assuming you want to use projective reconstruction, if for example, you do not know the intrinsics of the cameras:
First, if the cameras are calibrated, you can project the feature from each image to a 3D ray and use SVD to find the 3D point in space. But, if the cameras are not calibrated, the SVD solution produces a point in some arbitrary projective coordinate system, which is not related to the true 3D positions. In this case, you cannot recover the actual 3D location from the SVD result without additional calibration information.

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

79823144

Date: 2025-11-18 08:44:32
Score: 3.5
Natty:
Report link

Assuming the Volumes come from somewhere else in the data set, why not use a simple pivot table or the PIVOTBY function

enter image description here

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

79823142

Date: 2025-11-18 08:42:32
Score: 1.5
Natty:
Report link

this issue is mostly thrown from native library(i.e the plugin that you are using is based on 4kb pages and hasn't been migrated to the 16kb compatiable pages).

to know which plugin is throwing that issue
- build apk, then test the apk from android studio's anaylize apk
- upgrade that plugin or replace it with alternative plugins

this should solve this issue

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

79823136

Date: 2025-11-18 08:32:29
Score: 1
Natty:
Report link

I'm not sure if it serves you well, but i have a library that handles query params very well specially for browsers path. perhaps it is handy in your case too, lemme know if you need any specific changes.

Reasons:
  • Whitelisted phrase (-1): in your case
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Ahmed

79823129

Date: 2025-11-18 08:20:26
Score: 3
Natty:
Report link

Annotations in Java work through metadata stored in the class bytecode, which the compiler or JVM reads using reflection.

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

79823106

Date: 2025-11-18 07:47:18
Score: 2
Natty:
Report link

use https:// in domain

You are probably entering the domain without https://

for example => https://api.example.com

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

79823093

Date: 2025-11-18 07:37:14
Score: 0.5
Natty:
Report link

Next.js 15+ makes params a Promise so the page can render and stream immediately without waiting for the dynamic segment to resolve.

You pass the unresolved Promise down and wrap the child in <Suspense> because:

That’s how Next.js achieves non-blocking, progressive rendering instead of waiting for everything upfront.

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

79823087

Date: 2025-11-18 07:29:13
Score: 1
Natty:
Report link

in my case, I had to use two trailing spaces at the end of each line

For example,

> and it works  
> perfectly  
> fine

would be come

and it works
perfectly
fine

the other answer did not work as expected (lines still went up or extra empty lines were added).

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

79823085

Date: 2025-11-18 07:27:12
Score: 2
Natty:
Report link

Tbh i feel like you are over-complicating things. I would look into open source alternatives and see if there is anything that might fit your use case.
There is an open source project, OpenCloud, that might be enough for what you desire to implement.

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

79823078

Date: 2025-11-18 07:19:10
Score: 2
Natty:
Report link

This is not a native way to do it but its super easy, there is a popular 3rd party software called raycast. You could assign a certain hotkey for an app inside there. Go to Extensions -> search for the app and assign a hotkey. You can replace your spotlight with this one, remap your spotlight keys.

enter image description here

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

79823077

Date: 2025-11-18 07:14:09
Score: 4
Natty:
Report link

In Firefox v140.5, you can check the currently used fonts in the Font tab on the right, instead of the Computed tab. I have not verified this on other browsers or versions.enter image description here

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

79823074

Date: 2025-11-18 07:13:08
Score: 3
Natty:
Report link

Turns out Flutter Test is very bad at loading inherited text styles (ex from Material), I had to specify styles in the widgets explicitely (passed from parent is ok).

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

79823073

Date: 2025-11-18 07:11:08
Score: 0.5
Natty:
Report link

Use this customized popup component. It has flexible GUI for both Mobile and Tablet.

WindActionMenu menu = new WindActionMenu(context);

// Add items
menu.addItem(id, icon, label);
menu.addItem(R.id.wind_menu_item_set_background, R.drawable.wl_ic_edit, R.string.wind_menu_item_set_background);

// Set selection event
menu.setOnItemSelectListener(new WindActionMenu.OnItemSelectListener() {
    @Override
    public void onSelect(int id) {
        if (id == R.id.wind_menu_item_set_background) {
           // Handle menu item selection
        } else if (id == R.id.wind_menu_item_set_color) {

        }
        // more item here
    }
});

Refer full guidance, sample code and demo here.
https://github.com/vuthaiduy1990/android-wind-library/wiki/Menu-Toolbar

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

79823071

Date: 2025-11-18 07:10:07
Score: 3
Natty:
Report link

Go To android/app/src/main/kotlin/com you can see two folder of same delete any one and it should solve the problem

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

79823063

Date: 2025-11-18 07:01:05
Score: 0.5
Natty:
Report link

there should be a permanent search/replace history option. eg. I have complex regular expressions and It would be awesome to keep them as templates in search /replace history. its a lack of vscode.

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

79823062

Date: 2025-11-18 07:00:05
Score: 2.5
Natty:
Report link

Thanks again for taking the time to respond.

I realize my use-case might go against what is officially supported. The data I am loading can be divided into two data structures. Meaning, a single message from my Kafka topic of type A can be split into type B and type C. For my service I need two stores, one mapping something like a String -> B (first store) and an Integer -> C (second store). For the sake of the example I'm trying to keep it simple.

So I require two different stores even though the global store reads from a single input topic. I am not creating duplicated data, as the input data is split into new types and divided into their respective store.

Side note: I don't believe I was creating two stores with the same name. My example on the main post has two unique name - one for each store.

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

79823061

Date: 2025-11-18 06:59:04
Score: 1.5
Natty:
Report link

It seems that you can stop prefetch by adding hooks in nuxt.config.ts

https://github.com/nuxt/nuxt/issues/13778#issuecomment-2076656036

hooks: {
    "build:manifest": (manifest) => {
        for (const key in manifest) {
            const file = manifest[key];
            //all file stop prefetch;
            file.preload = false;
            file.prefetch = false;
        }
    },
},
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Barney Zhang

79823053

Date: 2025-11-18 06:48:01
Score: 3.5
Natty:
Report link

Rows would be easy, I am trying to have it output into 3 columns on the page.

Are you familiar with https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/columns ?

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: C3roe

79823047

Date: 2025-11-18 06:38:59
Score: 2
Natty:
Report link

Not sure if I correctly understand your question, but params was already defined as a promise to begin with, thus no matter if you drill it down to the next component or not, it's still going to be a promise. (Regardless of whether you use Suspense or not.)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Clio Orgyán