Tools I use for this Blog
In this post I am going to share some of the tools I currently use to build the blog.
It took me quite a while to get started writing this blog, mainly because it is not hosted on Wordpress and I did not have a good set of tools to build it. If you are starting a blog and are not interested in all the development details I strongly suggest a Wordpress approach. It simplifies things a lot.
I aim to eventually build a lot more than just a blog so for me this was not going to work.
These are the tools I currently use:
-
My editor is Netbeans. This is really a java ide but it works as a brilliant html editor. It is also a top notch Java IDE also.
-
I host the site on aws in an S3 bucket. I found this a but awkward to configure so one day I will write a step by step post on how to put a website on an S3 bucket.
-
To generate the blog I use hugo. I love this, really I do. This just works and I recommend using this.
-
I write the blog in markdown. IF you are using hugo you will need to learn how to write in this format. It is very simple, you can find a good tutorial here markdowntutorial.
-
To transfer the files to aws I use s3browser this makes is easier to transfer the files and folders to the bucket.
-
To automate the blog generation process I use a [Luba Filewatcher](http://sourceforge.net/projects/luba-filewatcher/ Luba Filewatcher)
I configured this to watch the posts directory recursively. It then calls hugo to generate the blog. It would be nice to auto post the blog also but that can come later.