79774177

Date: 2025-09-24 21:01:17
Score: 1.5
Natty:
Report link

Does this code exist in a new project created in Xcode 26? If so, new projects are set to use global actor isolation & approachable concurrency. Here's one place where you can read a discussion about it: https://www.donnywals.com/should-you-opt-in-to-swift-6-2s-main-actor-isolation/

For future posts: it can be important to state which Xcode you're using and which version of Swift (e.g. 6.2).

For this issue, removing your use of Task.detached within the increment method should unblock you.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: William Power

79774175

Date: 2025-09-24 20:57:16
Score: 0.5
Natty:
Report link

When you use datetime.fromisoformat(test_date[:-1]), it's parsing the string into a naive datetime object. Even though the string effectively represents UTC (due to the 'Z'), fromisoformat without a timezone specified will create a naive datetime.

from datetime import datetime, timezone
from zoneinfo import ZoneInfo
from tzlocal import get_localzone

test_date = "2025-10-01T19:20:00.000Z"

utc_datetime = datetime.fromisoformat(test_date[:-1]).replace(tzinfo=timezone.utc)

local_zone = get_localzone()
d = utc_datetime.astimezone(local_zone)

print(d)
print(d.strftime('%a %b %d %-I:%M %p').upper())

Output:

2025-10-01 14:20:00-05:00
WED OCT 01 2:20 PM
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you use
  • Low reputation (1):
Posted by: Teapot code

79774164

Date: 2025-09-24 20:50:14
Score: 1.5
Natty:
Report link

You can also use SendDlgItemMessageA() and use regular ASCII strings

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

79774162

Date: 2025-09-24 20:49:14
Score: 2.5
Natty:
Report link

the previous responses was correct at the time but as of May 2025, Meta has updated their ad copy api to allow for the editing of "Top level creative parameters such as title, link_url, url_tags, body, and many others".

This is a huge improvement to the previous error-prone workflow of having to copy the entire adcreative when wanting to make a small edit to something like url_tags.

https://developers.facebook.com/blog/post/2025/05/28/you-can-now-change-creative-fields-when-duplicating-ads-with-ad-copies-api/
https://developers.facebook.com/docs/marketing-api/reference/adgroup/copies/#-creative-parameters-

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

79774156

Date: 2025-09-24 20:47:13
Score: 4
Natty: 4.5
Report link

user the powershell module in here to export keys/secrets/cert expiry dates

https://github.com/debaxtermsft/debaxtermsft/tree/main/KeyVaultExports

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

79774140

Date: 2025-09-24 20:29:09
Score: 3.5
Natty:
Report link

You can see an example of pulling live events from here pull_live_events.py.

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

79774132

Date: 2025-09-24 20:17:06
Score: 1
Natty:
Report link

loglik[_ip, ...] should already be doing what you want, correctly unpacking the tuple _ip into the indexing.

If you are seeing loglik[0, ...] then loglik[1, ...] when _ip is (0, 1), it suggests that _ip is not a tuple when you expect it to be and you should double-check the type(_ip) inside your loop.

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

79774118

Date: 2025-09-24 20:03:03
Score: 1
Natty:
Report link

This problem has been solved.

I jumped out of the limitation of Qt (getNativeHandle) and directly used the interface provided by EGL to obtain the context and display (eglGetCurrentDisplay/eglGetCurrentContext) in the context state created by Qt.

makeQtCurrent();
auto eglDisplay = eglGetCurrentDisplay();
auto eglContext = eglGetCurrentContext();
doneQtCurrent():

I have checked Qt documentation, and in fact, I am using Qt 5, which does not yet support QNativeInterface::QEGLContext.

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

79774110

Date: 2025-09-24 19:57:00
Score: 1
Natty:
Report link

Another method, with a string of DNA128533_mutect2_filtered.vcf.gz and extract the id of DNA128533 ,

You can also work with awk to find the same answer.

s=DNA128533_mutect2_filtered.vcf.gz
id=$( echo $s | awk -F_ '{print$1}' )
echo $id
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Iain4D

79774104

Date: 2025-09-24 19:48:58
Score: 3.5
Natty:
Report link

adsadas

asdsasdasdasd

asdsad

asdas
asdas

adsdasd




asdasasdasdasd

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low entropy (1):
  • Low reputation (1):
Posted by: Amala

79774100

Date: 2025-09-24 19:44:57
Score: 1.5
Natty:
Report link

If you din't change anything in the measure, the problem is probably in your data(e.g., missing data, wrong format, etc.). Or did you change the [Target] measure by any chance?

You are also reling on the ALLSELECTED() - it is good possible that the filter context changed. You can try temporarly replace this function by ALL(Table) to check, if this causes the problem.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: David_Berlin

79774086

Date: 2025-09-24 19:16:51
Score: 2
Natty:
Report link

Consider scanning with NMap instead, as that will provide you with details about the device connected and it uses a wide range of methods for detection.

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

79774078

Date: 2025-09-24 19:04:47
Score: 0.5
Natty:
Report link

number_format is NOT exact toFixed equivelant.

PHP:

number_format(0.585*11, 2, '.', "");
string(4) "6.44"

Javascript toFixed has a flaw:

(0.585*11).toFixed(2);
"6.43"

Live with it ... or don't use float for finances.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alpha and Omega

79774076

Date: 2025-09-24 19:03:47
Score: 1.5
Natty:
Report link

In my case, I cloned an existing project that had never been compiled locally. After compiling and updating the project with Maven in IntelliJ, the autocompletion feature started working properly.
See ya!

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

79774075

Date: 2025-09-24 19:02:47
Score: 0.5
Natty:
Report link

I realized I need the Network Request rather than Network Response.

This is how I've done it:

Function OnReceived {
 Param ([OpenQA.Selenium.NetworkRequestSentEventArgs] $e
 
 )
   Write-Host "$($e.RequestUrl)"
}


Import-Module -Name "Path to module"
$Options1= [OpenQA.Selenium.Edge.EdgeOptions]::new()
$EdgeDriver= [OpenQA.Selenium.Edge.EdgeDriver]::new("Path to module",$Options1)
Start-Sleep -Seconds 2
$DevToolSession= $EdgeDriver.GetDevToolsSession()
Start-Sleep -Seconds 2
$EdgeDriver.Manage().Network.StartMonitoring()

# Lisiting available events for an object
Get-Member -MemberType Event -InputObject $EdgeDriver.Manage().Network

# Registering the event NetworkRequestSent 
Register-ObjectEvent -InputObject $EdgeDriver.Manage().Network -EventName NetworkRequestSent -Action {OnReceived $EventArgs} -SourceIdentifier "EventReceived"

# To stop monitoring the event at any time
Unregister-Event EventReceived
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: POL

79774058

Date: 2025-09-24 18:32:40
Score: 2.5
Natty:
Report link

Problem solved, it's because of the sharing of one jar file among 2 machines. The jar file was stored in a NFS and shared among multiple machines. Obviously for executables it is not allowed.

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

79774057

Date: 2025-09-24 18:32:40
Score: 0.5
Natty:
Report link

Used following gremlin query to match exactly 1 -> 3 -> 5 path

g.V().match(
    as('x0').has('parent', 'state', 1),
    as('x0').repeat(out()).emit().has('parent', 'state', 3).as('x1'),
    as('x1').out().has('parent', 'state', 5).as('x2')
  ).
select('x0', 'x1', 'x2')

Instead of using repeat + until, I am now using repeat +emit to find all paths and select one which have state=3

This matcher doesn't stop matching when finding first 3 but continues. For my use case, cyclic paths cannot happen and the graphs sizes are very small (<100 vertices) so the query should work fine (without until).

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

79774051

Date: 2025-09-24 18:24:37
Score: 2
Natty:
Report link

Unfork without deleting the repository using 'Leave fork network'

Navigate to the repository's settings, scroll down to the danger zone and select 'Leave fork network'.

Danger Zone with option to leave fork network

Your repository will not be deleted and it will no longer be a fork.

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

79774049

Date: 2025-09-24 18:22:37
Score: 1.5
Natty:
Report link

First of all, you should create a servlet and register the MCP server's HTTP handler. The SDK provides a servlet class for this purpose. Add this to your web application:

@WebServlet("/msg/*")
public class McpServlet extends HttpServlet {
    private final McpSyncServer server = MyMcpServer.create();
    
    @Override
    protected void service(HttpServletRequest req, HttpServletResponse resp) {
        server.handleRequest(req, resp);
    }
}

If you're not using @WebServlet annotation, register it in your web.xml:

<servlet>
    <servlet-name>mcpServlet</servlet-name>
    <servlet-class>com.yourpackage.McpServlet</servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>mcpServlet</servlet-name>
    <url-pattern>/msg/*</url-pattern>
</servlet-mapping>

The main thing is that HttpServletSseServerTransportProvider creates a transport that needs to be hooked into your servlet container's request handling pipeline. I am sure it should work perfectly now. Let me know in comments if you face same issue, I will guide you furthermore

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): face same issue
  • Low reputation (0.5):
Posted by: Denis Kisina

79774048

Date: 2025-09-24 18:22:37
Score: 1.5
Natty:
Report link

After digging into this further it seems this is an issue with iCloud integration in OSX.

Despite having created the images on my Mac and carefully categorised them into folders on my Mac they somehow are not actually "on" my Mac until I tap the download from iCloud icon beside their respective folders. Only then can the training resume again without this error :/

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

79774031

Date: 2025-09-24 18:03:31
Score: 0.5
Natty:
Report link

I think this is better as the math on the right-hand side is only done once (I hope) and there's no need to do conversion of the timestamp for each row

WHERE timestamp >= CAST(to_unixtime(DATE_ADD('hour', -1, CURRENT_TIMESTAMP)) * 1000 as BIGINT)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dlipofsky

79774026

Date: 2025-09-24 17:57:30
Score: 1.5
Natty:
Report link

after pinging the device and validating it is online. You can run arp -a | grep <target_device_ip>, for example -> arp -a | grep 192.168.0.4. Grab the mac address and use the tool shared above.

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

79774024

Date: 2025-09-24 17:50:28
Score: 1.5
Natty:
Report link

Question was answered in the comments. Decided to stick with the --no-sandbox option in the end.

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

79774019

Date: 2025-09-24 17:38:25
Score: 1.5
Natty:
Report link

It is very common to happen during the migration period. The token generated by the new reCAPTCHA Enterprise Android SDK is designed to be backward-compatible with the legacy https://www.google.com/recaptcha/api/siteverify endpoint.

It allows to update client-side applications first without immediately breaking the existing backend verification logic.

Furthermore, the old siteverify endpoint only provides a basic boolean success response. You are missing the key benefit of reCAPTCHA Enterprise: the risk score. To get the detailed risk analysis and score (e.g., assessment.riskAnalysis.score), you must complete the migration and have your backend call the new assessment endpoint https://recaptchaenterprise.googleapis.com/v1/projects/{project}/assessments

You must proceed with migrating your backend. Because legacy endpoint will be shut down according to the deprecation policy, and your verification will stop working at that point. Let me know in comments if you face same issue, I will guide you further

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): face same issue
  • Low reputation (0.5):
Posted by: Denis Kisina

79774016

Date: 2025-09-24 17:38:25
Score: 2
Natty:
Report link

I had the same issue until I changed the registration string to just use the username part before the @ and made sure "fromuser" and "fromdomain" matched what Twilio expected.

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

79774010

Date: 2025-09-24 17:32:24
Score: 2
Natty:
Report link

As of Sept 2025, watchman get-log will display the path to the logfile. Mine was in none of the places suggested above.

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

79774005

Date: 2025-09-24 17:25:22
Score: 3.5
Natty:
Report link

Because Kotlin plugin mentioned twice I have uninstall the Kotlin plugin and restarted the ide and now it works.

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

79773991

Date: 2025-09-24 17:10:18
Score: 0.5
Natty:
Report link

try to pass the parent context to your main screen.

  @override
  Widget build(BuildContext context) {
    return mainScreen(context);
  }

  mainScreen(BuildContext context) {
    return FutureBuilder(....
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yaya HC

79773990

Date: 2025-09-24 17:09:17
Score: 7 đźš©
Natty: 4.5
Report link

any update here? facing a similar issue

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): facing a similar issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Matt Drivas

79773987

Date: 2025-09-24 17:02:15
Score: 2
Natty:
Report link

Land Records in Gujarat are managed through a digital system introduced by the state government to provide citizens with easy and transparent access to property-related information. Through the official portal, people can check ownership details, survey numbers, mutation records, and land maps online without visiting government offices. This initiative has simplified the process, reduced paperwork, and made land information more secure and easily accessible for farmers, landowners, and the general public.

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

79773979

Date: 2025-09-24 16:48:12
Score: 2.5
Natty:
Report link

Attempt the property "javax.portlet.version=3.0" in the portlet

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

79773963

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

This never showed up in the docs that I looked at, but I ran the analyzer tool from Android Studio (Code -> Analyze Code -> Run inspections by name) for unused resources. The pane that explains the issues found was very large and so I had to expand it to see it all. At the very bottom it made this suggestion:

<issue id="UnusedResources">
    <option name="skip-libraries" value="true" />
</issue>

This worked! This code block goes into the lint.xml on the main app.

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

79773955

Date: 2025-09-24 16:12:04
Score: 3
Natty:
Report link

I got this error and solved it by updating rstan so likely rstan or one or more dependencies is causing this with your version of brms.

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

79773948

Date: 2025-09-24 16:04:02
Score: 1
Natty:
Report link

TinyMCE image tools don’t support adding custom attributes like "data-imagebox" directly through settings. To add such attributes, you need to use a small script that runs after an image is inserted. This script finds the inserted image and adds the custom attribute automatically. So, the best solution is to handle it with a script that modifies the image tag after insertion, since there’s no built-in way to add extra attributes via configuration.

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniel Carter

79773946

Date: 2025-09-24 16:02:01
Score: 0.5
Natty:
Report link

Since Dart 3 you can use pattern matching for this:

if (ListFinalAllInfos case {'stackoverflow': final soVariableName}) {
    print(soVariableName); // prints('one')
}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: slaci

79773945

Date: 2025-09-24 16:02:01
Score: 1.5
Natty:
Report link

Fortify does not work with Sanctum tokens out of the box (only Sanctum SPA/sessions). You should take a look at [everware/laravel-fortify-sanctum](https://packagist.org/packages/everware/laravel-fortify-sanctum), that does exactly what you're looking for.

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

79773943

Date: 2025-09-24 16:00:00
Score: 3
Natty:
Report link

You should take a look at [everware/laravel-fortify-sanctum](https://packagist.org/packages/everware/laravel-fortify-sanctum). That makes Fortify return Sanctum access tokens on login.

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

79773939

Date: 2025-09-24 15:58:00
Score: 1
Natty:
Report link

Yes, you could use it in combination with Sanctum to generate api access tokens. Which is the simplest option, otherwise you're looking at Laravel Password and more complex Oauth.

Check out [everware/laravel-fortify-sanctum](https://packagist.org/packages/everware/laravel-fortify-sanctum). That makes Fortify return Sanctum access tokens on login.

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Ken

79773936

Date: 2025-09-24 15:54:59
Score: 0.5
Natty:
Report link

Yup, Fortify does not out of the box work without some middleware defined in the 'web' group.

Check out [everware/laravel-fortify-sanctum](https://packagist.org/packages/everware/laravel-fortify-sanctum). That'll fix that for you.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Ken

79773933

Date: 2025-09-24 15:53:59
Score: 3
Natty:
Report link

{

"book": {

"title": "Introduction to JSON",

"author": "J. Doe",

"callNumbers": \[+919064767625

  "QA76.73.J38 D63 2024",

  "SPCL QA76.73.J38 D63 2024"

\]

}

}

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: Name Kerton

79773931

Date: 2025-09-24 15:52:58
Score: 0.5
Natty:
Report link

Not necessarily, checkout this package: everware/laravel-fortify-sanctum.
If it does not fit your needs, its documentation and source code should help you get to a solution.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Ken

79773930

Date: 2025-09-24 15:51:58
Score: 3.5
Natty:
Report link

Why do you all write those formulas, just use "advanced filter" on the data ribbon. Select your table, select your criterium range and you can select to filter the table itself or put the filtered list somewhere else.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why do you
  • Low reputation (1):
Posted by: Yves

79773923

Date: 2025-09-24 15:44:56
Score: 1
Natty:
Report link

Okay, I mistakenly copied idris1's example code. Parity's definition should be:

data Parity : Nat -> Type where
     Even : {n : _} -> Parity (n + n)
     Odd  : {n : _} -> Parity (S (n + n))

In Idris 2, we need to state explicitly that n is needed at run time

When I leave that parameter out, Idris inserts {0 n : _} for me, which is has quantity 0.

In this case, the erased value j is being passed as the first argument to helpEven, which is not quantity 0.

However,

(Incidentally, also note that in Idris 2, names bound in types are also available in the definition without explicitly rebinding them.)

So helpEven doesn't need (j : Nat) at all. This could work too.

 helpEven : Parity (S j + S j) -> Parity (S (S (plus j j)))
 helpEven p = rewrite plusSuccRightSucc j j in p

...
parity (S (S (j + j))) | Even = helpEven (Even {n = S j})
...
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Johnny Liao

79773922

Date: 2025-09-24 15:42:55
Score: 5
Natty:
Report link

use flutter v2ray client for accessing latest xray-core

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

79773917

Date: 2025-09-24 15:36:54
Score: 2.5
Natty:
Report link

There is a page dedicated to Chatbots here: https://zapier.com/ai/chatbot

It contains video resources and help articles to get you started!

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

79773915

Date: 2025-09-24 15:35:53
Score: 3
Natty:
Report link

As of CUDA versions above 9.x, there is a meta package named cuda-compiler-X.Y . See https://docs.nvidia.com/cuda/cuda-installation-guide-linux/#meta-packages

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Yu Cheng

79773912

Date: 2025-09-24 15:31:52
Score: 1.5
Natty:
Report link

Looks like it was this which was causing issue:

const requestMethod = '/risk/v1/decisions';

This should have been:

const requestMethod = 'post /risk/v1/decisions';

and the signature string should have v-c-date vs date. Making these changes worked.

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

79773906

Date: 2025-09-24 15:21:49
Score: 1.5
Natty:
Report link

Heres a clean way:

Dim isIn
Dim opt
Dim ok

ok = false
isIn = "100"

opt=Split("0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19")

for i = Lbound(opt) to Ubound(opt)
    if opt(i) = isIn then
        ok = true
    end if
next

MsgBox "Value found " & ok
Wscript.Quit
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Maxwell Robert

79773900

Date: 2025-09-24 15:14:47
Score: 1.5
Natty:
Report link

I found what was the issue.
This controller: controllers/xyz/UserController; in the constructor has ~ 10 service classes. I was removing them 1 by 1 and trying to compile. When the problem disappear and I saw normal compilation error, I found that in this 1 service class is missing import from jetbrains lib:

"org.jetbrains" % "annotations" % "23.0.0",

after adding this, problem disappear. Adding comment, maybe someone will have similar problem.

Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): have similar problem
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: tostao

79773891

Date: 2025-09-24 15:04:45
Score: 1.5
Natty:
Report link

This doesn't answer the question but it might be useful as a workaround.

Every year or so think I have to do something like this, for example to import a CSV into an app on Heroku. Maybe it's secure data so I don't want to give it a public URL. I literally have to find this SO answer, and I jump through all the hoops to upload the file and connect to the particular dyno.

But then I realize (this has happened more than once!) that I can just export the Heroku environment variables into my shell and run my app locally in production mode — Rails at least will connect to the production Heroku database with the DATABASE_URL parameter in the ENV. So instead of trying to move the file to Heroku, I keep it locally, run the app locally, but connect to the production database. I run the import task and the data goes into the production database. Magic.

Reasons:
  • Blacklisted phrase (1): I have to do
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Whatcould

79773889

Date: 2025-09-24 15:02:44
Score: 4.5
Natty: 5.5
Report link

I have added the CPPCheck plugin into my jenkinsfile in the form of a script with all necessary required parameters that my project may need and it works completely fine, scanning & giving me issues wherever present within my code. My question is, is it possible to add a flag or to integrate some type of button or anything remotely similar within my pipeline or anywhere in the msi installer file so that whenever I come across an issue which I know to be false-positive I directly mark it as such and continue further & also it shouldn't be visible the next time the code is being built, or in any new PR ?

Reasons:
  • Blacklisted phrase (1): is it possible to
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Raghavendra Katageri

79773883

Date: 2025-09-24 14:56:43
Score: 2.5
Natty:
Report link

In IntelliJ IDEA go to File >> Project Structure then go to Platform Settings >> SDKS and upon clicking the Android SDK link I saw an empty path. I set path to installed Android SDK. I then restarted app to confirm no setting popup and it recognized the new SDK path and prompted to upgrade.

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

79773881

Date: 2025-09-24 14:55:42
Score: 5.5
Natty:
Report link

I really, really want to give you all a big thank you, especially to users: JaMiT, Mike and Yksisarvinen for helping me out with this.

As you three pointed out that you all don't seem to be facing issues with the code I got confused till I read user Yksisarvinen's response which made me think of trying a different online compiler and viola-- my code works just fine (except when I end up guessing correctly it doesn't give me the victory text but I'll fix it)! I'm sorry if I wasted anyone's time with such a stupid problem but I was really stressing out over this-- so it does truly mean a lot to me that you all tried to help me out. Thank you (and sorry).

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (2): help me out
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: AAA

79773857

Date: 2025-09-24 14:29:36
Score: 0.5
Natty:
Report link

The use of file module has been told a lot in the previous comments. It creates the needed directory, along with the missing intermediate directories.

But the name /src/www suggests that it will be used as html source for httpd or nginx. Will AppArmor let you use this dir without further configuration? I ask because on RedHat-like systems, running SELinux, you have to register this non-standard directory as html source or the OS will refuse to use it.

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

79773835

Date: 2025-09-24 14:10:32
Score: 2
Natty:
Report link

Rename a Branch via the Web Portal

  1. Go to your Azure DevOps project → Repos → Branches.

  2. Find the branch you want to rename.

  3. Click the … (ellipsis) next to the branch name.

  4. Select Rename.

  5. Enter the new branch name and save.

âś… Note: This works for Azure DevOps hosted Git repos.

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

79773827

Date: 2025-09-24 14:04:30
Score: 1
Natty:
Report link

Your addRecordToUserWishlist function is updating your db correctly, but your UI state isn't properly showing the changes because---->

  1. You are modifying the original record object directly (record.IsInWishlist = !record.IsInWishlist)

  2. Your UI state still referencing recordsInDatabase (the original Flow), not the newly updated data

This is what i understand in a quick look

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

79773817

Date: 2025-09-24 13:59:29
Score: 0.5
Natty:
Report link

Reducing granularity(from 8 to 4) along with lowering the false positive rate(0.01 to 0.001) was effective in skipping unnecessary granule reads. Setting false positive rate to 0.0001 was giving more accuracy but with bigger bloom filter size and memory usage.
ALTER TABLE testtable ADD INDEX testindex (testColumn) TYPE bloom_filter(0.001) GRANULARITY 4;

Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: nik

79773812

Date: 2025-09-24 13:54:27
Score: 2
Natty:
Report link

I ended up figuring this out and will post my solution for others having this problem.

It seems like MediaElement works differently with MAUI .NET 9.0 and above.

I had to do two more steps in order to make the embedded video play.

  1. Update the LaunchSettings.json file and change the "commandName" value to "MsixPackage"

  2. Remove the following line from my .csproj file:

    <WindowsPackageType>None</WindowsPackageType>

After making those changes the embedded videos would play without issue.

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

79773809

Date: 2025-09-24 13:53:27
Score: 0.5
Natty:
Report link

Add this style;

/* CKEditor 5 balloon panel z-index fix */
.ck-balloon-panel {
  z-index: 9999 !important;
}

.ck-dropdown__panel {
  z-index: 9999 !important;
}

.ck-link-form {
  z-index: 9999 !important;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ahmet Alsan

79773801

Date: 2025-09-24 13:44:24
Score: 1
Natty:
Report link

unfortunately, you can't clear the console without this hardcoded message. alternatively, you can try a way to print a seperator instead of clearing the console with this (annoying) message, like this:

window.onload = function() {
  setTimeout(() => { console.log('DEV STARTED') }, 50);
}

if you're using nodejs or something like react, try using patch-package.

happy coding :)

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

79773799

Date: 2025-09-24 13:43:24
Score: 1.5
Natty:
Report link

Thanks to @C3roe, I found a solution. I needed to allow credentials in the CORS middleware and and in the fetch calls:

package main

import (
    "context"
    "log"
    "net/http"
    "os"
    "os/signal"
    "syscall"
    "time"


    "github.com/gin-contrib/cors"
    "github.com/gin-contrib/sessions"

    // gormsessions "github.com/gin-contrib/sessions/gorm"
    "github.com/gin-contrib/sessions/cookie"
    "github.com/gin-gonic/gin"
)

func init() {
}

func main() {

    r := gin.Default()

    store := cookie.NewStore([]byte("secret"))
    store.Options(sessions.Options{
        Path:     "/",   // Available across the entire domain
        Domain:   "",    // Adjust to your domain, use an empty string for localhost or omit for default behavior
        MaxAge:   3600,  // Expires in 1 hour
        Secure:   false, // Set to true if serving over HTTPS, false otherwise
        HttpOnly: true,  // Recommended: JavaScript can't access the cookie
    })

    corsConfig := cors.DefaultConfig()
    corsConfig.AllowOrigins = []string{"http://localhost:5173"}
    corsConfig.AllowAllOrigins = false
    corsConfig.AllowCredentials = true

    r.Use(cors.New(corsConfig))
    r.Use(sessions.Sessions("mysession", store))

    r.GET("/inc", func(c *gin.Context) {
        s := sessions.Default(c)
        log.Printf("Session ID: %s", s.ID())
        var count int
        v := s.Get("count")
        if v == nil {
            count = 0
        } else {
            count = v.(int)
            count++
        }

        s.Set("count", count)

        if err := s.Save(); err != nil {
            log.Printf("Error saving session in /inc")
            c.AbortWithError(http.StatusInternalServerError, err)
        }
        c.JSON(200, gin.H{"count": count})
    })

    r.GET("/dec", func(c *gin.Context) {
        s := sessions.Default(c)
        log.Printf("Session ID: %s", s.ID())
        var count int
        v := s.Get("count")
        if v == nil {
            count = 0
        } else {
            count = v.(int)
            count--
        }

        s.Set("count", count)

        if err := s.Save(); err != nil {
            log.Printf("Error saving session in /dec")
            c.AbortWithError(http.StatusInternalServerError, err)
        }
        c.JSON(200, gin.H{"count": count})

    })

    srv := &http.Server{
        Addr:    ":5001",
        Handler: r.Handler(),
    }

    go func() {
        // service connections
        if err := srv.ListenAndServe(); err != nil && err != http.ErrServerClosed {
            log.Fatalf("listen: %s\n", err)
        }
    }()

    quit := make(chan os.Signal, 1)
    signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
    <-quit
    log.Println("Shutdown Server ...")

    ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
    defer cancel()
    if err := srv.Shutdown(ctx); err != nil {
        log.Println("Server Shutdown:", err)
    }
    log.Println("Server exiting")
}

And in my javascript calls add:

const init: RequestInit = {
    credentials: 'include'  
};
const resp = await fetch('http://localhost:5001/inc', init);
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @C3roe
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Brent Parker

79773789

Date: 2025-09-24 13:39:23
Score: 1
Natty:
Report link

The paramater nudge_x can be pased a vector instead of a fixed number. From my test it starts from bottom left and go from there.

Could you try with:

nudge_x = c(0.3,0,0,0,0,0,0,0.3,0.3,0,0,0,0,0)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: joblolabinette

79773761

Date: 2025-09-24 13:24:19
Score: 1
Natty:
Report link

Looking into gcloud compute images list | grep ubuntu | grep 2404 I have found that they added -amd64 / -arm64 suffixes the to image name. So the proper image for me was ubuntu-os-cloud/ubuntu-2404-lts-amd64:

boot_disk {
  initialize_params {
    image  = "ubuntu-os-cloud/ubuntu-2404-lts-amd64"
  }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ei-grad

79773757

Date: 2025-09-24 13:21:18
Score: 2
Natty:
Report link

To fix it, fetch roles and privileges separately or combine them with UNION to avoid multiplying rows.

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

79773754

Date: 2025-09-24 13:19:17
Score: 2
Natty:
Report link

I came across a variation of this where I got the error but <ProjectTypeGuids> was not in my .csproj file. This occurred because at some point the .csproj file was upgraded but the packages.config file was not deleted. So, the fix was to simply delete packages.config.

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

79773753

Date: 2025-09-24 13:18:17
Score: 2.5
Natty:
Report link

Try removing the absolute path in the action and just post to ?/create. The component exists in the context of whatever page is using it, so when you submit the modal form it's as if you're submitting a form straight from that page.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Adam

79773737

Date: 2025-09-24 13:08:14
Score: 1.5
Natty:
Report link

I started getting this error after accidentally setting my cache folder configuration instead of getting it.

` yarn config set cache-folder` (Dont do this!)

If you make that one character typo the config gets set to a bool somehow but then all subsequent commands that read it including other calls to set or unset that would correct it fail with the above error.

Not yet figured out how to fix it!

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

79773736

Date: 2025-09-24 13:05:13
Score: 1
Natty:
Report link

The script won't work because the .activate doesn't have a parenthesis. Use the method .activate() instead.

Reference: activate()

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

79773735

Date: 2025-09-24 13:05:13
Score: 1
Natty:
Report link

Your android device does not do audio to text conversion itself, it has to connect to a third party service to do this. SpeechRecognizer is for spoken audio not a recording. For that the most promising api is google's speech to text. This uses google's own cloud service to translate audio to text. There is an explancation and a link to a tutorial on this page.

https://cloud.google.com/speech-to-text#transcribe-audio

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

79773721

Date: 2025-09-24 12:47:09
Score: 2.5
Natty:
Report link

Yeah, you just need to update the MX records in GoDaddy to point to Office 365. Right now, they’re likely set for cPanel, so that's why inbound emails aren't working. Once you switch them to the Office 365 mail servers, everything should be good!

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

79773719

Date: 2025-09-24 12:46:09
Score: 3
Natty:
Report link

i was currently configuring the docker for cypress to run parallel test but there was an error i faced and that was of cy.origin enter image description here which was very shocking as cypress is deprecating the CROS handling as it used to do befor cypress 13.0 and it is suggesting to use cy.origin for even sub domain but on the other hand docker is not able to configure it and it is throwing error

Reasons:
  • Blacklisted phrase (1): enter image description here
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hrithik

79773717

Date: 2025-09-24 12:42:08
Score: 1.5
Natty:
Report link

Apparently, after a bunch of trial and error we figured out that code above is correct but one needs to have it running against python 3.11+. Older versions won't allow such dynamic definition of literals. I am not a real proper software developer so I can't comment on root reasons for that, but once we just tried the approach from my initial question in the new environment with latest python version it just worked.

Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Maksim Khaitovich

79773712

Date: 2025-09-24 12:37:07
Score: 1
Natty:
Report link

We Tried Playing Cricket With Just AI Coaching – This Happened

Okay so here’s the deal: we decided to play a proper cricket match but ditched the human coach and went all in with AI. It sounded like a joke at first but trust me the results were both hilarious and kind of scary. From batting tips whispered by an app to AI shouting field placements louder than our captain, we’re breaking down the full messy ride.

The Idea That Started As A Dare

Someone in the group said: “Bro if AI can tell you stock tips and exam answers why not cricket shots?” and boom that’s how it began. We downloaded this AI training tool, connected it with a smartwatch and suddenly it was like having a robotic Rahul Dravid in your pocket. Not the calm version though – this one kept buzzing every time we messed up a drive.

Batting With AI On Our Shoulder

Imagine you’re standing on the pitch. Bowler running in. And your wrist buzzes just before the ball arrives: “Play late cut”. Bruh. Half the time it was right but when it was wrong the ball already passed before we even blinked. One of us legit tried a reverse sweep because AI said so and the ball smacked his helmet. Crowd of five friends laughed for 10 minutes straight.

Bowling Got Even Funnier

The AI kept recommending line and length based on “probability of dismissal”. Sounds cool right Except it told our medium pacer to keep bouncing a guy who barely reached 5’6. He ducked every ball and we just wasted overs. Later the app screamed “perfect yorker” and finally we got a wicket but honestly that was luck not tech.

The Fielding Disaster

Now this was comedy gold. AI mapped a “perfect field placement” using some algorithm. Problem is we didn’t have 11 players. Only 7 showed up. So yeah square leg, third man and mid on were completely empty. Opponent just tapped the ball where nobody stood and AI kept recalculating like a frustrated GPS.

What We Learned (Sort Of)

By the end the scoreboard didn’t matter because half of us were rolling on the ground laughing at AI screaming instructions nobody followed. Look it gave some decent suggestions but cricket isn’t math alone. It’s instinct. It’s pressure. It’s sledging. AI doesn’t get that… not yet anyway.

Final Thoughts

Would we try it againAbsolutely. Because it was ridi culous fun. Did it prove AI can replace a coach? Not even close. But here’s the weird bit – the app made us think about technique in a way we normally ignore. Maybe the future is humans plus AI not humans versus AI. For now though, we’ll stick with our old coach who doesn’t buzz our wrist before every ball.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Minkyindiawala

79773710

Date: 2025-09-24 12:30:05
Score: 1
Natty:
Report link

If you want to extend java.util.logging.Logger you must create public constructor which call parent constructor with super.

public MyLogger(String name, String resourceBundleName) {
  super(name, resourceBundleName);
}

After that just use it to create MyLogger with it like

private final MyLogger log =
    new MyLogger(
        MyService.class.getPackageName() + "." + MyService.class.getName(), null);
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Yehor

79773700

Date: 2025-09-24 12:22:03
Score: 1.5
Natty:
Report link

Okay, I found the problem. Google does not accept the barcode. Alternative:

'barcode' => [
        'message' => $customerNumber,
        'format' => 'PKBarcodeFormatQR',
        'messageEncoding' => 'UTF-8'
]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kamil

79773699

Date: 2025-09-24 12:21:03
Score: 2
Natty:
Report link

Either compile everything with setuptools or run make + tell setuptools where your library lives (libraries).

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

79773698

Date: 2025-09-24 12:21:03
Score: 1
Natty:
Report link

My problem solved by adding proguard file and below lines.

-keep class com.stripe.android.pushProvisioning.** { *; }
-keep class com.reactnativestripesdk.pushprovisioning.** { *; }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hafeezullah Shoja

79773694

Date: 2025-09-24 12:17:02
Score: 4
Natty: 4
Report link

sorry i don't have an answer. but i am working on a similar issue.

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

79773692

Date: 2025-09-24 12:14:00
Score: 1.5
Natty:
Report link

You can’t directly save a single number with Play Games Services — the Saved Games API works with byte arrays. To store your coin count, just serialize the number to a string or bytes (e.g., "12345" → UTF8 bytes) and write it to the saved game. When loading, read the bytes back, decode them to a string, then parse into an integer.

So the process is:

Convert your coin count → byte[]

Save it with CommitUpdate()

On load, read byte[] → string → int

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

79773689

Date: 2025-09-24 12:06:59
Score: 1
Natty:
Report link

You need to include the dependency in your module build gradle

dependencies {
    implementation ("com.google.gms:google-services:4.4.3")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MunterMan

79773688

Date: 2025-09-24 12:06:59
Score: 0.5
Natty:
Report link

I deleted my node_modules folder and ran a fresh npm install. It then loaded correctly.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: James Lawruk

79773686

Date: 2025-09-24 12:04:58
Score: 1.5
Natty:
Report link

Escaping '.' solved the problem

<?php
    $text1 = "eggs";
    $l = 'e.g.';
    $ll = str_replace(".", "\.", $l);
    $text2 = preg_replace(["/\b{$ll}\b/", ], ["<b>{$ll}</b>", ], $text1);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Виктор Виктор

79773685

Date: 2025-09-24 12:04:58
Score: 0.5
Natty:
Report link

In an anonymous code block, a DO loop, it's not possible to open a cursor. This is only possible through functions or procedures. However, a FOR loop within an anonymous code block will use a cursor internally, so you could rewrite the query that way.

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

79773682

Date: 2025-09-24 12:03:58
Score: 1.5
Natty:
Report link

In my case, the extra whitespace above the keyboard was caused by the device_preview package. The space disappeared when I disabled it

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

79773673

Date: 2025-09-24 11:55:56
Score: 2
Natty:
Report link

I assume your issue is caused by (at least) one of the libraries you are using. Use android studio build -> Analyze apk -> to give a list of all libraries that do not support 16kb. Update or replace them with compatible ones. If you are using native NDK then that will be a harder problem to solve.

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

79773668

Date: 2025-09-24 11:45:54
Score: 1.5
Natty:
Report link

Thank you, solution of @Sovoboys works for me.

Here is my variant:

allow(Resolv).to receive(:getaddresses).and_return(['8.8.8.8'])
stub_request(:get, /http:\/\/.+/).to_return(body: file, status: 200)
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Sovoboys
  • Low reputation (1):
Posted by: Yaroslav Yenkala

79773667

Date: 2025-09-24 11:41:53
Score: 0.5
Natty:
Report link

you want a mutation for this, not a query.

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

79773664

Date: 2025-09-24 11:39:52
Score: 0.5
Natty:
Report link

Looks like this was a bug in AG Grid that's been fixed in versions > 33.3

From the AG Grid repo:

AG-14716 - for customers using module federation, there may be many instances of this module, but we want to ensure that there is only one instance of the container to injection map per window otherwise unmounting any grid instance will clear all styles from the page resulting in unstyled grids

https://github.com/ag-grid/ag-grid/blob/a2d9c713b583467b7e5ca193f8b996c9cfbdbc26/packages/ag-grid-community/src/agStack/theming/inject.ts#L96-L107

Reasons:
  • No code block (0.5):
Posted by: mzmm56

79773662

Date: 2025-09-24 11:37:52
Score: 1
Natty:
Report link

In my case I needed to pass the props to the li item for this to work. (MUI ver. 7.1.1 )
Ex;

renderOption={(props, option, state) => {                                                                   
    return (<li {...props}><div>{option.title}</div></li>);
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: GoaKoala

79773656

Date: 2025-09-24 11:32:50
Score: 0.5
Natty:
Report link

As an alternative to the other solutions, you can add the path where the builtin parsers are located to the runtimepath (rtp). In my case /usr/lib/nvim:

require("lazy").setup({
  ...
  performance = { rtp = { paths = { "/usr/lib/nvim" } } },
  ...
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sergio Llorente

79773646

Date: 2025-09-24 11:20:48
Score: 2.5
Natty:
Report link

You may have accidentally touched the header of the pom.xml in the project tag. Confirm that it is correct and closed properly. Make sure there are no spaces within its values and that the values are correct. Compare it with another project.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniel Hernández

79773645

Date: 2025-09-24 11:18:47
Score: 3.5
Natty:
Report link

But this doesnt work when there are multiple tabs or sessions open ? each tab or session has their own context? Am i right? Each of them keep opening new windows rather than focusing existing one.

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: mvcmania

79773639

Date: 2025-09-24 11:15:46
Score: 3
Natty:
Report link

You can check if your data contains floating point numbers, specially Nan, which by I resolve this problem.

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

79773636

Date: 2025-09-24 11:13:45
Score: 0.5
Natty:
Report link

Do not use the Box to wrap your TableOfContentsTree.

<PageRender
    {...config}
    paperOptions={{
     paperSize: 'a4',
    }}
    header={() => <header>header goes here</header>}
    footer={() => <footer>footer goes here</footer>}
>
     <TableOfContentsTree tree={sections} />
 </PageRender>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: natashap

79773635

Date: 2025-09-24 11:11:45
Score: 2
Natty:
Report link

Had the same issue yesterday using Angular 18. I tried upgrading to angular 19, stabilizing packages to older versions in a working environment. Still the same.

Today, I did (again), with the original problematic configuration. I compared the "npm ls" from yestarday and today. I had exactly the same output. Then, by running these commands (git bash on windows):

And it's got to work again. Not that I changed the way to do. But it has "magically" worked. ^^"

I wonder if somehow, a patch, hidden in an previously existing version, has been made in the last hours.

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: AL Ko

79773630

Date: 2025-09-24 10:58:42
Score: 6
Natty: 7
Report link

do i need to use an SFTP client ? I would like to not use any client when uploading the data that is my propriety. Is there any way to drag and drop files into var/www folder like in a normal google cloud bucket?

Reasons:
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Amadeusz Kesicki

79773629

Date: 2025-09-24 10:57:41
Score: 4
Natty:
Report link

Understanding JavaScript Promises: A Comprehensive Guide

The issue you're experiencing is a classic asynchronous JavaScript problem. Let me explain how promises work and provide solutions using both traditional promise syntax and modern async/await.

## What Are Promises?

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

79773627

Date: 2025-09-24 10:56:40
Score: 4.5
Natty: 4.5
Report link

For me added http://localhost on console.google and also added the no-referrer-when-downgrade https://developers.google.com/identity/gsi/web/guides/get-google-api-clientid and worked. Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Priyanka Raghavan

79773616

Date: 2025-09-24 10:48:38
Score: 2.5
Natty:
Report link
(details_id = 15 AND personel_id = 5) OR (details_id = 16 AND personel_id = 5) OR (details_id = 17 AND personel_id = 5)

this will work :) 
don't ask why :(
Reasons:
  • Blacklisted phrase (1): :(
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arpad Pap

79773610

Date: 2025-09-24 10:43:36
Score: 2
Natty:
Report link

The issue was due to behavior of the specific version of Airdatepicker.
The maintainers have since updated the package with a new version, so this issue shouldn't arise anymore when using shinyWidgets >= v0.8.7 .

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