79747465

Date: 2025-08-27 02:27:43
Score: 1.5
Natty:
Report link

aws s3 cp --recursive <path/of/local_folder/> s3://<bucket_name>/

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Gwen Au

79747458

Date: 2025-08-27 02:01:38
Score: 0.5
Natty:
Report link

After getting help from @rfay in the ddev discord channel we were able to pin point the issues.

I'm using Linux - PopOs which is based in Ubuntu. I had initially installed using the script instead of using the package manager apt . So I uninstalled ddev and mkcert using the following commands:

sudo rm /usr/local/bin/ddev*

sudo rm /usr/local/bin/mkcert

I then followed the steps of installing through Debian/Ubuntu. Steps can be seen here.

After that, I checked the logs for traefik using the following commands:

ddev poweroff
ddev start
docker logs ddev-router

Which returned the following error message:

2025-08-26T16:37:30-03:00 ERR Cannot start the provider *file.Provider error="error adding file watcher: no space left on device"
172.22.0.1 - - [26/Aug/2025:19:37:56 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 1 "-" "-" 0ms
172.22.0.1 - - [26/Aug/2025:19:37:56 +0000] "GET /favicon.ico HTTP/2.0" 404 19 "-" "-" 2 "-" "-" 0ms

I then followed the troubleshooting steps

By changing the max_user_watches then I was able to resolve the domain for my project.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @rfay
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: IgorAgatti

79747438

Date: 2025-08-27 01:01:26
Score: 1
Natty:
Report link
def clean_text(s: str) -> str:
    s = s.lower()
    s = re.sub(r"https?://\S+|www\.\S+", " ", s)
    s = re.sub(r"[^a-z0-9'\s\.!\?]", " ", s)
    s = re.sub(r"\s+", " ", s).strip()
    return s
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rash Moj

79747436

Date: 2025-08-27 00:55:24
Score: 2
Natty:
Report link

Make sure you have XAML Hot Reload enabled:

Enable XAML Hot Reload

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

79747431

Date: 2025-08-27 00:51:23
Score: 2.5
Natty:
Report link

I think it was due to me renaming the skeletal mesh or skeleton, because when I reverted back to a commit before the renaming, the animations are playing in the sequencer fine with my custom character... I've read that renaming the skeletal mesh/skeletons can break the relationship between them and the animation sequences, so assuming it's something related to that.

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

79747430

Date: 2025-08-27 00:50:22
Score: 2.5
Natty:
Report link

There is a UI Setting (and the JSON equivalent, of course) precisely for this:

TypeScript: Go to Source Definition

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

79747417

Date: 2025-08-27 00:13:14
Score: 1
Natty:
Report link
def split_sentences(s: str):
    parts = re.split(r"[\.!\?]+", s)         # 1. split on ., !, or ? (one or more in a row)
    return [p.strip() for p in parts if p.strip()]  # 2. trim spaces and drop empty parts
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rash Moj

79747391

Date: 2025-08-26 22:56:59
Score: 0.5
Natty:
Report link

The "Command SwiftCompile failed with a nonzero exit code" error in Xcode 16.2 indicates that the Swift compiler encountered an issue and exited with an error status during the build process. This is a general error and requires investigation to pinpoint the specific cause.

Troubleshooting Steps:

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

79747386

Date: 2025-08-26 22:48:57
Score: 1
Natty:
Report link

For future travelers who happen upon this question in a desperate grasp at straws (like I did):

We have existing code (LWCs embedded in an Aura component) that has not been touched in a while, but on which we suddenly started to get a Component Error > Script Error that looks a lot like the OPs. This (thankfully) was only occurring in some sandboxes.

There seemed to be no rhyme or reason - in some sandboxes we had done recent dev work (but not on those components), but not in others. We finally discovered in the Setup Audit Trail where someone from Salesforce had checked Session Settings > Enable Content Delivery Network (CDN) for Lightning Component framework. (It appeared in the Audit Trail as A Salesforce employee changed 'AuraCDNPref' from 'false' to 'true' when using Manage Org Preferences.)

After unchecking Enable Content Delivery Network (CDN) for Lightning Component framework, we no longer got the Component Error.

Knowledge Article 005115596 (https://help.salesforce.com/s/articleView?id=005115596&type=1), titled, "Salesforce Lightning CDN Preference Auto Enablement" and which as of this writing is showing published 31 July 2025, indicates that Salesforce decided in their infinite wisdom to go around enabling this for everyone. In this article it states,

As this only impacts Salesforce owned content, we are enabling the org preference to be ON for customers that have the preference set to OFF. There is no required action that needs to be taken as this will be enabled by Salesforce.

I filed a Case, and in it said that I want to refute the "this only impacts Salesforce owned content" statement.

Reasons:
  • Blacklisted phrase (1): this article
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Moonpie

79747380

Date: 2025-08-26 22:43:56
Score: 2.5
Natty:
Report link

We found the RC of the issue.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: SDJ

79747379

Date: 2025-08-26 22:41:56
Score: 1
Natty:
Report link

I added the DataKeyNames attribute to the GridView to ensure unique identifiers for each row are properly managed. Then, I used the null-conditional operator (?.) when accessing the TextBox controls, like this: string NumEmpleados = (row.FindControl("TextNumEmpleado") as TextBox)?.Text;. This way, if the TextBox is not found, the code won’t try to access the .Text property and will return null instead, avoiding the exception.

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

79747361

Date: 2025-08-26 22:11:49
Score: 4
Natty:
Report link

npm install --save-dev @types/jsonwebtoken

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mandana Z

79747348

Date: 2025-08-26 21:36:41
Score: 3.5
Natty:
Report link

Nowadays, one would use Webpack's ProvidePlugin :)

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

79747340

Date: 2025-08-26 21:20:38
Score: 3
Natty:
Report link

Thanks to @C3roe for coming up with a great way to sort this. I wanted to show this answer marked complete.

$paypalData = array_values(array_filter($results['meta_data'], function($item) { return $item['key'] == '_ppcp_paypal_fraud_result'; }));

Excellent way to loop through array to find specific values.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @C3roe
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user30379416

79747333

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

@BenzyNeez It looks like this is now a known and as yet (Beta 8) unresolved issue (thanks if you raised it!):

Landscape Mode - Known Issues - Safe area, search bar alignment, and locations might be incorrect in landscape mode. (152365383)

I wanted to mention that I have also seen inconsistencies in iPad testing against the iPad Pro 11-inch simulator which sounded somewhat similar to your experience and I'm hoping have the same underlying cause. In my case on first load the top inset has been reduced unexpectedly and my toolbar title is in the safe area (compared with >18.3). But when I go back to the iPad home screen and then return to the app it magically fixes itself and the top safe area inset is being respected again. Mentioning here in case others come looking. I'll raise a new report if this doesn't get resolved when the above is fixed.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @BenzyNeez
  • Low reputation (0.5):
Posted by: okat

79747332

Date: 2025-08-26 21:11:36
Score: 4
Natty:
Report link

I accidentally typed r, b, g instead of r, g, b in find_closest_emoji

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

79747328

Date: 2025-08-26 21:11:36
Score: 2.5
Natty:
Report link

In MacOS settings (tested on Sequoia) one can search for "Allow applications to use developer tools". After adding Iterm to this list of apps, I didn't notice any delays when running my executables there for the first time after compilation. Same for VS Code. Hopefully, this answer will be helpful for others. :)

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

79747327

Date: 2025-08-26 21:09:35
Score: 3
Natty:
Report link

Have a look here:

There is an android bin as apk to download ... I have just tested... Not with a GoPro but with a DJI mini 2 se

... Vlc as viewer

https://www.happytimesoft.com/products/rtmp-server/index.html

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

79747325

Date: 2025-08-26 21:07:34
Score: 2
Natty:
Report link

For those attempting to send metrics when the user session ends, the MDN recommends to use the visibilitychange event:

  @HostListener('window:visibilitychange')
  onBeforeUnload(): void {
    if (this.document.visibilityState === 'hidden') {
      this.userSessionSpan.end();
    }
  }

https://developer.mozilla.org/en-US/docs/Web/API/Window/pagehide_event

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

79747324

Date: 2025-08-26 21:06:34
Score: 3.5
Natty:
Report link

I just finished a library that does exactly this. its open source and highly performant:

example gallery, presets, and builder: reactnativeglow.com

code: https://github.com/realimposter/react-native-animated-glow

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

79747321

Date: 2025-08-26 21:03:33
Score: 1
Natty:
Report link

Very annoying keyboard accident.

Only solution that worked for me:

  1. Expand the newly formed terminal column pane so you can see the tab bar .

  2. Right click the tab bar anywhere there is no tab and you will have a context menu where "panel position" is an option.

enter image description here

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Danny Zilberg

79747306

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

@codechurn and bryanbcook are correct, but use iif condition would be easier and shorter to use:

Reference https://learn.microsoft.com/en-us/azure/devops/pipelines/process/expressions?view=azure-devops

For given question the solution could quite simple:
azure-pipelines.yml

variables: 
   namespaceName: $[ 
     iif(notIn(variables['var-a'], '', variables['noSuch']),
         $(var-a),
         $(var-b)
     )
   ]

Note: Using variables['noSuch'] as a value Null, because Null is a special literal expression that's returned from a dictionary miss, for example. Null can be the output of an expression but can't be called directly within an expression.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @andare
  • Low reputation (1):
Posted by: salmira

79747299

Date: 2025-08-26 20:38:27
Score: 2.5
Natty:
Report link

I had a similar issue in 2025, whereby the flexbox wasn't expanding to the right height. Moving veritcal-rl css to the child element (or create a div for it to be a child if text directly used in parent) fixed it for me.

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

79747298

Date: 2025-08-26 20:38:27
Score: 0.5
Natty:
Report link

Thanks for the help, for now I’ve come up with the following solution.

I created a shared package share with the following content:

package share

import (
    "context"
    "log/slog"
)

type loggerKeyType struct{}

var loggerKey = loggerKeyType{}

func LogWithContext(ctx context.Context, logger *slog.Logger) context.Context {
    if ctx == nil {
        ctx = context.Background()
    }
    return context.WithValue(ctx, loggerKey, logger)
}

func LoggerFromContext(ctx context.Context) *slog.Logger {
    logger, ok := ctx.Value(loggerKey).(*slog.Logger)
    if !ok {
        slog.Error("failed to retrieve logger from context")
        return slog.Default()
    }
    return logger
}

And I use it further like this:

// middleware

log = log.With("telegram_id", userTGID, "telegram_username", c.Sender().Username)
ctx = share.LogWithContext(ctx, log)

user, err := userRepo.FindByTelegramID(ctx, userTGID)

// repository

log := share.LoggerFromContext(ctx)

I’m not sure how applicable this is in real projects or what issues it might cause, but for now I’ll stick with this approach. Thanks, everyone.

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

79747296

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

<div formsappId="68adf8084536cde4d187e54c"></div>

<script src="https://forms.app/cdn/embed.js" type="text/javascript" async defer onload="new formsapp('68adf8084536cde4d187e54c', 'standard', {'width':'100vw','height':'600px'}, 'https://3881wbo6.forms.app');"></script>

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

79747277

Date: 2025-08-26 20:03:18
Score: 1.5
Natty:
Report link

Just started to experience this recently on our Betheme WP site. I add a column text block and when I paste into the editor on the VISUAL site the widget toggles to the EDIT side and places the similar html.

<span data-mce-type="bookmark" style="display: inline-block; width: 0px; overflow: hidden; line-height: 0;" class="mce_SELRES_start"></span>

If I then toggle back to VISUAL - the editor disappears- when then toggling to EDIT it duplicates the code again and again and again as I toggle back and forth. Page refresh fixes but then happens again with new blocks.

Having a developer look at it now.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Nick Stocker

79747274

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

You are on the right track here but with a slight misunderstanding. Not sure how you think it would increase it by 10 fold..

I was thinking of changing the ack mode to manual and commit after every batch no matter how long it takes (of course less than the max.poll.interval) but this will increase the # of offset commits by 10 fold

You don't have to commit all the messages in the batch. you only need to commit the last offset of the batch. Which means 1 commit per batch. If the way you process messages makes it lose the order, then you could retrieve the "max" offset of a batch and commit that at the end of batch processing. This approach is what I have used and works well.

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

79747273

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

I believe the deployment order (Linux) is based on the inode number or the webapp directory in /var/lib/tomcat9/webapps

try /var/lib/tomcat9/webapps# ls -li|grep -v war|sort -n
and see if that's the order webapps get deployed

Not sure how to change the inode number yet

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

79747269

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

300000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (3.5):
  • Filler text (0.5): 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  • Low entropy (1):
  • Low reputation (1):
Posted by: Meire Patrícia

79747268

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

In my case, the case of the package name in AndroidManifest.xml and google-services.json didn't match. For example com.company.App and com.company.app. Manually corrected the package name in google-services.json and everything worked.

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

79747266

Date: 2025-08-26 19:51:11
Score: 3
Natty:
Report link

You need to limit size from the server sending you the data for session api.

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

79747257

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

I have created a package for sip integration in react native app, named react-native-sip-smooth. I built it using Linphone SDK. It is so simple and easy, have written every single detail in the README.md file. Just install and use it in your mobile app. Do check it, this is gonna solve your problem.
Thank you
npmjs.com/package/react-native-sip-smooth
github.com/Ammar-Abid92/react-native-sip-smooth

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ammar Abid

79747252

Date: 2025-08-26 19:37:07
Score: 1.5
Natty:
Report link

I think this could be happening due to your server having a different domain and your localhost on a different domain.
This is mainly because your server is being treated as a third party and that wont be allowed to set cookie on your frontend.

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

79747240

Date: 2025-08-26 19:29:04
Score: 0.5
Natty:
Report link

In addition to @Frank Heikens’ answer, you can try adding triggers on each table to track information for writes since pg_stat_user_tables only provides counters but not timestamps.

To minimize overhead, you can use FOR EACH STATEMENT trigger instead of FOR ROW as it executes per command regardless of the number of rows. You can read more about the trigger behavior in this documentation or take a look at this Medium article about using triggers to track every insert, update, and delete.

Reasons:
  • Blacklisted phrase (1): this document
  • Whitelisted phrase (-1.5): you can use
  • Has code block (-0.5):
  • User mentioned (1): @Frank
  • Low reputation (0.5):
Posted by: yannco

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