1
Fork 0

Merge pull request #4 from epage/fix

fix: Use of undefined variables
This commit is contained in:
Jan-Erik Rediger 2018-01-03 12:18:29 +01:00 committed by GitHub
commit 4d7f6dbc4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
88 changed files with 87 additions and 1 deletions

View file

@ -10,7 +10,6 @@
<main> <main>
<article> <article>
<h1>{{ title }}</h1> <h1>{{ title }}</h1>
<time pubdate="pubdate">{{ date | date: "%b %d, %Y" }}</time><br />
{{ content }} {{ content }}
</article> </article>

View file

@ -1,6 +1,7 @@
title: blog? static! title: blog? static!
date: 15 Jan 2011 15:54:00 +0100 date: 15 Jan 2011 15:54:00 +0100
path: /:year/:month/:day/blog-static path: /:year/:month/:day/blog-static
route: blog
--- ---
static blog with just one file ;) static blog with just one file ;)

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: fnord? title: fnord?
date: 15 Jan 2011 01:34:00 +0100 date: 15 Jan 2011 01:34:00 +0100
path: /:year/:month/:day/fnord path: /:year/:month/:day/fnord
route: blog
--- ---
fnordig? WTF ist fnord? [Fnord](http://de.wikipedia.org/wiki/Fnord) fnordig? WTF ist fnord? [Fnord](http://de.wikipedia.org/wiki/Fnord)

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: fnordig is up and running title: fnordig is up and running
date: 15 Jan 2011 00:04:00 +0100 date: 15 Jan 2011 00:04:00 +0100
path: /:year/:month/:day/fnordig-is-up-and-running path: /:year/:month/:day/fnordig-is-up-and-running
route: blog
--- ---
fnordig is up and running! fnordig is up and running!

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: error pages title: error pages
date: 20 Jan 2011 00:00:00 +0100 date: 20 Jan 2011 00:00:00 +0100
path: /:year/:month/:day/error-pages path: /:year/:month/:day/error-pages
route: blog
--- ---
I just added more "fnordig-like" error pages I just added more "fnordig-like" error pages

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: sshuttle - poor man's vpn title: sshuttle - poor man's vpn
date: 22 Jan 2011 00:00:00 +0100 date: 22 Jan 2011 00:00:00 +0100
path: /:year/:month/:day/poor-mans-vpn path: /:year/:month/:day/poor-mans-vpn
route: blog
--- ---

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: static blog system runs! title: static blog system runs!
date: 22 Jan 2011 00:00:00 +0100 date: 22 Jan 2011 00:00:00 +0100
path: /:year/:month/:day/static-blog-system-runs path: /:year/:month/:day/static-blog-system-runs
route: blog
--- ---
my small and simple blog system works! my small and simple blog system works!

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: static blog system improved title: static blog system improved
date: 23 Jan 2011 00:00:00 +0100 date: 23 Jan 2011 00:00:00 +0100
path: /:year/:month/:day/static-blog-system-improved path: /:year/:month/:day/static-blog-system-improved
route: blog
--- ---
My static blog system script now launches a small web server and auto-updates on a file change. This way you've got a live preview directly in your browser. My static blog system script now launches a small web server and auto-updates on a file change. This way you've got a live preview directly in your browser.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: IPv6 with NodeJS title: IPv6 with NodeJS
date: 26 Jan 2011 00:00:00 +0100 date: 26 Jan 2011 00:00:00 +0100
path: /:year/:month/:day/ipv6-with-nodejs path: /:year/:month/:day/ipv6-with-nodejs
route: blog
--- ---
As there are just a few new ipv4 address left in the pool and even those will be [exhausted in under a week](http://inetcore.com/project/ipv4ec/index_en.html) (6 days left, checked right now) the switch to [IPv6](http://en.wikipedia.org/wiki/Ipv6) will be necessary soon. As there are just a few new ipv4 address left in the pool and even those will be [exhausted in under a week](http://inetcore.com/project/ipv4ec/index_en.html) (6 days left, checked right now) the switch to [IPv6](http://en.wikipedia.org/wiki/Ipv6) will be necessary soon.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Blog running on jekyll again title: Blog running on jekyll again
date: 25 Aug 2011 00:00:00 +0100 date: 25 Aug 2011 00:00:00 +0100
path: /:year/:month/:day/blog-running-with-jekyll path: /:year/:month/:day/blog-running-with-jekyll
route: blog
--- ---
I decided to setup a blog again. And again I'll use [jekyll][], a `blog-aware, static site generator in Ruby`. I decided to setup a blog again. And again I'll use [jekyll][], a `blog-aware, static site generator in Ruby`.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Compile nginx title: Compile nginx
date: 02 Sep 2011 00:00:00 +0100 date: 02 Sep 2011 00:00:00 +0100
path: /:year/:month/:day/compile-nginx path: /:year/:month/:day/compile-nginx
route: blog
--- ---
I'm using [nginx][] as my main webserver and proxy for all my other projects (let it be node.js or ruby things). I'm using [nginx][] as my main webserver and proxy for all my other projects (let it be node.js or ruby things).

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: now with code higlighting title: now with code higlighting
date: 02 Sep 2011 00:00:00 +0100 date: 02 Sep 2011 00:00:00 +0100
path: /:year/:month/:day/kramdown-test path: /:year/:month/:day/kramdown-test
route: blog
--- ---
I am a programmer and I like to write code and I like to talk about code. That's why this blog really needs some syntax highlighting for my favorite languages. I am a programmer and I like to write code and I like to talk about code. That's why this blog really needs some syntax highlighting for my favorite languages.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: running on ssl title: running on ssl
date: 08 Sep 2011 00:31:00 +0200 date: 08 Sep 2011 00:31:00 +0200
path: /:year/:month/:day/running-on-ssl path: /:year/:month/:day/running-on-ssl
route: blog
--- ---
Even though the [SSL][] and [CA][] system is totally broken right now, I finally got my blog as well as my [etherpad][] served over SSL: Even though the [SSL][] and [CA][] system is totally broken right now, I finally got my blog as well as my [etherpad][] served over SSL:

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: running etherpad-lite on nginx title: running etherpad-lite on nginx
date: 27 Sep 2011 21:24:00 +0200 date: 27 Sep 2011 21:24:00 +0200
path: /:year/:month/:day/running-etherpad-lite-on-nginx path: /:year/:month/:day/running-etherpad-lite-on-nginx
route: blog
--- ---
As you should already know if you read this blog, I am using [nginx][] as my main http server as well as a reverse proxy for my apps running on node.js or simple ruby. As you should already know if you read this blog, I am using [nginx][] as my main http server as well as a reverse proxy for my apps running on node.js or simple ruby.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: fast and simple proxy server title: fast and simple proxy server
date: 02 Oct 2011 01:27:00 +0200 date: 02 Oct 2011 01:27:00 +0200
path: /:year/:month/:day/fast-and-simple-proxy-server path: /:year/:month/:day/fast-and-simple-proxy-server
route: blog
--- ---
So you have this friend sitting somewhere else in the world and want to give him a simple proxy to access a geoip-protected site or something similar. But what tool to use? So you have this friend sitting somewhere else in the world and want to give him a simple proxy to access a geoip-protected site or something similar. But what tool to use?

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: using ipv6 with inetd title: using ipv6 with inetd
date: 18 Oct 2011 10:58:00 +0200 date: 18 Oct 2011 10:58:00 +0200
path: /:year/:month/:day/using-ipvwith-inetd path: /:year/:month/:day/using-ipvwith-inetd
route: blog
--- ---
I am the administrator of the [ctdo][] own jabber server over at `jabber.ctdo.de`. I am the administrator of the [ctdo][] own jabber server over at `jabber.ctdo.de`.
It is currently running on the old but working [jabberd][] and also hosts a [bitlbee] server on several ports including ssl-protected ones. It is currently running on the old but working [jabberd][] and also hosts a [bitlbee] server on several ports including ssl-protected ones.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: network config without ifconfig title: network config without ifconfig
date: 25 Dec 2011 14:52:00 +0100 date: 25 Dec 2011 14:52:00 +0100
path: /:year/:month/:day/network-config-without-ifconfig path: /:year/:month/:day/network-config-without-ifconfig
route: blog
--- ---
[ifconfig](http://linux.die.net/man/8/ifconfig) is more or less deprecated and replaced by [ip](http://linux.die.net/man/8/ip), which has a different syntax. [ifconfig](http://linux.die.net/man/8/ifconfig) is more or less deprecated and replaced by [ip](http://linux.die.net/man/8/ip), which has a different syntax.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: send your docs to your kindle title: send your docs to your kindle
date: 25 Dec 2011 15:01:00 +0100 date: 25 Dec 2011 15:01:00 +0100
path: /:year/:month/:day/send-your-docs-to-your-kindle path: /:year/:month/:day/send-your-docs-to-your-kindle
route: blog
--- ---
I got a new [Kindle 4](http://www.amazon.de/Kindle-eReader-Wi-Fi-Display-deutsches/dp/B0051QVF7A/ref=amb_link_162551127_2?pf_rd_m=A3JWKAKR8XB7XF&pf_rd_s=center-1&pf_rd_r=17K3DH24R9MPM5BFJJQ2&pf_rd_t=101&pf_rd_p=270263907&pf_rd_i=301128) for Christmas. I got a new [Kindle 4](http://www.amazon.de/Kindle-eReader-Wi-Fi-Display-deutsches/dp/B0051QVF7A/ref=amb_link_162551127_2?pf_rd_m=A3JWKAKR8XB7XF&pf_rd_s=center-1&pf_rd_r=17K3DH24R9MPM5BFJJQ2&pf_rd_t=101&pf_rd_p=270263907&pf_rd_i=301128) for Christmas.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: swap in double-linked lists title: swap in double-linked lists
date: 07 May 2012 22:22:00 +0200 date: 07 May 2012 22:22:00 +0200
path: /:year/:month/:day/swap-in-double-linked-lists path: /:year/:month/:day/swap-in-double-linked-lists
route: blog
--- ---
Yesterday I had to implement [Selection Sort](http://en.wikipedia.org/wiki/Selection_sort) Yesterday I had to implement [Selection Sort](http://en.wikipedia.org/wiki/Selection_sort)

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: my instapaper stats title: my instapaper stats
date: 08 May 2012 11:33:00 +0200 date: 08 May 2012 11:33:00 +0200
path: /:year/:month/:day/my-instapaper-stats path: /:year/:month/:day/my-instapaper-stats
route: blog
--- ---
I am an actively user of the great [Instapaper](http://www.instapaper.com/) I am an actively user of the great [Instapaper](http://www.instapaper.com/)

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: instapaper-stats is online title: instapaper-stats is online
date: 12 May 2012 17:13:00 +0200 date: 12 May 2012 17:13:00 +0200
path: /:year/:month/:day/instapaper-stats-is-online path: /:year/:month/:day/instapaper-stats-is-online
route: blog
--- ---
I mentioned the script I'm using for my instapaper stats [here](http://fnordig.de/2012/05/08/my-instapaper-stats/). I mentioned the script I'm using for my instapaper stats [here](http://fnordig.de/2012/05/08/my-instapaper-stats/).

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Raspberry Pi - A guick guide to a successful start title: Raspberry Pi - A guick guide to a successful start
date: 05 Jul 2012 00:27:00 +0200 date: 05 Jul 2012 00:27:00 +0200
path: /:year/:month/:day/raspberry-pia-guick-guide-to-a-successfull-start path: /:year/:month/:day/raspberry-pia-guick-guide-to-a-successfull-start
route: blog
--- ---
Today my [Raspberry Pi][pi] arrived and I quickly got it up and running. Today my [Raspberry Pi][pi] arrived and I quickly got it up and running.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Raspberry Pi - Day 2 title: Raspberry Pi - Day 2
date: 06 Jul 2012 13:20:00 +0200 date: 06 Jul 2012 13:20:00 +0200
path: /:year/:month/:day/raspberry-pi-day-two path: /:year/:month/:day/raspberry-pi-day-two
route: blog
--- ---
[Yesterday night](http://fnordig.de/2012/07/05/raspberry-pia-guick-guide-to-a-successfull-start/) [Yesterday night](http://fnordig.de/2012/07/05/raspberry-pia-guick-guide-to-a-successfull-start/)

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Getting IPv6 working with SmartOS and KVM title: Getting IPv6 working with SmartOS and KVM
date: 16 Sep 2012 01:13:00 +0200 date: 16 Sep 2012 01:13:00 +0200
path: /:year/:month/:day/getting-ipvworking-with-smartos-and-kvm path: /:year/:month/:day/getting-ipvworking-with-smartos-and-kvm
route: blog
--- ---
Just about 2 weeks ago I started to play around with [SmartOS][]. Just about 2 weeks ago I started to play around with [SmartOS][].

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: BadBill - a Billomat API client title: BadBill - a Billomat API client
date: 21 Sep 2012 12:58:00 +0200 date: 21 Sep 2012 12:58:00 +0200
path: /:year/:month/:day/badbilla-billomat-api-client path: /:year/:month/:day/badbilla-billomat-api-client
route: blog
--- ---
I'm happy to announce the release of my Billomat API client: I'm happy to announce the release of my Billomat API client:

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Getting try.redis-db.com back online! title: Getting try.redis-db.com back online!
date: 13 Dec 2012 22:43:00 +0100 date: 13 Dec 2012 22:43:00 +0100
path: /:year/:month/:day/getting-try-redis-db-com-back-online path: /:year/:month/:day/getting-try-redis-db-com-back-online
route: blog
--- ---
Hi there, Hi there,

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: fnord news show 2012 title: fnord news show 2012
date: 30 Dec 2012 14:20:00 +0100 date: 30 Dec 2012 14:20:00 +0100
path: /:year/:month/:day/fnord-news-show path: /:year/:month/:day/fnord-news-show
route: blog
--- ---
I'm at the [29c3][] right now and guess what happened here? Right, the [fnord news show][] happened. I'm at the [29c3][] right now and guess what happened here? Right, the [fnord news show][] happened.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: 2.9-C/3 - N.O-T/MY-D/E.PA/R.T-ME-N/T. title: 2.9-C/3 - N.O-T/MY-D/E.PA/R.T-ME-N/T.
date: 04 Jan 2013 23:09:00 +0100 date: 04 Jan 2013 23:09:00 +0100
path: /:year/:month/:day/29c3-or-my-first-congress path: /:year/:month/:day/29c3-or-my-first-congress
route: blog
--- ---
I was at the [29c3][wiki] <del>this</del> last year and it was great. I was at the [29c3][wiki] <del>this</del> last year and it was great.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: try.redis.io is online title: try.redis.io is online
date: 10 Jan 2013 21:02:00 +0100 date: 10 Jan 2013 21:02:00 +0100
path: /:year/:month/:day/try-redis-io-is-online path: /:year/:month/:day/try-redis-io-is-online
route: blog
--- ---
Finally: Finally:

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Problems after disconnecting LUKS device title: Problems after disconnecting LUKS device
date: 14 Jan 2013 23:28:00 +0100 date: 14 Jan 2013 23:28:00 +0100
path: /:year/:month/:day/problems-after-disconnecting-luks-device path: /:year/:month/:day/problems-after-disconnecting-luks-device
route: blog
--- ---
Yesterday I got my 2TB backup disk. I formatted it and then used [LUKS][] to encrypt it and [LVM][] for the Volume Management. Yesterday I got my 2TB backup disk. I formatted it and then used [LUKS][] to encrypt it and [LVM][] for the Volume Management.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: irregular backups with rsnapshot (and rsnapshot_ii) title: irregular backups with rsnapshot (and rsnapshot_ii)
date: 22 Jan 2013 19:08:00 +0100 date: 22 Jan 2013 19:08:00 +0100
path: /:year/:month/:day/irregular-backups-with-rsnapshotand-rsnapshot-ii path: /:year/:month/:day/irregular-backups-with-rsnapshotand-rsnapshot-ii
route: blog
--- ---
As stated in the last post I bought a big 2TB HDD for backups. My only As stated in the last post I bought a big 2TB HDD for backups. My only

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: git merge 2013 title: git merge 2013
date: 11 May 2013 18:20:00 +0200 date: 11 May 2013 18:20:00 +0200
path: /:year/:month/:day/git-merge path: /:year/:month/:day/git-merge
route: blog
--- ---
Friday and Saturday I attended [gitmerge][homepage], a free Git user conference Friday and Saturday I attended [gitmerge][homepage], a free Git user conference

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Iterate the keyspace in redis: SCAN" title: "Iterate the keyspace in redis: SCAN"
date: 01 Nov 2013 18:40:00 +0100 date: 01 Nov 2013 18:40:00 +0100
path: /:year/:month/:day/iterate-the-keyspace-in-redis-scan path: /:year/:month/:day/iterate-the-keyspace-in-redis-scan
route: blog
--- ---
A few days ago antirez finally [merged][pr] the SCAN algorithm written by A few days ago antirez finally [merged][pr] the SCAN algorithm written by

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Run server-side git hook when there are no updates title: Run server-side git hook when there are no updates
date: 02 Nov 2013 10:14:00 +0100 date: 02 Nov 2013 10:14:00 +0100
path: /:year/:month/:day/run-server-side-git-hook-when-there-are-no-updates path: /:year/:month/:day/run-server-side-git-hook-when-there-are-no-updates
route: blog
--- ---
I make heavy use of of [hooks in git][git-hooks], especially post-receive, to I make heavy use of of [hooks in git][git-hooks], especially post-receive, to

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Unicode codepoints in ruby title: Unicode codepoints in ruby
date: 06 Nov 2013 12:04:00 +0100 date: 06 Nov 2013 12:04:00 +0100
path: /:year/:month/:day/unicode-codepoints-in-ruby path: /:year/:month/:day/unicode-codepoints-in-ruby
route: blog
--- ---
Another post of the category "better write it down before you forget it". Another post of the category "better write it down before you forget it".

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Redis FAQ or: what you learn when idling in #redis" title: "Redis FAQ or: what you learn when idling in #redis"
date: 10 Nov 2013 21:10:00 +0100 date: 10 Nov 2013 21:10:00 +0100
path: /:year/:month/:day/redis-faq-or-what-you-learn-when-idling-in-redis path: /:year/:month/:day/redis-faq-or-what-you-learn-when-idling-in-redis
route: blog
--- ---
Sometime ago I created the [redis-faq][], a small list of common or not so Sometime ago I created the [redis-faq][], a small list of common or not so

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: 30C3 title: 30C3
date: 01 Jan 2014 23:42:00 +0100 date: 01 Jan 2014 23:42:00 +0100
path: /:year/:month/:day/30c3 path: /:year/:month/:day/30c3
route: blog
--- ---
At the end of last year I was once again in Hamburg, this year for the [30th Chaos Communication Congress](https://events.ccc.de/congress/2013/wiki/Main_Page). At the end of last year I was once again in Hamburg, this year for the [30th Chaos Communication Congress](https://events.ccc.de/congress/2013/wiki/Main_Page).

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Fixing a Vagrant "hostonlyif" error title: Fixing a Vagrant "hostonlyif" error
date: 20 Jan 2014 13:24:00 +0100 date: 20 Jan 2014 13:24:00 +0100
path: /:year/:month/:day/fixing-a-vagrant-hostonlyif-error path: /:year/:month/:day/fixing-a-vagrant-hostonlyif-error
route: blog
--- ---
------ ------

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Multiple slides on one side in one pdf title: Multiple slides on one side in one pdf
date: 19 Feb 2014 18:33:00 +0100 date: 19 Feb 2014 18:33:00 +0100
path: /:year/:month/:day/multiple-slides-on-one-side-in-one-pdf path: /:year/:month/:day/multiple-slides-on-one-side-in-one-pdf
route: blog
--- ---
Ever had multiple slide sets, e.g. from a lecture, and you needed an overview to print out? Ever had multiple slide sets, e.g. from a lecture, and you needed an overview to print out?

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Samsung Chromebook - a short review title: Samsung Chromebook - a short review
date: 03 Mar 2014 15:18:00 +0100 date: 03 Mar 2014 15:18:00 +0100
path: /:year/:month/:day/samsung-chromebook-a-short-review path: /:year/:month/:day/samsung-chromebook-a-short-review
route: blog
--- ---
One week ago I purchased a Chromebook. To be exact I purchased the Samsung One week ago I purchased a Chromebook. To be exact I purchased the Samsung

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Don't set an empty root password on Chrome OS title: Don't set an empty root password on Chrome OS
date: 04 Mar 2014 16:41:00 +0100 date: 04 Mar 2014 16:41:00 +0100
path: /:year/:month/:day/don-t-set-an-empty-root-password-on-chrome-os path: /:year/:month/:day/don-t-set-an-empty-root-password-on-chrome-os
route: blog
--- ---
So I got this [Chromebook][chromebook-post] in Developer Mode and wanted to set So I got this [Chromebook][chromebook-post] in Developer Mode and wanted to set

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Redis Cluster with pre-existing data title: Redis Cluster with pre-existing data
date: 11 Mar 2014 17:05:00 +0100 date: 11 Mar 2014 17:05:00 +0100
path: /:year/:month/:day/redis-cluster-with-pre-existing-data path: /:year/:month/:day/redis-cluster-with-pre-existing-data
route: blog
--- ---
With Beta 2 of Redis Cluster <del>arriving soon</del> [released just now][cluster-beta2], I finally found some time to play around with it. With Beta 2 of Redis Cluster <del>arriving soon</del> [released just now][cluster-beta2], I finally found some time to play around with it.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Fixing zfs pool error in zones/dump title: Fixing zfs pool error in zones/dump
date: 17 Mar 2014 14:08:00 +0100 date: 17 Mar 2014 14:08:00 +0100
path: /:year/:month/:day/fixing-zfs-pool-error-in-zones-dump path: /:year/:month/:day/fixing-zfs-pool-error-in-zones-dump
route: blog
--- ---
At work we're using [SmartOS][], an Open Solaris clone featuring all kinds of cool stuff. One of the best things is the underlying file system: ZFS. At work we're using [SmartOS][], an Open Solaris clone featuring all kinds of cool stuff. One of the best things is the underlying file system: ZFS.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: OpenTechSchool - Learn new things title: OpenTechSchool - Learn new things
date: 01 Apr 2014 23:05:00 +0200 date: 01 Apr 2014 23:05:00 +0200
path: /:year/:month/:day/opentechschool-learn-new-things path: /:year/:month/:day/opentechschool-learn-new-things
route: blog
--- ---
Last weekend (29./30.03.) I coached beginners some HTML & CSS. This is about my experience. Last weekend (29./30.03.) I coached beginners some HTML & CSS. This is about my experience.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Changing the root password in recent SmartOS title: Changing the root password in recent SmartOS
date: 12 May 2014 22:02:00 +0200 date: 12 May 2014 22:02:00 +0200
path: /:year/:month/:day/changing-the-root-password-in-recent-smartos path: /:year/:month/:day/changing-the-root-password-in-recent-smartos
route: blog
--- ---
Back in 2012 Jonathan Perkin wrote a little bit about [SmartOS and the global zone][perkin], Back in 2012 Jonathan Perkin wrote a little bit about [SmartOS and the global zone][perkin],

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: key=value logs with nginx title: key=value logs with nginx
date: 15 Apr 2014 18:24:00 +0200 date: 15 Apr 2014 18:24:00 +0200
path: /:year/:month/:day/key-value-logs-with-nginx path: /:year/:month/:day/key-value-logs-with-nginx
route: blog
--- ---
In [Six Ways to Make Your Production Logs More Useful][fun-with-logs] [@roidrage][] talked about how to make your logs much more useful. In [Six Ways to Make Your Production Logs More Useful][fun-with-logs] [@roidrage][] talked about how to make your logs much more useful.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: OpenTechSchool - Javascript for Beginners title: OpenTechSchool - Javascript for Beginners
date: 26 May 2014 15:15:00 +0200 date: 26 May 2014 15:15:00 +0200
path: /:year/:month/:day/opentechschooljavascript-for-beginners path: /:year/:month/:day/opentechschooljavascript-for-beginners
route: blog
--- ---
2 month ago I coached at OpenTechSchool's [HTML & CSS for Absolute Beginners][htmlfab] workshop. 2 month ago I coached at OpenTechSchool's [HTML & CSS for Absolute Beginners][htmlfab] workshop.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Extending Redis with Lua packages title: Extending Redis with Lua packages
date: 27 Jul 2014 13:57:00 +0200 date: 27 Jul 2014 13:57:00 +0200
path: /:year/:month/:day/extending-redis-with-lua-packages path: /:year/:month/:day/extending-redis-with-lua-packages
route: blog
--- ---
**Warning**: If you patch your Redis as stated below, you won't get much support from the Community. **Warning**: If you patch your Redis as stated below, you won't get much support from the Community.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: eurucamp 2014 title: eurucamp 2014
date: 04 Aug 2014 14:15:00 +0200 date: 04 Aug 2014 14:15:00 +0200
path: /:year/:month/:day/eurucamp-2014 path: /:year/:month/:day/eurucamp-2014
route: blog
--- ---
<span style="float:right;margin-left:10px;width:250px;"> <span style="float:right;margin-left:10px;width:250px;">

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: eurucamp 2014 - Video & Photos title: eurucamp 2014 - Video & Photos
date: 09 Aug 2014 13:06:00 +0200 date: 09 Aug 2014 13:06:00 +0200
path: /:year/:month/:day/eurucamp-2014-video-and-photos path: /:year/:month/:day/eurucamp-2014-video-and-photos
route: blog
--- ---
Great short video documentation of eurucamp 2014 (by [@polarblau](https://twitter.com/polarblau)): Great short video documentation of eurucamp 2014 (by [@polarblau](https://twitter.com/polarblau)):

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: first experience with Rust title: first experience with Rust
date: 12 Aug 2014 13:25:00 +0200 date: 12 Aug 2014 13:25:00 +0200
path: /:year/:month/:day/first-experience-with-rust path: /:year/:month/:day/first-experience-with-rust
route: blog
--- ---
------ ------

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: jsfest week 2014 title: jsfest week 2014
date: 18 Sep 2014 01:39:00 +0200 date: 18 Sep 2014 01:39:00 +0200
path: /:year/:month/:day/jsfest-week-2014 path: /:year/:month/:day/jsfest-week-2014
route: blog
--- ---
<span style="float:right;margin-left:10px;width:350px;"> <span style="float:right;margin-left:10px;width:350px;">

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: A Rust library for LibLZF title: A Rust library for LibLZF
date: 15 Oct 2014 11:10:00 +0200 date: 15 Oct 2014 11:10:00 +0200
path: /:year/:month/:day/a-rust-library-for-liblzf path: /:year/:month/:day/a-rust-library-for-liblzf
route: blog
--- ---
In the last four months I did not produce much open-source code. I was busy writing my Bachelor Thesis. In the last four months I did not produce much open-source code. I was busy writing my Bachelor Thesis.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Review: Redis Applied Design Patterns" title: "Review: Redis Applied Design Patterns"
date: 11 Nov 2014 00:41:00 +0100 date: 11 Nov 2014 00:41:00 +0100
path: /:year/:month/:day/review-redis-applied-design-patterns path: /:year/:month/:day/review-redis-applied-design-patterns
route: blog
--- ---
In the mid of October I was approached by Packt Publishing asking if In the mid of October I was approached by Packt Publishing asking if

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: How to not write a Bachelor Thesis title: How to not write a Bachelor Thesis
date: 15 Nov 2014 03:18:00 +0100 date: 15 Nov 2014 03:18:00 +0100
path: /:year/:month/:day/how-to-not-write-a-bachelor-thesis path: /:year/:month/:day/how-to-not-write-a-bachelor-thesis
route: blog
--- ---
<span style="float:right;margin-left:10px;width:350px;"> <span style="float:right;margin-left:10px;width:350px;">

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "The story of my childhood or: Rust on the PSP" title: "The story of my childhood or: Rust on the PSP"
date: 03 Dec 2014 20:03:00 +0100 date: 03 Dec 2014 20:03:00 +0100
path: /:year/:month/:day/a-story-of-hacking-or-rust-on-the-psp path: /:year/:month/:day/a-story-of-hacking-or-rust-on-the-psp
route: blog
--- ---
------ ------

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: 2014 in many words title: 2014 in many words
date: 29 Dec 2014 15:00:00 +0100 date: 29 Dec 2014 15:00:00 +0100
path: /:year/:month/:day/2014-in-many-words path: /:year/:month/:day/2014-in-many-words
route: blog
--- ---
### My year in numbers ### My year in numbers

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: rdb-rs - fast and efficient RDB parsing utility title: rdb-rs - fast and efficient RDB parsing utility
date: 15 Jan 2015 23:50:00 +0100 date: 15 Jan 2015 23:50:00 +0100
path: /:year/:month/:day/rdb-rs-fast-and-efficient-rdb-parsing-utility path: /:year/:month/:day/rdb-rs-fast-and-efficient-rdb-parsing-utility
route: blog
--- ---
Ever since I started looking into [Rust][] I knew I needed a bigger project for which I could use it. Ever since I started looking into [Rust][] I knew I needed a bigger project for which I could use it.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: hiredis is up to date title: hiredis is up to date
date: 09 Feb 2015 20:20:00 +0100 date: 09 Feb 2015 20:20:00 +0100
path: /:year/:month/:day/hiredis-is-up-to-date path: /:year/:month/:day/hiredis-is-up-to-date
route: blog
--- ---
Back in December 2014 antirez reached out to the community, to [find a new maintainer of hiredis](https://github.com/redis/hiredis/issues/283). Back in December 2014 antirez reached out to the community, to [find a new maintainer of hiredis](https://github.com/redis/hiredis/issues/283).

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "The difference of Rust's thread::spawn and thread::scoped" title: "The difference of Rust's thread::spawn and thread::scoped"
date: 05 Mar 2015 14:41:00 +0100 date: 05 Mar 2015 14:41:00 +0100
path: /:year/:month/:day/the-difference-of-rust-s-spawn-and-scoped path: /:year/:month/:day/the-difference-of-rust-s-spawn-and-scoped
route: blog
--- ---
So yesterday I gave a Rust introduction talk at the local hackerspace, [CCCAC](http://ccc.ac). So yesterday I gave a Rust introduction talk at the local hackerspace, [CCCAC](http://ccc.ac).

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: U2F demo application title: U2F demo application
date: 06 Mar 2015 16:07:00 +0100 date: 06 Mar 2015 16:07:00 +0100
path: /:year/:month/:day/u2f-demo-application path: /:year/:month/:day/u2f-demo-application
route: blog
--- ---
Two weeks ago I got my first Universal Second Factor Device. Two weeks ago I got my first Universal Second Factor Device.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "New releases of hiredis-py and hiredis-node" title: "New releases of hiredis-py and hiredis-node"
date: 03 Apr 2015 23:05:00 +0200 date: 03 Apr 2015 23:05:00 +0200
path: /:year/:month/:day/new-releases-of-hiredis-py-and-node path: /:year/:month/:day/new-releases-of-hiredis-py-and-node
route: blog
--- ---
I just published [hiredis-py][] v0.2.0 to [PyPi][] and [hiredis-node][] v0.3.0 to [npm][]. I just published [hiredis-py][] v0.2.0 to [PyPi][] and [hiredis-node][] v0.3.0 to [npm][].

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Using a Kindle for status information title: Using a Kindle for status information
date: 14 May 2015 20:50:00 +0200 date: 14 May 2015 20:50:00 +0200
path: /:year/:month/:day/using-a-kindle-for-status-information path: /:year/:month/:day/using-a-kindle-for-status-information
route: blog
--- ---
Back in 2011 I got a Kindle 4 (the non-touch version) and for some time it was Back in 2011 I got a Kindle 4 (the non-touch version) and for some time it was

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Redis Sentinel & Redis Cluster - what?" title: "Redis Sentinel & Redis Cluster - what?"
date: 01 Jun 2015 23:20:00 +0200 date: 01 Jun 2015 23:20:00 +0200
path: /:year/:month/:day/redis-sentinel-and-redis-cluster path: /:year/:month/:day/redis-sentinel-and-redis-cluster
route: blog
--- ---
In the last week there were several questions regarding Redis Sentinel and Redis Cluster, if one or the other will go away or if they need to be used in combination. In the last week there were several questions regarding Redis Sentinel and Redis Cluster, if one or the other will go away or if they need to be used in combination.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "omnomnom - Parsing ISO8601 dates using nom" title: "omnomnom - Parsing ISO8601 dates using nom"
date: 16 Jul 2015 11:00:00 +0200 date: 16 Jul 2015 11:00:00 +0200
path: /:year/:month/:day/omnomnom-parsing-iso8601-dates-using-nom path: /:year/:month/:day/omnomnom-parsing-iso8601-dates-using-nom
route: blog
--- ---
There are thousands of ways to note down a date and time. There are thousands of ways to note down a date and time.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Redis Dev Day London 2015" title: "Redis Dev Day London 2015"
date: 22 Oct 2015 15:05:00 +0200 date: 22 Oct 2015 15:05:00 +0200
path: /:year/:month/:day/redis-dev-day-london-2015 path: /:year/:month/:day/redis-dev-day-london-2015
route: blog
--- ---
Last Monday the Redis Dev Day took place in London, followed by a small Unconference on Tuesday. Last Monday the Redis Dev Day took place in London, followed by a small Unconference on Tuesday.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: 2015 in many words and some photos title: 2015 in many words and some photos
date: 31 Dec 2015 20:50:00 +0100 date: 31 Dec 2015 20:50:00 +0100
path: /:year/:month/:day/2015-in-many-words path: /:year/:month/:day/2015-in-many-words
route: blog
--- ---
Last year I summarized my year in a [long blog post](https://fnordig.de/2014/12/29/2014-in-many-words/), Last year I summarized my year in a [long blog post](https://fnordig.de/2014/12/29/2014-in-many-words/),

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Create GitHub releases with Rust using Hubcaps title: Create GitHub releases with Rust using Hubcaps
date: 23 Feb 2016 20:32:00 +0100 date: 23 Feb 2016 20:32:00 +0100
path: /:year/:month/:day/create-releases-using-hubcaps-a-rust-library path: /:year/:month/:day/create-releases-using-hubcaps-a-rust-library
route: blog
--- ---
For one of my projects I need to access the GitHub API to create releases. For one of my projects I need to access the GitHub API to create releases.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: Load your config into your environment title: Load your config into your environment
date: 04 Mar 2016 12:30:00 +0100 date: 04 Mar 2016 12:30:00 +0100
path: /:year/:month/:day/load-your-config-into-your-environment path: /:year/:month/:day/load-your-config-into-your-environment
route: blog
--- ---
It became quite popular to store certain configuration variables in your environment, to be later loaded by your aplication. It became quite popular to store certain configuration variables in your environment, to be later loaded by your aplication.

View file

@ -1,6 +1,7 @@
title: Releasing Rust projects, the automatic way title: Releasing Rust projects, the automatic way
date: 29 Mar 2016 20:47:00 +0200 date: 29 Mar 2016 20:47:00 +0200
path: /:year/:month/:day/releasing-rust-projects-the-automatic-way path: /:year/:month/:day/releasing-rust-projects-the-automatic-way
route: blog
--- ---
One of the strength of the Rust ecosystem is its package manager [Cargo][] and the package system [crates.io][]. One of the strength of the Rust ecosystem is its package manager [Cargo][] and the package system [crates.io][].

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Quick check: does your code work?" title: "Quick check: does your code work?"
date: 12 May 2016 23:00:00 +0200 date: 12 May 2016 23:00:00 +0200
path: /:year/:month/:day/quickcheck-does-your-code-work path: /:year/:month/:day/quickcheck-does-your-code-work
route: blog
--- ---
… because mine didn't. At least not correctly in all cases. … because mine didn't. At least not correctly in all cases.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Longboarding: Vennbahn" title: "Longboarding: Vennbahn"
date: 09 Jun 2016 16:20:00 +0200 date: 09 Jun 2016 16:20:00 +0200
path: /:year/:month/:day/longboarding-vennbahn path: /:year/:month/:day/longboarding-vennbahn
route: blog
--- ---
Today, right after finishing my only lecture of the day, I rented a longboard at a local skate shop Today, right after finishing my only lecture of the day, I rented a longboard at a local skate shop

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Rust from the Back to the Front (Rust Sthlm)" title: "Rust from the Back to the Front (Rust Sthlm)"
date: 31 Aug 2016 16:30:00 +0200 date: 31 Aug 2016 16:30:00 +0200
path: /:year/:month/:day/rust-from-the-back-to-the-front path: /:year/:month/:day/rust-from-the-back-to-the-front
route: blog
--- ---
<center> <center>

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Signify - Ed25519 signatures for your files (in Rust)" title: "Signify - Ed25519 signatures for your files (in Rust)"
date: 28 Sep 2016 13:16:00 +0200 date: 28 Sep 2016 13:16:00 +0200
path: /:year/:month/:day/signify-ed25519-signatures-for-your-files path: /:year/:month/:day/signify-ed25519-signatures-for-your-files
route: blog
--- ---
From time to time I try to write a piece of code or port some existing library or application just for fun. From time to time I try to write a piece of code or port some existing library or application just for fun.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "novemb.rs Code Sprint Weekend 2016 - Retrospective" title: "novemb.rs Code Sprint Weekend 2016 - Retrospective"
date: 29 Nov 2016 11:55:00 +0100 date: 29 Nov 2016 11:55:00 +0100
path: /:year/:month/:day/novemb-rs-code-sprint-weekend-2016-retrospective path: /:year/:month/:day/novemb-rs-code-sprint-weekend-2016-retrospective
route: blog
--- ---
*This post is a tiny bit late, but better late than never.* *This post is a tiny bit late, but better late than never.*

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Xen - a backend/frontend driver example" title: "Xen - a backend/frontend driver example"
date: 02 Dec 2016 10:10:00 +0100 date: 02 Dec 2016 10:10:00 +0100
path: /:year/:month/:day/xen-a-backend-frontend-driver-example path: /:year/:month/:day/xen-a-backend-frontend-driver-example
route: blog
--- ---
Recently I began working on my master thesis. For this I have to get familiar with the [Xen hypervisor][xen] and its implementation of drivers. Recently I began working on my master thesis. For this I have to get familiar with the [Xen hypervisor][xen] and its implementation of drivers.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Xen - split driver, initial communication" title: "Xen - split driver, initial communication"
date: 20 Dec 2016 16:00:00 +0100 date: 20 Dec 2016 16:00:00 +0100
path: /:year/:month/:day/xen-split-driver-initial-communication path: /:year/:month/:day/xen-split-driver-initial-communication
route: blog
--- ---
In the [previous post](/2016/12/02/xen-a-backend-frontend-driver-example/) I explained how to initially setup a split driver In the [previous post](/2016/12/02/xen-a-backend-frontend-driver-example/) I explained how to initially setup a split driver

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: 2016 in many words and some photos title: 2016 in many words and some photos
date: 31 Dec 2016 11:30:00 +0100 date: 31 Dec 2016 11:30:00 +0100
path: /:year/:month/:day/2016-in-many-words path: /:year/:month/:day/2016-in-many-words
route: blog
--- ---
Last year I summarized my year in a [long blog post](/2015/12/31/2015-in-many-words/), Last year I summarized my year in a [long blog post](/2015/12/31/2015-in-many-words/),

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Send ICMP Echo Replies using eBPF" title: "Send ICMP Echo Replies using eBPF"
date: 04 Mar 2017 17:25:00 +0100 date: 04 Mar 2017 17:25:00 +0100
path: /:year/:month/:day/send-icmp-echo-replies-using-ebpf path: /:year/:month/:day/send-icmp-echo-replies-using-ebpf
route: blog
--- ---
For my master thesis I am working with eBPF, the [Extended Berkeley Packet Filter](https://www.kernel.org/doc/Documentation/networking/filter.txt). For my master thesis I am working with eBPF, the [Extended Berkeley Packet Filter](https://www.kernel.org/doc/Documentation/networking/filter.txt).

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "How to write a Master Thesis" title: "How to write a Master Thesis"
date: 09 Jul 2017 16:45:00 +0200 date: 09 Jul 2017 16:45:00 +0200
path: /:year/:month/:day/how-to-write-a-master-thesis path: /:year/:month/:day/how-to-write-a-master-thesis
route: blog
--- ---
2 years and 7 months ago I wrote [How to not write a Bachelor Thesis][bathesis]. 2 years and 7 months ago I wrote [How to not write a Bachelor Thesis][bathesis].

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: New Design title: New Design
date: 09 Jul 2017 15:08:00 +0100 date: 09 Jul 2017 15:08:00 +0100
path: /:year/:month/:day/new-design path: /:year/:month/:day/new-design
route: blog
--- ---
I decided it is time for a new design for this site. I decided it is time for a new design for this site.

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Vacation ahead" title: "Vacation ahead"
date: 07 Sep 2017 18:16:25 +0200 date: 07 Sep 2017 18:16:25 +0200
path: /:year/:month/:day/vacation-ahead path: /:year/:month/:day/vacation-ahead
route: blog
--- ---
After finishing [my master thesis](https://fnordig.de/2017/07/09/how-to-write-a-master-thesis/index.html) back in July and a busy Summer working, After finishing [my master thesis](https://fnordig.de/2017/07/09/how-to-write-a-master-thesis/index.html) back in July and a busy Summer working,

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Master Thesis: Network Function Offloading in Virtualized Environments" title: "Master Thesis: Network Function Offloading in Virtualized Environments"
date: 08 Nov 2017 15:05:00 +0100 date: 08 Nov 2017 15:05:00 +0100
path: /:year/:month/:day/master-thesis-network-function-offloading-in-virtualized-environments path: /:year/:month/:day/master-thesis-network-function-offloading-in-virtualized-environments
route: blog
--- ---
From end of last year to July this year I wrote my master thesis titled "Network Function Offloading in Virtualized Environments". From end of last year to July this year I wrote my master thesis titled "Network Function Offloading in Virtualized Environments".

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "GitHub Pages deployment made easy" title: "GitHub Pages deployment made easy"
date: 17 Nov 2017 19:47:15 +0100 date: 17 Nov 2017 19:47:15 +0100
path: /:year/:month/:day/github-pages-deployment-made-easy path: /:year/:month/:day/github-pages-deployment-made-easy
route: blog
--- ---
Recently I tried to deploy a new [Cobalt][]-powered site from [Travis CI][travis], using the [then documented method][olddeploy]. Recently I tried to deploy a new [Cobalt][]-powered site from [Travis CI][travis], using the [then documented method][olddeploy].

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: "Hello, Rust! Hello, WebAssembly!" title: "Hello, Rust! Hello, WebAssembly!"
date: 18 Nov 2017 16:26:57 +0100 date: 18 Nov 2017 16:26:57 +0100
path: /:year/:month/:day/hello-rust-hello-webassembly path: /:year/:month/:day/hello-rust-hello-webassembly
route: blog
--- ---
[hellorust.com](https://www.hellorust.com/) is live! [hellorust.com](https://www.hellorust.com/) is live!

View file

@ -2,6 +2,7 @@ extends: post.liquid
title: 2017 in many words and some photos title: 2017 in many words and some photos
date: 31 Dec 2017 16:30:00 +0100 date: 31 Dec 2017 16:30:00 +0100
path: /:year/:month/:day/2017-in-many-words path: /:year/:month/:day/2017-in-many-words
route: blog
--- ---
It has become a tradition for me to look at the year that's about to end. It has become a tradition for me to look at the year that's about to end.

View file

@ -1,5 +1,6 @@
extends: simple.liquid extends: simple.liquid
title: Imprint title: Imprint
route: about
path: /imprint path: /imprint
--- ---

View file

@ -1,6 +1,7 @@
extends: simple.liquid extends: simple.liquid
title: "Redis FAQ or: what you learn when idling in #redis" title: "Redis FAQ or: what you learn when idling in #redis"
path: /redis-faq path: /redis-faq
route: about
--- ---
First: this here is the unofficial FAQ, only containing things that come up by users in the IRC channel `#redis` on Freenode. There's also a more [official FAQ](http://redis.io/topics/faq). This document is also available in a [gist](https://gist.github.com/badboy/5958039). First: this here is the unofficial FAQ, only containing things that come up by users in the IRC channel `#redis` on Freenode. There's also a more [official FAQ](http://redis.io/topics/faq). This document is also available in a [gist](https://gist.github.com/badboy/5958039).