A blog by G. Marty

Published on

The ideal blogging workflow

Authors
  • Guillaume C. Marty
    Name
    Guillaume C. Marty
  • Engineering manager, available for hire
    Power skill coach at Skiller Whale

Before even starting this blog, I took some time to think about what would be my ideal workflow for publishing new posts. I decided it should be:

  • Simple
  • Hosted for free
  • Editable from anywhere
  • and of course based on open source tools

Finding tools and solutions

I’m a lazy person and I find it very difficult to do things routinely. So, if I start a blog, I must make sure that nothing gets in my way. The writing/publishing process must be as easy as possible. It took me a while to love the simplicity of Markdown. But ever since I started working heavily with Github, I fell in love with its syntax. Markdown powers the simplicity I needed.

I admire the logic behind the static websites generators. They move the complexity of blogs from the server to your computer. The resulting blogs are incredible fast. We can then use Github as a web hosting platform for free! I choose Cabin because it is simple and I wanted to experiment with Jade templates.

The mobile aspect was important to me. I wanted to start or edit posts directly from my mobile, wherever I am, whenever I have time. Also I always use several browsers on different computers all the time, sometime on a bad connexion, if any at all. That’s why I needed something distributed and not dependent on network status. A few months ago I came upon StackEdit and was struck by its simplicity, beauty and powerfulness. It works on the browser, offline by default, can synchronise to many services (including Dropbox and Google Drive). The interface is split vertically with the original Markdown view on the left hand side next to the resulting formatted post, a UI pattern used by the blogging platform Ghost that received a lot of attention lately.

Putting it all together

A typical blog post starts like this. I launch a browser on the device available (laptop, mobile…), start StackEdit and open a new document. I’ve modified the default document to start with the metadata used by Cabin (Think of it as YAML front matter used by Jekyll, but in JSON):

{
  "title": "Title",
  "date": "2013-11-01",
  "description": "Description"
}

I edit these metadata, start writing my draft and save it to Google Drive. I guess I could publish it directly to the Github repo as a draft (prefixed by _), but I prefer to keep my drafts private until they are ready for publication. Then I can synchronise and edit the posts from whatever device is available.

When the post is ready, I publish it to my blog repo on Github, in the posts folder. The tricky part now is that I need to launch the terminal, navigate to the blog folder on my computer and type:

git pull && grunt deploy

The Grunt task deploy of Cabin is responsible for generating a static version and push it to the gh-pages branch of the repo.

That’s it.

Wrapping up

This blog is powered by:

  1. Stackedit
  2. Cabin
  3. Github
  4. Love

I really wish I were able to optimise the pull/deploy step and call it from any device, but I can’t really think of any free and easy alternative. Do you have any ideas? Use the comments box below and make my life easier :-)