Algorithm Visualizer With Java

I recently created an algorithm visualizer in Java using JavaFX. It’s a desktop application that demonstrates various sorting, path-finding and maze-building algorithms. You can check out the source code on my Github. This post is going to be more of an expose of the project and less of a tutorial Read more…

Java Arrays!

If a normal variable is like a motorcycle, then an array is like a big city bus. It is made specifically to hold many items. Arrays in Java are similar to arrays in any other language. They need to have a type (i.e. int, String, char, double, etc..), and you Read more…

Java Variables

Hey Everyone, in my last tutorial I showed you how to setup a Java file and print “Hello World” to the console. Now lets learn about variables! In Java, every variable must have a type. The different types are: byte (number, 1 bit), short(number, 2 bytes), int (interger, 4 bytes), Read more…

Java “Hello World!”

Hey! Welcome back. Lets learn how to print to the console with Java. 1. Open up NetBeans and click the button that looks like a folder to create a new project environment. 2. Make sure “Java” is selected then hit continue. 3. Now name your project something meaningful and make Read more…