This is the first post to populate my blog, which was built with Hugo. The blog is held together in an org-mode file and exported with ox-hugo, a backend that allows for exporting org files to a Hugo compatible markdown.

Presentation

I’m an avid Emacs user, it has been my main driver for around three years now. My init file can be found at this address, it’s a melting pot of programming and writing utilities.

As far as programming goes, I’ve been mainly using Python and Java but I like to dabble with Lisps and functional languages.

1
2
3
(defun hello ()
  (print "Hello Blog!"))
(hello)
Hello Blog!