79530703

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

let charSpace = 0;
let dim = doc.getTextDimensions(strValue);
if (align === 'justify' && neededWidth > dim.w && (dim.w / neededWidth ) > 0.8 ) {
 charSpace = (neededWidth - dim.w) / strValue.length;
} 
doc.text(strValue, xCoord, yCoord, {charSpace });

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

79530695

Date: 2025-03-24 09:43:41
Score: 9.5 đźš©
Natty: 4.5
Report link

Have you found the root cause?

If yes, could you share the solution to obtain the correct data payload?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you share the solution
  • RegEx Blacklisted phrase (2.5): Have you found the root cause
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Xiaoxiong Yin

79530687

Date: 2025-03-24 09:39:41
Score: 0.5
Natty:
Report link

There is a simpler syntax:

dtgrouped2[dt2, ':='(Amount1 = Amount1,
                     Amount2 = Amount2),
    on = .(Unique = Unique1, MonthNo > StartDate, MonthNo <= EndDate)]

dtgrouped2
    MonthNo Unique Total Amount1 Amount2
      <int> <char> <int>   <int>   <int>
 1:       1    AAA    10       7       0
 2:       1    BBB     0      NA      NA
 3:       2    CCC     3      NA      NA
 4:       2    DDD     0      NA      NA
 5:       3    AAA     0       3       2
 6:       3    BBB    35      NA      NA
 7:       4    CCC    15      NA      NA
 8:       4    AAA     0       3       2
 9:       5    BBB    60      NA      NA
10:       5    CCC     0      NA      NA
11:       6    DDD   100      NA      NA
12:       6    AAA     0      NA      NA
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Kaare

79530674

Date: 2025-03-24 09:32:39
Score: 3
Natty:
Report link

I found a workaround which was to use my query to insert into a temp table and then select from the temp table, which completed correctly.

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

79530672

Date: 2025-03-24 09:30:39
Score: 2.5
Natty:
Report link

just to support this. Myself and others have also reported a significant uptick in duplicate orders with woocommerce since last week. We initially thought it was PayPal-related but have also seen similar issues with Stripe.

Here are a few mentions of this problem I have found from last week. I believe they're all related.

https://wordpress.org/support/topic/duplicate-orders-double-charging-customers/

https://wordpress.org/support/topic/duplicate-orders-customers-being-charged-twice/

https://wordpress.org/support/topic/customers-being-charged-twice-creates-duplicate-orders/

https://github.com/woocommerce/woocommerce-paypal-payments/issues/3231

https://www.upwork.com/freelance-jobs/apply/have-double-orders-coming-through-for-woocommerce-Started-few-days-ago_~021902816864695707834/

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

79530669

Date: 2025-03-24 09:30:39
Score: 1.5
Natty:
Report link

As gsutil is deprecated now, here is newer version using gcloud command:

see https://cloud.google.com/storage/docs/using-object-versioning

gcloud storage buckets update gs://BUCKET_NAME --versioning
gcloud storage buckets describe gs://BUCKET_NAME --format="default(versioning_enabled)"
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nightingale7

79530663

Date: 2025-03-24 09:26:38
Score: 3.5
Natty:
Report link

In my case, I was using VSCode and restarting it solved my issue

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

79530660

Date: 2025-03-24 09:25:38
Score: 0.5
Natty:
Report link

With such a jump in product versions it would be difficult to narrow down a specific change that has caused the differences that you are seeing.

I'm not sure why checksums would have changed - it is the CRC32 of the file so should be consistent between runs and across machines. Likewise, I'm unsure why on one machine the dev folder wasn't being picked up despite being specified

It does sound like an annoying issue has been resolved though, in that the location was configured but not honored as well as the checksums being different.

I think that, if you are sure the migrations haven't changed then you should run repair to get the new checksums into the Schema History Table.

You can also set locations for a specific environment using environment overrides: https://documentation.red-gate.com/fd/environment-flyway-namespace-277578926.html

For disclosure, I'm a developer working for Redgate on Flyway

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

79530648

Date: 2025-03-24 09:19:37
Score: 0.5
Natty:
Report link

Disabled plug in dataLabels works for me.

plugins:{
    datalabels: {
        display: false
    }
}
Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ZooboMe23

79530647

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

The version mismatch between express and @types/express can lead to the "No overload matches this call" error in TypeScript. Specifically, this issue arises when you’re using express v4 alongside @types/express v5.

The root cause is that the type definitions in @types/express v5.x are designed for express v5.x, which may not be fully compatible with express v4.x.

To fix the issue, it’s recommended to align the versions of express and @types/express to ensure compatibility.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: NguyĂŞn Nguyá»…n NgĂ´ HoĂ ng

79530642

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

Running expo prebuild and then editing the podfile with the coroutine fix as described in this thread solved the initial bug: https://github.com/facebook/folly/issues/2297

The proceeding 'undeclared identifier' errors were originating from the react-native-navigation library. As this package isn't completely necessary for my project I have just removed it.

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

79530641

Date: 2025-03-24 09:17:36
Score: 0.5
Natty:
Report link

Use can also use Coroutines with lifecycleScope to lunch network call in background thread

In Activity the best way to call retrieveInfo() inside onCreate or OnResume method

// Call suspend function safely  here inside coroutine scope
lifecycleScope.launch{
  val info = retriveInfo()
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jaspalsinh Gohil

79530640

Date: 2025-03-24 09:17:36
Score: 2.5
Natty:
Report link

99.9% is impossible, and, more, it's a sign of over-fitting.

But... to improve your results, we must to know more about the dataset. How is it balanced ? How many example ? It's the first step before the fine tuning of any model.

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

79530638

Date: 2025-03-24 09:16:35
Score: 4
Natty:
Report link

YAWS needs Docroot dir. Even yaws is working only as backend server.

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

79530633

Date: 2025-03-24 09:13:35
Score: 1
Natty:
Report link
function pprueba(url){
console.log("Prueba : "+url);
console.log("Pruena 2 :"+window.location.href);
console.log("Pruena 3 :"+google.script.run.getScriptUrl());
console.log("Pruena 4 :"+window.location);
console.log("Pruena 5 :"+$(this).attr('href'));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: อภิวัช มะสาทานัง

79530625

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

This is coming in very late but i am sure you already have this resolved. I am leaving this just incase someone else has this issue. There are some things to check when this happens. i.e(The cookies not getting set properly in the browse)

  1. check if the tracking scripts are added correctly on y our production website.
  2. check if the referral id you added to the link exists as a promoter.
  3. FirstPromoter sets its cookies on the primary domain so if you are using a sub domain of vercel,ngrok, azure etc that would not work as expected.
Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Maxwell

79530621

Date: 2025-03-24 09:09:34
Score: 5.5
Natty: 5
Report link

Is it possible to modify the padding of a single tab heading in react-navigation's Material Top Tabs? If yes, how can it be done? Here’s a screenshot for reference: [![enter image description here]] 1] 1

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Blacklisted phrase (1): Is it possible to
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Ankit Pandey

79530615

Date: 2025-03-24 09:06:33
Score: 2.5
Natty:
Report link

Throwing exceptions are just expensive. I'd rather use result pattern implementation like https://www.nuget.org/packages/DeepCode.Return/ or even we can implement one by our self. its not that hard to understand. Impoves readerbility too. (but some complex nugets might do the opposite)

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

79530613

Date: 2025-03-24 09:05:33
Score: 2.5
Natty:
Report link

I think it's because you have an oldest version of PowerShell.

The latest version actually available is the 7.5.0.

Make sure to have it updated and then you can try to execute the command again.

You can download it from the official github repository of PowerShell : https://github.com/PowerShell/PowerShell/releases/tag/v7.5.0

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

79530611

Date: 2025-03-24 09:05:33
Score: 1.5
Natty:
Report link

You can open up %LocalAppData%\Google\AndroidStudio2024.3\log\idea.log (where 2024.3 should correspond with your GS version), search for "dl.google.com" and then find actual cause of your problem

To me, it's changed and faulty "Temp" folder (I changed it to ramdisk several years ago) and java simply can't r/w files on that ramdisk, thus making it display as "unavailable"

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

79530610

Date: 2025-03-24 09:05:33
Score: 0.5
Natty:
Report link

Pylint might not be picking up the .venv correctly. Try running:

PYTHONPATH=. uv run pylint . 

Or modify your pyproject.toml:

[tool.pylint.MASTER] 
init-hook='import sys; sys.path.append(".venv/lib/python3.12/site-packages")'

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

79530608

Date: 2025-03-24 09:02:32
Score: 1.5
Natty:
Report link

in settings.json
add :"scm.showHistoryGraph": false

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

79530606

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

CRS dev-on-duty here. Someone opened an issue in the ModSecurity GitHub repository. Was that you? In any case, please follow the discussion there: https://github.com/owasp-modsecurity/ModSecurity/issues/3355

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

79530594

Date: 2025-03-24 08:54:29
Score: 12 đźš©
Natty:
Report link

Can anybody help me please?

– Reyer Sneller

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can anybody help me
  • RegEx Blacklisted phrase (2): help me please
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): Can anybody help me please
  • Low reputation (1):
Posted by: Reyer Sneller

79530582

Date: 2025-03-24 08:50:28
Score: 2
Natty:
Report link

Thank you very much for your answer :)

I have already read Microsoft's documentation on a TabView within a title bar. The problem lies with the system caption buttons. I prefer to use my own caption buttons, and that's exactly where the issue arises. When I set a MinWidth for the tab strip footer, the tabs no longer overlap the caption buttons.

However, I end up with a strange effect where the tabs do not reduce their width correctly. The "+" symbol doesn't stay at the caption button, but instead stays earlier and then bugs out, moving in small steps until it reaches the caption button, and then it stops.

I haven't seen this behavior in browsers, for example. In browsers, the "+" stays directly next to the caption buttons, and only then do the tabs start to lose width.

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

79530581

Date: 2025-03-24 08:50:28
Score: 2
Natty:
Report link

How do i fix this error

ta": {}\n}' 03-24 11:29:44.742 8051 8129 E ReactNativeJS: 'SecureStore get item error: ', { [Error: Call to function 'ExpoSecureStore.getValueWithKeyAsync' has been rejected. 03-24 11:29:44.742 8051 8129 E ReactNativeJS: → Caused by: The 2nd argument cannot be cast to type expo.modules.securestore.SecureStoreOptions (received class com.facebook.react.bridge.ReadableNativeMap) 03-24 11:29:44.742 8051 8129 E ReactNativeJS: → Caused by: java.lang.NullPointerException] code: 'ERR_UNEXPECTED' } 03-24 11:29:44.747 8051 8129 W ReactNativeJS: { [Error: Call to function 'ExpoSecureStore.deleteValueWithKeyAsync' has been rejected. 03-24 11:29:44.747 8051 8129 W ReactNativeJS: → Caused by: The 2nd argument cannot be cast to type expo.modules.securestore.SecureStoreOptions (received class com.facebook.react.bridge.ReadableNativeMap) 03-24 11:29:44.747 8051 8129 W ReactNativeJS: → Caused by: java.lang.NullPointerException] code: 'ERR_UNEXPECTED' } 03-24 11:29:44.748 8051 8129 I ReactNativeJS: 'eeorrr', '{\n "pathRoot": "/client/sign_ins",\n "status": null,\n "supportedIdentifiers": [],\n "supportedFirstFactors": [],\n "supportedSecondFactors": null,\n "firstFactorVerification": {\n "pathRoot": "",\n "status": null,\n "strategy": null,\n "nonce": null,\n "message": null,\n "externalVerificationRedirectURL": null,\n "attempts": null,\n "expireAt": null,\n "error": null,\n "verifiedAtClient": null\n },\n "secondFactorVerification": {\n "pathRoot": "",\n "status": null,\n "strategy": null,\n "nonce": null,\n "message": null,\n "externalVerificationRedirectURL": null,\n "attempts": null,\n "expireAt": null,\n "error": null,\n "verifiedAtClient": null\n },\n "identifier": null,\n "createdSessionId": null,\n "userData": {}\n}'

Reasons:
  • Blacklisted phrase (1): How do i
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): How do i fix this
  • Low reputation (1):
Posted by: D-Code-ojijo

79530573

Date: 2025-03-24 08:48:28
Score: 2.5
Natty:
Report link

In nginx, the default maximum allowed size of the client request body is only 1m:

https://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size

so, you should change it bigger:

client_max_body_size 100m;
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tyg Liu

79530570

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

I tried with your collection with some changes and it is working fine, see below steps.

Step1: created two variables varText1 and varText2 and use them in collection, Button code.

enter image description here

Step 2: Set Items property of Gallery to colEmptyTab and mapped Index,Col1 and Col2 fields, inserted one more TextInput field and mapped it with Col4. On Right Arrow key add the code.

enter image description here

Step 3:

enter image description here

Step 4: Enter value in TextInput column for col4 and press right arrow button, it will clear collect and save with new values. I just did with one row.

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
Posted by: Almas Mahfooz

79530569

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

You might need to set PYTHONPATH to specify your root directory (Import outside toplevel).

Create a ~/.pylintrc file and change the /path/to/root to your root.

[MASTER]
init-hook='import sys; sys.path.append("/path/to/root")'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Fritz Robinson

79530568

Date: 2025-03-24 08:44:27
Score: 1.5
Natty:
Report link

According to pygccxml FAQ, this feature is not currently supported.

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

79530559

Date: 2025-03-24 08:40:26
Score: 2
Natty:
Report link

You need to add some parentheses:

export default withVercelToolbar()(nextConfig)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: 8128

79530556

Date: 2025-03-24 08:40:26
Score: 3
Natty:
Report link

I have this problem when load video from S3. The problem is video codec. Browser not support all codec, recommend is H264. In my case video have extension ".mp4" but codec is mp4v (you can view this with VLC media play or any apps, library supported), then browser throw an above error. If you can control file export format, take a look the export codec may help you. Gud luck!

Reasons:
  • Blacklisted phrase (1): I have this problem
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tráş§n Minh

79530547

Date: 2025-03-24 08:38:25
Score: 5.5
Natty: 4
Report link

I'm having the same issue. Tested with the example provided in the instructions: https://github.com/Azure-Samples/azure-spring-boot-samples/tree/main/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-resource-server

This endpoint, http://localhost:8082/webapiB/clientCredential, is only protected after adding the code specified in option 2.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same issue
  • Low reputation (1):
Posted by: Nils Anders Hvinden

79530544

Date: 2025-03-24 08:35:25
Score: 2.5
Natty:
Report link

@mirek: the reason is the number 5.515 is actually not 5.515 inside Python. It can be checked with the decimal module:

print(decimal.Decimal(5.515))

The result is 5.51499999999999968025576890795491635799407958984375

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @mirek
  • Filler text (0.5): 999999999999
  • Low reputation (1):
Posted by: SHC

79530538

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

use null in dataset.data values and set skipNull: true in chart options

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Vladimir Medinsky

79530534

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

Just escape each backslash with a slash...

{...
"commandLineArgs": "/nologo /b \"$solutiondirectory$/\/\$projectname$/\/\start.scr/\""
...}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: CikoXp

79530525

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

This error occurs when a child class in Angular TypeScript has properties or methods that are incompatible with the base class. Ensure that property types in the child class match those in the base class. Also, verify that overridden methods return the correct types and constructors call super() properly. Checking imports and type definitions can help resolve the issue.

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

79530514

Date: 2025-03-24 08:24:22
Score: 3.5
Natty:
Report link

You can check parseurl() function from the source code downloaded from wget_source_code.

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

79530511

Date: 2025-03-24 08:23:22
Score: 2.5
Natty:
Report link

You can find manuals for Intel Xe GPUs at: https://www.x.org/docs/intel/DG1/

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

79530509

Date: 2025-03-24 08:22:21
Score: 2.5
Natty:
Report link

If you're dealing with SSL certificate issues in development, this guide might help:

How to Ignore SSL for React Native Android & iOS

Just be sure to fix this before going live to keep your app secure.

Reasons:
  • Blacklisted phrase (1): this guide
  • Low length (1):
  • No code block (0.5):
Posted by: Vicky Ahuja

79530506

Date: 2025-03-24 08:20:21
Score: 2
Natty:
Report link

Typically, for very large amounts of business data: A de-normalized DB or large table would be suitable for analysis.

Relational DB for transactions vs Denormalised DB for analytics. (Rule of thumb)

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

79530492

Date: 2025-03-24 08:15:20
Score: 3
Natty:
Report link

python manage.py collectstatic

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Morteza Mousavi

79530486

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

Apparently I was using the correct data type and everything was correct, however the SQL Server Management Studio truncates the output when querying a nvarchar(max), varchar(max), and such fields, this caused a confusion with not only myself but also the customer where they assumed the data was truncated on storage.

Use of a different database tool showed that the data was correct and complete, regardless what Microsoft's own software declared.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: JRSofty

79530483

Date: 2025-03-24 08:13:19
Score: 2
Natty:
Report link

In case you want to avoid bonding and if you have access to the device code and want a stable identifier, you could also expose your own identifier via the custom advertising data.

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

79530482

Date: 2025-03-24 08:12:19
Score: 0.5
Natty:
Report link

Settings

"jupyter.interactiveWindow.textEditor.executeSelection": true

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • High reputation (-1):
Posted by: Minxin Yu - MSFT

79530474

Date: 2025-03-24 08:10:19
Score: 0.5
Natty:
Report link

As I found out, the problem is in the postgrest settings. Namely, the application schema is not included in the settings for working through postgrest. I managed to fix this by adding the following to the compose.yaml for postgrest:

environment:
  - PGRST_DB_SCHEMAS=workspace_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx, public, postgrest

where is workspace_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx - the schema of your application in the tooljet_db database

I haven't found how to make the setting work with all the new apps, so I'll have to add settings for each app. it works for:

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Filler text (0.5): xxxxxxxx
  • Filler text (0): xxxxxxxxxxxx
  • Low reputation (1):
Posted by: Nazim Ua

79530469

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

Actually I've found a workaround that without performance issue. I keep the collection in memory and compare it each time there is a change.

But I cannot base this on the count of named items as some can be added/deleted.

I get all items like this

async function getNamedItems(ctx:Excel.RequestContext):Promise<NamedCell[]>{
    var namedItemsColl : NamedCell[] = [];
    const namedItems : Excel.NamedItemCollection = ctx.workbook.names.load('items');
    
    await ctx.sync();

    for (let i = 0; i < namedItems.items.length; i++) {
        var namedCell : NamedCell = new NamedCell;
        namedCell.name = namedItems.items[i].name;
        namedCell.range = namedItems.items[i].value;
        namedItemsColl.push(namedCell);
    }

    return namedItemsColl;
}

And here is how I compare :

var namedItems: NamedCell[] =[];

    await getNamedItems(ctx).then(result => namedItems = result);

for (let i = 0; i < namedItems.length; i++) {            
        if(namedCollection.find(x => x.name == namedItems[i].name) ==null)
        {
            namedcoll = new CellChangeDataClient;
            namedcoll.changeType = Excel.DataChangeType.rangeEdited;
            var nameItem : CellNameUpdate = new CellNameUpdate;
            nameItem.change='added';
            nameItem.name = namedItems[i].name;
             nameItem.range = namedItems[i].range;
            namedcoll.namedItems = nameItem;
            changesArray.push(namedcoll);
        }
    }
    var tempCell: NamedCell|undefined;

for (let i = 0; i < namedCollection.length; i++) {            
        tempCell= namedItems.find(x => x.name == namedCollection[i].name);
        if(tempCell == undefined)
        {
            namedcoll = new CellChangeDataClient;
            namedcoll.changeType = Excel.DataChangeType.rangeEdited;
            var nameItem : CellNameUpdate = new CellNameUpdate;
            nameItem.change='deleted';
            nameItem.name = namedCollection[i].name;
            namedcoll.namedItems=nameItem;
            changesArray.push(namedcoll);
        }
        else if(tempCell.range != namedCollection[i].range)
        {
            namedcoll = new CellChangeDataClient;
            namedcoll.changeType = Excel.DataChangeType.rangeEdited;
            var nameItem : CellNameUpdate = new CellNameUpdate;
            nameItem.change='updated';
            nameItem.name = tempCell.name;
            nameItem.range = tempCell.range;
            namedcoll.namedItems=nameItem;
            changesArray.push(namedcoll);
        }
    };           
Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: FlorentS

79530463

Date: 2025-03-24 08:03:18
Score: 3.5
Natty:
Report link

use wireshark

  1. find your post request
  2. See the MIME Multipart Data parser enter image description here
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: lei zhang

79530452

Date: 2025-03-24 07:56:16
Score: 0.5
Natty:
Report link

If the filename is not in the content dispostion of the file part some HTTP or REST servers don't recognize the multipart file uplaod correctly. Add the part like this:

upload.addFormData("source", source, new MediaType("application", "pdf"), "test.pdf");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: TomWolk

79530450

Date: 2025-03-24 07:55:16
Score: 3
Natty:
Report link

So I tried every suggestion and I basically did dependency injection wrong and I just went and re-did everything and got it to work, I tried making a generic services for type T and having a generic database repo and I think that I did not do it properly

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

79530434

Date: 2025-03-24 07:47:14
Score: 2
Natty:
Report link

The compiler will look up for the .hpp file relative to the path of the .cpp where you're including it. So when doing

#include "bitmap_image.hpp"

check if the .hpp is in the same physical folder as the .cpp is other wise you must provide the relative path to the .hpp file in the #include"../???/" preprocessor statement.

Reasons:
  • Blacklisted phrase (1): ???
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: bynx

79530433

Date: 2025-03-24 07:47:14
Score: 2.5
Natty:
Report link

well... It turns out the problem was with me not being careful in reading the http header as @bogdanoff pointed out (thank you very much for the pointer! ^^)

I'm not aware as I use this site to convert from curl to fetch, I should disable the clean headers checkbox to make all headers imported

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @bogdanoff
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ReYuki

79530432

Date: 2025-03-24 07:46:14
Score: 2.5
Natty:
Report link

Display the last name and job title of all employees who do not have a manager.

select last_name, job_id as "job_title" from employees where manager_id=null;

is it right querry

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

79530424

Date: 2025-03-24 07:42:13
Score: 2
Natty:
Report link

You may try to manually attaching the debugger or tweaking the launchSettings.json file should resolve the "No symbols loaded" error.

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

79530418

Date: 2025-03-24 07:39:13
Score: 0.5
Natty:
Report link

Tebako attempts to locate your MSys installation by calling

which sh 

but fails with Could not find MSystem /usr/bin

Do you execute

ridk enable ucrt64

before

tebako setup ... or tebako press ...

?

ridk enable works for the current terminal session only. You have to do it every time you start new session.

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

79530416

Date: 2025-03-24 07:38:12
Score: 2.5
Natty:
Report link

For anyone who stumbles upon this now, boto may have not supported using simple python dicts to persist json (via Map type) but boto3 does as long as you use the Resource type client.

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

79530415

Date: 2025-03-24 07:38:12
Score: 2.5
Natty:
Report link

Use globalScope.launch{ } block.

call your post method within this block. It prevents running methods on main Thread.

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

79530410

Date: 2025-03-24 07:36:12
Score: 2.5
Natty:
Report link

The problem wasn't in the email format it was wrong kind of format so this
$NewContact.Email1Address = $user.'E-mail Address isn't the same as
$NewContact.Email1Address = "$($user.'E-mail Address')" (that's the correct)

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

79530408

Date: 2025-03-24 07:34:10
Score: 8 đźš©
Natty:
Report link

I tried @Shant Dashjian's solution but I am getting the following exception.

"main" java.lang.reflect.InaccessibleObjectException: Unable to make field transient java.lang.Object[] java.util.ArrayList.elementData accessible: module java.base does not "opens java.util" to unnamed module @2a139a55

Here is my piece of code, could you please help me?

import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.List;

public class ArrayListExample {
    public static void main(String[] args) throws Exception  {
        List l = new ArrayList<>();
        l.add(1);
        System.out.println(cap(l));
        
    }
    public static int cap(List a) throws Exception {
        Field f = ArrayList.class.getDeclaredField("elementData");
        f.setAccessible(true);
        return  (( Object[] ) f.get(a)).length;
    }
}
Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): could you please help me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Shant
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Aakash Sirohi

79530407

Date: 2025-03-24 07:34:10
Score: 4
Natty:
Report link

If you’re seeing the same error duplicated across all targets in Xcode 14 or newer, even though only one target is active, here’s the actual fix:

Go to Xcode > Settings > General, and under the “Issues” section and disable “Show live issues”.

This setting is responsible for scanning and reporting issues from all targets in your project or workspace, regardless of which one is currently selected. That includes static analysis, preprocessor errors, and undeclared identifiers – all duplicated for each target that includes the source file.

Tested and confirmed to resolve the issue.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): seeing the same error
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Piotr

79530403

Date: 2025-03-24 07:32:09
Score: 4.5
Natty: 4.5
Report link

How to route audio to bluetooth? app is crashing in android

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Pranav Jha

79530398

Date: 2025-03-24 07:30:08
Score: 0.5
Natty:
Report link

Try specifying the stream in your basic config:

logging.basicConfig(stream=sys.stdout, level=logging.INFO)

Otherwise the logs just end up in stderr or in the jupyter server logs which is not very convenient.

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

79530389

Date: 2025-03-24 07:25:08
Score: 0.5
Natty:
Report link
kubectl get pods -A | grep Terminating

ns=<your namespace that has terminating pods>
kubectl get pods -n $ns | grep Terminating | awk '{print $1}' | xargs kubectl delete pods -n $ns --force --grace-period=0
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: rraj gautam

79530382

Date: 2025-03-24 07:17:06
Score: 2
Natty:
Report link

It looks like the error education is undefined is happening because the variable isn’t defined at the time it’s being used. Double check that you’ve declared and properly initialized the variable sometimes a simple typo or scope issue can trigger this. For those who are also balancing their studies with coding challenges, apdm offers some excellent educational resources that might help clarify similar issues and boost your overall learning experience.

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

79530381

Date: 2025-03-24 07:17:06
Score: 8 đźš©
Natty: 4
Report link

Are you able to release the app with the same issues as mentioned above?

Issue found: Voice commands

• Media Apps

Your app does not respond (no music played or error message shown) after issuing a voice command.

Have you found a way to resolve the issue?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve the issue?
  • RegEx Blacklisted phrase (2.5): Have you found a way to resolve the issue
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Nirali Bhatt

79530366

Date: 2025-03-24 07:10:04
Score: 1
Natty:
Report link

By the way, let's not forget, that we have an additional network access for updating.

Let's assume we have a check that some object has not changed. We can go either to DB or cache. Going to database probably would be less efficient due to longer reading. But every time we update the object we have to go additionally to the cache and update a record.

So in some cases I suppose distributed cache is not worth it. Especially because it adds extra complexity. It shouldn't be used recklessly for every case.

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

79530350

Date: 2025-03-24 07:02:02
Score: 2
Natty:
Report link

You might be using the latest Kendo UI for Vue, but the stylesheets are definitely not the latest. Kendo themes are already at v10, but the example references v6. Also releases from 2023 and onward do not distribute the font icons any more, so if you rely on them you should reference them as well - [docs](https://www.telerik.com/kendo-vue-ui/components/styling/migrating-font-to-svg) and [docs](https://www.telerik.com/design-system/docs/foundation/iconography/font-icons/#usage).

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Aleksandar

79530343

Date: 2025-03-24 06:53:01
Score: 1.5
Natty:
Report link

Thank you my Boss for your answer, I found the solution the problem is advertising Applovin with agp "8.8.2". When I deleted the configuration of Applovin the problem was solved. But when I transform the Gradle Plugin version to "8.7.3" there is no problem.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-2): I found the solution
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: taieb chtourou

79530339

Date: 2025-03-24 06:51:00
Score: 0.5
Natty:
Report link

I asked this question because I was learning regex in JavaScript, and one of the most popular websites I was using did not specify whether octal escape sequences were deprecated or not. At the time, I didn't know that octal escape sequences were deprecated.

However, I received the answer that octal escape sequences are now deprecated in JavaScript, and regular expressions no longer allow them. Instead, I can use hexadecimal (\xXX) or Unicode (\uXXXX) escape sequences without issues.

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

79530338

Date: 2025-03-24 06:51:00
Score: 1.5
Natty:
Report link

So, This warning is caused due to not using the variable priceFeed anywhere other the declaration part. I'm pretty sure the smart contracts can be compiled and run even if it has a couple of warnings. So, I would not worry about it.

If you want to have the variable and also not have the warning, I would suggest using it in a dummy method or a print statement.

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

79530331

Date: 2025-03-24 06:48:00
Score: 2
Natty:
Report link

For those looking to retrieve EU legal documents via API, the EUR-Lex API requires SOAP requests, which can be cumbersome to implement. However, there is an alternative REST API available for EUDR (European Union Deforestation Regulation) compliance.

The EUDR REST API provides structured access to relevant regulatory data and is free for up to 250 API calls. This might be a simpler solution for some use cases compared to SOAP.

You can find more details and API documentation here: www.eudr-api.eu

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

79530330

Date: 2025-03-24 06:46:59
Score: 1.5
Natty:
Report link

Have you tried using clipatextents, it is hard to debug without code.

https://www.scichart.com/documentation/win/current/SciChart.Charting~SciChart.Charting.ClipMode.html

ClipAtExtents forces the panning operation to stop suddenly at the extents of the data

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tom

79530317

Date: 2025-03-24 06:40:58
Score: 0.5
Natty:
Report link

Now the URL scheme is changed.
googlehome://

Try this now.

Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sarath Kumar

79530316

Date: 2025-03-24 06:39:58
Score: 3
Natty:
Report link

You can try https://www.nuget.org/packages/DeepCode.Return/ for returning results from service/commad/query. This package impletements results pattern at core and got some nice simple features to it.

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

79530315

Date: 2025-03-24 06:39:58
Score: 2
Natty:
Report link

To estimate the row height, I write a function(see my question), however it is not perfect (welcome all to reply that question with more accurate estimate of row height) but it might serve your requirement. Using that function, I am creating this PDF with page breaks as I required.

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

79530310

Date: 2025-03-24 06:35:57
Score: 0.5
Natty:
Report link

i tried a couple of approaches, and found that old (depricated) mpl-finance working good. But old API is available in new version of library as original_flavor.

from mplfinance.original_flavor import candlestick_ohlc

df = get_current_data(limit=150)
df_asks, df_bids = get_order_book_data(bookStep="step0",limit=150)
xs = mdates.date2num(df["timestamp"])
fig, ((ax1, ax2),(ax3,ax4)) = plt.subplots(2,2, sharex='col', sharey='row', width_ratios=[5,1], height_ratios=[5,1])
hfmt = mdates.DateFormatter('%m-%d %H:%M:%S')
ax1.xaxis.set_major_formatter(hfmt)
candlestick_ohlc(ax1, zip(xs, df['open'], df['high'], df['low'], df['close']), colorup='g', colordown='r', width=0.0004)
ax2.plot(df_asks["amount"],df_asks["price"],"r")
ax2.plot(df_bids["amount"],df_bids["price"],"g")
ax3.bar(xs,df["volume"], width=0.0005)
plt.subplots_adjust(wspace=0.0,hspace=0.0)
ax1.set_title("BTC USD")
ax2.set_title("Orders Book")
ax1.set_ylabel("Price")
ax3.set_ylabel("Volume")
ax1.grid()
ax2.grid()

plt.show()

Result: enter image description here

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

79530309

Date: 2025-03-24 06:35:57
Score: 1
Natty:
Report link

On the Windows SDK installer, there is only C++ x86 option while I'm working on a x64 program, is that the reason?

I think yes. Please make sure that "Windows SDK for Desktop C++ amd64 Apps" and "Windows SDK for Desktop C++ x86 Apps" has been checked.

  1. Open Control Panel, right-click Windows 10.0.17763, select Change.

  2. Select "Windows SDK for Desktop C++ amd64 Apps" and "Windows SDK for Desktop C++ x86 Apps", then click Change. enter image description here

3.Restart VS and reopen your project to see if 10.0.17763 shows up.

If this doesn't help, please consider Reinstall/Repair Windows SDK(10.0.17763.0) and reinstall the C++ workloads in VS, from VS Installer->Modify. Try to reinstall VS 2022 if possible.

Reasons:
  • RegEx Blacklisted phrase (1.5): help, please
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Dou Xu-MSFT

79530299

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

enter image description here

import React from 'react';

const TableComponent = () => {
  return (
    <div className="table-container p-4">
      <table className="table-auto w-full border-collapse">
        <thead>
          <tr>
            <th className="border px-4 py-2">Header 1</th>
            <th className="border px-4 py-2">Header 2</th>
            <th className="border px-4 py-2" colSpan="2">Header 3 (Colspan 2)</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td className="border px-4 py-2">Row 1, Col 1</td>
            <td className="border px-4 py-2">Row 1, Col 2</td>
            <td className="border px-4 py-2" rowSpan="2">Row 1-2, Col 3 (Rowspan 2)</td>
            <td className="border px-4 py-2" colSpan="2">Row 1, Col 4 and 5 (Colspan 2)</td>
          </tr>
          <tr>
            <td className="border px-4 py-2">Row 2, Col 1</td>
            <td className="border px-4 py-2">Row 2, Col 2</td>
            <td className="border px-4 py-2">Row 2, Col 4</td>
          </tr>
          <tr>
            <td className="border px-4 py-2">Row 3, Col 1</td>
            <td className="border px-4 py-2">Row 3, Col 2</td>
            <td className="border px-4 py-2">Row 3, Col 3</td>
            <td className="border px-4 py-2" colSpan="2">Row 3, Col 4 and 5 (Colspan 2)</td>
          </tr>
        </tbody>
      </table>
    </div>
  );
};

export default TableComponent;
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sagar Vaghela

79530291

Date: 2025-03-24 06:24:55
Score: 0.5
Natty:
Report link

I failed to set background-image to image element, this bothered me for a whole day.

And then I realize the image element will display broken image if src is empty, that wat what I saw.

To those who had the same problem, try to use

img {
  content: url('xxx');
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yangxiao Ou

79530287

Date: 2025-03-24 06:22:55
Score: 0.5
Natty:
Report link

It indicates whether a network connection is not metered. Meaning that the data usage on this network is not restricted by cost/pricing concerns.

Usage Scenario:

It means the network is considered unlimited or free, e.g. an unmetered Wi-Fi connection. If it is false, it means the network is metered e.g. a mobile data connection with a data cap.

Most home and office Wi-Fi networks are unmetered by default.

A user can manually mark a Wi-Fi network as metered in the Android settings. This would make this return false.

Some carriers offer -unlimited data plans where certain networks may be marked as unmetered.

Some SIM-based internet providers may mark their connection as unmetered.

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

79530281

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

The accepted answer wil only list the files you have checked out. To get a list of all checked out items and who has it checked out, run this:

tf status $/ /user:* /recursive
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cillié Malan

79530280

Date: 2025-03-24 06:20:53
Score: 6.5 đźš©
Natty:
Report link

version 0.9.3 works fine use it i have the same issue in margin left but 0.9.3 is works fine

Reasons:
  • Blacklisted phrase (1): i have the same issue
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: getasew adane

79530278

Date: 2025-03-24 06:19:53
Score: 2
Natty:
Report link

in my case in my Windows app i had a StaticResource of type x:String used as GridLength for a Grid (i wanted to save value star (*) in the Resource Dictionary). Worked in Debug but crashed in Release at startup.

To find out where the exception is thrown it is necessary to add DEBUG constant to Release build in Project properties.

DEBUG symbol in Release build

Then launch the app with debugger attached, the exception info will be shown.

Harry Smith's answer works too but just removes the error and not the cause.

As Rashid Khan wrote I also can't believe MAUI is in production.

I just logged in to Stackoverflow to share this solution, wasted 3 days on this.

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: qtec-tm

79530276

Date: 2025-03-24 06:19:53
Score: 1.5
Natty:
Report link

Seems

from pydantic import AliasChoices, BaseModel
..
Field(validation_alias=AliasChoices("old_name", "new_name"))

solve it

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

79530261

Date: 2025-03-24 06:09:51
Score: 3
Natty:
Report link

You can install Nodemon to auto-update the node.js application, you do not need to stop and start project again to see the changes.

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

79530256

Date: 2025-03-24 06:04:49
Score: 10
Natty: 9
Report link

I follow the steps from (https://learn.microsoft.com/en-us/onedrive/developer/file-handlers/?view=odsp-graph-online), it can not show any custom icons and my new action, can you help me ?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can you help me
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sean

79530233

Date: 2025-03-24 05:58:48
Score: 0.5
Natty:
Report link

you need to refer this action in the market place for checking out code base.

https://github.com/actions/checkout

by default , submodules are not checked out. you need to explicitly pass submodules as true.

- uses: actions/checkout@v4
  with:
     submodules: true
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dayananda D R

79530207

Date: 2025-03-24 05:50:46
Score: 1.5
Natty:
Report link

This is not a question about oh-my-posh but about Get-ChildItem . You can find a guide on how to change that behaviour here.

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

79530196

Date: 2025-03-24 05:39:44
Score: 1
Natty:
Report link

navigationsBarsPaddingModificador al padre Row:Row(

Modifier.fillMaxWidth()

    .wrapContentHeight()

    .navigationBarsPadding(),

horizontalArrangement = Arrangement.SpaceEvenly,

verticalAlignment = Alignment.CenterVertically

) {

//...

}

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

79530193

Date: 2025-03-24 05:38:44
Score: 1
Natty:
Report link

You can use Reflection api to get an instance of Singleton class, by bypassing the private constructor with getConstructor().newInstance(). So yes you can create multiple instance of a singleton class but it will violate the concept of Singleton class.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Paras Bartwal

79530189

Date: 2025-03-24 05:32:42
Score: 3.5
Natty:
Report link

It helped to me:

  1. set "RunMsCodeCoverage" to No
    enter image description here;
  2. go to csproj file with tests and remove items start with "<RunSettingsFilePath>"
    enter image description here
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: BIGNIK

79530188

Date: 2025-03-24 05:30:42
Score: 2
Natty:
Report link

You just need oneline command:

sudo apt --fix-broken install
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: timerring

79530182

Date: 2025-03-24 05:26:41
Score: 1
Natty:
Report link

No, there isn't. If you do manage to find some work around, don't expect it to continue to work in future versions (or past versions). The supported way to do this is the SECURE flag. Which blocks both, because the idea is that you have data that shouldn't be saved to disk. You mention AccessibilityService- you will not be allowed on the play store if you use that- only actual accessibility apps are allowed to use it, and blocking recording is not an accessibility usecase (if anything it could be argued to be the opposite, as you would possibly break screen readers or other methods).

I honestly question your need for this functionality, other than that some PM or designer thought it would be cool. If you want to block recording, you want to block screenshots as well. Otherwise they can just take a screenshot every 1/30th of a second and have a movie (or use a second device filming the screen). What functionality does it add to block one but not the other?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Gabe Sechan

79530181

Date: 2025-03-24 05:26:41
Score: 1.5
Natty:
Report link

Thanks to the previous answer which links the github issue I have found the solution.

I had to add the OpenApi version like this,

 app.UseSwagger(c =>
 {
     c.OpenApiVersion = Microsoft.OpenApi.OpenApiSpecVersion.OpenApi2_0;
 });
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Khandakar Rashed Hassan

79530171

Date: 2025-03-24 05:17:40
Score: 1
Natty:
Report link

1. create all 'DB2's tables in DB1.

2. Make one function (on the opening activity) to copy data from the DB2's tables into DB1 (which data you required to continue)

3. make sure this function should run one time only.

4. By the ext versions, ignore the DB2. And later on (after a while) you can remove the DB2.

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

79530168

Date: 2025-03-24 05:17:39
Score: 5.5
Natty: 5.5
Report link

Here is official Documentation

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ha Shing Thang

79530164

Date: 2025-03-24 05:15:39
Score: 0.5
Natty:
Report link

The issue resolved when i made changes in metadata.josn file:

{
    "Endpoint": "",
    "CodeSigningAccountName": "myapp",
    "CertificateProfileName": "myapp"
}

Here i replace SigningProfileName with CertificateProfileName and it worked

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: MANSI

79530129

Date: 2025-03-24 04:35:32
Score: 3.5
Natty:
Report link

Just add a very large z-index to the toastContainer, I'm sure that should work.

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

79530111

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

pls gave me a demo(example) to i learn .i comcern about that 2nd method

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

79530099

Date: 2025-03-24 03:54:24
Score: 1
Natty:
Report link

FIXED.

Make sure if you're upgrading from SDK 51 to 52 to update your "@expo/config-plugins" to "~9.0.0" and "@expo/prebuild-config" to "~8.0.0".

No other changes needed to be made for Managed Workflow.

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