Some notable projects I have worked on, check out my github to see some of my other projects and what I am working on now.
Mb is as a micro blog server that aims to be small, fast and self contained. It is written in Golang with minimal dependencies and no Javascript. Designed to make the friction of making blog posts as low as posible.
; Printing the first 25 fibonacci numbers
(fun {fib n}
{if (<= n 1)
{n}
{+ (fib (- n 1)) (fib (- n 2))}
}
)
(fun {cal s e}
{if (<= e s)
{nil}
{do (print "fib" s ": " (fib s))
(cal (+ s 1) e)}
}
)
(cal 1 25)
Lzp is a small Lisp-like language fully written in C. I started this project to better understands Lisps and to learn the basic of the C programming language.
I have reverse engineered over 130 URL's of Co2 devices of my university. I am scraping this data to practise my data analysis skills. I am using a Python scraper in combination with a Golang webserver for visualization.