Adventures in Building an MMO Game Back End in Java (Part 1)

Mon Feb 17 2020… Read more

Similar

Jshell: exploring Java 9 REPL

Remember the days when you need to write at least one class to test a small snippet of Java code ?! well, this days will be soon from the past once java 9 is released. JShell is the first official Java REPL (Read-Eval-Print-Loop), a command line tool that... (more…)

Read more »

Java Multi-Threaded SHA2 Collision Finder

This is a multithreaded JAVA Birthday-bound collision finder that will populate an AVL tree while querying for matches. once a match is found the two colliding files are output and then program increases the quality standard for nibble matches. Once the A... (more…)

Read more »

Java.util.Dictionary Class

Java.util package provides a Dictionary class which is the abstract parent of any class, such as Hashtable, which maps keys to values. Every key and every value is an object. In any one Dictionary object, every key is associated with at most one value. Gi... (more…)

Read more »