First!
They say starting is the hardest part. My initial idea for this blog is to post the things I learned during the day and the resources that helped me learn them.
Here is what I learned today:
You can host a blog on Github using Github Pages. There is a framework called Octopress to help make things easy. I followed the documentation for initial setup and launched this blog.
Deploying the changes for the blog can be done with the following steps:
Generate the blog with
rake generate
Deploy
rake deploy
Commit the source for the blog.
git add . git commit -m 'your message' git push origin source
You can preview changes to the blog before deploying using the following
rake preview