Getting started with Jekyll

Install ruby Here I assume that you have brew already installed on your Mac machine. Install it first if you don’t have it. I had to do the following sudo xcode-select --install Install rbenv with brew install rbenv Add eval "$(rbenv init -)" to the end of ~/.zshrc or ~/.bash_profile Install a ruby version rbenv install 2.4.1 Select a ruby version by rbenv rbenv global 2.4.1 Open a new terminal window Verify that the right gem folder is being used with gem env home (should report something in your user folder not system wide) If you are on Windows then just install Ruby 2....

April 4, 2017

Host your personal blog on GitHub Pages

The initial idea was to write a small post about how to create a Jekyll blog hosted on GitHub. However, when I started to dig dipper and had realized how many things I’ll have to describe to make it a manual I’ve decided to make this index page which will collect all the posts about this topic. I will try to keep it up to date and make changes whenever I figure out more....

April 4, 2017

How to host Angular application on GitHub Pages

[Last update 04-04-2017] To install the command run the following: npm i -g angular-cli-ghpages Note: you have to create the dist folder in before (e.g. ng build --prod) ng build --prod --base-href "https://USERNAME.github.io/REPOSITORY/" ngh In case you use a custom domain for one of your repositories (like I do for this blog), you should use http instead ng build --prod --base-href "http://YOURDOMAIN.com/REPOSITORY/" ngh For more information check angular-cli-ghpages GitHub Page....

March 31, 2017