Strange Loops

No Matter Where You Go, There You Are

New Blog Redux

| Comments

Now playing around with Octopress for the new blog.

Previously I was using textile with jekyll. This one is generated by markdown with octopress. Builtin support for code snippets is way more impressive. More features! Less work!

Hello World in Python
1
print "Hello World"
Hello World in C
1
2
3
4
#include <stdio.h>
int main(void) {
    printf("Hello World\n");
}
Hello World in Java
1
2
3
4
5
public class Main {
    public static void main(String[] args) {
        System.out.println("Hello World");
    }
}

Comments