Hello World on Octopress 3/Jekyl
Hi, I am Frank !
I live in cologne and work in a big company doing computer stuff in the following languages.
puts 'Hello World'# ruby
printfn "%S" "Hello World"// fsharp
write-host "Hello" # powershell
A lot of times I want to try out stuff from the internet, and did not find working examples.
In my computer engeneering career, my ability increases as I developed my personal information sysytem, where I can document what I was doing and have learned. So I am willing to share this with the word.
So right now, dear reader, I am setting up a blog,
Create Octopress Blog
Octopress 3 is not really published, but seems to be working.
# install ruby
ruby -v
# => ruby 2.1.5p273 (2014-11-13 revision 48405) [x86_64-darwin14.0]
gem install octopress
octopress new blog
cd blog
jekyll server
publish it to github.io
gem install octopress-deploy
octopress deploy init # and modify _deploy.yml
octopress build
octopress deploy
You need to have an account on github on create a [user].github.io
repo
The init
was not working for me so I did the initial setup manually.
* Create a deploy.yaml
and modify it according to
* Copy the _site
directory to .deploy
* link it to github
* Set alias alias op='octopress'
Here it is. bye for now
Frank