https://github.com/rcook/blog-rcook-org
Richard Cook's blog
https://github.com/rcook/blog-rcook-org
haskell java programming programming-languages
Last synced: 4 months ago
JSON representation
Richard Cook's blog
- Host: GitHub
- URL: https://github.com/rcook/blog-rcook-org
- Owner: rcook
- License: other
- Created: 2014-12-18T23:46:48.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2026-03-03T21:56:27.000Z (4 months ago)
- Last Synced: 2026-03-04T01:41:46.835Z (4 months ago)
- Topics: haskell, java, programming, programming-languages
- Language: HTML
- Homepage: https://blog.rcook.org/
- Size: 8.24 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Richard's Blog
## Set up Bundler environment (Windows only)
```powershell
. env.ps1
```
## Preview locally
```bash
gem install bundler
bundle install
bundle exec rake preview
```
In order to rebuild the site quickly, this will only render the five most recent posts. To render all posts, set the `JEKYLL_ALL_POSTS` environment variable to `1`:
```bash
JEKYLL_ALL_POSTS=1 bundle exec rake preview
```
You can also set the number of posts to render by setting the `JEKYLL_LIMIT_POSTS` environment variable:
```bash
JEKYLL_LIMIT_POSTS=20 bundle exec rake preview
```
Run tests:
```bash
bundle exec rake test
```
## Acknowledgements
* [Noita][1]
* [Michael Lanyon's blog][2]
* [jekyll-rss-feeds][3]
## Licence
All content under `_posts` and `assets` is copyright Richard Cook and cannot be
reused without explicit permission. All other content is released under the MIT
licence and is copyright of its respective owners.
[1]: https://github.com/penibelst/jekyll-noita
[2]: http://blog.lanyonm.org/
[3]: https://github.com/snaptortoise/jekyll-rss-feeds/