Version Reviewing: 2018
"A must-try for learning game development"
Summary:
I was first introduced to Unity by my game development & design club at my University. The company that created Unity gave the club members free keys, so that was pretty sweet. Unity is known as a great engine for those learning game development, which was a large majority of the club members. It wasn't very complicated to use. The game engine worked fine on my 10+ year laptop. I had so much fun using it and even completed my first game at a 48-hour Hackathon :D
"No excuse to not make an account"
Summary:
I'm always using Github at school, work, and at home. Having a github account is a must have if you're a developer. It's widely used, has a beautiful and clean UI for both their application and website, and it's incredibly useful. Version control is super important if you're a software developer. They also provide free web hosting for your online portfolio. IF YOU DON'T HAVE A GITHUB ACCOUNT, GO MAKE ONE NOW. You won't regret it.
What does this code do?
public class Demo { public void method1() { synchronized (String.class) { System.out.println("on String.class object"); synchronized (Integer.class) { System.out.println("on Integer.class object"); } } }
Programming Language: Java