Reddcoin Development blog

New development blog

In order to communicate better with our users we have created this developer blog. Here useful information on development will be shared as it is a bit more of a static medium than the development subreddit. We will keep using that subreddit to gather information and get discussions going though.


This blog is created using the excellent Jekyll system and hosted on Github Pages.

The basic setup was copied from Poole, the Jekyll butler. Because the basic layout is very minimalistic it allows the community to do what it does best: create a new design in line with the main Reddcoin website. I have intentionally not changed anything (except the favicon) to allow the creative juices to flow.

If you want to contribute to the blog you can do so in the following way:

  • Make sure ruby 1.9.3 or 2.0.0 is installed
ruby --version
  • If you install ruby gems in your user directory (I recommend it) and not system wide, add the bin dir to the path
echo export PATH="~/.gem/ruby/2.0.0/bin/:${PATH}" >> ~/.bashrc
source ~/.bashrc
  • clone the Github pages repository somewhere (or create your own fork and clone that)
git clone https://github.com/reddcoin-project/reddcoin-project.github.io
cd reddcoin-project.github.io/blog
  • install bundler
gem install bundler
  • install requirements
bundle install
  • update
bundle update
  • start a local copy
bundle exec jekyll serve

Now you are set! Just edit the pages as you see fit, check the Jekyll documentation and send us patches or create pull requests! Also if you feel something is worth sharing you can create your own blog post and send it to us for inclusion.