pseudoberries random thoughts about life, hacking and open source

11May/072

Game Over

Finally done with the game project this monday - has been one very tiresome week. Too bad it didn't get the chance to enter the Joskar ("Joscar") competiton - they didn't manage to run it and didn't let us know in time.

Anyhow, if you want to try it - http://folk.ntnu.no/johannj/papirgutt/papirgutt.jnlp. The sound might not work correctly on certain systems. It's in half-norwegian half-english but should be pretty straight forwards to understand :P

The concept is to deliver newspapers to all the houses on the map at the fastest possible time. Quite dull, I know (which is why I made map #3.) The physics simulation is quite good and makes it quite difficult to control the tricycle without tipping over (we had to use a tricycle because we didn't manage to balance a bicycle :D )

You ought to check out the games that made it to the top of Joskar though - they're quite impressive :)

Filed under: Java, Studies 2 Comments
10Jan/071

Welcome to the world of Java

Java
So finally (after half a year of JSP madness) they're teaching us a real programming language - Java (as part of my Object Oriented Programming class.) Although I'd rather sink my teeth into C# and Mono I think Java is a quite good alternative.

With Sun's plans to open source Java the future of Java is looking even more promising. So here goes my first Java program - the compulsory Hello World:

  1. class HelloWorld {
  2.     public static void main(String[] arg)
  3.     {
  4.         System.out.println("Hello world!");
  5.     }
  6. }

Exciting indeed...

Filed under: Java, Programming 1 Comment