79796500

Date: 2025-10-22 07:22:39
Score: 1
Natty:
Report link
#include<stdio.h>
int main(){
int n,a;
printf("Enter a number:");
scanf("%d",&n);
for(int i=1;i<=n;i++){
    a=n%10;
printf("The digit is: %d\n",a);
    n=n/10;
  if(n==0) break;
}

return 0;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Parth Bhudhrani 9A

79796497

Date: 2025-10-22 07:19:38
Score: 3
Natty:
Report link

https://github.com/aniubilitys/keyboard-iOS

I came across this solution here. After testing his demo, it successfully redirects to the intended page.

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

79796488

Date: 2025-10-22 07:07:35
Score: 1.5
Natty:
Report link

The constant is defined in the same file in which it is used. These are defined at the beginning of the file (which also contains a lot of other information). Since the Uniface Service in which the constant is used is quite extensive, with several thousand lines, I didn't find it at first glance.

Another mistake I made was searching with <STATUSERROR>, i.e., with angle brackets instead of simply without angle brackets, such as STATUSERROR in the file.

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

79796487

Date: 2025-10-22 07:07:35
Score: 1
Natty:
Report link

I was able to solve this by supporting SSL.

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

79796485

Date: 2025-10-22 07:06:35
Score: 3
Natty:
Report link

if you are using gemini-flash try switching to gemini-pro, Flash's tool calling is unstable and is probably the cause of your agent issue.

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

79796484

Date: 2025-10-22 07:06:35
Score: 3.5
Natty:
Report link

How do we connect things tothe HomeKit? I tried pairing my A156U phone to the HomeKit payload on my Roku TV but when my phone opens the link from the QR code it just opens to "About" the HomeKit. Theres no intructuons really explaining much.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do we
  • Low reputation (1):
Posted by: Patrick Carpenter

79796475

Date: 2025-10-22 06:57:32
Score: 3
Natty:
Report link

Restarting my PC fixed it. (This is a legit answer)

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

79796472

Date: 2025-10-22 06:53:31
Score: 3
Natty:
Report link

It is probably because axios.get() is an asynchronous call. You must take a look at the topic "how to get data from an asynchronous function in a react hook".

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

79796464

Date: 2025-10-22 06:47:29
Score: 0.5
Natty:
Report link

Both have their pros and cons.

InMemory is super fast and great for quick logic checks, but it doesn’t behave like a real database — no real SQL, no constraints, so you might miss bugs...

Real database gives you the full picture and catches SQL-related issues, but it’s slower and tricky to manage in parallel tests.

A nice middle ground is using Testcontainers — it spins up a real database (like SQL Server or Postgres) in Docker just for your tests, then tears it down automatically. So you get real behavior without the headache of managing it manually.

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

79796453

Date: 2025-10-22 06:40:28
Score: 3
Natty:
Report link

The solution for me was to open Android Studio in a different space without stage manager. Work fine for me so far …

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

79796448

Date: 2025-10-22 06:33:26
Score: 1
Natty:
Report link

I had a similar issue when running eas credentials which doesn't have access to eas dashboard env variables (like eas build does) and doesn't load .env file env variables (like npx expo run does). The fix was to run it like this: eas env:exec production "eas credentials" which allowed me to inject the eas dashboard production env variables into the credentials command so that my app.config.ts had access to the necessary env variables.

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

79796447

Date: 2025-10-22 06:33:26
Score: 1
Natty:
Report link

Simply remove the width setting, allowing patchwork to automatically determine the width and height.

library(ggplot2)
library(patchwork)

g1 <- ggplot() +
    geom_point(aes(x = sort(rnorm(100)), y = sort(rnorm(100)))) +
    geom_abline(slope = 1, linetype = "dashed") +
    coord_fixed()
g2 <- ggplot() +
    geom_point(aes(x = sort(rnorm(100)), y = 2 * sort(rnorm(100)))) +
    geom_abline(slope = 1, linetype = "dashed") +
    coord_fixed()
(g1 + g2)

enter image description here

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

79796416

Date: 2025-10-22 05:50:17
Score: 0.5
Natty:
Report link

If you have other machines connected to hangfire db and you are debugging locally, other machines will take the the job you enqueued.
Since your changes are only local you will see such errors

To debug locally you can use in memory db

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aziz Gulakov

79796403

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

Wrap is a clothing brand that makes simple comfortable and stylish clothes.click

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
  • Low reputation (1):
Posted by: NANDAGOPAN A IPCS

79796393

Date: 2025-10-22 04:40:04
Score: 0.5
Natty:
Report link

I abstractly consider programming language built for configuration is not turing complete others are.

One can express

"Python programming language is turing complete for problems x which is decidable, for algorithm y exist.

"CSS is not turing complete for problems x, for algorithm y does not exist even the problem x is decidable"

There is a question "For every problem x does algorithm Y exist" is undecidable.

What problem is decidable or undecidable is proven by turing machine which is field of computability.

There for if some problem is decidable but cannot be solved with programming language then the programming language is not turing complete.

Computable function

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

79796388

Date: 2025-10-22 04:21:00
Score: 0.5
Natty:
Report link

Have you referred to the steps here: https://docs.stripe.com/payments/existing-customers?platform=web&ui=stripe-hosted#prefill-payment-fields?

As far as I know, Checkout is in payment or subscription mode supports prefilling card payment method.

If you're followed the steps and your payment method isn't display, you'd probably want to contact Stripe support with your checkout session and the collected payment method ID so that their team can look into why the payment method wasn't redisplayed.

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

79796387

Date: 2025-10-22 04:21:00
Score: 3.5
Natty:
Report link

Note for simulators and testflight, the time is always for UTC 0.

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

79796379

Date: 2025-10-22 03:43:52
Score: 0.5
Natty:
Report link

I think your emitted events are getting overridden somewhere, but it's hard to speculate

  1. Can you provide a stackblitz demo?

  2. Or any Logs on your console that we may help you?

  3. Have you tried simplifying the document-browser.component.html so that you can track if the emit event is being triggered?

will update my answer based on your reply


in the meant time you can check out this angular emitted events video that helped me.

https://seebeu.com/learn/course/angular-web-framework/simplifying-angular-emitted-events

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • RegEx Blacklisted phrase (2.5): Can you provide
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: tomexsans

79796378

Date: 2025-10-22 03:38:51
Score: 1
Natty:
Report link

The issue is with this line:

squares := !squares :: (!x * !x);

Essentially, the cons operator (::) takes in an element and a list and returns a list which you are doing but in the wrong order. So from my understading the line should be replaced with:
squares := (!x * !x) :: !squares;

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

79796363

Date: 2025-10-22 03:06:44
Score: 2.5
Natty:
Report link

So i hope the question is to automatically update daily data in the looker studio chart from the google sheet. To update the daily data , you can set a trigger in google sheets so that the data gets updated daily.

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

79796362

Date: 2025-10-22 03:03:43
Score: 3
Natty:
Report link

Just open two diffrent windows with Show(). But launching two "apps" in one thread in one app is war crime. Both frameworks use Assembly namespace and use singletones for controlling the app proccess.

And the other question... What for? And for what?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: tankoman 228

79796344

Date: 2025-10-22 02:09:31
Score: 3
Natty:
Report link

You can try Service Bus Cloud Explorer—a cross-platform, web-based SaaS with a free tier. It lets you sort messages by enqueued time (ascending or descending) and includes powerful filtering and search capabilities.
enter image description here

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

79796339

Date: 2025-10-22 01:47:27
Score: 1
Natty:
Report link
procedure TForm1.WebBrowser1DidFinishLoad(ASender: TObject);
begin
if WebBrowser1.URL<>'about:blank' then  //or check your link
  begin
  WebBrowser1.URL:='about:blank';       //or your link
  Application.ProcessMessages;
  WebBrowser1.LoadFromStrings('...our link...','http://mypage.html');
  end;
end;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AvS

79796322

Date: 2025-10-22 00:43:13
Score: 2.5
Natty:
Report link

The simplest solution for unused methods is to use them.

If you care about test coverage then you should be writing a unit test for each publicly exposed method. I

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

79796315

Date: 2025-10-22 00:17:08
Score: 3.5
Natty:
Report link

Update the issue was outdated ndk and android sdk was outdated by 1 version
steps i took for fixing was open android studioAndroid studio main screen

opened tools and selected sdk manager
open sdk manager in tools section
and went to sdk tools and updated all android related sdks
Sdk tab

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

79796313

Date: 2025-10-22 00:17:08
Score: 0.5
Natty:
Report link

For me it worked after updating and fixing npm packages:

npm update
npm audit fix --force
Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: manish sehgal

79796309

Date: 2025-10-22 00:06:05
Score: 1
Natty:
Report link

You can set them to anything you want in the env var SBT_OPTS:

-Dsbt.boot.directory=/home/user/.sbt/boot/ -Dsbt.ivy.home=/home/user/.sbt/.ivy2/
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: automorphic

79796290

Date: 2025-10-21 22:43:49
Score: 1
Natty:
Report link

The current documentation for Entity Framework suggests the usage of a real database.

The main reasons are:

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

79796287

Date: 2025-10-21 22:34:48
Score: 2.5
Natty:
Report link

I know this is old but putting this here because I had the same question and the response marked as the answer needed to be slightly modified.

Get-FileHash -Path "C:\path\to\your\file.ext" -Algorithm SHA256

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Sam

79796284

Date: 2025-10-21 22:27:46
Score: 1
Natty:
Report link

first, you need a way to count how many clicks the player made. every time they click, you add +1 to a variable that stores the total.

then, you need to know when the counting started. so, when the first click happens, you mark the current time as the starting point.

every second (or periodically), you check how many clicks happened within that one-second window. that number is the cps — clicks per second.

if that number is too high, like 20 or 30 clicks per second, it’s very likely the person is using an autoclicker. then you can decide what to do: show a warning, block clicking, or just log it for analysis later.

when a second passes, you can reset the counter and start again, or use a smarter approach: store the timestamp of each click and remove the ones older than one second. this way, the cps keeps updating in real time without needing to reset.

I did this on my own site that also calculates CPS: https://day-apps.com/en/click-counter

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Pedro Henrique da Silva Lima

79796278

Date: 2025-10-21 22:22:45
Score: 0.5
Natty:
Report link

I would generally recommend avoiding any initialization in EF models. The issue might be initialization them to null in runtime so even when they have value EF will override it with yours. I met this behaviour multiple times on previous project i was working on when Enumerable were set to [] by default in models and there were empty lists in response.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Антон

79796272

Date: 2025-10-21 22:11:43
Score: 2
Natty:
Report link
<ScrollView style={{ maxHeight: '100vh' }}>
  {/* contenu */}
</ScrollView>
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Fils Matand

79796268

Date: 2025-10-21 22:04:41
Score: 3.5
Natty:
Report link

Thank you @jqurious for the help and keeping sane, so I was downloading the pdf via edge (cause I'm lazy and got a new windows laptops) downloaded it with firefox and it worked. If anyone can explain why that is the case would be much appreciated, happy to share both download versions for comparison.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): appreciated
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @jqurious
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: Will

79796266

Date: 2025-10-21 22:01:40
Score: 2
Natty:
Report link

Root cause
I edited the code in the Lambda console and did not click Deploy. Saving in the editor does not make the change live for the version or alias that S3 is invoking. After I clicked Deploy, S3 events started invoking the function again.

Fix in the console

  1. Open the Lambda function.

  2. Click Deploy to publish the code change.

  3. On Configuration > Triggers, make sure the S3 trigger is Enabled.

  4. Upload a test object to the bucket and prefix.

  5. Check CloudWatch Logs.

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

79796262

Date: 2025-10-21 21:52:38
Score: 2
Natty:
Report link

Had same problem. Nothing had seem to work, kernel connection ran forever but:

Make sure to have no additional python versions installed on your computer that you dont need.

Or check the routings in your environemental variables.

After approx. 4 hours of searching I found out that other python installations may affect you even if they are not used, or you are using a python virtual environement.

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

79796260

Date: 2025-10-21 21:47:37
Score: 0.5
Natty:
Report link

Consider (after allowing for "subset of ID's from 'A'" and "filtered by a range of timestamps"):

SELECT A.id,
    ( SELECT COUNT(*) FROM B WHERE B.id = A.ID WHERE ???) AS B_count,
    ( SELECT COUNT(*) FROM C WHERE C.id = A.ID WHERE ???) AS C_count,
    ( SELECT COUNT(*) FROM D WHERE D.id = A.ID WHERE ???) AS D_count
    FROM A
    WHERE ???
Reasons:
  • Blacklisted phrase (1): ???
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Rick James

79796243

Date: 2025-10-21 21:22:32
Score: 1.5
Natty:
Report link

Yes, Flutter does support embedded accessibility for the web. However you do usually need those semantic widgets/attributes to make things work the way you want.

There's a little bit of extra work on Flutter Web to get screen readers working compared to other platforms, since web accessibility is off by default. See https://docs.flutter.dev/ui/accessibility/web-accessibility#opt-in-web-accessibility for details.

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

79796242

Date: 2025-10-21 21:22:31
Score: 6.5 🚩
Natty:
Report link

I have find this : https://guacamole.apache.org/doc/1.6.0/gug/guacamole-native.html

You have all the dependencies for fedora because amazon linux 2023 is based on !

Else, you can help you with this AMI to see the dependencies deployed : https://aws.amazon.com/marketplace/pp/prodview-ya7i5ohmfyl3e

Reasons:
  • RegEx Blacklisted phrase (3): you can help
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: HadrienV

79796239

Date: 2025-10-21 21:17:30
Score: 0.5
Natty:
Report link

There is not such method in pandas, but you could create the DataFrame in one line lika this

import pandas as pd

nRow = 10
nCol = 4


df = pd.DataFrame(1, index=range(rows), columns=range(cols))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Matias Bertani

79796238

Date: 2025-10-21 21:16:29
Score: 2.5
Natty:
Report link

Could you try if upgrading to v3.4.2 or above fixes this issue. This seems similar to what was reported here.
PS: I'm a MongoDB Employee

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

79796224

Date: 2025-10-21 20:54:25
Score: 1.5
Natty:
Report link

If you want a simple & fast answer: t_hash=tensor.sum() is pretty likely to work in most situations. It might be that not all your asks are required.

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

79796219

Date: 2025-10-21 20:48:23
Score: 2
Natty:
Report link

For example ,you can use python to create your dashboard and add time condition (datetime library) or !

https://learn.microsoft.com/en-us/power-bi/connect-data/desktop-python-scripts

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: HadrienV

79796214

Date: 2025-10-21 20:38:21
Score: 4
Natty:
Report link

thank you very much, I spet 1 hour thinking my localhost is somehow blocked

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Danijel Brecelj

79796200

Date: 2025-10-21 20:19:16
Score: 0.5
Natty:
Report link

Fix:


const heightModel = computed({
  get: () => props.height ?? "",
  set: (val: string | number) =>
    emits("update:height", val !== "" && val !== undefined ? Number(val) : undefined),
});

const weightModel = computed({
  get: () => props.weight ?? "",
  set: (val: string | number) =>
    emits("update:weight", val !== "" && val !== undefined ? Number(val) : undefined),
});
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: codenathan

79796199

Date: 2025-10-21 20:15:14
Score: 6 🚩
Natty:
Report link

What are the permissions on your perl script ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What are the
  • Low reputation (1):
Posted by: HadrienV

79796189

Date: 2025-10-21 19:56:10
Score: 1.5
Natty:
Report link

You can write a simple validator, that compares a string to its upper case equivalent

bool isUppercase(String str) {
  return str == str.toUpperCase();
}

implementation

void main(){
 String str = "Hello World!";
 bool startsWithUppercase = isUppercase(str[0]);
 print("Starts with upper case: $startsWithUppercase");
}

The docs https://pub.dev/documentation/string_validator/latest/string_validator/isUppercase.html shows how to check if a string is uppercase in dart

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

79796188

Date: 2025-10-21 19:56:10
Score: 2
Natty:
Report link

The 249 limitation is connected to this bug: Headless conversion silently stops after reaching ~250 files

A workaround is to invoke /usr/lib/libreoffice/program/soffice.bin directly instead of soffice / lowriter, e.g.:

/usr/lib/libreoffice/program/soffice.bin --headless --convert-to html *.rtf

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

79796183

Date: 2025-10-21 19:51:09
Score: 0.5
Natty:
Report link

Summarizing previous replies (for python 3.*):

...
try:
    result_str = bytes(fullDataRead).decode()
except Exception as e:
    print('TODO: add handling of exception: ' + str(e)) # add here your exception-handling if needed
    result_str = 'Exception by retrieving the string!'
print(result_str)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dr.CKYHC

79796175

Date: 2025-10-21 19:36:05
Score: 0.5
Natty:
Report link
use feature state;

sub alternatecase {
    my $str = shift;

    sub alternate {
        state $c = 1;
        return ($c = !$c);
    }

    $str =~ s/(\w)/alternate() ? uc($1) : lc($1)/ge;
    return $str;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: HeliumHydride

79796170

Date: 2025-10-21 19:29:04
Score: 3.5
Natty:
Report link

If a helper column work, you can add a helper column to calculate the difference of the % for each row, and then do their averages in the pivot table.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: Nitesh Halai

79796159

Date: 2025-10-21 19:16:01
Score: 0.5
Natty:
Report link
output = ''.join(string.rsplit(fragment, string.count(fragment) - 1))
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Konstantin Makarov

79796156

Date: 2025-10-21 19:13:00
Score: 1
Natty:
Report link

Partition the string by the fragment and replace it only in the tail:

a, b, c = string.partition(fragment)
output = a + b + c.replace(fragment, '')
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Robert

79796154

Date: 2025-10-21 19:08:59
Score: 1
Natty:
Report link

Possible solution using list comprehension:

alpha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
''.join(alpha[i % 26] for i in range(18,18+13))
Out[104]: 'STUVWXYZABCDE'

Or per the original post:

a = [1, 2, 3, 4, 5, 6]
[a[i % len(a)] for i in range(4, 4 + 5)]
Out[106]: [5, 6, 1, 2, 3]

Thanks to Andy Richter for the expanded versions that led to this idea.

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

79796146

Date: 2025-10-21 19:02:57
Score: 0.5
Natty:
Report link

The reason the formula doesn't work is because the lack of FALSE the values of 'Grade' column are not sorted. A comes before A* when it comes to sorting the values in an ascending order, so when the VLOOKUP is lookup up the value with the exact match (FALSE) argument is missing, it will not be able to 'find' the value A, since its already overtaken by A*

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

79796145

Date: 2025-10-21 19:01:57
Score: 2
Natty:
Report link

Thank you to those who suggested setting the range lookup to FALSE. This has fixed it.

=VLOOKUP(F74, (INDIRECT($K$3)),2,FALSE)
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user2463758

79796143

Date: 2025-10-21 18:56:55
Score: 4
Natty:
Report link

In the top part of most pages you can switch what is currently the Focused (global) Selection. If you try changing to another page after changing it, you'll notice that the selection will follow you to another page. You can always switch to <No Selection> to start over (but yes, previous selections will still be available in the combo box).

I take it that you're looking for a way to clear out all previous selections, and not just selecting the "<No Selection>"? If so, how would you want to access that functionality? A context menu with "Clear All Selections"? Something else? Please let me know what you'd prefer, and I'll open an issue and add it. :)

Reasons:
  • Blacklisted phrase (1): how would you
  • RegEx Blacklisted phrase (2.5): Please let me know what you
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Hirt

79796140

Date: 2025-10-21 18:51:54
Score: 1
Natty:
Report link

for a DataTable, it works to wrap the widget in SelectionArea

SelectionArea(
  child: DataTable(
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: rodeomacon

79796139

Date: 2025-10-21 18:45:53
Score: 2.5
Natty:
Report link

In the top part of most pages you can switch what is currently the Focused (global) Selection. If you try changing to another page after changing it, you'll notice that the selection will follow you to another page. You can always switch to <No Selection> to start over (but yes, previous selections will still be available in the combo box).

I take it that you're looking for a way to clear out all previous selections, and not just selecting the "<no selection>"? If so, how would you want to access that functionality? A context menu with "Clear All Selections"? Something else? Let me know what you'd prefer, and I'll open an issue and add it. :)

Reasons:
  • Blacklisted phrase (1): how would you
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Marcus Hirt

79796130

Date: 2025-10-21 18:29:49
Score: 2.5
Natty:
Report link

I think you're frustrated with not getting auto-suggestions when we create a controller. The auto suggestion won't work cause we didn't import the Express thing into that. So I solved this issue by using the async-handler module. I don't know if this is the correct way or not

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

79796122

Date: 2025-10-21 18:15:47
Score: 2.5
Natty:
Report link

Flutter’s framework layer (the Dart side) doesn’t expose the active rendering backend. It only interacts with the engine(C++) through a platform channel boundary and the engine handles whether it’s Skia or Impeller internally.

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

79796090

Date: 2025-10-21 17:35:37
Score: 1.5
Natty:
Report link

{

"roles": [

{"name": "👑《𝐏𝐑𝐄𝐒𝐈𝐃𝐄𝐍𝐓𝐄》", "color": "#ffcc00", "hoist": true},

{"name": "🧠《𝐃𝐈𝐑𝐄𝐓𝐎𝐑 𝐆𝐄𝐑𝐀𝐋》", "color": "#ffd966", "hoist": true},

{"name": "⚙️《𝐀𝐃𝐌𝐈𝐍𝐈𝐒𝐓𝐑𝐀𝐃𝐎𝐑》", "color": "#ff9900", "hoist": true},

{"name": "🛡️《𝐌𝐎𝐃𝐄𝐑𝐀𝐃𝐎𝐑》", "color": "#33cccc", "hoist": true},

{"name": "🎯《𝐒𝐔𝐏𝐎𝐑𝐓𝐄》", "color": "#99ccff", "hoist": true},

{"name": "🗣️《𝐒𝐓𝐀𝐅𝐅 𝐎𝐅𝐈𝐂𝐈𝐀𝐋》", "color": "#66ffff", "hoist": true},

{"name": "🧤《𝐆𝐎𝐋𝐄𝐈𝐑𝐎》", "color": "#3399ff"},

{"name": "🛡️《𝐙𝐀𝐆𝐔𝐄𝐈𝐑𝐎》", "color": "#0066cc"},

{"name": "🪄《𝐌𝐄𝐈𝐀》", "color": "#0033cc"},

{"name": "⚡《𝐀𝐓𝐀𝐂𝐀𝐍𝐓𝐄》", "color": "#0000ff"},

{"name": "🔥《𝐑𝐄𝐒𝐄𝐑𝐕𝐀》", "color": "#6600cc"},

{"name": "🏅《𝐂𝐀𝐏𝐈𝐓𝐀̃𝐎》", "color": "#ffcc33"},

{"name": "🔵

《𝐓𝐎𝐑𝐂𝐄𝐃𝐎

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • No latin characters (1.5):
  • Low reputation (1):
Posted by: Joelma Barbosa

79796087

Date: 2025-10-21 17:32:37
Score: 3.5
Natty:
Report link

I think I found the answer. I added headers to the http client in MAUI, simulating the browser, and the Windows application started working.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Коля Сибиряк

79796084

Date: 2025-10-21 17:25:35
Score: 1
Natty:
Report link

My first suspicion is the multiprocessing capability while using numpy library may be redundant and can cause slow down. If that makes sense to you, you can restrict the multiprocessing for each Numpy instance. However, if you think the bottleneck is at numpy file reading operation, then you may like to see if a scanner is slowing the operation down or perhaps the lcoation of the production is not conducive for fast operations. You can isolate the read operation and time it in production to rule it out.

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

79796080

Date: 2025-10-21 17:23:35
Score: 2
Natty:
Report link

There’s no solid fully offline Bengali transliteration solution for React Native right now. Everything decent either relies on Node.js or is too simplistic. If you want natural looking results go cloud (Google Translate or your own backend). If you really need offline, you can bundle a small ONNX/TFLite model, but that’s extra setup and smth like 15 MB in size.

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

79796077

Date: 2025-10-21 17:18:33
Score: 0.5
Natty:
Report link

import React, { useState, useEffect, useRef } from 'react';

export default function PlatformerGame() {

const canvasRef = useRef(null);

const [player, setPlayer] = useState({ x: 50, y: 200, width: 30, height: 30, dy: 0, onGround: false });

const [keys, setKeys] = useState({});

const gravity = 0.5;

const jumpForce = -10;

const groundY = 300;

const platforms = [

{ x: 0, y: groundY, width: 500, height: 20 },

{ x: 150, y: 250, width: 100, height: 10 },

{ x: 300, y: 200, width: 100, height: 10 }

];

useEffect(() => {

const handleKeyDown = (e) => setKeys((prev) => ({ ...prev, [e.code]: true }));

const handleKeyUp = (e) => setKeys((prev) => ({ ...prev, [e.code]: false }));

window.addEventListener('keydown', handleKeyDown);

window.addEventListener('keyup', handleKeyUp);

return () => {

window.removeEventListener('keydown', handleKeyDown);

window.removeEventListener('keyup', handleKeyUp);

};

}, []);

useEffect(() => {

const ctx = canvasRef.current.getContext('2d');

const gameLoop = () => {

let newPlayer = { ...player };

// Apply horizontal movement

if (keys['ArrowRight']) newPlayer.x += 3;

if (keys['ArrowLeft']) newPlayer.x -= 3;

// Apply gravity

newPlayer.dy += gravity;

newPlayer.y += newPlayer.dy;

newPlayer.onGround = false;

// Platform collision

for (let p of platforms) {

if (

newPlayer.x < p.x + p.width &&

newPlayer.x + newPlayer.width > p.x &&

newPlayer.y + newPlayer.height < p.y + 20 &&

newPlayer.y + newPlayer.height > p.y

) {

newPlayer.y = p.y - newPlayer.height;

newPlayer.dy = 0;

newPlayer.onGround = true;

}

}

// Jump

if (keys['Space'] && newPlayer.onGround) {

newPlayer.dy = jumpForce;

}

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

79796067

Date: 2025-10-21 17:07:31
Score: 2.5
Natty:
Report link

The underlying mechanism is a trap preventing the execution of code, DEP. In my case, I used a function pointer before initializing it.

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

79796060

Date: 2025-10-21 16:56:28
Score: 0.5
Natty:
Report link

oc exec is now deprecated and you shall use:

kubectl exec

instead in latest OpenShift anyway https://kubernetes.io/docs/reference/kubectl/generated/kubectl_exec/

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

79796059

Date: 2025-10-21 16:56:28
Score: 4
Natty: 4.5
Report link

PostgreSQL in Astra Linux have breaking changes and not compatible with TimescaleDB.

https://wiki.astralinux.ru/kb/postgresql-rasshirenie-timescaledb-371817563.html

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

79796056

Date: 2025-10-21 16:53:27
Score: 2
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Indonesia 

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

79796040

Date: 2025-10-21 16:37:24
Score: 1.5
Natty:
Report link

I've been able to get JAGs models to knit properly without running the model in console by saving it as a file instead of using sink . Like so:

cat(file = "model.txt"," 
model {
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Theo Black

79796038

Date: 2025-10-21 16:35:23
Score: 1.5
Natty:
Report link

Function is contained in Microsoft Visual Basic for Applications - [Module4 (Code)]

What I have in the Macro is the action

RunCode

 Function Name Opening()

The message I get when running the macro is

The expression you entered has a function name that Well Pattern Data Test can't find

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

79796033

Date: 2025-10-21 16:31:22
Score: 3
Natty:
Report link

I recently encountered the same problem and I discovered a fix to it.
If you tried other tips and it didn't help just remove the line from css stylesheet and put it only in the html header like this

  1. Remove this from css; @import url('https://fonts.googleapis.com/css?family=Poppins');

2. and Put only this in the html header; (<link ref='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>)

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @import
  • Low reputation (1):
Posted by: David Nwaeke

79796024

Date: 2025-10-21 16:24:20
Score: 0.5
Natty:
Report link

from fpdf import FPDF

# Buat objek PDF

pdf = FPDF()

pdf.add_page()

pdf.set_auto_page_break(auto=True, margin=15)

# Header

pdf.set_font("Arial", "B", 16)

pdf.cell(0, 10, "Curriculum Vitae", ln=True, align="C")

# Data Diri

pdf.set_font("Arial", "B", 12)

pdf.cell(0, 10, "Data Diri", ln=True)

pdf.set_font("Arial", "", 12)

pdf.cell(0, 10, "Nama Lengkap: Regi Akmal", ln=True)

pdf.cell(0, 10, "Tempat, Tanggal Lahir: Karawang, 08 Juni 2004", ln=True)

pdf.multi_cell(0, 10, "Alamat: Dusun: Karajan, RT/RW: 002/007, Desa: Medang Asem, Kecamatan: Jayakerta, Kabupaten: Karawang")

pdf.cell(0, 10, "No. Telepon: 085545164091", ln=True)

pdf.cell(0, 10, "Email: [email protected]", ln=True)

pdf.cell(0, 10, "LinkedIn / Portofolio: -", ln=True)

# Pendidikan

pdf.set_font("Arial", "B", 12)

pdf.cell(0, 10, "Pendidikan", ln=True)

pdf.set_font("Arial", "", 12)

pdf.cell(0, 10, "SMK Al-Hurriyyah", ln=True)

pdf.cell(0, 10, "Jurusan: Teknik Komputer Jaringan", ln=True)

pdf.cell(0, 10, "Tahun: 2018 - 2021", ln=True)

pdf.cell(0, 10, "Nilai Rata-rata: 80", ln=True)

# Pengalaman Kerja

pdf.set_font("Arial", "B", 12)

pdf.cell(0, 10, "Pengalaman Kerja", ln=True)

pdf.set_font("Arial", "", 12)

pdf.cell(0, 10, "PT: Iretek", ln=True)

pdf.cell(0, 10, "Posisi: Produksi", ln=True)

pdf.cell(0, 10, "Periode: 6 bulan", ln=True)

pdf.cell(0, 10, "Deskripsi Tugas/Pencapaian: -", ln=True)

# Keahlian

pdf.set_font("Arial", "B", 12)

pdf.cell(0, 10, "Keahlian", ln=True)

pdf.set_font("Arial", "", 12)

pdf.cell(0, 10, "- Mampu mengoperasikan alat kerja", ln=True)

pdf.cell(0, 10, "- Mengoperasikan Microsoft Office", ln=True)

# Simpan file

pdf.output("CV_Regi_Akmal.pdf")

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

79796022

Date: 2025-10-21 16:23:19
Score: 1.5
Natty:
Report link
df.columns = pd.MultiIndex.from_tuples(
    [("", "") for col in df.columns], 
    names=pivotdf.columns.names
)

merged_df = pd.concat([df, pivotdf], axis=1)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mk_

79796020

Date: 2025-10-21 16:23:19
Score: 1
Natty:
Report link

I've had success adding this line to the bottom of my project's AssemblyInfo file in which I would like to expose internal methods/items. Also using .NET Framework 4.8

[assembly: InternalsVisibleTo("myProject.tests")]

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

79796013

Date: 2025-10-21 16:12:17
Score: 3
Natty:
Report link

from command line: p4 reopen -t edit [filename]

edit: i'm totally wrong. I could swear this used to work but it doesn't. apologies.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Schismarch

79796011

Date: 2025-10-21 16:10:16
Score: 2.5
Natty:
Report link

Own owio qoqn own ow wo moq own own pw Wmk qo Wmk won kow kalo qml amyo kw wow Owo soil eko now own koam kqm nka qmn qlq iu aql own koqm iqno own naos qp own nao e ow own reo own u're wro kelly now noa own ola owns asel pqm isown now in wow j own own pw wok own own jow wo Owo Colacok now wow ore

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

79796007

Date: 2025-10-21 16:07:15
Score: 0.5
Natty:
Report link

Claude gave me this answer... it was longer but I can't post it all..

Looking at your code, I can see the issue. The delete_transient() function is being called inside the pl_clear_db() function, which only runs when you manually call it. However, the deactivation hook is registered to call pl_clear_db, but this function definition needs to be available when the plugin is deactivated.

The problem is likely one of these:

  1. The function isn't being executed during deactivation - Plugin deactivation hooks sometimes don't execute the way you expect

  2. The transients have already been deleted before this runs - WordPress might be clearing some data first

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

79795998

Date: 2025-10-21 15:55:12
Score: 4
Natty:
Report link

Open this link: https://nodejs.org/en/download/archive/v0.12.18 and scroll down to Installer Packages. Then download the package foe windows.

Note that 0.12.18 is the last version that was supported by win xp.

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Simplmon

79795992

Date: 2025-10-21 15:43:09
Score: 0.5
Natty:
Report link

After reading comments from @dewaffled I've realized that I was missing something. And after reading the implementation again, I found that the wait itself was inside the loop.

libcxx:atomic_sync.h
libcxx:poll_with_backoff.h

template <class _AtomicWaitable, class _Poll>
_LIBCPP_HIDE_FROM_ABI void __atomic_wait_unless(const _AtomicWaitable& __a, memory_order __order, _Poll&& __poll) {
  std::__libcpp_thread_poll_with_backoff(
      /* poll */
      [&]() {
        auto __current_val = __atomic_waitable_traits<__decay_t<_AtomicWaitable> >::__atomic_load(__a, __order);
        return __poll(__current_val);
      },
      /* backoff */ __spinning_backoff_policy());
}
template <class _Poll, class _Backoff>
_LIBCPP_HIDE_FROM_ABI bool __libcpp_thread_poll_with_backoff(_Poll&& __poll, _Backoff&& __backoff, chrono::nanoseconds __max_elapsed) {
  auto const __start = chrono::high_resolution_clock::now();
  for (int __count = 0;;) {
    if (__poll())
      return true; // __poll completion means success

  // code that checks if the time has excceded the max_elapsed ...
}

__atomic_wait calls the __libcpp_thread_poll_with_backoff with polling and backoff policy, which does the spinning work.

And as mentioned by @dewaffled, same thing goes for libstdc++.

libstdc++:atomic_wait.h

template<typename _Tp, typename _Pred, typename _ValFn>
    void
    __atomic_wait_address(const _Tp* __addr, _Pred&& __pred, _ValFn&& __vfn,
              bool __bare_wait = false) noexcept
    {
      __detail::__wait_args __args{ __addr, __bare_wait };
      _Tp __val = __args._M_setup_wait(__addr, __vfn);
      while (!__pred(__val))
    {
      auto __res = __detail::__wait_impl(__addr, __args);
      __val = __args._M_setup_wait(__addr, __vfn, __res);
    }
      // C++26 will return __val
    }

So just looking at the implementation, atomic<T>::wait can spuriously wakeup by the implementation (as @Jarod42 mentioned), but does not return from a function until the value has actually changed.

To answer my question,

  1. It's a educated guess (as @Homer512 mentioned), which can minimize the spurious wakeup with a reasonable space.
  2. Since value itself is compared on each wakeup, sharing state across multiple addresses is fine.
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @dewaffled
  • User mentioned (0): @dewaffled
  • User mentioned (0): @Jarod42
  • User mentioned (0): @Homer512
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ross1573

79795981

Date: 2025-10-21 15:27:06
Score: 1.5
Natty:
Report link

Best quick fix - keeps only your specified radial grid lines

scale_y_continuous(
  breaks = c(0:5) + exp_lim,
  limits = range(c(0:5) + exp_lim)
)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bashir Abubakar

79795977

Date: 2025-10-21 15:22:04
Score: 5.5
Natty:
Report link

Hello please use our official npm package at https://www.npmjs.com/package/@bugrecorder/sdk

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

79795971

Date: 2025-10-21 15:13:02
Score: 0.5
Natty:
Report link

I will answer my question I am using wrong npm package I should use https://www.npmjs.com/package/@bugrecorder/sdk

client.init({
    apiKey: "1234567890",
    domain: "test.bugrecorder.com"
});

Track CPU, MEMORY, FILE (read/write), Network metrics

This will send the metric to the dashboard automatickly

client.monitor({
    serverName: "server_dev_1",
    onData: (data) => {
        console.log("data from monitor", data);
    },
    onError: (error) => {
        console.log("error from monitor", error);
    }
});

Send Server Side Errors

client.sendError({
    domain: "test.bugrecorder.com",
    message: "test",
    stack: "test",
    context: "test"
});
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Smart Spark Ai

79795964

Date: 2025-10-21 14:59:58
Score: 3
Natty:
Report link
LOCAL_SRC_FILES := $(call all-cpp-files-under,$(LOCAL_PATH))
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eberty Alves

79795961

Date: 2025-10-21 14:57:57
Score: 1.5
Natty:
Report link

You mention that to run, you used this command - ./filename.c. This command is creating issue. You should run the object file not the source code file. The proper command is ./filename

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

79795958

Date: 2025-10-21 14:56:57
Score: 1
Natty:
Report link

filename.c is your source code file, not the compiled program.

To run your program,
./filename

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

79795955

Date: 2025-10-21 14:55:57
Score: 1.5
Natty:
Report link

In case anyone is looking for an answer to this in 2025, go to the XML side of the designer. Find the image you are trying to increase the size of. Set the constraints according to the size you want and then include:

android:scaleType="fitCenter"

There are other values available, but this will increase the size of the image to the maximum possible without cropping while keeping it centered in the view.

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

79795943

Date: 2025-10-21 14:43:54
Score: 2.5
Natty:
Report link

if you want to make the mobile side app , Yes you can make it , with this you can cast photos videos, etc to the roku device

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

79795938

Date: 2025-10-21 14:40:53
Score: 0.5
Natty:
Report link

The main problem here is that, you are using custom migration in wrong way.

0. If your old database was not VersionedSchema already, then migration will not work.
1. Custom migration still migrate data in automatic way, so you don't need to remove or add models by yourself.
2. willMigrate give you access to new context with model V1
3. didMigrate give you access to new context with model V2
4. Doing migrationFromV1ToV2Data = v1Data is nothing else like copying references. After removing it from context with context.delete you are left with empty references.

So you have 2 options:
A)
You should make migrationFromV1ToV2Data: [PersistentIdentifier: Bool] and in willMigrate copy current property1 with modelID.

  
    private static var migrationFromV1ToV2Data: [PersistentIdentifier: Bool] = [:]
    
    static let migrateFromV1ToV2 = MigrationStage.custom(
        fromVersion:    MyDataSchemaV1.self,
        toVersion:      MyDataSchemaV2.self,
        willMigrate:
        {
            modelContext in
            
            let descriptor  : FetchDescriptor<MyDataV1>    = FetchDescriptor<MyDataV1>()
            let v1Data      : [MyDataV1]                   = try modelContext.fetch(descriptor)
            
            v1Data.forEach {
                migrationFromV1ToV2Data[$0.persistentModelID] = $0.property1
            }
        },
        didMigrate:
        {
            modelContext in

            for (id, data) in migrationFromV1ToV2Data{
                if let model: MyDataV2 = modelContext.registeredModel(for: id) {
                    model.property1 = [data]
                }
            }

            try? modelContext.save()
        }
    )
}

B)
Create V2 model from V1 in willMigrate, and populate into new context in didMigrate.

  
    private static var migrationFromV1ToV2Data: [MyDataV2] = []
    
    static let migrateFromV1ToV2 = MigrationStage.custom(
        fromVersion:    MyDataSchemaV1.self,
        toVersion:      MyDataSchemaV2.self,
        willMigrate:
        {
            modelContext in
            
            let descriptor  : FetchDescriptor<MyDataV1>    = FetchDescriptor<MyDataV1>()
            let v1Data      : [MyDataV1]                   = try modelContext.fetch(descriptor)
            
            migrationFromV1ToV2Data = v1Data.map{ MyDataV2(myDataV1: $0) }
            
            try modelContext.delete(model: MyDataV1.self)
            try modelContext.save()
        },
        didMigrate:
        {
            modelContext in

            migrationFromV1ToV2Data.forEach
            {
                modelContext.insert($0)
            }
            
            try modelContext.save()
        }
    )
}

I had problem with relationships in one of my migration where i need to use option B, but in most cases opt A is enough.

Reasons:
  • Blacklisted phrase (0.5): i need
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Chris

79795935

Date: 2025-10-21 14:37:52
Score: 1
Natty:
Report link
def Q1(numerator, denominator):
    # Check if both are numbers (int or float), but not complex
    if not (isinstance(numerator, (int, float)) and isinstance(denominator, (int, float))):
        return None

    # Avoid division by zero
    if denominator == 0:
        return None

    # Check divisibility using modulus (%)
    return numerator % denominator == 0
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: LightningFz

79795929

Date: 2025-10-21 14:34:51
Score: 1.5
Natty:
Report link

The problem seems to be solved with

import io
pd.read_csv(io.BytesIO(file.read()), encoding="cp1257")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Aidas

79795925

Date: 2025-10-21 14:30:50
Score: 2.5
Natty:
Report link

The default admin password for the MQ console when using the cr.io/ibm-messaging/mq image is 'passw0rd'.

I found that the MQ_ADMIN_PASSWORD env variable does work if specified.

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

79795923

Date: 2025-10-21 14:26:49
Score: 2.5
Natty:
Report link

If your OptionButtons are in ControlFormat this where you manipulate state, I do believe

This of course would depend if depending on whether you want the OptionButton selected ? Can be set either x1on or x10ff

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Becky Behn

79795918

Date: 2025-10-21 14:22:48
Score: 3
Natty:
Report link

Just ensure you have the deployment target at 15.1 for iOS.

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

79795912

Date: 2025-10-21 14:10:45
Score: 1
Natty:
Report link

2025 Vuetify 3.10+

"vite.config.js":

vuetify({
  styles: {
    configFile: 'src/styles/settings.scss',
  },
})

"src/styles/settings.scss":

@use 'vuetify/settings' with (
    $body-font-family: ('Arial', sans-serif),
);

Source: https://vuetifyjs.com/en/features/sass-variables/

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

79795910

Date: 2025-10-21 14:08:45
Score: 3
Natty:
Report link

Change the size of: Tools – Options – Environment - Fonts and Colors - Statement Completion/Editor Tooltip

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

79795891

Date: 2025-10-21 13:49:40
Score: 3.5
Natty:
Report link

Would OpenTelemetry collector aggregation help (https://last9.io/blog/opentelemetry-metrics-aggregation/)? There should be no app change, and it is handled in the collector pipeline.

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

79795887

Date: 2025-10-21 13:44:39
Score: 4
Natty:
Report link

Are you using ControlFormat ?

Is your approach to work with shapes? Perhaps manipulate the OptionBotton sate, 'if' button inserted as a Form Control.

New here .. Curious did you modify the .value property of the OptionBotton object?

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

79795882

Date: 2025-10-21 13:39:37
Score: 1
Natty:
Report link

Here is the official documentation for the Remedy Rest APIs

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is the of
  • High reputation (-2):
Posted by: Saikat

79795873

Date: 2025-10-21 13:28:35
Score: 1.5
Natty:
Report link

The issue was caused by invalid dependencies in package.json that created conflicts during the Docker build process.
Fix:

  1. Remove the invalid dependency from package.json

  2. Clean all cache and node_modules

  3. Rebuild Docker containers without cache

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