Trolled

We convinced this American girl that our friend Zach doesn’t have any legs and that she’d really offended him. Tehe.

Trolled

Is It August?

Is It August?Some of you may have seen the following website:

http://www.isitaugust.com

I find that website intensely useful. As such, I thought – what if I’m on the move and have no internet connection on my phone? What happens then? Thus, the Android app was born.

Is It August? ScreenshotThe app informs you at a high speed how August it is, on a scale of No to Yes.

It’s available in the Android market for free. Go get it, and never lie awake wondering again.

Photostory 1.0 released!

We have released version 1.0 of Photostory! This version brings in a load of new features…

  • Delete button – You can now delete photos you don’t like! Sweet glorious day!
  • New database structure – we’ve done away with all the complex pickling. Files are now named according to date, meaning you can easily drop in photos you took at another computer. This means users of the old version will require an import script, though – it’s available here.
  • Countdown – a much-requested feature, the program now counts down from three before taking the picture. It’s rather sexy.
  • Reminders – Photostory will remind you on login that you haven’t taken a picture today, you lazy sod. It uses a notification bubble. Again, sexy.
  • File-choosing dialog for video creation. You can now also set the speed of the video in frames per second.
  • UI updated slightly.
  • A host of other bug fixes.

You want it, don’t you? Yes you do. Launchpad page here. Go wild.

Patterns with Python

You can use Python to create some interesting patterns and shapes. Try these out! Here’s one:

import time
 
val = 0.02
 
while 1:
    print "|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........\n"
    time.sleep(val)
    print ".|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|........\n"
    time.sleep(val)
    print "..|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|.......\n"
    time.sleep(val)
    print "...|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|......\n"
    time.sleep(val)
    print "....|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|.....\n"
    time.sleep(val)
    print ".....|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|....\n"
    time.sleep(val)
    print "......|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|...\n"
    time.sleep(val)
    print ".......|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|..\n"
    time.sleep(val)
    print "........|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|.\n"
    time.sleep(val)
    print ".........|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|\n"
    time.sleep(val)
    print "........|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|.\n"
    time.sleep(val)
    print ".......|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|..\n"
    time.sleep(val)
    print "......|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|...\n"
    time.sleep(val)
    print ".....|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|....\n"
    time.sleep(val)
    print "....|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|.....\n"
    time.sleep(val)
    print "...|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|......\n"
    time.sleep(val)
    print "..|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|.......\n"
    time.sleep(val)
    print ".|.........|.........|.........|.........|.........|.........|.........|.........|.........|.........|........\n"
    time.sleep(val)

And another:

import random
 
while 1:
    a = random.randint(0, 9)
    print a,

Yep, four lines. It looks kinda cool though:

Random numbers. Yeaaah.

Random numbers. Yeaaah.