Scott Greenup

Holder of Coding Trinkets

Refreshing New Website

Published September 22, 2017
Posted by Scott Greenup

I decided to rewrite my website in Django. The previous iteration was written in Golang and use 0 libraries, with the goal to painstakingly implement every feature myself. However, I realised that I was wasting more time on developing the site rather than producing useful content, or working on other projects that are more interesting to me.

I've used Pygments (with this theme for the code) and Markdown2 to make blog posting simpler. There are still features to add, like comments and social media buttons.

But, now writing code examples is prettier!

#include <stdio.h>
int main(void) {
    printf("Hello, world!\n");
    return 0;
}