Category: Uncategorised

  • May 2016 Migration!!

    Please find below previous entries after I have migrated hosts. I will later update images and links as I intend to migrate all source to bitbucket.org shortly.

  • FiendZip

    Description I wanted to create a fully stand alone html file, that could encrypt its contents hold all the tools to decrypt itself reproduce itself entirely worked in local browser – (no server calls) extensible (simply adding more functions) be self contained and not require any extensions such as JQuery or any Encrpyt Library Example…

  • Android Password Generator/locker

    Description I wanted to create a full Android application from start to finish. It was going to take a JAVA class straight out of another project. In this case straight out of the Password Generator Java version. It takes a while to get setup with Android and its key concepts.   *NOTE I designed it…

  • Dictionary

    Description In this project I sought to create a java program that could read an entire unabridged dictionary text file into a MySQL database. The purpose was to create a simple webpage that using AJAX calls could show the definition appear as the User typed it into the search.   Learning Goals: To see the…

  • Edge Detection

    My Edge detection program involves defining the edge of a section of an image based purely on its colour (RGB value). In building a Risk Style game I needed to be able to find out what country a player has clicked efficiently on a very large scale on a 4k image. Please see below for more…

  • File-a-Box

    Description I wanted to make a program that i could have running on my desktop and that if i was to drop a file on, it would sort into a predetermined folder, E.G word files moved to documents, Music files to my music, .java files moved to code folder. I wanted to make it attractive…

  • Java Calc

    Description I was interested in creating a quick easy to use calculator with JAVA that i could load on my desktop, the purposes of which was to be able to add modular functionality.   so far the calculator takes input allows multiple lines of  Plus Minus Multiplication and Dividing. (Basic calculation) my focus was on…

  • Google Chrome Image Viewer

    Description I wanted to make a “make do” image viewer , that read a folder of Image files, and produced a HTML page that had all images, reduced in size, with controls for zooming to full size. I wanted the program to be able to read Multiple JavaScript & CSS files through JAVA and create…

  • Java Chess

    Description I wanted to attempt to simulate chess. model it without checking how others had done it before, Pseudo code it and then implement those design decisions to get a working Chess Game. to this i needed to define Pieces, Player,Board Game and Square Objects. I utilize static methods heavily at this time to allow for…

  • Java Password Generator

    Description  I wanted to make a quick easy to use password generator for creating strong passwords and storing them for future use. Requirements for a strong password include having upper case and lowercase and numbers, randomly generated and usually over 8 characters long. I wanted to be able to do excessively long String passwords whilst…