Tag Archives: programming

Python Fake Data With Faker

Fake data can be invaluable for testing or demonstrating behaviour without using live, production data. This lets you protect your production data or help you get started when you don’t yet have a production system set up. This post gives an overview of the Python fake data package faker, which is invaluable for generating this… Read More »

Java Command Line Arguments

If you have used other languages, you will probably be familiar with the idea of passing arguments to a program via the command line. This post shows you how you can do it with java. In this post we’ll use a simple script to also take arguments from the command line. Read more about getting… Read More »

Simple Java Example

Java is a popular, general-purpose programming language for a range of tasks including web applications, games development and data analysis. Part of the appeal of Java is that it compiles to java byte code which can be run on any machine with the Java runtime environment installed. This means that developers only need to write… Read More »