Home

Welcome to RobotGoblin.
To check out my blog click here

Have a look at my downloads here to see some of my latest projects.

Quick and Simple UML Diagrams with yUML

Finding a decent UML modelling tool is pretty difficult, and they’re often quite heavyweight programs with a whole bunch of features. Sometimes you just want to quickly make a little UML diagram to explain a concept, or quickly create an image of a simple diagram you have on paper, and installing a huge piece of …

Read more

Calculating the Number of Divisors

Introduction Calculating the number of divisors for a number is a fairly simple task in programming, it can be achieved with the following simple code: const int number = 50; // The number for which to count the divisors of   int count = 1; for ( int i = 1; i <= number / …

Read more