Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jvz/musigma.blog
A blog about programming.
https://github.com/jvz/musigma.blog
blog cryptography functional-programming java programming reactive scala security shell
Last synced: about 1 month ago
JSON representation
A blog about programming.
- Host: GitHub
- URL: https://github.com/jvz/musigma.blog
- Owner: jvz
- Created: 2013-10-03T21:24:50.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-08-02T01:44:21.000Z (4 months ago)
- Last Synced: 2024-10-04T09:53:31.868Z (about 1 month ago)
- Topics: blog, cryptography, functional-programming, java, programming, reactive, scala, security, shell
- Language: HTML
- Homepage: https://musigma.blog/
- Size: 282 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is the source code for my blog on [musigma.blog](https://musigma.blog/).
## Installation on macOS
0. Install rbenv: `brew install rbenv`
0. Enable rbenv: `eval "$(rbenv init -)"`
0. Install bundler and jekyll: `gem install bundler jekyll`
0. Test the site by executing: `bundle exec jekyll serve`## Installation on GNU/Linux
0. Install dependencies: `sudo pacman -Si ruby nodejs`
0. Install more dependencies: `gem install bundler jekyll && bundle install`
0. Test the site by executing: `bundle exec jekyll serve`## Deployment
0. Build site: `bundle exec jekyll build`
0. Deploy site: `tar -czf - -C _site . | ssh musigma.blog 'tar -xzf -'`