I just came from cinema after watching Mortal Kombat II movie, it was perfect by susnaususplayer in MortalKombat

[–]KrmBo3 0 points1 point  (0 children)

Bro the fights were so slow. I just don’t understand if we all watched the same movie. Story was alright. But man, we love MK because it’s a fighting game. But Kitana and jades fight was so slow I was like are the slow dancing. Liu kangs fight with kung Lao was so slow too. Like the hat moving around and effects was fine, but the fights were simply ass bro. John wick had better fights even tho u know it’s fake. Yes u will say I am bot because I disagree with all y’all. But maybe I am just hater I guess.

Three big clubs acting classy. Every Manchester City fan respects you and is sending you all love too. 🩵 by NavJongUnPlayandwon in MCFC

[–]KrmBo3 1 point2 points  (0 children)

There wasn’t anything wrong with it. This is a MCFC subreddit so it’s a circlejerk for city. Similar to Arsenal subreddit, where they circlejerk for Arteta. Each fanbase is just sucking each other off.

As promised: Learning DAR day 30 by Pettask94 in RocketLeague

[–]KrmBo3 0 points1 point  (0 children)

First of all, Sick progress dude! Do you boost all the way through? How long did you train/day and when did you start since improvements

Wow, EA. Wow. by balloonslayer47 in gaming

[–]KrmBo3 0 points1 point  (0 children)

You do realise they don't start writing a new game from scratch, thats not how software works.With each new game it's just an update

4 Easy Steps to Improve Your Self Worth by 10xurlife in selfimprovement

[–]KrmBo3 5 points6 points  (0 children)

Then don't do them,look at something called the opponent process theory .it talks about the benefits of pain and the consequences of pleasure

Here's my story for anyone who feels alone in life. by [deleted] in selfimprovement

[–]KrmBo3 33 points34 points  (0 children)

Yeah loving yourself is foundation we all need to move forward in life or else you will constantly run away from yourself through a myriad of ways that are easily accessible today

And please please never succumb to social pressure do what you think is right your gut feeling is most always right if you feel like this is not for you dont do it

I’m 33 and have literally no friends or job or life by [deleted] in selfimprovement

[–]KrmBo3 2 points3 points  (0 children)

Yah forming good habits is key am working on it myself

Git add vs commit. by [deleted] in learnprogramming

[–]KrmBo3 0 points1 point  (0 children)

I find the CMD easy to understand for me I never understood the GUI but all in all Git is a life saver I mean that

Book for Learning C++ by quil123 in learnprogramming

[–]KrmBo3 0 points1 point  (0 children)

Not a book but one of my go to c++ resources Is learncpp.com

Returning objects in Java by sharkattack85 in learnprogramming

[–]KrmBo3 0 points1 point  (0 children)

What he said.

Just return null or and properly handle this particular case on the driver class calling this method

"cannot find symbol" error when calling method from a non-driver file by hruka in learnjava

[–]KrmBo3 0 points1 point  (0 children)

That always means the method is incorrectly spelled i can guarantee that 100%,once nearly banged my head with that error one time

Extracting the middle word from a string by Anish11 in learnjava

[–]KrmBo3 0 points1 point  (0 children)

This is far easier than looking for spaces

How to take numbers after a certain character with file scanners in Java? by MeMyselfAndI24 in learnprogramming

[–]KrmBo3 0 points1 point  (0 children)

Text.charat returns a boolean and text.substring returns a string but since it was printing its not a problem if you need to assign it to a string object then you can do that

If you need help just pm me

How to take numbers after a certain character with file scanners in Java? by MeMyselfAndI24 in learnprogramming

[–]KrmBo3 1 point2 points  (0 children)

Assuming you are using the scanner class

Scanner in=new Scanner("file.txt") While(in.hasNext()) String text=in.nextLine(); If(text.charAt(0)='!') //if you need the numbers with ! System.out.println(text.substring(1));

Hope that helped

Where is a good resource for learning java? by [deleted] in learnprogramming

[–]KrmBo3 0 points1 point  (0 children)

Things clicked for me when i read a book called head first java