My Octopress Blog

A blogging framework for hackers.

How to Start Tech Blog With Octopress

I just type some commands below:

$ git clone git://github.com/imathis/octopress.git octopress
$ cd octopress
$ bundle install
$ bundle exec rake install
$ bundle exec rake setup_github_pages
$ bundle exec rake generate
$ git add .
$ git commit -a
$ bundle exec rake deploy

And, write a this file(source/_post/startup-octopress.mkd).

$ bundle exec rake gen_deploy

enjoy!

Lets Go to Ruby World

Let’s Start Ruby Programming!

Let’s write down like this:

1
2
3
4
#!/usr/bin/ruby
"Let's Start Ruby Programming!".split('').each do |s|
  puts "#{s}"
end