79676951

Date: 2025-06-24 02:49:05
Score: 4
Natty:
Report link

This doesn't work. I want to scroll from one page to another page because the appropriate app is there. But swiping isn't working

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roberta Morgan

79676942

Date: 2025-06-24 02:32:01
Score: 2
Natty:
Report link
{
  "data": {},
  "status": "fail",
  "message": "No results found"
}{
  "data": {},
  "status": "fail",
  "message": "No results found"
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Gowtham

79676941

Date: 2025-06-24 02:32:01
Score: 2.5
Natty:
Report link

Turned out I was using wrong token.

In this situation it has to be User token, not App token.

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

79676940

Date: 2025-06-24 02:30:00
Score: 3.5
Natty:
Report link

If the user is not allowed to add/remove elements:
std::span<const T> getter() const
std::span<T> getter()

What is a "span" and when should I use one?

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: 許恩嘉

79676938

Date: 2025-06-24 02:21:58
Score: 1
Natty:
Report link

As for the regularity condition, I was curious to "see"

af(n/b) <= cf(n)

so I just graphed it. It was really helpful for me to see it, and I hope it helps someone else.

Reasons:
  • Whitelisted phrase (-1): hope it helps
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Will Hawkins

79676935

Date: 2025-06-24 02:19:57
Score: 1
Natty:
Report link

You can’t edit files on IPFS once uploaded — they’re permanent.

To fix the image URL in your NFT metadata:

  1. Upload a new metadata file with the correct image URL (using the Lighthouse gateway link).

  2. If your smart contract allows it, update the token URI to point to the new metadata.

If your contract doesn’t allow updates, you can’t change the image unless you re-mint the NFT.

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

79676933

Date: 2025-06-24 02:16:56
Score: 2.5
Natty:
Report link

You can now use Handlebars built in helper #each in the HtmlPart: of AWS SES template in order to implement looping

Reference: https://handlebarsjs.com/guide/builtin-helpers.html#each

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

79676932

Date: 2025-06-24 02:14:55
Score: 5
Natty: 5.5
Report link

I found this blog here that lists the APIs and how to scrape with IP Rotation. Article Link

Reasons:
  • Blacklisted phrase (1): this blog
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John

79676927

Date: 2025-06-24 02:08:54
Score: 1
Natty:
Report link

you have to install "onesignal-cordova-plugin" as well to use it on capacitor app

try use this to import OneSignal from the plugin and try calling OneSignal.xxxxxxx

import OneSignal from 'onesignal-cordova-plugin';
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kokwei325

79676922

Date: 2025-06-24 01:55:51
Score: 1
Natty:
Report link

I think it's ridiculous that no one actually read your code and error message. FYI your issue was you had a typo in your command. You have uplaodsummary instead of uploadsummary.

Write-Host "##vso[task.uplaodsummary]$path"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: joshweepie

79676921

Date: 2025-06-24 01:53:46
Score: 8 🚩
Natty:
Report link

Have anyone found the answer to these drastic change in model training results??? I am facing the same issue. I am using Kaggle to train my model using GPU P100. My code environment from 2024 (tf 2.15.0) gives better training / validation / test results than the latest code environment (2.18.0) . Same code, same dataset, same configurations but different results. The code environment with 2.15 gives me test accuracy above 95% while the latest code environment (2025 and 2.18) gives me hardly 90% test accuracy.
@PMDP3 @Martin

Reasons:
  • Blacklisted phrase (1): ???
  • Blacklisted phrase (2): anyone found
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • User mentioned (1): @PMDP3
  • User mentioned (0): @Martin
  • Low reputation (1):
Posted by: GrayAtom

79676916

Date: 2025-06-24 01:43:44
Score: 3.5
Natty:
Report link

Apparently, changing the rsp substraction of 64 to 56 makes the code work. That implies that the program started with a 16-byte unaligned stack. However I thought that in x64 ABI, the stack is always 16-byte aligned at the very start of a process. Can someone tell me by their own experience if the stack is always 16-byte aligned/unaligned at the beginning of a process, on windows? I can't find the information on microsoft's x64 abi documentation

Working version:

BITS 64
DEFAULT REL

lea rcx, [filename] ; (filename: db "D:\Hello.txt", 0)
mov edx, 0x20000000
mov r8d, 1
xor r9d, r9d
sub rsp, 56 ;<--- was 64
mov qword [rsp+32], 2
mov qword [rsp+40], 0x80
mov qword [rsp+48], 0
call [CreateFileA]
add rsp, 56 ;<--- was 64
wat: jmp wat
Reasons:
  • RegEx Blacklisted phrase (2.5): Can someone tell me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kun Xiang

79676910

Date: 2025-06-24 01:34:42
Score: 1
Natty:
Report link

check your app-routing.module.ts file make sure there a path "auth/register"

another thing you can try is [routerLink]="'/auth/register'"

{
path: "auth/register",
loadChildren: () => import("./pages/foldername/filename.module").then((m) => m.YourModule),
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kokwei325

79676891

Date: 2025-06-24 00:58:33
Score: 0.5
Natty:
Report link

how to hot fix:
You can temporarily move #include <math.h> below #include <fp.h>.

#    if !defined(__MATH_H__) && !defined(__MATH_H) && !defined(__cmath__)
#      include <math.h>
#    endif
#  else
#    include <fp.h>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): how to
Posted by: quynhbkhn

79676890

Date: 2025-06-24 00:57:33
Score: 1
Natty:
Report link

1

From Xcode 16 onwards Provisioning Profiles has been moved to new location which is
~/Library/Developer/Xcode/UserData/Provisioning\ Profiles

The old location was ~/Library/MobileDevice/Provisioning\ Profiles

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

79676879

Date: 2025-06-24 00:37:28
Score: 8.5
Natty: 7.5
Report link

help me, whats wrong with this?
enter image description here

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: MHD VEREL

79676876

Date: 2025-06-24 00:32:27
Score: 2
Natty:
Report link

I had this Error in my Spring Boot application: org.postgresql.util.PSQLException: FATAL: invalid value for parameter "TimeZone": "Europe/Kiev". My stack is Windows 11 / 10

PostgreSQL remote (somewhere with old tzdata )

JDBC driver 42.5.5

Spring Boot 3.2.2

HikariCP 5.0.1 . I found that I have to put this → -Duser.timezone=Europe/Kyiv. in VM options in Run/Debug configurations. Now work brilliant.

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

79676873

Date: 2025-06-24 00:18:23
Score: 2
Natty:
Report link

If you want remove a word from the dictionary you can go to:

Settings->Editor->Spelling

Now you should see a window with two tabs, Accepted Words and Dictionaries.

Click on the first one (Accepted Words) and click on the word that you want remove.

After this press on minus icon on the right of the page to remove the word.

This is from this Post

The words "unlesss" and "pacakge" are not in the built-in words in PyCharm. These words are highlighted in PyCharm for me, maybe you added it into the accepted words dictionary?

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

79676871

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

After downgrading it is was still showing no connection, so I installed the Microsoft Data Tools Intergration Services again and it worked.

So I think you need to install recent updated Microsoft Data Tools Intergration Services again.

Thanks Raj

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Rajender Singh

79676870

Date: 2025-06-23 23:59:19
Score: 1.5
Natty:
Report link

this fixed my issue

SET 'sql.tables.scan.idle-timeout' = '5s';

referece

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: JPG

79676862

Date: 2025-06-23 23:36:14
Score: 2
Natty:
Report link

Running "sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService" worked great for me.

For those wondering where to execute this, open Terminal and paste "sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService". You will be prompted to enter the password you use to sign on to your machine. Enjoy!

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

79676857

Date: 2025-06-23 23:30:12
Score: 7.5 🚩
Natty:
Report link

I too having same issue, trying to downgrade now :(

Reasons:
  • Blacklisted phrase (1): :(
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): having same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rajender Singh

79676849

Date: 2025-06-23 23:14:08
Score: 1
Natty:
Report link

Are you up to doing it with just ggplot2?

ggplot(dat, aes(x = x, y = 1)) +
  geom_point() +
  scale_x_continuous(limits = c(-5, 5)) +
  geom_text(aes(x=0, y=Inf, label=lbl), data=data.frame(lbl="Text"), vjust=1)

ggplot grob with text at the very top of the plot

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: r2evans

79676845

Date: 2025-06-23 23:06:05
Score: 4.5
Natty:
Report link

Inspired by the discussion, I implemented a version using std::variant . https://github.com/DapengFeng/RustCxx

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

79676832

Date: 2025-06-23 22:49:01
Score: 3
Natty:
Report link

Guys i switched from Vs code to Android studio and it worked :)

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

79676830

Date: 2025-06-23 22:46:00
Score: 0.5
Natty:
Report link

After much agony and traversing of rabbit holes, i found a suitable solution using MudBlazor library which contains a 3 state checkbox.

I had tried creating an InputSelect dropdown but the data would not bind to the control. I also considered building my own control which was very much worth learning about, but that is a productivity sump for me. I am not interested in building nuts and bolts. Start with @inherits InputBase<bool?> for those who are interested.

The one drawback of MudBlazor is that it is for blazor and not for traditional asp.net non-spa pages if i understand correctly. But i was already using the former technology without realizing it. recall - i am very much a novice with these ui technologies and razor and blazor can be a blur.

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

79676829

Date: 2025-06-23 22:43:59
Score: 2
Natty:
Report link

I made it work adding

<uses-permission android:name="android.permission.INTERNET" />

into the manifest file. I got the data posted to the server now.

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

79676827

Date: 2025-06-23 22:41:59
Score: 1
Natty:
Report link

I fixed this by uninstalling VSCode and re-installing by downloading from VSCode's download page. As hinted eslewhere, the FLATPAK install is to blame. See Fuji's reply in Failed to connect. Is Docker running? (Vs Code)

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: jam123

79676815

Date: 2025-06-23 22:23:54
Score: 2
Natty:
Report link

You can also look at the Tags section of the Git menu and select an individual tag and select 'Push to origin'. This is better for controlling which tags are pushed if there are unintended consequences of pushing all.

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

79676810

Date: 2025-06-23 22:15:52
Score: 1
Natty:
Report link

Whenever Gemini makes changes to your files, it pops up a little "file changes box". Once that's no the current version, the "current" text in the top right of the box changes to a restore button. Clicking the button will take you back to that version of the files, similarly to rolling back to a git commit.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: Kiana

79676806

Date: 2025-06-23 22:08:50
Score: 0.5
Natty:
Report link

I've started using TOML for a different application, and I think it's a better fit here than CSV. Starting with Python 3.11, tomllib.load returns a dictionary with each entry in an appropriate type, i.e., it does the typecasting for you.

As I said in a comment earlier, I'm not sure it's worth porting a bunch of old CSV files to TOML, but if I had to implement this feature from scratch, I would use TOML.

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

79676805

Date: 2025-06-23 22:05:49
Score: 1
Natty:
Report link

I had an old Ubuntu server and updated the CA Cert using:

apt-get update
apt-get upgrade ca-certificates

That resolved the issue

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

79676786

Date: 2025-06-23 21:43:43
Score: 1.5
Natty:
Report link

At a guess the CurrentDb variable is a global or class variable that holds the object for the currently open database and your just seeing a lot of code us the same variable name for it.

Check out https://learn.microsoft.com/en-us/office/client-developer/access/desktop-database-reference/database-openrecordset-method-dao for how to open a DAO database (its hard to say what else you need to do beyond that to get the code to run as the intelisense popup is hiding the next line of code.

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

79676785

Date: 2025-06-23 21:42:43
Score: 1
Natty:
Report link

You may need to enable long path support in your local registry. You can find instructions on how to do this in this documentation: Enable long paths in Windows 10, version 1607, and later

Reasons:
  • Blacklisted phrase (1): this document
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Marc LaFleur

79676778

Date: 2025-06-23 21:31:40
Score: 3
Natty:
Report link

Please I have Unity 2022.3.10f1 and it requests specifically for JDK 11.0.14.1 specifically which i cant seem to find anywhere

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

79676776

Date: 2025-06-23 21:28:40
Score: 1
Natty:
Report link

I just tried it on Xcode 26/macOS 26 - it works on simulator there. Also works in Previews

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

79676773

Date: 2025-06-23 21:26:39
Score: 2.5
Natty:
Report link

Heartquote hit the record worldwide and Becomes #one quotes and poetry app in History 💖💯

My sincerest appreciation goes out to all of you ❤️🙏😊 . . . . #trending #app #world #heartquote #news

Download Now ☺️

https://apkpure.com/heartquote/com.heartquote/downloading

Reasons:
  • Blacklisted phrase (0.5): 🙏
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: HeartQuote Labs

79676771

Date: 2025-06-23 21:25:38
Score: 2
Natty:
Report link

Unfortunately, the Planner API does not currently support retrieving private tasks. The API will only return tasks that are within group plans. I would recommend using the To Do tasks API instead, if that is an option. Planner was not designed to track personal tasks.

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

79676768

Date: 2025-06-23 21:19:37
Score: 1
Natty:
Report link

I would create a custom JSP tag and in there you can use instanceof and all complex stuff you need.

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

79676762

Date: 2025-06-23 21:13:36
Score: 1.5
Natty:
Report link

for php, select option1 go to :

localhost/address.php?a=a1

<select name="menu1" id="menu1" onchange="location = '?a='+this.value;">
  <option value="a1">ADDRESS 1</option>
  <option value="a2">ADDRESS 1</option>
  <option value="a3">ADDRESS 1</option>
</select>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Süleyman KOŞTAŞ

79676759

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

This helped in my case:

chmod 700 /opt/homebrew/var/postgresql@15
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yaroslav Yenkala

79676755

Date: 2025-06-23 21:03:33
Score: 1
Natty:
Report link

I don't know if this is good practice, but what I do is have my outer view with the query:

struct OuterView: View {
    @Query var data: [Item]
    var body: some View {
        MiddleView(date: data)
    }
}

Then Have a MiddleView which has a @State and calls a InnerView:

struct MiddleView: View {
    @State var data: [Item]
    var body: some View {
        InnerView(date: $data)
    }
}

And the InnerView is:

struct InnerView: View {
    @Binding var data: [Item]
    var body: some View {
        TextEditor(text: $date.name)
    }
}

This works because the SwiftData models are classes and are reference objects.

This is what I do, don't know if it is best practice, but this way you don't have to use the modelContext.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @State
  • Low reputation (1):
Posted by: Kitten Apps-Films

79676743

Date: 2025-06-23 20:55:30
Score: 10.5 🚩
Natty: 6
Report link

I want to use es liberia but I get an error when synchronizing com.amitshekhar.android:android-networking:1.0.2 that file can't be found. Is there a solution? I already implemented 1.0.4 but I keep getting the same error.

Reasons:
  • Blacklisted phrase (3): Is there a solution
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1): I get an error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): getting the same error
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gateway Laptop

79676741

Date: 2025-06-23 20:49:29
Score: 0.5
Natty:
Report link

Which MIFARE exactly? There are plenty of them. However, whatever MIFARE it is, I strongly recommend using TapLinx SDK. It is accessible from nxp.com if you make free account. That SDK also have quite good sample application. In short (and for MIFARE DESFire cards, but probably applicable to all smart cards from NXP using TapLinx SDK):

  1. Android app should use (defined in manifest) at least NFC permission:
<uses-permission android:name="android.permission.NFC" />
  1. Your app should listen to NFC actions:
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<action android:name="android.nfc.action.TECH_DISCOVERED" />
<action android:name="android.nfc.action.TAG_DISCOVERED" />
  1. In your activity that listens to NFC reading you should have an event handler, something like this:
protected void onNewIntent(@NonNull Intent intent) {
    YourCard card = CardController.cardLogic(intent, nxpNfcLibReference);
  1. Then, in cardLogic method:
Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
byte[] uid = tag.getId();

Voila! But, as I said, register on NXP for free and search for TapLinx SDK for Android, and sample apps. There is also that SDK for Java. Sadly, no for DotNet.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Which
  • Low reputation (1):
Posted by: Slavek

79676740

Date: 2025-06-23 20:48:28
Score: 0.5
Natty:
Report link

The easiest way to move Visual Studio to another drive is to export the .vsconfig and export the installation to a removable drive. or the other drive on your computer.

You also need the Visual Studio Installer.exe - examples - vs_Enterprise.exe

Next, Copy the Directory for AppData\Local\Microsoft\VisualStudio\Packages - this is where all your downloads are of *cab files

You will need the VS_Layout folder and all in it.

It is also good to copy the setup.exe where devenv.exe is and that whole directory.

if you use Windows Kits, or Microsfot SDK's it is good tpo copy those too.

Nothe the directory where each is located and write them down.

Next you will need cmd.exe and run it as an Administrator.

CD to where you have this information stored, hopefully an external or usb drive.

CoPilot said: \>vs_Enterprise.exe install --noweb installPath="Your_Install_Path" now that's what I got down to as the easiest.

Then I pasted .vsConfig where it should go and tried again.

Then VS_Layout Folder

Then the Packages Folder and Voila!

For myself I used ..\setup.exe with all the other information I had available using help whittled it to work.

Make sure you have your key, Product Key or Kablooey!

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

79676736

Date: 2025-06-23 20:40:26
Score: 3
Natty:
Report link

Use JSONReader for formatting json or generating fake json dataset or find diff in two json

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

79676733

Date: 2025-06-23 20:34:25
Score: 0.5
Natty:
Report link

I like the results of this code, which is a pure Matplotlib solution, using the so-called implicit API, which is most suitable for use with something like a Jupyter notebook.

# just to show the column names
data = data[['person_age', 'person_income', 'person_emp_length', 'loan_amnt', 'loan_int_rate', 'loan_percent_income', 'cb_person_cred_hist_length', 'loan_status']]

correlation = data.corr()

mask = numpy.triu(numpy.ones_like(correlation, dtype=bool))
correlation = correlation.mask(mask)
correlation.style.background_gradient()

plt.matshow(correlation, vmin=-1, vmax=1)
plt.colorbar()

plt.xticks(numpy.arange(len(correlation.columns)), correlation.columns, rotation=90)
plt.yticks(numpy.arange(len(correlation.columns)), correlation.columns)

for i in range(len(correlation.columns)):
    for j in range(len(correlation.columns)):
        value = correlation.iloc[i, j]
        if not numpy.isnan(value):
            plt.text(j, i, f"{value:.2f}", ha='center', va='center', color='black')

plt.savefig('correlation.pdf', bbox_inches='tight')
None # suppress junk output in Jupyter Notebook cell

It produces the following result:

Matplotlib correlation plot

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

79676710

Date: 2025-06-23 20:12:20
Score: 1
Natty:
Report link

I was in the exact same spot a few months ago, trying to build a NetSuite report that showed Sales and Budget by Department, broken down monthly. At first, I tried using Saved Searches too, but I hit a wall quickly. The fields for budget weren’t where I expected, and pulling actuals vs. budget in one clean view just wasn’t happening. I kept getting tangled in joins and couldn’t get the format right.

That’s when I found SuiteReport, and honestly, it changed everything.

It connects directly to NetSuite and bank data in Excel, so I didn’t need to manually export or reformat anything. What really blew me away was the AI assistant inside Excel. I literally typed:
“Show monthly sales vs. budget by department” and it built the report for me. It pulled the data, grouped it by period and department, and even helped me visualize it.

The best part? I didn’t need to touch a single Saved Search or write a formula. It synced live, so whenever NetSuite updated, my workbook updated too. I even integrated it into my Java app flow by calling the data from the Excel file, super clean.

If you're struggling with reporting like I was, I honestly wish I had known about SuiteReport sooner. It saved me hours and made reporting actually enjoyable. Definitely worth checking out if you're trying to automate more without hitting NetSuite’s limitations.
https://suitereport.ai/

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

79676708

Date: 2025-06-23 20:11:19
Score: 2
Natty:
Report link

For me it was just the fact that when the USB is plugged into my tablet, a windows pops up on the tablet wondering how I want to use USB (charging battery, download photo...). I just need to click outside of the box, then the window disappears and a window that asks for authorization to debug is shown still on the tablet screen.

Then authorizing the USB debug is enough to get all authorization and synchronizing keys with adb.

You can check than

adb devices

now shows

XXXXXX device

instead of

XXXXXX unauthorized

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Deverne

79676707

Date: 2025-06-23 20:10:19
Score: 1
Natty:
Report link

Had the same thing happen to me but for a different reason. I created a database diagram called Employees. Then I deleted the Employees table from my database. Then when I tried to recreate the table, it says I can't because it already exists. Deleting my database diagram was what worked for me. Table didn't exist in the diagram visually but might be persisting somehow and any attempts to delete, select, update from the original Employees would result in an error.

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

79676705

Date: 2025-06-23 20:08:18
Score: 1
Natty:
Report link

To respond to user1530249, or anyone else who has the same question (several years later, oops) you would adjust this area in the <div> you created. Similar to using width calc of 100% - 10px to allow the navigation bar to be interactive while leaving the transparent overlay covering the document body, you would adjust the top input. You'll likely need to play with it and find the right amount to enter instead of top 10px, that is a placeholder for this purpose.

<div style="position: relative; width: 100%; height: 90vh;">
          <div style="
            position: absolute;
            top: 0;
            left: 0;
            width: calc(100% - 10px);  /* Leave room for scrollbar */
            height: 100%;
            background: transparent;
            z-index: 10;
          "></div>

So changing above to: 

<div style="position: relative; width: 100%; height: 90vh;">
  position: absolute;
  top: 10px;             /* Start overlay 10px down */
  left: 0;
  width: calc(100% - 10px);
  height: calc(100% - 10px); /* Reduce height so it still ends at bottom */
  background: transparent;
  z-index: 10;
"></div>
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • User mentioned (1): user1530249
  • Low reputation (1):
Posted by: user30874610

79676704

Date: 2025-06-23 20:07:18
Score: 0.5
Natty:
Report link

If you define string as a variable containing an actual string, either as a function argument or in your main program, your code should work, though, as LMC says, don't use it as a variable name. My guess is here you forgot to define it or it's not accessible in your function or something. Normally that would result in a NameError, but since string is defined as a built-in, it instead throws the AttributeError.

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

79676675

Date: 2025-06-23 19:40:11
Score: 0.5
Natty:
Report link

As of OpenPyXL 3 (requires Python 3.6+), you no longer have to use iter_rows() as in stovfl's accepted answer. There's a much easier way to handle entire rows (and columns) buried in the tutorial section Accessing many cells:

  for cell in ws[1:1]:
    cell.fill = PatternFill(bgColor="FFC7CE", fill_type = "solid")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: B. Shefter

79676668

Date: 2025-06-23 19:29:08
Score: 0.5
Natty:
Report link

sometimes xcode doesn't seem to pick up the s.source_files pattern and leads to folders not being visible in xcode s.source_file = "**/*.{h,m,mm,swift,hpp,cpp}" is the original intended but adding anything else xcode doesn't seem to capture well "src/**/*.{h,m,mm,swift,hpp,cpp}", the first source pattern captures everything and should resolve the issue.

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

79676659

Date: 2025-06-23 19:18:05
Score: 1.5
Natty:
Report link

Tesseract is easy to install on Debian. Just follow documentation https://tesseract-ocr.github.io/tessdoc/Installation.html or https://notesalexp.org/tesseract-ocr/.
I doubt .NET wrapper will work on Debian (https://github.com/charlesw/tesseract/issues?q=is%3Aissue%20state%3Aopen%20linux).

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

79676657

Date: 2025-06-23 19:17:05
Score: 2.5
Natty:
Report link

The plugin throwing a ClassCastException is a regression bug that is fixed in version 1.3.1 of the plugin.

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

79676655

Date: 2025-06-23 19:15:04
Score: 2.5
Natty:
Report link

Is there a way to filter out ping frames so they do not interfere with my test?

Sure there is! See the documentation at https://bitbucket.org/pjtr/jmeter-websocket-samplers/src/master/, specifically:

Filters To handle situations in which the server sends unsolicited messages and the occurrence of such messages is hard to predict or otherwise hard to take into account in the test plan, filters can be used to discard such messages before they are seen by a sampler. There are three different kinds of filters:

Ping/Pong frame filter: discards all ping and pong frames and has an option to automatically respond to pings (with a pong of course)

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there a
  • Low reputation (0.5):
Posted by: Peter

79676653

Date: 2025-06-23 19:15:04
Score: 2.5
Natty:
Report link

I came here with the auto complete issue being Docker. I ended up just reinstalling Docker and that made the insecure file error disappear.

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

79676651

Date: 2025-06-23 19:13:03
Score: 1.5
Natty:
Report link

Just had the same problem and found that if I replace "req.pipe(busboy)" with "busboy.end(req.rawBody)" it works.

Seems in Firebase Functions, req is already fully parsed, and the stream is closed, so req.pipe(busboy) won’t work and causes “Unexpected end of form.”

Instead, use busboy.end(req.rawBody) to feed the buffered body directly to Busboy. This works because Firebase makes the full raw body available via req.rawBody.

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

79676639

Date: 2025-06-23 19:04:01
Score: 3
Natty:
Report link

No idea what causes this, it happened to me too, but if you close the tab it's happening in, and re-open it, you'll see the line blinking again.

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

79676631

Date: 2025-06-23 18:48:57
Score: 0.5
Natty:
Report link

This works:

    [LayoutRenderer("elk-environment-index")]
    public class EnvironmentNameLayoutRender : LayoutRenderer
    {
        [DefaultParameter]
        [RequiredParameter]
        public Layout AspNetEnvironmentName { get; set; } = "${lowercase:${environment:variable=ASPNETCORE_ENVIRONMENT}}";

        protected override void Append(StringBuilder builder, LogEventInfo logEvent)
        {
            var text = AspNetEnvironmentName!.Render(logEvent);

            var name = text switch 
            {
                "development" => "debug",
                "staging" => "test",
                "production" => "prod",
                _ => AspNetEnvironmentName
            };

            builder.Append(name);
        }
    }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Artem Grunin

79676623

Date: 2025-06-23 18:44:56
Score: 3.5
Natty:
Report link

App Engine standard dispatch.yaml 20 rules limit is this rule still exists?

also if we have multiple dispatch.yaml file will this issue be resolved

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

79676616

Date: 2025-06-23 18:29:53
Score: 1.5
Natty:
Report link

I don't know of a tool that will determine the minimum cmake version by parsing your CMakeLists.txt, however, there is a tool that will automate the process of checking with every version of cmake: https://github.com/nlohmann/cmake_min_version

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

79676608

Date: 2025-06-23 18:19:50
Score: 2
Natty:
Report link

I was able to do this by:

  1. Changing the word "edit" to "preview" in the Google Sheets URL (per user above)

  2. Right click "Print", and click on "Save as pdf"

  3. Upload pdf onto my google drive

  4. Open said document from google drive and select "Open with Google Docs"

  5. Copy and paste table from Google Docs into Google Sheets or excel, as preferred.

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

79676605

Date: 2025-06-23 18:16:49
Score: 3
Natty:
Report link

I came across this problem and found the I had set the FORM Property "Allow Edits" to 'No'.

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

79676604

Date: 2025-06-23 18:15:49
Score: 2.5
Natty:
Report link

You really can't go wrong with ISO. I don't know your tech stack, but you may want to look into the Date() and toISOString() methods in JavaScript. ISO 8601 also has rules for the offset/timezone.

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

79676602

Date: 2025-06-23 18:15:49
Score: 2
Natty:
Report link

I couldn't agree more. The way these matrices are handled is huge "swing and a miss" in terms of usability and common sense. Defining matrices with a known set of dimensions and what happens when they're multiplied in the standard way leads to weird results, and there's just no reason why it has to or should work this way. It flies in the face of every linear algebra textbook ever written, and I'm struggling to understand what viewpoint led to this syntax and behavior. What a waste.

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

79676589

Date: 2025-06-23 17:52:44
Score: 5.5
Natty:
Report link

We are also facing the same problem since June 20 2025, we have double checked the configurations multiple times and it still reported "invalid_client"

Recently, there are other 17 developers also facing this problem, we think it's apples fault: https://developer.apple.com/forums/thread/789011

and looks like this problem is not happen at first time: https://developer.apple.com/forums/thread/675742

Reasons:
  • Blacklisted phrase (1): also facing this
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): also facing the same problem
  • Low reputation (1):
Posted by: Smith

79676567

Date: 2025-06-23 17:39:40
Score: 1
Natty:
Report link

When you have a collection (users_preferences or libraries) with a relationship attribute pointing to users_profiles, creating a document in users_preferences or libraries might also be attempting to create a document in users_profiles implicitly, using the same ID.

Check your code where you're creating documents in users_preferences and libraries. Make sure youre providing the ID of an existing users_profiles document, rather than unintentionally triggering the creation of a new one.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When you have a
  • Low reputation (1):
Posted by: davegizmo

79676564

Date: 2025-06-23 17:34:39
Score: 0.5
Natty:
Report link

The problem is that A is trivially copyable (memcpy works fine), but it's definitely not trivially relocatable. After copying, b.pn still points to a.n instead of b.n, which breaks the whole point of relocation - the new object should be independent.

I think when the proposal author said "trivially copyable implies trivially relocatable", they were speaking practically rather than formally. In most real code, trivially copyable types don't have these self-referential pointer issues. Standard library types are designed to avoid this trap.

But technically? No, the implication doesn't hold. Your struct proves it. A type can be safely memcpy'd without being safely relocated.

The distinction matters because:

Your example passes the first test but fails the second. So while the rule works as a heuristic for most code, it's not a formal guarantee.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mohammad Aman

79676563

Date: 2025-06-23 17:33:38
Score: 4
Natty:
Report link

I have the same situation.

No squiggles lines AND Error List window doesn't show any errors if "Build + IntelliSense" is selected. It does show errors if "Build Only" is selected but then I have to manually rebuild after every edit.

I did remove and reinstall IntelliCode from the Visual Studio Installer,
Tools-Options-..-InteliCode unchecked and checked back
Tools-Options ... show error squiggles unchecked and checked back
Deleted .vs folder, and reset all settings to C# profile.
.obj and .bin folders deleted multiple times

Is GitHub copilot required for this to work? I hope not...
Is Live Share required? I hope not either...

I seems to be out of options any additional suggestions would be appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • RegEx Blacklisted phrase (2): any additional suggestions
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: shlasasha

79676557

Date: 2025-06-23 17:30:37
Score: 5.5
Natty:
Report link

So I have this issue too, started about a week ago for a live version of the app, it just stopped functioning and now even if I download my current live version from the app store, I get the same error.

It happens on device and on the simulators for me, and I have no idea what happened? Nothing changed, it just started failing and there is zero information regarding it online.

No idea what to do, my app is breaking slowly for all users and there is no clear reason why.

Reasons:
  • RegEx Blacklisted phrase (1): I get the same error
  • No code block (0.5):
  • Me too answer (2.5): I get the same error
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Atlas

79676553

Date: 2025-06-23 17:25:35
Score: 1
Natty:
Report link

I had the same issue, mostly useless info online. Took me 2 hours to figure out that the dbt-core and the adapter I'm using (dbt-clickhouse) got updated from the previously working version 1.8.9 to 1.10.2.
Made fresh venv and installed the 1.8.9 ones and the problem was solved.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Angel Tepavicharov

79676550

Date: 2025-06-23 17:23:35
Score: 0.5
Natty:
Report link

I ran into this while trying to use firebase init firestore to "Add Firebase to an existing Google Cloud Platform project".

This 403 is a bug. You need at least one project in Firebase before this will work. Hit the big "Create a Firebase project" button at https://console.firebase.google.com/ and then it will work.

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

79676549

Date: 2025-06-23 17:23:35
Score: 1
Natty:
Report link

8

Flutter is an SDK developed by Google. It's a Dart library built to provide GUIs with native look & feel. This is achieved via the Flutter Engine (using Google ), last I saw built in C++. However, interfacing calls to the native platform are done via their specific SDKs (and native languages, such as Swift and Kotlin/Java).

Dart is both a programming language and a platform (Dart VM). And it can be run in many ways:

  1. Dart Virtual Machine: On Windows, macOS and Linux, using Just-in-Time.

  2. Native: Using dart2native, Dart can be compiled to self-contained, single file, native executables.

  3. JavaScript: Using a source-to-source compiler, Dart code converts to JavaScript and can be run in most web browsers.

  4. AOT / Ahead-of-Time: This is fully native to mobile platforms (iOS / Android) and used mostly for delivery to app stores.

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

79676533

Date: 2025-06-23 17:11:32
Score: 4.5
Natty:
Report link

I am having the same problem. Here is some sample code. As can be seen from the results, the code outside of the test is called twice. Once before the actual test is run and once after. Only on the second pass will the code inside the test scope is executed. I assume that this is due to Playwright scanning for tests before executing the actual tests.

Like Drashty, I am creating parameterized tests so the parameter data has to come from outside of the test block. The problem with this double pass is that the parameter retrieval routines are being called twice.

I have not been able to tap on the internal context to prevent a second call to the retrieve parameter data routine. As can be seen below, the context does not seem to be preserved across the two passes (the iterator value is the same).

Question: how can I tap into the Playwright context so that I can set a boolean flag that will prevent pre-test code from executing twice?

import { test } from '@playwright/test';

let iterator: number = 0;
console.log(`Pre Test step: ${iterator}`);
iterator = iterator + 1;

test(`testing with id: a test`, () => {
  console.log(`dummy step`);
});

Results:

enter image description here

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I am having the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: herbey zepeda

79676531

Date: 2025-06-23 17:10:31
Score: 3.5
Natty:
Report link

The answer was too easy for me to see it right before my eyes. I needed to add:

    width: '100%',

to the TouchableHighlight's style.

Check out the new Snack

<https://snack.expo.dev/@rjapenga/touchablehighlight-fixed>

I was under the mistaken impression that "flex: 1" meant that the item would grow to the size of the available container both vertically and horizontally and thus I never tried width. For the life of me, I cannot find where the React Native documentation tells me that:

"Flexbox works the same way in React Native as it does in CSS on the web, with a few exceptions."

<https://reactnative.dev/docs/flexbox>

Their example seems to imply that I don't need to say width: '100%' and I cannot find where the explain this particular exception.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: rjapenga

79676529

Date: 2025-06-23 17:10:31
Score: 1.5
Natty:
Report link

So, your intent is to have Form A open, click a button and Form A closes and Form B appears.

The problem you have is that Form A happens to be the Main form of you application (the one that is set to run on start up). Whenever the main form is closed the application will try to shut down and will close all other forms.

If you open Form A from your Main form and then try to swap open forms it should work.

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

79676521

Date: 2025-06-23 17:06:29
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4

Yos Wangsaf

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yosep Dermawan

79676510

Date: 2025-06-23 16:57:17
Score: 2
Natty:
Report link

It may not be the quickest solution, but could be helpful to assign each item an integer ID as a Primary Key, and have the QR codes populate that integer (if this is something you can do/change). I have an app set up in a similar manner and have not had this issue, wondering if the omission of a string as the variable will help.

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

79676508

Date: 2025-06-23 16:55:16
Score: 5
Natty:
Report link

Even I had the issue with this but my project is in modular structure with native federation any help is much appreciated

import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';


platformBrowserDynamic().bootstrapModule(AppModule);
@NgModule({
    declarations: [
        AppComponent,
        // DialogComponent,
        IEAlertComponent,
        InformativeBannerComponent,
        // ErrorModalComponent,
        NotificationBannerComponent,
        // EmailPreviewDialogComponent,
        // TestEmailDialogComponent,
        FooterComponent,
        // MultiSearchComponent,
    ],
    bootstrap: [AppComponent],
    imports: [
        FormsModule,
        ReactiveFormsModule,
        BrowserModule,
        CommonsComponentsModule,
        // ChatbotModule,
        // FiltersModule,
        AppRoutingModule,
        BrowserAnimationsModule,
        ContactDrawerModule,
        HelpDrawerModule,
        JsonSchemaFormModule,
        MaterialDesignFrameworkModule,
        DdcMastheadModule,
        DdcSidenavModule,
        DdcBannerModule,
        DdcLoadingModule,
        DdcConfirmationModalModule,
        DdcAlertMessageModule
    ],
    providers: [
        provideHttpClient(withInterceptorsFromDi()),
        {
            provide: HTTP_INTERCEPTORS,
            useClass: HttpErrorInterceptor,
            multi: true,
        },
        {
            provide: APP_INITIALIZER,
            useFactory: autherize,
            deps: [UserService],
            multi: true,
        },
        ScrollService,
        RouteStatusService,
    ]
})
export class AppModule { }
Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): any help
  • RegEx Blacklisted phrase (3): any help is much appreciated
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ram

79676489

Date: 2025-06-23 16:31:09
Score: 2
Natty:
Report link

Click the little arrow next to the copilot icon on the taskbar at the top, there you will find "Configure code completions".

Copilot config

Clicking on that will take you to

Configure copilot completions

click on disable completions and you are all set.

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

79676485

Date: 2025-06-23 16:27:08
Score: 0.5
Natty:
Report link

A stupid method that works for me on DataGrip2024 on MacOS

Since I saved the query into consoles, this is the folder to find all stored consoles.

/Users/YOURUSERNAME/Library/Application Support/JetBrains/DataGrip2024.2/consoles

Just need to go through those uuid folders to find the correct console.sql, then use the folder name(uuid) to locate the password you are looking for in the keychain like this example below:

IntelliJ Platform DB — 892a71d8-e6ab-4a3e-9f3c-4ccc0d1bd2e2

Reasons:
  • Whitelisted phrase (-1): works for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jeff_On_Mars

79676484

Date: 2025-06-23 16:25:08
Score: 1.5
Natty:
Report link

import 'package:flutter/material.dart';

void main() { runApp(HanaKoreanBhashaApp()); }

class HanaKoreanBhashaApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Hana Korean Bhasha', theme: ThemeData( primarySwatch: Colors.orange, ), home: HomePage(), ); } }

class HomePage extends StatelessWidget { final String appDescription = 'Korean UBT App is a complete and user-friendly mobile application designed especially for EPS-TOPIK (Ubiquitous-Based Test) preparation. It offers a realistic and updated test format that includes a total of 40 questions—20 reading and 20 listening—exactly like the official UBT exam. The reading section helps you improve your grammar, vocabulary, and comprehension through structured practice sets, while the listening section includes high-quality native Korean audio with workplace and daily life conversations to test your understanding. This app is ideal for Nepali users who want to go to South Korea for employment under the EPS system. It provides full mock tests, daily vocabulary, model question sets, and progress tracking, making it the smartest and easiest way to prepare from anywhere. Whether you’re a beginner learning the basics or an advanced student revising for the exam, this app supports your journey with both offline and online features. Key features include full 40-question mock tests, instant result scoring, grammar and sentence explanation in Nepali and English, pronunciation tips, and regular vocabulary updates. The app also offers language options in Nepali, Korean, and English, so that users can learn in the language they’re most comfortable with. With a simple interface and easy navigation, Korean UBT App turns your mobile phone into a smart Korean learning center. Start practicing anytime, anywhere—even without internet—and track your improvement over time. With Korean UBT App, your EPS-TOPIK preparation becomes faster, smarter, and more effective. Download now and take the first step toward your dream of working in Korea.';

@override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @override
  • User mentioned (0): @override
  • Low reputation (1):
Posted by: Pujan Paudel

79676481

Date: 2025-06-23 16:23:07
Score: 2
Natty:
Report link

Publish now fails out of the box. I uninstalled and re-installed Visual Studio 17.4.6 then created a .Net 8 console app then created a publish to folder. I simply clicked thru without changing anything. Project builds fine but Publish fails with "Publish has encountered an error. We were unable to determine the cause of the error. Check the output log for more details." Publishing "Hello, World!" should just work.

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

79676479

Date: 2025-06-23 16:20:06
Score: 3.5
Natty:
Report link

I can't comment on the post yet, however if anyone is still having this issue with SSMS21 then just make sure that you select the "Business Intelligence" workload with the optional components.

Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: James Walker

79676472

Date: 2025-06-23 16:14:04
Score: 3
Natty:
Report link

I have same issue. Really annoying. Bug seems to be in the html extention, in my case, maybe for other extentions too

I open in Notepad document.html and it opens as ISO-8859-1, even if saved in UTF-8

I save document.html (forced to UTF-8, looking good) as document.txt

I close document.txt

I re-open document.txt and it is OK, ndp recognizes UTF-8

But... I re-save document.txt onto document.html (original name or any other name with html extention), when I re-open document.html ndp reopens it in ISO-8859-1. Bad.

I tried simply renaming (not saving as) document.txt file to document.html and same issue opening it in ndp. Renaming in Windows explorer doesn't fix it.

So I guess there must be some hidden special chars that make ndp bug, because it only happens to me with specific html files, not for all html files. And I found no way to detect those bad chars on ndp. There must be an option on grep command on Linux, as in link . It could be a Windows system problem too, as ndp uses his libraries.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Low reputation (0.5):
Posted by: DrOne

79676465

Date: 2025-06-23 16:08:02
Score: 3.5
Natty:
Report link

a similar question both the row and column have header and first four columns has names and I want to remove the data frames in a list of thousand data frames where all columns except first four have no values that is .. in the column.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: saumya singh

79676464

Date: 2025-06-23 16:08:02
Score: 2
Natty:
Report link

The code you provided looks correct.

Two things to check.
1. Make sure you did the allowlisting in steps 3 and 4
https://docs.chain.link/ccip/tutorials/evm/programmable-token-transfers#deploy-your-contracts

2. Are you sending tokens with your data? If not, that can cause a revert as well.

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

79676453

Date: 2025-06-23 16:02:00
Score: 0.5
Natty:
Report link

I was new to Load Balancer. I managed to make my Elastic Beanstalk work and host my backend by turning Public IP Enabled in the my elastic-beanstalk environment's configuration. Certainly, this QnA & this article were helpful after going through bunch of webpages. So, the Instance has not sent any data since launch. issue was solved via this solution.

However, the Severe status is still there but with different errors (I tried changing Proccess's port to Port 80 and Protocol to HTTP):

  • 100.0 % of the requests are erroring with HTTP 4xx. Insufficient request rate (12.0 requests/min) to determine application health.

  • Process default has been unhealthy for 12 minutes (Target.ResponseCodeMismatch).

But, these issues are pretty much expected since I am hosting my backend which doesn't have any method or page at it's root endpoint i.e. /. Therefore, when healthchecks is requesting via GET method at my-env.us-east-1.elasticbeanstalk.com/, it returns 400 status. To solve this, you need GET method at your root endpoint which must be free from any authorization wall. Since I don't need it and hosting only backend, I changed my HTTP code in Process to 400-499 from 200 to skip this and resolve Target.ResponseCodeMismatch.

Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ShivamQmr

79676448

Date: 2025-06-23 15:55:59
Score: 1.5
Natty:
Report link
  1. Battalimg un the all segment multigfucation of the all nessecery management to creue that the fhilsment segments multifunctional to all structures are the raere to kulovkyuting in the formation to creue in to yhe of , organic organization to dintencemde

T ।

° pst of the ravanue in aur the sefment मल्टोफिएकट liktocaryotic

In the formation all the best if the tyepe to import in the multiple orsecess pbserb in the pigmy at the tense of nouwn

°education of resources in

Classy

To aur important questions

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

79676447

Date: 2025-06-23 15:54:58
Score: 1.5
Natty:
Report link

v5.3.31 update, June 2025;

When trying to upgrade to the latest version (v5.3.31 as of 23/06/2025), I came across similar issues as with previous versions (above).

It looks like there's some lookups for locale in the code, but none worked for me if I used "#locale=" or "&locale=".

So I've added a similar workaround as above, but updated for the latest version;

In PDFjs/web/viewer.mjs;

Find localProperties, line 615;

  localeProperties: {
    value: {
      lang: navigator.language || "en-US"
    },
    kind: OptionKind.BROWSER
  },

Add an extra lookup above to check the URL for any locale's passed through, so change line 615+ to match;

  localeProperties: {
    value: {
      lang: new URLSearchParams(window.location.search).get("locale") || navigator.language || "en-US"
    },
    kind: OptionKind.BROWSER
  },

If there's a better way, someone do please let me know, but this small workaround resolved the issue for me.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (2.5): please let me know
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Matt Scott

79676442

Date: 2025-06-23 15:52:58
Score: 2
Natty:
Report link

By commenting the line DriverManager.getDriver().manage().window().maximize(); in my browser calling function, browser is maximised.

My headless code is mentioned in my question.

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

79676436

Date: 2025-06-23 15:46:56
Score: 0.5
Natty:
Report link

The problem is that by having fill aesthetics in ggplot(), you are telling stat_pvalue_manual that fill = Temperature, which it doesn't know what to do with because Temperature doesn't exist in contrasts.means.species.temp. Move the fill aesthetic to geom_boxplot instead.

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

79676434

Date: 2025-06-23 15:45:56
Score: 2
Natty:
Report link

Results, but an unresolved issue:

As noted in the comments, I used an index.yaml file and the following command to add the index:

gcloud datastore indexes create index.yaml --database=mydatabase

After a short time, the indexes appeared in the Console, but but for many hours, the Size and Entries columns were blank. Finally, after over 24 hours, the indexes are populated.

In the meantime, I found a bug in my code. [Of course; things are never straightforward.] As of this moment, my application is working. However

This command still doesn't work

gcloud datastore indexes list --project="myproject"

The response is still

ERROR: (gcloud.datastore.indexes.list) Projects instance [myproject] not found: Project 'myproject' does not exist.

Finally, the indexing process seems shockingly slow for a test database of this size. Here is the data from the Datastore Dashboard:

Entity count 530
Built-in index size 956.57 KB
Composite index size 251.49 KB
Data size 787.74 KB
Total size 1.95 MB
Last updated Jun 22, 2025, 9:00:00 AM

I am going to mark this as answered. But if you are reading this because you have a similar problem, I can offer only a few ideas that might help:

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): have a similar problem
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: lguinn

79676424

Date: 2025-06-23 15:36:53
Score: 2.5
Natty:
Report link

It could be totally unrelated.

In my case, I was missing a code behind handler.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Kevin Dimey

79676420

Date: 2025-06-23 15:35:52
Score: 2.5
Natty:
Report link

define('db_host', 'localhost');

define('db_user', 'root');

define('db_password', '');

define('db_database', 'dairy');

define ('PAGE_URL', 'http://localhost/Dairy/');

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

79676416

Date: 2025-06-23 15:32:51
Score: 3
Natty:
Report link

I reproduced the structure of the two files you described on playcode.io and there are no errors ( you can test it at this link: https://playcode.io/2433719 ).

Maybe you should provide us with more information so we can help you more.

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Christian Totaro

79676410

Date: 2025-06-23 15:27:49
Score: 1.5
Natty:
Report link

Set the write deadline in the /reports/* handlers using a response controller.

For example, add this line to the handler to set the timeout to 10 minutes:

 http.NewResponseController(rw).SetWriteDeadline(time.Now().Add(10 * 60 * time.Second)

The idle timeout is not relevant to your problem.

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

79676394

Date: 2025-06-23 15:18:47
Score: 1.5
Natty:
Report link

I tried to find that Enviroment section in the Build&Deploy when deploying my React project and it worked for me thanks!!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: the_muhammad_ali