79747234

Date: 2025-08-26 19:21:02
Score: 2.5
Natty:
Report link

Only option I see is to use typed configuration. Define and use appropriate data structures for your config. This itself will prevent the application from compiling, if wrong configurations are used. Most people go with 'any' data type for simplicity but there's your con over pro.

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

79747233

Date: 2025-08-26 19:20:01
Score: 2
Natty:
Report link

I faced same problem. Then solved with this way;

1- I created a Python file disable_console_log.py inside;

import os
os.environ["KIVY_NO_CONSOLELOG"] = "1"

2- Then I put this file in my folder which i compiling to .exe
enter image description here

3- Edited .spec file as;

runtime_hooks=["disable_console_log.py"],
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: berk berk

79747209

Date: 2025-08-26 18:41:51
Score: 1
Natty:
Report link
But how is possible that kubectl client know all schemas for resources? I could install many CRDs throughout time without update kubectl cli.

k8s has 2 parts.. first - it has it's in-build schema for std objects, you even can download it if you have a working cluster (make sure your kubeconfig is correct):

kubectl proxy --port=8080 &
curl http://127.0.0.1:8080/openapi/v2 > k8s_openapi_schema.json

and you also can list and download all CRDs, each of them will also have openAPI scheme.

it's possible to get that data and validate your resources. https://github.com/yannh/kubeconform?tab=readme-ov-file#limits-of-kubeconform-validation is a good example of how to do this

the only thing is - there are some extra checks that k8s does outside of checks based on openAPI. this link above provides a bit more info

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alexey Odinokov

79747208

Date: 2025-08-26 18:40:51
Score: 1.5
Natty:
Report link

p {
 font-family: Arial;
 font-size: 6px;
}
<p>This is a test with Arial font at 6px and is NOT recommended</p>เด

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

79747204

Date: 2025-08-26 18:36:49
Score: 5
Natty: 5
Report link

example of component created with component creator?

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

79747201

Date: 2025-08-26 18:34:48
Score: 2
Natty:
Report link

If you’re facing strange encoding problems or broken tools after updating to Flutter 3.3+ (e.g., gibberish output, JDK breaking, or locale issues), check your system environment variables.

I found that the variable:

__PSLockDownPolicy = 4

was set in my system environment.

Simply delete this variable

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

79747196

Date: 2025-08-26 18:29:47
Score: 1.5
Natty:
Report link

Just add this in your .env file and boom. PRISMA_LOG_LEVEL="warn"

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

79747194

Date: 2025-08-26 18:29:47
Score: 2
Natty:
Report link

I deploy one extra service and that service is pointed to mongodb-0 which is primary after that i connected to compass using connection string its worked didnt show secondary showing as primary

only onething is issue if that mongodb-0 get restart then mongodb-1 will be become primary in that i have to still look for solutions

but my above issue is solve because its Dev Env so its very less option to have restart pod of mongodb-0

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

79747192

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

Brother are you solve this problem because I am also facing the same issue

FAILED: out/soong/build.lineage_f41.ninja
cd "$(dirname "out/host/linux-x86/bin/soong_build")" && BUILDER="$PWD/$(basename "out/host/linux-x86/bin/soong_build")" && cd / && env -i  "$BUILDER"     --top "$TOP"     --soong_out "out/soong"     --out "out"     --soong_variables out/soong/soong.lineage_f41.variables -o out/soong/build.lineage_f41.ninja -l out/.module_paths/Android.bp.list --available_env out/soong/soong.environment.available --used_env out/soong/soong.environment.used.lineage_f41.build Android.bp
Warning: Module 'androidx.wear_wear' depends on non-existing optional_uses_libs 'wear-sdk'
Warning: Module 'androidx.wear.compose_compose-foundation' depends on non-existing optional_uses_libs 'wear-sdk'
error: frameworks/opt/net/wifi/libwifi_hal/Android.bp:213:1: "libwifi-hal" depends on undefined module "libwifi-hal-slsi".
Or did you mean ["libwifi-hal-syna"]?
18:04:40 soong bootstrap failed with: exit status 1

#### failed to build some targets (01:14 (mm:ss)) ####
Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Low reputation (1):
Posted by: Subhadip Jana

79747182

Date: 2025-08-26 18:18:44
Score: 0.5
Natty:
Report link

I found a solution to the problem by omitting JS files in my test folder from being included in the Jest coverage reports. This can be done by setting the collectCoverageFrom configuration property in my jest.config.cjs file:

  collectCoverageFrom: [
    "!./**/*.{js,jsx}", // exclude JS files inside of the unit test folder
  ]

By doing this, I can freely create JS files in my test folder that contain any helper functions I need for my tests.

Coverage collection is performed by Jest in the node context. The helper function setUpTest that I wanted to keep in a separate JS file performs Puppeteer operations that are in the browser context. Because I directly import my helper function into my test files, Jest was trying to collect coverage information from it during my tests and was not able to do so. In this case, Jest uses the variable cov_1kbir0kkub during coverage collection, but it only exists within the node context, not within the browser context when setUpTest is calling functions like page.evaluate. Hence the reference error.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): any help
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Eric

79747179

Date: 2025-08-26 18:14:43
Score: 0.5
Natty:
Report link

Terraform can’t get the CSV and make it to the table alone. It’s like a blueprint of a building, you can design it to have like 3 floors or 30 floors but you cannot see inside of the building(bucket) and say that 10 CSV make 10 tables.

Terraform is for defining infrastructure, not reading live data. It can create buckets, datasets, and tables you tell it about, but it won’t look inside a bucket to find CSVs. If you want one table per CSV, you’d have to list the files yourself, Terraform won’t discover them automatically.

A better approach is to let Terraform handle creating the buckets and datasets, and then use a Cloud Function that triggers whenever a CSV file is uploaded. The Cloud Function can then tell BigQuery to create a new external table for that file, using the query or schema you define.

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

79747168

Date: 2025-08-26 18:07:40
Score: 3
Natty:
Report link

What did I type that look like AI, so I don't do it anymore? Sometimes my autistic way of communicating is a little weird I know. I don't start the conversation with proper salutations and all of that. I can send you a copy of my near 200 line install script to prove that it is not AI if you like? You to have install scripts with Debian because it doesn't hold your hand.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What did I
  • Low reputation (1):
Posted by: K6ORJ

79747153

Date: 2025-08-26 17:47:35
Score: 1.5
Natty:
Report link

I got this error once because I was using `pytest.mark.parametrize` with random arguments. The error disappeared once I made the arguments fixed and randomize within the test itself.

In case someone finds this useful.

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

79747150

Date: 2025-08-26 17:47:35
Score: 3
Natty:
Report link

Chuck! I am also late to the party. To complement on Mark's comment, I worked on building a mini solution based on your problem. The assumptions are:
1. The companies do not have a static income value for each employee. To make it more realistic, each employee sets his/her income per company.
2. The employee cannot create his/her company, but select it from an existing database.

This is how the data relationship looks:

Data Diagram

Logic:

For the most part the logic was done autonomously by using the scaffolding technique with the Employee and Company entities. I created a new aggregate to fetch Income.Amount and Group By Sum:

Aggregate GetTotalIncome

On the Employee Detail screen, I included some additional variables and actions to be able to capture the user's income and update the Sum. I used a PopUp widget to be able to capture this information and save it in "IncomeId".
EmployeeDetail Screen Elements

Feel free to test this mini app by using this link. I'm happy to share the oml file if you'd like to see the logic.

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dolcekar

79747143

Date: 2025-08-26 17:39:32
Score: 2
Natty:
Report link

As discussed in https://github.com/micronaut-projects/micronaut-grpc/issues/1097, this is, in fact, a bug in micronaut-grpc; there is not (yet!) a way to configure the server executor via the Micronaut configuration layer.

Please see the linked issue for additional discussion and workarounds.

Reasons:
  • RegEx Blacklisted phrase (1): see the link
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jon Chambers

79747142

Date: 2025-08-26 17:37:31
Score: 2.5
Natty:
Report link

Here is a new library that gives you possibilities just like in Angular to establish a model binding including automatic validation of Business datatypes

https://github.com/coolsamson7/velix

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

79747138

Date: 2025-08-26 17:33:30
Score: 2.5
Natty:
Report link

May be you try to use LazyColumn inside Column with .verticalScroll(rememberScrollState()) properties. In this case, remove the property.

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

79747136

Date: 2025-08-26 17:29:29
Score: 1
Natty:
Report link

I switched the package from jsonpath-ng to the python-jsonpath (https://pypi.org/project/python-jsonpath/) package, and this resolved my issue.

Then, I did the following,

import jsonpath
filter_data = jsonpath.findall("$..[?(@.name=='is_literate')]", data)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Lalit mahato

79747128

Date: 2025-08-26 17:17:25
Score: 9
Natty: 6.5
Report link

anyone could resolve this? I have the same problem. SOS

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (1.5): resolve this?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fernanda Rocha Miranda

79747121

Date: 2025-08-26 17:07:21
Score: 2.5
Natty:
Report link

try this

go to the store and get lofe of bread and hot sauce

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

79747118

Date: 2025-08-26 17:07:21
Score: 1.5
Natty:
Report link

our approach is to create a separate npm package for this specific use cae and maintain it manually. Your db types, app types and published types might differ widely in the future.

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

79747117

Date: 2025-08-26 17:05:20
Score: 0.5
Natty:
Report link

SwiftUI only being partially cross-platform, it is different on macOS (.directory) vs. iOS (.folder).

Here’s a fileImporter call from one of my projects where I want the user to select a directory to save files in:

#if os(macOS)
.fileImporter(
    isPresented: self.$showFileDialog,
    allowedContentTypes: [.directory],
    onCompletion: self.saveWithNewDirectory
)
#else
.fileImporter(
    isPresented: self.$showFileDialog,
    allowedContentTypes: [.folder],
    onCompletion: self.saveWithNewDirectory
)
#endif
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Grant Neufeld

79747112

Date: 2025-08-26 17:03:19
Score: 2.5
Natty:
Report link

I had same issue and fixed by defining padding and margin to .swiper class

.swiper {

padding:10px;

margin:-10px;

}

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

79747103

Date: 2025-08-26 16:52:15
Score: 4
Natty:
Report link

Cloudways was the issue switching to DigitalOcean fixed it

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

79747098

Date: 2025-08-26 16:47:14
Score: 1.5
Natty:
Report link

I found the answer, you need to set globally your audience.

1. Create your API with your identifier - "test.app.com"
2. Go to "Tenant Settings" >API Authorization Settings > Default Audience put there "test.app.com"

3. Try to get tokens again, "access_token" should now be JWT not JWE encrypted

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

79747092

Date: 2025-08-26 16:42:12
Score: 0.5
Natty:
Report link

The answer above wasn't working for me when called from within a function for some reason...but I found that adding the clear command to a run block before printing works to clear the console. I was trying to write some text and make a plot with UnicodePlots, so here is a MWE for anyone else looking to do something similar:

using UnicodePlots

function progressPlot!(i, n, x, y)  
    run(`printf "\033c"`) #clear the screen, from https://stackoverflow.com/questions/5367068/clear-a-terminal-screen-for-real/5367075#5367075
    print("some message about status of iteration $i/$n\n")
    p=lineplot(x, y)
    Base.show(stdout, p)
    flush(stdout)
end

function main()
    x = 0:100
    y = sin.(x)
    for i=1:100
        progressPlot!(i, 100, x[1:i], y[1:i])
        sleep(0.01)
    end
end

main()
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kirklong

79747090

Date: 2025-08-26 16:40:11
Score: 1.5
Natty:
Report link

I can't believe I'm responding to this.

I had a similar issue. I had to sort the files by name before adding. Then I had no issues.

There is no way that this is the correct solution but for whatever reason it is working.

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

79747084

Date: 2025-08-26 16:37:10
Score: 4
Natty:
Report link

I build a web tool to find similar pictures in local. Use PHash and Cosine similarity.

You can try it: https://frozenthaw.github.io/similarPic.html

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

79747080

Date: 2025-08-26 16:34:09
Score: 1
Natty:
Report link
  1. Use let for injected dependencies (which you don’t expect to mutate).

  2. You’re then free to inject URLSessionProtocol safely.

  3. Keep var only if you need to mutate inside the actor after initialization.

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

79747077

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

<div class="items">
  <ul>
    <li>Item1</li>
    <li>Item2</li>
    <li>Item3</li>
  <ul>
</div>

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

79747075

Date: 2025-08-26 16:29:07
Score: 1.5
Natty:
Report link

yes, you can now!       
https://github.com/microsoft/terminal/discussions/13153
what you should do, is just set the default terminal in the default property of the console

enter image description here

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

79747064

Date: 2025-08-26 16:19:04
Score: 1
Natty:
Report link

Just had the same issue, I solved it by deleting the _Repository folder inside my project directory. I then reimported the problematic library

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ayodele Evanson

79747054

Date: 2025-08-26 16:10:01
Score: 1
Natty:
Report link
 <RNPickerSelect
        ...
        style={{
          ...
          inputIOSContainer: {
            zIndex: 100,
          },
        }}

This solved my problem with the iOS input select, which could not be clicked in the entire area (it was only possible via the arrow).

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

79747052

Date: 2025-08-26 16:09:01
Score: 3.5
Natty:
Report link

На основе http://www.infoconic.com/blog/trick-for-fpdi-pdf-parser-that-supports-pdf-version-above-1-4/
Сделал вот так:

function convert_to_1_4($srcfile)
{
// Report all errors
error_reporting(E_ALL);
ini_set('display_errors', true);
$temp="C:/VirtHoshs/temp/files";
if (!file_exists($temp)) mkdir($temp);

  // Generate random number and store in $random variable
  $random = rand(1,10000);

  // new path of new pdf file created by ghostscript if file above 1.4 
  $srcfile_new = $temp.'/'.$random.basename($srcfile);
  // read pdf file first line because pdf first line contains pdf version information

$handle = fopen($srcfile, 'r');
if (!$handle) {
    die("Не удалось открыть файл: $srcfile");
}
$line_first = fgets($handle);
fclose($handle);

  // extract number such as 1.4,1.5 from first read line of pdf file
if (!preg_match('/%PDF-(\d\.\d)/', $line_first, $matches)) {
    die("Не удалось определить версию PDF.");
}
$pdfversion = (float)$matches[1];

  // compare that number from 1.4(if greater than proceed with ghostscript)
  if($pdfversion > 1.4){
  // USE GHOSTSCRIPT IF PDF VERSION ABOVE 1.4 AND SAVE ANY PDF TO VERSION 1.4 , SAVE NEW PDF OF 1.4 VERSION TO NEW PATH
    $cmd = "gswin64c.exe -dBATCH -dNOPAUSE -q -dCompatibilityLevel=1.4 -sDEVICE=pdfwrite -sOutputFile=\"$srcfile_new\" \"$srcfile\" 2>&1";
    $output = shell_exec($cmd);

     if (!file_exists($srcfile_new)) {
     error_log("Ghostscript failed: $output");
     die("Не удалось конвертировать PDF. Проверьте логи.");
    }

    $srcfile=$srcfile_new;
  }

  return($srcfile);
}
    $pagecount = $mpdf->SetSourceFile($this->convert_to_1_4($realFilePath));
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: VV Jack

79747043

Date: 2025-08-26 16:01:58
Score: 1
Natty:
Report link

Working with XML has always been a mess in java...

This is what took me many hours (again) to find out today... This is what does the magic of avoiding the need of manually or complicated configurative (e.g. via plugins in pom.xml or xjb files etc.) adding of @XmlRootElement annotations:

XmlParserFactory.saxNamespaceAwareSourceOf

Main reason: I generated the client code for Kafka messages via jaxb2-maven-plugin and did NOT want to modify them manually.

My code:

# imagine TYPE_TO_CHECK to be some generic type 
# and typeToCheck the Class<TYPE_TO_CHECK>

TYPE_TO_CHECK converted = Optional.ofNullable(
    JAXBContext.newInstance(typeToCheck).createUnmarshaller()
        .unmarshal(
        
            // this avoids the need of XmlRootElement, too :-)
            XmlParserFactory.saxNamespaceAwareSourceOf(message),
            typeToCheck
        )
).map(JAXBElement::getValue).orElse(null);
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @XmlRootElement
  • Low reputation (1):
Posted by: eztup

79747036

Date: 2025-08-26 15:55:57
Score: 2.5
Natty:
Report link

you can add a id to the object that is placed on the array so that you can create a checker every time you add to cart it checks for repeated item id. and just have it increment the quantity by 1.

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

79747019

Date: 2025-08-26 15:29:51
Score: 4
Natty:
Report link

It doesn't work for me though but in my case I use a private library which require a .npmrc file to work with npm start it's ok but not with npm test, I have this error:

    SyntaxError: Cannot use import statement outside a module
Reasons:
  • RegEx Blacklisted phrase (1): I have this error
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: pur_overspirit

79747014

Date: 2025-08-26 15:25:49
Score: 3.5
Natty:
Report link

Ok, we eventually found the bug. The culprit was minval being used inside the objective function. One of our developers was using the second argument as the length of the array. This is hard to detect. The second argument of minval is the dimension not the size. Thanks all for your input.

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

79747010

Date: 2025-08-26 15:19:47
Score: 0.5
Natty:
Report link

As most (if not all) of the answers aim on primitive datatypes (like an int in Java), I would like to offer an alternative (even though this definition is not as broadly used as the datatype one).

In a lecture about Operating Systems I attended this semester, the term primitive was often used as a broader term for "attributes" a given functionality could have.

For example a barrier (a synchronization point for multiple threads) in general has implemented something like the wait() function (in C). This function could also be considered a primitive, because it is one of the few functions/variables that are needed to implement every other (more complex) function.

Another example would be: an I/O-device-driver where the communication could be handled via interrupts or some form of memory (pipes/shared-memory/etc) and the interrupt/memory can be called a primitive for the drivers functions.

Allthough what I explained is a possible definition of the term primitive, in most cases the more-likely to be used definition is: "primitive is more or less equivalent to primitive datatypes".

And especially in the case of ops example the primitve datatype definition is most likely to be the right one. (but for everyone searching for the term primitive in a broader context this hopefully can help a little)

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

79747009

Date: 2025-08-26 15:19:47
Score: 4
Natty:
Report link

In case this questions is still relevant

Is there a way to set a per-key TTL?

Yes, you can. You need enable this by adding LimitMarkerTTL to kv config while creating kv bucket tho.

Once a KV store has been created, is there a way to change its default TTL, as you can with streams?

Yes, you can change default bucket TTL, existing keys TTL WILL be affected.

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Blacklisted phrase (1): is there a way
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Vladislav Yun

79747006

Date: 2025-08-26 15:17:46
Score: 0.5
Natty:
Report link

Prescaler is unconditionally preloaded, so it gets active only after an Update event, in your case when the counter first time rolls over.

Disclaimer: Linked article is my own work.

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

79747000

Date: 2025-08-26 15:12:44
Score: 1.5
Natty:
Report link

It might be hard to fully diagnose/troubleshoot this issue without seeing the details of the Zap run, but please check with YouTube support as well to see why the video is unavailable.

And it seems like the video you posted is also unavailable so it's hard to see what's going on exactly!

Otherwise, you can always reach out to Zapier support: https://zapier.com/app/get-help

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

79746994

Date: 2025-08-26 15:08:43
Score: 0.5
Natty:
Report link

The ports solution is necessary, but even after that i was having issues.

After a few hours of troubleshooting, it started to work with me after I manually downloaded all dependencies in each sub directory.

For context, I have a monorepo app with both a front and backend directory each with their own dependencies.

It appears Replit just assumes you won't have an architecture like this and will only need the package files at the root.

Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Low reputation (1):
Posted by: TheSurfingCoder

79746988

Date: 2025-08-26 15:02:41
Score: 3
Natty:
Report link

Might be trivial but have the Expo Go app installed in iPhone even though the terminal only tell to scan using the Camera App.

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

79746974

Date: 2025-08-26 14:54:39
Score: 1.5
Natty:
Report link

I could not resolve the issue by any mean.

At the end, I tried following method which worked:

  1. Build in Titanium

  2. Even if fail - open the .xcodeproj file located at /build/iphone/

  3. It would launch in Xcode

  4. Go to product -> Archive

  5. It will create successful build

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

79746973

Date: 2025-08-26 14:54:39
Score: 1.5
Natty:
Report link

I could not resolve the issue by any mean.

At the end, I tried following method which worked:

  1. Build in Titanium

  2. Even if fail - open the .xcodeproj file located at /build/iphone/

  3. It would launch in Xcode

  4. Go to product -> Archive

  5. It will create successful build

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

79746964

Date: 2025-08-26 14:51:37
Score: 2.5
Natty:
Report link

I've encountered this issue also when I first started too.

If you want to run locally, instead of cloud. The command is:

homey app run --remote

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

79746956

Date: 2025-08-26 14:46:36
Score: 3.5
Natty:
Report link

im new to stack but i think the issue with using node is that you can install the content through a library and have it be part of your package.json and working on it like deploying on vercel will have that file in the repo making it a standalone. but your case for cdn type library is that it doesn't work llike node with npm install. so going offline doesn't drag the feature of the library with it.

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

79746942

Date: 2025-08-26 14:35:32
Score: 1.5
Natty:
Report link

i dont know if anyone is still here that needs an answer, but i found a tool that gets both the github generated og image, and the user uploaded og image if there is one, here's the blog post: https://kai.bi/post/github-og-image, usage is https://github.html.zone/username/repo_name

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

79746929

Date: 2025-08-26 14:12:27
Score: 2
Natty:
Report link

import shutil

# Move the PDF to a path accessible for real download

download_path = "/mnt/data/Sand_Tank_B2.pdf"

shutil.copy("/mnt/data/Tanque_de_areia_B2_v2.pdf", download_path)

download_path

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Felipe Silvestre da Silva

79746912

Date: 2025-08-26 13:48:20
Score: 2.5
Natty:
Report link

Snowflake infers from the date provided whether to use a 4 hour offset or 5 hour offset for 'America/New_York' timezone. If you pass a datetime that occurs during non-DST period, it will be -5 hours from UTC. If you pass a datetime that occurs during DST, it will be -4 hours.

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

79746906

Date: 2025-08-26 13:43:19
Score: 1.5
Natty:
Report link

In my case, I forgot to add "controllers" folder in the component's main XML file.

For the JSON format, I can generate a view with the name "view.json.php", and then call it using "&view=NAME&format=json"

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

79746903

Date: 2025-08-26 13:41:18
Score: 0.5
Natty:
Report link

It works, I did git reset 'HEAD@{1}' to undo git reset --soft HEAD~1

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

79746897

Date: 2025-08-26 13:36:17
Score: 0.5
Natty:
Report link

I could avoid this problem by importing the bundled version from the /dist/ folder like this:

import {MindARThree} from "mind-ar/dist/mindar-image-three.prod.js";

and use it like this:

const mindarThree = new MindARThree({
  container: document.body,
  imageTargetSrc: "./card.mind",
  renderer: gl,
  scene: scene,
  camera: camera,
});
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: murcoder

79746895

Date: 2025-08-26 13:35:16
Score: 1
Natty:
Report link

Join on subquery currently works only in hql (implemented in v5.4: https://github.com/nhibernate/nhibernate-core/pull/2551). As of NHibernate v5.5.x, LINQ support is not yet implemented.

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

79746893

Date: 2025-08-26 13:34:16
Score: 3.5
Natty:
Report link

Can you check the bottom right corner of VS Code, in the status bar? It should show the detected "language" there. Normally you can also click on it and manually select the correct language if it’s not recognized properly.

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): Can you
  • Low reputation (1):
Posted by: XlordXtgX

79746892

Date: 2025-08-26 13:34:16
Score: 1
Natty:
Report link

If the ZIP file is generated on Android 11 then it could be the Android 11 bug that breaks setting the compression level. See https://issuetracker.google.com/issues/168035647

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

79746885

Date: 2025-08-26 13:23:13
Score: 1
Natty:
Report link

Typically, the way to lock down devices for businesses would be through Enterprise Mobility Management (EMM) solutions, e.g. Scalefusion, SureMDM, ManageEngine, to name a few. You can find a list of these providers here

With standalone applications, there are solutions such as the Fully Kiosk Browser & Lockdown and Kiosk Browser Lockdown, although both requires a paid license to access the lockdown feature.

For "free to use", I was only able to find HA Kiosk, although this was made mainly as a dashboard for home assistant, thus the app has no built-in auth and its settings can be accessed and modified even in device pinned mode.


Disclaimer: I built the app, as I was in need of a FOSS solution and Hendry's application has been removed from the Google Play Store

I made Webview Kiosk for a similar purpose. It addresses the OP's requirements of

by utilising locked-task-mode/pinned-mode.

Additionally, for my use case, protecting the settings page with authentication and blacklisting/whitelisting websites using regular expressions were needed, so that was the primary focus.

The app is fully free and open-source - you can find details on it below:

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

79746882

Date: 2025-08-26 13:21:12
Score: 2
Natty:
Report link

Simply add the thresholds above and below. 0 And negative values are valid options. Then recolour them so that the middle is green, and below is orange or red (or whatever colour your prefer).

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

79746881

Date: 2025-08-26 13:20:12
Score: 5
Natty: 5
Report link

Ever found an answer for this? :)

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ddo

79746879

Date: 2025-08-26 13:19:11
Score: 2.5
Natty:
Report link

To safely evolve Protobuf enums in Pub/Sub, you must create a new schema revision with the updated enum value, configure your topic to accept both old and new revisions, and then update your publishers and subscribers in stages to use the new schema.

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

79746872

Date: 2025-08-26 13:12:09
Score: 3
Natty:
Report link

you must execute Visual Studio as administrator. In Dsl Project (Domain Specific Language) my problen Solved

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

79746845

Date: 2025-08-26 12:40:00
Score: 2
Natty:
Report link

Should be jobopenings


curl "https://recruit.zoho.com/recruit/v2/jobopenings"
-X GET
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ashis Prasad

79746836

Date: 2025-08-26 12:35:59
Score: 2.5
Natty:
Report link

Regex expressions are powerful tools to search text efficiently. Use patterns like .*yourstring.* to find all text containing a specific string, making text extraction and data processing fast and accurate.

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

79746835

Date: 2025-08-26 12:34:58
Score: 1
Natty:
Report link

I have been looking for a solution, and this worked for me

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

79746834

Date: 2025-08-26 12:33:57
Score: 8.5
Natty: 5.5
Report link

Have you found anything on this?

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found anything on this
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: User

79746824

Date: 2025-08-26 12:21:54
Score: 2
Natty:
Report link

The answer (as always) turned out to be very simple. The Redis instance was initially created with the default 'OSSClustered' clustering policy. Changing that to 'EnterpriseCluster' fixed the issue. We now have one endpoint (at port 10000) and every request is directed to the correct cluster node automatically.

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

79746822

Date: 2025-08-26 12:21:54
Score: 1
Natty:
Report link
"integration.request.header.X-Amz-Invocation-Type" : "method.request.header.InvocationType"

Even with this line of code in terraform and with the rest api, the lambda function is not invoked async, i get a timeout error after 30secs.

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

79746820

Date: 2025-08-26 12:19:53
Score: 0.5
Natty:
Report link

After a few more hours of digging, I think I was finally able to resolve the issue and now when I'm accessing / I get status 200. Respectively this can be changed to any path. Here is the code that I made it working with:

app.Use(async (context, next) =>
{
    if (context.Request.Path == "/")
    {
        context.Response.StatusCode = 200;

        return;
    }

    await next();

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

79746815

Date: 2025-08-26 12:14:51
Score: 2.5
Natty:
Report link

Statements can be separated with a semicolon. and that is the recommand way.

alert('hello'); alert('world');

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

79746808

Date: 2025-08-26 12:05:48
Score: 1
Natty:
Report link

Found solution, adding symlink solved it

RUN apt-get update && apt-get install -y \
      iputils-ping wget unzip libaio1t64 \
      && ln -s /lib/x86_64-linux-gnu/libaio.so.1t64 /lib/x86_64-linux-gnu/libaio.so.1 \
      && rm -rf /var/lib/apt/lists/*
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: BeRightBack

79746807

Date: 2025-08-26 12:05:48
Score: 1
Natty:
Report link

I was able to fix the issue by manually removing all plugins:

cordova platform remove android
rm -rf plugins
cordova platform add android

Note that if you have manual changes inside the plugins folder, those changes will be lost. I am running under the assumption that you're trying the plugins folder as read-only, and that it's ignored in your source version control.

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

79746787

Date: 2025-08-26 11:52:44
Score: 0.5
Natty:
Report link

Such problems can also be formulated in a concise way with Clingo ASP (answer set programming):

% ---------- INPUT ----------
d(1,10). d(2,7).  d(3,13). d(4,12). d(5,4).
r(1,5).  r(2,12). r(3,7).  r(4,10). r(5,12).

% ---------- CHOICE RULE ----------
1 { trip(I,J,D+R) : d(I,D), r(J,R), J>=I } 1.

% ---------- OPTIMIZATION ----------
#minimize { C : trip(I,J,C) }.

% ---------- OUTPUT ----------
#show trip/3.

Output: (run the code online)

clingo version 5.7.2 (6bd7584d)
Reading from stdin
Solving...
Answer: 1
trip(1,1,15)
Optimization: 15
Answer: 2
trip(2,3,14)
Optimization: 14
OPTIMUM FOUND

Models       : 2
  Optimum    : yes
Optimization : 14
Calls        : 1
Time         : 0.037s (Solving: 0.00s 1st Model: 0.00s Unsat: 0.00s)
CPU Time     : 0.000s
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Guest

79746779

Date: 2025-08-26 11:47:42
Score: 6
Natty: 5
Report link

Is it possible to make the auto-completion only appear, when actually typing characters? For me it always appears after pressing Enter or just the Spacebar as well, which can be really annoying. Is it possible to disable that?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: MasterOfDesaster42

79746774

Date: 2025-08-26 11:42:41
Score: 1
Natty:
Report link

In addition to kartiks77's answer (for those that want to use pyproject.toml) and in line with the question, this also works:

#pyproject.toml
[tool.pytest.ini_options]
norecursedirs = "lib/third"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: josi

79746770

Date: 2025-08-26 11:39:40
Score: 1
Natty:
Report link

Use scales library for percent function.

Then, in geom_histogram map y to after_stat(density) to calculate proportion instead of count.

Then add scale_y_continuous(labels = percent) to format the y-axis labels as percentages

And optionally update the y-axis title with labs(y = "Percentage")

library(ggplot2)
library(scales)

ggplot(df, aes(x = val)) + 
  geom_histogram(aes(y = after_stat(density)), 
                 colour="black", fill="white", binwidth = binwidth, size = 1.2) +
  geom_density(color="#FF6666", size = 2) +
  theme_minimal() +
  theme(axis.title = element_text(size=18),
        axis.text = element_text(size=16)) +
  scale_y_continuous(labels = percent) +
  labs(y = "Percentage")

enter image description here

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

79746769

Date: 2025-08-26 11:37:39
Score: 4.5
Natty: 5.5
Report link

Slot neo 108 menciptakan suasana penuh variasi yang menarik. Dari simbol hingga warna, semua menyatu dalam harmoni permainan.

Reasons:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: neo 108

79746766

Date: 2025-08-26 11:29:37
Score: 2.5
Natty:
Report link

If you start service with startService(intent), you can put extras in that intent and then get extras in onStartCommand(intent, flags, startId)

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

79746759

Date: 2025-08-26 11:19:34
Score: 2
Natty:
Report link

This is limitation of using expo-notifications or via react native alarm handling. To precisely fire the event, you will have to take bare bone approach using java and xml.

I am working on a similar design, let me know if you want to connect.

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

79746756

Date: 2025-08-26 11:16:33
Score: 2
Natty:
Report link

What eventually worked for me is setting -fmax-type-align=8 compiler option for Clang.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: Sergei Ozerov

79746751

Date: 2025-08-26 11:08:30
Score: 6
Natty:
Report link

You're facing this issue because there are no any Collapse component exists in filament.

Also, can you share more details like what you want to achieve?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you share
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Kishan

79746731

Date: 2025-08-26 10:52:25
Score: 0.5
Natty:
Report link

Check Build Settings:

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Radu Ursache

79746725

Date: 2025-08-26 10:49:24
Score: 1.5
Natty:
Report link

use

try:
    ... command if no problem ...
except (Exception,):
    ... command if problem ...
    ..
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: T460RHP

79746713

Date: 2025-08-26 10:35:20
Score: 4.5
Natty:
Report link

Out of nowhere this started happening for me too. In both Edge and Chrome and on different machines, also in private. Consistent on all configurations.

I'm not even a web developer and certainly haven't set any break points. I'm having a sign in issue on a third party website and wanted to send them the HAR file.

This was annoying as as fuck, so thanks @Devip for the workaround though I hope this gets fixed because A) some people probably won't want to turn this off since they actually need the jump to break point and B) I frequently use DevTools to debug stuff on various machines and definitely don't want to first configure it on every browser on every machine I ever use.

It's annoying enough that on Edge it doesn't just open by default any more, and instead asks you if you really want to open it, just annoying Microsoft crap as always...

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (2): fuck
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Devip
  • Low reputation (1):
Posted by: Jakob

79746711

Date: 2025-08-26 10:35:20
Score: 3.5
Natty:
Report link

This is due to the certificate issue you should update the certificate in the wallet and need to call that certificate while calling the url

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

79746709

Date: 2025-08-26 10:32:19
Score: 3.5
Natty:
Report link

How to time set manually in particular month date to next month (eg 01/05/2025 00:00:00 to 031/08/2025 23:59:00)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: doneyo berlin

79746701

Date: 2025-08-26 10:24:16
Score: 1
Natty:
Report link

Everything I tried didn't work until I did this. I expanded my Object cointaining Count with the Properties DecimalPlaces and CountDisplay. Then I did this:

[ObservableProperty]
public decimal _count;
public int DecimalPlaces => DecimalPlacesHelper.GetDecimalPlaces(this);
public string CountDisplay => Count.ToString($"F{DecimalPlaces }");

partial void OnCountChanged(decimal value)
{
    OnPropertyChanged(nameof(CountDisplay));
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Joshie

79746682

Date: 2025-08-26 10:10:12
Score: 2
Natty:
Report link

Thanks, the problem was found and fixed. Please contact [email protected] to get a new build with the fix. This issue will be listed in the release notes for the upcoming 11.2.0 version.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Chilkat Software

79746672

Date: 2025-08-26 09:57:08
Score: 2.5
Natty:
Report link

XCode needs a matching iOS version on your Physical Device and your Mac.Showing xcode components page

Have you signed in to your Xcode? If yes, Open your Flutter project in Finder, go ios, and "Runner.xcodeproj" in Xcode. Login with your Developer Account, go to Runner> Signing & Capabilities and Select Your Team. And set your unique Bundle Identifier.
xcode setting for Flutter project

These changes should help your run the app on a physical device.

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Mahesh Babu

79746668

Date: 2025-08-26 09:54:07
Score: 2
Natty:
Report link

1. Will the state split?
You can think of it this way: React works on the new state in the background. If interrupted by an urgent update, it will discard the background work and start over from the new, updated state. The state finally committed to the DOM is always consistent, so you won't encounter "branching" bugs.
2. Will it execute twice?
No. The useEffect callback and its cleanup function only run for renders that are successfully committed to the DOM. For any render that is interrupted and discarded, its corresponding useEffect will not run at all. This prevents duplicate executions or running with inconsistent data.
3. What does it optimize?
startTransition optimizes React's rendering process, not your JavaScript computation. It allows React to pause between rendering different components, but it cannot interrupt a synchronous function while it's running. Therefore, a long-running .filter() operation will still block the main thread.
4. Will it be blocked forever?
Theoretically, yes, it's possible. If urgent updates occur continuously, a transition can be postponed indefinitely and may never complete. This scenario is known as "starvation," but it's considered an edge case in practice.

Reasons:
  • RegEx Blacklisted phrase (2): urgent
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: shuishuo yu

79746662

Date: 2025-08-26 09:50:06
Score: 3
Natty:
Report link

Now, it's possible in aframe and three js

Example in codepen: /Mexicatr-nica/pen/vENrGjX

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mexicatrónica

79746660

Date: 2025-08-26 09:47:05
Score: 1.5
Natty:
Report link

My guess is that, when using as_datetime, the unit of measure for the first argument is seconds, and not days:

45628 seconds is approx 760 minutes, which is 12.67 hours, hence why 12:40:28 is the time returned and the date remains equal to the origin

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

79746657

Date: 2025-08-26 09:46:04
Score: 2
Natty:
Report link

I suspect this has something to do with https://github.com/dotnet/aspnetcore/issues/11406.

Move _Imports.razor in RclWithLayout into the Pages folder and you should find it works.

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

79746650

Date: 2025-08-26 09:41:03
Score: 3.5
Natty:
Report link

Just in case anyone else encounters this problem, I found this to be the solution (taken from here https://medium.com/clover-platform-blog/expiring-oauth-tokens-securing-clover-merchant-data-16243b9c00cc):

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gonzalo Castro Peña

79746649

Date: 2025-08-26 09:38:02
Score: 2.5
Natty:
Report link

Consent required must be disabled for this scenario enter image description here

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

79746645

Date: 2025-08-26 09:34:00
Score: 1
Natty:
Report link

enter image description here

In my case we have 160 groups. All metadata is valid. I think the problem is because JSON file is too big.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Nike Kov

79746644

Date: 2025-08-26 09:34:00
Score: 3
Natty:
Report link

From what I’ve seen, the standard setup for most web design agencies Luton or creative teams on Azure Web Apps usually starts with a scalable hosting plan, custom domains, and integration with CI/CD pipelines for smoother deployments. Many also use staging slots for testing before pushing updates live, which really helps avoid downtime. Security features like SSL and automated backups are also common to keep client projects safe.

Curious to know - are most agencies here managing this setup in-house, or do you rely on Azure partners for the technical side?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Fast Ranking

79746643

Date: 2025-08-26 09:33:00
Score: 1.5
Natty:
Report link

GitLab supports annotations report type for artifacts which allows attaching external links to jobs. So you can generate links to known locations of artifacts and link to them.

I made an issue to show those links on MRs as well

external links

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

79746637

Date: 2025-08-26 09:27:58
Score: 5.5
Natty:
Report link

I write a function to solve this problem. support both vue 2.7 & vue 3.

You can simply call $reload() in template or reload() in setup to force current component go through lifecycle again.

Here is Live Demo and Project.

I will be so happy if you can have a try and give me some feedback, thanks for reading.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (3): give me some
  • Contains signature (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: xuyiming

79746630

Date: 2025-08-26 09:18:56
Score: 1.5
Natty:
Report link

To add to Matt's answer, it is a generally accepted thing that numpy is often much slower on very small datasets and for simpler math problems. Both of which I think this test would qualify for. Travis Oliphant, the creator of numpy, seems to regularly address this and basically comes back to the fact that numpy will always beat out other solutions on much larger and more computationally intensive problems, but due to many factors like the ones Matt has highlighted will always be slower on very small and simple problems. Here is Travis addressing your question directly in an interview from a few years ago:
https://youtu.be/gFEE3w7F0ww?si=mfTO-uJQRIZdMKoL&t=6080

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: welp