All future posts will be on my new posterous blog, jiaaro.com
Read about Music and tech on jiaaro.com $nbsp;
Check out my startup!
Rootbuzz: Hosted Q&A for businesses
Jiaaro.com
Posted on
Monday, September 27, 2010
FizzBuzz
Fizzbuzz seemed like fun... My 5 min attempt in python:
for i in range(1, 101):
fizz = "Fizz" if not (i%3) else ""
buzz = "Buzz" if not (i%5) else ""
print (fizz + buzz) or i
Posted on
Friday, June 11, 2010
Tags: fizzbuzz
Interesting stuff
This is just a short list of technologies I'd like to try out, or am trying out now. Basically just some links I want to remember =D
Serverside Javascript:
Weird Languages:
- for django... mongokit or mongoengine
- for javascript
Shorthand languages:
- CoffeeScript
- Shpaml
edit: I wrote a shpaml template loader for django. hooray! - Sass
It'll probably grow over time. I won't delete anything from the list though. I'll strikeout the ones I'm done with instead :)
Posted on
Wednesday, May 19, 2010
Subscribe to:
Posts (Atom)