79538425

Date: 2025-03-27 09:43:15
Score: 3.5
Natty:
Report link

It doesnot provide any inbuilt function to change the size or appearance.

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

79538420

Date: 2025-03-27 09:41:15
Score: 2
Natty:
Report link

If its just the quantity per month you are interested I would unpivot the the Open Date and Close Date fields in power query and then use the Date type as the legend. If you would like help on unpivot let me know

Example Table

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

79538406

Date: 2025-03-27 09:37:14
Score: 1
Natty:
Report link

I am using AWS Cognito for authentication in my iOS app (Swift). I noticed that the token used for authentication is the one from the initial login of the app session. However, after I kill the app and reopen it, the token updates to a new one.

Expected Behavior:

The token should be updated immediately after login, without needing to restart the app.

Current Behavior:

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Nguyễn Đức Thành

79538397

Date: 2025-03-27 09:35:13
Score: 7 🚩
Natty: 6
Report link

Could you please help me viewing the "rig" option. I only have Model, Animation and Materials.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Could you please help me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lionessa

79538395

Date: 2025-03-27 09:34:13
Score: 5.5
Natty: 6.5
Report link

will this able to switch language?? because i have problem with switching language?

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

79538390

Date: 2025-03-27 09:32:12
Score: 5
Natty:
Report link

It's a bug, an issue was opened in milvus repo https://github.com/milvus-io/milvus/issues/40955

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

79538384

Date: 2025-03-27 09:31:12
Score: 1
Natty:
Report link

The official documentation also states:

The use of SELECT to access an internal table is usually less efficient than the statements for internal tables and should only be used in cases not covered by these statements.

Therefore it only makes sense to use SELECT for internal tables if you use specific functions which SELECT provides and READ TABLE/LOOP AT do not.

In the case of functions like SUM, MAX, ... it might be worth testing whether SELECT + inbuilt function or LOOP + coding performs better, probably it is a case of "it depends".

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

79538383

Date: 2025-03-27 09:30:11
Score: 1.5
Natty:
Report link

You can create a database column with the type blob CREATE TABLE users(username TEXT, profile_picture BLOB, bio TEXT); and then pass the file path like this INSERT INTO users(username,profile_picture,bio) VALUES(?,LOAD_FILE('file/path.png'),?);

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

79538375

Date: 2025-03-27 09:27:10
Score: 1
Natty:
Report link

Supposing you want to filter out all the ones who have the value < 1.0, we can do something like this:

new_list = list(filter(lambda x: x['value']>=1.0, old_list)) # will contain all the values >= 1.0, considering old_list is the name of the list

adjust the comparing value 1.0 to the value you want

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

79538365

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

You can try removing the code apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) in android/app/build.gradle. As suggested here. I faced the same issue recently and fixed it after removing that line.

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

79538362

Date: 2025-03-27 09:23:09
Score: 3.5
Natty:
Report link

SELECT name FROM employee

WHERE salary > 2000 AND months < 10

ORDER BY employee_id ASC;

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

79538339

Date: 2025-03-27 09:13:08
Score: 1.5
Natty:
Report link

Here is a good tool as well:
https://rapidocweb.com/examples/example2.html

Petstore illustrate the typical design decisions and tradeoffs a developer makes when building an enterprise application. The demo shows how to document REST API services OpenAPI format and is based on Petstore sample by swagger.io team. It was further extended by ReDoc Team.

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

79538338

Date: 2025-03-27 09:12:07
Score: 1.5
Natty:
Report link

I know this is old but for future references:

Rect Mask 2D component has got a property called Softness, it basically does the same thing.

enter image description here

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

79538332

Date: 2025-03-27 09:10:07
Score: 1
Natty:
Report link

Is there any way to login in azure cr using only docker login command?

To login to Azure container registry via docker without using Azure CLI.

Please refer this Msdoc to generate access token.

Refer this doc to know how to enable SSL Certificate Verification in Postman.

Now you can log in to ACR using Docker,

echo "<REFRESH_TOKEN>" | docker login <container-registry>.azurecr.io -u <CLIENT_ID> --password-stdin

Here I've successfully logged in via docker. Now you can pull your image. enter image description here

Reasons:
  • Blacklisted phrase (1): Is there any
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
Posted by: Sirra Sneha

79538330

Date: 2025-03-27 09:10:07
Score: 3.5
Natty:
Report link

The rank is a MySQL reserved word defined in MySQL version 8.0.2. U need to add backticks to rank.

https://dev.mysql.com/doc/refman/8.4/en/keywords.html

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

79538328

Date: 2025-03-27 09:08:07
Score: 1
Natty:
Report link

Try to add this.

    <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-surefire-plugin</artifactId>
       <version>3.5.2</version>
       <configuration>
          <useModulePath>false</useModulePath>
          <includes>
             <include>**/*.java</include>
          </includes>
       </configuration>
    </plugin>
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: santosh

79538324

Date: 2025-03-27 09:06:06
Score: 1.5
Natty:
Report link
Run below
kubectl config view --raw > $HOME/.kube/config

and then run 
stern <pod-name> -n <namespace>

example
stern wso2am-gateway-internal-deployment -n wso2am4x-prod
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sidd

79538317

Date: 2025-03-27 09:04:06
Score: 3.5
Natty:
Report link

Console.WriteLine(new string(args[0].Reverse().ToArray()));

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

79538300

Date: 2025-03-27 08:54:04
Score: 1.5
Natty:
Report link
In most cases, the env file is not sent to the server during distribution. You can upload it manually, but this is not recommended. Make the changes you made in env in the config file.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vanilla ice pubg mobile

79538299

Date: 2025-03-27 08:52:03
Score: 2
Natty:
Report link

how you access the HTML file? using double click from finder/explorer? if so, that is the problem, try accessing html from browser using url:

http://localhost/camping_project/home_page/home.html
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how you
  • Low reputation (1):
Posted by: Hendra

79538296

Date: 2025-03-27 08:51:03
Score: 3
Natty:
Report link

You could condition the possibility of AttributeType.DIFFICULTY existing when starting the itemViewHolder function and then do a difficultyView.visibility = View.INVISIBLE

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

79538292

Date: 2025-03-27 08:49:02
Score: 2.5
Natty:
Report link

As of early 2025 you have more Granularity in the settings.

You can go to Settings > Editor > Inspections > Java > Unused declaration > Members to report

In Methods select "private" : only visibility private will be detected.enter image description here

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

79538289

Date: 2025-03-27 08:48:02
Score: 4
Natty: 5
Report link

Thanks Mahmoud, your answer saved my day. With Angular 19, I got this weird cyclic dependency error when injescting a service that injects MessageService as well. The only way to solve it was to add MessageService as a provider in the app-config.ts file.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): saved my day
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Gérard COLLIN

79538288

Date: 2025-03-27 08:48:02
Score: 2
Natty:
Report link

I think you are missing a "Download secure file" task, that would download the missing service account key to the agent directory, since you need it in the last step. add it between steps 19 and 20.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Štěpán Obrátil

79538275

Date: 2025-03-27 08:43:00
Score: 2.5
Natty:
Report link

You can try using a CoroutineScope, on the io thread (remember that io does not handle the interface so you will have to use a with context on the Main thread to paint something on it).

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

79538253

Date: 2025-03-27 08:34:59
Score: 2
Natty:
Report link

Additionally to the answers above, there is a package compatible with both v2 and v3 that does auto import.

https://github.com/unplugin/unplugin-vue-components

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

79538246

Date: 2025-03-27 08:31:58
Score: 1.5
Natty:
Report link

Now sure about Athena, but for Trino I am using

SELECT 
  regexp_extract(format('%.20f', x), '^(-?\d+\.\d+?)(0*)$', 1)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Denis Khamitov

79538245

Date: 2025-03-27 08:30:58
Score: 2.5
Natty:
Report link

Now we can use requestSubmit(). It fires onsubmit event.

the submit event is sent back to the form object.

https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/requestSubmit

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

79538233

Date: 2025-03-27 08:24:56
Score: 4
Natty:
Report link

in git repo i described how to enable postman scratchpad for latest version

https://github.com/arr037/postman-scratchpad

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

79538224

Date: 2025-03-27 08:19:55
Score: 3.5
Natty:
Report link

You could use a MAXScript to scramble object names and materials, making the file hard to understand. Another option is exporting only needed elements while keeping sensitive data separate.

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

79538223

Date: 2025-03-27 08:19:55
Score: 2
Natty:
Report link

Try use:

facingMode: { exact: "environment"}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ECSTeam

79538222

Date: 2025-03-27 08:19:55
Score: 3
Natty:
Report link

Banker's Rounding has been explained and coded in C++ by cplusplus.com here.

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

79538220

Date: 2025-03-27 08:18:54
Score: 1.5
Natty:
Report link

I think you should import CSV files, which are also impex files, just over the "administraion console" /hac. I would not implement an REST endpoint for this, if you just can use the "IMORT IMPEX" funtionality.

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

79538202

Date: 2025-03-27 08:12:53
Score: 0.5
Natty:
Report link

If you’re looking to experience the grandeur of the Maharajas Express, one of the most luxurious trains in the world, here’s a step-by-step guide to help you book your ticket and plan your journey smoothly.

1. Official Website for Booking

The easiest and most reliable way to book a Maharaja Express ticket is through the official website: Maharaja Express Train.

2. Authorized Travel Agents

You can also book through authorized travel agents or luxury tour operators. Many agencies offer Maharaja Express ticket booking services, sometimes with customized travel packages. Ensure you book through reputed and verified agents to avoid scams.

3. Ticket Price Information

The Maharaja Express ticket price varies based on the route, cabin category, and travel season. As of now, the approximate fares are:

4. Maharaja Express Routes

The train offers several luxurious routes showcasing the best of India:

Tips for Booking

For more information, visit the website or consult with certified travel agents. Enjoy your royal journey on the Maharajas Express!

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

79538190

Date: 2025-03-27 08:06:52
Score: 0.5
Natty:
Report link

Found the answer - or a possible answer:

Instead of the expensive

Buffer.concat([allData, data]);

This is much faster:

1.) Pre-alloc a Buffer:

const allData = Buffer.alloc(mbExpected * 1024 * 1024); 
// if the size is too small, node seems to auto-expands the buffer

// store the current position in the buffer
let currentPosition = 0;

2.) Fill the data into the buffer:

allData.fill(data, currentPosition, currentPosition + data.length);
currentPosition += data.length;

With this, the code runs a lot faster!

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

79538189

Date: 2025-03-27 08:06:52
Score: 0.5
Natty:
Report link

Just do a flutter pub upgrade again.

The provider 6.1.4 version has a fix for this, the previous version had the error. You can check here:
https://pub.dev/packages/provider/changelog

Or set the provider: ^6.1.4 in your pubspec.yaml file.

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

79538178

Date: 2025-03-27 08:02:51
Score: 2.5
Natty:
Report link

I believe this explanation is simpler:

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Stoycho Andreev

79538176

Date: 2025-03-27 08:02:51
Score: 2
Natty:
Report link

this might be just my wrong assumption on the way you think of it, but it sounds like in your mind you have this picture where the Redis instances behind IDistributedCache are living inside the same box with your app and spins up and down bundled to your app instance.

But actually it doesnt work like that. In simple terms it s like a remote service. You have a Redis instance(or a cluster of them) and each of your app access them when they are up(or when they need). It s not the case they spin up directly attached to your cloud app when your app itself scales. Take a look at how it is pictured in this blog

Reasons:
  • Blacklisted phrase (1): this blog
  • Blacklisted phrase (1): doesnt work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: atakavci

79538175

Date: 2025-03-27 08:01:50
Score: 0.5
Natty:
Report link

How are you converting your salt to a byte array? If using UTF8 (like the below):

            var l_saltBytes = Encoding.UTF8.GetBytes("test");

the result will be 4 bytes long - so this is expected - the salt needs to be bigger than 8 bytes. The salt is used with the password to create keys. If the salt is fewer than 8 bytes then it doesn't add enough randomness to the generated keys, so the result is very vulnerable to brute force attacks due to lack of entropy.

Page 5 of the RFC spec explains this in some detail:
https://www.rfc-editor.org/rfc/rfc2898.txt

Note the section:

      1. It is difficult for an opponent to precompute all the keys
         corresponding to a dictionary of passwords, or even the most
         likely keys. If the salt is 64 bits long, for instance, there
         will be as many as 2^64 keys for each password. An opponent is
         thus limited to searching for passwords after a password-based
         operation has been performed and the salt is known.

So even though this is an example, it talks about 64 bits long (there are 8 bits in a byte), and this has been taken as a sensible minimum within Rfc2898DeriveBytes.

A good salt needs to be at least this length, and should be random. Guids are quite often used (you can generate one using Guid.NewGuid().ToString() but will obviously need to save it to validate the password) - so to get your code working try using something like that - but it is by design that the salt must be at least 8 bytes in length.

The following works:

        static void Main(string[] args)
        {
            string ConstantFatcorString = "1000";

            var m_Password = "this is my passowrd";
            var l_saltBytes = Encoding.UTF8.GetBytes("testtest");
            byte[] l_bytes = null;

            using (var pbkdf2 = new Rfc2898DeriveBytes(
                       m_Password,
                       l_saltBytes,
                       1000,
                       HashAlgorithmName.SHA256))
            {
                l_bytes = pbkdf2.GetBytes(32);
            }
        }

Please ensure you use a more sensible value for salt though for the reasons given :)

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How are you
  • Low reputation (1):
Posted by: Nick Pattman

79538172

Date: 2025-03-27 08:00:50
Score: 1.5
Natty:
Report link

for linux: cd into folder with project and execute

npm install

npm install @rollup/rollup-linux-x64-gnu
npx vite .
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniil Bannov

79538166

Date: 2025-03-27 07:56:49
Score: 2.5
Natty:
Report link

@startuml

actor Student

actor Teacher

actor Admin

Student -> (Login/register)

Student -> (create or edit portfolio)

Student -> (View portfolio)

Student -> (submit portfolio)

(Student) .> (Upload documents) : <<include>>

(Student) .> (view feedback) : <<extend>>

Teacher -> (Review Portfolio)

(Review Portfolio) .> (Approve/reject Portfolio) : <<extend>>

Teacher -> (Provide feedback)

Reasons:
  • No code block (0.5):
  • User mentioned (1): @startuml
  • Low reputation (1):
Posted by: SANKARA GOMATHI P

79538163

Date: 2025-03-27 07:55:49
Score: 4
Natty: 5.5
Report link

Для Windows/Linux это сочетание клавиш — CTRL + ALT + O, для Mac — Cmd + Option + O.

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

79538161

Date: 2025-03-27 07:54:48
Score: 2.5
Natty:
Report link

I prefer to use the Find Window instead of the popup find. In Find Window, on the left, the icon you're looking for this purpose is the eye. There you should disable grouping by Usage type.

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

79538159

Date: 2025-03-27 07:54:48
Score: 1
Natty:
Report link

The exposed behaviour is available since PHP v8.3.0. It is demonstrated in Example #6: Fetch class constant syntax, in the documentation page of Class Constants.

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

79538157

Date: 2025-03-27 07:53:48
Score: 4
Natty:
Report link

Replace the .txt in the url with -index.html

https://www.sec.gov/Archives/edgar/data/1037540/000165642325000009/0001656423-25-000009-index.html

You can find the image files there.

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

79538156

Date: 2025-03-27 07:53:46
Score: 6.5 🚩
Natty: 5.5
Report link

Isnt thats what git is built for ???? skibidi !

Reasons:
  • Blacklisted phrase (1): ???
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Durgesh

79538155

Date: 2025-03-27 07:53:46
Score: 0.5
Natty:
Report link

All form fields should have a unique name in FilamentPHP, as stated by the docs (emphasis mine):

Fields may be created using the static make() method, passing its unique name. The name of the field should correspond to a property on your Livewire component. You may use “dot notation” to bind fields to keys in arrays.

I'm not entirely sure about the Filament internals, but I assume Filament/Livewire totally relies on the name of the inputs as the only way to distinguish between those. Hence, the results of the method you call on one of the fields, may also get applied to any other field with the same name.

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

79538149

Date: 2025-03-27 07:50:46
Score: 2
Natty:
Report link

Firestore is a quickly changing offering but here is a simple way to grab some data from a Collection/Document structure in Cloud Firestore: tap Query Builder, use the dropdowns to select the scope and path and up pops a grid of data...depending on your plan and the size of data you are looking at, you might have a limit ($$ or otherwise) but at this point you can just copy the data grid and paste it into something like Excel for further manipulation (if you want).

This really helped me quickly get to the place where I would look at the documents all at one time.

Reasons:
  • Blacklisted phrase (1.5): This really helped
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Joel Butler

79538148

Date: 2025-03-27 07:50:46
Score: 0.5
Natty:
Report link

List of allowed fields is here: https://developers.google.com/my-business/reference/businessinformation/rest/v1/locations

So correct fields for locations are title,storeCode,name,websiteUri,openInfo etc (comma separated).

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

79538146

Date: 2025-03-27 07:48:45
Score: 0.5
Natty:
Report link

To make it work universally, the simplist solution is to use sed and mv(a tempfile).

sed '1d' test.dat > tmp.dat && mv tmp.dat test.dat
Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Xiangyu Meng

79538143

Date: 2025-03-27 07:46:45
Score: 4
Natty: 4.5
Report link

Upgrading to node 22.14 should fix this issue.

https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V22.md#2025-02-11-version-22140-jod-lts-aduh95

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

79538142

Date: 2025-03-27 07:46:45
Score: 0.5
Natty:
Report link

This isn't a real "answer", but...

Edge and Igalia are working to bring this to Chromium, so may be worth +1'ing the ticket and keep an eye on it:

https://issues.chromium.org/issues/40718410

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

79538141

Date: 2025-03-27 07:45:44
Score: 3.5
Natty:
Report link

In my case there is only One Target and it was not selected. When I select it then it works.

enter image description here

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

79538138

Date: 2025-03-27 07:43:44
Score: 0.5
Natty:
Report link

Are you binding your data to the chart? If so, make sure to set the AxisY.Minimum and AxisY.Maximum value after the data has been added. That way the chart does not override your axis settings based on the data range.
You can also try to disable a scaling extension of the axis by disabling IsMarginVisible:
myChart1.ChartAreas[0].AxisY.IsMarginVisible = false;

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

79538130

Date: 2025-03-27 07:40:43
Score: 5.5
Natty: 5
Report link

Thank you,

this result not little endian.

how to convert little endian?

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Hasan Göktaş

79538125

Date: 2025-03-27 07:39:42
Score: 2.5
Natty:
Report link

Just got this update while I was working on a project. My app gave the same error, but then I found this and helped, also make sure to tailor your lauchSettings.json since it was setup with swagger.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: José Agüero

79538123

Date: 2025-03-27 07:38:42
Score: 3
Natty:
Report link

Mjau mjau mjaaau MjuiMjauMjau Mjau Mjau Mjau mjaaaau MJAAAAAu Maju Ma Mjua slp slp slp Mjau Mjau Mjau Mjau mrrrr mrrrrr mrrrrrr mrrrrr MJAU mjau mjau mjau mjau mjau Mrrrrrr mrrrrrrr mrrrrr

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

79538112

Date: 2025-03-27 07:33:41
Score: 1.5
Natty:
Report link

this is in js :

   new Date("your-date").toLocaleDateString("your-locale", {
       year: "numeric",
       month: "2-digit",
       day: "2-digit",
   })
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Enlil

79538110

Date: 2025-03-27 07:32:41
Score: 2
Natty:
Report link

i did not personally experiment on it but this blog suggest sliding expiration is implemented and works with Redis implementation of IDistrubutedCache nicely.

Also the you can check the implementation without much effort where this test case exactly points to your question.

Reasons:
  • Blacklisted phrase (1): this blog
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: atakavci

79538108

Date: 2025-03-27 07:31:40
Score: 0.5
Natty:
Report link

Maybe this approach is not the best practice and is only a temporary solution, but it's worth trying. In my case, the background is a transparent gradient, and the border is also a gradient, so I can't use the usual solution of replicating the background color.

Instead of creating a complex layer list, I used an SVG from the UI design (Figma) as the background and simply attached it to the background properties.
enter image description here

<androidx.constraintlayout.widget.ConstraintLayout
    android:id="@+id/containerAproProgress"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginHorizontal="@dimen/space_16"
    android:layout_marginTop="@dimen/space_24"
    android:background="@drawable/box_apro_account"
    android:padding="@dimen/space_16"
    app:layout_constraintTop_toBottomOf="@+id/container_business_profile">

and heres the result

enter image description here

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

79538087

Date: 2025-03-27 07:18:38
Score: 1.5
Natty:
Report link
buildscript {
    dependencies {
        classpath "com.android.tools.build:gradle:7.3.1"
    }
}

add this script in your build.gradle

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

79538042

Date: 2025-03-27 06:52:32
Score: 2
Natty:
Report link

You need to grant permission for the user.
DataStore -> Table Name -> Scope and Permissions -> Table Permissions

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

79538041

Date: 2025-03-27 06:52:32
Score: 0.5
Natty:
Report link

A more detailed stack trace that includes all local variables at each level can be achieved by utilizing the stack-snapshot library.
Firstly, use pip install stack-snapshot command to install this library, then just put one line in your code:

import stack_snapshot; stack_snapshot.init()

An example:

import stack_snapshot

def inner(x, y):
    return x / y

stack_snapshot.init()

x = 1; y = 0
print(inner(x, y))

When stack snapshotting is not enabled:

Traceback (most recent call last):
  File "PyStackSnapshot\test.py", line 9, in <module>
    print(inner(x,y))
  File "PyStackSnapshot\test.py", line 4, in inner
    if y == 0: raise ZeroDivisionError
ZeroDivisionError

After enabling stack snapshotting, it is easier and more convenient to to pinpoint the issue while knowing the values of x and y:

-------------------- Error: --------------------
Traceback (most recent call last):
  File "PyStackSnapshot\test.py", line 9, in <module>
    print(inner(x,y))
  File "PyStackSnapshot\test.py", line 4, in inner
    if y == 0: raise ZeroDivisionError
ZeroDivisionError

Local variables of inner (test.py):
x = 1
y = 0

Global variables of <module>:
__file__ = 'PyStackSnapshot\\test.py'
__name__ = '__main__'
...
inner    = <function inner at 0x03221810>
x        = 1
y        = 0

-----------------------------------------------

Exceptions can also be manually output:

import stack_snapshot

def inner(x, y):
    return x / y

stack_snapshot.init()
try:
    print(inner(1, 0))
except Exception as err:
    if hasattr(err, "stack_snapshot"):
        print("Stack depth: ", len(err.stack_snapshot)) # When taking snapshot is enabled, all exception objects automatically have a stack_snapshot attribute added
    stack_snapshot.trace_error()

It works by just modifying the __new__ method such as ValueError.__new__, or redirecting the function call to the exception class such as ValueError.

Additionally, traced variable information can be pasted into generative AI tools including ChatGPT to let them generate more precise codes.

More detailed usage and how it works can be seen here: PyStackSnapshot · GitHub, and I'm the developer of stack-snapshot library.

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

79538037

Date: 2025-03-27 06:50:32
Score: 1.5
Natty:
Report link

Cloud-based contact centers offer several advantages over on-premise systems:

cloud contact center solution, is designed to optimize customer interactions and improve agent performance.

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

79538011

Date: 2025-03-27 06:38:28
Score: 6 🚩
Natty:
Report link

Is there a way to avoid or overcome this issue? Am I modeling in a poor manner that is causing this issue? Any help is appreciated as I am new to this.

You could play with the TransporterControl setup:

enter image description here

Beyond that, you are at the mercy of a black-box algorithm. You can only start coding your own (which is very advanced modeling...)

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • Blacklisted phrase (1): Is there a way
  • RegEx Blacklisted phrase (3): Any help is appreciated
  • RegEx Blacklisted phrase (1.5): I am new
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there a
  • High reputation (-2):
Posted by: Benjamin

79538004

Date: 2025-03-27 06:34:28
Score: 1
Natty:
Report link

I faced this error build implementing Login with Facebook functionality in my React Native project. The unnecessary part that I did was I installed pods even after adding the Facebook Package from Xcode.

For iOS, there should only be one way to go with development, either with cocoad pods or with Packages.

Fix: From Xcode, I removed the facebook package and moved with only pods.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mian Aamir Shehzad

79537994

Date: 2025-03-27 06:28:27
Score: 0.5
Natty:
Report link

This worked for me Tooltip cursor={false} this is the cleanest way as you don't have to meddle with CSS properties for this solution.

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

79537985

Date: 2025-03-27 06:23:26
Score: 3
Natty:
Report link

It turns out I was editing the file in the out folder, that is why it is not applying. Now it is working.

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

79537984

Date: 2025-03-27 06:21:25
Score: 1
Natty:
Report link

As mentioned in most previous answers, the way to use dir(), id() and even vars() is complex. Another alternative is the pyobject library that combines many features in other modules including squiz, ppretty, objbrowser and even internal bytecodes, all in one:

>>> import sys,os
>>> from pyobject import desc, browse
>>> desc(sys.version_info)
sys.version_info(major=3, minor=7, micro=8, releaselevel='final', serial=0):
    count: <built-in method count of sys.version_info object at 0x01349600>
    index: <built-in method index of sys.version_info object at 0x01349600>
    major: 3
    micro: 8
    minor: 7
    n_fields: 5
    n_sequence_fields: 5
    n_unnamed_fields: 0
    releaselevel: 'final'
    serial: 0
>>> search(os, sys, recursions=3)
["sys.modules['site'].os", "sys.modules['os']", "sys.__interactivehook__.__globals__['os']", "sys.modules['__main__'].os",...]
>>> browse(sys) # This will browse the object in a GUI

pyobject browser on windows

On Ubuntu: pyobject browser on ubuntu

Note: I'm the developer of pyobject.

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

79537982

Date: 2025-03-27 06:20:25
Score: 1.5
Natty:
Report link

When operating code objects, do NOT directly use types.CodeType and use pyobject.Code instead, as constructing types.CodeType is too complex and not compatible across multiple Python versions.

The pyobject library, which can be installed via pip install pyobject, provides a high-level wrapper for code objects.

For example, your newCode function can be replaced by:

from pyobject import Code
c=Code() # use default attributes to create it
# firstly define consts, size, etc.
c.co_consts=consts
c.co_stacksize=size
...
# convert it to bytecode (types.CodeType)
co=c.to_code()
# or disassembly it (equivalent to dis.dis(c.to_code()) )
c.dis()

For the documentation, please refer to the README.rst in pyobject · GitHub.

Note: I'm the developer of pyobject.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: qfcy

79537981

Date: 2025-03-27 06:19:25
Score: 1
Natty:
Report link

Additionally, you could use pyobject.Code instead, as constructing types.CodeType is too complex and not compatible across multiple Python versions.

The pyobject library, which can be installed via pip install pyobject, provides a high-level wrapper for code objects.

For example:

>>> def f(a,b,c,*args):
...    print(a,b,c,args)
...
>>> c=Code.fromfunc(f)
>>> c.get_flags() # automatically parse them, not by manually calculating
['OPTIMIZED', 'NEWLOCALS', 'VARARGS']
>>> c.co_flags
7

The pyobject library has greatly changed, and pyobject versions since 1.2.4 has fixed the issue. pyobject · Github

Note: I'm the developer of pyobject.

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

79537976

Date: 2025-03-27 06:17:24
Score: 1.5
Natty:
Report link

I was having trouble installing this because my project was running on older versions of python and Python-Dev toools on Ubuntu 24.04 lts.

I have done following steps to install this.

  1. Check you python version.

  2. run sudo apt-get update.

  3. As my base python version was 3.10. So i have install sudo apt-get install python3.10-dev.

  4. Then, try to install pip install pyaudio. it will install successfully.

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

79537971

Date: 2025-03-27 06:14:24
Score: 2.5
Natty:
Report link

The pyobject library has greatly changed, and pyobject versions since 1.2.4 has fixed the issue. pyobject · Github

Note: I'm the developer of pyobject.

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

79537969

Date: 2025-03-27 06:13:23
Score: 0.5
Natty:
Report link

Firstly, do NOT directly use types.CodeType and use pyobject.Code instead, as constructing types.CodeType is too complex and not compatible across multiple Python versions.
The pyobject library, which can be installed via pip install pyobject, provides a high-level wrapper for code objects.

According to devguide.python.org, Python 3.11 introduced _co_code_adaptive attribute for code objects: devguide.python.org/internals/interpreter

E:\>py311
Python 3.11.8 (tags/v3.11.8:db85d51, Feb  6 2024, 22:03:32) [MSC v.1937 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from pyobject import Code
>>> import random
>>> def f(a):return a+1
...
>>> c=Code(f.__code__)
>>> new_co_code = bytes([random.randint(0, 255) for _ in range(24)])
>>> new_c=c.copy()
>>> new_c.co_code=new_co_code
>>> new_c._code.co_code
b'2R\xaf\x19X\xd1\x00\xa1}P\x00M2\xf5z\xed\x00\x00\xab\xbf\x00\x00\x00\x00'
>>> new_c._code._co_code_adaptive
b'2R\xaf\x19X\xd1\xdb\xa1}P\xc3M2\xf5\x06\xed%\xeb\xab\xbf\x18\x0f*\xff'
>>>

The inputted co_code attribute is stored in _co_code_adaptive, while the decoded bytecode is stored in co_code.

Note: I'm the original developer of pyobject.

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

79537968

Date: 2025-03-27 06:13:23
Score: 3
Natty:
Report link

Thank you it worked! Had to use the iff statement but didn't create new tables.

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

79537961

Date: 2025-03-27 06:10:23
Score: 1.5
Natty:
Report link

createVisual is a Report authoring API which is not present in "powerbi-client" package. You need to install powerbi-report-authoring package to use that API.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
Posted by: Kotana Sai

79537955

Date: 2025-03-27 06:08:22
Score: 3
Natty:
Report link

thanks for sharing with us some snippets of code. To let us help you faster, could you present a minimum reproducible code? We aren't sure how the views were created and arranged so it's hard to answer right away. I'll edit my answer once I test it out.

In the meantime, you can follow @workingdog's suggestion on using @Binding instead of @State:

/// Binding vars getting from the View Calling this View
    @Binding var methods: [TapasAsana]
    @Binding var type: timerType
    @Binding var recoupExecutions: Int

After a lot of research it seemed that the Device gets overwhelmed trying to initialise all these State Variables. As the MacBook has more resources it won't freeze.

Also, you should use the debugging tools XCode has, such as Instruments or the debug navigator on the left panel to identify other objects that may be eating resources during runtime.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (2): thanks for sharing
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: UnstoppableWil

79537951

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

for the
1. make sure that your scripts have the same py version as your venv, or make sure that there's compatibility between the interpreters used for the scripts and the interpreter in the venv.

2. github codesapces?? although ive never extensively tried them myself, but it might work.

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

79537945

Date: 2025-03-27 06:05:21
Score: 2.5
Natty:
Report link

Remove "justify-content: start" from the "form-field" class Add "margin-left: auto" to "btn-primary" it will fixed this alignment

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

79537930

Date: 2025-03-27 05:59:20
Score: 1.5
Natty:
Report link

Developing Windows/desktop applications is still important for many businesses. Here are some key reasons:

  1. Better Performance – Desktop applications work faster than web apps because they run directly on the system.

  2. Offline Access – No internet? No problem! Desktop apps can work without an internet connection.

  3. Security & Privacy – Data is stored on the local system, making it more secure than cloud-based solutions.

  4. Customization – Businesses can customize desktop applications as per their needs.

  5. Hardware Integration – Some applications need direct access to hardware like printers, scanners, or biometric devices, which is easier with desktop apps.

  6. Long-Term Stability – Unlike web apps, desktop applications do not crash due to browser updates or internet issues.

At DQOT Solutions, we specialize in developing powerful desktop applications for businesses. Whether it's ERP, CRM, or custom software, we provide the best solutions tailored to your needs.

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

79537927

Date: 2025-03-27 05:58:19
Score: 4.5
Natty: 4
Report link

Bro have u solved it?
I changed my contrained property to false and it somehow solved the issue.

Reasons:
  • RegEx Blacklisted phrase (1.5): solved it?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: dartmyass

79537926

Date: 2025-03-27 05:57:19
Score: 1
Natty:
Report link

SOLVED

I've use the PUBLIC_ACCESS to make the login and register page accesable without login. This in working now

    access_control:
        - { path: ^/login, roles: PUBLIC_ACCESS }
        - { path: ^/logout, roles: PUBLIC_ACCESS }
        - { path: ^/register, roles: PUBLIC_ACCESS }

        - { path: ^/, roles: IS_AUTHENTICATED_FULLY }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Csaba Vörös

79537921

Date: 2025-03-27 05:54:18
Score: 1
Natty:
Report link

You Can do this but you need to convert your instructions into geographic coordinates. For example purposes, let’s assume you have these coordinates (you would normally obtain these by geocoding your milepost or known points)

Start - Iowa border at US-61 (e.g., LatLng(42.0, -91.0))

North Point - 16.3 miles north (e.g., LatLng(42.15, -91.0))

Turn Point - Intersection with WI-133 (e.g., LatLng(42.15, -91.02))

End of Outbound - Potosi (e.g., LatLng(42.16, -91.02))

Return Trip - You can reverse these coordinates or define them as needed.

Insted of the instructions you need to send pints from where to where the google map build the map for you according to those points is this help

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

79537908

Date: 2025-03-27 05:48:16
Score: 7 🚩
Natty: 4
Report link

Did you ever end up solving this problem? I'm running into the same issue extracting zip files in ios using expo and JSZIP. The UI locks up while loading the zip.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: ayebearbear

79537906

Date: 2025-03-27 05:46:16
Score: 2.5
Natty:
Report link

Yes it supports, navigate to realtime data collection interface on web, you have manual capture there.

Inspect element and see the POST it does

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

79537905

Date: 2025-03-27 05:46:16
Score: 3.5
Natty:
Report link

you can check this here full details with the version compatibility
https://github.com/dotnet/runtime/issues/24897

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

79537895

Date: 2025-03-27 05:39:15
Score: 1
Natty:
Report link

I would strongly recommend moving the authentication state away from client-side storage like localStorage.

Client-side storage like localStorage and sessionStorage can be manipulated easily by users, which is why relying on them for sensitive information like authentication status is not secure.

My opinion, if you're starting, try implementing cookies for 2FA AuthManagement.

After successful completion of first layer authentication, set a flag like 'is2FAPending' and set it to true in initialState. This should be set in the backend cookies. Then redirect to the 2FA Page.

I don't know the backend technology you're using, but if you are using Express.js, you can set the cookie inside session().

You can refer this guide to setup:
https://www.geeksforgeeks.org/how-to-manage-sessions-and-cookies-in-express-js/

After successful completion of 2FA set the flag to false and redirect to a Protected Layout which sends a request and check the cookie/session for the state of is2FAPending == false/true

Hope this answers your question!

Reasons:
  • Blacklisted phrase (1): this guide
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mohammed Khalid S

79537886

Date: 2025-03-27 05:31:13
Score: 3.5
Natty:
Report link

Its scary just how bad this advice is

Its scary that there are people out their purporting to be experts with zero clue

THIS WILL NOT WORK IF YOU HAVE DIMENSIONS JOINED TO YOUR FACT - IT ONLY WORKS IF EVERYTHING IS IN THE SAME TABLE

IT WILL NOT WORK IF YOU USE SLICERS

HOW DO YOU PEOPLE EVEN GET WORK

Reasons:
  • Blacklisted phrase (1): HOW DO YOU
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: No one

79537884

Date: 2025-03-27 05:28:13
Score: 3.5
Natty:
Report link

First of all, I have a question, why are you using pointers to store iterators instead of vector?

Now about your question, in c++ sometimes you can dereference an iterator like .end(), but it can cause undefined behavior, so it is not recommended, in your situation, the variable referencing to your .end() could've been initialized before, that's why you can dereference it

Reasons:
  • Blacklisted phrase (1.5): I have a question
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: NeKon

79537879

Date: 2025-03-27 05:23:12
Score: 3.5
Natty:
Report link

Answer was to apply below attribute:
[EnableQuery(EnsureStableOrdering = false)]

https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnet.odata.enablequeryattribute.ensurestableordering?view=odata-aspnetcore-7.0

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

79537876

Date: 2025-03-27 05:21:12
Score: 1.5
Natty:
Report link

1. Wipe Data for the device

2. Invalidate Caches and Restart

If that doesn't help, then delete these folders: .idea, .gradle and make steps 1 and 2 again...

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

79537870

Date: 2025-03-27 05:16:11
Score: 1
Natty:
Report link

The OrderedMap open source repository may meet your needs. It supports JSON Serialization of ordered maps.

Code example:

package main

import (
    "encoding/json"
    "fmt"

    xmap "github.com/danielhookx/xcontainer/map"
)

func main() {
    srcJson := `{"name": "John", "age": 30, "city": "New York"}`

    var fields xmap.OrderedMap[string, interface{}]
    err := json.Unmarshal([]byte(srcJson), &fields)
    if err != nil {
        fmt.Println(err)
    }

    for key, value := range fields.Iter() {
        fmt.Println(key, value)
    }
}

Execution Results:

$ go run main.go        
name John
age 30
city New York
Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniel

79537858

Date: 2025-03-27 05:08:09
Score: 1.5
Natty:
Report link

Thanks for the answer of the OP. Even after following the steps I was getting the same error. Explicitly mentioning openssl path resolved the issue.

Following is the command:

./configure --enable-optimizations --with-openssl=/usr/local/openssl-1.1.1t
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pramu

79537852

Date: 2025-03-27 05:04:08
Score: 0.5
Natty:
Report link

does this work for you?

im assuming what u want to achieve was to flatten error result as normal emit, while still able to specify it to retry on error by the consumer

function getFoo$(retry = false) {
    const foo$ = source$.pipe(
        catchError((error) => {
            const optionalPipes = []
            if(retry) optionalPipes.push(mergeMap(() => source$))

            return of({ data: null, error}).pipe(...optionalPipes)
        }),
    )

    return foo$
}
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: aii-yin

79537850

Date: 2025-03-27 05:03:08
Score: 3
Natty:
Report link
try this add "/" in front of manifest
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jay_Kang

79537849

Date: 2025-03-27 05:02:08
Score: 3
Natty:
Report link

Along with token encryption, add signature to token. this is standard way to save token/data from request forging.

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

79537844

Date: 2025-03-27 05:00:08
Score: 0.5
Natty:
Report link

query that worked for me.

DROP DATABASE <DB_NAME> WITH (FORCE);
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hiren Timbadiya

79537841

Date: 2025-03-27 04:56:07
Score: 3.5
Natty:
Report link

For those who used :

brew install poppler

If still not working just reboot your system. Thank me later

Reasons:
  • Blacklisted phrase (2): still not working
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sourabh Kumar

79537830

Date: 2025-03-27 04:45:05
Score: 3
Natty:
Report link

In My case I was using jakarta.mail-api jar without any version. So it was picking the latest version which was 2.1.13

Once I downgraded that to 2.0.1. It was working

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

79537828

Date: 2025-03-27 04:44:04
Score: 3
Natty:
Report link

I had the same issue, everything working fine locally with a local StoreKit Testing config file, but not working in TestFlight. I also thought I had to submit my IAP with with a version of the app for App Store review, and the team also gave me this answer (presumably having the same issue as my testers):

"""

When validating receipts on your server, your server needs to be able to handle a production-signed app getting its receipts from Apple’s test environment. The recommended approach is for your production server to always validate receipts against the production App Store first. If validation fails with the error code "Sandbox receipt used in production," you should validate against the test environment instead.

"""

I don't think this is a meaningful answer, I think they give it to everyone whose app has IAP that fails.

I had the same issue, everything working fine locally with a local StoreKit Testing config file, but not working in TestFlight. First, you should add good error catching to your IAP management code, then, when you are running your app in TestFlight from your own device, you can plug it into your computer, go to "Devices" in Xcode, open your device's console, and start listening. Next, go through the IAP logic on your device running app via TestFlight and see what errors are thrown. I checked my logs and saw it was not finding any products, even though I had properly added the IAP to App Store Connect. Then, after way too much digging, somehow I managed to stumble on this post:
Unity IAP not working in Apple Testflight

And this is what did it! I just had to fill in my tax info and add a payment account. A couple hours after my account said Active for the paid apps agreement, the IAP flow just started working, and checking the logs again it was now returning one product as expected.

What I did not do:

No sandboxing account

No receipt validation

Reasons:
  • Blacklisted phrase (1): but not working
  • Whitelisted phrase (-1): I had the same
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: Iggy