Creating thinkingoutcode.com
This site is motivated by selfish reasons. It is a forcing function for myself to write some guides or my experiences on topics related to programming. As a fortunate side effect, some of the material may prove useful to some. Since I already was paying for a webhost which sat unused, I started followed their instructions for setting up a Wordpress based blog. I immediately felt this was too heavyweight for my needs, and since I have some experience keeping notes in Markdown format, I came across Jekyll. A tool that builds static webpages from markdown.
Setting up GitHub Pages
To get this far (with some experimentation) I did the following steps.
- Create a new GitHub account
- Create a github repo in the format tocadmin.github.io
- Pull down the github repo
Setting up Jekyll
- Follow Jekyll setup instructions in the project folder (using
jekyll new . --force)
since the folder already exists - Run
git add .
,git commit -m 'Jekyll commit'
andgit push
to upload the website to GitHub - Edit
_config.yml
file with custom information - Copy the default post in the
_posts
folder, edit it to match what I want, rename it, and delete the original git commit -am 'First post'
andgit push