remove c++ files
1958 files changed
tree: 395a44fd6c72b72df4bf86748c5bf47ed60d93cb
  1. _data/
  2. _drafts/
  3. _layouts/
  4. _posts/
  5. _sass/
  6. .gitignore
  7. .gitmodules
  8. .travis.yml
  9. _config.yml
  10. about.md
  11. favicon.ico
  12. Gemfile
  13. index.md
  14. README.md
README.md

What is this?

This is a jekyll based-blog. Jekyll is a ruby-based framework for generating blogs. You write posts in markdown and jekyll takes care of the html generation automaticall. Jekyll is endorsed by Github and many github pages sites are made with Jekyll. There's tons of tutorials around, so this README will only provide instructions for getting started with jekyll and the post-writing workflow.

Install Jekyll

You'll need:

  • ruby
  • gem package manager (gem -v)
gem install bundler
# installs all the dependencies of this project (including jekyll)
bundler update
jekyll -v

How to write a post

jekyll serve
# open your browser to localhost:4000, you should see the site

cp _posts/2016-12-10-December-Progress.markdown _posts/2017-01-01-NewYearsResolutions.markdown
vim _posts/2017-01-01-NewYearsResolutions.markdown

# any edits you make will immediately be picked up and updated in your browser session