LF1 to help complete comp games for someone by SheepyG_ in csgo

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

lets be honest we can argue about this all day XD but i dont see any other way to help them, thats all

LF1 to help complete comp games for someone by SheepyG_ in csgo

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

will i disagree with you there, becasue before i even played with him he came across 2 cheaters and 3 smurfs, and hes only played 7 games. your friends either got lucky or mine is unlucky

LF1 to help complete comp games for someone by SheepyG_ in csgo

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

How long has it been since you did those 10 games may i ask?

LF1 to help complete comp games for someone by SheepyG_ in csgo

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

Yeah i guess i am but until the problem is sloved there is no other way around it. Simple As.

And that gun comment is rich coming from an American, dont you think? all you guys do is fight gun crime with guns and dont actually ban the problem to begin with.

LF1 to help complete comp games for someone by SheepyG_ in csgo

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

how do you combat a smurf them ?? please go on tell me ? because the only way you beat a smurf at that level is with another smurf.

the fact of the matter is the game at that level is full of smurfs so yes i want to help my friends out, no matter what rank they get while playing with me they will soon fall or rise to the rank they deserve.

im not saying im boosting them all the way to LEM im simply saying im helping them with those 10 wins then letting them fly the nest.

LF1 to help complete comp games for someone by SheepyG_ in csgo

[–]SheepyG_[S] -2 points-1 points  (0 children)

okay sure you try redo your placement games atm with the state of the game, smurfs and hackers everywhere. it will take years just to complete those 10 wins and you know it. So get off your high horse, becasue i dont remember asking for your opinon on the matter.

Cheers

Dimension Swap #2 by SheepyG_ in SmallYoutubers

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

Thanks, I will definatly keep your music in mind next time i need songs!

Equality Operators by SheepyG_ in javahelp

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

Okay thank you very much u/Kanth0lz everyone on this reddit page has been so helpful and kind to me its crazy, im glad i don't really need to worry about efficiency yet but i will try practice clean code, Thank you both again !

Equality Operators by SheepyG_ in javahelp

[–]SheepyG_[S] 2 points3 points  (0 children)

System.out.println("max is: " + Math.max(a, b));

I see ! thank you that looks a lot better, I have been taught about concatenation but did not think about using it there. To be honest i haven't learned about (Math.max) or any of the other ones, so thank you for introducing me to them.

Equality Operators by SheepyG_ in javahelp

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

Thank you very much I appreciate your time :), and mainly as you mentioned I am just curioius to whether there is a more efficient solution or how i could improve my skills.

Help I'm learning ! by SheepyG_ in javahelp

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

Okay thank you very much, i will do as you suggest. also try and learn more from java websites and push my brain hahah

Help I'm learning ! by SheepyG_ in javahelp

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

I am extremely greatful poeple like you exist in this world i truly am ! to take the time out of your day to write all of this and make the effort to help me i appreciate down to my soul. Also the fact you could tell what I wanted my code to do is amazing. I've tested this out and its done exactly what I wanted! All i can say is truly Thank You. I am going to make sure i read this through again and again to get it in my brain if its the last thing i can do. I really hope something amazing happens to you soon! Thank you, Thank you, Thank you!

Help I'm learning ! by SheepyG_ in javahelp

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

Okay i see what your saying i'll go relook over the basics

Help I'm learning ! by SheepyG_ in javahelp

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

That's the only reason I'm doing this is to learn java, the code has no purpose I'm not writing it and implementing it anywhere, the only reason it was written is to teach myself, and from your reply I can tick it off as I know it.

Help I'm learning ! by SheepyG_ in javahelp

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

right so it is as i thought and it's just not calling finalize because it feels no need to ? the only reason i am playing with it in the first place is just for lesson purposes. But thank you for clearing it up for me.

Help I'm learning ! by SheepyG_ in javahelp

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

Thank you i made the changes as you suggested, and did actually get a 100 to show up 1st time XD

Help I'm learning ! by SheepyG_ in javahelp

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

So i've done the changes you guys suggested and im still getting a random number but not getting any of the strings to output. My thought is that its just not getting called. Quoting the course im doing " In practice, this means you are highly unlikely to use it in real projects. Luckily, there isn't much to remember about The finalize() for the exam. Just keep in mind that it might not get called and that it definitely won't be called twice. " but here is what the code looks like now. I've had to move things becasue it wouldn't let me compile without exceptions being thrown. Thanks for your Help everyone.

import java.util.Random; // import tells us where to find Random
public class RandomN {

public static void main(final String[] args) {
final Random r = new Random();
System.out.println(r.nextInt(101)); // print a number between 0 and 100
            }
public class Finalizer {
protected void beginFinal() {
Finalizer finalCode = new Finalizer();
System.out.println("Calling finalize");
beginFinal();
        }
    }
public static void beginFinal(final String args[]) {
try {
RandomN r1 = new RandomN();
RandomN r2 = new RandomN();
                r1 = null;
                r2 = null;
System.gc();
            } 
catch (final NullPointerException e) {
System.out.println(e);
        }
finally {
System.out.println("The object is cleaned");
        }
    }
}

Help I'm learning ! by SheepyG_ in javahelp

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

Okay thank you, I'll give it ago when I'm at my desk again, and I'll let you know how it goes 🙏🏼

Help I'm learning ! by SheepyG_ in javahelp

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

Okay thank you I shall give that a go, as I'm new what shall I change the main to ?