Skip to content

rchavarria/rchavarria.github.com

Repository files navigation

R. Chavarría's blog

Project to write a blog like a hacker

It's been migrated from Octopress to plain Jekyll, and it's using the Primer Jekyll theme.

TODOs

  • Add notes from articles, videos, and so on that are for years in gmail
  • Categories for posts:
    1. the post url should not include any category, just start with the date and title ✔️
    2. how could I create a link to show all posts within a single category, this way, I could create links to a single category in the archives.md page
  • Improve header UI
  • Improve footer UI, specially Libre Counter logo
  • ¿Quiero habilitar los comentarios con disquss?

DONEs

  • Migrate posts from Octopus to Jekyll
  • Navigation bar
  • Pages (about, reading list,...)
  • Header
  • Footer
  • Move posts from notes
  • RSS button, with link to /feed.xml file
  • Fix image links. It seems (/images/...) doesn't work. Review all posts from notes
  • Favicon
  • On the index page, show date instead of just numbers
  • Archives (copy from old blog)
  • Blog header must be same width that content
  • Add books from gmail
  • Run blog locally with docker compose
  • Add affiliate links to book reviews
  • Merge PWA course
  • PUBLISH

Run Jekyll locally with docker

Install ruby bundles:

docker run \
  -v .:/srv/jekyll \
  -v ./vendor/bundle:/usr/local/bundle \
  --name local-jekyll \
  jekyll/jekyll \
  bundle install

Run with docker compose:

cd docker
docker-compose up &

Help