Archive for December, 2009

Top five reasons to get lost in a city

  1. To not care about where you are
  2. Force your self to meet new people (you’re not lost if you don’t need directions)
  3. Feel uneasy in the ghettos
  4. Find new places
  5. Find places to come back to

Power Rizers!

GO GO POWER RIZERS!

Yes that’s right, if you have seen any of my facebook or twitter messages you would know that I’m getting some super awesome Extreme Air Trekkers!  OMG I can not wait!

To pass the time I am going to update this post with the best videos that I can find of the jumping boots, they apear to be so dangerous I want to hurl with happiness!

Expect a full review as soon as I get them and I need something to do to idle away the hours in the hospital (I actually can’t wait to make an epic fail on these things!).

These are the boots i’m getting (click the picture for the website):

newextreme


Here are some videos of other people, until I get my own!

book-press

Old School Compression

This is how we used to zip up files in the old days.

book-press

Golden Ratio Explained

The Golden Ratio has always been a facination of mine, and this guy has a pretty good explanation (although obvious once stated and un-novel) of why it might exist.  Interesting read in the least:

Link

The basic gist of the article is that the brain processes information when presented in this Golden Ratio, therefore we think of it as being the most aesthetically pleasing.  Also this would explain why we have adapted to it, because it exists everywhere in nature.  This article is not so much on why the Golden Ratio appears, but why we like it so much.

JDOM Create DOM from File

I thought this was helpful, and I keep looking it up again and again.  Trick is, you need a sax builder, not really sure about what it is, just know how to use it :)

import java.io.File;
import java.io.IOException;
import org.jdom.Document;
import org.jdom.JDOMException;
import org.jdom.input.SAXBuilder;

public class SomeClass
{

    public SomeMethod ()
    {

        Document doc = null;

        SAXBuilder sb = new SAXBuilder();

        try {
            doc = sb.build(new File("/path/to/some/file.xml"));
        }
        catch (JDOMException e) {
            e.printStackTrace();
        }
        catch (IOException e) {
            e.printStackTrace();
        }
    }

}