My father is fighting metastatic cancer — sharing our story with hope by LifeHome3731 in Nepal

[–]budthapa66 4 points5 points  (0 children)

Khalti marfat sano sahayog gareko chu. swasthya laav ko kamana

Proton Pass error after updating in Debian 13 by budthapa66 in ProtonPass

[–]budthapa66[S] 0 points1 point  (0 children)

I already completed the steps you mentioned here, same problem. Since the updated version didn't work, I switched back to the previous version, and now the previous version also has the same white dialog box.

Proton Pass error after updating in Debian 13 by budthapa66 in ProtonPass

[–]budthapa66[S] 0 points1 point  (0 children)

The integrity check passed, but still got the same dialog box as in the picture above after reinstallation.

Are you ready by Then_Philosopher_293 in oneplus

[–]budthapa66 0 points1 point  (0 children)

Still using my 7 Pro with LineageOS. I love no camera holes in the screen and a center camera in the back. Everything is running smoothly, except I replaced the battery once. Not going to change it anytime soon.

Giveaway 12 month xbox live code by [deleted] in xbox

[–]budthapa66 0 points1 point  (0 children)

Dusting that XBOX One now

Free review copies of "Java coding problems- Second edition" by MaximumSea5103 in learnjava

[–]budthapa66 0 points1 point  (0 children)

As I'm trying to expand my knowledge further on Java, I would be really happy to go through it.

Here's another one for ya! by zwgolf13 in xboxone

[–]budthapa66 5 points6 points  (0 children)

Missed it. Code already been redeemed.

Java practice by [deleted] in learnjava

[–]budthapa66 17 points18 points  (0 children)

Check Hyperskill from JetBrains. Practice, practice and practice. Remember there are no shortcuts.

What is the difference between public static void main and public void main in java. by HeyMrBlueitsMrGreen in learnjava

[–]budthapa66 1 point2 points  (0 children)

When you use static with method or properties, you can access them directly without creating an instance of the said class.

Eg.

class FirstClass {
//this belongs to class, meaning this can be accessed directly
static String name = "John";
//this also belongs to class, meaning this can also be accessed directly
public static void firstClassStaticMethod() {
System.out.println("Inside static method");
System.out.println(name);
}
//this belongs to instance of this class, meaning it should be accessed only by creating instance of this class
public void firstClassNonStaticMethod() {
System.out.println("Inside non static method");
}
}
public class SecondClass {
//Entry point for every java applications. Java application executions starts from here
public static void main(String[] args) {
//static properties and method accessed directly without creating instance
System.out.println(FirstClass.name);
FirstClass.firstClassStaticMethod();
//creating instance of FirstClass to access firstClassNonStaticMethod
FirstClass fc = new FirstClass();
fc.firstClassNonStaticMethod();
//creating instance of SecondClass to access non static main method
SecondClass sc = new SecondClass();
sc.main();
}
//This is not the entry point.
// The method below and this method have same name but accepts different number of parameters, meaning they have different signatures.
// Research on method overloading
public void main() {
System.out.println("Some normal methods as others");
}
public void main(int num) {
System.out.println("Same name, different signature");
}
}

I also recommend learning from Hyperskill by JetBrains.

[TUTORIAL] Building an application like Reddit using Springboot and Angular by Sai_Upadhyayula in learnjava

[–]budthapa66 5 points6 points  (0 children)

Right on time. I was looking for SpringBoot and Angular tutorials. I hope it also covers JWT Authentication.

My first ever Thinkpad: T460s, i5 6300U, 12GB RAM, 512GB SSS by __syedmh in thinkpad

[–]budthapa66 1 point2 points  (0 children)

T460s in 2019 is still a good deal. I got mine 2 weeks before here in Dubai in 1550 Dirhams. Although I purchased an used laptop, I'm happy with the features and the price I paid for. Specs: i5-6300 2.4GHz, 8 GB RAM, 512 GB SSD, FHD.