-
Continue reading →: Using a Kindle as an eInk Clock (Java)Earlier on today I used Python (via Flask, some HTML and my Raspberry Pi) to help turn my Amazon Kindle into an eInk digital clock. This was cool and I was happy until I decided I wanted to do the same thing via Java and TomCat. For this project I…
-
Continue reading →: Using a Kindle as an eInk Clock (Python)A little bit of a mini weekend project today as I wanted to put my Amazon Kindle to use when I’m not reading, and decided that the Kindle’s “Experimental Browser” could be useful. How about an eInk digital clock… Note: I’m using Python for this project but similar results could be…
-
Continue reading →: Creating A GUI Form Window (Java)As much as I enjoy creating programs that run in a command line / terminal, the majority of end users prefer a program to have a Graphical User Interface (GUI). I have managed to put a GUI on the front of some of my Python projects, so today I am…
-
Continue reading →: Caesar Cipher (Java)One of the earlier programs I wrote in Python was a Caesar Cipher (later updating it to add a GUI). As part of my recent Java learning I have created a Caesar Cipher in Java. If you want to read more about Caesar Ciphers then please check out: https://en.wikipedia.org/wiki/Caesar_cipher I…
-
Continue reading →: Returning Values From Methods (Java)As my Java adventure continues I look today at returning values from methods. So far the methods I have discussed have completed a task but have not returned any values to the main method. The previous methods have been defined as: public static void methodName(){ method } I’ve put the…
-
Continue reading →: Installing IntelliJ IDE On Raspberry Pi (Java / Raspberry Pi)With my adventures looking at Java I have also been using a different IDE (Integrated Development Environment) called IntelliJ on my Macbook. However I also want to look at using Java on my Raspberry Pi. The Raspbian OS (Stretch) comes with a Java IDE called BlueJ, which is designed around Java…
-
Continue reading →: Variables / Travel Planner (Java)I am continuing on my Java adventure and taking a brief look at variables within Java before tackling my first Java assignment (creating a planning assistant). Declaring Variables Variables in Java must be defined by their type: int for integer (whole numbers) e.g. -5, 5, 100000, 0 double for decimal…
-
Continue reading →: Methods (Java)Continuing on with my learnings about Java , today I am discussing methods. Within the public class there is a main method, which can then be used to call on other methods. The other methods can be named and defined in any order and then called by the main method in…
-
Continue reading →: Java Basics / Hello World In Java (Java)Way back in October 2016 I completed an introduction to Java course via MadLab, and other than dipping into Java whilst looking at Android development I have not really looked at the Java language. However in recent times I’ve been dabbling with C, and that got me thinking about Java again.…
-
Continue reading →: Creating A Port Scanner (Python / Raspberry Pi)Today I am having a quick play with the socket library in Python, and using it on my Rasperry Pi as a port scanner to check for vulnerabilities on devices connected to my home network. Yes, I know there are other tools available (such as nmap) that can do this…


