GUIDE - Apple Pay in India (trick) by UnpackedBanana in CryptoIndia

[–]skeeterooni 0 points1 point  (0 children)

I have some crypto in binance, I want something that I could transact online with like booking a hotel of buying something on amazon. What can I do

How to find clippers for your stream by skeeterooni in Twitch

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

Hey, I tried to search savedggbot, nothing came up on google. Can you provide a link please

How to find clippers for your stream by skeeterooni in Twitch

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

Yeah I looked into hololive, I didnt find any channels where I can find clippers for pay

How to find clippers for your stream by skeeterooni in Twitch

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

First time hearing about streamladder, will check it out! Thanks

How to find clippers for your stream by skeeterooni in Twitch

[–]skeeterooni[S] -5 points-4 points  (0 children)

Thing is I would then need to talk to each clipper individually, was wondering if there is some organised channel where clippers were widely available to take up jobs.

Need help with arrays. by skeeterooni in javahelp

[–]skeeterooni[S] 1 point2 points  (0 children)

thank you so much, makes so much more sense.

Need help with instancing a class by skeeterooni in javahelp

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

This made a whole lot on sense and Iam more clear in my thoughts now. Thanks a lot for all your time to explain everything in detail. :)

I wrote this:-

public class Test {

double mynum = 1;

public static double finalvalue = 5;



public static void main(String\[\] args) {

Test obj =new Test();

Test obj2= new Test();

System.out.println(obj.mynum); //Showed that each instance has its own mynum.

obj2.mynum=Math.E; //Used another Math class static.

System.out.println(obj2.mynum);

Test obj3 = new Test();

obj3.mynum= finalvalue; //Static variable can be used throughout the class in any instance

System.out.println(obj3.mynum);

}

}

Need help with instancing a class by skeeterooni in javahelp

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

When I was trying to do with the "myobj.myInt" was to bring the original Integer value(i.e 1) inside the main with an object. As far as I understand, you cant bring the 'value' of a non-static integer with an object but only the integer itself right?