From db76f4527290dcd3aaed375cbfe536118e617352 Mon Sep 17 00:00:00 2001 From: wgroeneveld Date: Wed, 10 Jun 2020 15:51:32 +0200 Subject: [PATCH] archive rework: search, archive by year --- build-lunr-index.js | 61 +++++++ config.toml | 2 +- content/post/2013.md | 10 ++ content/post/2014.md | 10 ++ content/post/2015.md | 10 ++ content/post/2016.md | 10 ++ content/post/2017.md | 10 ++ content/post/2018.md | 10 ++ content/post/2019.md | 10 ++ content/post/2020.md | 10 ++ content/post/_index.md | 8 +- content/search.md | 8 + content/tags/_index.md | 28 ++- layouts/shortcodes/archive.html | 12 ++ layouts/shortcodes/doku.html | 1 - layouts/shortcodes/popular-categories.html | 6 + layouts/shortcodes/searchresults.html | 28 +++ package-lock.json | 167 ++++++++++++++++-- package.json | 6 +- static/js/brainbaking-post.json | 1 + .../assets/js/brainbaking.js | 39 ++++ .../assets/sass/_brainbaking.sass | 21 ++- .../assets/sass/_forms.sass | 13 ++ .../brainbaking-minimal/assets/sass/main.sass | 1 + .../layouts/_default/list.html | 28 +-- .../layouts/_default/terms.html | 58 +++--- .../layouts/partials/list-ul.html | 23 +++ .../layouts/partials/single-header.html | 8 +- .../brainbaking-minimal/static/js/lunr.min.js | 1 + 29 files changed, 515 insertions(+), 85 deletions(-) create mode 100644 build-lunr-index.js create mode 100644 content/post/2013.md create mode 100644 content/post/2014.md create mode 100644 content/post/2015.md create mode 100644 content/post/2016.md create mode 100644 content/post/2017.md create mode 100644 content/post/2018.md create mode 100644 content/post/2019.md create mode 100644 content/post/2020.md create mode 100644 content/search.md create mode 100644 layouts/shortcodes/archive.html delete mode 100644 layouts/shortcodes/doku.html create mode 100644 layouts/shortcodes/popular-categories.html create mode 100644 layouts/shortcodes/searchresults.html create mode 100644 static/js/brainbaking-post.json create mode 100644 themes/brainbaking-minimal/assets/sass/_forms.sass create mode 100644 themes/brainbaking-minimal/layouts/partials/list-ul.html create mode 100644 themes/brainbaking-minimal/static/js/lunr.min.js diff --git a/build-lunr-index.js b/build-lunr-index.js new file mode 100644 index 00000000..c8da9ab3 --- /dev/null +++ b/build-lunr-index.js @@ -0,0 +1,61 @@ +const fs = require('fs').promises; +const { resolve } = require('path'); + +const {promisify} = require('util'); +const frontMatterParser = require('parser-front-matter'); + +const parse = promisify(frontMatterParser.parse.bind(frontMatterParser)); + +// https://stackoverflow.com/questions/5827612/node-js-fs-readdir-recursive-directory-search +async function getFiles(dir) { + const dirents = await fs.readdir(dir, { withFileTypes: true }); + const files = await Promise.all(dirents.map((dirent) => { + const res = resolve(dir, dirent.name); + return dirent.isDirectory() ? getFiles(res) : res; + })); + return Array.prototype.concat(...files); +} + +async function loadPostsWithFrontMatter(postsDirectoryPath) { + const postNames = await getFiles(postsDirectoryPath); + const posts = await Promise.all( + // could be .DS_Store stuff found using recursive function above... + postNames.filter(name => name.endsWith('.md')).map(async fileName => { + const fileContent = await fs.readFile(fileName, 'utf8'); + const {content, data} = await parse(fileContent); + return { + content: content.slice(0, 3000), + ...data + }; + }) + ); + return posts; +} + +const lunrjs = require('lunr'); + +function makeIndex(posts) { + return lunrjs(function() { + this.ref('title'); + this.field('title'); + this.field('content'); + this.field('tags'); + posts.forEach(p => { + this.add(p); + }); + }); +} + +async function run() { + const posts = await loadPostsWithFrontMatter(`${__dirname}/content/post`); + const essays = await loadPostsWithFrontMatter(`${__dirname}/content/essays`); + const index = makeIndex(posts.concat(essays)); + console.log(JSON.stringify(index)); +} + +run() + .then(() => process.exit(0)) + .catch(error => { + console.error(error); + process.exit(1); + }); \ No newline at end of file diff --git a/config.toml b/config.toml index 8c35f821..b583dd08 100644 --- a/config.toml +++ b/config.toml @@ -62,7 +62,7 @@ enableGitInfo = true weight = 2 [[menu.main]] - name = "Tags" + name = "Archives" pre = " " url = "/tags" weight = 3 diff --git a/content/post/2013.md b/content/post/2013.md new file mode 100644 index 00000000..d3b686af --- /dev/null +++ b/content/post/2013.md @@ -0,0 +1,10 @@ +--- +title: "Archive by year: 2013" +category: "archive" +bigimg: Archive.jpg +icontag: tag +url: /post/2013/ +disableComments: true +--- + +{{< archive 2013 >}} \ No newline at end of file diff --git a/content/post/2014.md b/content/post/2014.md new file mode 100644 index 00000000..d992fa92 --- /dev/null +++ b/content/post/2014.md @@ -0,0 +1,10 @@ +--- +title: "Archive by year: 2014" +category: "archive" +bigimg: Archive.jpg +icontag: tag +url: /post/2014/ +disableComments: true +--- + +{{< archive 2014 >}} \ No newline at end of file diff --git a/content/post/2015.md b/content/post/2015.md new file mode 100644 index 00000000..42d2e2be --- /dev/null +++ b/content/post/2015.md @@ -0,0 +1,10 @@ +--- +title: "Archive by year: 2015" +category: "archive" +bigimg: Archive.jpg +icontag: tag +url: /post/2015/ +disableComments: true +--- + +{{< archive 2015 >}} \ No newline at end of file diff --git a/content/post/2016.md b/content/post/2016.md new file mode 100644 index 00000000..e1139e48 --- /dev/null +++ b/content/post/2016.md @@ -0,0 +1,10 @@ +--- +title: "Archive by year: 2016" +category: "archive" +bigimg: Archive.jpg +icontag: tag +url: /post/2016/ +disableComments: true +--- + +{{< archive 2016 >}} \ No newline at end of file diff --git a/content/post/2017.md b/content/post/2017.md new file mode 100644 index 00000000..ee994ddd --- /dev/null +++ b/content/post/2017.md @@ -0,0 +1,10 @@ +--- +title: "Archive by year: 2017" +category: "archive" +bigimg: Archive.jpg +icontag: tag +url: /post/2017/ +disableComments: true +--- + +{{< archive 2017 >}} \ No newline at end of file diff --git a/content/post/2018.md b/content/post/2018.md new file mode 100644 index 00000000..e0ac0051 --- /dev/null +++ b/content/post/2018.md @@ -0,0 +1,10 @@ +--- +title: "Archive by year: 2018" +category: "archive" +bigimg: Archive.jpg +icontag: tag +url: /post/2018/ +disableComments: true +--- + +{{< archive 2018 >}} \ No newline at end of file diff --git a/content/post/2019.md b/content/post/2019.md new file mode 100644 index 00000000..33042f91 --- /dev/null +++ b/content/post/2019.md @@ -0,0 +1,10 @@ +--- +title: "Archive by year: 2019" +category: "archive" +bigimg: Archive.jpg +icontag: tag +url: /post/2019/ +disableComments: true +--- + +{{< archive 2019 >}} \ No newline at end of file diff --git a/content/post/2020.md b/content/post/2020.md new file mode 100644 index 00000000..c41fc43c --- /dev/null +++ b/content/post/2020.md @@ -0,0 +1,10 @@ +--- +title: "Archive by year: 2020" +category: "archive" +bigimg: Archive.jpg +icontag: tag +url: /post/2020/ +disableComments: true +--- + +{{< archive 2020 >}} \ No newline at end of file diff --git a/content/post/_index.md b/content/post/_index.md index e68dfbfe..fdc7a0a5 100644 --- a/content/post/_index.md +++ b/content/post/_index.md @@ -7,4 +7,10 @@ icontag: tech A continuous pursuit of knowledge for either personal or professional reasons is called [Lifelong learning](https://en.wikipedia.org/wiki/Lifelong_learning). As a great deal of my life is dedicated to Computer Science, so it's only natural to do some heavy [_Brain Baking_](/) work in that technical area of expertise. I discovered that in order for me to teach and inspire others, I first had to teach and inspire myself. You are looking at the result of that work. -I wanted to make the profound difference clear between a [technical blog](/post) and [essayistic works](/essays) by separating them in different categories, each with their own intention and language. \ No newline at end of file +I wanted to make the profound difference clear between a [technical blog](/post) and [essayistic works](/essays) by separating them in different categories, each with their own intention and language. + +I mainly write about the following topics: {{< popular-categories >}}. + +Besides these posts, I also write about retro PC/Handheld gaming and bread baking on sister websites of Brain Baking: [Jefklak's Retro Codex](https://jefklakscodex.com) and [Red Zuurdesem](https://redzuurdesem.be), respectively. + +Not finding what you're looking for? [Browse the archives](/tags). diff --git a/content/search.md b/content/search.md new file mode 100644 index 00000000..c2888c02 --- /dev/null +++ b/content/search.md @@ -0,0 +1,8 @@ +--- +title: Search +disableComments: true +--- + +Not finding what you’re looking for? Try your luck here: + +{{< searchresults >}} diff --git a/content/tags/_index.md b/content/tags/_index.md index a9ea8c19..b864a31c 100644 --- a/content/tags/_index.md +++ b/content/tags/_index.md @@ -1,9 +1,33 @@ --- -title: Tags +title: Archives bigimg: Archive.jpg icontag: tag --- > The good life is one inspired by love and guided by knowledge. Russell -Not finding what you're looking for? Behold a list of alphabetically sorted tags used in every article on this very website. Related articles share a set of tags. \ No newline at end of file +Not finding what you're looking for? Try browsing the archives: + +### By search + +
+ + +
+ +### By year + +- [2020](/post/2020) ... when I started paying attention to webdesign again +- [2019](/post/2019) ... when I started taking computing education blogging seriously +- [2018](/post/2018) ... when my PhD work started and I tried writing essays in Dutch +- [2017](/post/2017) ... when self-improvement meta-posts started popping up more often +- [2016](/post/2016) ... when legacy code convinced me to successfully unit test Visual Basic 6 +- [2015](/post/2015) ... when I completely forgot about blogging at all +- [2014](/post/2014) ... when I switched from mostly programming in Java to C# +- [2013](/post/2013) ... when this site was a wiki running on pmWiki, and then DokuWiki + + +### By tag + + +Behold a list of alphabetically sorted tags used in every article on this very website. Related articles share a set of tags. \ No newline at end of file diff --git a/layouts/shortcodes/archive.html b/layouts/shortcodes/archive.html new file mode 100644 index 00000000..6f39b202 --- /dev/null +++ b/layouts/shortcodes/archive.html @@ -0,0 +1,12 @@ +{{ $year := index .Params 0 }} + +
+

{{ $year }}

+ + {{ range (where (where $.Site.Pages "Section" "post") ".Params.date.Year" "eq" $year).GroupByDate "Jan" }} +

{{ .Key }}

+ + {{ partial "list-ul" . }} + {{ end }} + +
diff --git a/layouts/shortcodes/doku.html b/layouts/shortcodes/doku.html deleted file mode 100644 index ebeb25a5..00000000 --- a/layouts/shortcodes/doku.html +++ /dev/null @@ -1 +0,0 @@ -{{ index .Params 0 }} diff --git a/layouts/shortcodes/popular-categories.html b/layouts/shortcodes/popular-categories.html new file mode 100644 index 00000000..356c7b9d --- /dev/null +++ b/layouts/shortcodes/popular-categories.html @@ -0,0 +1,6 @@ + + +{{ range first 10 $.Site.Taxonomies.tags.ByCount }} + {{ .Name }} +{{ end }} + \ No newline at end of file diff --git a/layouts/shortcodes/searchresults.html b/layouts/shortcodes/searchresults.html new file mode 100644 index 00000000..ff190a58 --- /dev/null +++ b/layouts/shortcodes/searchresults.html @@ -0,0 +1,28 @@ +
+
+ + +
+
+ +
+
+

+ Search results + » +

+
Searching, please wait...
+                                                                                                                                                       +
+ + +{{ $p := slice }} +{{ range (where .Site.RegularPages "Section" "!=" "") }} + {{ $post := dict "link" .RelPermalink "title" .Title "content" (substr .Plain 0 200) -}} + {{ $p = $p | append $post -}} +{{ end }} + diff --git a/package-lock.json b/package-lock.json index 972f0a3b..56dd84f3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1047,6 +1047,15 @@ } } }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, "arr-diff": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", @@ -1491,6 +1500,12 @@ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", "dev": true }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -1629,6 +1644,16 @@ } } }, + "file-is-binary": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-is-binary/-/file-is-binary-1.0.0.tgz", + "integrity": "sha1-XkGAbRvK5FjI/sMv484SLbu8Q1Y=", + "dev": true, + "requires": { + "is-binary-buffer": "^1.0.0", + "isobject": "^3.0.0" + } + }, "file-uri-to-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", @@ -1674,8 +1699,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true, - "optional": true + "dev": true }, "fragment-cache": { "version": "0.2.1", @@ -1779,6 +1803,35 @@ "dev": true, "optional": true }, + "gray-matter": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-3.1.1.tgz", + "integrity": "sha512-nZ1qjLmayEv0/wt3sHig7I0s3/sJO0dkAaKYQ5YAOApUtYEOonXSFdWvL1khvnZMTvov4UufkqlFsilPnejEXA==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "js-yaml": "^3.10.0", + "kind-of": "^5.0.2", + "strip-bom-string": "^1.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -1873,6 +1926,15 @@ } } }, + "is-binary-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-binary-buffer/-/is-binary-buffer-1.0.0.tgz", + "integrity": "sha1-vGAxKQtly/eZudlQK1D9U3VSQAc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + }, "is-binary-path": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", @@ -1887,8 +1949,7 @@ "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true, - "optional": true + "dev": true }, "is-data-descriptor": { "version": "0.1.4", @@ -1937,8 +1998,7 @@ "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true, - "optional": true + "dev": true }, "is-extglob": { "version": "2.1.1", @@ -1984,11 +2044,16 @@ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, - "optional": true, "requires": { "isobject": "^3.0.1" } }, + "is-whitespace": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-whitespace/-/is-whitespace-0.3.0.tgz", + "integrity": "sha1-Fjnssb4DauxppUy7QBz77XEUq38=", + "dev": true + }, "is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", @@ -2007,8 +2072,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true, - "optional": true + "dev": true }, "js-tokens": { "version": "4.0.0", @@ -2016,6 +2080,16 @@ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, + "js-yaml": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", + "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, "jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", @@ -2038,6 +2112,15 @@ "dev": true, "optional": true }, + "lazy-cache": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", + "integrity": "sha1-uRkKT5EzVGlIQIWfio9whNiCImQ=", + "dev": true, + "requires": { + "set-getter": "^0.1.0" + } + }, "leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", @@ -2078,6 +2161,12 @@ "js-tokens": "^3.0.0 || ^4.0.0" } }, + "lunr": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.8.tgz", + "integrity": "sha512-oxMeX/Y35PNFuZoHp+jUj5OSEmLCaIH4KTFJh7a93cHBoFmpw2IoPs22VIz7vyO2YUnx2Tn9dzIwO2P/4quIRg==", + "dev": true + }, "make-dir": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", @@ -2147,7 +2236,6 @@ "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, - "optional": true, "requires": { "for-in": "^1.0.2", "is-extendable": "^1.0.1" @@ -2158,7 +2246,6 @@ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, - "optional": true, "requires": { "is-plain-object": "^2.0.4" } @@ -2317,6 +2404,32 @@ "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", "dev": true }, + "parser-front-matter": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/parser-front-matter/-/parser-front-matter-1.6.4.tgz", + "integrity": "sha512-eqtUnI5+COkf1CQOYo8FmykN5Zs+5Yr60f/7GcPgQDZEEjdE/VZ4WMaMo9g37foof8h64t/TH2Uvk2Sq0fDy/g==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "file-is-binary": "^1.0.0", + "gray-matter": "^3.0.2", + "isobject": "^3.0.1", + "lazy-cache": "^2.0.2", + "mixin-deep": "^1.2.0", + "trim-leading-lines": "^0.1.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, "pascalcase": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", @@ -2557,6 +2670,15 @@ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true }, + "set-getter": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/set-getter/-/set-getter-0.1.0.tgz", + "integrity": "sha1-12nBgsnVpR9AkUXy+6guXoboA3Y=", + "dev": true, + "requires": { + "to-object-path": "^0.3.0" + } + }, "set-value": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", @@ -2742,6 +2864,12 @@ "extend-shallow": "^3.0.0" } }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, "static-extend": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", @@ -2775,6 +2903,12 @@ "safe-buffer": "~5.1.0" } }, + "strip-bom-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=", + "dev": true + }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", @@ -2795,7 +2929,6 @@ "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", "dev": true, - "optional": true, "requires": { "kind-of": "^3.0.2" }, @@ -2805,7 +2938,6 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "dev": true, - "optional": true, "requires": { "is-buffer": "^1.1.5" } @@ -2836,6 +2968,15 @@ "repeat-string": "^1.6.1" } }, + "trim-leading-lines": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/trim-leading-lines/-/trim-leading-lines-0.1.1.tgz", + "integrity": "sha1-DnysPoMELc+Vp07TaWbxd0TVwWk=", + "dev": true, + "requires": { + "is-whitespace": "^0.3.0" + } + }, "unicode-canonical-property-names-ecmascript": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", diff --git a/package.json b/package.json index eebfc3d8..eade938a 100644 --- a/package.json +++ b/package.json @@ -10,11 +10,13 @@ "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.9.6", - "@babel/preset-env": "^7.9.6" + "@babel/preset-env": "^7.9.6", + "lunr": "^2.3.6", + "parser-front-matter": "^1.6.4" }, "scripts": { "build": "/usr/local/bin/hugo", - "install": "node goodreads-fetch.js > static/js/goodreads.js" + "install": "node goodreads-fetch.js > static/js/goodreads.js && node build-lunr-index.js > static/js/brainbaking-post.json" }, "repository": { "type": "git", diff --git a/static/js/brainbaking-post.json b/static/js/brainbaking-post.json new file mode 100644 index 00000000..b262ba59 --- /dev/null +++ b/static/js/brainbaking-post.json @@ -0,0 +1 @@ +{"version":"2.3.8","fields":["title","content","tags"],"fieldVectors":[["title/undefined",[]],["content/undefined",[0,0.364,1,2.086,2,1.263,4,3.304,7,1.833,8,1.771,9,3.304,10,2.88,11,2.392,12,2.225,13,2.392,14,1.543,15,3.304,17,2.392,21,1.612,23,2.773,25,1.612,26,3.539,32,1.543,33,2.225,34,2.893,38,1.612,39,2.755,44,3.472,45,1.417,50,3.795,52,1.863,55,2.884,56,2.6,60,2.57,61,1.863,63,2.086,64,3.184,65,1.687,68,2.705,71,3.304,74,1.98,79,0.451,85,5.647,128,1.612,132,1.479,136,1.967,137,1.863,138,1.687,142,2.06,150,2.086,151,2.146,170,2.086,175,1.687,180,1.124,190,2.6,194,0.858,229,1.612,252,0.983,261,2.086,274,1.543,284,0.887,289,3.304,296,2.6,300,3.775,302,3.026,307,2.705,317,1.612,331,1.612,334,3.304,387,2.225,411,2.392,456,3.304,513,3.493,546,3.304,582,3.304,640,2.88,648,3.304,663,3.472,678,2.88,707,1.419,738,0.699,743,2.6,744,3.304,791,0.801,799,1.312,837,2.88,842,1.131,868,2.88,869,6.172,870,3.565,871,4.797,872,1.312,873,2.88,874,3.775,875,3.304,876,3.304,877,3.304,878,2.88,879,3.304,880,3.472,881,3.304,882,4.797,883,3.304,884,5.647,885,2.88,886,2.57,887,1.364,888,3.304,889,3.917,890,3.304,891,3.304,892,5.4,893,2.6,894,3.304,895,3.304,896,3.304,897,3.304,898,2.225,899,5.125,900,2.6,901,3.304,902,6.323,903,7.082,904,4.621,905,1.967,906,3.304,907,3.23,908,2.6,909,1.771,910,5.647,911,2.6,912,3.304,913,3.304,914,3.304,915,2.6,916,3.304,917,3.304,918,2.6,919,3.304,920,4.797,921,1.364,922,3.304,923,2.88,924,2.88,925,3.304,926,1.863,927,2.88,928,1.612,929,3.304,930,2.392,931,3.304,932,2.392,933,3.36,934,5.647,935,3.304,936,3.304,937,1.217,938,2.392,939,2.225,940,3.304,941,3.304,942,3.304,943,3.304,944,3.304,945,3.304,946,3.304,947,6.196,948,3.304,949,3.304,950,3.304,951,4.797,952,1.771,953,1.687,954,2.88,955,3.304,956,3.304,957,3.304,958,1.771,959,2.88,960,3.304,961,3.304,962,3.304,963,2.88,964,6.196,965,4.797,966,3.304,967,2.88,968,2.6,969,3.304,970,3.304,971,3.304,972,3.304,973,3.304,974,3.304,975,3.304,976,4.797,977,4.087,978,3.304,979,3.304,980,3.304,981,3.304,982,3.775,983,2.88,984,4.797,985,2.392,986,3.304,987,4.922,988,3.304,989,1.863,990,3.304,991,1.364,992,3.304,993,2.88,994,2.88,995,3.304,996,2.88,997,3.304,998,3.304,999,2.6,1000,1.967,1001,2.225,1002,3.304,1003,2.88,1004,2.225,1005,2.392,1006,3.304,1007,3.304,1008,3.304]],["tags/undefined",[]],["title/Unit Testing Stored Procedures",[661,1.703,662,1.172,747,2.265,748,2.562]],["content/Unit Testing Stored Procedures",[0,0.266,5,1.694,6,1.741,20,1.765,45,1.364,70,3.105,79,1.017,86,2.056,95,3.438,158,2.021,167,2.224,169,1.618,180,1.275,196,2.433,198,2.224,255,1.508,276,1.797,278,1.351,286,1.564,314,2.114,339,1.134,345,1.889,356,3.105,357,2.49,411,2.855,425,2.114,442,1.675,513,4.345,522,1.059,528,1.765,530,1.134,532,1.628,620,1.453,650,3.438,658,3.105,660,2.855,661,3.001,662,2.493,663,2.855,705,2.015,707,1.694,725,2.777,735,1.453,747,4.329,748,5.112,749,1.842,750,2.114,751,2.348,752,2.078,753,3.945,754,2.656,755,2.855,756,1.028,757,0.456,758,1.096,759,3.945,760,1.694,761,3.945,762,3.105,763,2.49,764,3.438,765,3.945,766,1.628,767,2.656,768,1.304,769,1.351,770,1.675,771,2.914,772,1.174,773,1.735,774,2.855,775,2.656,776,3.438,777,2.855,778,1.215,779,1.735,780,0.894,781,1.797,782,3.237,783,0.99,784,2.653,785,2.855,786,1.924,787,1.924,788,3.237,789,2.855,790,2.855,791,0.957,792,2.224,793,0.99,794,3.438,795,3.945,796,4.739,797,3.661,798,3.945,799,2.47,800,0.894,801,3.105,802,3.945,803,3.945,804,2.855,805,5.536,806,2.114,807,3.438,808,1.924,809,1.694,810,3.945,811,2.224,812,2.224,813,3.945,814,3.438,815,2.855,816,3.105,817,3.945,818,3.945,819,3.945,820,3.661,821,2.656,822,2.785,823,3.438,824,3.945,825,3.438,826,2.855,827,2.348,828,1.765,829,2.015,830,2.656,831,2.015,832,2.056,833,5.424,834,2.656,835,7.452,836,1.842,837,3.438,838,3.945,839,4.739,840,5.438,841,3.438,842,1.351,843,3.945,844,2.777,845,3.945,846,2.49,847,3.945,848,3.945,849,3.945,850,2.49,851,2.855,852,1.842,853,5.438,854,3.438,855,5.438,856,3.237,857,3.945,858,2.433,859,3.945,860,3.945,861,5.438,862,3.945,863,3.945,864,3.945,865,3.945,866,1.842]],["tags/Unit Testing Stored Procedures",[805,3.172,867,2.273]],["title/Visual Studio 2012 for Eclipse users",[909,1.839,1009,2.311,1010,2.701,1011,2.991,1012,2.701]],["content/Visual Studio 2012 for Eclipse users",[0,0.369,6,1.344,79,0.706,86,1.711,103,2.475,113,2.136,129,2.525,132,3.27,158,1.021,170,3.268,196,1.645,197,2.893,216,2.893,252,1.094,272,1.645,278,1.773,286,1.057,311,3.783,387,2.475,420,2.893,442,1.132,458,1.305,470,1.793,524,0.922,542,2.66,596,3.268,662,1.132,698,2.32,741,3.485,757,0.425,773,1.651,788,3.081,793,0.922,812,2.072,821,2.475,828,2.316,872,1.459,886,3.485,898,2.475,926,2.072,953,1.877,977,2.66,993,3.204,1000,2.188,1009,2.475,1010,2.893,1012,4.715,1013,1.793,1014,2.475,1015,2.475,1016,3.676,1017,2.893,1018,3.204,1019,5.395,1020,2.66,1021,1.793,1022,3.676,1023,1.517,1024,2.475,1025,3.676,1026,3.204,1027,2.66,1028,2.643,1029,4.512,1030,3.204,1031,3.676,1032,5.177,1033,2.188,1034,2.475,1035,2.072,1036,3.676,1037,1.459,1038,2.893,1039,5.177,1040,3.676,1041,3.204,1042,3.676,1043,2.475,1044,4.074,1045,3.676,1046,2.66,1047,1.459,1048,5.669,1049,3.676,1050,3.676,1051,3.676,1052,3.676,1053,5.177,1054,3.676,1055,3.676,1056,3.676,1057,3.676,1058,2.188,1059,2.32,1060,3.676,1061,3.676,1062,2.32,1063,3.676,1064,3.676,1065,3.676,1066,2.893,1067,1.716,1068,3.676,1069,2.893,1070,3.676,1071,3.676,1072,3.676,1073,2.072,1074,3.676,1075,3.204,1076,1.747,1077,3.204,1078,3.676,1079,3.676,1080,3.676,1081,1.459,1082,2.475,1083,3.676,1084,3.676,1085,3.204,1086,3.676,1087,1.877,1088,3.676,1089,3.676,1090,3.746,1091,3.676,1092,6.504,1093,3.676,1094,3.676,1095,2.893,1096,3.204,1097,3.676,1098,2.893,1099,2.475,1100,3.676,1101,1.517,1102,3.676,1103,3.676,1104,3.676,1105,5.177,1106,3.676,1107,3.676,1108,3.676,1109,2.188,1110,3.676,1111,5.177,1112,4.512,1113,5.177,1114,4.328,1115,1.579,1116,2.223,1117,1.645,1118,2.893,1119,3.676,1120,1.97,1121,3.676,1122,1.354,1123,1.716,1124,3.676,1125,2.475,1126,3.204,1127,3.676,1128,1.057,1129,2.32,1130,3.676,1131,2.475,1132,3.676,1133,1.793,1134,2.072]],["tags/Visual Studio 2012 for Eclipse users",[1012,3.172,1135,4.031]],["title/Enhancing the builder pattern with closures",[280,2.994,1136,2.994,1137,2.994,1138,2.265]],["content/Enhancing the builder pattern with closures",[0,0.361,2,1.519,5,1.707,8,2.929,13,2.877,18,2.03,79,0.918,86,2.331,99,3.765,103,2.677,113,2.256,115,3.884,129,3.048,158,1.519,166,0.964,170,2.51,171,2.03,176,3.262,194,1.032,253,3.128,272,1.779,274,1.856,279,2.241,286,1.143,339,1.796,354,3.681,366,4.076,370,3.719,414,2.241,442,1.684,443,2.877,458,2.74,508,1.684,524,0.997,527,3.128,542,2.877,560,2.367,591,3.465,620,1.464,628,3.681,752,2.089,756,0.609,757,0.632,777,3.956,780,0.901,787,1.939,806,2.13,826,2.877,832,1.314,833,3.465,841,3.465,844,2.03,850,2.51,872,1.578,909,3.605,939,2.677,958,2.929,1033,3.254,1067,1.856,1128,1.143,1129,2.51,1136,3.128,1137,5.986,1138,2.367,1139,1.641,1140,2.13,1141,5.467,1142,3.976,1143,3.976,1144,1.939,1145,0.997,1146,3.976,1147,3.976,1148,1.225,1149,3.465,1150,3.976,1151,2.51,1152,0.997,1153,2.877,1154,3.465,1155,2.03,1156,3.465,1157,2.929,1158,3.254,1159,1.419,1160,2.677,1161,2.51,1162,2.51,1163,3.465,1164,1.197,1165,2.13,1166,2.089,1167,2.241,1168,7.811,1169,4.11,1170,5.467,1171,5.467,1172,6.729,1173,2.777,1174,5.467,1175,5.467,1176,5.467,1177,5.467,1178,5.467,1179,5.467,1180,3.976,1181,2.241,1182,2.367,1183,1.361,1184,3.976,1185,3.956,1186,2.877,1187,3.523,1188,3.465,1189,2.552,1190,1.411,1191,2.792,1192,1.641,1193,3.128,1194,3.976,1195,3.976,1196,1.641,1197,3.976,1198,3.976,1199,3.976]],["tags/Enhancing the builder pattern with closures",[5,0.961,198,1.261,253,1.76,280,1.76,1200,1.412,1201,1.95]],["title/Integration Testing with SQLite",[662,1.315,1202,2.874,1203,3.359]],["content/Integration Testing with SQLite",[0,0.353,2,1.526,6,1.75,12,2.689,20,1.787,76,1.864,78,3.462,79,0.92,80,3.143,84,3.481,86,1.812,99,1.948,115,2.04,132,1.787,158,1.524,159,0.684,166,1.519,172,1.586,176,2.454,195,3.143,260,3.481,273,0.684,275,1.864,276,1.32,311,2.521,325,3.481,354,4.217,366,2.14,370,3.728,508,1.23,513,3.092,514,3.143,515,1.11,522,1.473,523,3.481,524,1.002,532,1.648,596,2.521,658,3.143,662,1.929,685,2.891,705,2.04,729,1.586,745,1.787,747,3.728,748,2.689,752,1.526,756,0.84,757,0.634,758,1.11,772,1.189,791,0.969,792,2.252,793,1.571,800,0.905,812,3.092,814,3.481,820,3.692,832,1.32,844,3.198,858,1.787,870,2.521,899,2.891,907,5.202,921,1.648,926,2.252,989,3.092,991,1.648,1013,1.948,1035,2.252,1043,2.689,1047,1.586,1048,3.481,1090,2.891,1101,1.648,1114,3.462,1115,2.355,1122,1.471,1128,1.148,1152,1.002,1153,4.879,1159,1.423,1164,1.371,1169,2.252,1192,1.648,1202,2.689,1203,4.929,1204,2.891,1205,3.801,1206,6.742,1207,3.994,1208,2.04,1209,3.994,1210,3.092,1211,2.377,1212,1.787,1213,2.891,1214,2.891,1215,2.689,1216,3.481,1217,2.14,1218,2.521,1219,3.994,1220,3.994,1221,3.143,1222,3.055,1223,3.994,1224,3.481,1225,2.04,1226,1.33,1227,2.04,1228,5.484,1229,2.04,1230,3.481,1231,2.891,1232,6.263,1233,5.484,1234,3.994,1235,3.143,1236,2.891,1237,1.648,1238,3.994,1239,3.481,1240,2.939,1241,1.32,1242,3.994,1243,1.586,1244,3.994,1245,3.481,1246,3.143,1247,3.994,1248,3.994,1249,3.994,1250,3.994,1251,3.994,1252,1.073,1253,2.252,1254,1.274,1255,5.484,1256,3.994,1257,2.521,1258,6.263,1259,5.484,1260,3.994,1261,3.994,1262,3.143,1263,3.994,1264,2.891,1265,3.994,1266,3.994,1267,3.481,1268,3.994,1269,5.484,1270,3.994,1271,3.994,1272,3.994,1273,3.994,1274,3.994,1275,3.994,1276,2.689,1277,2.521,1278,3.994,1279,3.994,1280,3.143,1281,3.143,1282,2.689,1283,3.481,1284,3.994,1285,3.481,1286,2.04,1287,2.689,1288,1.23,1289,3.994,1290,3.994,1291,3.994]],["tags/Integration Testing with SQLite",[805,2.264,867,1.622,1200,1.816,1203,2.264]],["title/Archive by Year: 2013",[7,1.631,13,3.089,1152,1.071]],["content/Archive by Year: 2013",[0,0.323,7,2.545,13,4.82]],["tags/Archive by Year: 2013",[]],["title/Metaprogramming instead of duplication",[285,3.089,1043,2.874,1292,1.631]],["content/Metaprogramming instead of duplication",[0,0.353,2,1.73,5,1.944,8,2.425,29,3.275,79,0.91,86,1.495,99,2.207,113,2.928,115,3.622,159,0.775,170,2.857,173,4.829,194,1.175,252,1.347,274,2.113,284,1.215,285,4.317,286,1.715,287,1.868,314,3.196,366,2.425,442,1.394,458,1.607,515,1.257,529,2.785,560,3.972,628,3.047,661,2.025,662,2.185,705,3.408,729,1.797,750,2.425,756,1.022,770,1.838,771,2.425,779,1.444,787,2.207,793,1.135,831,2.311,834,3.047,866,2.113,937,1.666,1043,3.047,1115,1.944,1128,1.301,1129,2.857,1138,3.551,1145,1.135,1153,3.275,1159,1.175,1169,4.268,1182,3.551,1186,3.275,1193,3.561,1222,2.207,1253,3.363,1264,4.317,1293,2.025,1294,4.526,1295,4.526,1296,5.965,1297,4.526,1298,4.526,1299,4.526,1300,4.526,1301,4.526,1302,4.526,1303,4.526,1304,4.526,1305,3.944,1306,6.673,1307,7.028,1308,3.561,1309,2.207,1310,2.857,1311,3.047,1312,4.526,1313,3.047,1314,4.526,1315,1.797,1316,4.694,1317,4.526,1318,5.965,1319,5.199,1320,3.944,1321,4.526,1322,4.526,1323,2.207,1324,3.561,1325,4.526,1326,2.857,1327,3.275,1328,4.526,1329,4.526,1330,4.526,1331,4.526,1332,4.526,1333,5.965,1334,4.526,1335,2.311,1336,1.944,1337,3.561,1338,4.526,1339,4.526,1340,4.526,1341,4.526,1342,4.526,1343,3.561,1344,4.526,1345,4.526,1346,4.526,1347,4.526,1348,3.275,1349,3.275,1350,2.552,1351,4.526,1352,3.047,1353,1.868,1354,4.526,1355,2.113,1356,2.311]],["tags/Metaprogramming instead of duplication",[5,0.961,285,1.619,867,1.261,1200,1.412,1307,1.95,1348,1.619]],["title/Bye autotools hello Scons",[595,3.316,1357,3.805,1358,3.316,1359,3.316]],["content/Bye autotools hello Scons",[0,0.36,2,2.702,18,2.043,46,2.143,75,3.486,79,0.546,114,2.587,132,2.805,159,0.685,161,2.043,166,0.97,284,1.474,345,1.474,442,1.232,457,2.381,470,2.678,508,1.232,662,2.304,735,2.022,755,2.895,756,0.841,757,0.635,768,1.322,770,1.232,773,1.276,778,1.232,780,0.906,781,1.322,793,1.004,800,1.244,809,1.718,812,2.255,825,3.486,832,1.322,858,1.79,874,3.148,898,2.693,921,1.651,924,3.486,985,2.895,1001,3.696,1076,1.074,1109,2.381,1116,1.718,1122,1.473,1128,1.579,1131,2.693,1139,1.651,1159,1.038,1164,0.876,1173,2.587,1192,2.266,1218,2.525,1240,2.143,1252,1.074,1254,1.276,1262,4.32,1323,1.951,1350,2.255,1356,2.043,1358,3.486,1359,4.785,1360,2.255,1361,4.32,1362,1.529,1363,4,1364,3.268,1365,4,1366,3.148,1367,3.486,1368,2.693,1369,4,1370,5.88,1371,2.381,1372,2.693,1373,1.37,1374,3.148,1375,2.043,1376,2.255,1377,4,1378,4,1379,2.895,1380,3.486,1381,2.043,1382,4,1383,4,1384,4,1385,3.486,1386,4,1387,3.148,1388,2.563,1389,3.148,1390,1.79,1391,4,1392,3.486,1393,3.148,1394,4.785,1395,2.525,1396,4,1397,4,1398,4,1399,7.304,1400,4,1401,4,1402,7.304,1403,4,1404,3.486,1405,4,1406,4,1407,5.49,1408,6.746,1409,4,1410,4,1411,2.895,1412,4,1413,5.49,1414,6.746,1415,5.49,1416,6.268,1417,4,1418,4,1419,6.268,1420,6.268,1421,7.07,1422,5.49,1423,4,1424,4,1425,5.49,1426,4,1427,5.49,1428,5.49,1429,6.268,1430,5.49,1431,5.49,1432,5.49,1433,5.49,1434,4,1435,4,1436,2.895,1437,1.79,1438,4,1439,2.143,1440,4,1441,4,1442,4,1443,4,1444,2.381,1445,3.486,1446,3.148,1447,4,1448,4,1449,5.49,1450,1.529,1451,4,1452,1.004,1453,4,1454,2.525,1455,2.693]],["tags/Bye autotools hello Scons",[2,1.283,254,2.642,1456,3.358]],["title/Custom Webdriver Page Factories",[1217,2.039,1457,2.265,1458,1.511,1459,3.316]],["content/Custom Webdriver Page Factories",[0,0.361,2,1.638,5,1.841,8,2.296,44,3.101,79,0.947,99,3.168,105,3.632,113,2.68,115,2.188,129,2.09,158,2.012,176,2.906,261,2.705,273,0.985,303,3.735,366,2.296,370,2.551,377,6.05,458,2.042,480,3.873,495,3.101,524,1.075,551,2.551,560,4.31,756,0.657,757,0.666,768,1.416,770,1.32,773,1.367,778,1.32,779,1.367,787,2.09,827,2.551,850,2.705,1028,2.188,1081,1.701,1128,1.232,1157,3.48,1158,3.866,1169,4.294,1181,2.416,1183,1.467,1210,2.416,1216,5.66,1217,2.296,1226,1.039,1241,1.416,1264,3.101,1292,1.638,1319,3.735,1348,3.101,1364,2.551,1450,1.638,1457,3.424,1458,2.874,1459,5.014,1460,4.285,1461,4.285,1462,2.705,1463,5.753,1464,4.285,1465,4.285,1466,2.551,1467,3.632,1468,3.101,1469,2.551,1470,3.101,1471,4.285,1472,2.705,1473,2.09,1474,6.941,1475,6.941,1476,5.753,1477,4.163,1478,5.753,1479,6.941,1480,6.941,1481,4.527,1482,4.285,1483,4.285,1484,2.188,1485,3.735,1486,4.285,1487,4.285,1488,5.014,1489,3.735,1490,3.372,1491,3.372,1492,1.918,1493,4.285,1494,4.285,1495,4.285,1496,5.014,1497,3.372,1498,4.285,1499,5.753,1500,6.494,1501,5.753,1502,4.285,1503,4.285,1504,4.285,1505,4.285,1506,5.753,1507,4.285,1508,4.285,1509,4.285,1510,4.285,1511,4.285,1512,6.494,1513,4.285,1514,4.285,1515,4.285,1516,5.753,1517,4.285,1518,4.285,1519,4.285,1520,4.285,1521,4.285]],["tags/Custom Webdriver Page Factories",[5,1.081,867,1.419,1200,1.589,1457,1.498,1522,2.194]],["title/Faking domain logic",[1155,2.18,1523,4.269,1524,2.541]],["content/Faking domain logic",[0,0.36,79,0.855,80,3.148,113,3.087,115,3.89,129,3.058,159,0.685,176,2.805,194,1.038,223,3.148,273,0.94,274,2.563,284,1.812,339,1.579,345,1.474,354,4.542,357,2.525,359,2.525,414,3.095,458,2.51,517,1.867,518,2.525,522,1.074,524,1.004,528,1.79,560,3.268,594,1.867,662,1.232,725,2.043,735,1.473,738,1.326,749,1.867,750,2.143,754,2.693,756,1.083,758,1.525,768,1.322,769,1.37,773,1.276,781,1.322,786,1.951,787,3.449,788,2.381,800,0.906,816,4.933,821,4.22,822,1.79,832,1.814,844,2.043,850,2.525,852,1.867,905,3.268,908,3.148,928,1.951,933,3.201,937,1.473,991,1.651,1013,2.678,1028,2.043,1038,3.148,1043,2.693,1044,3.148,1067,1.867,1076,1.074,1081,1.588,1123,1.867,1151,2.525,1155,3.445,1157,2.942,1164,0.876,1173,1.651,1210,2.255,1217,2.143,1222,1.951,1225,2.043,1226,0.97,1239,3.486,1241,1.322,1252,1.074,1253,2.255,1257,3.466,1286,2.043,1288,1.691,1336,2.358,1349,2.895,1356,2.043,1364,2.381,1373,1.37,1395,2.525,1466,3.731,1484,2.043,1524,3.731,1525,2.381,1526,3.973,1527,2.525,1528,3.486,1529,4,1530,3.148,1531,4.32,1532,2.895,1533,3.268,1534,6.162,1535,3.148,1536,4,1537,4,1538,3.486,1539,1.651,1540,3.486,1541,4.933,1542,3.486,1543,2.895,1544,1.651,1545,4,1546,3.148,1547,2.895,1548,1.951,1549,2.895,1550,4,1551,3.148,1552,4,1553,4,1554,4,1555,4.785,1556,7.07,1557,4,1558,4,1559,2.381,1560,4,1561,2.381,1562,3.486,1563,2.255,1564,4,1565,4,1566,3.486,1567,1.19,1568,4,1569,3.486,1570,2.043,1571,3.804,1572,3.148,1573,3.486,1574,2.895,1575,2.525,1576,3.486,1577,3.148,1578,2.693,1579,4,1580,3.486]],["tags/Faking domain logic",[1200,2.12,1581,2.642,1582,3.358]],["title/.NET Memory management VS JVM Memory management",[20,1.284,78,2.728,270,2.501,729,1.716,1583,2.258]],["content/.NET Memory management VS JVM Memory management",[0,0.201,3,3.455,5,2.025,20,3.426,76,2.201,78,4.834,79,0.836,159,0.807,165,2.977,273,0.807,276,1.558,345,1.266,404,4.822,405,4.822,470,2.3,480,3.175,487,3.413,497,3.175,542,3.413,610,1.872,707,2.025,725,2.408,729,2.703,738,0.997,757,0.546,773,1.955,778,1.453,779,1.504,780,1.068,781,2.025,791,1.144,793,1.537,796,4.11,808,2.3,816,3.711,832,1.558,842,1.615,851,3.413,852,2.201,858,2.11,866,2.201,872,1.872,904,3.175,933,3.476,991,2.529,1028,2.408,1081,2.433,1123,2.201,1145,1.183,1148,1.453,1164,1.032,1190,2.175,1222,2.3,1254,1.504,1389,3.711,1470,3.413,1583,3.711,1584,2.3,1585,2.977,1586,3.868,1587,3.175,1588,6.128,1589,4.716,1590,4.716,1591,4.11,1592,4.716,1593,4.11,1594,3.711,1595,3.711,1596,2.527,1597,3.175,1598,4.716,1599,4.716,1600,4.716,1601,3.413,1602,4.716,1603,4.11,1604,4.716,1605,4.716,1606,3.175,1607,6.673,1608,4.435,1609,3.178,1610,6.128,1611,6.511,1612,5.933,1613,4.716,1614,5.216,1615,2.659,1616,4.716,1617,4.716,1618,3.175,1619,4.716,1620,3.711,1621,4.716,1622,4.716,1623,4.716,1624,4.11,1625,4.716,1626,4.716,1627,4.297,1628,3.175,1629,3.413,1630,4.716,1631,7.207,1632,2.3,1633,4.716,1634,4.716,1635,4.435,1636,4.716,1637,4.716,1638,3.175,1639,4.716,1640,4.716]],["tags/.NET Memory management VS JVM Memory management",[20,1.288,1583,2.264,1607,2.508,1641,2.877]],["title/Unit Testing Extjs UI with Siesta",[661,1.536,662,1.057,1642,2.166,1643,2.701,1644,2.701]],["content/Unit Testing Extjs UI with Siesta",[0,0.35,1,2.406,6,0.989,79,1.068,105,2.406,114,1.573,132,1.705,158,1.059,159,0.652,161,1.946,166,0.924,167,2.149,176,1.705,198,4.245,249,4.449,273,0.652,282,1.779,286,1.096,339,1.527,345,1.641,366,2.845,370,2.269,387,2.566,442,1.636,458,1.353,515,1.059,520,1.946,551,2.269,552,2.758,661,2.376,662,2.386,702,2.269,708,2.999,725,3.12,729,1.513,738,1.123,745,1.705,756,0.936,757,0.441,758,1.475,762,2.999,768,1.259,773,1.694,779,1.216,780,0.863,781,1.259,783,0.956,784,1.859,791,0.924,793,0.956,809,1.637,828,2.376,830,2.566,834,2.566,842,1.305,844,1.946,889,3.161,909,2.042,921,1.573,926,2.993,1000,3.161,1013,2.59,1023,1.573,1033,2.269,1059,2.406,1081,1.513,1128,1.096,1134,2.149,1158,2.269,1159,0.989,1162,2.406,1166,1.457,1173,1.573,1183,1.818,1189,1.779,1192,1.573,1196,1.573,1211,2.269,1213,2.758,1217,2.042,1226,1.745,1241,1.754,1257,2.406,1323,1.859,1335,1.946,1375,1.946,1390,1.705,1444,2.269,1450,1.457,1455,3.575,1457,3.934,1458,2.108,1466,2.269,1477,2.758,1484,3.12,1490,4.178,1524,2.269,1528,3.322,1547,2.758,1576,3.322,1585,2.406,1586,4.66,1594,4.178,1596,2.042,1597,4.449,1618,2.566,1620,2.999,1632,1.859,1635,2.758,1642,4.753,1643,5.468,1644,4.178,1645,4.178,1646,3.322,1647,2.758,1648,3.322,1649,3.843,1650,3.811,1651,3.322,1652,3.322,1653,3.811,1654,4.178,1655,3.811,1656,2.999,1657,4.178,1658,2.042,1659,2.042,1660,2.376,1661,3.811,1662,3.811,1663,3.811,1664,3.811,1665,2.758,1666,3.811,1667,2.406,1668,3.811,1669,3.322,1670,2.406,1671,2.59,1672,1.573,1673,3.322,1674,2.999,1675,3.811,1676,3.811,1677,3.811,1678,2.758,1679,3.322,1680,2.269,1681,3.322,1682,3.811,1683,3.322,1684,3.811,1685,3.811,1686,3.811,1687,2.845,1688,1.946,1689,1.859,1690,2.269,1691,3.811,1692,3.322,1693,3.322,1694,3.322,1695,4.627,1696,3.811,1697,3.811,1698,3.811,1699,1.946,1700,3.322,1701,3.322,1702,3.811,1703,3.322,1704,3.811,1705,3.811,1706,3.811,1707,3.811,1708,3.811,1709,3.811,1710,3.811,1711,3.811,1712,3.811,1713,3.811,1714,3.811,1715,3.811,1716,3.811]],["tags/Unit Testing Extjs UI with Siesta",[198,1.622,867,1.622,1642,1.816,1644,2.264]],["title/Archive by Year: 2014",[7,1.631,1152,1.071,1717,3.72]],["content/Archive by Year: 2014",[0,0.323,7,2.545,1717,5.805]],["tags/Archive by Year: 2014",[]],["title/Webdriver Exception Handling",[1457,2.541,1718,1.993,1719,3.089]],["content/Webdriver Exception Handling",[0,0.363,6,1.439,8,2.174,79,0.926,86,1.832,99,1.979,113,1.674,115,2.831,129,1.979,132,2.825,158,1.127,159,1.081,165,3.499,166,0.984,172,1.61,273,0.949,297,2.731,339,1.594,345,1.089,354,2.731,366,2.174,370,3.759,400,2.731,458,1.44,470,2.704,490,3.536,521,3.536,522,1.089,524,1.391,551,2.415,662,2.26,668,3.536,757,0.641,758,1.127,770,1.25,784,2.704,787,1.979,791,0.984,800,1.43,844,2.072,928,1.979,937,1.494,989,2.287,1004,2.731,1090,2.936,1115,2.381,1120,2.174,1128,1.166,1139,1.674,1157,2.174,1164,0.888,1169,2.287,1173,1.674,1183,2.162,1187,2.287,1190,1.44,1205,2.287,1225,2.072,1227,2.072,1235,4.362,1236,2.936,1241,1.34,1252,1.089,1264,2.936,1320,3.536,1324,3.192,1335,2.072,1336,1.742,1390,1.815,1457,3.3,1467,2.561,1469,2.415,1472,2.561,1490,3.192,1541,3.192,1542,3.536,1544,1.674,1585,2.561,1645,4.362,1683,3.536,1718,3.505,1719,2.936,1720,3.536,1721,4.057,1722,7.105,1723,3.499,1724,3.3,1725,2.936,1726,4.057,1727,4.057,1728,3.536,1729,4.057,1730,2.936,1731,2.561,1732,4.057,1733,2.072,1734,2.174,1735,4.057,1736,4.831,1737,5.543,1738,6.192,1739,5.543,1740,4.057,1741,3.732,1742,5.543,1743,3.536,1744,4.057,1745,2.936,1746,4.057,1747,4.057,1748,4.057,1749,4.057,1750,2.936,1751,4.057,1752,4.057,1753,4.057,1754,4.362,1755,4.057,1756,7.508,1757,4.057,1758,4.057,1759,4.057,1760,4.057,1761,5.543,1762,4.057,1763,3.536,1764,4.057,1765,4.057,1766,4.057,1767,4.057,1768,3.499,1769,4.057,1770,4.057,1771,4.057,1772,4.057,1773,4.057,1774,4.057,1775,4.057,1776,5.543,1777,4.057,1778,3.192,1779,4.057,1780,4.057,1781,2.561,1782,3.536,1783,4.057,1784,2.287,1785,4.057,1786,4.057,1787,4.057,1788,4.057,1789,4.057,1790,4.057]],["tags/Webdriver Exception Handling",[867,1.622,1200,1.816,1457,1.713,1522,2.508]],["title/Archive by Year: 2015",[7,1.631,1152,1.071,1791,3.72]],["content/Archive by Year: 2015",[0,0.323,7,2.545,1791,5.805]],["tags/Archive by Year: 2015",[]],["title/Migrating from Extjs to React gradually",[1642,2.402,1792,2.994,1793,2.994,1794,3.805]],["content/Migrating from Extjs to React gradually",[0,0.363,1,2.475,2,1.499,6,1.406,11,2.838,45,0.984,79,0.958,86,2.21,103,2.64,113,1.618,114,1.618,121,1.913,144,2.101,159,0.671,172,1.557,194,1.018,198,2.211,249,4.504,255,1.499,261,2.475,274,1.83,277,2.211,279,2.211,287,1.618,339,1.127,359,2.475,366,2.902,370,3.224,466,2.101,480,2.64,482,2.334,522,1.053,524,0.984,541,3.086,620,1.444,662,1.208,702,2.334,725,2.765,729,1.557,737,2.211,745,1.755,756,0.95,757,0.718,768,1.296,778,1.208,780,0.888,781,1.296,785,2.838,799,1.557,820,2.64,836,1.83,842,1.854,844,2.765,870,2.475,933,2.002,937,1.444,954,3.418,982,3.086,985,2.838,989,2.211,1000,2.334,1047,1.557,1059,2.475,1087,2.002,1117,1.755,1155,2.002,1159,1.018,1167,2.211,1173,1.618,1217,2.902,1222,2.641,1225,2.002,1226,0.951,1237,1.618,1241,1.789,1293,1.755,1327,2.838,1353,1.618,1388,1.83,1444,2.334,1466,2.334,1467,2.475,1477,2.838,1524,2.334,1527,2.475,1544,1.618,1586,4.431,1594,4.881,1618,3.646,1642,4.431,1643,3.086,1645,3.086,1649,3.919,1652,4.72,1656,4.261,1667,2.475,1673,5.406,1695,5.83,1754,4.261,1792,3.086,1793,5.524,1795,1.755,1796,3.921,1797,2.838,1798,3.921,1799,2.838,1800,3.921,1801,3.921,1802,3.921,1803,3.921,1804,2.101,1805,3.921,1806,3.921,1807,3.086,1808,2.211,1809,3.921,1810,3.921,1811,3.418,1812,5.406,1813,2.64,1814,6.203,1815,3.418,1816,3.921,1817,3.919,1818,3.921,1819,3.418,1820,3.921,1821,3.921,1822,3.418,1823,3.921,1824,3.086,1825,3.921,1826,3.418,1827,3.921,1828,3.921,1829,5.415,1830,3.921,1831,3.921,1832,3.921,1833,3.921,1834,3.921,1835,3.921,1836,3.921,1837,3.921,1838,3.418,1839,3.921,1840,3.418,1841,3.921,1842,3.921,1843,3.921,1844,3.921,1845,3.921,1846,3.921,1847,3.921,1848,3.921,1849,2.838,1850,5.406,1851,3.418,1852,3.921,1853,3.921,1854,3.921,1855,2.902,1856,2.838,1857,3.921,1858,3.921,1859,3.921,1860,3.921,1861,3.921,1862,5.415,1863,3.418,1864,3.921,1865,3.921,1866,3.921,1867,3.921,1868,3.921,1869,3.921,1870,3.921,1871,3.921,1872,3.921]],["tags/Migrating from Extjs to React gradually",[198,1.893,1642,2.12,1793,2.642]],["title/Unit testing in Legacy Projects: VB6",[661,1.536,662,1.057,921,1.416,1527,2.166,1873,2.701]],["content/Unit testing in Legacy Projects: VB6",[0,0.285,2,1.492,3,3.489,6,1.013,46,2.092,76,2.889,79,0.737,86,1.784,115,1.993,132,3.244,158,1.719,159,0.668,160,2.825,165,3.408,167,2.201,172,1.55,263,2.201,276,1.29,284,1.048,286,1.552,287,2.228,314,2.092,345,1.048,356,3.072,373,2.324,413,3.072,425,2.092,447,3.408,457,2.324,458,2.688,508,1.663,522,1.048,524,0.979,610,1.55,620,1.988,661,3.136,662,2.442,684,2.628,698,2.464,704,3.764,707,1.676,738,0.826,745,1.747,748,2.628,749,1.822,752,1.492,756,0.948,757,0.772,758,1.085,768,2.045,770,1.663,772,1.841,773,1.245,778,1.203,780,1.223,791,0.947,792,2.201,793,0.979,800,1.223,811,2.201,812,2.201,822,1.747,829,1.993,836,1.822,842,1.848,846,2.464,866,1.822,921,3.317,991,1.611,994,3.402,1001,2.628,1009,3.634,1013,1.904,1021,1.904,1023,1.611,1058,2.324,1062,2.464,1101,2.554,1116,1.676,1120,3.316,1123,1.822,1133,2.633,1134,2.201,1148,1.203,1164,0.854,1166,1.492,1173,1.611,1187,2.201,1192,1.611,1212,1.747,1241,1.29,1243,2.143,1326,3.408,1353,1.611,1355,1.822,1362,1.492,1364,2.324,1388,1.822,1444,2.324,1452,1.354,1454,2.464,1455,2.628,1526,2.825,1527,2.464,1533,2.324,1534,4.705,1578,2.628,1585,2.464,1586,2.464,1595,3.072,1609,1.822,1611,3.402,1670,2.464,1688,1.993,1745,3.907,1795,1.747,1808,3.489,1812,3.402,1849,3.907,1873,4.87,1874,3.903,1875,3.903,1876,6.677,1877,3.903,1878,1.611,1879,3.903,1880,2.825,1881,3.903,1882,3.402,1883,3.903,1884,2.464,1885,3.402,1886,2.628,1887,3.903,1888,3.903,1889,3.903,1890,3.903,1891,3.903,1892,3.903,1893,5.398,1894,5.398,1895,3.903,1896,3.903,1897,6.188,1898,3.903,1899,3.903,1900,3.903,1901,3.402,1902,3.903,1903,3.903,1904,3.903,1905,5.398,1906,3.402,1907,2.825,1908,3.903,1909,3.903,1910,3.903,1911,2.628,1912,3.903,1913,3.903,1914,3.903,1915,5.398,1916,3.903,1917,3.903,1918,2.628,1919,2.324,1920,3.903,1921,3.903,1922,3.903,1923,3.903,1924,3.903,1925,3.903,1926,3.072,1927,3.072,1928,3.402,1929,3.402,1930,3.402,1931,3.072,1932,3.903,1933,3.402]],["tags/Unit testing in Legacy Projects: VB6",[867,2.273,1873,3.172]],["title/Archive by Year: 2016",[7,1.631,1152,1.071,1934,3.359]],["content/Archive by Year: 2016",[0,0.323,7,2.545,1934,5.241]],["tags/Archive by Year: 2016",[]],["title/How to teach kids to program",[887,1.762,1935,1.515,1936,3.089]],["content/How to teach kids to program",[0,0.31,6,1.012,45,0.978,79,0.532,107,2.32,121,1.901,158,1.083,159,1.142,168,2.821,169,1.16,180,0.914,247,1.901,255,1.49,272,1.744,273,1.058,282,1.819,283,2.624,284,1.66,286,1.778,339,1.551,481,2.624,515,1.083,517,1.819,530,1.551,532,1.609,594,1.819,647,2.821,659,3.397,704,3.486,729,2.141,738,1.141,752,1.49,756,0.826,757,0.451,758,1.083,763,2.46,769,1.335,771,2.89,772,1.16,778,1.201,779,1.243,783,0.978,784,3.255,793,0.978,799,1.547,800,0.883,806,2.088,842,1.335,887,2.754,989,2.197,1024,2.624,1034,2.624,1067,1.819,1099,2.624,1109,2.32,1115,1.674,1122,1.435,1128,1.121,1140,3.313,1145,1.353,1152,0.978,1164,1.703,1166,1.49,1187,2.197,1189,1.819,1208,1.99,1210,2.197,1211,2.32,1212,1.744,1226,1.499,1227,2.754,1240,2.088,1243,1.547,1252,1.448,1282,2.624,1288,1.201,1292,1.49,1311,2.624,1323,1.901,1350,3.04,1353,1.609,1355,1.819,1371,2.32,1372,2.624,1373,1.335,1375,1.99,1376,2.197,1439,2.088,1452,0.978,1467,2.46,1472,4.212,1484,1.99,1525,2.32,1544,1.609,1567,1.84,1584,1.901,1596,2.088,1609,3.115,1629,2.821,1632,1.901,1659,2.088,1671,1.901,1672,2.226,1784,2.197,1935,1.914,1936,4.829,1937,3.397,1938,3.898,1939,3.067,1940,3.397,1941,3.898,1942,2.197,1943,3.067,1944,3.898,1945,3.898,1946,2.821,1947,4.475,1948,3.898,1949,3.397,1950,3.397,1951,3.898,1952,3.898,1953,3.898,1954,3.067,1955,3.898,1956,4.244,1957,3.949,1958,2.088,1959,2.754,1960,1.243,1961,2.46,1962,3.898,1963,2.821,1964,3.397,1965,2.46,1966,5.393,1967,2.197,1968,2.89,1969,3.067,1970,3.898,1971,3.898,1972,3.067,1973,2.226,1974,1.819,1975,2.821,1976,3.898,1977,3.898,1978,3.898,1979,3.397,1980,3.397,1981,3.397,1982,3.898,1983,3.067,1984,3.898,1985,3.067,1986,2.46,1987,3.067,1988,5.393,1989,1.121,1990,3.898,1991,4.163,1992,2.821,1993,3.898,1994,3.397,1995,3.04,1996,3.397,1997,2.46,1998,4.7,1999,4.244,2000,3.898,2001,1.99,2002,3.898,2003,3.898,2004,3.313,2005,1.901,2006,3.397,2007,5.393,2008,2.821,2009,2.32,2010,1.99,2011,2.821,2012,3.067,2013,3.898,2014,3.898,2015,3.898,2016,3.067,2017,2.821,2018,2.32,2019,3.898,2020,3.397,2021,5.251,2022,3.397,2023,3.898,2024,3.898,2025,3.898,2026,2.197,2027,3.397,2028,3.397]],["tags/How to teach kids to program",[887,1.386,1935,1.192,1940,2.927]],["title/Development principles in cooking",[6,1.108,1959,2.18,2029,2.407]],["content/Development principles in cooking",[0,0.264,6,1.007,14,1.811,79,0.842,114,2.886,126,2.188,144,2.079,158,1.943,159,1.27,166,0.941,171,1.981,172,2.449,173,2.808,180,0.909,225,3.053,247,1.893,255,1.483,273,0.92,277,3.031,278,1.329,468,1.483,482,2.31,508,1.9,517,1.811,522,1.042,530,1.915,532,2.748,620,1.429,702,3.2,737,2.188,738,0.821,756,0.824,757,0.449,758,1.078,766,1.601,769,1.329,770,1.195,771,2.079,773,1.238,779,1.238,780,1.397,781,1.282,783,1.671,784,1.893,791,0.941,792,2.188,799,2.134,872,1.54,889,2.31,958,2.079,991,2.546,1076,1.042,1101,1.601,1115,2.309,1126,3.382,1133,1.893,1134,2.188,1145,1.815,1152,1.349,1159,1.395,1161,2.449,1165,2.079,1166,2.358,1182,2.31,1183,1.329,1192,1.601,1205,3.031,1225,1.981,1226,1.496,1229,1.981,1237,2.219,1243,1.54,1252,1.042,1257,2.449,1277,2.449,1288,1.656,1292,1.483,1315,2.644,1372,2.612,1385,3.382,1388,1.811,1436,2.808,1450,1.483,1452,0.973,1454,2.449,1492,1.736,1547,3.891,1548,1.893,1567,1.982,1574,2.808,1575,3.394,1587,2.612,1609,1.811,1687,2.079,1734,2.079,1784,2.188,1855,2.079,1957,2.188,1959,1.981,1960,1.238,1973,1.601,1989,1.546,2001,1.981,2004,2.88,2029,4.329,2030,1.601,2031,2.079,2032,4.685,2033,5.241,2034,3.382,2035,6.169,2036,3.88,2037,3.88,2038,3.88,2039,3.053,2040,3.88,2041,3.88,2042,2.449,2043,3.891,2044,5.376,2045,3.88,2046,2.449,2047,3.891,2048,3.2,2049,3.394,2050,3.88,2051,2.188,2052,3.88,2053,3.382,2054,3.88,2055,3.053,2056,3.619,2057,3.382,2058,2.612,2059,3.88,2060,4.685,2061,3.88,2062,3.382,2063,3.382,2064,3.88,2065,3.88,2066,2.612,2067,4.23,2068,3.88,2069,3.88,2070,3.382,2071,3.053,2072,6.169,2073,3.88,2074,3.382,2075,4.685,2076,3.88,2077,3.88,2078,3.88,2079,3.88,2080,3.382,2081,3.88,2082,3.382,2083,5.376,2084,3.88,2085,3.382,2086,4.685,2087,3.382,2088,3.053,2089,2.808,2090,3.053,2091,3.88,2092,3.88,2093,3.382,2094,2.31,2095,3.88,2096,3.88,2097,3.382,2098,2.808,2099,3.053,2100,3.88,2101,5.376,2102,3.88,2103,3.88,2104,3.88,2105,3.88,2106,3.88,2107,3.88,2108,3.88,2109,3.88,2110,3.88,2111,3.053,2112,3.053,2113,3.88]],["tags/Development principles in cooking",[6,0.872,1959,1.715,2029,1.893]],["title/A quick look at 6 fountain pens",[194,0.891,263,1.935,1058,2.043,2114,2.991,2115,2.484]],["content/A quick look at 6 fountain pens",[0,0.263,3,2.171,45,0.966,79,0.73,86,1.273,169,1.146,170,2.431,180,0.903,194,1.874,263,2.171,286,1.107,345,1.783,366,2.064,405,3.031,425,2.064,442,1.186,468,1.472,471,2.731,508,1.893,517,1.798,522,1.034,530,1.107,594,2.497,662,1.648,735,1.969,738,1.131,752,2.044,756,0.941,757,0.619,758,1.486,767,2.593,768,1.273,770,1.186,772,1.146,773,1.706,781,1.273,783,0.966,791,1.297,793,1.541,800,0.872,808,1.878,829,1.967,830,4.137,831,1.967,832,1.767,836,1.798,842,1.319,886,2.064,900,3.031,909,2.064,991,1.589,1021,1.878,1037,1.529,1058,2.292,1067,1.798,1073,2.171,1122,1.418,1133,2.609,1144,1.878,1145,0.966,1158,2.292,1166,1.472,1167,2.171,1183,1.319,1192,1.589,1196,1.589,1210,3.015,1217,2.064,1218,2.431,1226,1.297,1237,1.589,1252,1.034,1288,1.186,1309,1.878,1315,1.529,1316,3.031,1356,1.967,1360,2.171,1362,1.472,1375,1.967,1437,1.723,1444,2.292,1485,3.356,1492,2.393,1497,3.031,1539,1.589,1559,2.292,1567,1.146,1596,2.064,1608,3.871,1609,1.798,1667,2.431,1672,1.589,1719,2.787,1804,2.064,1822,3.356,1855,2.064,1856,2.787,1919,2.292,1939,3.031,1961,2.431,1963,2.787,2010,1.967,2026,2.171,2039,3.031,2048,2.292,2087,4.661,2114,6.079,2115,5.837,2116,2.171,2117,2.292,2118,3.851,2119,3.015,2120,2.593,2121,7.761,2122,3.851,2123,5.348,2124,6.144,2125,3.356,2126,3.356,2127,2.431,2128,4.661,2129,3.851,2130,3.851,2131,3.356,2132,3.356,2133,3.851,2134,3.851,2135,3.851,2136,3.851,2137,3.851,2138,3.851,2139,3.851,2140,5.348,2141,5.348,2142,3.356,2143,2.292,2144,3.851,2145,3.356,2146,3.851,2147,3.851,2148,5.224,2149,2.787,2150,3.851,2151,3.851,2152,3.851,2153,3.851,2154,5.348,2155,5.348,2156,3.851,2157,3.851,2158,3.851,2159,3.356,2160,5.348,2161,4.209,2162,3.851,2163,3.851,2164,3.851,2165,3.031,2166,3.851,2167,3.851,2168,5.348,2169,3.851,2170,2.593,2171,3.356,2172,5.348,2173,2.593,2174,3.356,2175,2.787,2176,3.356,2177,2.292,2178,3.851,2179,3.851,2180,2.787,2181,1.878,2182,3.031,2183,3.851,2184,3.851,2185,2.593,2186,6.144,2187,3.851,2188,6.144,2189,3.851,2190,3.851,2191,3.851,2192,3.851,2193,5.348,2194,3.851,2195,3.851,2196,3.851,2197,3.851,2198,3.356,2199,3.031,2200,5.348,2201,3.356,2202,2.787,2203,3.851,2204,3.851,2205,3.851,2206,3.851,2207,3.851,2208,3.851]],["tags/A quick look at 6 fountain pens",[2209,4.394]],["title/Archive by Year: 2017",[7,1.631,1152,1.071,2210,2.541]],["content/Archive by Year: 2017",[0,0.323,7,2.545,2210,3.965]],["tags/Archive by Year: 2017",[]],["title/Hiding Code Complexity",[126,2.407,458,1.515,2098,3.089]],["content/Hiding Code Complexity",[0,0.357,6,1.401,14,1.822,45,0.979,56,5.254,79,0.844,99,3.018,113,1.611,114,2.756,126,4.189,129,3.018,158,1.085,159,1.059,167,3.489,274,1.822,276,1.29,278,1.848,284,1.45,287,1.611,306,2.628,314,2.092,345,1.048,357,3.906,359,2.464,414,2.201,466,2.092,476,3.402,513,2.201,515,1.5,522,1.048,524,1.552,529,1.822,530,1.779,660,2.825,675,2.825,738,1.412,750,2.893,752,1.492,756,1.023,758,1.855,769,1.337,772,1.841,783,1.758,787,3.018,791,0.947,800,0.884,820,3.634,831,1.993,836,2.52,928,1.904,1034,2.628,1076,1.048,1099,2.628,1101,1.611,1117,1.747,1138,2.324,1144,1.904,1148,1.203,1153,2.825,1164,1.182,1165,2.893,1167,3.044,1169,3.489,1187,2.201,1189,2.889,1192,1.611,1241,1.29,1243,1.55,1252,1.662,1257,2.464,1262,3.072,1288,1.663,1292,1.492,1293,1.747,1335,1.993,1343,4.248,1349,2.825,1353,1.611,1373,1.337,1374,3.072,1390,1.747,1436,2.825,1450,1.492,1452,1.552,1484,1.993,1527,3.906,1544,2.228,1548,1.904,1584,1.904,1609,1.822,1635,2.825,1658,2.893,1687,2.092,1688,1.993,1855,2.092,1878,1.611,1987,3.072,2016,3.072,2030,1.611,2058,4.166,2098,3.907,2211,3.072,2212,3.903,2213,3.402,2214,2.324,2215,2.825,2216,3.903,2217,5.398,2218,3.402,2219,3.903,2220,3.072,2221,3.072,2222,2.628,2223,7.249,2224,7.009,2225,7.009,2226,4.705,2227,5.398,2228,3.402,2229,3.903,2230,2.464,2231,3.903,2232,3.072,2233,2.628,2234,4.705,2235,6.677,2236,3.903,2237,7.573,2238,3.402,2239,3.903,2240,5.398,2241,3.903,2242,3.903,2243,3.903,2244,5.398,2245,6.188,2246,3.903,2247,3.903,2248,3.903,2249,3.402,2250,3.402,2251,3.903,2252,3.903,2253,3.072,2254,2.825,2255,3.903,2256,2.464,2257,3.903,2258,3.903,2259,3.903]],["tags/Hiding Code Complexity",[1581,3.968]],["title/Death to pseudocode?",[2260,4.861,2261,4.237]],["content/Death to pseudocode?",[0,0.361,5,2.608,29,2.726,41,5.444,42,5.174,43,3.283,45,2.005,46,2.018,79,0.514,90,4.15,99,2.569,105,2.378,126,2.969,129,2.962,159,0.902,169,1.121,170,2.378,180,1.234,196,2.356,199,2.964,273,0.645,274,3.069,275,2.458,276,1.74,278,1.29,279,2.124,284,1.414,339,1.083,344,2.726,345,1.012,458,2.665,520,1.924,527,2.964,530,1.083,578,5.292,594,1.758,620,1.387,656,2.964,667,3.283,702,2.242,707,1.618,735,1.387,738,1.114,749,1.758,756,0.93,757,0.436,766,1.555,768,1.245,771,2.018,772,1.567,773,1.937,774,2.726,787,2.962,793,0.945,826,2.726,850,2.378,886,2.018,937,1.387,939,2.536,963,3.283,1013,1.837,1037,1.495,1058,2.242,1076,1.012,1095,4.778,1099,2.536,1109,2.242,1115,1.618,1145,0.945,1159,0.978,1164,1.153,1165,2.018,1183,1.29,1191,1.924,1208,1.924,1210,2.124,1254,1.202,1286,1.924,1288,1.16,1310,2.378,1311,2.536,1348,3.811,1367,6.03,1373,1.29,1394,3.283,1411,2.726,1452,0.945,1467,2.378,1473,1.837,1492,1.686,1530,2.964,1559,2.242,1563,2.124,1567,1.121,1570,1.924,1574,4.758,1606,2.536,1632,1.837,1647,2.726,1671,1.837,1718,1.758,1781,2.378,1878,1.555,1901,3.283,1950,3.283,1958,2.018,2001,2.689,2021,2.964,2066,2.536,2098,2.726,2142,3.283,2214,2.242,2261,6.648,2262,4.144,2263,2.536,2264,2.536,2265,3.767,2266,1.495,2267,3.283,2268,2.726,2269,3.767,2270,3.283,2271,2.726,2272,3.767,2273,3.767,2274,2.536,2275,2.536,2276,2.726,2277,3.767,2278,2.726,2279,3.283,2280,3.767,2281,3.767,2282,3.767,2283,3.767,2284,3.283,2285,3.283,2286,4.144,2287,2.964,2288,2.964,2289,6.575,2290,3.767,2291,3.253,2292,3.767,2293,5.266,2294,5.266,2295,4.394,2296,6.072,2297,6.072,2298,6.072,2299,6.575,2300,6.072,2301,3.283,2302,3.767,2303,3.767,2304,3.767,2305,3.767,2306,2.964,2307,3.767,2308,3.767,2309,3.767,2310,3.767,2311,3.767,2312,3.767,2313,3.767,2314,2.964,2315,2.964,2316,3.767,2317,3.767,2318,3.767]],["tags/Death to pseudocode?",[5,1.731,1201,3.513]],["title/Thinking in terms of objects",[176,1.91,1145,1.071,2319,2.18]],["content/Thinking in terms of objects",[0,0.356,79,0.537,105,2.483,113,1.623,121,1.919,159,1.064,160,2.847,161,2.771,169,1.17,176,3.145,180,0.922,196,3.145,273,0.673,274,1.836,276,1.3,278,1.347,306,4.183,345,1.056,357,4.587,359,4.79,442,1.212,466,2.107,496,3.426,522,1.457,530,1.56,594,2.533,610,2.154,619,3.012,670,4.73,705,2.009,735,1.448,738,0.832,757,0.719,758,1.093,760,1.689,763,3.426,768,1.3,772,1.993,781,1.793,790,5.787,791,0.954,797,4.51,800,0.891,821,2.648,827,2.341,839,3.428,887,1.623,905,3.23,1015,2.648,1037,2.467,1099,2.648,1116,2.331,1117,1.76,1144,2.647,1145,0.987,1148,1.212,1165,2.107,1166,1.503,1167,2.218,1173,1.623,1182,2.341,1186,2.847,1187,3.503,1190,1.926,1210,2.218,1252,1.056,1281,3.095,1287,2.648,1336,1.689,1371,2.341,1388,1.836,1452,1.559,1484,2.009,1491,6.195,1492,1.76,1546,4.27,1548,1.919,1571,2.218,1577,3.095,1632,1.919,1734,2.107,1804,2.107,1878,1.623,1919,3.23,1974,1.836,1989,1.131,1997,2.483,2185,3.654,2253,3.095,2262,3.095,2275,2.648,2288,5.718,2319,2.009,2320,3.428,2321,3.428,2322,3.933,2323,5.427,2324,6.213,2325,5.013,2326,3.428,2327,3.933,2328,4.51,2329,5.427,2330,3.933,2331,5.427,2332,5.427,2333,3.933,2334,3.933,2335,3.095,2336,3.933,2337,3.933,2338,8.191,2339,3.095,2340,3.933,2341,2.483,2342,3.428,2343,3.933,2344,2.847,2345,5.838,2346,3.933,2347,3.095,2348,5.427,2349,5.427,2350,3.933]],["tags/Thinking in terms of objects",[1935,1.79]],["title/Teaching by philosophy",[1935,1.726,2351,3.069]],["content/Teaching by philosophy",[0,0.34,5,3.363,45,0.959,46,2.851,79,0.522,86,1.758,113,1.578,159,1.133,166,0.927,180,0.896,194,0.992,196,2.381,247,2.595,273,0.911,274,1.784,276,1.263,306,2.574,314,2.048,339,1.099,457,3.939,466,2.851,468,2.752,508,1.885,518,2.413,522,1.027,524,0.959,530,1.53,619,1.518,682,3.582,701,3.008,707,1.642,735,1.959,738,1.125,756,0.586,758,1.478,774,2.767,778,2.038,780,0.866,782,3.167,783,1.66,785,2.767,787,1.865,791,1.687,799,1.518,827,2.276,836,1.784,842,2.266,844,2.717,852,1.784,872,2.112,958,2.048,1047,1.518,1067,1.784,1076,1.429,1096,4.637,1128,1.099,1145,0.959,1152,1.335,1159,1.381,1161,2.413,1208,3.125,1218,2.413,1222,1.865,1226,0.927,1241,1.263,1252,1.429,1253,2.155,1288,1.178,1353,1.578,1364,3.167,1387,3.008,1437,2.381,1450,1.461,1452,1.807,1466,4.141,1524,3.167,1531,3.008,1533,2.276,1539,3.11,1543,2.767,1567,1.138,1627,2.413,1651,3.332,1667,2.413,1678,2.767,1718,1.784,1799,2.767,1935,1.357,1947,2.767,1958,3.279,1974,2.484,1989,2.124,2030,2.196,2046,2.413,2071,3.008,2094,2.276,2170,3.582,2177,2.276,2181,2.595,2222,2.574,2266,2.112,2276,2.767,2287,4.816,2335,4.816,2342,3.332,2352,2.574,2353,3.008,2354,3.332,2355,2.767,2356,4.683,2357,3.823,2358,4.816,2359,3.851,2360,6.12,2361,3.863,2362,2.767,2363,5.32,2364,2.574,2365,3.332,2366,2.767,2367,3.332,2368,4.637,2369,2.574,2370,3.823,2371,3.823,2372,3.823,2373,3.823,2374,3.823,2375,3.823,2376,3.008,2377,2.767,2378,3.823,2379,3.823,2380,3.823,2381,3.823,2382,3.332,2383,3.823,2384,4.455,2385,3.332,2386,3.008,2387,3.823,2388,3.823,2389,3.008,2390,4.683,2391,3.167,2392,5.32,2393,5.32,2394,3.851,2395,5.32,2396,4.187,2397,3.851,2398,3.823,2399,3.332,2400,3.823,2401,3.823,2402,3.823,2403,3.823,2404,3.823,2405,3.823,2406,3.008]],["tags/Teaching by philosophy",[1935,1.431,2351,2.545]],["title/Computer Science learning pathways",[1208,1.943,1958,2.039,1989,1.094,2407,3.805]],["content/Computer Science learning pathways",[0,0.284,2,2.537,3,3.015,6,1.723,19,2.431,45,1.342,166,0.934,169,1.146,171,1.967,180,1.253,194,1.388,196,2.97,252,1.146,272,2.393,278,1.831,282,1.798,286,1.538,344,4.804,442,1.186,447,3.376,457,2.292,458,1.898,466,2.064,468,2.044,471,2.731,508,1.648,515,1.486,545,2.787,620,1.418,669,3.031,735,1.418,738,0.815,755,2.787,756,0.59,757,0.446,766,1.589,770,1.186,780,1.211,786,1.878,788,2.292,791,0.934,793,1.342,800,0.872,809,1.654,828,1.723,836,1.798,842,1.831,852,1.798,856,2.292,872,1.529,887,2.979,915,5.826,918,3.031,928,1.878,1009,2.593,1028,1.967,1037,1.529,1047,1.529,1062,2.431,1067,1.798,1087,1.967,1114,2.431,1117,1.723,1125,2.593,1134,2.171,1138,2.292,1148,1.186,1152,1.75,1181,2.171,1182,2.292,1183,1.319,1190,1.898,1208,3.562,1214,2.787,1226,0.934,1229,1.967,1253,2.171,1254,1.706,1257,2.431,1288,1.186,1293,2.393,1356,1.967,1376,3.932,1411,2.787,1437,1.723,1450,1.472,1452,1.541,1524,3.184,1527,2.431,1533,3.184,1535,3.031,1539,2.207,1544,1.589,1567,1.591,1597,2.593,1658,2.064,1660,1.723,1672,1.589,1688,1.967,1699,1.967,1880,2.787,1928,3.356,1936,2.787,1958,3.292,1960,1.228,1963,2.787,1968,2.866,1973,2.879,1997,3.376,2001,1.967,2060,3.356,2117,2.292,2143,2.292,2181,1.878,2263,4.469,2266,2.123,2287,4.209,2315,3.031,2335,4.209,2352,2.593,2353,3.031,2354,3.356,2355,2.787,2356,2.593,2408,4.673,2409,6.291,2410,2.593,2411,3.851,2412,3.851,2413,3.851,2414,3.851,2415,3.031,2416,3.851,2417,3.356,2418,3.851,2419,3.031,2420,3.851,2421,2.787,2422,5.348,2423,3.851,2424,7.91,2425,2.593,2426,3.851,2427,3.031,2428,5.348,2429,2.431,2430,3.851,2431,3.851,2432,1.878,2433,3.356,2434,3.851,2435,3.356,2436,3.356,2437,3.184,2438,3.851,2439,3.851,2440,3.851,2441,2.593,2442,3.851,2443,2.593,2444,3.851,2445,6.144,2446,4.137,2447,2.431,2448,2.064,2449,3.356,2450,3.851,2451,3.851,2452,3.356,2453,3.356,2454,3.851,2455,5.348,2456,3.031,2457,5.348,2458,3.851,2459,3.356,2460,3.851,2461,3.031,2462,3.851]],["tags/Computer Science learning pathways",[1935,1.431,2463,2.16]],["title/A Ph.D. Thesis Proposal",[2127,2.695,2394,3.089,2464,3.359]],["content/A Ph.D. Thesis Proposal",[0,0.262,21,2.721,23,3.515,25,2.304,26,3.736,30,2.177,32,3.284,33,2.177,34,3.284,38,2.992,39,3.182,40,1.925,44,2.341,45,0.811,50,1.733,55,3.479,57,2.545,60,1.733,63,3.521,65,1.652,68,1.823,74,3.036,102,2.53,107,2.811,123,4.439,128,2.992,133,2.042,136,1.925,137,1.823,138,2.412,141,2.811,142,3.508,151,3.148,152,4.116,155,2.545,169,0.962,175,3.479,181,1.925,183,2.341,186,3.321,211,2.545,212,2.819,213,2.819,225,2.545,229,1.578,231,2.341,233,3.418,243,3.179,244,2.341,248,3.756,252,1.405,255,1.236,296,3.716,307,1.823,309,2.545,324,1.925,331,2.721,353,1.925,367,1.652,431,2.341,438,1.578,508,1.455,607,2.545,608,1.925,610,1.284,630,3.179,653,3.832,655,2.341,673,2.177,724,2.545,746,2.545,756,0.496,783,0.811,893,2.545,983,2.819,1037,1.875,1151,2.042,1253,1.823,1390,1.447,1452,1.809,1454,2.042,1659,1.733,1804,3.287,2119,1.823,2127,2.042,2181,1.578,2266,2.435,2365,2.819,2376,2.545,2377,2.341,2394,2.341,2432,3.323,2447,2.042,2464,2.545,2465,2.819,2466,3.234,2467,2.819,2468,4.116,2469,4.722,2470,3.234,2471,3.234,2472,3.234,2473,4.116,2474,3.716,2475,6.524,2476,4.722,2477,5.578,2478,3.234,2479,3.234,2480,4.116,2481,3.234,2482,4.116,2483,1.733,2484,2.341,2485,3.234,2486,3.716,2487,3.234,2488,3.234,2489,2.545,2490,3.234,2491,1.925,2492,2.819,2493,2.819,2494,4.116,2495,3.234,2496,3.234,2497,3.234,2498,3.234,2499,3.234,2500,2.819,2501,2.981,2502,2.663,2503,2.545,2504,3.234,2505,3.234,2506,2.819,2507,3.234,2508,2.819,2509,2.811,2510,3.234,2511,2.981,2512,2.981,2513,3.234,2514,3.234,2515,2.177,2516,3.234,2517,3.234,2518,3.234,2519,4.722,2520,5.578,2521,3.418,2522,3.234,2523,4.722,2524,2.819,2525,2.545,2526,2.177,2527,5.578,2528,3.234,2529,2.819,2530,2.819,2531,3.234,2532,3.234,2533,3.234,2534,4.722,2535,2.819,2536,2.341,2537,2.819,2538,4.116,2539,3.234,2540,3.234,2541,3.234,2542,4.116,2543,3.234,2544,3.234,2545,3.234,2546,2.545,2547,3.234,2548,2.819,2549,2.545,2550,3.234,2551,3.234,2552,3.234,2553,3.234,2554,3.234,2555,3.234,2556,4.722,2557,3.234,2558,3.234,2559,3.234,2560,3.179,2561,3.234,2562,4.722,2563,2.545,2564,3.234,2565,3.234,2566,3.234,2567,3.234,2568,3.234,2569,3.234,2570,1.823,2571,2.341,2572,3.234,2573,3.234,2574,3.234,2575,3.234,2576,3.234,2577,2.545,2578,3.234,2579,2.545,2580,3.234,2581,4.722,2582,2.819,2583,3.234,2584,3.234,2585,3.234,2586,3.234,2587,2.341,2588,3.234,2589,3.234,2590,3.234,2591,2.819,2592,2.819,2593,3.234,2594,3.234,2595,3.234,2596,3.234]],["tags/A Ph.D. Thesis Proposal",[2463,2.702]],["title/Reverse engineering a curriculum",[2266,1.695,2353,3.359,2355,3.089]],["content/Reverse engineering a curriculum",[0,0.317,6,1.6,19,2.446,20,1.734,45,0.972,86,1.774,158,1.492,161,1.978,172,1.538,194,1.394,282,1.809,284,1.442,286,1.544,311,2.446,339,1.114,442,2.05,471,1.978,515,1.076,522,1.04,524,0.972,594,1.809,610,1.538,626,3.616,704,2.184,738,0.819,749,2.507,750,2.076,751,2.306,756,0.944,757,0.448,760,1.664,766,2.216,769,2.11,770,1.194,771,2.076,779,1.236,780,1.396,783,0.972,793,0.972,800,0.878,806,2.076,827,3.669,831,2.742,836,2.507,856,2.306,866,1.809,887,2.216,907,2.608,921,2.216,953,1.978,1067,2.507,1101,1.599,1116,2.306,1117,2.758,1145,0.972,1166,1.481,1173,1.599,1183,1.839,1190,1.375,1208,2.742,1210,3.028,1229,2.742,1240,2.878,1241,1.28,1267,3.377,1277,2.446,1288,1.194,1292,1.481,1293,2.403,1327,2.804,1335,2.742,1355,1.809,1362,1.481,1388,1.809,1450,1.481,1452,1.347,1526,3.887,1570,2.742,1580,3.377,1627,2.446,1658,2.076,1659,3.745,1670,2.446,1671,3.006,1672,3.168,1680,2.306,1723,2.446,1731,2.446,1733,1.978,1795,1.734,1797,2.804,1931,3.049,1935,1.375,1937,3.377,1947,2.804,1956,3.049,1958,3.566,1959,2.742,1960,2.123,1974,1.809,1986,2.446,1989,2.079,2020,3.377,2031,2.076,2049,2.446,2056,2.608,2173,2.608,2175,2.804,2266,2.642,2319,1.978,2321,3.377,2351,2.446,2352,2.608,2355,3.887,2356,4.15,2389,3.049,2397,2.804,2415,3.049,2432,1.89,2447,2.446,2452,3.377,2560,2.608,2597,3.874,2598,3.874,2599,3.377,2600,3.874,2601,3.874,2602,3.874,2603,3.049,2604,3.874,2605,3.874,2606,3.874,2607,3.874,2608,3.874,2609,3.049,2610,3.377,2611,3.874,2612,3.377,2613,3.874,2614,3.874,2615,3.39,2616,6.655,2617,2.804,2618,3.874,2619,4.226,2620,4.226,2621,3.874,2622,3.874,2623,3.874,2624,3.874,2625,2.804,2626,3.874,2627,3.874,2628,3.377,2629,2.446,2630,3.874,2631,3.874,2632,2.804,2633,3.874,2634,3.874,2635,6.164,2636,5.8,2637,1.734,2638,3.377,2639,3.377,2640,3.874,2641,3.377,2642,3.874,2643,3.874,2644,2.804,2645,3.874,2646,3.377,2647,3.874,2648,2.804,2649,3.377,2650,3.874,2651,3.874,2652,3.377,2653,3.874,2654,5.37,2655,3.874,2656,3.874,2657,3.874,2658,3.874,2659,3.874,2660,3.874,2661,3.377,2662,3.377,2663,3.874,2664,3.874,2665,3.874,2666,3.874,2667,3.874,2668,3.049]],["tags/Reverse engineering a curriculum",[1935,1.431,2463,2.16]],["title/Domain Driven Design in C",[2,1.454,754,2.562,1155,1.943,1539,1.57]],["content/Domain Driven Design in C",[0,0.361,2,2.931,8,2.752,10,3.168,20,1.626,41,5.954,45,1.494,48,5.732,76,1.697,78,2.294,79,0.701,86,1.697,98,2.86,99,2.505,113,2.818,114,2.119,115,3.041,131,2.447,144,1.947,159,0.622,161,3.041,166,0.881,169,1.082,176,1.626,180,0.852,194,0.943,195,2.86,196,2.896,246,3.168,273,0.622,279,4.195,282,1.697,284,0.976,314,1.947,413,5.093,466,3.658,468,1.389,470,1.773,508,1.835,515,1.01,518,2.294,526,2.86,550,3.168,560,2.163,568,2.86,610,1.443,628,2.447,682,2.447,756,0.912,778,1.12,787,1.773,791,0.881,800,0.823,829,1.856,830,2.447,832,1.201,842,1.244,851,2.63,852,1.697,887,1.5,933,1.856,1034,2.447,1077,4.476,1117,1.626,1128,1.045,1134,2.049,1145,0.912,1155,1.856,1159,1.333,1163,3.168,1164,0.796,1165,1.947,1169,2.049,1190,1.29,1191,1.856,1202,2.447,1212,2.665,1226,0.881,1252,0.976,1276,2.447,1293,1.626,1336,1.561,1343,4.041,1360,2.049,1362,1.389,1364,2.163,1392,3.168,1524,2.163,1538,3.168,1543,2.63,1563,2.895,1569,3.168,1609,1.697,1618,2.447,1632,1.773,1647,2.63,1658,1.947,1667,2.294,1669,3.168,1687,2.752,1733,1.856,1745,2.63,1763,3.168,1778,2.86,1784,2.049,1968,1.947,1969,2.86,1974,2.78,2120,2.447,2149,2.63,2175,2.63,2176,3.168,2230,2.294,2238,3.168,2264,2.447,2271,2.63,2295,4.684,2409,3.168,2669,2.163,2670,3.634,2671,2.447,2672,3.168,2673,3.168,2674,3.168,2675,3.168,2676,2.86,2677,3.634,2678,3.634,2679,3.168,2680,4.761,2681,6.928,2682,4.476,2683,3.168,2684,3.168,2685,3.634,2686,3.634,2687,3.634,2688,2.63,2689,3.634,2690,3.634,2691,3.634,2692,5.955,2693,7.284,2694,3.634,2695,3.634,2696,7.44,2697,3.634,2698,3.634,2699,5.955,2700,5.135,2701,5.135,2702,5.135,2703,5.135,2704,3.634,2705,3.634,2706,3.634,2707,3.168,2708,2.86,2709,6.827,2710,3.634,2711,3.634,2712,3.634,2713,3.634,2714,3.634,2715,3.634]],["tags/Domain Driven Design in C",[2,1.855,1581,2.642]],["title/Productivity Tools on all platforms",[828,1.91,1023,1.762,1027,3.089]],["content/Productivity Tools on all platforms",[0,0.307,12,3.56,14,1.769,45,0.951,76,1.769,79,0.831,86,1.747,101,2.982,115,1.935,132,2.366,166,0.919,169,1.128,172,1.504,180,0.888,194,0.983,199,2.982,249,2.551,255,1.448,273,0.905,275,1.769,276,2.013,283,2.551,284,1.017,286,1.089,311,3.845,442,1.167,458,1.345,468,2.021,513,2.136,514,2.982,515,1.053,520,1.935,522,1.017,524,0.951,529,2.843,541,2.982,610,1.504,698,3.845,729,1.504,741,3.56,745,2.366,750,2.03,752,1.448,756,0.581,757,0.438,758,1.053,768,1.252,772,1.574,773,1.209,776,3.302,777,4.408,778,1.167,780,0.858,783,0.951,791,1.477,793,0.951,800,0.858,808,1.848,811,2.136,812,2.981,828,3.418,832,1.252,846,2.392,868,3.302,869,3.302,873,4.609,889,2.255,921,1.564,926,2.136,933,3.11,938,2.742,991,1.564,1000,3.626,1009,2.551,1010,2.982,1019,4.161,1020,2.742,1023,2.182,1027,3.827,1028,2.7,1029,3.302,1044,2.982,1046,2.742,1075,3.302,1076,1.017,1081,1.504,1082,3.56,1087,1.935,1114,2.392,1115,2.271,1117,1.695,1118,4.161,1120,2.03,1123,1.769,1128,1.52,1131,3.56,1136,2.982,1152,0.951,1159,1.711,1164,1.572,1213,3.827,1226,1.477,1241,1.747,1252,1.42,1254,1.209,1308,2.982,1336,2.271,1350,2.136,1361,2.982,1366,4.793,1375,1.935,1388,1.769,1444,2.255,1452,0.951,1458,1.504,1462,2.392,1477,4.408,1492,1.695,1532,2.742,1544,1.564,1548,1.848,1572,2.982,1596,2.03,1606,2.551,1635,2.742,1657,2.982,1660,1.695,1672,1.564,1701,3.302,1784,2.981,1863,3.302,1878,1.564,1946,2.742,1960,1.209,1975,2.742,2030,1.564,2116,2.136,2120,2.551,2165,4.161,2177,2.255,2268,2.742,2291,2.03,2347,2.982,2356,2.551,2361,2.392,2391,2.255,2619,4.161,2716,3.302,2717,3.789,2718,3.789,2719,3.789,2720,3.789,2721,3.789,2722,4.609,2723,3.789,2724,2.982,2725,3.827,2726,6.592,2727,3.827,2728,5.745,2729,2.742,2730,3.789,2731,3.302,2732,3.789,2733,3.789,2734,3.789,2735,3.789,2736,3.789,2737,3.302,2738,3.789,2739,3.789,2740,3.302,2741,2.982,2742,4.609,2743,3.302,2744,4.609,2745,3.789,2746,3.789,2747,3.302,2748,3.789,2749,3.302,2750,3.789,2751,3.789,2752,3.789,2753,3.789,2754,3.789,2755,3.789,2756,3.789,2757,3.789,2758,3.789,2759,3.789,2760,3.789,2761,3.789,2762,3.302,2763,3.789,2764,3.789,2765,3.789,2766,3.789,2767,5.288,2768,3.789,2769,3.789,2770,3.302,2771,3.789,2772,3.789,2773,3.789,2774,3.789,2775,3.789,2776,5.288,2777,3.789,2778,3.789,2779,1.935,2780,3.789,2781,2.551,2782,3.302]],["tags/Productivity Tools on all platforms",[828,1.804,1023,1.664]],["title/A Decade in the Software Engineering industry",[1452,0.955,2266,1.511,2432,1.856,2783,3.805]],["content/A Decade in the Software Engineering industry",[0,0.224,1,2.368,6,1.858,14,3.224,19,2.368,45,1.317,121,1.829,158,1.042,159,0.899,166,1.469,169,1.803,180,1.42,194,0.973,247,1.829,255,2.315,265,3.125,272,1.678,273,0.899,278,2.074,284,1.41,286,1.078,458,1.331,468,1.433,517,1.751,520,1.915,522,1.627,528,1.678,530,1.887,619,1.489,620,1.381,632,2.714,684,2.525,698,3.824,735,1.933,738,0.793,749,1.751,752,2.007,757,0.434,758,1.042,769,1.284,773,2.093,780,1.372,783,0.941,788,2.233,791,0.909,793,0.941,808,1.829,809,1.611,822,1.678,823,3.269,832,1.239,842,1.284,852,1.751,915,2.951,932,2.714,952,2.01,958,2.01,1023,1.548,1028,1.915,1035,2.115,1073,2.115,1076,1.007,1109,2.233,1123,2.451,1128,1.078,1133,1.829,1148,1.155,1152,1.991,1159,1.703,1160,2.525,1162,2.368,1164,1.567,1166,2.007,1173,1.548,1189,1.751,1190,1.864,1191,1.915,1196,2.708,1212,1.678,1222,1.829,1226,1.273,1237,1.548,1241,1.239,1243,1.489,1252,1.41,1282,3.535,1286,1.915,1292,1.433,1309,1.829,1315,1.489,1335,1.915,1350,2.115,1353,1.548,1362,2.315,1368,2.525,1371,2.233,1381,1.915,1452,1.52,1473,1.829,1544,1.548,1548,2.561,1567,1.116,1627,2.368,1658,2.813,1659,2.01,1660,2.711,1687,2.01,1689,1.829,1733,1.915,1734,2.01,1878,1.548,1880,3.8,1919,2.233,1935,1.331,1989,1.51,1992,2.714,2005,2.561,2010,1.915,2030,1.548,2031,2.01,2057,3.269,2085,3.269,2119,2.115,2132,3.269,2263,2.525,2266,2.084,2276,2.714,2278,2.714,2341,2.368,2359,2.714,2361,2.368,2389,2.951,2396,2.951,2421,2.714,2429,2.368,2432,3.369,2441,2.525,2446,2.525,2447,2.368,2456,2.951,2494,3.269,2615,2.368,2636,3.269,2637,1.678,2669,3.606,2724,2.951,2784,3.751,2785,3.751,2786,3.751,2787,4.576,2788,3.269,2789,3.269,2790,3.751,2791,3.751,2792,3.751,2793,3.269,2794,3.751,2795,3.751,2796,3.269,2797,2.951,2798,3.751,2799,3.751,2800,5.279,2801,3.751,2802,3.751,2803,4.132,2804,2.951,2805,3.269,2806,3.269,2807,3.751,2808,3.751,2809,3.751,2810,3.751,2811,3.751,2812,3.751,2813,3.751,2814,3.751,2815,2.951,2816,3.751,2817,3.751,2818,3.751,2819,2.714,2820,5.25,2821,5.164,2822,3.269,2823,3.269,2824,3.269,2825,3.269,2826,3.751,2827,2.368,2828,6.058,2829,3.751,2830,3.269,2831,3.269,2832,3.751,2833,3.751,2834,2.525,2835,3.751,2836,2.951,2837,3.751,2838,2.714,2839,3.751,2840,3.269,2841,2.714,2842,2.714,2843,2.368,2844,3.751,2845,2.951,2846,3.269]],["tags/A Decade in the Software Engineering industry",[6,0.872,2847,2.12,2848,2.642]],["title/The Startup of a Lean Doctorate",[1595,3.359,2849,3.089,2850,3.359]],["content/The Startup of a Lean Doctorate",[0,0.272,18,2.098,20,1.838,79,1.005,101,3.233,159,0.703,161,2.855,169,1.223,171,2.098,180,0.963,273,0.703,274,2.61,282,2.61,345,1.103,376,2.766,425,2.201,442,2.198,515,1.141,524,1.031,532,2.307,552,2.973,594,1.918,621,2.004,662,1.266,737,2.316,745,1.838,749,1.918,754,2.766,756,0.629,760,1.764,764,3.581,769,1.407,770,1.266,772,1.664,778,1.266,780,1.44,781,1.358,782,2.446,783,1.031,784,3.1,793,1.031,799,1.631,829,2.855,831,2.098,851,2.973,858,2.502,921,2.307,1037,1.631,1058,2.446,1087,2.098,1101,2.307,1128,1.181,1134,2.316,1144,2.004,1151,2.593,1159,1.771,1165,2.201,1192,1.696,1196,1.696,1212,1.838,1226,0.996,1236,2.973,1237,1.696,1241,1.358,1243,1.631,1253,3.152,1254,1.311,1310,2.593,1335,2.098,1336,2.401,1355,1.918,1376,3.152,1395,2.593,1452,1.031,1458,1.631,1489,3.581,1539,1.696,1567,1.223,1601,2.973,1615,3.846,1659,2.201,1671,2.004,1795,1.838,1886,2.766,1911,2.766,1959,2.855,1960,1.311,1961,2.593,1974,1.918,1986,2.593,2008,2.973,2048,2.446,2117,2.446,2119,2.316,2127,2.593,2199,3.233,2202,5.626,2230,2.593,2263,4.805,2266,1.631,2339,3.233,2390,2.766,2410,4.957,2429,3.529,2437,2.446,2463,2.996,2484,4.046,2560,3.764,2625,2.973,2652,3.581,2661,3.581,2679,3.581,2849,2.973,2850,5.616,2851,4.108,2852,4.108,2853,4.108,2854,4.108,2855,4.108,2856,4.108,2857,4.108,2858,4.108,2859,4.108,2860,5.591,2861,4.108,2862,4.108,2863,3.581,2864,3.581,2865,4.108,2866,4.108,2867,4.108,2868,1.764,2869,4.108,2870,4.108,2871,4.108,2872,4.061,2873,4.805,2874,2.973,2875,3.581,2876,4.108,2877,4.108,2878,4.108,2879,4.108,2880,3.581,2881,4.108,2882,3.233,2883,4.108,2884,4.108,2885,2.973,2886,3.233,2887,4.108,2888,5.591,2889,4.108,2890,4.108,2891,4.108,2892,4.108,2893,3.581,2894,4.873,2895,4.108,2896,4.108,2897,5.591,2898,4.108,2899,4.108,2900,4.108,2901,4.108,2902,3.233,2903,4.108,2904,4.108,2905,3.233,2906,4.108,2907,4.108,2908,4.108,2909,3.581,2910,2.766,2911,4.108]],["tags/The Startup of a Lean Doctorate",[828,1.503,2463,1.799,2873,2.261]],["title/Unit Testing PicoBlaze Assembly files",[132,1.536,661,1.536,662,1.057,2912,2.701,2913,2.701]],["content/Unit Testing PicoBlaze Assembly files",[0,0.316,2,1.468,3,2.165,6,1.385,18,1.961,44,2.779,45,1.809,46,2.057,79,0.905,86,1.269,113,1.585,129,3.518,132,3.117,144,3.287,158,1.067,166,0.931,167,3.009,169,1.825,180,1.438,194,0.997,196,1.718,254,4.827,255,1.468,263,3.009,272,1.718,273,0.657,278,1.315,314,2.057,345,1.647,470,1.873,491,3.346,513,4.171,515,1.067,518,2.424,520,1.961,528,2.388,545,2.779,590,4.651,619,1.524,640,4.651,661,2.745,662,2.454,675,2.779,702,3.652,705,1.961,708,4.827,711,6.072,725,2.725,735,1.414,737,3.459,745,2.388,747,2.286,748,4.13,752,1.468,756,0.818,757,0.617,772,1.143,779,1.225,783,0.963,791,0.931,793,0.963,822,3.117,826,2.779,832,2.027,834,2.585,928,1.873,933,1.961,1001,2.585,1003,3.346,1027,2.779,1067,1.792,1115,1.649,1116,2.635,1122,1.414,1128,1.104,1140,2.057,1148,1.183,1159,0.997,1196,2.203,1202,2.585,1222,1.873,1237,1.585,1241,2.027,1315,1.524,1316,3.022,1323,2.603,1388,1.792,1390,2.745,1395,2.424,1452,0.963,1473,1.873,1533,3.177,1555,3.346,1632,1.873,1665,2.779,1671,1.873,1674,3.022,1688,1.961,1690,3.652,1692,3.346,1718,1.792,1808,2.165,1849,3.863,1856,2.779,1906,3.346,1965,3.872,2051,2.165,2056,2.585,2116,2.165,2165,3.022,2211,3.022,2397,2.779,2632,4.798,2781,3.593,2831,3.346,2849,2.779,2910,2.585,2912,4.2,2913,5.821,2914,3.84,2915,3.022,2916,3.84,2917,3.84,2918,3.84,2919,3.346,2920,3.84,2921,3.346,2922,3.84,2923,3.84,2924,3.84,2925,3.346,2926,3.84,2927,3.84,2928,3.84,2929,3.84,2930,3.84,2931,3.84,2932,5.337,2933,3.84,2934,2.779,2935,3.84,2936,3.84,2937,3.84,2938,3.346,2939,3.84,2940,3.022,2941,3.84,2942,3.84,2943,3.84,2944,5.337,2945,6.134,2946,5.337,2947,5.337,2948,5.337,2949,5.337,2950,3.84,2951,5.337,2952,3.84,2953,3.84,2954,3.84,2955,3.84,2956,3.84,2957,3.84,2958,3.84,2959,3.84,2960,3.84,2961,3.84,2962,3.84,2963,3.84,2964,3.84,2965,3.84,2966,3.84,2967,3.346,2968,3.84]],["tags/Unit Testing PicoBlaze Assembly files",[867,1.893,2912,2.642,2913,2.642]],["title/Archive by Year: 2018",[7,1.631,1152,1.071,2969,2.541]],["content/Archive by Year: 2018",[0,0.323,7,2.545,2969,3.965]],["tags/Archive by Year: 2018",[]],["title/A Ph.D. Thesis: Iteration 2",[180,0.892,2394,2.754,2464,2.994,2882,2.994]],["content/A Ph.D. Thesis: Iteration 2",[0,0.236,6,1.431,14,1.879,45,1.01,70,3.167,86,1.33,97,3.108,158,1.118,159,1.077,161,3.211,166,1.337,180,0.943,274,1.879,278,1.378,282,1.879,314,2.157,339,1.808,344,2.913,414,2.269,438,1.963,447,3.48,451,3.508,468,1.538,508,1.937,524,1.01,528,1.801,610,2.189,619,1.598,620,2.03,729,1.598,738,1.166,752,1.538,756,0.617,758,1.532,760,2.905,768,1.33,769,1.888,775,2.71,779,1.284,800,1.425,807,3.508,832,1.33,921,1.661,937,1.482,1014,2.71,1015,2.71,1017,3.167,1073,2.269,1081,1.598,1087,2.055,1101,1.661,1128,1.157,1133,2.689,1145,1.383,1151,2.541,1152,1.383,1159,1.632,1160,2.71,1161,2.541,1164,1.377,1189,1.879,1190,1.429,1208,2.055,1229,2.055,1252,1.081,1253,2.269,1254,1.284,1286,2.055,1309,1.963,1315,1.598,1352,2.71,1356,2.815,1437,1.801,1452,1.914,1473,2.689,1531,3.167,1544,1.661,1559,2.396,1570,2.055,1628,2.71,1638,2.71,1658,2.157,1660,1.801,1670,2.541,1674,3.167,1734,2.157,1804,3.624,1840,3.508,1878,1.661,1886,3.712,1939,3.167,1942,4.493,1943,3.167,1958,2.157,1959,2.055,1960,1.284,1991,3.712,1994,3.508,1997,2.541,2030,1.661,2031,2.157,2088,3.167,2127,2.541,2159,3.508,2173,2.71,2266,2.974,2319,2.815,2344,2.913,2347,3.167,2419,3.167,2427,4.339,2429,3.48,2432,3.299,2437,3.282,2443,2.71,2446,2.71,2447,4.473,2449,3.508,2468,3.508,2609,3.167,2620,3.167,2669,3.282,2680,2.396,2729,2.913,2827,2.541,2849,4.551,2863,3.508,2868,1.729,2872,3.282,2970,4.025,2971,4.025,2972,4.025,2973,3.508,2974,4.025,2975,4.025,2976,3.508,2977,4.025,2978,3.508,2979,4.025,2980,4.025,2981,6.289,2982,4.339,2983,3.167,2984,3.508,2985,4.025,2986,3.167,2987,4.805,2988,4.025,2989,4.025,2990,3.508,2991,4.025,2992,4.025,2993,4.025,2994,3.508,2995,4.025,2996,4.025,2997,3.508,2998,3.508,2999,4.025,3000,4.025,3001,4.025,3002,4.025,3003,4.025,3004,4.025,3005,4.025,3006,2.71,3007,4.025,3008,4.025,3009,4.025,3010,4.025,3011,4.025,3012,4.025,3013,4.025,3014,4.025,3015,4.025,3016,3.508,3017,4.025,3018,4.025]],["tags/A Ph.D. Thesis: Iteration 2",[2463,2.702]],["title/IT Competences and Certificates",[2827,3.069,3019,3.518]],["content/IT Competences and Certificates",[0,0.304,6,1.053,19,2.561,79,0.756,89,2.936,97,2.287,131,2.731,158,1.54,165,2.561,166,0.984,172,1.61,173,4.012,194,1.053,278,1.389,297,2.731,339,1.166,400,2.731,414,2.287,442,1.25,508,1.708,515,1.54,522,1.089,529,1.894,532,2.606,594,1.894,610,1.61,619,1.61,620,1.494,626,2.731,662,1.25,682,2.731,725,3.834,729,1.61,735,1.494,737,2.287,738,1.435,749,1.894,756,0.622,757,0.469,760,1.742,768,1.34,770,1.25,772,1.207,778,1.25,781,1.34,783,1.018,784,1.979,786,1.979,787,1.979,792,2.287,800,1.256,808,1.979,822,1.815,829,2.072,830,2.731,831,2.831,982,3.192,989,2.287,1038,3.192,1047,1.61,1117,2.48,1122,1.494,1148,1.25,1152,1.018,1155,2.072,1158,3.3,1164,0.888,1173,1.674,1212,1.815,1214,2.936,1226,0.984,1230,3.536,1237,1.674,1286,2.072,1288,1.25,1362,1.55,1371,2.415,1437,1.815,1450,1.55,1452,1.018,1458,2.201,1473,1.979,1525,2.415,1561,3.3,1563,3.125,1566,3.536,1591,3.536,1606,2.731,1627,3.499,1660,1.815,1699,2.072,1724,2.415,1741,2.731,1797,2.936,1942,3.125,1943,3.192,1949,3.536,1963,2.936,1989,1.815,2009,2.415,2051,2.287,2058,2.731,2074,3.536,2143,3.3,2214,2.415,2256,2.561,2264,2.731,2266,1.61,2314,4.362,2319,3.224,2325,2.731,2341,2.561,2406,3.192,2429,2.561,2432,1.979,2437,2.415,2441,2.731,2453,3.536,2649,3.536,2741,3.192,2804,4.362,2819,4.012,2827,3.986,2840,3.536,2850,3.192,2864,3.536,2875,3.536,2886,3.192,2978,4.831,2982,3.192,2990,3.536,3019,2.936,3020,4.057,3021,4.057,3022,4.057,3023,4.057,3024,2.936,3025,4.057,3026,3.732,3027,4.057,3028,4.057,3029,4.057,3030,5.772,3031,4.057,3032,3.536,3033,4.057,3034,4.057,3035,4.057,3036,4.057,3037,4.057,3038,4.057,3039,3.192,3040,4.057,3041,4.057,3042,4.057,3043,4.057,3044,2.561,3045,4.057,3046,4.057,3047,4.057,3048,4.057,3049,4.831,3050,4.057,3051,3.192,3052,4.057,3053,4.057,3054,4.969,3055,4.012,3056,4.057,3057,3.192,3058,4.057,3059,4.057,3060,3.536,3061,4.057,3062,4.057,3063,4.057,3064,4.057,3065,3.192,3066,4.057,3067,4.057,3068,3.536,3069,3.536,3070,4.057,3071,4.057,3072,4.057,3073,4.057,3074,4.057,3075,3.536,3076,4.057,3077,4.057,3078,4.057,3079,4.057,3080,4.057,3081,4.057,3082,3.192,3083,3.192,3084,3.536,3085,4.057,3086,4.057,3087,4.057,3088,2.936,3089,4.057,3090,4.057]],["tags/IT Competences and Certificates",[2463,1.799,2827,2.12,3019,2.43]],["title/Teaching Object-Oriented design using the GBA",[79,0.426,176,1.399,1539,1.29,1935,1.11,2264,2.104,3091,2.46]],["content/Teaching Object-Oriented design using the GBA",[0,0.231,2,2.896,5,2.321,6,1.403,46,2.896,48,3.076,78,2.468,79,0.957,98,3.076,114,1.613,144,2.095,158,1.721,159,0.669,176,2.418,223,3.076,252,1.163,263,2.204,273,0.925,274,1.825,276,1.292,278,1.339,284,1.05,286,1.124,339,1.781,345,1.05,361,2.468,442,1.204,457,2.327,468,2.841,470,1.907,497,2.632,522,1.451,524,0.981,525,3.076,620,1.44,621,1.907,661,1.749,662,1.665,684,2.632,705,2.76,707,2.66,725,1.996,729,1.552,756,0.599,757,0.773,758,1.086,766,1.613,768,1.786,770,1.665,772,1.608,775,2.632,780,1.403,791,0.948,801,3.076,808,1.907,822,1.749,832,1.292,856,2.327,858,1.749,866,1.825,887,2.757,921,2.757,1000,2.327,1001,2.632,1004,2.632,1024,2.632,1028,1.996,1037,1.552,1047,1.552,1118,3.076,1152,1.356,1164,1.588,1166,1.494,1190,1.388,1192,1.613,1196,1.613,1227,3.163,1231,2.829,1237,1.613,1240,2.095,1254,1.247,1286,1.996,1288,1.204,1292,2.065,1353,1.613,1362,1.494,1366,3.076,1373,1.339,1390,1.749,1437,1.749,1452,1.356,1492,1.749,1539,2.23,1544,1.613,1563,2.204,1567,1.163,1586,2.468,1671,1.907,1680,2.327,1688,1.996,1693,3.407,1882,3.407,1954,4.253,1969,3.076,1974,2.523,1983,3.076,1989,1.554,2004,2.095,2005,1.907,2009,2.327,2030,1.613,2051,2.204,2094,2.327,2119,2.204,2173,3.638,2174,3.407,2177,2.327,2211,3.076,2214,2.327,2254,2.829,2264,3.638,2266,2.145,2278,2.829,2356,4.721,2359,2.829,2366,2.829,2367,3.407,2408,4.578,2415,3.076,2432,1.907,2838,2.829,2842,2.829,2845,3.076,2846,3.407,2885,2.829,2910,2.632,2938,3.407,2969,2.327,3054,3.076,3055,2.829,3091,4.253,3092,3.407,3093,3.909,3094,3.909,3095,3.909,3096,3.909,3097,3.909,3098,3.909,3099,3.407,3100,3.407,3101,3.909,3102,5.404,3103,3.909,3104,3.909,3105,3.407,3106,3.407,3107,3.909,3108,3.909,3109,3.076,3110,3.909,3111,3.909,3112,3.407,3113,5.404,3114,3.909,3115,3.909,3116,3.909,3117,3.909,3118,3.909,3119,3.076,3120,5.823,3121,3.909,3122,2.829,3123,3.909,3124,3.407,3125,3.909,3126,3.909,3127,3.909,3128,3.909,3129,3.909,3130,3.909,3131,3.909,3132,3.909,3133,3.909,3134,3.909,3135,3.909,3136,6.193,3137,3.909,3138,2.829,3139,3.407,3140,3.909,3141,3.909,3142,3.909,3143,3.909,3144,3.909,3145,3.909,3146,3.407,3147,3.909]],["tags/Teaching Object-Oriented design using the GBA",[2,1.283,1935,1.192,3091,2.642]],["title/Programming: a Creative Cognitive Process",[887,1.57,1615,2.145,2637,1.703,2983,2.994]],["content/Programming: a Creative Cognitive Process",[0,0.274,6,1.862,45,1.046,97,2.35,114,1.72,158,1.779,161,2.128,168,4.086,169,1.24,171,2.128,180,0.977,194,1.082,196,1.865,222,3.28,255,1.593,273,0.967,279,2.35,284,1.516,287,2.33,306,2.806,311,2.631,468,2.158,520,2.128,530,1.623,560,3.811,619,1.655,661,1.865,662,1.739,757,0.741,758,1.158,767,2.806,768,1.866,769,1.427,771,2.233,777,3.016,783,1.046,784,2.754,788,2.481,791,1.011,800,0.944,809,1.79,822,1.865,828,1.865,831,2.128,842,1.427,866,1.946,886,3.025,887,1.72,905,2.481,907,2.806,932,3.016,939,2.806,1019,3.28,1023,2.33,1026,3.633,1028,2.128,1059,2.631,1114,2.631,1115,1.79,1122,2.358,1125,2.806,1133,2.033,1138,2.481,1144,2.033,1145,1.046,1155,2.883,1164,0.912,1208,2.128,1226,1.011,1243,1.655,1313,2.806,1324,3.28,1335,2.128,1371,3.361,1373,1.427,1437,2.865,1450,1.593,1452,1.956,1470,3.016,1473,2.754,1526,3.016,1563,2.35,1571,2.35,1578,2.806,1597,2.806,1615,2.35,1649,4.634,1658,3.431,1660,1.865,1733,2.128,1784,2.35,1885,3.633,1919,2.481,1942,3.183,1959,2.128,1972,4.443,1989,1.623,2004,3.431,2005,2.033,2010,2.128,2030,1.72,2031,2.233,2088,3.28,2090,3.28,2120,2.806,2180,3.016,2181,2.033,2262,3.28,2266,2.847,2319,2.128,2361,2.631,2366,3.016,2406,3.28,2417,3.633,2432,2.033,2437,2.481,2441,2.806,2447,3.564,2603,3.28,2615,2.631,2637,3.309,2793,3.633,2819,3.016,2825,3.633,2838,3.016,2842,3.016,2983,3.28,2987,3.633,3100,3.633,3148,4.168,3149,4.168,3150,3.633,3151,4.168,3152,3.633,3153,4.168,3154,4.168,3155,3.633,3156,4.168,3157,3.633,3158,4.168,3159,4.168,3160,3.633,3161,4.168,3162,4.168,3163,4.168,3164,3.016,3165,4.168,3166,4.168,3167,4.168,3168,4.168,3169,4.168,3170,4.168,3171,4.168,3172,4.168,3173,3.633,3174,4.168,3175,4.168,3176,4.168,3177,4.168,3178,4.168,3179,4.168,3180,4.168,3181,3.633,3182,4.168,3183,4.168,3184,4.168,3185,4.168,3186,4.168,3187,4.168,3188,4.168,3189,4.168,3190,3.633,3191,4.168,3192,4.168,3193,3.28,3194,4.168,3195,4.168,3196,4.168,3197,4.168]],["tags/Programming: a Creative Cognitive Process",[2463,2.16,2637,1.804]],["title/Archive by Year: 2019",[7,1.631,1152,1.071,3119,3.359]],["content/Archive by Year: 2019",[0,0.323,7,2.545,3119,5.241]],["tags/Archive by Year: 2019",[]],["title/Five reasons why agile and academia don't go together",[496,1.811,786,1.4,1076,0.771,1252,0.771,1671,1.4,2873,1.932,3198,2.501]],["content/Five reasons why agile and academia don't go together",[0,0.282,1,2.399,6,1.866,12,2.559,16,3.312,45,1.656,76,1.774,79,0.723,90,2.399,121,1.854,169,1.131,180,1.242,197,2.99,273,0.651,276,1.256,277,2.143,279,2.987,284,1.02,297,2.559,339,1.093,345,1.423,411,2.75,458,2.777,496,2.399,515,1.056,518,2.399,545,2.75,610,2.104,619,2.104,698,2.399,705,1.941,729,1.509,738,1.29,751,2.262,756,0.812,757,0.706,760,2.276,766,2.187,769,1.301,772,1.131,781,1.256,783,0.953,786,2.976,789,2.75,791,0.922,797,3.567,800,0.861,822,1.7,829,1.941,836,1.774,842,2.377,844,1.941,846,3.345,852,1.774,886,2.839,887,1.568,921,1.568,953,1.941,958,2.036,1023,2.518,1037,1.509,1062,2.399,1076,1.423,1101,2.187,1115,2.276,1120,2.839,1128,1.523,1139,2.187,1145,0.953,1152,1.329,1159,0.986,1164,0.832,1183,2.26,1186,3.835,1187,2.143,1189,1.774,1190,1.349,1191,1.941,1226,0.922,1236,2.75,1237,2.518,1241,1.256,1287,3.567,1288,1.171,1293,1.7,1313,2.559,1323,1.854,1352,2.559,1356,1.941,1360,2.987,1364,2.262,1373,1.814,1390,1.7,1450,1.452,1452,1.329,1492,2.371,1496,3.312,1561,2.262,1572,2.99,1601,4.415,1615,2.143,1620,2.99,1624,3.312,1659,3.269,1671,1.854,1672,1.568,1680,2.262,1699,1.941,1720,4.618,1733,2.706,1795,1.7,1849,2.75,1907,2.75,1959,2.706,1960,1.212,1974,2.473,1987,4.801,1992,2.75,1995,2.143,1997,2.399,2018,2.262,2119,2.987,2131,6.976,2145,3.312,2149,2.75,2181,1.854,2202,5.023,2215,2.75,2263,2.559,2291,2.036,2341,2.399,2361,2.399,2364,2.559,2366,2.75,2459,3.312,2467,3.312,2599,3.312,2639,3.312,2779,1.941,2787,3.312,2868,1.632,2872,3.929,2873,4.107,2882,2.99,2902,2.99,2905,5.194,2915,2.99,3157,3.312,3198,3.312,3199,3.312,3200,3.8,3201,3.8,3202,3.8,3203,2.99,3204,3.8,3205,4.17,3206,3.8,3207,3.8,3208,3.8,3209,3.312,3210,3.8,3211,3.8,3212,2.99,3213,3.8,3214,3.8,3215,3.312,3216,3.8,3217,3.8,3218,3.8,3219,2.75,3220,3.8,3221,3.312,3222,3.312,3223,3.8,3224,3.8,3225,3.8,3226,3.8,3227,3.312,3228,4.618,3229,2.99,3230,3.8,3231,3.312,3232,3.8,3233,3.8,3234,3.8,3235,3.312,3236,3.8,3237,3.312,3238,3.312,3239,4.618,3240,3.8,3241,3.312,3242,3.312,3243,3.8]],["tags/Five reasons why agile and academia don't go together",[6,0.872,2463,1.799,2873,2.261]],["title/DIY: Hosting stuff on your own VPS",[799,1.511,1614,2.754,3244,3.316,3245,2.994]],["content/DIY: Hosting stuff on your own VPS",[0,0.333,5,1.599,14,1.738,18,1.901,20,1.666,42,2.93,45,1.311,79,0.893,86,1.726,90,2.35,103,3.517,114,1.537,132,3.083,158,1.451,159,0.894,166,0.903,167,3.402,169,1.108,180,1.224,194,1.356,252,1.108,255,1.423,265,2.216,273,1.033,277,2.099,286,1.071,287,1.537,441,3.245,446,2.93,508,1.609,522,1,532,1.537,568,2.93,675,2.695,704,2.099,707,1.599,735,1.923,737,2.099,738,0.788,749,1.738,750,1.995,756,0.8,757,0.431,768,1.23,772,1.108,773,1.188,778,1.147,779,1.188,791,1.267,808,1.816,812,3.402,820,2.507,832,1.726,878,3.245,892,5.701,898,2.507,902,3.245,904,4.404,908,4.111,909,1.995,911,4.111,933,1.901,937,1.371,938,2.695,952,1.995,953,1.901,959,4.553,989,3.402,1021,1.816,1041,3.245,1076,1,1087,2.668,1101,2.156,1122,1.371,1123,1.738,1131,2.507,1155,1.901,1157,3.233,1159,1.356,1169,2.099,1181,2.099,1191,1.901,1196,1.537,1212,1.666,1217,1.995,1243,1.478,1252,1,1287,2.507,1308,2.93,1315,2.074,1361,5.148,1458,1.478,1468,2.695,1481,2.93,1541,4.748,1547,2.695,1549,2.695,1567,1.554,1585,2.35,1601,2.695,1614,5.169,1638,2.507,1660,1.666,1689,1.816,1700,3.245,1718,1.738,1723,2.35,1724,2.216,1738,4.553,1750,2.695,1768,2.35,1778,2.93,1792,2.93,1807,2.93,1808,2.099,1884,2.35,1933,3.245,1960,1.188,1986,2.35,2010,1.901,2030,2.156,2046,3.809,2185,2.507,2226,3.245,2230,2.35,2256,2.35,2295,2.695,2369,2.507,2384,2.507,2421,2.695,2725,2.695,2728,3.245,2781,3.517,2782,3.245,2910,2.507,3044,2.35,3060,3.245,3088,2.695,3138,4.367,3164,3.781,3239,3.245,3245,4.111,3246,3.723,3247,3.723,3248,2.695,3249,3.723,3250,2.93,3251,3.723,3252,3.723,3253,3.245,3254,2.93,3255,4.111,3256,3.723,3257,3.723,3258,2.695,3259,3.723,3260,3.723,3261,3.723,3262,3.723,3263,3.245,3264,3.245,3265,3.245,3266,3.723,3267,3.723,3268,2.93,3269,5.224,3270,5.224,3271,5.224,3272,3.723,3273,3.723,3274,3.723,3275,3.245,3276,3.723,3277,3.723,3278,3.723,3279,3.723,3280,3.723,3281,5.224,3282,3.723,3283,3.245,3284,3.245,3285,3.723,3286,3.245,3287,3.723,3288,4.111,3289,3.723,3290,3.723,3291,3.245,3292,6.034,3293,3.723,3294,3.723,3295,3.723,3296,5.224,3297,6.034,3298,3.723,3299,3.245,3300,3.723,3301,5.224,3302,3.245,3303,3.723,3304,3.723,3305,3.245,3306,7.142,3307,3.723,3308,4.111,3309,3.723,3310,3.723,3311,3.245,3312,5.224,3313,3.723,3314,3.723,3315,3.723,3316,3.723,3317,5.224,3318,3.723,3319,3.723,3320,3.245,3321,3.723]],["tags/DIY: Hosting stuff on your own VPS",[904,1.937,2725,2.082,3245,2.264,3288,2.264]],["title/Hugo Extended: More static site processing power!",[283,1.932,738,0.607,1157,1.538,1615,1.618,1817,2.077,3255,2.258,3322,2.077]],["content/Hugo Extended: More static site processing power!",[0,0.361,6,1.371,8,2.027,46,2.83,76,2.466,79,0.899,86,1.745,126,2.133,132,2.364,159,0.904,172,2.416,216,2.977,249,3.556,273,0.648,278,1.295,284,1.769,287,2.512,400,2.547,457,3.144,458,1.343,470,1.845,471,1.932,482,2.252,508,1.627,524,0.949,620,1.393,621,1.845,660,2.738,684,2.547,701,2.977,738,1.287,752,1.446,756,0.809,757,0.438,768,1.745,770,1.166,772,1.126,783,0.949,784,2.577,791,0.917,792,3.431,793,0.949,800,0.857,808,1.845,812,2.978,836,1.766,842,1.809,866,1.766,870,2.388,872,1.502,874,2.977,899,4.405,921,1.561,926,2.133,928,1.845,937,1.393,952,2.027,985,2.738,1023,1.561,1037,1.502,1067,1.766,1082,2.547,1114,3.335,1123,2.466,1128,1.519,1148,1.627,1157,2.027,1164,1.332,1173,2.512,1190,1.343,1202,2.547,1205,2.978,1221,4.157,1226,0.917,1241,1.25,1254,1.207,1292,1.446,1336,1.625,1381,1.932,1468,4.405,1488,3.297,1497,2.977,1539,1.561,1544,1.561,1567,1.126,1571,2.978,1585,2.388,1615,2.133,1649,2.738,1689,2.969,1725,2.738,1743,3.297,1782,3.297,1807,2.977,1808,2.133,1811,4.604,1817,2.738,1878,1.561,1956,2.977,1967,2.133,2030,1.561,2031,2.027,2126,3.297,2170,2.547,2268,3.823,2278,2.738,2612,3.297,2669,2.252,2729,2.738,2868,1.625,2934,2.738,3044,2.388,3099,3.297,3173,3.297,3322,5.332,3323,3.783,3324,6.587,3325,3.783,3326,6.421,3327,5.282,3328,6.086,3329,3.783,3330,3.297,3331,3.783,3332,5.282,3333,3.783,3334,3.783,3335,3.783,3336,2.252,3337,3.783,3338,6.421,3339,3.783,3340,3.783,3341,5.184,3342,3.783,3343,3.783,3344,5.282,3345,3.297,3346,6.086,3347,3.783,3348,3.783,3349,3.783,3350,3.783,3351,3.783,3352,3.783,3353,3.783,3354,5.282,3355,3.783,3356,5.282,3357,3.783,3358,5.282,3359,3.783,3360,3.783,3361,5.282,3362,5.282,3363,3.297,3364,3.297,3365,3.783,3366,3.783,3367,3.783,3368,3.783,3369,5.282,3370,3.783,3371,3.783,3372,3.783,3373,3.783,3374,3.783,3375,3.783,3376,3.783,3377,3.783,3378,5.282,3379,3.783,3380,3.783,3381,3.783,3382,3.297,3383,3.783,3384,3.297,3385,3.783,3386,3.297]],["tags/Hugo Extended: More static site processing power!",[3322,2.082,3326,2.508,3338,2.508,3387,2.082]],["title/Page Building with Brizy in Wordpress",[1173,1.57,1458,1.511,3258,2.754,3388,2.994]],["content/Page Building with Brizy in Wordpress",[0,0.318,18,3.165,79,0.99,97,2.207,99,1.91,121,1.91,129,1.91,158,1.949,172,1.554,255,1.496,273,1.201,277,2.207,279,3.494,283,2.636,287,1.616,339,1.126,442,1.206,443,2.834,447,2.472,458,1.39,468,1.496,480,2.636,496,2.472,508,1.206,522,1.453,529,1.828,596,2.472,619,1.554,663,2.834,737,2.207,738,1.311,743,3.081,756,0.6,757,0.453,758,1.088,770,1.666,771,2.098,778,1.206,779,1.249,780,0.887,781,1.294,782,2.331,783,0.982,799,1.554,809,1.682,815,2.834,822,1.752,846,2.472,858,2.421,866,1.828,909,2.098,921,1.616,926,3.769,937,1.442,952,2.098,977,2.834,989,2.207,1020,2.834,1034,2.636,1047,1.554,1076,1.051,1120,2.899,1123,3.121,1129,2.472,1133,3.261,1137,4.877,1139,2.558,1148,1.206,1152,0.982,1154,3.412,1157,2.899,1164,0.857,1173,1.616,1189,1.828,1217,2.899,1222,1.91,1225,1.999,1226,1.701,1231,5.078,1241,1.294,1243,1.554,1254,2.238,1288,1.206,1336,1.682,1337,3.081,1362,1.496,1372,2.636,1437,1.752,1439,3.759,1450,2.068,1454,2.472,1458,2.952,1466,3.22,1470,2.834,1473,1.91,1539,2.896,1567,1.61,1614,2.834,1646,3.412,1659,2.098,1688,1.999,1689,3.261,1795,1.752,1817,2.834,1819,3.412,1824,3.081,1855,2.098,1886,2.636,1985,3.081,1991,2.636,2177,2.331,2254,3.915,2384,2.636,2435,3.412,2617,2.834,2676,3.081,2880,3.412,2902,3.081,2934,2.834,3193,3.081,3248,4.486,3254,3.081,3258,5.078,3345,4.715,3388,4.877,3389,3.915,3390,3.915,3391,3.915,3392,3.915,3393,3.915,3394,3.915,3395,3.915,3396,4.715,3397,3.915,3398,6.198,3399,6.198,3400,3.915,3401,4.715,3402,4.257,3403,5.41,3404,3.412,3405,3.915,3406,5.402,3407,3.915,3408,3.412,3409,3.915,3410,3.915,3411,3.915,3412,3.915,3413,3.915,3414,3.915,3415,3.915,3416,3.915,3417,3.915,3418,3.081,3419,7.256,3420,3.915,3421,3.915,3422,3.915,3423,3.915,3424,3.915,3425,3.412,3426,3.915,3427,3.915,3428,3.915,3429,3.412,3430,3.915,3431,3.915,3432,3.915,3433,3.915,3434,3.915,3435,3.915,3436,3.915,3437,3.412,3438,3.915]],["tags/Page Building with Brizy in Wordpress",[3258,2.082,3387,2.082,3388,2.264,3429,2.508]],["title/Using Pandoc to publish a book",[79,0.519,1973,1.57,2410,2.562,3439,2.994]],["content/Using Pandoc to publish a book",[0,0.355,1,2.399,19,2.399,45,0.953,46,2.839,76,2.848,79,0.832,97,2.143,113,1.568,114,1.568,131,2.559,132,2.371,159,0.651,166,0.922,169,1.131,180,0.891,194,0.986,273,0.651,275,1.774,282,1.774,284,1.02,345,1.93,446,2.99,471,1.941,482,3.154,524,0.953,528,2.371,596,2.399,627,3.312,685,2.75,735,1.951,738,1.121,741,2.559,749,1.774,757,0.613,760,1.632,774,2.75,779,1.212,780,0.861,799,1.509,809,1.632,827,2.262,828,1.7,832,2.016,834,2.559,870,3.851,872,1.509,889,2.262,898,2.559,905,2.262,926,2.143,928,1.854,933,1.941,996,4.618,1014,2.559,1021,1.854,1047,1.509,1067,1.774,1098,2.99,1112,6.049,1122,2.246,1125,2.559,1148,1.171,1161,2.399,1164,1.335,1166,1.452,1183,1.301,1190,1.349,1192,1.568,1226,0.922,1229,1.941,1254,1.69,1288,1.171,1292,1.452,1313,3.567,1315,1.509,1337,4.17,1349,2.75,1353,1.568,1362,1.452,1370,3.312,1395,2.399,1445,3.312,1446,4.17,1458,2.755,1462,3.851,1563,2.143,1587,2.559,1629,2.75,1654,2.99,1660,1.7,1688,1.941,1733,1.941,1745,2.75,1795,1.7,1808,2.987,1824,5.194,1960,1.212,1964,3.312,1968,2.036,1973,2.724,1989,1.093,2029,2.143,2117,2.262,2120,3.567,2199,2.99,2201,3.312,2210,2.262,2275,2.559,2279,3.312,2284,3.312,2291,2.036,2410,3.567,2425,3.567,2448,2.036,2615,2.399,2669,2.262,2671,2.559,2682,4.618,2683,3.312,2684,3.312,2737,3.312,2815,2.99,2842,2.75,2868,1.632,2874,2.75,2969,2.262,3055,2.75,3088,2.75,3203,2.99,3238,3.312,3320,3.312,3336,3.154,3439,4.801,3440,3.8,3441,2.99,3442,3.8,3443,2.99,3444,3.8,3445,3.8,3446,3.8,3447,3.8,3448,3.8,3449,3.8,3450,3.8,3451,3.8,3452,4.17,3453,3.312,3454,3.8,3455,3.8,3456,3.8,3457,3.8,3458,3.8,3459,3.8,3460,3.8,3461,3.8,3462,3.8,3463,3.312,3464,2.75,3465,3.8,3466,3.8,3467,3.8,3468,2.399,3469,5.317,3470,4.17,3471,3.8,3472,3.312,3473,3.8,3474,3.8,3475,6.101,3476,3.8,3477,3.8,3478,3.8,3479,3.8,3480,3.8,3481,3.8,3482,3.8,3483,3.8,3484,3.8,3485,3.8,3486,3.8,3487,3.8,3488,3.8,3489,3.8,3490,3.8,3491,3.8,3492,3.8,3493,3.8,3494,3.8,3495,3.312,3496,3.8,3497,5.299,3498,3.8,3499,3.8,3500,3.8,3501,3.8,3502,5.299,3503,3.8,3504,3.8,3505,3.8,3506,3.312,3507,3.8,3508,2.99,3509,3.8,3510,3.8,3511,3.8,3512,3.8,3513,3.8,3514,3.8,3515,3.8,3516,3.8]],["tags/Using Pandoc to publish a book",[1973,1.039,2410,1.695,3439,1.981,3452,1.981,3470,1.981]],["title/Designing websites with accessibility in mind",[1539,1.57,1584,1.856,1689,1.856,1768,2.402]],["content/Designing websites with accessibility in mind",[0,0.299,11,4.823,18,1.984,32,1.814,45,0.975,79,0.988,105,2.453,114,1.604,131,3.623,144,2.883,159,0.921,169,1.156,180,0.911,273,0.921,275,1.814,276,1.778,284,1.043,287,1.604,339,1.117,345,1.445,357,2.453,359,2.453,387,2.616,414,2.191,466,2.082,470,3.531,482,3.675,495,2.812,515,1.08,528,1.739,529,2.512,551,2.313,552,4.468,620,1.982,669,3.058,685,2.812,707,1.669,745,1.739,749,1.814,750,2.082,756,0.946,757,0.45,760,1.669,762,3.058,768,1.284,769,1.331,771,2.082,778,1.197,780,0.88,781,1.778,791,1.305,800,1.219,821,2.616,822,1.739,872,2.136,909,2.082,991,2.221,1004,2.616,1021,1.895,1046,3.895,1073,2.191,1076,1.043,1101,1.604,1122,1.431,1139,1.604,1145,0.975,1149,3.387,1159,1.009,1166,1.485,1167,2.191,1173,1.604,1226,0.942,1227,1.984,1231,2.812,1243,1.543,1252,1.043,1254,1.24,1280,4.858,1292,1.485,1311,3.623,1352,2.616,1360,2.191,1381,1.984,1389,3.058,1452,0.975,1455,2.616,1462,3.897,1467,2.453,1468,3.895,1469,3.203,1532,2.812,1539,1.604,1567,1.156,1571,2.191,1578,2.616,1584,3.011,1587,2.616,1596,2.082,1606,2.616,1612,4.69,1670,2.453,1671,1.895,1689,3.413,1734,2.883,1768,3.897,1781,2.453,1826,3.387,1850,3.387,1918,2.616,1965,4.207,1967,2.191,1980,3.387,1989,1.117,2008,2.812,2016,3.058,2170,3.623,2253,4.235,2266,1.543,2268,3.895,2291,2.082,2295,2.812,2314,3.058,2433,3.387,2632,2.812,2762,3.387,2781,2.616,2803,3.058,2872,2.313,2885,2.812,3055,2.812,3205,3.058,3228,3.387,3255,4.858,3336,2.313,3341,4.235,3401,4.69,3470,3.058,3517,3.886,3518,2.616,3519,3.895,3520,3.886,3521,3.886,3522,3.886,3523,3.886,3524,3.886,3525,3.387,3526,3.886,3527,3.886,3528,3.886,3529,3.886,3530,6.044,3531,6.173,3532,3.886,3533,3.886,3534,3.886,3535,3.886,3536,3.886,3537,3.886,3538,3.886,3539,3.886,3540,3.886,3541,3.886,3542,3.886,3543,3.886,3544,3.886,3545,3.886,3546,3.886,3547,6.664,3548,5.381,3549,3.886,3550,3.886,3551,3.886,3552,3.886,3553,3.886,3554,3.886,3555,3.886,3556,3.886,3557,3.886,3558,3.886,3559,3.886,3560,3.886,3561,3.886,3562,3.886,3563,3.886,3564,3.886,3565,3.886,3566,3.387,3567,3.387,3568,5.381,3569,3.387,3570,3.886,3571,3.886,3572,5.381,3573,4.69,3574,3.886,3575,3.886,3576,3.886,3577,3.387,3578,3.886]],["tags/Designing websites with accessibility in mind",[1768,2.545,3387,2.917]],["title/Tracking and privacy concerns on websites",[1689,1.856,2707,3.316,3518,2.562,3519,2.754]],["content/Tracking and privacy concerns on websites",[0,0.231,18,3.585,23,1.755,79,0.846,86,1.296,158,1.09,166,1.504,194,1.406,198,2.211,273,0.927,277,3.053,284,1.053,297,2.64,468,1.499,471,2.002,481,2.64,515,1.09,522,1.796,524,0.984,530,1.127,596,2.475,656,4.261,692,2.838,702,2.334,738,1.145,756,0.601,757,0.774,758,1.724,768,1.296,770,1.208,772,1.167,779,1.251,788,2.334,793,0.984,800,0.888,822,1.755,828,1.755,831,2.002,832,1.789,836,2.528,844,3.168,899,2.838,904,4.504,911,3.086,928,2.641,932,4.489,937,1.444,991,1.618,1020,2.838,1037,1.557,1046,3.919,1058,2.334,1120,2.101,1122,1.444,1131,2.64,1144,1.913,1157,2.101,1183,1.854,1204,2.838,1241,1.296,1243,1.557,1246,3.086,1252,1.053,1254,1.979,1276,2.64,1277,2.475,1283,3.418,1293,1.755,1323,1.913,1326,2.475,1353,1.618,1373,1.343,1395,4.582,1452,0.984,1455,3.646,1458,1.557,1469,3.224,1532,2.838,1577,3.086,1608,3.919,1660,1.755,1665,2.838,1672,1.618,1678,2.838,1689,3.263,1694,4.72,1699,2.002,1730,2.838,1736,4.72,1741,2.64,1754,3.086,1768,2.475,1781,2.475,1878,2.56,1884,2.475,1960,1.251,2005,2.641,2018,2.334,2039,3.086,2046,2.475,2181,1.913,2221,3.086,2232,3.086,2249,3.418,2276,2.838,2341,2.475,2364,2.64,2419,3.086,2619,5.264,2740,4.72,2744,3.418,2749,3.418,2804,3.086,3019,2.838,3026,2.64,3049,3.418,3065,4.261,3150,3.418,3164,3.919,3250,3.086,3288,3.086,3311,3.418,3341,3.086,3364,3.418,3396,3.418,3472,3.418,3518,4.504,3519,2.838,3525,3.418,3573,5.83,3579,3.646,3580,3.921,3581,3.921,3582,3.921,3583,3.921,3584,3.921,3585,3.921,3586,3.921,3587,6.203,3588,3.921,3589,5.415,3590,3.418,3591,5.415,3592,3.921,3593,5.415,3594,3.921,3595,3.921,3596,3.921,3597,5.415,3598,3.921,3599,5.415,3600,3.921,3601,3.921,3602,3.418,3603,2.838,3604,3.418,3605,3.921,3606,3.418,3607,3.418,3608,7.259,3609,3.921,3610,3.921,3611,3.921,3612,3.921,3613,3.921,3614,3.418,3615,3.418,3616,3.921,3617,3.418,3618,3.921,3619,6.203,3620,3.418,3621,3.921,3622,3.921,3623,3.921,3624,3.921,3625,3.418,3626,3.921,3627,3.921,3628,3.921,3629,3.921,3630,3.921,3631,3.921,3632,3.921,3633,5.415,3634,5.415,3635,3.418,3636,3.418,3637,3.921,3638,3.921,3639,3.921,3640,3.921,3641,3.921,3642,3.921]],["tags/Tracking and privacy concerns on websites",[3387,2.917,3519,2.917]],["title/Archive by Year: 2020",[7,1.631,1152,1.071,3643,3.72]],["content/Archive by Year: 2020",[0,0.323,7,2.545,3643,5.805]],["tags/Archive by Year: 2020",[]],["title/Tech Blog",[1439,2.605,3193,3.825]],["content/Tech Blog",[0,0.309,194,1.73,196,2.409,278,2.282,284,1.446,339,1.548,345,1.79,610,2.137,735,1.982,756,0.825,773,1.717,786,2.626,789,3.896,804,3.896,822,2.409,832,1.779,1037,2.137,1081,2.137,1115,2.312,1139,2.222,1140,3.571,1164,1.585,1208,2.749,1310,3.398,1315,2.137,1437,2.409,1473,2.626,1525,3.205,1533,3.205,1549,3.896,1597,3.625,1672,2.222,1689,2.626,1781,3.398,1935,2.366,1958,3.571,1967,3.035,1986,3.398,2005,2.626,2056,3.625,2143,3.968,2285,4.692,2408,3.398,2448,2.885,2629,3.398,2671,3.625,2680,3.205,2841,3.896,2986,4.237,2994,4.692,3030,4.237,3109,5.245,3190,4.692,3219,3.896,3250,4.237,3336,3.968,3468,3.398,3567,4.692,3644,5.384,3645,4.692,3646,5.384,3647,5.384,3648,5.384,3649,5.384,3650,5.384,3651,5.384,3652,5.384,3653,5.384,3654,6.665,3655,6.665,3656,5.384,3657,5.384,3658,5.384,3659,5.384,3660,5.384,3661,5.384,3662,4.237,3663,5.384,3664,5.384,3665,4.692,3666,5.384]],["tags/Tech Blog",[]],["title/2017 in books",[1973,2.006,2210,2.894]],["content/2017 in books",[0,0.174,2,1.558,74,1.682,142,2.92,159,0.952,169,1.213,194,1.058,247,1.988,272,2.488,273,0.698,276,1.347,277,2.298,286,1.599,317,2.713,339,1.172,420,3.207,442,1.256,447,2.573,481,3.744,482,2.426,515,1.545,528,3.184,621,1.988,707,1.751,729,1.618,738,0.862,752,2.419,757,0.472,758,1.132,770,1.256,772,1.213,780,1.26,781,1.347,783,1.588,797,2.744,799,1.618,800,0.923,872,2.208,887,2.295,909,2.184,923,5.517,937,1.501,991,1.682,1081,1.618,1095,3.207,1116,2.719,1152,1.023,1159,1.058,1183,1.396,1185,2.95,1191,2.081,1196,1.682,1226,0.988,1229,2.081,1240,2.184,1254,1.3,1288,2.418,1350,2.298,1362,1.558,1387,3.207,1437,1.824,1458,1.618,1469,2.426,1559,2.426,1567,1.213,1609,1.903,1672,1.682,1680,2.426,1699,2.081,1723,2.573,1734,2.184,1741,2.744,1781,2.573,1935,1.447,1957,3.135,1967,3.569,1973,3.203,1995,2.298,2004,2.98,2009,2.426,2017,2.95,2022,3.552,2026,3.834,2031,2.184,2056,2.744,2125,3.552,2143,2.426,2181,2.713,2210,3.768,2256,2.573,2274,2.744,2275,2.744,2291,2.98,2351,2.573,2352,3.744,2362,2.95,2369,3.744,2425,2.744,2610,3.552,2617,2.95,2629,4.899,2637,2.488,2676,3.207,2729,2.95,2841,4.025,2921,3.552,2969,2.426,3044,2.573,3124,3.552,3302,3.552,3518,2.744,3636,5.517,3667,4.076,3668,4.076,3669,4.076,3670,4.076,3671,4.076,3672,4.076,3673,4.076,3674,4.076,3675,4.076,3676,4.076,3677,3.552,3678,3.552,3679,4.076,3680,4.076,3681,4.076,3682,3.552,3683,6.33,3684,6.33,3685,4.076,3686,5.561,3687,5.561,3688,4.076,3689,4.076,3690,5.561,3691,5.561,3692,4.076,3693,6.33,3694,4.076,3695,6.33,3696,4.581,3697,4.076,3698,4.076,3699,4.847,3700,4.076,3701,4.076,3702,4.076,3703,4.076,3704,4.076,3705,4.076,3706,4.076,3707,4.076,3708,4.076,3709,4.076,3710,4.076,3711,3.552,3712,4.076,3713,4.076,3714,4.076,3715,4.076,3716,4.076,3717,4.076,3718,4.076,3719,4.076,3720,4.076,3721,4.076,3722,4.076,3723,4.076]],["tags/2017 in books",[1288,1.242,3724,2.16]],["title/Essays",[3725,4.92]],["content/Essays",[0,0.175,21,2.718,23,3.366,25,3.475,26,3.093,32,3.432,34,1.909,38,1.994,39,1.994,55,3.238,58,2.434,60,2.191,61,2.305,68,2.305,74,3.205,107,2.434,128,2.718,133,2.581,142,3.405,151,3.188,155,3.218,160,2.959,181,2.434,186,2.434,192,2.434,196,2.494,211,3.218,227,3.564,229,1.994,244,2.959,247,1.994,263,3.142,317,2.718,331,3.093,353,2.434,367,2.088,385,2.753,391,2.434,395,3.564,439,3.564,477,3.564,507,2.959,524,1.026,571,3.218,608,2.434,645,3.564,653,3.093,678,3.564,752,2.13,766,1.688,778,1.26,800,0.926,880,2.959,1076,1.098,1145,1.026,1152,1.026,1164,1.388,1193,3.218,1376,3.142,1390,2.494,1795,1.83,1856,2.959,1967,2.305,2046,2.581,2376,3.218,2377,2.959,2390,2.753,2483,2.986,2491,2.434,2502,3.142,2511,2.581,2512,2.581,2637,1.83,2673,3.564,2969,3.317,3336,2.434,3469,5.934,3530,6.238,3579,3.752,3726,4.928,3727,3.564,3728,4.089,3729,2.753,3730,4.089,3731,4.089,3732,4.089,3733,4.089,3734,4.857,3735,4.089,3736,4.089,3737,4.269,3738,4.089,3739,4.089,3740,3.564,3741,4.089,3742,3.564,3743,4.089,3744,5.573,3745,5.573,3746,4.089,3747,4.089,3748,4.089,3749,4.089,3750,4.089,3751,4.089,3752,4.089,3753,3.218,3754,4.089,3755,4.089,3756,4.089,3757,4.089,3758,3.564,3759,4.089,3760,4.089,3761,4.089,3762,4.089,3763,4.089,3764,4.089,3765,4.089,3766,4.089,3767,3.564,3768,3.218,3769,4.089,3770,4.089,3771,4.089,3772,5.573,3773,2.959,3774,4.089,3775,4.089,3776,4.089,3777,4.089,3778,4.089,3779,2.959,3780,4.089,3781,4.089,3782,4.089,3783,4.089,3784,4.089,3785,4.089,3786,4.089,3787,5.573,3788,6.809,3789,4.089,3790,4.089,3791,4.385,3792,4.089,3793,2.959,3794,4.857,3795,4.089,3796,4.089,3797,3.218,3798,4.089,3799,3.564,3800,3.564,3801,4.089,3802,4.089,3803,4.089,3804,3.564,3805,4.089,3806,4.089,3807,4.089]],["tags/Essays",[]],["title/A samurai learning mindset",[1989,1.227,3006,2.874,3808,3.359]],["content/A samurai learning mindset",[0,0.233,6,1.03,8,2.127,45,1.566,79,0.745,159,0.935,169,2.098,180,1.463,194,1.03,275,1.853,276,1.312,278,1.359,284,1.066,345,1.066,442,1.223,496,2.506,508,1.682,524,0.996,532,2.254,610,1.576,647,2.873,707,2.345,729,2.168,738,1.155,756,0.608,757,0.722,760,1.705,763,2.506,773,1.992,780,1.523,791,1.324,792,3.791,801,3.124,866,1.853,887,1.638,905,2.363,907,2.672,928,1.936,953,2.027,1021,3.045,1037,2.478,1076,1.466,1081,1.576,1082,2.672,1115,1.705,1116,2.345,1140,2.127,1145,1.566,1148,1.682,1152,0.996,1164,0.869,1190,1.409,1192,2.775,1211,3.251,1237,2.254,1252,1.066,1254,1.266,1286,2.027,1288,1.223,1293,1.776,1309,1.936,1310,2.506,1315,1.576,1373,1.359,1376,3.079,1390,1.776,1450,1.517,1452,1.37,1473,1.936,1525,3.251,1567,1.181,1584,1.936,1586,2.506,1628,2.672,1658,2.127,1670,2.506,1690,3.251,1719,2.873,1728,3.46,1878,1.638,1911,2.672,1919,2.363,1935,1.939,1942,2.238,1960,1.742,1968,3.345,1973,2.577,1974,1.853,1989,2.186,2001,2.027,2010,2.027,2029,2.238,2030,1.638,2047,2.873,2210,2.363,2215,2.873,2274,2.672,2306,3.124,2319,2.027,2325,2.672,2339,3.124,2390,2.672,2427,3.124,2443,2.672,2446,2.672,2448,3.603,2461,3.124,2560,3.677,2629,4.6,2788,3.46,2821,4.297,2822,3.46,2824,3.46,2934,2.873,2940,3.124,2976,3.46,2984,3.46,3044,2.506,3057,3.124,3122,2.873,3468,2.506,3682,3.46,3809,3.969,3810,3.969,3811,3.969,3812,5.461,3813,3.969,3814,5.461,3815,3.969,3816,3.969,3817,4.297,3818,3.969,3819,4.76,3820,3.969,3821,3.969,3822,3.969,3823,6.145,3824,3.969,3825,3.969,3826,3.969,3827,2.672,3828,3.969,3829,3.46,3830,6.243,3831,2.873,3832,3.969,3833,3.969,3834,3.46,3835,3.969,3836,3.46,3837,3.969,3838,5.441,3839,5.441,3840,3.969,3841,3.969,3842,3.46,3843,3.969,3844,3.969,3845,3.969,3846,5.461,3847,3.969,3848,3.46,3849,3.969,3850,3.969,3851,4.76,3852,3.969,3853,3.969,3854,3.124,3855,3.969,3856,3.969,3857,3.969,3858,3.969,3859,3.969,3860,3.46,3861,3.969,3862,3.969,3863,3.969,3864,3.969,3865,3.969,3866,3.969,3867,3.969,3868,3.969,3869,3.969]],["tags/A samurai learning mindset",[1989,1.159,3870,2.273]],["title/Boeken die mij gevormd hebben tot wie ik ben",[34,1.151,107,1.468,653,1.203,2483,1.321,2502,1.39,2570,1.39,3773,1.784,3871,2.466,3872,2.149]],["content/Boeken die mij gevormd hebben tot wie ik ben",[0,0.194,17,4.326,20,1.372,21,3.113,23,3.178,25,2.916,26,3.538,30,2.064,32,2.979,33,2.064,34,3.229,35,2.672,38,3.464,39,2.916,50,3.581,52,2.56,55,3.053,60,2.897,61,1.728,62,2.218,63,2.866,64,3.048,65,1.565,74,3.188,97,2.56,107,2.702,122,3.057,128,2.916,135,1.825,136,2.702,138,3.413,142,3.388,147,2.218,150,2.866,151,3.095,175,1.565,186,3.219,188,3.057,192,1.825,229,2.916,231,2.218,237,1.825,302,3.203,317,2.214,319,2.672,324,2.702,331,3.652,352,1.642,362,2.412,367,1.565,368,3.286,391,1.825,438,1.495,452,3.219,464,1.825,571,2.412,605,4.255,606,3.957,607,2.412,608,1.825,630,2.064,653,3.768,680,2.218,828,1.372,880,2.218,967,2.672,1804,1.642,1958,2.433,1973,1.265,2143,1.825,2210,1.825,2320,5.825,2474,2.412,2483,3.203,2501,3.774,2502,3.048,2503,2.412,2509,2.702,2512,2.866,2515,2.064,2525,2.412,2526,2.064,2549,2.412,2563,2.412,2570,2.56,2571,3.286,2609,2.412,3441,4.704,3453,3.957,3464,2.218,3625,2.672,3677,2.672,3678,2.672,3725,2.672,3737,4.884,3758,3.957,3773,4.837,3791,2.412,3800,2.672,3873,3.065,3874,4.54,3875,2.064,3876,2.672,3877,2.412,3878,3.065,3879,3.065,3880,3.573,3881,3.065,3882,3.065,3883,2.672,3884,3.065,3885,3.065,3886,3.065,3887,2.412,3888,3.065,3889,3.065,3890,2.672,3891,3.573,3892,3.065,3893,3.065,3894,3.065,3895,2.412,3896,3.065,3897,3.065,3898,3.065,3899,3.065,3900,3.065,3901,3.065,3902,2.672,3903,3.065,3904,3.065,3905,3.286,3906,3.065,3907,3.065,3908,3.065,3909,3.065,3910,4.54,3911,3.065,3912,1.935,3913,3.065,3914,3.065,3915,3.065,3916,3.065,3917,2.672,3918,3.065,3919,2.672,3920,4.54,3921,2.412,3922,3.065,3923,3.065,3924,2.412,3925,5.407,3926,3.065,3927,3.065,3928,3.065,3929,2.672,3930,3.065,3931,5.407,3932,4.54,3933,3.065,3934,3.065,3935,3.065,3936,3.065,3937,3.065,3938,3.065,3939,3.065,3940,3.065,3941,3.065,3942,3.065,3943,2.672,3944,2.672,3945,3.065,3946,3.065,3947,3.065,3948,2.672,3949,2.412,3950,3.065,3951,2.218,3952,3.065,3953,3.065,3954,2.412,3955,3.065,3956,3.065,3957,3.065,3958,3.065,3959,2.672,3960,2.672,3961,3.065,3962,3.065,3963,4.54,3964,3.065,3965,3.065,3966,3.065,3967,3.065,3968,3.065,3969,3.065,3970,3.065,3971,3.065,3972,3.065,3973,3.065,3974,2.672,3975,3.065,3976,3.065,3977,3.065,3978,3.065,3979,2.412,3980,3.065,3981,2.218,3982,3.065,3983,4.54,3984,2.672,3985,2.672,3986,3.065,3987,3.065,3988,3.065,3989,3.065,3990,3.065,3991,3.065,3992,3.065,3993,3.065,3994,3.065,3995,3.065,3996,2.672,3997,3.065,3998,2.412,3999,3.065,4000,2.218,4001,3.065,4002,2.672,4003,3.065,4004,3.065,4005,3.065,4006,3.065,4007,3.065,4008,3.065,4009,2.672,4010,3.065,4011,3.065,4012,3.065,4013,3.065,4014,2.412,4015,2.672,4016,3.065,4017,2.412,4018,3.065,4019,3.065,4020,2.672,4021,3.065,4022,3.065,4023,3.065,4024,3.065,4025,3.065,4026,3.065,4027,3.065,4028,3.065,4029,3.065,4030,2.064,4031,2.412,4032,2.672,4033,2.672,4034,3.065,4035,3.065]],["tags/Boeken die mij gevormd hebben tot wie ik ben",[1288,1.242,3724,2.16]],["title/Ending your day with happy thoughts",[620,1.401,806,2.039,1215,2.562,1373,1.303]],["content/Ending your day with happy thoughts",[0,0.307,79,0.83,86,2.011,89,2.738,90,3.335,114,2.18,129,2.577,159,1.186,166,1.476,176,1.693,180,0.887,194,0.982,196,2.364,252,1.126,272,1.693,273,1.229,275,1.766,282,2.466,284,1.016,286,1.75,287,2.18,345,1.928,513,2.978,517,2.466,522,1.634,528,1.693,530,1.75,594,2.466,620,1.393,707,2.269,738,0.8,751,2.252,757,0.611,758,1.051,760,1.625,763,3.842,766,1.561,770,1.166,772,1.126,779,1.941,780,1.197,781,1.25,783,0.949,793,0.949,799,2.097,806,3.261,809,1.625,811,2.133,850,2.388,852,1.766,866,1.766,952,2.83,991,1.561,1005,2.738,1013,3.213,1014,3.556,1076,1.978,1081,1.502,1090,2.738,1116,1.625,1139,1.561,1145,1.325,1152,1.848,1156,3.297,1159,1.58,1164,1.156,1166,2.816,1183,2.084,1185,2.738,1191,1.932,1204,2.738,1215,2.547,1227,2.697,1229,1.932,1245,3.297,1282,2.547,1309,1.845,1315,2.097,1326,4.374,1355,1.766,1373,2.573,1439,2.027,1458,1.502,1492,2.364,1549,2.738,1570,1.932,1660,1.693,1672,1.561,1687,2.83,1813,2.547,1878,2.18,1886,2.547,1931,2.977,1960,1.941,1965,2.388,1973,1.561,1989,1.519,1995,2.133,2001,2.697,2009,2.252,2017,2.738,2029,2.133,2030,1.561,2048,2.252,2049,3.335,2066,3.556,2071,2.977,2089,2.738,2090,4.157,2221,4.157,2230,2.388,2232,2.977,2286,4.157,2382,3.297,2384,2.547,2617,2.738,2644,2.738,2648,4.405,2779,1.932,2843,3.842,2868,2.269,2915,4.157,3024,2.738,3032,4.604,3044,3.335,3284,3.297,3418,2.977,3508,2.977,3530,4.157,3569,4.604,3579,3.556,3817,4.157,4036,3.783,4037,4.157,4038,6.587,4039,5.282,4040,5.741,4041,5.282,4042,3.783,4043,3.783,4044,3.783,4045,3.783,4046,3.783,4047,6.086,4048,3.783,4049,5.282,4050,3.783,4051,3.783,4052,3.783,4053,5.282,4054,3.783,4055,6.086,4056,5.282,4057,3.783,4058,3.297,4059,3.783,4060,3.783,4061,3.783,4062,2.977,4063,3.783,4064,3.783,4065,3.783,4066,3.783,4067,3.783,4068,3.783,4069,3.783,4070,3.783]],["tags/Ending your day with happy thoughts",[3724,2.16,3870,2.273]],["title/De zin en onzin van conferenties",[74,1.29,142,1.342,151,1.399,4071,2.46,4072,3.126,4073,2.724]],["content/De zin en onzin van conferenties",[21,3.118,23,3.428,25,3.118,26,3.89,28,2.421,32,3.389,34,2.795,38,3.603,39,3.264,40,2.71,50,2.903,52,2.566,61,2.566,64,1.734,65,1.571,66,2.681,68,3.055,74,2.997,102,2.903,128,3.264,135,3.805,137,1.734,138,1.571,141,3.565,142,3.257,150,1.942,151,3.51,175,3.058,178,4.264,181,1.831,192,1.831,205,3.582,210,2.226,229,1.501,237,2.71,243,2.071,247,1.501,250,2.421,252,0.915,302,2.903,307,2.566,310,3.582,317,1.501,318,4.722,324,2.71,329,3.967,331,3.468,341,2.681,352,3.425,353,1.831,367,2.324,369,2.226,381,3.967,382,2.681,385,2.071,389,3.967,391,3.565,416,1.831,430,2.681,431,2.226,464,2.71,504,2.421,507,3.294,530,0.885,576,2.421,588,2.421,608,2.71,677,3.294,694,2.421,783,1.359,1023,1.27,1076,1.222,1659,1.648,2432,1.501,2483,2.439,2486,3.582,2491,1.831,2501,1.942,2509,1.831,2512,1.942,2515,2.071,2521,2.226,2529,2.681,2536,3.294,2570,2.566,2577,3.582,2579,2.421,2587,2.226,2800,2.681,2872,2.71,3727,2.681,3729,2.071,3753,2.421,3791,2.421,3793,2.226,3794,2.681,3872,2.681,3890,4.722,3905,3.921,3912,1.942,3919,3.967,3943,2.681,3974,3.967,3979,3.582,3981,2.226,4014,2.421,4030,3.065,4071,2.421,4073,5.219,4074,3.076,4075,3.076,4076,3.967,4077,3.076,4078,3.076,4079,4.552,4080,3.076,4081,3.076,4082,3.076,4083,3.076,4084,2.681,4085,5.418,4086,2.226,4087,3.967,4088,2.681,4089,4.552,4090,3.076,4091,3.076,4092,2.681,4093,3.076,4094,3.076,4095,3.076,4096,3.076,4097,5.219,4098,3.076,4099,4.552,4100,4.843,4101,3.967,4102,2.681,4103,2.681,4104,2.681,4105,4.552,4106,3.076,4107,3.076,4108,3.076,4109,2.681,4110,3.076,4111,3.076,4112,3.076,4113,3.582,4114,3.076,4115,3.076,4116,3.076,4117,3.076,4118,3.076,4119,3.076,4120,3.076,4121,4.552,4122,2.681,4123,5.418,4124,3.076,4125,3.076,4126,3.921,4127,3.076,4128,3.921,4129,3.076,4130,4.552,4131,2.681,4132,3.076,4133,3.076,4134,3.076,4135,2.681,4136,3.076,4137,2.226,4138,3.076,4139,4.552,4140,3.921,4141,3.076,4142,3.967,4143,3.967,4144,2.681,4145,2.421,4146,4.552,4147,3.076,4148,3.076,4149,3.076,4150,4.552,4151,3.076,4152,3.076,4153,3.076,4154,3.076,4155,4.552,4156,3.076,4157,3.076,4158,3.076,4159,3.076,4160,2.421,4161,3.076,4162,3.076,4163,3.076,4164,3.076,4165,3.076,4166,3.076,4167,3.076,4168,4.552,4169,3.076,4170,4.552,4171,3.076,4172,3.076,4173,3.076,4174,3.076,4175,3.076,4176,3.076,4177,4.552,4178,2.681,4179,3.076,4180,3.076,4181,3.076,4182,3.076,4183,2.681,4184,3.076,4185,3.076,4186,2.226,4187,2.421,4188,3.076,4189,3.076,4190,3.076,4191,3.076,4192,3.076,4193,3.076,4194,2.681,4195,2.421,4196,3.076,4197,3.076,4198,3.076,4199,3.076,4200,3.076,4201,2.681,4202,3.076,4203,2.681,4204,3.076,4205,3.076,4206,3.076,4207,2.681,4208,2.681,4209,3.076]],["tags/De zin en onzin van conferenties",[]],["title/Are you handing over enough when inspiring someone?",[252,1.021,1140,1.839,1353,1.416,1995,1.935,2328,2.311]],["content/Are you handing over enough when inspiring someone?",[6,1.616,14,1.844,45,0.991,56,3.109,79,0.539,99,3.038,159,1.205,166,1.32,180,0.926,222,3.109,252,1.176,272,1.768,273,0.676,276,1.306,284,1.061,286,1.565,339,1.565,345,1.462,365,3.109,400,2.66,414,3.511,438,1.927,458,1.403,487,2.86,497,2.66,515,1.865,517,1.844,530,1.565,619,2.161,620,1.455,626,2.66,628,2.66,661,1.768,662,1.217,704,2.228,705,2.018,725,2.018,738,0.836,751,3.241,752,1.51,754,2.66,755,2.86,756,0.834,757,0.721,778,1.677,780,1.233,781,1.306,792,2.228,793,1.366,799,1.569,800,0.895,804,2.86,815,2.86,829,2.018,842,1.353,870,2.494,887,1.631,889,2.352,937,2.005,939,4.193,953,2.018,1013,1.927,1033,2.352,1035,3.069,1062,2.494,1081,1.569,1082,2.66,1116,2.338,1123,2.541,1138,3.241,1139,1.631,1140,2.117,1144,2.655,1148,1.217,1155,2.018,1164,0.865,1190,1.403,1196,1.631,1225,2.018,1226,1.32,1240,2.117,1246,3.109,1252,1.672,1281,3.109,1293,1.768,1315,2.472,1336,1.697,1353,1.631,1356,2.018,1360,2.228,1373,1.353,1404,4.744,1411,2.86,1439,3.337,1450,1.51,1452,0.991,1458,1.569,1472,2.494,1535,3.109,1539,1.631,1544,2.247,1562,3.444,1563,2.228,1567,1.997,1570,2.018,1574,3.94,1575,3.436,1648,3.444,1660,2.436,1679,3.444,1688,2.018,1784,2.228,1855,2.117,1878,2.905,1927,3.109,1936,2.86,1960,1.737,1979,3.444,1989,1.565,1995,2.228,1996,3.444,2004,3.337,2005,3.038,2011,2.86,2018,2.352,2021,3.109,2048,3.241,2055,3.109,2063,3.444,2094,2.352,2117,2.352,2119,2.228,2127,2.494,2181,1.927,2222,4.519,2274,2.66,2344,2.86,2364,2.66,2408,3.931,2441,2.66,2675,3.444,2680,3.241,2688,2.86,2731,3.444,2770,3.444,2779,2.018,2797,3.109,2819,2.86,2868,1.697,2910,2.66,3083,3.109,3152,3.444,3248,2.86,3264,3.444,3322,2.86,3452,3.109,3606,3.444,3614,3.444,3829,3.444,3860,3.444,3912,2.494,4210,3.951,4211,3.951,4212,3.951,4213,3.951,4214,3.951,4215,3.444,4216,3.951,4217,3.951,4218,4.744,4219,4.284,4220,5.444,4221,3.951,4222,3.444,4223,6.228,4224,3.951,4225,3.951,4226,3.951,4227,3.444,4228,3.951,4229,3.951,4230,3.951,4231,3.444,4232,3.951,4233,3.951,4234,3.951,4235,3.951,4236,3.951,4237,3.444,4238,3.109,4239,5.444,4240,3.951,4241,3.109,4242,3.444,4243,3.951,4244,3.444,4245,3.444,4246,3.951]],["tags/Are you handing over enough when inspiring someone?",[1140,1.542,1878,1.188,1935,1.021,2847,1.816]],["title/Healing creative scars",[2637,1.91,3779,3.089,4247,4.269]],["content/Healing creative scars",[0,0.261,14,1.784,45,0.959,76,1.784,89,2.767,90,4.177,121,1.865,159,1.048,165,4.177,166,1.484,169,1.138,180,0.896,255,1.461,265,2.276,273,0.654,275,1.784,276,1.758,286,1.76,339,1.099,387,3.582,425,2.048,438,1.865,442,1.639,528,1.71,529,1.784,530,1.76,532,2.196,626,2.574,647,2.767,751,2.276,756,0.586,757,0.616,758,1.062,766,2.196,772,1.138,773,1.952,778,1.178,779,1.697,780,1.205,781,1.263,793,0.959,800,1.205,809,1.642,811,2.155,827,2.276,832,1.758,842,1.309,1035,3,1062,2.413,1076,1.027,1087,1.952,1116,1.642,1122,1.408,1128,1.53,1145,0.959,1148,1.178,1152,1.335,1159,1.588,1162,2.413,1181,3,1183,1.822,1196,1.578,1218,3.863,1226,1.29,1227,1.952,1243,1.518,1252,1.027,1254,1.219,1282,2.574,1288,1.178,1292,1.461,1293,1.71,1309,1.865,1336,1.642,1350,2.155,1362,1.461,1371,3.167,1373,1.309,1379,2.767,1380,4.637,1381,1.952,1388,1.784,1439,2.048,1559,2.276,1573,3.332,1584,1.865,1587,3.582,1609,1.784,1632,1.865,1638,2.574,1699,3.125,1725,2.767,1731,2.413,1799,4.429,1947,2.767,1954,5.207,1957,2.155,1959,1.952,1960,1.219,1989,1.53,1995,3,1999,3.008,2004,2.851,2006,3.332,2018,2.276,2026,3.45,2027,3.332,2034,3.332,2048,3.167,2058,2.574,2067,3.008,2080,4.637,2099,4.187,2170,2.574,2177,2.276,2256,2.413,2271,2.767,2291,3.279,2325,2.574,2362,2.767,2369,3.582,2397,2.767,2408,3.359,2425,2.574,2443,2.574,2461,3.008,2628,4.637,2629,2.413,2637,1.71,2668,4.187,2669,2.276,2680,3.167,2688,2.767,2742,3.332,2779,1.952,2821,4.816,2827,2.413,2868,1.642,2940,3.008,3006,2.574,3051,3.008,3199,3.332,3231,3.332,3253,3.332,3268,3.008,3425,3.332,3468,2.413,3696,2.767,3779,3.851,3808,3.008,3823,3.332,3831,2.767,3838,3.332,3839,3.332,3851,3.332,4032,3.332,4037,3.008,4237,3.332,4248,3.823,4249,5.32,4250,4.816,4251,3.823,4252,5.767,4253,3.823,4254,3.823,4255,3.332,4256,3.823,4257,3.823,4258,3.823,4259,3.008,4260,5.32,4261,3.332,4262,6.12,4263,5.32,4264,5.32,4265,3.823,4266,3.008,4267,3.823,4268,3.823,4269,3.823,4270,3.823,4271,4.637,4272,6.12,4273,3.823,4274,3.823,4275,3.823,4276,3.823,4277,3.823,4278,3.823,4279,3.332,4280,3.823,4281,5.32,4282,3.332,4283,3.332,4284,3.823,4285,3.332,4286,3.823,4287,3.823,4288,3.332,4289,3.823,4290,3.332,4291,3.823,4292,3.823,4293,3.332,4294,3.332,4295,3.823,4296,3.332,4297,3.823,4298,3.008,4299,3.823,4300,3.823]],["tags/Healing creative scars",[1989,0.965,3724,1.799,3870,1.893]],["title/I'm jealous of my dog",[1567,1.27,4301,4.269,4302,3.72]],["content/I'm jealous of my dog",[3,2.235,18,2.024,159,0.934,166,1.323,273,0.934,282,1.85,286,1.794,373,3.713,442,1.221,468,1.515,470,1.933,515,1.101,524,0.994,529,2.547,530,1.569,532,2.773,594,1.85,621,1.933,632,2.868,738,1.319,756,0.956,757,0.777,760,1.702,766,2.773,768,1.31,772,1.179,775,2.668,778,1.681,780,1.596,784,1.933,786,1.933,791,0.961,793,1.369,794,3.454,800,1.236,804,2.868,815,2.868,886,2.923,918,3.119,937,1.459,953,2.024,1015,2.668,1035,2.235,1076,1.064,1109,2.359,1117,1.773,1122,1.459,1145,1.827,1148,1.221,1159,1.416,1183,1.357,1187,2.235,1190,1.407,1191,2.024,1196,1.636,1211,2.359,1212,1.773,1222,1.933,1224,3.454,1226,0.961,1227,2.024,1243,1.573,1276,2.668,1277,2.502,1286,2.024,1287,2.668,1288,1.922,1292,1.515,1309,1.933,1315,2.166,1335,2.024,1336,1.702,1355,1.85,1362,1.515,1376,3.517,1381,2.024,1388,1.85,1492,1.773,1544,1.636,1567,2,1584,3.763,1609,1.85,1632,1.933,1657,3.119,1667,2.502,1680,2.359,1690,3.247,1741,2.668,1813,2.668,1855,2.923,1878,1.636,1918,4.2,1960,1.264,1961,2.502,1967,2.235,1973,1.636,2001,2.024,2004,3.342,2008,2.868,2009,2.359,2026,2.235,2030,2.251,2049,2.502,2051,2.235,2066,2.668,2116,2.235,2181,3.043,2213,3.454,2250,3.454,2274,4.524,2315,4.293,2326,3.454,2328,2.668,2351,2.502,2361,2.502,2385,3.454,2620,3.119,2638,3.454,2680,3.247,2688,3.948,2708,3.119,2834,2.668,2843,2.502,2868,1.702,2885,2.868,2909,3.454,3026,2.668,3082,3.119,3112,3.454,3603,2.868,3711,3.454,3827,4.524,3912,2.502,4252,3.454,4302,6.142,4303,7.047,4304,3.454,4305,3.963,4306,3.963,4307,6.07,4308,3.963,4309,3.963,4310,3.963,4311,3.963,4312,3.454,4313,3.963,4314,3.963,4315,3.963,4316,3.454,4317,3.963,4318,3.963,4319,3.963,4320,5.455,4321,3.963,4322,3.454,4323,3.963,4324,3.963,4325,3.963,4326,3.963,4327,3.963,4328,3.963,4329,3.963,4330,3.963,4331,3.119,4332,3.454,4333,3.963,4334,3.963,4335,3.963,4336,3.963,4337,3.963,4338,3.963,4339,3.963,4340,3.119,4341,3.963,4342,3.963,4343,3.963,4344,3.963,4345,3.963,4346,3.963,4347,3.963,4348,3.963]],["tags/I'm jealous of my dog",[3870,2.843]],["title/Inventing - for the worse?",[2362,3.518,2625,3.518]],["content/Inventing - for the worse?",[0,0.297,8,2.039,76,1.777,79,0.948,158,1.696,159,0.908,166,0.923,171,1.943,172,2.106,194,0.988,247,1.856,252,1.133,273,1.325,275,1.777,276,1.258,284,1.773,286,1.094,345,1.022,348,3.317,404,2.995,471,2.709,481,2.562,515,1.057,517,3.083,522,1.424,524,1.331,530,1.525,532,1.571,572,2.995,619,1.511,738,1.291,747,2.265,750,2.039,756,1.012,757,0.614,760,1.635,769,2.378,772,1.133,773,2.107,779,1.214,780,0.862,797,2.562,799,2.424,811,2.146,829,1.943,832,1.258,842,1.303,846,3.348,852,1.777,854,3.317,872,1.511,885,3.317,905,2.265,952,2.842,1018,3.317,1021,1.856,1023,2.189,1024,2.562,1047,1.511,1059,2.402,1073,2.146,1087,1.943,1128,1.094,1144,1.856,1145,0.955,1148,1.634,1152,0.955,1164,1.161,1166,1.455,1167,2.146,1192,1.571,1205,2.146,1212,2.373,1226,0.923,1241,1.753,1243,1.511,1252,1.022,1285,3.317,1292,2.027,1315,1.511,1326,2.402,1350,2.146,1356,1.943,1362,2.027,1373,1.303,1374,2.995,1381,1.943,1472,2.402,1539,1.571,1546,4.174,1548,1.856,1567,1.133,1596,2.039,1632,1.856,1647,2.754,1672,2.189,1699,1.943,1718,1.777,1724,2.265,1795,1.703,1880,4.78,1942,2.99,1946,2.754,1968,3.271,1972,2.995,1973,1.571,2010,1.943,2011,4.78,2018,3.931,2030,1.571,2049,3.348,2066,2.562,2094,3.634,2116,2.146,2128,4.623,2148,2.995,2180,2.754,2214,2.265,2222,3.571,2233,2.562,2267,3.317,2328,4.446,2351,2.402,2386,2.995,2399,3.317,2456,4.174,2465,3.317,2625,3.839,2632,2.754,2637,1.703,2722,3.317,2779,1.943,2805,3.317,2815,2.995,2836,4.804,2838,2.754,2848,2.995,2868,1.635,2872,2.265,3016,3.317,3057,4.804,3069,3.317,3083,2.995,3092,3.317,3106,3.317,3215,4.623,3222,3.317,3229,2.995,3237,3.317,3242,3.317,3254,2.995,3382,3.317,3386,3.317,3406,3.317,3468,2.402,3566,3.317,3617,3.317,3645,3.317,3817,4.174,3819,3.317,3842,3.317,3854,2.995,4349,3.317,4350,3.806,4351,3.806,4352,3.806,4353,3.806,4354,3.806,4355,3.806,4356,3.806,4357,3.806,4358,3.806,4359,3.806,4360,3.806,4361,3.806,4362,3.806,4363,3.806,4364,3.806,4365,3.806,4366,3.806,4367,3.317,4368,3.806,4369,3.806,4370,3.806,4371,5.304,4372,3.806,4373,3.806,4374,3.806,4375,3.806,4376,3.806,4377,3.806,4378,3.806,4379,3.806,4380,3.806,4381,3.806,4382,3.806,4383,5.304,4384,3.806,4385,5.304,4386,4.623,4387,3.806,4388,3.806,4389,3.806,4390,3.806,4391,3.806,4392,3.806]],["tags/Inventing - for the worse?",[2848,3.172,3870,2.273]],["title/Journaling in practice",[766,2.006,3724,2.605]],["content/Journaling in practice",[0,0.316,12,3.578,45,0.958,79,0.725,86,1.261,113,1.575,114,1.575,159,1.19,166,1.289,180,0.895,273,1.232,276,1.261,278,1.307,287,2.194,339,1.097,345,1.427,365,3.004,373,2.272,438,2.593,442,1.176,466,2.045,508,1.176,515,1.477,520,1.949,522,1.025,524,1.659,525,4.183,526,3.004,529,1.782,530,1.097,532,1.575,594,1.782,621,1.862,700,3.327,705,1.949,735,1.406,745,2.736,751,4.138,752,1.459,756,0.937,757,0.804,763,2.41,767,2.57,769,1.307,773,2.109,778,1.176,779,1.695,780,1.385,781,1.261,782,2.272,791,0.926,793,0.958,799,1.515,800,0.865,806,2.848,808,1.862,831,1.949,842,1.307,858,1.708,886,2.045,937,1.957,938,3.847,991,2.729,1021,1.862,1028,1.949,1033,2.272,1035,2.152,1037,1.515,1059,2.41,1081,1.515,1101,1.575,1109,2.272,1128,1.097,1145,0.958,1148,1.176,1159,0.991,1161,2.41,1164,1.339,1182,2.272,1183,1.307,1190,1.355,1191,1.949,1192,2.729,1196,1.575,1212,1.708,1215,2.57,1225,1.949,1252,1.427,1280,4.183,1288,2.037,1305,3.327,1309,2.983,1313,2.57,1327,2.762,1352,2.57,1355,3.087,1390,1.708,1458,2.428,1462,2.41,1525,2.272,1533,3.164,1544,2.524,1548,1.862,1561,2.272,1567,1.582,1584,1.862,1593,3.327,1687,2.045,1723,2.41,1731,2.41,1733,1.949,1734,2.045,1813,2.57,1838,4.632,1926,3.004,1927,3.004,1957,2.152,1960,1.218,1961,2.41,1973,2.194,1985,3.004,1989,1.097,1992,2.762,1997,2.41,2026,2.152,2042,2.41,2051,2.152,2058,3.578,2161,3.004,2171,3.327,2182,3.004,2185,2.57,2214,2.272,2271,4.786,2291,2.045,2301,3.327,2386,3.004,2437,2.272,2448,2.848,2637,1.708,2779,1.949,2847,2.41,2872,3.164,3006,3.578,3065,3.004,3088,2.762,3138,2.762,3160,3.327,3219,3.847,3275,5.763,3464,2.762,3506,3.327,3508,3.004,3579,2.57,3696,2.762,3724,4.099,3779,2.762,3808,3.004,4040,4.632,4227,3.327,4241,4.183,4242,3.327,4279,3.327,4293,4.632,4294,5.763,4296,3.327,4331,3.004,4393,3.817,4394,3.817,4395,3.817,4396,3.327,4397,3.817,4398,3.817,4399,3.817,4400,3.817,4401,3.817,4402,3.817,4403,3.817,4404,3.817,4405,3.817,4406,3.327,4407,3.817,4408,3.817,4409,3.817,4410,3.817,4411,6.952,4412,3.817,4413,3.817,4414,3.817,4415,3.817,4416,3.817]],["tags/Journaling in practice",[1989,0.827,2209,2.508,3724,1.542,3870,1.622]],["title/Learning to become a baker",[1968,2.287,1989,1.227,4417,3.72]],["content/Learning to become a baker",[0,0.328,45,0.969,79,0.907,158,1.71,159,0.917,166,0.937,168,2.796,172,1.533,252,1.149,255,1.476,272,2.398,273,0.917,278,1.323,361,2.438,438,1.884,468,2.048,471,1.972,508,1.19,522,1.037,524,0.969,530,1.541,621,1.884,632,2.796,735,1.422,738,1.133,749,1.803,757,0.62,758,1.073,769,1.835,770,1.651,780,1.506,781,1.276,783,1.544,789,2.796,791,0.937,793,0.969,800,1.214,842,1.323,852,2.502,856,2.299,858,2.398,1004,2.601,1011,3.366,1013,1.884,1116,1.659,1117,1.728,1122,1.422,1139,1.594,1145,0.969,1152,1.544,1158,2.299,1159,1.003,1164,0.846,1183,1.323,1189,1.803,1225,1.972,1235,4.217,1237,1.594,1243,1.533,1315,2.128,1323,1.884,1353,1.594,1360,2.178,1373,1.323,1375,1.972,1376,3.021,1381,1.972,1390,1.728,1439,2.07,1450,1.476,1492,1.728,1548,3.242,1570,1.972,1615,2.178,1660,2.398,1665,2.796,1672,1.594,1688,1.972,1689,1.884,1699,1.972,1718,1.803,1730,2.796,1731,2.438,1797,3.879,1808,2.178,1813,2.601,1851,3.366,1884,2.438,1934,3.04,1946,2.796,1957,3.469,1960,1.232,1968,2.07,1981,3.366,2001,2.737,2005,1.884,2029,3.469,2032,3.366,2033,4.217,2042,3.885,2047,2.796,2067,3.04,2082,3.366,2094,2.299,2111,3.04,2112,3.04,2175,2.796,2185,2.601,2218,3.366,2344,2.796,2358,3.04,2369,2.601,2391,2.299,2421,2.796,2437,2.299,2644,2.796,2671,5.328,2681,3.366,2727,2.796,2868,1.659,3026,2.601,3054,3.04,3139,3.366,3205,3.04,3241,3.366,3265,3.366,3330,3.366,3336,4.623,3443,3.04,3579,2.601,3662,3.04,3665,3.366,4062,3.04,4219,3.04,4250,3.04,4288,4.671,4298,3.04,4349,3.366,4417,4.671,4418,3.366,4419,3.863,4420,3.863,4421,3.366,4422,5.793,4423,3.863,4424,3.863,4425,3.863,4426,3.366,4427,3.863,4428,3.04,4429,3.863,4430,4.671,4431,3.863,4432,3.366,4433,5.359,4434,6.154,4435,3.863,4436,3.366,4437,3.366,4438,3.863,4439,3.863,4440,3.863,4441,3.863,4442,3.863,4443,6.647,4444,3.863,4445,3.04,4446,3.366,4447,5.359,4448,5.359,4449,5.359,4450,3.863,4451,3.863,4452,5.359,4453,3.863,4454,3.863,4455,3.863,4456,3.863,4457,5.359,4458,3.366,4459,5.359,4460,3.863,4461,3.863,4462,3.863,4463,3.863,4464,3.863,4465,5.359,4466,3.863,4467,3.863,4468,3.863,4469,3.863,4470,3.366,4471,3.863,4472,3.863,4473,3.863,4474,3.863,4475,3.863,4476,3.863]],["tags/Learning to become a baker",[1989,0.827,2671,1.937,2847,1.816,3336,1.713]],["title/Nuts about local nuts",[361,3.622,1205,2.407]],["content/Nuts about local nuts",[0,0.161,45,0.945,79,0.514,97,2.124,121,1.837,126,2.124,144,2.018,159,0.645,166,0.913,169,1.121,180,0.883,194,1.576,255,1.44,263,2.124,265,2.242,273,0.645,275,1.758,284,1.012,287,1.555,339,1.514,361,4.15,443,2.726,508,1.16,515,1.463,524,0.945,528,1.686,610,1.495,681,3.283,738,0.797,747,2.242,756,1.098,757,0.609,769,1.29,772,1.121,778,1.622,779,1.202,780,1.193,790,3.811,791,0.913,793,0.945,800,1.375,808,2.569,809,1.618,872,1.495,937,1.387,1023,1.555,1047,1.495,1066,5.444,1101,1.555,1122,1.939,1123,1.758,1128,1.083,1145,0.945,1148,1.622,1159,0.978,1160,2.536,1162,2.378,1181,2.124,1205,3.901,1214,3.811,1221,2.964,1222,1.837,1227,2.689,1237,1.555,1252,1.858,1254,1.68,1276,2.536,1277,2.378,1292,1.44,1293,2.717,1326,2.378,1335,1.924,1355,1.758,1360,2.124,1362,1.44,1388,1.758,1444,3.135,1484,3.101,1492,1.686,1543,2.726,1561,2.242,1567,1.121,1570,1.924,1578,2.536,1627,2.378,1638,2.536,1703,3.283,1718,1.758,1725,2.726,1733,1.924,1799,2.726,1808,2.124,1884,4.15,1911,2.536,1957,2.124,1965,3.324,1983,2.964,2031,2.018,2033,2.964,2047,2.726,2070,4.59,2086,3.283,2094,2.242,2097,3.283,2099,2.964,2111,6.002,2112,5.641,2117,2.242,2149,2.726,2177,2.242,2222,2.536,2233,2.536,2234,3.283,2256,2.378,2391,2.242,2396,2.964,2425,2.536,2448,2.018,2646,3.283,2662,3.283,2672,3.283,2716,3.283,2741,2.964,2747,3.283,2779,1.924,2894,3.283,2967,3.283,3039,2.964,3082,2.964,3248,2.726,3263,3.283,3268,4.144,3283,3.283,3286,3.283,3402,2.964,3464,2.726,3590,3.283,3603,2.726,3848,3.283,4241,5.174,4304,4.59,4367,4.59,4477,3.767,4478,6.072,4479,3.767,4480,3.767,4481,6.575,4482,6.575,4483,3.767,4484,3.767,4485,3.767,4486,3.283,4487,6.072,4488,7.507,4489,6.072,4490,6.575,4491,3.767,4492,3.767,4493,3.283,4494,3.767,4495,3.767,4496,3.767,4497,3.767,4498,5.266,4499,3.767,4500,3.767,4501,3.767,4502,3.767,4503,3.767,4504,3.767,4505,3.767,4506,5.292,4507,3.767,4508,3.767,4509,3.767,4510,3.767,4511,3.767,4512,3.767,4513,3.767,4514,3.767,4515,3.767,4516,3.767,4517,3.767,4518,3.767,4519,3.767,4520,3.767,4521,3.767,4522,3.767,4523,3.767,4524,3.767,4525,5.266,4526,3.767,4527,3.767,4528,3.767,4529,3.767,4530,3.767,4531,3.767,4532,3.767,4533,3.767,4534,3.767,4535,3.767,4536,3.283,4537,3.767,4538,3.767,4539,3.767,4540,3.283,4541,3.767,4542,3.767,4543,2.964,4544,3.283,4545,3.767]],["tags/Nuts about local nuts",[2029,2.843]],["title/On finding your inner zen in big cities",[1081,1.362,1795,1.536,2220,2.701,3827,2.311,4546,2.991]],["content/On finding your inner zen in big cities",[0,0.283,79,0.729,100,4.656,159,0.658,166,0.932,180,0.901,273,0.658,275,1.795,276,1.765,284,1.033,286,1.106,287,1.587,425,2.06,442,1.891,468,2.042,471,1.964,487,2.783,515,1.068,517,1.795,520,1.964,530,1.106,619,1.527,707,2.295,738,0.813,757,0.767,758,1.484,767,2.589,769,1.317,770,1.891,779,1.704,780,1.21,783,0.965,786,2.606,791,1.296,832,1.271,852,2.494,858,1.721,866,1.795,872,1.527,930,3.867,937,1.416,953,1.964,958,2.863,1013,1.876,1015,2.589,1017,3.026,1021,1.876,1033,2.289,1037,2.121,1047,1.527,1066,3.026,1069,3.026,1076,1.033,1081,1.527,1101,1.587,1117,1.721,1122,1.416,1133,1.876,1139,1.587,1145,0.965,1148,1.185,1159,1.387,1164,1.344,1166,1.47,1189,1.795,1190,2.475,1192,1.587,1196,1.587,1205,3.012,1213,2.783,1226,1.489,1254,1.958,1323,1.876,1353,1.587,1355,2.866,1373,1.317,1375,1.964,1381,1.964,1388,2.866,1393,3.026,1472,2.427,1484,2.728,1492,2.391,1551,3.026,1561,3.949,1570,1.964,1571,2.168,1628,2.589,1656,3.026,1687,2.06,1699,1.964,1718,1.795,1724,2.289,1795,3.119,1815,3.351,1884,3.875,1907,3.867,1960,1.704,1961,2.427,1974,1.795,1975,4.443,1998,3.351,2004,3.29,2042,2.427,2116,2.168,2173,2.589,2198,3.351,2215,2.783,2220,3.026,2230,2.427,2233,2.589,2288,3.026,2648,4.443,2727,2.783,2743,3.351,2779,2.728,2781,2.589,2796,3.351,2830,3.351,2834,3.597,2836,3.026,2841,3.867,2843,2.427,2986,3.026,3039,3.026,3122,2.783,3203,3.026,3227,3.351,3305,3.351,3308,3.026,3363,4.656,3408,3.351,3418,3.026,3662,3.026,3699,3.351,3827,2.589,3834,3.351,4058,3.351,4250,4.204,4259,4.204,4261,3.351,4340,3.026,4386,3.351,4406,3.351,4422,3.351,4428,4.204,4446,3.351,4546,6.762,4547,3.845,4548,3.845,4549,3.845,4550,3.845,4551,3.845,4552,3.845,4553,6.139,4554,3.845,4555,3.845,4556,3.351,4557,3.845,4558,3.845,4559,3.351,4560,3.845,4561,3.845,4562,3.845,4563,3.845,4564,3.845,4565,3.845,4566,3.845,4567,4.656,4568,3.845,4569,3.845,4570,5.342,4571,3.351,4572,3.845,4573,3.845,4574,3.845,4575,3.845,4576,3.845,4577,3.845,4578,3.845,4579,3.845,4580,3.845,4581,4.656,4582,2.783,4583,3.845,4584,3.845,4585,3.351,4586,5.342,4587,3.845,4588,3.845,4589,3.845,4590,3.845,4591,3.845,4592,3.845,4593,5.342,4594,3.845,4595,3.845,4596,3.845,4597,3.845,4598,3.845,4599,3.845,4600,3.845,4601,3.845,4602,3.845,4603,3.845,4604,3.845]],["tags/On finding your inner zen in big cities",[1989,0.965,2847,2.12,3827,2.261]],["title/Over analoog en digitaal",[151,1.703,252,1.132,4605,3.805,4606,3.805]],["content/Over analoog en digitaal",[17,3.344,20,1.405,21,2.95,23,2.884,24,3.637,25,1.532,26,3.813,32,2.823,34,3.408,38,2.675,39,2.675,45,0.788,50,2.476,55,3.652,58,2.751,61,1.77,64,4.115,65,2.36,68,1.77,73,4.779,74,3.202,102,2.938,121,1.532,128,3.488,135,3.837,138,2.8,141,2.751,142,3.463,151,3.119,169,1.375,174,2.737,175,2.8,180,1.285,181,1.869,186,1.869,188,2.114,210,2.272,229,3.144,233,2.272,237,1.869,291,2.737,302,1.682,307,1.77,309,2.471,317,2.675,331,2.254,352,3.241,353,1.869,362,2.471,416,2.751,432,2.737,438,1.532,452,1.869,455,2.737,588,3.637,630,2.114,653,2.675,663,2.272,692,2.272,697,2.737,732,2.471,783,0.788,987,2.737,999,2.471,1076,1.472,1151,1.982,1452,1.376,1690,2.751,1750,3.344,1804,2.476,2051,2.605,2053,5.271,2116,1.77,2143,1.869,2408,1.982,2491,3.264,2500,2.737,2508,2.737,2511,2.917,2546,2.471,2725,2.272,2727,2.272,2925,2.737,3109,4.315,3120,4.779,3244,2.737,3384,4.028,3604,6.762,3729,2.114,3737,3.111,3767,2.737,3797,3.637,3921,2.471,3951,2.272,3954,2.471,4017,2.471,4031,4.315,4086,2.272,4088,2.737,4100,2.272,4102,4.028,4103,4.028,4113,2.471,4122,2.737,4128,2.272,4131,2.737,4137,2.272,4285,4.779,4607,5.483,4608,4.621,4609,4.621,4610,4.621,4611,3.14,4612,3.14,4613,3.14,4614,3.14,4615,3.14,4616,3.14,4617,4.621,4618,3.14,4619,3.14,4620,3.14,4621,5.483,4622,3.14,4623,3.14,4624,4.621,4625,3.14,4626,3.14,4627,3.14,4628,3.14,4629,3.14,4630,3.14,4631,3.14,4632,3.14,4633,2.737,4634,3.14,4635,3.14,4636,3.14,4637,3.14,4638,4.621,4639,4.621,4640,3.14,4641,3.14,4642,2.737,4643,3.14,4644,3.14,4645,3.14,4646,3.14,4647,3.14,4648,6.446,4649,3.14,4650,3.14,4651,2.737,4652,4.621,4653,2.737,4654,3.14,4655,2.737,4656,3.14,4657,3.14,4658,3.14,4659,3.14,4660,2.737,4661,3.14,4662,3.14,4663,4.621,4664,3.14,4665,2.471,4666,3.14,4667,3.14,4668,3.14,4669,2.471,4670,3.14,4671,2.737,4672,3.14,4673,4.621,4674,3.14,4675,4.621,4676,4.621,4677,4.621,4678,3.14,4679,3.14,4680,3.14,4681,3.14,4682,4.621,4683,4.621,4684,3.14,4685,3.14,4686,3.14,4687,3.14,4688,2.737,4689,4.621,4690,3.14,4691,3.14,4692,3.14,4693,3.14,4694,3.14,4695,3.14,4696,3.14,4697,3.14,4698,3.14,4699,3.14,4700,3.14,4701,2.737,4702,3.14,4703,3.14,4704,3.14,4705,3.14,4706,3.14,4707,3.14,4708,2.471,4709,3.14,4710,3.14,4711,3.14,4712,3.14,4713,2.737,4714,2.737,4715,3.14,4716,3.14,4717,3.14,4718,3.14,4719,3.14,4720,3.14,4721,3.14,4722,2.737,4723,3.14,4724,3.14,4725,3.14,4726,3.14,4727,3.14,4728,3.14,4729,3.14,4730,3.14,4731,3.14,4732,3.14,4733,3.14,4734,3.14,4735,3.14,4736,3.14,4737,3.14,4738,3.14,4739,2.737,4740,3.14,4741,2.737]],["tags/Over analoog en digitaal",[]],["title/Over het introduceren van bedrijfsethiek",[23,1.536,74,1.416,252,1.021,4742,2.991,4743,2.991]],["content/Over het introduceren van bedrijfsethiek",[0,0.241,21,3.349,23,3.406,25,2.757,26,3.91,32,3.206,34,2.894,38,3.349,39,3.024,40,1.97,45,0.83,50,1.773,52,3.186,55,3.166,57,2.604,58,1.97,60,2.573,61,1.865,62,2.395,64,3.496,65,1.69,68,3.186,74,2.995,102,1.773,128,3.024,133,2.089,137,3.186,138,2.886,141,4.088,142,3.177,151,3.475,169,0.985,175,2.886,180,0.776,181,1.97,183,3.475,190,2.604,191,2.604,229,1.614,231,2.395,233,3.475,237,2.858,239,2.604,243,3.805,252,0.985,255,1.265,261,2.089,265,2.858,296,2.604,300,2.604,301,2.604,302,2.573,317,2.342,331,3.024,342,2.604,352,2.573,361,2.089,367,2.452,369,2.395,372,2.395,391,2.858,408,2.604,416,2.858,436,4.185,452,2.858,464,1.97,504,2.604,536,2.395,576,2.604,602,2.884,630,3.233,653,1.614,672,2.228,673,2.228,677,3.475,692,2.395,745,2.148,1005,2.395,1452,1.205,1855,1.773,2180,3.475,2266,1.906,2480,2.884,2482,2.884,2483,2.573,2486,2.604,2491,2.858,2492,2.884,2502,1.865,2506,2.884,2509,1.97,2515,2.228,2521,2.395,2526,2.228,2536,2.395,2563,3.778,2577,2.604,2579,2.604,2587,2.395,2592,2.884,2641,2.884,3212,3.778,3726,3.475,3729,2.228,3742,2.884,3804,2.884,3877,2.604,3880,2.604,3902,4.185,3949,2.604,3981,2.395,3985,2.884,4000,2.395,4009,4.185,4014,2.604,4030,2.228,4076,2.884,4100,2.395,4109,4.185,4113,2.604,4145,2.604,4160,2.604,4195,2.604,4208,2.884,4421,2.884,4742,2.884,4743,2.884,4744,3.309,4745,3.309,4746,3.309,4747,3.309,4748,3.309,4749,4.447,4750,3.309,4751,3.309,4752,3.309,4753,3.309,4754,3.309,4755,3.309,4756,3.309,4757,3.309,4758,3.309,4759,3.309,4760,3.309,4761,3.309,4762,3.309,4763,3.309,4764,3.309,4765,3.309,4766,3.309,4767,4.801,4768,2.884,4769,3.309,4770,3.309,4771,3.309,4772,3.309,4773,5.651,4774,3.309,4775,3.309,4776,3.309,4777,3.309,4778,3.309,4779,3.309,4780,3.309,4781,3.309,4782,3.309,4783,3.309,4784,2.884,4785,2.884,4786,3.309,4787,3.309,4788,3.309,4789,3.309,4790,3.309,4791,4.801,4792,3.309,4793,3.309,4794,4.801,4795,2.884,4796,3.309,4797,3.309,4798,3.309,4799,3.309,4800,3.309,4801,4.185,4802,3.309,4803,3.309,4804,3.309,4805,3.309,4806,5.651,4807,5.651,4808,5.651,4809,5.651,4810,3.309,4811,4.801,4812,3.309,4813,3.309,4814,2.604,4815,3.309,4816,3.309,4817,3.309,4818,3.309,4819,3.309,4820,3.309,4821,3.309,4822,3.309,4823,3.309,4824,3.309,4825,3.309,4826,4.801,4827,3.309,4828,3.309,4829,3.309,4830,4.801,4831,3.309,4832,3.309,4833,3.309,4834,3.309,4835,3.309,4836,3.309,4837,3.309,4838,3.309,4839,3.309,4840,3.309,4841,3.309,4842,3.309,4843,3.309,4844,3.309,4845,3.309,4846,3.309,4847,3.309,4848,3.309,4849,3.309,4850,2.228,4851,3.309,4852,3.309,4853,3.309,4854,3.309,4855,3.309,4856,3.309,4857,3.309,4858,3.309,4859,3.309]],["tags/Over het introduceren van bedrijfsethiek",[]],["title/Over entropie",[252,1.447,4860,4.861]],["content/Over entropie",[0,0.322,21,3.494,22,2.753,23,3.502,25,3.406,26,3.719,32,3.344,33,2.127,34,2.831,38,2.684,39,2.264,40,1.88,50,1.693,52,3.42,55,2.37,58,3.611,60,2.949,63,4.265,65,1.613,68,1.781,74,3.178,102,1.693,112,2.753,128,2.264,133,2.93,135,1.88,136,2.763,137,3.103,138,2.37,142,3.452,150,1.994,151,2.891,161,1.613,175,3.566,180,0.74,188,3.125,191,2.486,192,1.88,208,2.753,229,2.959,238,2.753,248,3.125,252,0.94,302,3.25,304,2.753,307,2.617,317,2.264,331,3.406,342,2.486,352,3.25,367,1.613,368,2.286,369,2.286,372,2.286,376,2.127,416,1.88,452,1.88,464,1.88,561,2.753,565,2.753,572,2.486,605,2.486,608,1.88,619,1.254,653,2.684,672,2.127,673,3.125,677,2.286,680,2.286,732,2.486,757,0.702,836,2.167,880,2.286,968,2.486,1047,1.254,1618,2.127,2359,2.286,2377,2.286,2448,1.693,2474,2.486,2489,3.653,2491,3.611,2501,3.474,2503,3.653,2509,1.88,2511,2.93,2512,1.994,2524,2.753,2526,2.127,2530,2.753,2537,2.753,2538,2.753,2570,2.617,2582,2.753,2674,2.753,3726,3.359,3737,2.127,3773,2.286,3793,2.286,3875,2.127,3876,2.753,3877,2.486,3895,3.653,3954,2.486,3981,2.286,4000,2.286,4002,2.753,4030,2.127,4084,2.753,4092,2.753,4100,3.359,4126,2.286,4135,2.753,4186,2.286,4238,2.486,4633,4.046,4665,2.486,4708,4.33,4714,2.753,4739,5.286,4814,3.653,4850,2.127,4861,3.159,4862,4.642,4863,4.642,4864,3.159,4865,4.642,4866,4.796,4867,3.159,4868,3.159,4869,3.159,4870,3.159,4871,3.159,4872,3.159,4873,3.159,4874,3.159,4875,3.159,4876,3.159,4877,3.159,4878,3.159,4879,3.159,4880,5.632,4881,3.159,4882,4.046,4883,3.159,4884,3.159,4885,4.39,4886,3.159,4887,3.159,4888,5.503,4889,3.159,4890,3.159,4891,3.159,4892,4.642,4893,3.159,4894,3.159,4895,3.159,4896,3.159,4897,4.642,4898,3.159,4899,3.159,4900,2.753,4901,3.159,4902,3.159,4903,3.159,4904,3.159,4905,3.159,4906,4.642,4907,3.159,4908,3.159,4909,3.159,4910,3.159,4911,3.159,4912,3.159,4913,3.159,4914,3.159,4915,3.159,4916,3.159,4917,3.159,4918,3.159,4919,6.065,4920,2.486,4921,3.159,4922,3.159,4923,3.159,4924,4.642,4925,3.159,4926,2.753,4927,3.159,4928,6.065,4929,4.642,4930,3.159,4931,4.642,4932,3.159,4933,3.159,4934,3.159,4935,3.159,4936,3.159,4937,3.159,4938,3.159,4939,3.159,4940,3.159,4941,3.159,4942,3.159,4943,3.159,4944,4.642,4945,3.159,4946,3.159,4947,3.159,4948,3.159,4949,3.159,4950,3.159,4951,3.159,4952,3.159,4953,3.159,4954,4.642,4955,5.503,4956,4.642,4957,3.159,4958,2.753,4959,3.159,4960,3.159,4961,3.159,4962,3.159,4963,3.159,4964,3.159,4965,3.159,4966,3.159,4967,3.159,4968,3.159,4969,3.159,4970,3.159,4971,3.159,4972,3.159,4973,3.159]],["tags/Over entropie",[]],["title/Over de inflatie van intellect",[74,1.416,142,1.474,252,1.021,4974,3.432,4975,3.432]],["content/Over de inflatie van intellect",[0,0.258,21,2.945,23,3.496,24,2.462,25,2.248,26,3.899,30,2.106,32,3.143,34,2.818,38,3.557,39,3.284,40,2.743,50,2.469,52,3.404,55,2.794,60,2.932,64,1.764,65,2.354,68,3.085,74,3.01,102,2.469,122,2.106,123,2.264,128,3.284,133,1.975,136,1.862,137,1.764,138,2.354,142,3.505,150,1.975,151,3.115,175,1.598,186,1.862,192,1.862,228,2.727,229,2.669,235,2.727,237,3.257,252,1.628,255,1.196,302,1.676,307,3.404,310,2.462,317,2.248,324,3.831,331,3.139,352,2.469,367,1.598,385,2.106,391,2.743,408,3.627,416,2.743,428,2.727,438,1.526,452,1.862,507,2.264,557,2.727,653,3.396,672,2.106,696,2.727,724,2.462,733,2.727,757,0.362,783,0.785,927,2.727,968,2.462,1023,1.902,1229,1.598,2010,1.598,2115,2.264,2116,2.598,2473,4.017,2483,2.469,2489,4.306,2491,1.862,2501,3.454,2502,3.085,2509,1.862,2511,1.975,2525,2.462,2536,2.264,2549,2.462,2570,1.764,2571,2.264,2591,2.727,2969,1.862,3437,2.727,3441,2.462,3726,2.264,3729,2.106,3734,2.727,3740,2.727,3768,2.462,3799,2.727,3875,2.106,3880,2.462,3887,2.462,3891,2.462,3905,2.264,3912,1.975,3917,4.017,3924,2.462,3929,2.727,3948,2.727,3951,3.336,3959,2.727,3960,2.727,3979,3.627,3984,2.727,3998,2.462,4000,2.264,4015,2.727,4030,3.103,4101,2.727,4140,2.264,4142,4.017,4143,2.727,4144,2.727,4145,2.462,4183,2.727,4186,2.264,4187,2.462,4195,2.462,4201,2.727,4651,2.727,4660,2.727,4688,2.727,4749,2.462,4795,2.727,4850,2.106,4866,2.727,4880,2.727,4885,2.264,4920,3.627,4958,2.727,4976,3.128,4977,4.609,4978,3.128,4979,3.128,4980,3.128,4981,2.727,4982,3.128,4983,3.128,4984,4.609,4985,3.128,4986,3.128,4987,3.128,4988,3.128,4989,3.128,4990,4.609,4991,3.128,4992,3.128,4993,3.128,4994,3.128,4995,3.128,4996,3.128,4997,3.128,4998,4.609,4999,3.128,5000,3.128,5001,3.128,5002,3.128,5003,3.128,5004,4.609,5005,3.128,5006,2.727,5007,3.128,5008,3.128,5009,3.128,5010,3.128,5011,3.128,5012,3.128,5013,4.609,5014,3.128,5015,3.128,5016,3.128,5017,4.609,5018,3.128,5019,3.128,5020,4.609,5021,4.609,5022,3.128,5023,3.128,5024,3.128,5025,3.128,5026,2.727,5027,3.128,5028,3.128,5029,3.128,5030,3.128,5031,3.128,5032,3.128,5033,3.128,5034,2.727,5035,3.128,5036,3.128,5037,3.128,5038,3.128,5039,3.128,5040,2.727,5041,3.128,5042,6.037,5043,3.128,5044,3.128,5045,3.128,5046,3.128,5047,3.128,5048,3.128,5049,3.128,5050,3.128,5051,3.128,5052,3.128,5053,3.128,5054,3.128,5055,2.727,5056,3.128,5057,3.128,5058,3.128,5059,3.128,5060,4.609,5061,3.128,5062,3.128,5063,3.128,5064,3.128,5065,3.128,5066,4.017,5067,3.128,5068,3.128,5069,3.128,5070,2.727,5071,3.128,5072,3.128,5073,3.128,5074,3.128,5075,3.128,5076,3.128,5077,3.128,5078,3.128,5079,3.128,5080,3.128,5081,2.727,5082,3.128,5083,3.128,5084,3.128,5085,3.128,5086,3.128,5087,3.128,5088,3.128,5089,3.128,5090,3.128,5091,3.128,5092,3.128,5093,3.128,5094,3.128,5095,3.128,5096,3.128,5097,3.128,5098,3.128,5099,3.128,5100,3.128,5101,3.128,5102,3.128,5103,3.128,5104,3.128,5105,3.128,5106,3.128,5107,3.128]],["tags/Over de inflatie van intellect",[]],["title/Over Onmiddellijke Voldoening",[252,1.27,4137,3.089,5108,4.269]],["content/Over Onmiddellijke Voldoening",[0,0.194,20,1.375,21,3.263,23,3.392,25,1.499,26,3.602,32,2.982,33,2.069,34,2.982,38,3.799,39,3.376,52,2.564,55,2.322,58,2.707,60,2.901,61,2.564,62,2.224,63,1.94,64,3.602,65,2.322,74,3.048,102,1.646,107,1.829,122,4.029,123,2.224,128,2.641,135,1.829,136,2.707,137,2.564,138,1.569,141,3.803,142,3.368,147,3.291,150,3.418,151,3.352,175,3.056,178,2.418,183,3.291,186,1.829,188,3.062,229,3.376,243,2.069,248,2.069,250,2.418,252,0.914,261,2.871,302,2.901,305,2.678,307,3.374,317,2.218,324,3.803,331,2.919,352,3.423,353,1.829,367,1.569,368,3.291,372,2.224,373,1.829,376,2.069,385,2.069,391,1.829,438,1.499,452,1.829,464,1.829,501,2.678,536,2.224,600,4.719,604,2.678,653,3.889,655,3.291,672,3.645,673,2.069,680,2.224,682,2.069,694,2.418,746,2.418,757,0.355,773,0.98,783,0.771,832,1.015,1005,2.224,1076,0.825,1139,1.268,1368,2.069,1804,1.646,2031,1.646,2233,2.069,2352,2.069,2483,1.646,2501,1.94,2502,1.732,2521,3.919,2535,2.678,2542,2.678,2546,2.418,2548,3.964,2570,2.564,2571,2.224,2587,2.224,2724,2.418,2868,1.32,3737,3.645,3768,2.418,3793,2.224,3797,3.579,3875,2.069,3883,2.678,3887,2.418,3891,2.418,3895,2.418,3921,3.579,3924,4.261,3944,4.719,3951,2.224,3996,2.678,4017,2.418,4020,2.678,4031,4.71,4071,3.579,4086,2.224,4087,2.678,4097,2.678,4104,2.678,4126,3.291,4128,2.224,4137,3.919,4140,2.224,4160,2.418,4187,2.418,4536,2.678,4543,2.418,4655,2.678,4669,2.418,4713,2.678,4749,2.418,4784,2.678,4801,3.964,4814,2.418,4850,2.069,4885,2.224,5026,2.678,5040,2.678,5055,2.678,5070,2.678,5109,3.073,5110,3.073,5111,3.073,5112,3.073,5113,3.073,5114,3.073,5115,3.073,5116,3.073,5117,3.073,5118,3.073,5119,3.073,5120,3.073,5121,3.073,5122,3.073,5123,3.073,5124,5.415,5125,3.073,5126,5.415,5127,4.548,5128,3.073,5129,3.073,5130,3.073,5131,3.073,5132,4.548,5133,3.073,5134,3.073,5135,3.073,5136,3.073,5137,4.548,5138,5.415,5139,3.073,5140,3.073,5141,3.073,5142,3.073,5143,3.073,5144,3.073,5145,3.073,5146,3.073,5147,3.073,5148,3.073,5149,3.073,5150,3.073,5151,3.073,5152,3.073,5153,4.548,5154,3.073,5155,3.073,5156,3.073,5157,3.073,5158,3.073,5159,4.548,5160,3.073,5161,3.073,5162,3.073,5163,3.073,5164,3.073,5165,3.073,5166,4.548,5167,3.073,5168,3.073,5169,3.073,5170,3.073,5171,3.073,5172,2.678,5173,3.073,5174,3.073,5175,3.073,5176,3.073,5177,3.073,5178,3.073,5179,2.678,5180,3.073,5181,3.073,5182,3.073,5183,5.415,5184,3.073,5185,3.073,5186,3.073,5187,3.073,5188,3.073,5189,3.073,5190,3.073,5191,3.073,5192,3.073,5193,2.678,5194,3.073,5195,3.073,5196,3.073,5197,3.073,5198,3.073,5199,3.073,5200,3.073,5201,3.073,5202,3.073,5203,3.073,5204,3.073,5205,3.073,5206,3.073,5207,3.073,5208,3.073,5209,3.073,5210,3.073,5211,3.073,5212,3.073,5213,3.073,5214,3.073,5215,3.073,5216,3.073,5217,3.073,5218,3.073,5219,3.073,5220,3.073,5221,3.073]],["tags/Over Onmiddellijke Voldoening",[]],["title/Over tijdsbesef",[252,1.447,5222,4.861]],["content/Over tijdsbesef",[0,0.194,14,1.431,17,2.218,21,2.637,23,3.391,25,3.735,26,3.824,28,2.412,30,2.064,32,3.703,34,2.524,37,2.672,38,3.538,39,1.495,40,1.825,50,1.642,52,2.56,54,2.672,55,2.761,58,1.825,60,1.642,61,1.728,63,2.866,64,4.004,65,1.565,74,3.127,102,2.897,121,2.214,122,2.064,128,2.214,135,2.702,136,2.702,137,1.728,138,2.761,141,3.558,142,3.388,147,2.218,151,3.246,166,0.743,175,3.053,181,2.702,190,2.412,192,3.219,205,4.255,210,3.286,229,2.214,232,2.672,237,3.219,239,3.573,244,2.218,247,1.495,248,2.064,252,0.912,300,2.412,301,2.412,302,1.642,307,3.048,317,3.374,324,1.825,330,2.672,331,3.26,351,2.672,352,2.897,353,2.702,367,1.565,416,1.825,431,3.286,464,1.825,536,3.286,558,2.672,608,2.702,615,2.672,653,2.637,655,3.286,757,0.355,893,3.573,999,2.412,1076,0.823,1804,1.642,1965,1.935,1974,1.431,2270,4.712,2306,2.412,2319,1.565,2328,2.064,2483,2.433,2493,2.672,2502,1.728,2509,1.825,2511,1.935,2512,3.774,2515,2.064,2526,3.64,2560,3.057,2570,2.56,3181,2.672,3753,2.412,3875,3.64,3905,5.006,3912,1.935,3949,2.412,3998,2.412,4033,3.957,4086,2.218,4126,2.218,4128,2.218,4140,2.218,4178,2.672,4186,2.218,4194,3.957,4203,2.672,4207,2.672,4266,2.412,4445,2.412,4493,2.672,4559,2.672,4567,2.672,4642,2.672,4653,4.712,4665,2.412,4669,2.412,4671,2.672,4701,2.672,4708,2.412,4722,3.957,4741,2.672,4768,2.672,4785,2.672,4850,2.064,4885,2.218,4920,2.412,4926,2.672,4981,2.672,5006,3.957,5034,2.672,5081,3.957,5172,2.672,5179,2.672,5193,2.672,5223,3.065,5224,3.065,5225,4.54,5226,4.54,5227,3.065,5228,4.54,5229,4.54,5230,4.54,5231,5.407,5232,5.407,5233,3.065,5234,3.065,5235,3.065,5236,4.54,5237,3.065,5238,3.065,5239,3.065,5240,3.065,5241,3.065,5242,3.065,5243,3.065,5244,3.065,5245,3.065,5246,4.54,5247,3.065,5248,3.065,5249,3.065,5250,3.065,5251,3.065,5252,3.065,5253,3.065,5254,3.065,5255,3.065,5256,3.065,5257,3.065,5258,3.065,5259,3.065,5260,3.065,5261,3.065,5262,3.065,5263,3.065,5264,3.065,5265,4.54,5266,3.065,5267,3.065,5268,3.065,5269,3.065,5270,4.54,5271,3.065,5272,3.065,5273,3.065,5274,3.065,5275,4.54,5276,3.065,5277,3.065,5278,3.065,5279,3.065,5280,3.065,5281,3.065,5282,3.065,5283,3.065,5284,3.065,5285,3.065,5286,5.978,5287,2.672,5288,3.065,5289,3.065,5290,3.065,5291,3.065,5292,3.065,5293,5.407,5294,3.065,5295,3.065,5296,4.54,5297,3.065,5298,3.065,5299,3.065,5300,3.065,5301,3.065,5302,3.065,5303,3.065,5304,3.065,5305,3.065,5306,4.54,5307,3.065,5308,3.065,5309,3.065,5310,3.065,5311,3.065,5312,3.065,5313,3.065,5314,3.065,5315,3.065,5316,3.065,5317,3.065,5318,3.065,5319,3.065,5320,3.065,5321,3.065,5322,3.065,5323,3.065,5324,3.065,5325,3.065,5326,3.065,5327,3.065,5328,3.065,5329,3.065,5330,3.065,5331,3.065,5332,3.065,5333,3.065,5334,3.065,5335,3.065]],["tags/Over tijdsbesef",[]],["title/Concentrating on serendipitous creativity",[2637,1.91,4582,3.089,5336,4.269]],["content/Concentrating on serendipitous creativity",[126,2.178,158,1.847,159,0.917,166,1.797,171,2.737,247,1.884,273,1.053,287,1.594,339,1.769,373,3.19,425,2.872,442,1.19,508,1.19,515,1.489,517,1.803,520,1.972,522,1.653,524,0.969,528,1.728,529,1.803,530,1.111,532,1.594,610,1.533,620,1.422,621,2.614,729,2.128,735,1.422,745,2.398,756,0.592,757,0.447,758,1.71,766,1.594,773,2.227,778,1.19,779,1.71,782,3.19,783,1.344,791,1.3,793,0.969,806,2.07,809,1.659,811,2.178,858,2.398,921,1.594,952,2.07,958,2.07,1024,3.608,1035,2.178,1047,1.533,1073,2.178,1076,1.037,1081,1.533,1085,3.366,1087,1.972,1116,2.302,1120,2.07,1128,2.13,1129,3.383,1144,3.242,1145,0.969,1148,1.651,1159,1.003,1164,1.654,1165,2.872,1181,2.178,1182,3.19,1211,2.299,1215,4.143,1226,0.937,1229,1.972,1237,2.212,1240,2.07,1252,1.037,1336,1.659,1362,2.048,1368,2.601,1373,1.323,1375,1.972,1379,2.796,1393,3.04,1436,4.454,1437,1.728,1452,1.344,1466,2.299,1484,2.737,1539,1.594,1540,3.366,1544,1.594,1567,1.149,1603,4.671,1671,1.884,1680,2.299,1718,1.803,1724,3.19,1730,2.796,1734,2.07,1795,1.728,1907,2.796,1918,2.601,1942,3.021,1960,1.232,1968,2.872,1974,1.803,1991,2.601,1995,3.021,2005,1.884,2011,2.796,2018,2.299,2089,2.796,2117,2.299,2119,3.469,2266,1.533,2286,3.04,2319,1.972,2368,3.366,2384,2.601,2391,2.299,2432,1.884,2448,2.07,2484,2.796,2615,4.408,2789,3.366,2806,3.366,2843,2.438,2874,4.454,2905,3.04,2982,3.04,2998,5.363,3051,4.217,3068,3.366,3105,3.366,3138,2.796,3221,3.366,3463,3.366,3607,3.366,3615,3.366,3831,2.796,3854,3.04,4218,3.366,4219,3.04,4238,3.04,4271,3.366,4307,3.04,4331,3.04,4340,3.04,4445,4.843,4571,3.366,4582,5.053,4585,5.363,5337,5.359,5338,3.863,5339,5.359,5340,3.863,5341,3.863,5342,5.359,5343,6.154,5344,3.863,5345,3.863,5346,3.863,5347,3.863,5348,3.863,5349,5.359,5350,5.359,5351,3.863,5352,3.863,5353,3.863,5354,3.863,5355,3.863,5356,3.863,5357,3.863,5358,3.863,5359,3.863,5360,3.863,5361,3.863,5362,3.863,5363,3.863,5364,3.863,5365,3.863,5366,3.863,5367,3.863,5368,3.863,5369,6.647,5370,3.863,5371,3.863,5372,3.863,5373,3.863,5374,3.863]],["tags/Concentrating on serendipitous creativity",[2615,2.12,3870,1.893,4582,2.43]],["title/Take your time.",[166,1.179,515,1.351]],["content/Take your time.",[14,1.748,158,1.041,159,0.641,171,1.912,172,1.487,176,1.676,194,1.361,273,0.898,276,1.237,278,1.282,286,1.74,345,1.006,373,3.122,376,2.521,497,3.531,508,1.154,517,1.748,524,1.519,530,1.508,532,2.498,610,2.082,621,1.827,704,2.111,707,2.6,738,1.387,743,2.947,756,0.574,757,0.607,758,1.041,766,1.546,768,2.167,769,1.796,770,1.154,780,0.848,782,2.229,783,1.519,784,1.827,785,2.71,790,2.71,793,0.94,799,1.487,800,0.848,809,2.6,856,2.229,872,1.487,886,2.007,933,1.912,953,1.912,958,2.007,977,2.71,991,1.546,1000,2.229,1013,2.558,1023,1.546,1047,1.487,1069,2.947,1076,1.006,1139,1.546,1145,0.94,1148,1.154,1159,1.571,1160,2.521,1164,1.148,1165,2.007,1183,1.282,1188,3.264,1189,1.748,1211,2.229,1212,1.676,1226,0.908,1252,1.006,1254,1.195,1286,1.912,1292,2.005,1293,1.676,1310,2.364,1311,3.531,1323,2.952,1336,2.253,1353,1.546,1355,2.826,1362,1.431,1372,2.521,1373,1.796,1375,1.912,1379,2.71,1481,2.947,1484,1.912,1491,2.947,1567,1.801,1571,2.111,1575,2.364,1584,3.199,1596,2.007,1609,2.826,1628,2.521,1629,2.71,1672,1.546,1687,2.007,1690,2.229,1718,1.748,1723,2.364,1731,2.364,1733,1.912,1784,2.111,1795,1.676,1855,2.007,1911,2.521,1918,3.531,1919,3.603,1930,3.264,1960,1.195,1967,2.111,1975,3.796,1986,2.364,1999,2.947,2001,1.912,2005,1.827,2010,1.912,2017,2.71,2030,2.165,2048,3.603,2049,2.364,2051,2.957,2182,2.947,2214,3.603,2254,2.71,2291,2.007,2325,3.531,2341,2.364,2391,2.229,2429,2.364,2484,2.71,2603,2.947,2668,2.947,2669,2.229,2708,2.947,2779,1.912,2803,2.947,2823,3.264,2834,4.075,2843,2.364,2886,2.947,3024,3.796,3026,2.521,3075,3.264,3122,2.71,3155,3.264,3229,2.947,3291,3.264,3308,2.947,3443,2.947,3468,3.311,3495,3.264,3518,2.521,3577,3.264,3831,2.71,4222,3.264,4231,3.264,4255,4.571,4259,2.947,4266,2.947,4290,3.264,4307,5.161,4312,3.264,4316,3.264,4322,3.264,4332,4.571,4436,3.264,4437,3.264,4543,2.947,4544,3.264,4900,4.571,5375,3.745,5376,5.245,5377,3.745,5378,5.245,5379,5.245,5380,3.745,5381,3.745,5382,3.745,5383,3.745,5384,3.745,5385,3.745,5386,3.745,5387,3.745,5388,3.745,5389,3.745,5390,3.745,5391,3.745,5392,3.745,5393,3.745,5394,3.745,5395,3.745,5396,3.745,5397,3.745,5398,3.745,5399,3.745,5400,3.745,5401,3.745,5402,3.745,5403,5.245,5404,3.745,5405,3.745,5406,3.745,5407,6.053,5408,3.745,5409,5.275,5410,3.264,5411,3.745,5412,3.745,5413,3.745,5414,3.745,5415,3.745,5416,3.745,5417,3.745,5418,3.745,5419,3.745,5420,3.745,5421,3.745,5422,3.745,5423,3.745,5424,3.745,5425,3.745,5426,3.745,5427,3.745,5428,3.745,5429,3.745,5430,3.745,5431,3.745,5432,3.745,5433,3.745]],["tags/Take your time.",[3724,2.16,3870,2.273]],["title/Teaching yourself to draw",[858,1.91,1935,1.515,2026,2.407]],["content/Teaching yourself to draw",[0,0.334,3,2.152,6,1.38,11,2.762,14,1.782,29,3.847,79,0.725,114,1.575,159,0.91,167,2.152,172,1.515,194,1.587,261,2.41,265,2.272,272,1.708,273,0.653,278,1.307,282,1.782,284,1.025,286,1.097,339,1.097,345,1.427,411,2.762,425,2.045,458,1.355,468,2.031,508,1.176,513,2.152,515,1.061,522,1.427,530,1.528,551,2.272,619,1.515,704,2.152,741,2.57,745,1.708,747,2.272,752,1.459,756,0.937,757,0.615,766,2.524,769,1.307,770,1.176,773,1.218,775,2.57,778,1.637,780,0.865,786,1.862,793,0.958,800,1.204,809,1.639,828,1.708,856,2.272,858,2.736,900,3.004,928,1.862,930,2.762,937,1.957,991,2.194,1014,2.57,1021,1.862,1030,4.632,1047,1.515,1067,1.782,1076,1.642,1098,3.004,1101,1.575,1115,1.639,1117,2.378,1120,2.045,1125,2.57,1128,1.528,1129,2.41,1133,1.862,1139,2.194,1140,2.848,1152,1.744,1162,2.41,1166,2.337,1185,2.762,1189,1.782,1190,2.171,1196,1.575,1212,2.378,1218,2.41,1225,1.949,1240,2.045,1241,1.756,1252,1.642,1254,1.218,1288,1.176,1309,1.862,1315,1.515,1355,1.782,1368,2.57,1373,1.307,1375,2.714,1439,3.543,1446,3.004,1450,2.031,1452,1.333,1458,2.428,1462,3.355,1469,2.272,1473,1.862,1525,2.272,1530,3.004,1548,1.862,1559,2.272,1571,2.152,1575,2.41,1584,1.862,1608,2.762,1609,1.782,1632,1.862,1681,3.327,1690,2.272,1724,2.272,1929,3.327,1935,1.355,1942,2.152,1960,2.109,1973,1.575,1989,1.758,1991,2.57,2005,1.862,2010,2.714,2012,3.004,2026,4.164,2028,3.327,2089,2.762,2148,3.004,2202,3.847,2228,3.327,2319,1.949,2345,3.327,2358,3.004,2390,3.578,2391,2.272,2436,3.327,2443,3.578,2446,3.578,2629,4.662,2637,1.708,2845,3.004,2868,2.283,2874,2.762,2893,3.327,2919,3.327,2997,3.327,3006,2.57,3084,3.327,3146,3.327,3164,2.762,3209,3.327,3212,3.004,3219,3.847,3235,3.327,3404,4.632,3635,3.327,3696,2.762,3724,3.277,4245,3.327,4282,3.327,4283,3.327,4426,3.327,4458,3.327,4882,3.327,5066,5.329,5287,3.327,5409,3.327,5410,3.327,5434,5.315,5435,3.817,5436,3.817,5437,3.817,5438,3.817,5439,3.817,5440,3.817,5441,3.817,5442,3.817,5443,3.817,5444,3.817,5445,3.817,5446,3.817,5447,3.817,5448,3.817,5449,3.817,5450,3.817,5451,3.817,5452,3.817,5453,5.315,5454,3.817,5455,3.817,5456,3.817,5457,3.817,5458,3.817,5459,3.817,5460,3.817,5461,3.817,5462,3.817,5463,3.817,5464,3.817]],["tags/Teaching yourself to draw",[5465,5.042]],["title/No, vegetarians do not eat fish!",[2042,2.695,2043,3.089,5466,3.72]],["content/No, vegetarians do not eat fish!",[0,0.338,76,1.806,79,0.528,144,2.073,159,0.662,171,2.739,172,1.536,194,1.004,272,1.731,273,0.662,286,1.542,345,1.039,495,2.8,522,1.039,524,1.669,529,1.806,530,1.771,531,4.676,551,2.303,619,1.536,621,1.887,757,0.621,760,1.661,769,2.109,770,1.653,772,1.596,779,1.711,780,1.507,781,2.035,783,1.669,786,2.617,800,1.215,806,2.073,811,2.181,829,2.739,872,1.536,889,2.303,930,2.8,952,2.875,1033,2.303,1037,1.536,1073,2.181,1116,2.304,1122,1.424,1123,1.806,1128,1.112,1133,1.887,1134,2.181,1139,1.597,1144,1.887,1145,0.971,1148,1.192,1158,2.303,1164,0.847,1166,2.542,1167,2.181,1181,2.181,1183,1.837,1204,2.8,1226,1.493,1227,1.975,1237,2.214,1241,1.278,1254,1.234,1292,1.478,1309,1.887,1323,1.887,1356,1.975,1381,1.975,1390,1.731,1437,1.731,1450,1.478,1454,3.386,1469,2.303,1548,1.887,1551,3.044,1561,2.303,1570,1.975,1575,2.442,1596,2.073,1654,3.044,1672,1.597,1678,2.8,1750,2.8,1878,1.597,1926,3.044,1957,2.181,2001,1.975,2009,2.303,2012,3.044,2042,4.563,2043,5.68,2046,2.442,2055,3.044,2062,3.371,2075,3.371,2093,3.371,2115,2.8,2161,3.044,2181,1.887,2275,2.604,2364,3.612,2448,2.073,2644,5.056,2648,4.813,2680,3.193,2797,3.044,2834,2.604,2868,1.661,2973,3.371,3024,2.8,3030,3.044,3299,3.371,3402,4.846,3602,3.371,3603,2.8,3620,3.371,3836,3.371,4037,3.044,4062,3.044,4215,3.371,4244,3.371,4298,3.044,4396,3.371,4418,3.371,4428,5.497,4430,4.676,4432,3.371,4470,3.371,4486,4.676,4506,4.676,4540,3.371,4556,3.371,4581,3.371,5466,4.676,5467,3.868,5468,3.868,5469,3.868,5470,3.868,5471,3.868,5472,3.868,5473,3.868,5474,3.868,5475,3.868,5476,5.365,5477,3.868,5478,3.868,5479,3.868,5480,3.868,5481,6.159,5482,3.868,5483,5.365,5484,3.868,5485,3.868,5486,3.868,5487,3.868,5488,3.868,5489,3.868,5490,3.868,5491,3.868,5492,3.868,5493,3.868,5494,3.868,5495,3.868,5496,3.868,5497,3.868,5498,3.868,5499,5.365,5500,3.868,5501,3.868,5502,3.868,5503,6.159,5504,3.868,5505,3.868,5506,3.868,5507,3.868,5508,3.868,5509,3.868,5510,3.868,5511,3.868,5512,3.868,5513,3.868,5514,3.868,5515,5.365,5516,3.868,5517,3.868,5518,3.868,5519,3.868,5520,3.868,5521,3.868,5522,3.868,5523,3.868,5524,3.868,5525,3.868,5526,3.868,5527,3.868]],["tags/No, vegetarians do not eat fish!",[2043,2.917,2847,2.545]]],"invertedIndex":[["",{"_index":0,"title":{},"content":{"undefined":{},"Unit Testing Stored Procedures":{},"Visual Studio 2012 for Eclipse users":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Archive by Year: 2013":{},"Metaprogramming instead of duplication":{},"Bye autotools hello Scons":{},"Custom Webdriver Page Factories":{},"Faking domain logic":{},".NET Memory management VS JVM Memory management":{},"Unit Testing Extjs UI with Siesta":{},"Archive by Year: 2014":{},"Webdriver Exception Handling":{},"Archive by Year: 2015":{},"Migrating from Extjs to React gradually":{},"Unit testing in Legacy Projects: VB6":{},"Archive by Year: 2016":{},"How to teach kids to program":{},"Development principles in cooking":{},"A quick look at 6 fountain pens":{},"Archive by Year: 2017":{},"Hiding Code Complexity":{},"Death to pseudocode?":{},"Thinking in terms of objects":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"A Ph.D. Thesis Proposal":{},"Reverse engineering a curriculum":{},"Domain Driven Design in C":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"Unit Testing PicoBlaze Assembly files":{},"Archive by Year: 2018":{},"A Ph.D. Thesis: Iteration 2":{},"IT Competences and Certificates":{},"Teaching Object-Oriented design using the GBA":{},"Programming: a Creative Cognitive Process":{},"Archive by Year: 2019":{},"Five reasons why agile and academia don't go together":{},"DIY: Hosting stuff on your own VPS":{},"Hugo Extended: More static site processing power!":{},"Page Building with Brizy in Wordpress":{},"Using Pandoc to publish a book":{},"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{},"Archive by Year: 2020":{},"Tech Blog":{},"2017 in books":{},"Essays":{},"A samurai learning mindset":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Ending your day with happy thoughts":{},"Healing creative scars":{},"Inventing - for the worse?":{},"Journaling in practice":{},"Learning to become a baker":{},"Nuts about local nuts":{},"On finding your inner zen in big cities":{},"Over het introduceren van bedrijfsethiek":{},"Over entropie":{},"Over de inflatie van intellect":{},"Over Onmiddellijke Voldoening":{},"Over tijdsbesef":{},"Teaching yourself to draw":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["0",{"_index":44,"title":{},"content":{"undefined":{},"Custom Webdriver Page Factories":{},"A Ph.D. Thesis Proposal":{},"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["0.7",{"_index":3323,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["01",{"_index":15,"title":{},"content":{"undefined":{}},"tags":{}}],["1",{"_index":45,"title":{},"content":{"undefined":{},"Unit Testing Stored Procedures":{},"Migrating from Extjs to React gradually":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Hiding Code Complexity":{},"Death to pseudocode?":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"A Ph.D. Thesis Proposal":{},"Reverse engineering a curriculum":{},"Domain Driven Design in C":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"Unit Testing PicoBlaze Assembly files":{},"A Ph.D. Thesis: Iteration 2":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"DIY: Hosting stuff on your own VPS":{},"Using Pandoc to publish a book":{},"Designing websites with accessibility in mind":{},"A samurai learning mindset":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"Journaling in practice":{},"Learning to become a baker":{},"Nuts about local nuts":{},"Over analoog en digitaal":{},"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["1.2.html",{"_index":727,"title":{},"content":{"undefined":{}},"tags":{}}],["1.6",{"_index":321,"title":{},"content":{"undefined":{}},"tags":{}}],["1.method(\"+\").unbind().bind(1).call(2",{"_index":642,"title":{},"content":{"undefined":{}},"tags":{}}],["1.method(:+).cal",{"_index":639,"title":{},"content":{"undefined":{}},"tags":{}}],["1.methods.each{|x",{"_index":654,"title":{},"content":{"undefined":{}},"tags":{}}],["10",{"_index":14,"title":{},"content":{"undefined":{},"Development principles in cooking":{},"Hiding Code Complexity":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"A Ph.D. Thesis: Iteration 2":{},"DIY: Hosting stuff on your own VPS":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"Over tijdsbesef":{},"Take your time.":{},"Teaching yourself to draw":{}},"tags":{}}],["10\"_",{"_index":2791,"title":{},"content":{"A Decade in the Software Engineering industry":{}},"tags":{}}],["10.000",{"_index":5287,"title":{},"content":{"Over tijdsbesef":{},"Teaching yourself to draw":{}},"tags":{}}],["100",{"_index":2727,"title":{},"content":{"Productivity Tools on all platforms":{},"Learning to become a baker":{},"On finding your inner zen in big cities":{},"Over analoog en digitaal":{}},"tags":{}}],["1000",{"_index":4504,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["100000",{"_index":943,"title":{},"content":{"undefined":{}},"tags":{}}],["1080p",{"_index":4717,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["10k",{"_index":5449,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["11",{"_index":70,"title":{},"content":{"undefined":{},"Unit Testing Stored Procedures":{},"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["12",{"_index":3625,"title":{},"content":{"Tracking and privacy concerns on websites":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["120",{"_index":1837,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["13",{"_index":3196,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["138c5efd45e9#.aul09q3wr",{"_index":5438,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["13hr",{"_index":4520,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["15",{"_index":5034,"title":{},"content":{"Over de inflatie van intellect":{},"Over tijdsbesef":{}},"tags":{}}],["1643",{"_index":3825,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["17h",{"_index":4579,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["18",{"_index":3194,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["192.168.1.11",{"_index":917,"title":{},"content":{"undefined":{}},"tags":{}}],["1950",{"_index":5097,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["1979",{"_index":3938,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["1990",{"_index":4719,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["2",{"_index":180,"title":{"A Ph.D. Thesis: Iteration 2":{}},"content":{"undefined":{},"Unit Testing Stored Procedures":{},"How to teach kids to program":{},"Development principles in cooking":{},"A quick look at 6 fountain pens":{},"Death to pseudocode?":{},"Thinking in terms of objects":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"Domain Driven Design in C":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"Unit Testing PicoBlaze Assembly files":{},"A Ph.D. Thesis: Iteration 2":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"DIY: Hosting stuff on your own VPS":{},"Using Pandoc to publish a book":{},"Designing websites with accessibility in mind":{},"A samurai learning mindset":{},"Ending your day with happy thoughts":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"Journaling in practice":{},"Nuts about local nuts":{},"On finding your inner zen in big cities":{},"Over analoog en digitaal":{},"Over het introduceren van bedrijfsethiek":{},"Over entropie":{}},"tags":{}}],["2.0",{"_index":927,"title":{},"content":{"undefined":{},"Over de inflatie van intellect":{}},"tags":{}}],["2.1.1/method.html",{"_index":638,"title":{},"content":{"undefined":{}},"tags":{}}],["20",{"_index":5012,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["2000",{"_index":2141,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["2000km",{"_index":4505,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["2003",{"_index":2451,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["2004",{"_index":919,"title":{},"content":{"undefined":{}},"tags":{}}],["2010",{"_index":4032,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"Healing creative scars":{}},"tags":{}}],["2012",{"_index":1011,"title":{"Visual Studio 2012 for Eclipse users":{}},"content":{"Learning to become a baker":{}},"tags":{}}],["2013",{"_index":13,"title":{"Archive by Year: 2013":{}},"content":{"undefined":{},"Enhancing the builder pattern with closures":{},"Archive by Year: 2013":{}},"tags":{}}],["2014",{"_index":1717,"title":{"Archive by Year: 2014":{}},"content":{"Archive by Year: 2014":{}},"tags":{}}],["2015",{"_index":1791,"title":{"Archive by Year: 2015":{}},"content":{"Archive by Year: 2015":{}},"tags":{}}],["2016",{"_index":1934,"title":{"Archive by Year: 2016":{}},"content":{"Archive by Year: 2016":{},"Learning to become a baker":{}},"tags":{}}],["2017",{"_index":2210,"title":{"Archive by Year: 2017":{},"2017 in books":{}},"content":{"Archive by Year: 2017":{},"Using Pandoc to publish a book":{},"2017 in books":{},"A samurai learning mindset":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["2017](https://techorama2017.sched.com/event/9m8g/th",{"_index":1941,"title":{},"content":{"How to teach kids to program":{}},"tags":{}}],["2018",{"_index":2969,"title":{"Archive by Year: 2018":{}},"content":{"Archive by Year: 2018":{},"Teaching Object-Oriented design using the GBA":{},"Using Pandoc to publish a book":{},"2017 in books":{},"Essays":{},"Over de inflatie van intellect":{}},"tags":{}}],["2019",{"_index":3119,"title":{"Archive by Year: 2019":{}},"content":{"Teaching Object-Oriented design using the GBA":{},"Archive by Year: 2019":{}},"tags":{}}],["2020",{"_index":3643,"title":{"Archive by Year: 2020":{}},"content":{"Archive by Year: 2020":{}},"tags":{}}],["207",{"_index":3050,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["21",{"_index":4646,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["21.54[\"tofix",{"_index":440,"title":{},"content":{"undefined":{}},"tags":{}}],["22",{"_index":441,"title":{},"content":{"undefined":{},"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["3",{"_index":169,"title":{},"content":{"undefined":{},"Unit Testing Stored Procedures":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Death to pseudocode?":{},"Thinking in terms of objects":{},"Computer Science learning pathways":{},"A Ph.D. Thesis Proposal":{},"Domain Driven Design in C":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"Unit Testing PicoBlaze Assembly files":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"DIY: Hosting stuff on your own VPS":{},"Using Pandoc to publish a book":{},"Designing websites with accessibility in mind":{},"2017 in books":{},"A samurai learning mindset":{},"Healing creative scars":{},"Nuts about local nuts":{},"Over analoog en digitaal":{},"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["30",{"_index":3833,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["314203871",{"_index":3126,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["33",{"_index":3191,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["365",{"_index":4047,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["3776",{"_index":2153,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["3d",{"_index":4369,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["3ml",{"_index":2194,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["4",{"_index":255,"title":{},"content":{"undefined":{},"Unit Testing Stored Procedures":{},"Migrating from Extjs to React gradually":{},"How to teach kids to program":{},"Development principles in cooking":{},"A Ph.D. Thesis Proposal":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"Unit Testing PicoBlaze Assembly files":{},"Programming: a Creative Cognitive Process":{},"DIY: Hosting stuff on your own VPS":{},"Page Building with Brizy in Wordpress":{},"Healing creative scars":{},"Learning to become a baker":{},"Nuts about local nuts":{},"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{}},"tags":{}}],["4.aspx",{"_index":1640,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["40",{"_index":2224,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["403bc03781ab",{"_index":5468,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["40gb",{"_index":3278,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["42",{"_index":2949,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["443",{"_index":3313,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["4gb",{"_index":3270,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["4gig",{"_index":3277,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["5",{"_index":121,"title":{},"content":{"undefined":{},"Migrating from Extjs to React gradually":{},"How to teach kids to program":{},"Thinking in terms of objects":{},"A Decade in the Software Engineering industry":{},"Five reasons why agile and academia don't go together":{},"Page Building with Brizy in Wordpress":{},"Healing creative scars":{},"Nuts about local nuts":{},"Over analoog en digitaal":{},"Over tijdsbesef":{}},"tags":{}}],["5.0",{"_index":1922,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["5.pdf",{"_index":3048,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["50",{"_index":2461,"title":{},"content":{"Computer Science learning pathways":{},"A samurai learning mindset":{},"Healing creative scars":{}},"tags":{}}],["500",{"_index":3503,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["53",{"_index":2235,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["6",{"_index":263,"title":{"A quick look at 6 fountain pens":{}},"content":{"undefined":{},"Unit testing in Legacy Projects: VB6":{},"A quick look at 6 fountain pens":{},"Unit Testing PicoBlaze Assembly files":{},"Teaching Object-Oriented design using the GBA":{},"Essays":{},"Nuts about local nuts":{}},"tags":{}}],["6\">englishnederlandshellomor",{"_index":3554,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["articlecalcul",{"_index":1330,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["articledatabas",{"_index":1332,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["articlemanag",{"_index":1334,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["articlemanagertest",{"_index":1329,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["artifici",{"_index":2416,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["artikel",{"_index":5068,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["artist",{"_index":3705,"title":{},"content":{"2017 in books":{}},"tags":{}}],["artist'",{"_index":3702,"title":{},"content":{"2017 in books":{}},"tags":{}}],["artistri",{"_index":4390,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["artwork",{"_index":5455,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["asia",{"_index":4516,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["asian",{"_index":2073,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["asimov",{"_index":4022,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["ask",{"_index":829,"title":{},"content":{"Unit Testing Stored Procedures":{},"Unit testing in Legacy Projects: VB6":{},"A quick look at 6 fountain pens":{},"Domain Driven Design in C":{},"The Startup of a Lean Doctorate":{},"IT Competences and Certificates":{},"Five reasons why agile and academia don't go together":{},"Are you handing over enough when inspiring someone?":{},"Inventing - for the worse?":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["aspect",{"_index":2459,"title":{},"content":{"Computer Science learning pathways":{},"Five reasons why agile and academia don't go together":{}},"tags":{}}],["aspx",{"_index":1650,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["ass",{"_index":5365,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["assassin'",{"_index":3679,"title":{},"content":{"2017 in books":{}},"tags":{}}],["assembl",{"_index":2913,"title":{"Unit Testing PicoBlaze Assembly files":{}},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{"Unit Testing PicoBlaze Assembly files":{}}}],["assert",{"_index":708,"title":{},"content":{"undefined":{},"Unit Testing Extjs UI with Siesta":{},"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["assert.that",{"_index":1893,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["assert_that",{"_index":2961,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["assert_that.reg(\"s5\").contains(3",{"_index":2965,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["assess",{"_index":2916,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["assign",{"_index":527,"title":{},"content":{"undefined":{},"Enhancing the builder pattern with closures":{},"Death to pseudocode?":{}},"tags":{}}],["assimil",{"_index":3867,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["associ",{"_index":2638,"title":{},"content":{"Reverse engineering a curriculum":{},"I'm jealous of my dog":{}},"tags":{}}],["assum",{"_index":4264,"title":{},"content":{"Healing creative scars":{}},"tags":{}}],["assumpt",{"_index":4212,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["assword",{"_index":946,"title":{},"content":{"undefined":{}},"tags":{}}],["astonish",{"_index":2802,"title":{},"content":{"A Decade in the Software Engineering industry":{}},"tags":{}}],["async",{"_index":1648,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["at",{"_index":4451,"title":{},"content":{"Learning to become a baker":{}},"tags":{}}],["at](https://www.goodreads.com/user/year_in_books/2017/5451893",{"_index":3667,"title":{},"content":{"2017 in books":{}},"tags":{}}],["attach",{"_index":1016,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["attack",{"_index":3300,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["attempt",{"_index":1629,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"How to teach kids to program":{},"Using Pandoc to publish a book":{},"Take your time.":{}},"tags":{}}],["attend",{"_index":4066,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["attent",{"_index":1277,"title":{},"content":{"Integration Testing with SQLite":{},"Development principles in cooking":{},"Reverse engineering a curriculum":{},"Tracking and privacy concerns on websites":{},"I'm jealous of my dog":{},"Nuts about local nuts":{}},"tags":{}}],["attribut",{"_index":1501,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["attribute.getcustomattributes(field",{"_index":1511,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["aub",{"_index":388,"title":{},"content":{"undefined":{}},"tags":{}}],["august",{"_index":4292,"title":{},"content":{"Healing creative scars":{}},"tags":{}}],["austin",{"_index":2023,"title":{},"content":{"How to teach kids to program":{}},"tags":{}}],["australia",{"_index":4591,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["auteur",{"_index":4164,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["authentiek",{"_index":4667,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["author",{"_index":2419,"title":{},"content":{"Computer Science learning pathways":{},"A Ph.D. Thesis: Iteration 2":{},"Tracking and privacy concerns on websites":{}},"tags":{}}],["auto",{"_index":988,"title":{},"content":{"undefined":{}},"tags":{}}],["auto'",{"_index":4899,"title":{},"content":{"Over entropie":{}},"tags":{}}],["auto_ptrn",{"_index":163,"title":{},"content":{"undefined":{}},"tags":{}}],["br/>patienc",{"_index":3644,"title":{},"content":{"Tech Blog":{}},"tags":{}}],["br/>r",{"_index":951,"title":{},"content":{"undefined":{}},"tags":{}}],["br/>teach",{"_index":5444,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["bracht",{"_index":3780,"title":{},"content":{"Essays":{}},"tags":{}}],["bracket",{"_index":2381,"title":{},"content":{"Teaching by philosophy":{}},"tags":{}}],["bradley'",{"_index":5435,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["brain",{"_index":1967,"title":{},"content":{"How to teach kids to program":{},"Hugo Extended: More static site processing power!":{},"Designing websites with accessibility in mind":{},"Tech Blog":{},"2017 in books":{},"Essays":{},"I'm jealous of my dog":{},"Take your time.":{}},"tags":{}}],["braindump",{"_index":2847,"title":{},"content":{"Journaling in practice":{}},"tags":{"A Decade in the Software Engineering industry":{},"Are you handing over enough when inspiring someone?":{},"Learning to become a baker":{},"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{}}}],["brains_",{"_index":3748,"title":{},"content":{"Essays":{}},"tags":{}}],["branch",{"_index":3251,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["brand",{"_index":3286,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Nuts about local nuts":{}},"tags":{}}],["bread",{"_index":2671,"title":{},"content":{"Domain Driven Design in C":{},"Using Pandoc to publish a book":{},"Tech Blog":{},"Learning to become a baker":{}},"tags":{"Learning to become a baker":{}}}],["bread](http://www.redzuurdesem.b",{"_index":4573,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["break",{"_index":1211,"title":{},"content":{"Integration Testing with SQLite":{},"Unit Testing Extjs UI with Siesta":{},"How to teach kids to program":{},"A samurai learning mindset":{},"I'm jealous of my dog":{},"Concentrating on serendipitous creativity":{},"Take your time.":{}},"tags":{}}],["breakfast",{"_index":3683,"title":{},"content":{"2017 in books":{}},"tags":{}}],["breakpoint",{"_index":1106,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["breath",{"_index":3274,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["brengen",{"_index":4803,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["brengt",{"_index":2499,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["brick",{"_index":4221,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["bridg",{"_index":3169,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["brief",{"_index":2794,"title":{},"content":{"A Decade in the Software Engineering industry":{}},"tags":{}}],["bright",{"_index":4257,"title":{},"content":{"Healing creative scars":{}},"tags":{}}],["brillianc",{"_index":3195,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["bring",{"_index":1024,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"How to teach kids to program":{},"Teaching Object-Oriented design using the GBA":{},"Inventing - for the worse?":{},"Concentrating on serendipitous creativity":{}},"tags":{}}],["brizi",{"_index":3388,"title":{"Page Building with Brizy in Wordpress":{}},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{"Page Building with Brizy in Wordpress":{}}}],["brizy'",{"_index":3423,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["broad",{"_index":2159,"title":{},"content":{"A quick look at 6 fountain pens":{},"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["broaden",{"_index":4260,"title":{},"content":{"Healing creative scars":{}},"tags":{}}],["broader",{"_index":2665,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["broke",{"_index":4060,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["broken",{"_index":3386,"title":{},"content":{"Hugo Extended: More static site processing power!":{},"Inventing - for the worse?":{}},"tags":{}}],["bron",{"_index":664,"title":{},"content":{"undefined":{}},"tags":{}}],["bron](http://nixcraft.com/shel",{"_index":956,"title":{},"content":{"undefined":{}},"tags":{}}],["bron_",{"_index":5143,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["bronzen",{"_index":5098,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["brought",{"_index":3020,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["brown",{"_index":2349,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["brows",{"_index":1781,"title":{},"content":{"Webdriver Exception Handling":{},"Death to pseudocode?":{},"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{},"Tech Blog":{},"2017 in books":{}},"tags":{}}],["browser",{"_index":2268,"title":{},"content":{"Death to pseudocode?":{},"Productivity Tools on all platforms":{},"Hugo Extended: More static site processing power!":{},"Designing websites with accessibility in mind":{}},"tags":{}}],["browserifi",{"_index":1809,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["bruikbaar",{"_index":3731,"title":{},"content":{"Essays":{}},"tags":{}}],["brussel",{"_index":4553,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["bryntum",{"_index":1685,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["bubbel",{"_index":5304,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["bubbl",{"_index":4444,"title":{},"content":{"Learning to become a baker":{}},"tags":{}}],["buddhism",{"_index":4336,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["buddhist",{"_index":4329,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["budget",{"_index":4130,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["buffalo",{"_index":2102,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["buffer",{"_index":686,"title":{},"content":{"undefined":{}},"tags":{}}],["bug",{"_index":1668,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["buikpijn",{"_index":4910,"title":{},"content":{"Over entropie":{}},"tags":{}}],["build",{"_index":1173,"title":{"Page Building with Brizy in Wordpress":{}},"content":{"Enhancing the builder pattern with closures":{},"Bye autotools hello Scons":{},"Faking domain logic":{},"Unit Testing Extjs UI with Siesta":{},"Webdriver Exception Handling":{},"Migrating from Extjs to React gradually":{},"Unit testing in Legacy Projects: VB6":{},"Thinking in terms of objects":{},"Reverse engineering a curriculum":{},"A Decade in the Software Engineering industry":{},"IT Competences and Certificates":{},"Hugo Extended: More static site processing power!":{},"Page Building with Brizy in Wordpress":{},"Designing websites with accessibility in mind":{}},"tags":{}}],["build ecosystem",{"_index":1456,"title":{},"content":{},"tags":{"Bye autotools hello Scons":{}}}],["build(funcbrain",{"_index":3545,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='fa",{"_index":3141,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["class='icon'>mor",{"_index":3543,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='sect1'>bla",{"_index":3538,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='topbar",{"_index":3535,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='txt",{"_index":3540,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["classes.html",{"_index":485,"title":{},"content":{"undefined":{}},"tags":{}}],["classes](http://python",{"_index":483,"title":{},"content":{"undefined":{}},"tags":{}}],["classic",{"_index":1151,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Faking domain logic":{},"A Ph.D. Thesis Proposal":{},"The Startup of a Lean Doctorate":{},"A Ph.D. Thesis: Iteration 2":{},"Over analoog en digitaal":{}},"tags":{}}],["classic/)[^3",{"_index":4693,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["classic](https://www.nintendo.com/sup",{"_index":4639,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["classwork",{"_index":2393,"title":{},"content":{"Teaching by philosophy":{}},"tags":{}}],["claus",{"_index":1746,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["clean",{"_index":1411,"title":{},"content":{"Bye autotools hello Scons":{},"Death to pseudocode?":{},"Computer Science learning pathways":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["clear",{"_index":1310,"title":{},"content":{"Metaprogramming instead of duplication":{},"Death to pseudocode?":{},"The Startup of a Lean Doctorate":{},"Tech Blog":{},"A samurai learning mindset":{},"Take your time.":{}},"tags":{}}],["clearli",{"_index":2339,"title":{},"content":{"Thinking in terms of objects":{},"The Startup of a Lean Doctorate":{},"A samurai learning mindset":{}},"tags":{}}],["clever",{"_index":1950,"title":{},"content":{"How to teach kids to program":{},"Death to pseudocode?":{}},"tags":{}}],["cli",{"_index":3381,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["clich",{"_index":4068,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["click",{"_index":551,"title":{},"content":{"undefined":{},"Custom Webdriver Page Factories":{},"Unit Testing Extjs UI with Siesta":{},"Webdriver Exception Handling":{},"Designing websites with accessibility in mind":{},"Teaching yourself to draw":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["clicked(",{"_index":1861,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["client",{"_index":796,"title":{},"content":{"Unit Testing Stored Procedures":{},".NET Memory management VS JVM Memory management":{}},"tags":{}}],["client/serv",{"_index":1655,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["clion",{"_index":2734,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["clo",{"_index":262,"title":{},"content":{"undefined":{}},"tags":{}}],["clone",{"_index":4663,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["close",{"_index":1286,"title":{},"content":{"Integration Testing with SQLite":{},"Faking domain logic":{},"Death to pseudocode?":{},"A Decade in the Software Engineering industry":{},"A Ph.D. Thesis: Iteration 2":{},"IT Competences and Certificates":{},"Teaching Object-Oriented design using the GBA":{},"A samurai learning mindset":{},"I'm jealous of my dog":{},"Take your time.":{}},"tags":{}}],["closer",{"_index":1214,"title":{},"content":{"Integration Testing with SQLite":{},"Computer Science learning pathways":{},"IT Competences and Certificates":{},"Nuts about local nuts":{}},"tags":{}}],["closur",{"_index":280,"title":{"Enhancing the builder pattern with closures":{}},"content":{"undefined":{}},"tags":{"Enhancing the builder pattern with closures":{}}}],["cloth",{"_index":4364,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["cloud",{"_index":3163,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["cloudflare'",{"_index":3315,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["clr",{"_index":1607,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{".NET Memory management VS JVM Memory management":{}}}],["club",{"_index":4566,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["clue",{"_index":2824,"title":{},"content":{"A Decade in the Software Engineering industry":{},"A samurai learning mindset":{}},"tags":{}}],["clumsi",{"_index":1435,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["clutter",{"_index":1662,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["cmake",{"_index":1449,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["cmd",{"_index":873,"title":{},"content":{"undefined":{},"Productivity Tools on all platforms":{}},"tags":{}}],["cmd+space",{"_index":2755,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["cname",{"_index":3249,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["co",{"_index":1291,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["coach",{"_index":2494,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"A Decade in the Software Engineering industry":{}},"tags":{}}],["coachen",{"_index":2497,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["cockburn",{"_index":3858,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["code",{"_index":458,"title":{"Hiding Code Complexity":{}},"content":{"undefined":{},"Visual Studio 2012 for Eclipse users":{},"Enhancing the builder pattern with closures":{},"Metaprogramming instead of duplication":{},"Custom Webdriver Page Factories":{},"Faking domain logic":{},"Unit Testing Extjs UI with Siesta":{},"Webdriver Exception Handling":{},"Unit testing in Legacy Projects: VB6":{},"Death to pseudocode?":{},"Computer Science learning pathways":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"Five reasons why agile and academia don't go together":{},"Hugo Extended: More static site processing power!":{},"Page Building with Brizy in Wordpress":{},"Are you handing over enough when inspiring someone?":{},"Teaching yourself to draw":{}},"tags":{}}],["code smel",{"_index":1582,"title":{},"content":{},"tags":{"Faking domain logic":{}}}],["code.
brain",{"_index":3556,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["footstep",{"_index":2907,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{}}],["for(int",{"_index":43,"title":{},"content":{"undefined":{},"Death to pseudocode?":{}},"tags":{}}],["for(var",{"_index":423,"title":{},"content":{"undefined":{}},"tags":{}}],["foray",{"_index":2918,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["forbidden",{"_index":5399,"title":{},"content":{"Take your time.":{}},"tags":{}}],["forc",{"_index":2257,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["forceren",{"_index":896,"title":{},"content":{"undefined":{}},"tags":{}}],["ford'",{"_index":2719,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["foreach",{"_index":1507,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["foreign",{"_index":1247,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["forest",{"_index":5408,"title":{},"content":{"Take your time.":{}},"tags":{}}],["forestry.io](https://forestry.io",{"_index":3392,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["forg",{"_index":2605,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["forget",{"_index":2177,"title":{},"content":{"A quick look at 6 fountain pens":{},"Teaching by philosophy":{},"Productivity Tools on all platforms":{},"Teaching Object-Oriented design using the GBA":{},"Page Building with Brizy in Wordpress":{},"Healing creative scars":{},"Nuts about local nuts":{}},"tags":{}}],["forgot",{"_index":4222,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Take your time.":{}},"tags":{}}],["forgotten",{"_index":3140,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["fork",{"_index":3145,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["form",{"_index":1670,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"Unit testing in Legacy Projects: VB6":{},"Reverse engineering a curriculum":{},"A Ph.D. Thesis: Iteration 2":{},"Designing websites with accessibility in mind":{},"A samurai learning mindset":{}},"tags":{}}],["formal",{"_index":4387,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["format",{"_index":1068,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["formul",{"_index":2557,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["formula",{"_index":2878,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{}}],["forth",{"_index":1313,"title":{},"content":{"Metaprogramming instead of duplication":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Using Pandoc to publish a book":{},"Journaling in practice":{}},"tags":{}}],["forward_",{"_index":5102,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["fought",{"_index":4455,"title":{},"content":{"Learning to become a baker":{}},"tags":{}}],["found",{"_index":866,"title":{},"content":{"Unit Testing Stored Procedures":{},"Metaprogramming instead of duplication":{},".NET Memory management VS JVM Memory management":{},"Unit testing in Legacy Projects: VB6":{},"Reverse engineering a curriculum":{},"Teaching Object-Oriented design using the GBA":{},"Programming: a Creative Cognitive Process":{},"Hugo Extended: More static site processing power!":{},"Page Building with Brizy in Wordpress":{},"A samurai learning mindset":{},"Ending your day with happy thoughts":{},"On finding your inner zen in big cities":{}},"tags":{}}],["foundat",{"_index":2430,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["fountain",{"_index":2114,"title":{"A quick look at 6 fountain pens":{}},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["fountain pen",{"_index":2209,"title":{},"content":{},"tags":{"A quick look at 6 fountain pens":{},"Journaling in practice":{}}}],["four",{"_index":1374,"title":{},"content":{"Bye autotools hello Scons":{},"Hiding Code Complexity":{},"Inventing - for the worse?":{}},"tags":{}}],["fourth",{"_index":5482,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["fout",{"_index":47,"title":{},"content":{"undefined":{}},"tags":{}}],["fowler",{"_index":3856,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["fpga",{"_index":2925,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{},"Over analoog en digitaal":{}},"tags":{}}],["frame",{"_index":2798,"title":{},"content":{"A Decade in the Software Engineering industry":{}},"tags":{}}],["framework",{"_index":725,"title":{},"content":{"undefined":{},"Unit Testing Stored Procedures":{},"Faking domain logic":{},".NET Memory management VS JVM Memory management":{},"Unit Testing Extjs UI with Siesta":{},"Migrating from Extjs to React gradually":{},"Unit Testing PicoBlaze Assembly files":{},"IT Competences and Certificates":{},"Teaching Object-Oriented design using the GBA":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["frank",{"_index":4977,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["frankrijk",{"_index":5227,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["freak",{"_index":4311,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["free",{"_index":3248,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Page Building with Brizy in Wordpress":{},"Are you handing over enough when inspiring someone?":{},"Nuts about local nuts":{}},"tags":{}}],["free(georg",{"_index":2706,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["freezer",{"_index":4450,"title":{},"content":{"Learning to become a baker":{}},"tags":{}}],["french",{"_index":4304,"title":{},"content":{"I'm jealous of my dog":{},"Nuts about local nuts":{}},"tags":{}}],["frequent",{"_index":3228,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"Designing websites with accessibility in mind":{}},"tags":{}}],["fresh",{"_index":2082,"title":{},"content":{"Development principles in cooking":{},"Learning to become a baker":{}},"tags":{}}],["freshli",{"_index":4448,"title":{},"content":{"Learning to become a baker":{}},"tags":{}}],["friend",{"_index":2048,"title":{},"content":{"Development principles in cooking":{},"A quick look at 6 fountain pens":{},"The Startup of a Lean Doctorate":{},"Ending your day with happy thoughts":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"Take your time.":{}},"tags":{}}],["friendli",{"_index":815,"title":{},"content":{"Unit Testing Stored Procedures":{},"Page Building with Brizy in Wordpress":{},"Are you handing over enough when inspiring someone?":{},"I'm jealous of my dog":{}},"tags":{}}],["from?from_search=tru",{"_index":4603,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["from](http://www.goodreads.com/book/show/8034188",{"_index":4602,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["front",{"_index":1796,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["frown",{"_index":5476,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["fruit",{"_index":4468,"title":{},"content":{"Learning to become a baker":{}},"tags":{}}],["frustrat",{"_index":1014,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"A Ph.D. Thesis: Iteration 2":{},"Using Pandoc to publish a book":{},"Ending your day with happy thoughts":{},"Teaching yourself to draw":{}},"tags":{}}],["fuck",{"_index":4540,"title":{},"content":{"Nuts about local nuts":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["full",{"_index":1109,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Bye autotools hello Scons":{},"How to teach kids to program":{},"Death to pseudocode?":{},"A Decade in the Software Engineering industry":{},"I'm jealous of my dog":{},"Journaling in practice":{}},"tags":{}}],["full**",{"_index":4327,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["fulli",{"_index":3831,"title":{},"content":{"A samurai learning mindset":{},"Healing creative scars":{},"Concentrating on serendipitous creativity":{},"Take your time.":{}},"tags":{}}],["fulltimevac",{"_index":1557,"title":{},"content":{"Faking domain logic":{}},"tags":{}}],["fun",{"_index":1985,"title":{},"content":{"How to teach kids to program":{},"Page Building with Brizy in Wordpress":{},"Journaling in practice":{}},"tags":{}}],["func(1",{"_index":493,"title":{},"content":{"undefined":{}},"tags":{}}],["func(i",{"_index":492,"title":{},"content":{"undefined":{}},"tags":{}}],["functi",{"_index":378,"title":{},"content":{"undefined":{}},"tags":{}}],["function",{"_index":279,"title":{},"content":{"undefined":{},"Enhancing the builder pattern with closures":{},"Migrating from Extjs to React gradually":{},"Death to pseudocode?":{},"Domain Driven Design in C":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Page Building with Brizy in Wordpress":{}},"tags":{}}],["function(",{"_index":1853,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["function](https://make.wordpress.org/core/2020/02/13/wordpress",{"_index":3433,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["functional program",{"_index":1201,"title":{},"content":{},"tags":{"Enhancing the builder pattern with closures":{},"Death to pseudocode?":{}}}],["functional/workhous",{"_index":2139,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["furedi'",{"_index":4978,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["further",{"_index":3860,"title":{},"content":{"A samurai learning mindset":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["fusuma](https://github.com/iberianpig/fusuma",{"_index":2778,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["futur",{"_index":2620,"title":{},"content":{"Reverse engineering a curriculum":{},"A Ph.D. Thesis: Iteration 2":{},"I'm jealous of my dog":{}},"tags":{}}],["fuzz",{"_index":2402,"title":{},"content":{"Teaching by philosophy":{}},"tags":{}}],["fuzzi",{"_index":1498,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["fysiek",{"_index":4698,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["g",{"_index":1403,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["gaan",{"_index":4030,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"Over het introduceren van bedrijfsethiek":{},"Over entropie":{},"Over de inflatie van intellect":{}},"tags":{}}],["gaat",{"_index":40,"title":{},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"De zin en onzin van conferenties":{},"Over het introduceren van bedrijfsethiek":{},"Over entropie":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{}},"tags":{}}],["gabriel",{"_index":3697,"title":{},"content":{"2017 in books":{}},"tags":{}}],["gain",{"_index":4227,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Journaling in practice":{}},"tags":{}}],["gallo",{"_index":4525,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["game",{"_index":2408,"title":{},"content":{"Computer Science learning pathways":{},"Teaching Object-Oriented design using the GBA":{},"Tech Blog":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"Over analoog en digitaal":{}},"tags":{}}],["gameboy",{"_index":4249,"title":{},"content":{"Healing creative scars":{}},"tags":{}}],["gang",{"_index":406,"title":{},"content":{"undefined":{}},"tags":{}}],["gap",{"_index":1943,"title":{},"content":{"How to teach kids to program":{},"A Ph.D. Thesis: Iteration 2":{},"IT Competences and Certificates":{}},"tags":{}}],["garag",{"_index":5290,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["garanti",{"_index":4836,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["garbag",{"_index":404,"title":{},"content":{"undefined":{},".NET Memory management VS JVM Memory management":{},"Inventing - for the worse?":{}},"tags":{}}],["garden",{"_index":4309,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["garlic",{"_index":4489,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["gasten",{"_index":4163,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["gate",{"_index":4310,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["gather",{"_index":3241,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"Learning to become a baker":{}},"tags":{}}],["gave",{"_index":1939,"title":{},"content":{"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["gaven",{"_index":5160,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["gb(a",{"_index":3128,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["gba",{"_index":3091,"title":{"Teaching Object-Oriented design using the GBA":{}},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{"Teaching Object-Oriented design using the GBA":{}}}],["gc",{"_index":1631,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["gdoc",{"_index":3444,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["gdpr",{"_index":3586,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["gear",{"_index":3847,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["geassocieerd",{"_index":355,"title":{},"content":{"undefined":{}},"tags":{}}],["gebald",{"_index":4821,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["gebaseerd",{"_index":4677,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["gebeuren",{"_index":599,"title":{},"content":{"undefined":{}},"tags":{}}],["gebeurt",{"_index":4196,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["gebi",{"_index":3922,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["gebiedt",{"_index":4940,"title":{},"content":{"Over entropie":{}},"tags":{}}],["gebind",{"_index":555,"title":{},"content":{"undefined":{}},"tags":{}}],["geboden",{"_index":4849,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["gebombardeerd",{"_index":5148,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["gebonden",{"_index":5259,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["gebracht",{"_index":5064,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["gebrek",{"_index":2546,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"Over analoog en digitaal":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["gebruik",{"_index":71,"title":{},"content":{"undefined":{}},"tags":{}}],["gebruikelijk",{"_index":4623,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["gebruiken",{"_index":109,"title":{},"content":{"undefined":{}},"tags":{}}],["gebruikt",{"_index":51,"title":{},"content":{"undefined":{}},"tags":{}}],["gecombineerd",{"_index":5008,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["geconfigureerd",{"_index":334,"title":{},"content":{"undefined":{}},"tags":{}}],["geconsumeerd",{"_index":5065,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["geconverteerd",{"_index":390,"title":{},"content":{"undefined":{}},"tags":{}}],["gedaan",{"_index":112,"title":{},"content":{"undefined":{},"Over entropie":{}},"tags":{}}],["gedefiniëerd",{"_index":36,"title":{},"content":{"undefined":{}},"tags":{}}],["gedetailleerd",{"_index":3973,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["gedraaid",{"_index":5307,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["gedragen",{"_index":245,"title":{},"content":{"undefined":{}},"tags":{}}],["gedragslijnen",{"_index":4830,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["gedragsveranderingen",{"_index":4783,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["gedrocht",{"_index":5289,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["geduld",{"_index":4741,"title":{},"content":{"Over analoog en digitaal":{},"Over tijdsbesef":{}},"tags":{}}],["geeft",{"_index":330,"title":{},"content":{"undefined":{},"Over tijdsbesef":{}},"tags":{}}],["geen",{"_index":135,"title":{},"content":{"undefined":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"Over analoog en digitaal":{},"Over entropie":{},"Over Onmiddellijke Voldoening":{},"Over tijdsbesef":{}},"tags":{}}],["gegenereerd",{"_index":713,"title":{},"content":{"undefined":{}},"tags":{}}],["gegeten",{"_index":4173,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["gegeven",{"_index":4915,"title":{},"content":{"Over entropie":{}},"tags":{}}],["geheel",{"_index":3876,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"Over entropie":{}},"tags":{}}],["gehouden",{"_index":4179,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["gekocht",{"_index":4184,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["gekomen",{"_index":3800,"title":{},"content":{"Essays":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["gekoppeld",{"_index":460,"title":{},"content":{"undefined":{}},"tags":{}}],["gekregen",{"_index":3892,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["gelachen",{"_index":4174,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["geladen",{"_index":4635,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["geld",{"_index":4128,"title":{},"content":{"De zin en onzin van conferenties":{},"Over analoog en digitaal":{},"Over Onmiddellijke Voldoening":{},"Over tijdsbesef":{}},"tags":{}}],["geleden",{"_index":3769,"title":{},"content":{"Essays":{}},"tags":{}}],["geleverd",{"_index":5062,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["gelezen",{"_index":3906,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["gelijk",{"_index":4147,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["geluidj",{"_index":4632,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["geluk",{"_index":4629,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["gelukwensen",{"_index":5328,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["gemaakt",{"_index":2571,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over de inflatie van intellect":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["gemeenschappelijk",{"_index":4857,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["gen.psm",{"_index":2954,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["gener",{"_index":1450,"title":{},"content":{"Bye autotools hello Scons":{},"Custom Webdriver Page Factories":{},"Unit Testing Extjs UI with Siesta":{},"Development principles in cooking":{},"Hiding Code Complexity":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"Reverse engineering a curriculum":{},"IT Competences and Certificates":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Page Building with Brizy in Wordpress":{},"A samurai learning mindset":{},"Are you handing over enough when inspiring someone?":{},"Learning to become a baker":{},"Teaching yourself to draw":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["generatemock",{"_index":1317,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["generati",{"_index":5319,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["genieten",{"_index":4713,"title":{},"content":{"Over analoog en digitaal":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["geniu",{"_index":5352,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["genoeg",{"_index":5081,"title":{},"content":{"Over de inflatie van intellect":{},"Over tijdsbesef":{}},"tags":{}}],["genomen",{"_index":5268,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["genuin",{"_index":2000,"title":{},"content":{"How to teach kids to program":{}},"tags":{}}],["geometri",{"_index":2363,"title":{},"content":{"Teaching by philosophy":{}},"tags":{}}],["georg",{"_index":2693,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["georganiseerd",{"_index":5088,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["gepast",{"_index":5084,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["gepompt",{"_index":5294,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["geprefabriceerd",{"_index":5060,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["geprobeerd",{"_index":3796,"title":{},"content":{"Essays":{}},"tags":{}}],["geregeld",{"_index":4796,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["gereguleerd",{"_index":4153,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["gerelateerd",{"_index":4156,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["gerust",{"_index":3915,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["geschreven",{"_index":3794,"title":{},"content":{"Essays":{},"De zin en onzin van conferenties":{}},"tags":{}}],["gesloten",{"_index":4095,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["gesmeerd",{"_index":2532,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["gesorteerd",{"_index":4905,"title":{},"content":{"Over entropie":{}},"tags":{}}],["gestoeld",{"_index":4828,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["gestuurd",{"_index":4077,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["get",{"_index":1196,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Unit Testing Extjs UI with Siesta":{},"A quick look at 6 fountain pens":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"Unit Testing PicoBlaze Assembly files":{},"Teaching Object-Oriented design using the GBA":{},"DIY: Hosting stuff on your own VPS":{},"2017 in books":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"I'm jealous of my dog":{},"Journaling in practice":{},"On finding your inner zen in big cities":{},"Teaching yourself to draw":{}},"tags":{}}],["getallek",{"_index":736,"title":{},"content":{"undefined":{}},"tags":{}}],["getoetst",{"_index":4832,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["getoond",{"_index":742,"title":{},"content":{"undefined":{}},"tags":{}}],["gets](http://www.ecvet",{"_index":3041,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["getschemacreatesql",{"_index":1273,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["getscreenshot",{"_index":1740,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["getwijfeld",{"_index":4971,"title":{},"content":{"Over entropie":{}},"tags":{}}],["gevaarlijk",{"_index":419,"title":{},"content":{"undefined":{}},"tags":{}}],["geval",{"_index":381,"title":{},"content":{"undefined":{},"De zin en onzin van conferenties":{}},"tags":{}}],["gevallen",{"_index":382,"title":{},"content":{"undefined":{},"De zin en onzin van conferenties":{}},"tags":{}}],["gevatt",{"_index":5001,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["geven",{"_index":33,"title":{},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over entropie":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["gevestigd",{"_index":5238,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["gevoel",{"_index":5022,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["gevolgd",{"_index":3964,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["gevormd",{"_index":3871,"title":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"content":{},"tags":{}}],["geweest",{"_index":3960,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"Over de inflatie van intellect":{}},"tags":{}}],["gewenst",{"_index":645,"title":{},"content":{"undefined":{},"Essays":{}},"tags":{}}],["gewerkt",{"_index":5327,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["gewild",{"_index":4630,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["gewillig",{"_index":5076,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["gewoon",{"_index":310,"title":{},"content":{"undefined":{},"De zin en onzin van conferenties":{},"Over de inflatie van intellect":{}},"tags":{}}],["geworden",{"_index":5048,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["gezien",{"_index":4861,"title":{},"content":{"Over entropie":{}},"tags":{}}],["geëvalueerd",{"_index":402,"title":{},"content":{"undefined":{}},"tags":{}}],["geëxtrapoleerd",{"_index":4991,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["geïnspireerd",{"_index":3754,"title":{},"content":{"Essays":{}},"tags":{}}],["gid",{"_index":5333,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["gift",{"_index":4239,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["girl",{"_index":1955,"title":{},"content":{"How to teach kids to program":{}},"tags":{}}],["girlfriend",{"_index":4446,"title":{},"content":{"Learning to become a baker":{},"On finding your inner zen in big cities":{}},"tags":{}}],["gist",{"_index":2270,"title":{},"content":{"Death to pseudocode?":{},"Over tijdsbesef":{}},"tags":{}}],["gisteren",{"_index":4912,"title":{},"content":{"Over entropie":{}},"tags":{}}],["github",{"_index":2910,"title":{},"content":{"The Startup of a Lean Doctorate":{},"Unit Testing PicoBlaze Assembly files":{},"Teaching Object-Oriented design using the GBA":{},"DIY: Hosting stuff on your own VPS":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["github'> gba",{"_index":3143,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["github](https://wgroeneveld.github.io/phd",{"_index":2908,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{}}],["gitlab",{"_index":4745,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["give",{"_index":1878,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{},"Hiding Code Complexity":{},"Death to pseudocode?":{},"Thinking in terms of objects":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"A Ph.D. Thesis: Iteration 2":{},"Hugo Extended: More static site processing power!":{},"Tracking and privacy concerns on websites":{},"A samurai learning mindset":{},"Ending your day with happy thoughts":{},"Are you handing over enough when inspiring someone?":{},"I'm jealous of my dog":{},"No, vegetarians do not eat fish!":{}},"tags":{"Are you handing over enough when inspiring someone?":{}}}],["given",{"_index":939,"title":{},"content":{"undefined":{},"Enhancing the builder pattern with closures":{},"Death to pseudocode?":{},"Programming: a Creative Cognitive Process":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["giving](/img/sharing.png",{"_index":4226,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["glad",{"_index":4578,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["glasheld",{"_index":5178,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["global",{"_index":3382,"title":{},"content":{"Hugo Extended: More static site processing power!":{},"Inventing - for the worse?":{}},"tags":{}}],["global.asaxbla",{"_index":3550,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["heal",{"_index":4247,"title":{"Healing creative scars":{}},"content":{},"tags":{}}],["heap",{"_index":1611,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["hear",{"_index":2012,"title":{},"content":{"How to teach kids to program":{},"Teaching yourself to draw":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["heard",{"_index":802,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["heaven",{"_index":1036,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["heavi",{"_index":1597,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Unit Testing Extjs UI with Siesta":{},"Computer Science learning pathways":{},"Programming: a Creative Cognitive Process":{},"Tech Blog":{}},"tags":{}}],["heavili",{"_index":868,"title":{},"content":{"undefined":{},"Productivity Tools on all platforms":{}},"tags":{}}],["heavyweight",{"_index":1651,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"Teaching by philosophy":{}},"tags":{}}],["heb",{"_index":186,"title":{},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"Essays":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"Over de inflatie van intellect":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hebben",{"_index":2570,"title":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"content":{"A Ph.D. Thesis Proposal":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"Over entropie":{},"Over de inflatie van intellect":{},"Over Onmiddellijke Voldoening":{},"Over tijdsbesef":{}},"tags":{}}],["hebt",{"_index":4669,"title":{},"content":{"Over analoog en digitaal":{},"Over Onmiddellijke Voldoening":{},"Over tijdsbesef":{}},"tags":{}}],["heden",{"_index":4027,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["hedendaags",{"_index":5055,"title":{},"content":{"Over de inflatie van intellect":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hedgehog",{"_index":4052,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["heeft",{"_index":17,"title":{},"content":{"undefined":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"Over tijdsbesef":{}},"tags":{}}],["heel",{"_index":536,"title":{},"content":{"undefined":{},"Over het introduceren van bedrijfsethiek":{},"Over Onmiddellijke Voldoening":{},"Over tijdsbesef":{}},"tags":{}}],["heelal",{"_index":4973,"title":{},"content":{"Over entropie":{}},"tags":{}}],["heen",{"_index":696,"title":{},"content":{"undefined":{},"Over de inflatie van intellect":{}},"tags":{}}],["height",{"_index":2118,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["hel",{"_index":4035,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["helaa",{"_index":5053,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["hele",{"_index":615,"title":{},"content":{"undefined":{},"Over tijdsbesef":{}},"tags":{}}],["helema",{"_index":4654,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["helft",{"_index":4982,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["hell",{"_index":1554,"title":{},"content":{"Faking domain logic":{}},"tags":{}}],["hell_",{"_index":3098,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["hello",{"_index":595,"title":{"Bye autotools hello Scons":{}},"content":{"undefined":{}},"tags":{}}],["help",{"_index":809,"title":{},"content":{"Unit Testing Stored Procedures":{},"Bye autotools hello Scons":{},"Unit Testing Extjs UI with Siesta":{},"Computer Science learning pathways":{},"A Decade in the Software Engineering industry":{},"Programming: a Creative Cognitive Process":{},"Page Building with Brizy in Wordpress":{},"Using Pandoc to publish a book":{},"Ending your day with happy thoughts":{},"Healing creative scars":{},"Nuts about local nuts":{},"Concentrating on serendipitous creativity":{},"Take your time.":{},"Teaching yourself to draw":{}},"tags":{}}],["helpen",{"_index":3745,"title":{},"content":{"Essays":{}},"tags":{}}],["hem",{"_index":4102,"title":{},"content":{"De zin en onzin van conferenties":{},"Over analoog en digitaal":{}},"tags":{}}],["henc",{"_index":2467,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"Five reasons why agile and academia don't go together":{}},"tags":{}}],["herb",{"_index":2083,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["herbruikt",{"_index":512,"title":{},"content":{"undefined":{}},"tags":{}}],["here",{"_index":872,"title":{},"content":{"undefined":{},"Visual Studio 2012 for Eclipse users":{},"Enhancing the builder pattern with closures":{},".NET Memory management VS JVM Memory management":{},"Development principles in cooking":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"Hugo Extended: More static site processing power!":{},"Using Pandoc to publish a book":{},"Designing websites with accessibility in mind":{},"2017 in books":{},"Inventing - for the worse?":{},"Nuts about local nuts":{},"On finding your inner zen in big cities":{},"Take your time.":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["here'",{"_index":1532,"title":{},"content":{"Faking domain logic":{},"Productivity Tools on all platforms":{},"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{}},"tags":{}}],["here](/post/a",{"_index":4279,"title":{},"content":{"Healing creative scars":{},"Journaling in practice":{}},"tags":{}}],["here](/post/h",{"_index":4393,"title":{},"content":{"Journaling in practice":{}},"tags":{}}],["here](https://gohugo.io/hugo",{"_index":3348,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["herhaalbaar",{"_index":4808,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["herhal",{"_index":4795,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{}},"tags":{}}],["herinn",{"_index":4020,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["herinneren",{"_index":3920,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["herinneringen",{"_index":5205,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["herkenbaar",{"_index":5005,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["herkurken",{"_index":5309,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["herleven",{"_index":4650,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["heropsommen",{"_index":130,"title":{},"content":{"undefined":{}},"tags":{}}],["herself",{"_index":2902,"title":{},"content":{"The Startup of a Lean Doctorate":{},"Five reasons why agile and academia don't go together":{},"Page Building with Brizy in Wordpress":{}},"tags":{}}],["hersenen",{"_index":3738,"title":{},"content":{"Essays":{}},"tags":{}}],["heruitgav",{"_index":4636,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["hesit",{"_index":2063,"title":{},"content":{"Development principles in cooking":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["het",{"_index":23,"title":{"Over het introduceren van bedrijfsethiek":{}},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"Tracking and privacy concerns on websites":{},"Essays":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"Over analoog en digitaal":{},"Over het introduceren van bedrijfsethiek":{},"Over entropie":{},"Over de inflatie van intellect":{},"Over Onmiddellijke Voldoening":{},"Over tijdsbesef":{}},"tags":{}}],["hetzelfd",{"_index":4090,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["hex",{"_index":2956,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["hey",{"_index":4470,"title":{},"content":{"Learning to become a baker":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["hibern",{"_index":1600,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["hidden",{"_index":2253,"title":{},"content":{"Hiding Code Complexity":{},"Thinking in terms of objects":{},"Designing websites with accessibility in mind":{}},"tags":{}}],["hide",{"_index":2098,"title":{"Hiding Code Complexity":{}},"content":{"Development principles in cooking":{},"Hiding Code Complexity":{},"Death to pseudocode?":{}},"tags":{}}],["hier",{"_index":133,"title":{},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"Essays":{},"Over het introduceren van bedrijfsethiek":{},"Over entropie":{},"Over de inflatie van intellect":{}},"tags":{}}],["hieraan",{"_index":185,"title":{},"content":{"undefined":{}},"tags":{}}],["hierond",{"_index":218,"title":{},"content":{"undefined":{}},"tags":{}}],["hierop",{"_index":393,"title":{},"content":{"undefined":{}},"tags":{}}],["hierrond",{"_index":299,"title":{},"content":{"undefined":{}},"tags":{}}],["higher",{"_index":2603,"title":{},"content":{"Reverse engineering a curriculum":{},"Programming: a Creative Cognitive Process":{},"Take your time.":{}},"tags":{}}],["highli",{"_index":2180,"title":{},"content":{"A quick look at 6 fountain pens":{},"Programming: a Creative Cognitive Process":{},"Inventing - for the worse?":{},"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["highlight",{"_index":3493,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["hij",{"_index":3890,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{}},"tags":{}}],["hike",{"_index":4586,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["hill",{"_index":5378,"title":{},"content":{"Take your time.":{}},"tags":{}}],["him/her",{"_index":3295,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["hire",{"_index":2645,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["histori",{"_index":2795,"title":{},"content":{"A Decade in the Software Engineering industry":{}},"tags":{}}],["history.blogspot.be/2010/06/insid",{"_index":484,"title":{},"content":{"undefined":{}},"tags":{}}],["hit",{"_index":1574,"title":{},"content":{"Faking domain logic":{},"Development principles in cooking":{},"Death to pseudocode?":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["hln",{"_index":3597,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["hln.be",{"_index":3593,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["hln.jpg",{"_index":3599,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["hm",{"_index":4216,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["hmm",{"_index":4217,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["hmmm",{"_index":1913,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["hobb",{"_index":4005,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["hobb'",{"_index":3678,"title":{},"content":{"2017 in books":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["hobbi",{"_index":4251,"title":{},"content":{"Healing creative scars":{}},"tags":{}}],["hobbyisten",{"_index":4736,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["hoc",{"_index":3233,"title":{},"content":{"Five reasons why agile and academia don't go together":{}},"tags":{}}],["hoe",{"_index":243,"title":{},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"De zin en onzin van conferenties":{},"Over het introduceren van bedrijfsethiek":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hoeft",{"_index":134,"title":{},"content":{"undefined":{}},"tags":{}}],["hoek",{"_index":2581,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["hoeveelheid",{"_index":4092,"title":{},"content":{"De zin en onzin van conferenties":{},"Over entropie":{}},"tags":{}}],["hog",{"_index":1593,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Journaling in practice":{}},"tags":{}}],["hoge",{"_index":5381,"title":{},"content":{"Take your time.":{}},"tags":{}}],["hold",{"_index":2175,"title":{},"content":{"A quick look at 6 fountain pens":{},"Reverse engineering a curriculum":{},"Domain Driven Design in C":{},"Learning to become a baker":{}},"tags":{}}],["hole",{"_index":4476,"title":{},"content":{"Learning to become a baker":{}},"tags":{}}],["holi",{"_index":2146,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["holl",{"_index":5013,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["home",{"_index":1975,"title":{},"content":{"How to teach kids to program":{},"Productivity Tools on all platforms":{},"On finding your inner zen in big cities":{},"Take your time.":{}},"tags":{}}],["homemad",{"_index":1981,"title":{},"content":{"How to teach kids to program":{},"Learning to become a baker":{}},"tags":{}}],["homo",{"_index":4351,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["honderden",{"_index":5236,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["honestli",{"_index":2204,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["honey",{"_index":2213,"title":{},"content":{"Hiding Code Complexity":{},"I'm jealous of my dog":{}},"tags":{}}],["hood",{"_index":5366,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["hoofd",{"_index":2530,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"Over entropie":{}},"tags":{}}],["hoogt",{"_index":3903,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["hook",{"_index":1324,"title":{},"content":{"Metaprogramming instead of duplication":{},"Webdriver Exception Handling":{},"Programming: a Creative Cognitive Process":{}},"tags":{}}],["hoop",{"_index":990,"title":{},"content":{"undefined":{}},"tags":{}}],["hooray",{"_index":3103,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["hoort",{"_index":4908,"title":{},"content":{"Over entropie":{}},"tags":{}}],["hop",{"_index":2805,"title":{},"content":{"A Decade in the Software Engineering industry":{},"Inventing - for the worse?":{}},"tags":{}}],["hopefulli",{"_index":3173,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Hugo Extended: More static site processing power!":{}},"tags":{}}],["hopelijk",{"_index":4616,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["horen",{"_index":4633,"title":{},"content":{"Over analoog en digitaal":{},"Over entropie":{}},"tags":{}}],["horray",{"_index":4565,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["horribl",{"_index":2434,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["horrifi",{"_index":2675,"title":{},"content":{"Domain Driven Design in C":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["host",{"_index":1614,"title":{"DIY: Hosting stuff on your own VPS":{}},"content":{".NET Memory management VS JVM Memory management":{},"DIY: Hosting stuff on your own VPS":{},"Page Building with Brizy in Wordpress":{}},"tags":{}}],["hostnam",{"_index":913,"title":{},"content":{"undefined":{}},"tags":{}}],["hot",{"_index":2071,"title":{},"content":{"Development principles in cooking":{},"Teaching by philosophy":{},"Ending your day with happy thoughts":{}},"tags":{}}],["hotel",{"_index":1551,"title":{},"content":{"Faking domain logic":{},"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["hou",{"_index":5247,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["hour",{"_index":1375,"title":{},"content":{"Bye autotools hello Scons":{},"Unit Testing Extjs UI with Siesta":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Productivity Tools on all platforms":{},"Learning to become a baker":{},"On finding your inner zen in big cities":{},"Concentrating on serendipitous creativity":{},"Take your time.":{},"Teaching yourself to draw":{}},"tags":{}}],["hous",{"_index":2814,"title":{},"content":{"A Decade in the Software Engineering industry":{}},"tags":{}}],["how.cssselector",{"_index":1475,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["howto",{"_index":3524,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["hql",{"_index":1602,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["hr",{"_index":4427,"title":{},"content":{"Learning to become a baker":{}},"tags":{}}],["href",{"_index":3365,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["html",{"_index":1468,"title":{},"content":{"Custom Webdriver Page Factories":{},"DIY: Hosting stuff on your own VPS":{},"Hugo Extended: More static site processing power!":{},"Designing websites with accessibility in mind":{}},"tags":{}}],["html5",{"_index":3527,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["htmlinputbox",{"_index":1483,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["htmlsubmitbutton",{"_index":1482,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["http",{"_index":3312,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["http://bash.cyberciti.biz",{"_index":931,"title":{},"content":{"undefined":{}},"tags":{}}],["http://cyberciti.biz/fb",{"_index":922,"title":{},"content":{"undefined":{}},"tags":{}}],["http://groovy.codehaus.org/p",{"_index":327,"title":{},"content":{"undefined":{}},"tags":{}}],["http://racket",{"_index":721,"title":{},"content":{"undefined":{}},"tags":{}}],["http://web.mit.edu/~axch/www/test",{"_index":726,"title":{},"content":{"undefined":{}},"tags":{}}],["http://www.cs.utexas.edu/ftp/garbage/cs345/schintro",{"_index":665,"title":{},"content":{"undefined":{}},"tags":{}}],["http://www.gnu.org/s/mit",{"_index":717,"title":{},"content":{"undefined":{}},"tags":{}}],["https://github.com/miloyip/gam",{"_index":2411,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["huge",{"_index":1160,"title":{},"content":{"Enhancing the builder pattern with closures":{},"A Decade in the Software Engineering industry":{},"A Ph.D. Thesis: Iteration 2":{},"Nuts about local nuts":{},"Take your time.":{}},"tags":{}}],["hugo",{"_index":3322,"title":{"Hugo Extended: More static site processing power!":{}},"content":{"Hugo Extended: More static site processing power!":{},"Are you handing over enough when inspiring someone?":{}},"tags":{"Hugo Extended: More static site processing power!":{}}}],["hugo'",{"_index":3393,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["hugo.environ",{"_index":3385,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["hugo.io",{"_index":3389,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["hugo](https://gohugo.io",{"_index":3264,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["hui",{"_index":5113,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["huiselijk",{"_index":5120,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["human",{"_index":2315,"title":{},"content":{"Death to pseudocode?":{},"Computer Science learning pathways":{},"I'm jealous of my dog":{}},"tags":{}}],["humor",{"_index":5010,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["hun",{"_index":391,"title":{},"content":{"undefined":{},"Essays":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hundr",{"_index":4394,"title":{},"content":{"Journaling in practice":{}},"tags":{}}],["hurt",{"_index":2715,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["hybrid",{"_index":4696,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["hét",{"_index":5144,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["héél",{"_index":5129,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["i$(gtest_dir",{"_index":1422,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["i'd",{"_index":1559,"title":{},"content":{"Faking domain logic":{},"A quick look at 6 fountain pens":{},"Death to pseudocode?":{},"A Ph.D. Thesis: Iteration 2":{},"2017 in books":{},"Healing creative scars":{},"Teaching yourself to draw":{}},"tags":{}}],["i'll",{"_index":1638,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"A Ph.D. Thesis: Iteration 2":{},"DIY: Hosting stuff on your own VPS":{},"Healing creative scars":{},"Nuts about local nuts":{}},"tags":{}}],["i'm",{"_index":1567,"title":{"I'm jealous of my dog":{}},"content":{"Faking domain logic":{},"How to teach kids to program":{},"Development principles in cooking":{},"A quick look at 6 fountain pens":{},"Death to pseudocode?":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"Teaching Object-Oriented design using the GBA":{},"DIY: Hosting stuff on your own VPS":{},"Hugo Extended: More static site processing power!":{},"Page Building with Brizy in Wordpress":{},"Designing websites with accessibility in mind":{},"2017 in books":{},"A samurai learning mindset":{},"Are you handing over enough when inspiring someone?":{},"I'm jealous of my dog":{},"Inventing - for the worse?":{},"Journaling in practice":{},"Nuts about local nuts":{},"Concentrating on serendipitous creativity":{},"Take your time.":{}},"tags":{}}],["i'v",{"_index":752,"title":{},"content":{"Unit Testing Stored Procedures":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Unit testing in Legacy Projects: VB6":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Hiding Code Complexity":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"Unit Testing PicoBlaze Assembly files":{},"A Ph.D. Thesis: Iteration 2":{},"Hugo Extended: More static site processing power!":{},"2017 in books":{},"Essays":{},"Are you handing over enough when inspiring someone?":{},"Journaling in practice":{},"Teaching yourself to draw":{}},"tags":{}}],["ic",{"_index":1978,"title":{},"content":{"How to teach kids to program":{}},"tags":{}}],["icon",{"_index":3635,"title":{},"content":{"Tracking and privacy concerns on websites":{},"Teaching yourself to draw":{}},"tags":{}}],["id",{"_index":777,"title":{},"content":{"Unit Testing Stored Procedures":{},"Enhancing the builder pattern with closures":{},"Productivity Tools on all platforms":{},"Programming: a Creative Cognitive Process":{}},"tags":{}}],["ide",{"_index":4208,"title":{},"content":{"De zin en onzin van conferenties":{},"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["ide'",{"_index":5440,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["idea",{"_index":1960,"title":{},"content":{"How to teach kids to program":{},"Development principles in cooking":{},"Computer Science learning pathways":{},"Reverse engineering a curriculum":{},"Productivity Tools on all platforms":{},"The Startup of a Lean Doctorate":{},"A Ph.D. Thesis: Iteration 2":{},"Five reasons why agile and academia don't go together":{},"DIY: Hosting stuff on your own VPS":{},"Using Pandoc to publish a book":{},"Tracking and privacy concerns on websites":{},"A samurai learning mindset":{},"Ending your day with happy thoughts":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"I'm jealous of my dog":{},"Journaling in practice":{},"Learning to become a baker":{},"On finding your inner zen in big cities":{},"Concentrating on serendipitous creativity":{},"Take your time.":{},"Teaching yourself to draw":{}},"tags":{}}],["ideal",{"_index":2609,"title":{},"content":{"Reverse engineering a curriculum":{},"A Ph.D. Thesis: Iteration 2":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["ideeën",{"_index":4776,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["identif",{"_index":3015,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["identifi",{"_index":2429,"title":{},"content":{"Computer Science learning pathways":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"A Ph.D. Thesis: Iteration 2":{},"IT Competences and Certificates":{},"Take your time.":{}},"tags":{}}],["identificeren",{"_index":2522,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["ideologi",{"_index":4962,"title":{},"content":{"Over entropie":{}},"tags":{}}],["iedereen",{"_index":2515,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"Over het introduceren van bedrijfsethiek":{},"Over tijdsbesef":{}},"tags":{}}],["iemand",{"_index":4792,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["ienumerable).isassignablefrom(field.fieldtyp",{"_index":1518,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["iet",{"_index":183,"title":{},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"Over het introduceren van bedrijfsethiek":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["iets_",{"_index":5216,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["if(ispossibletodelete(shoppingcart",{"_index":2239,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["if(list.get(j",{"_index":2318,"title":{},"content":{"Death to pseudocode?":{}},"tags":{}}],["if(shoppingcart.ispossibletodelet",{"_index":2248,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["if(shoppingcart.statu",{"_index":2236,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["if(window.par",{"_index":1870,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["ifram",{"_index":1814,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["ignor",{"_index":2441,"title":{},"content":{"Computer Science learning pathways":{},"A Decade in the Software Engineering industry":{},"IT Competences and Certificates":{},"Programming: a Creative Cognitive Process":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["ii",{"_index":1766,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["ik",{"_index":653,"title":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"Essays":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"Over het introduceren van bedrijfsethiek":{},"Over entropie":{},"Over de inflatie van intellect":{},"Over Onmiddellijke Voldoening":{},"Over tijdsbesef":{}},"tags":{}}],["illustr",{"_index":3404,"title":{},"content":{"Page Building with Brizy in Wordpress":{},"Teaching yourself to draw":{}},"tags":{}}],["imag",{"_index":1741,"title":{},"content":{"Webdriver Exception Handling":{},"IT Competences and Certificates":{},"Tracking and privacy concerns on websites":{},"2017 in books":{},"I'm jealous of my dog":{}},"tags":{}}],["imageformat.png",{"_index":1749,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["imagin",{"_index":1526,"title":{},"content":{"Faking domain logic":{},"Unit testing in Legacy Projects: VB6":{},"Reverse engineering a curriculum":{},"Programming: a Creative Cognitive Process":{}},"tags":{}}],["img",{"_index":3181,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Over tijdsbesef":{}},"tags":{}}],["img/analoguent.jpg",{"_index":4704,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["imit",{"_index":3866,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["immedi",{"_index":1977,"title":{},"content":{"How to teach kids to program":{}},"tags":{}}],["immer",{"_index":3895,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"Over entropie":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["immin",{"_index":5362,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["immut",{"_index":358,"title":{},"content":{"undefined":{}},"tags":{}}],["impass",{"_index":5356,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["impatient.hellor",{"_index":949,"title":{},"content":{"undefined":{}},"tags":{}}],["past",{"_index":2066,"title":{},"content":{"Development principles in cooking":{},"Death to pseudocode?":{},"Ending your day with happy thoughts":{},"I'm jealous of my dog":{},"Inventing - for the worse?":{}},"tags":{}}],["pasta",{"_index":5515,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["pasta’",{"_index":5513,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["path",{"_index":915,"title":{},"content":{"undefined":{},"Computer Science learning pathways":{},"A Decade in the Software Engineering industry":{}},"tags":{}}],["pathet",{"_index":5394,"title":{},"content":{"Take your time.":{}},"tags":{}}],["pathway",{"_index":2407,"title":{"Computer Science learning pathways":{}},"content":{},"tags":{}}],["pattern",{"_index":1138,"title":{"Enhancing the builder pattern with closures":{}},"content":{"Enhancing the builder pattern with closures":{},"Metaprogramming instead of duplication":{},"Hiding Code Complexity":{},"Computer Science learning pathways":{},"Programming: a Creative Cognitive Process":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["pay",{"_index":1276,"title":{},"content":{"Integration Testing with SQLite":{},"Domain Driven Design in C":{},"Tracking and privacy concerns on websites":{},"I'm jealous of my dog":{},"Nuts about local nuts":{}},"tags":{}}],["payoff",{"_index":2678,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["pc",{"_index":814,"title":{},"content":{"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{}},"tags":{}}],["pc/handheld",{"_index":3661,"title":{},"content":{"Tech Blog":{}},"tags":{}}],["pdf",{"_index":1112,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Using Pandoc to publish a book":{}},"tags":{}}],["pdf[postscript",{"_index":3476,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["pdflatex",{"_index":3478,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["peac",{"_index":4581,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["peer",{"_index":2905,"title":{},"content":{"The Startup of a Lean Doctorate":{},"Five reasons why agile and academia don't go together":{},"Concentrating on serendipitous creativity":{}},"tags":{}}],["pen",{"_index":2115,"title":{"A quick look at 6 fountain pens":{}},"content":{"A quick look at 6 fountain pens":{},"Over de inflatie van intellect":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["pencil",{"_index":4049,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["pens](/img/6pen",{"_index":2183,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["penz",{"_index":2136,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["peopl",{"_index":769,"title":{},"content":{"Unit Testing Stored Procedures":{},"Faking domain logic":{},"How to teach kids to program":{},"Development principles in cooking":{},"Hiding Code Complexity":{},"Reverse engineering a curriculum":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"A Ph.D. Thesis: Iteration 2":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Designing websites with accessibility in mind":{},"Inventing - for the worse?":{},"Journaling in practice":{},"Learning to become a baker":{},"Nuts about local nuts":{},"On finding your inner zen in big cities":{},"Take your time.":{},"Teaching yourself to draw":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["people'",{"_index":2229,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["peplin",{"_index":2889,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{}}],["pepper",{"_index":2072,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["per",{"_index":3912,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"Are you handing over enough when inspiring someone?":{},"I'm jealous of my dog":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{}},"tags":{}}],["perceiv",{"_index":3151,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["perfect",{"_index":1591,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"IT Competences and Certificates":{}},"tags":{}}],["perfectli",{"_index":3715,"title":{},"content":{"2017 in books":{}},"tags":{}}],["perform",{"_index":1691,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["perhap",{"_index":3204,"title":{},"content":{"Five reasons why agile and academia don't go together":{}},"tags":{}}],["period",{"_index":4445,"title":{},"content":{"Learning to become a baker":{},"Over tijdsbesef":{},"Concentrating on serendipitous creativity":{}},"tags":{}}],["perl",{"_index":264,"title":{},"content":{"undefined":{}},"tags":{}}],["permitrootlogin",{"_index":3294,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["persist",{"_index":2226,"title":{},"content":{"Hiding Code Complexity":{},"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["person",{"_index":2680,"title":{},"content":{"Domain Driven Design in C":{},"A Ph.D. Thesis: Iteration 2":{},"Tech Blog":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"I'm jealous of my dog":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["person(65",{"_index":2694,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["person(int",{"_index":2689,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["person_is_old",{"_index":2714,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["person_is_old(person",{"_index":2713,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["personag",{"_index":5019,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["personen",{"_index":4851,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["persoon",{"_index":4084,"title":{},"content":{"De zin en onzin van conferenties":{},"Over entropie":{}},"tags":{}}],["persoonlijk",{"_index":2558,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["perspect",{"_index":4596,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["perspectief",{"_index":3986,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["pescatarian",{"_index":5478,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["pet",{"_index":5428,"title":{},"content":{"Take your time.":{}},"tags":{}}],["petri",{"_index":4763,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["pexels](https://pexels.com",{"_index":3033,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["ph.d",{"_index":2464,"title":{"A Ph.D. Thesis Proposal":{},"A Ph.D. Thesis: Iteration 2":{}},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["phase",{"_index":835,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["phd",{"_index":2463,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{"Computer Science learning pathways":{},"A Ph.D. Thesis Proposal":{},"Reverse engineering a curriculum":{},"The Startup of a Lean Doctorate":{},"A Ph.D. Thesis: Iteration 2":{},"IT Competences and Certificates":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{}}}],["phenomenon",{"_index":2642,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["philosoph",{"_index":3805,"title":{},"content":{"Essays":{}},"tags":{}}],["philosophi",{"_index":2351,"title":{"Teaching by philosophy":{}},"content":{"Reverse engineering a curriculum":{},"2017 in books":{},"I'm jealous of my dog":{},"Inventing - for the worse?":{}},"tags":{"Teaching by philosophy":{}}}],["philosophicus_",{"_index":3764,"title":{},"content":{"Essays":{}},"tags":{}}],["philosophy](/post/teach",{"_index":2597,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["php",{"_index":3429,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{"Page Building with Brizy in Wordpress":{}}}],["physic",{"_index":1125,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Computer Science learning pathways":{},"Programming: a Creative Cognitive Process":{},"Using Pandoc to publish a book":{},"Teaching yourself to draw":{}},"tags":{}}],["pi",{"_index":4695,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["pick",{"_index":2360,"title":{},"content":{"Teaching by philosophy":{}},"tags":{}}],["picki",{"_index":2096,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["picoblaz",{"_index":2912,"title":{"Unit Testing PicoBlaze Assembly files":{}},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{"Unit Testing PicoBlaze Assembly files":{}}}],["picoblaze](https://www.xilinx.com/products/intellectu",{"_index":2923,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["pictur",{"_index":2182,"title":{},"content":{"A quick look at 6 fountain pens":{},"Journaling in practice":{},"Take your time.":{}},"tags":{}}],["piec",{"_index":518,"title":{},"content":{"undefined":{},"Faking domain logic":{},"Teaching by philosophy":{},"Domain Driven Design in C":{},"Unit Testing PicoBlaze Assembly files":{},"Five reasons why agile and academia don't go together":{}},"tags":{}}],["piet",{"_index":4085,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["pig",{"_index":5420,"title":{},"content":{"Take your time.":{}},"tags":{}}],["pijn",{"_index":4907,"title":{},"content":{"Over entropie":{}},"tags":{}}],["piketti",{"_index":3062,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["pile",{"_index":3529,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["pilot",{"_index":2150,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["pin",{"_index":2997,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{},"Teaching yourself to draw":{}},"tags":{}}],["pine",{"_index":4478,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["pinterest",{"_index":5453,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["pipe",{"_index":3346,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["pipelin",{"_index":3327,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["pipes/scss",{"_index":3349,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["pitfal",{"_index":298,"title":{},"content":{"undefined":{}},"tags":{}}],["pixel",{"_index":3622,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["pizza",{"_index":4452,"title":{},"content":{"Learning to become a baker":{}},"tags":{}}],["pizza’",{"_index":5512,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["plaat",{"_index":2526,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over het introduceren van bedrijfsethiek":{},"Over entropie":{},"Over tijdsbesef":{}},"tags":{}}],["plaats1",{"_index":971,"title":{},"content":{"undefined":{}},"tags":{}}],["plaats2",{"_index":972,"title":{},"content":{"undefined":{}},"tags":{}}],["place",{"_index":1561,"title":{},"content":{"Faking domain logic":{},"IT Competences and Certificates":{},"Five reasons why agile and academia don't go together":{},"Journaling in practice":{},"Nuts about local nuts":{},"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["placehold",{"_index":3563,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["plain",{"_index":3515,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["plan",{"_index":3088,"title":{},"content":{"IT Competences and Certificates":{},"DIY: Hosting stuff on your own VPS":{},"Using Pandoc to publish a book":{},"Journaling in practice":{}},"tags":{}}],["plannen",{"_index":4756,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["plant",{"_index":4232,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["plastic",{"_index":4368,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["plastieken",{"_index":5161,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["plateau",{"_index":4485,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["platform",{"_index":1027,"title":{"Productivity Tools on all platforms":{}},"content":{"Visual Studio 2012 for Eclipse users":{},"Productivity Tools on all platforms":{},"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["platgeklopt",{"_index":5018,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["platinum",{"_index":2152,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["play",{"_index":4252,"title":{},"content":{"Healing creative scars":{},"I'm jealous of my dog":{}},"tags":{}}],["pleasant",{"_index":3335,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["plenti",{"_index":807,"title":{},"content":{"Unit Testing Stored Procedures":{},"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["plenty?ac=1&from_search=tru",{"_index":2079,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["plenty](https://www.goodreads.com/book/show/8086216",{"_index":2078,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["plethora",{"_index":2793,"title":{},"content":{"A Decade in the Software Engineering industry":{},"Programming: a Creative Cognitive Process":{}},"tags":{}}],["plichtbewust",{"_index":3940,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["pling",{"_index":4631,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["plot",{"_index":5035,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["plots",{"_index":5111,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["plow",{"_index":1932,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["plu",{"_index":670,"title":{},"content":{"undefined":{},"Thinking in terms of objects":{}},"tags":{}}],["plug",{"_index":1325,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["plugin",{"_index":1020,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Productivity Tools on all platforms":{},"Page Building with Brizy in Wordpress":{},"Tracking and privacy concerns on websites":{}},"tags":{}}],["plumb",{"_index":2677,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["plus(numb",{"_index":2334,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["pm",{"_index":4580,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["png",{"_index":1748,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["pod",{"_index":5416,"title":{},"content":{"Take your time.":{}},"tags":{}}],["poge",{"_index":208,"title":{},"content":{"undefined":{},"Over entropie":{}},"tags":{}}],["pogingen",{"_index":4883,"title":{},"content":{"Over entropie":{}},"tags":{}}],["poi",{"_index":2462,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["point",{"_index":1563,"title":{},"content":{"Faking domain logic":{},"Death to pseudocode?":{},"Domain Driven Design in C":{},"IT Competences and Certificates":{},"Teaching Object-Oriented design using the GBA":{},"Programming: a Creative Cognitive Process":{},"Using Pandoc to publish a book":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["pointcut",{"_index":1742,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["pointer",{"_index":48,"title":{},"content":{"undefined":{},"Domain Driven Design in C":{},"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["poison",{"_index":4339,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["pollan'",{"_index":3465,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["ponder",{"_index":4315,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["poof",{"_index":2647,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["pool",{"_index":4564,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["pop",{"_index":2228,"title":{},"content":{"Hiding Code Complexity":{},"Teaching yourself to draw":{}},"tags":{}}],["popliedj",{"_index":5192,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["populair",{"_index":4997,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["popular",{"_index":804,"title":{},"content":{"Unit Testing Stored Procedures":{},"Tech Blog":{},"Are you handing over enough when inspiring someone?":{},"I'm jealous of my dog":{}},"tags":{}}],["port",{"_index":3292,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["portion",{"_index":3400,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["pose",{"_index":2122,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["posh",{"_index":5511,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["posit",{"_index":2279,"title":{},"content":{"Death to pseudocode?":{},"Using Pandoc to publish a book":{}},"tags":{}}],["positiev",{"_index":3771,"title":{},"content":{"Essays":{}},"tags":{}}],["positivisten",{"_index":4949,"title":{},"content":{"Over entropie":{}},"tags":{}}],["possess",{"_index":4382,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["possibl",{"_index":1241,"title":{},"content":{"Integration Testing with SQLite":{},"Custom Webdriver Page Factories":{},"Faking domain logic":{},"Unit Testing Extjs UI with Siesta":{},"Webdriver Exception Handling":{},"Migrating from Extjs to React gradually":{},"Unit testing in Legacy Projects: VB6":{},"Hiding Code Complexity":{},"Teaching by philosophy":{},"Reverse engineering a curriculum":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"Unit Testing PicoBlaze Assembly files":{},"Five reasons why agile and academia don't go together":{},"Hugo Extended: More static site processing power!":{},"Page Building with Brizy in Wordpress":{},"Tracking and privacy concerns on websites":{},"Inventing - for the worse?":{},"Teaching yourself to draw":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["post",{"_index":1139,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Bye autotools hello Scons":{},"Webdriver Exception Handling":{},"Five reasons why agile and academia don't go together":{},"Page Building with Brizy in Wordpress":{},"Designing websites with accessibility in mind":{},"Tech Blog":{},"Ending your day with happy thoughts":{},"Are you handing over enough when inspiring someone?":{},"Learning to become a baker":{},"On finding your inner zen in big cities":{},"Over Onmiddellijke Voldoening":{},"Take your time.":{},"Teaching yourself to draw":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["postbod",{"_index":4918,"title":{},"content":{"Over entropie":{}},"tags":{}}],["posteriori",{"_index":2324,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["postgr",{"_index":3261,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["postmodern",{"_index":1874,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["postprocess",{"_index":1494,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["postsharp",{"_index":1744,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["potj",{"_index":4172,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["power",{"_index":283,"title":{"Hugo Extended: More static site processing power!":{}},"content":{"undefined":{},"How to teach kids to program":{},"Productivity Tools on all platforms":{},"Page Building with Brizy in Wordpress":{}},"tags":{}}],["powerhous",{"_index":2206,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["prachtig",{"_index":4876,"title":{},"content":{"Over entropie":{}},"tags":{}}],["practic",{"_index":766,"title":{"Journaling in practice":{}},"content":{"Unit Testing Stored Procedures":{},"Development principles in cooking":{},"Death to pseudocode?":{},"Computer Science learning pathways":{},"Reverse engineering a curriculum":{},"Teaching Object-Oriented design using the GBA":{},"Five reasons why agile and academia don't go together":{},"Essays":{},"Ending your day with happy thoughts":{},"Healing creative scars":{},"I'm jealous of my dog":{},"Concentrating on serendipitous creativity":{},"Take your time.":{},"Teaching yourself to draw":{}},"tags":{}}],["practician",{"_index":3822,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["practicum",{"_index":2651,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["practition",{"_index":2978,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{},"IT Competences and Certificates":{}},"tags":{}}],["praktijk",{"_index":4161,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["praktisch",{"_index":2579,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"De zin en onzin van conferenties":{},"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["pre",{"_index":346,"title":{},"content":{"undefined":{}},"tags":{}}],["preambl",{"_index":3471,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["predefin",{"_index":845,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["predic",{"_index":683,"title":{},"content":{"undefined":{}},"tags":{}}],["prefer",{"_index":3267,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["prefix",{"_index":823,"title":{},"content":{"Unit Testing Stored Procedures":{},"A Decade in the Software Engineering industry":{}},"tags":{}}],["preload",{"_index":1711,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["prematur",{"_index":714,"title":{},"content":{"undefined":{}},"tags":{}}],["premium",{"_index":3417,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["preoccupi",{"_index":5401,"title":{},"content":{"Take your time.":{}},"tags":{}}],["prepar",{"_index":2060,"title":{},"content":{"Development principles in cooking":{},"Computer Science learning pathways":{}},"tags":{}}],["presenc",{"_index":3707,"title":{},"content":{"2017 in books":{}},"tags":{}}],["present",{"_index":2274,"title":{},"content":{"Death to pseudocode?":{},"2017 in books":{},"A samurai learning mindset":{},"Are you handing over enough when inspiring someone?":{},"I'm jealous of my dog":{}},"tags":{}}],["presentati",{"_index":4177,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["presenteert",{"_index":4165,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["presenteren",{"_index":4195,"title":{},"content":{"De zin en onzin van conferenties":{},"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{}},"tags":{}}],["preserv",{"_index":998,"title":{},"content":{"undefined":{}},"tags":{}}],["preset",{"_index":3380,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["press",{"_index":3590,"title":{},"content":{"Tracking and privacy concerns on websites":{},"Nuts about local nuts":{}},"tags":{}}],["pressur",{"_index":5361,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["pretti",{"_index":1647,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"Death to pseudocode?":{},"Domain Driven Design in C":{},"Inventing - for the worse?":{}},"tags":{}}],["preview",{"_index":3424,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["previou",{"_index":1090,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Integration Testing with SQLite":{},"Webdriver Exception Handling":{},"Ending your day with happy thoughts":{}},"tags":{}}],["previous](https://people.cs.kuleuven.be/~wouter.groeneveld/slr",{"_index":3148,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["price",{"_index":2176,"title":{},"content":{"A quick look at 6 fountain pens":{},"Domain Driven Design in C":{}},"tags":{}}],["prij",{"_index":5262,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["primit",{"_index":350,"title":{},"content":{"undefined":{}},"tags":{}}],["princip",{"_index":4823,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["principl",{"_index":1959,"title":{"Development principles in cooking":{}},"content":{"How to teach kids to program":{},"Development principles in cooking":{},"Reverse engineering a curriculum":{},"The Startup of a Lean Doctorate":{},"A Ph.D. Thesis: Iteration 2":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Healing creative scars":{}},"tags":{"Development principles in cooking":{}}}],["prinf(\"%d",{"_index":2702,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["print",{"_index":94,"title":{},"content":{"undefined":{}},"tags":{}}],["printer",{"_index":4370,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["priori",{"_index":2323,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["privaci",{"_index":3519,"title":{"Tracking and privacy concerns on websites":{}},"content":{"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{}},"tags":{"Tracking and privacy concerns on websites":{}}}],["privat",{"_index":1169,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Metaprogramming instead of duplication":{},"Custom Webdriver Page Factories":{},"Webdriver Exception Handling":{},"Hiding Code Complexity":{},"Domain Driven Design in C":{},"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["privéwereld",{"_index":4120,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["probabl",{"_index":774,"title":{},"content":{"Unit Testing Stored Procedures":{},"Death to pseudocode?":{},"Teaching by philosophy":{},"Using Pandoc to publish a book":{}},"tags":{}}],["probeert",{"_index":394,"title":{},"content":{"undefined":{}},"tags":{}}],["probleem",{"_index":2521,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"De zin en onzin van conferenties":{},"Over het introduceren van bedrijfsethiek":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["probleem](../sweng_prob.png",{"_index":2518,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["probleemstel",{"_index":2469,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["problem",{"_index":1128,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Metaprogramming instead of duplication":{},"Bye autotools hello Scons":{},"Custom Webdriver Page Factories":{},"Unit Testing Extjs UI with Siesta":{},"Webdriver Exception Handling":{},"How to teach kids to program":{},"Teaching by philosophy":{},"Domain Driven Design in C":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"Unit Testing PicoBlaze Assembly files":{},"A Ph.D. Thesis: Iteration 2":{},"Five reasons why agile and academia don't go together":{},"Hugo Extended: More static site processing power!":{},"Healing creative scars":{},"Inventing - for the worse?":{},"Journaling in practice":{},"Nuts about local nuts":{},"Concentrating on serendipitous creativity":{},"Teaching yourself to draw":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["problem](https://trudymorgancole.wordpress.com/2014/03/02/dog",{"_index":4325,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["problemat",{"_index":3011,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["problemen",{"_index":329,"title":{},"content":{"undefined":{},"De zin en onzin van conferenties":{}},"tags":{}}],["proc",{"_index":590,"title":{},"content":{"undefined":{},"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["proc.cal",{"_index":618,"title":{},"content":{"undefined":{}},"tags":{}}],["proc.new",{"_index":598,"title":{},"content":{"undefined":{}},"tags":{}}],["proc_test",{"_index":617,"title":{},"content":{"undefined":{}},"tags":{}}],["proc`",{"_index":603,"title":{},"content":{"undefined":{}},"tags":{}}],["procedur",{"_index":748,"title":{"Unit Testing Stored Procedures":{}},"content":{"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{},"Unit testing in Legacy Projects: VB6":{},"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["proceeding_",{"_index":4159,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["process",{"_index":1615,"title":{"Programming: a Creative Cognitive Process":{},"Hugo Extended: More static site processing power!":{}},"content":{".NET Memory management VS JVM Memory management":{},"The Startup of a Lean Doctorate":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Hugo Extended: More static site processing power!":{},"Learning to become a baker":{}},"tags":{}}],["process](http://csis.pace.edu/~ctappert/srd2015/2015pdf/d4.pdf",{"_index":2876,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{}}],["processor",{"_index":3445,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["produc",{"_index":1497,"title":{},"content":{"Custom Webdriver Page Factories":{},"A quick look at 6 fountain pens":{},"Hugo Extended: More static site processing power!":{}},"tags":{}}],["produceert",{"_index":4875,"title":{},"content":{"Over entropie":{}},"tags":{}}],["produceren",{"_index":5265,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["product",{"_index":1023,"title":{"Productivity Tools on all platforms":{}},"content":{"Visual Studio 2012 for Eclipse users":{},"Unit Testing Extjs UI with Siesta":{},"Unit testing in Legacy Projects: VB6":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Hugo Extended: More static site processing power!":{},"De zin en onzin van conferenties":{},"Inventing - for the worse?":{},"Nuts about local nuts":{},"Over de inflatie van intellect":{},"Take your time.":{}},"tags":{"Productivity Tools on all platforms":{}}}],["proeverijen",{"_index":5253,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["profess",{"_index":3057,"title":{},"content":{"IT Competences and Certificates":{},"A samurai learning mindset":{},"Inventing - for the worse?":{}},"tags":{}}],["profession",{"_index":3030,"title":{},"content":{"IT Competences and Certificates":{},"Tech Blog":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["professionalism](http://ictprofessionalism.eu/th",{"_index":3038,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["professionel",{"_index":5044,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["professor",{"_index":2365,"title":{},"content":{"Teaching by philosophy":{},"A Ph.D. Thesis Proposal":{}},"tags":{}}],["profil",{"_index":3084,"title":{},"content":{"IT Competences and Certificates":{},"Teaching yourself to draw":{}},"tags":{}}],["profound",{"_index":3653,"title":{},"content":{"Tech Blog":{}},"tags":{}}],["program",{"_index":887,"title":{"How to teach kids to program":{},"Programming: a Creative Cognitive Process":{}},"content":{"undefined":{},"How to teach kids to program":{},"Thinking in terms of objects":{},"Computer Science learning pathways":{},"Reverse engineering a curriculum":{},"Domain Driven Design in C":{},"Teaching Object-Oriented design using the GBA":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"2017 in books":{},"A samurai learning mindset":{},"Are you handing over enough when inspiring someone?":{}},"tags":{"How to teach kids to program":{}}}],["programm",{"_index":2409,"title":{},"content":{"Computer Science learning pathways":{},"Domain Driven Design in C":{}},"tags":{}}],["programmeerwerk",{"_index":2588,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["programmer?from_search=tru",{"_index":2721,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["programmer](https://github.com/miloyip/gam",{"_index":2412,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["programmer](https://www.goodreads.com/book/show/3411606",{"_index":2720,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["programming](https://th",{"_index":2621,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["progress",{"_index":2661,"title":{},"content":{"Reverse engineering a curriculum":{},"The Startup of a Lean Doctorate":{}},"tags":{}}],["project",{"_index":921,"title":{"Unit testing in Legacy Projects: VB6":{}},"content":{"undefined":{},"Integration Testing with SQLite":{},"Bye autotools hello Scons":{},"Unit Testing Extjs UI with Siesta":{},"Unit testing in Legacy Projects: VB6":{},"Reverse engineering a curriculum":{},"Productivity Tools on all platforms":{},"The Startup of a Lean Doctorate":{},"A Ph.D. Thesis: Iteration 2":{},"Teaching Object-Oriented design using the GBA":{},"Five reasons why agile and academia don't go together":{},"Hugo Extended: More static site processing power!":{},"Page Building with Brizy in Wordpress":{},"Concentrating on serendipitous creativity":{}},"tags":{}}],["project=program.vbp",{"_index":1923,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["prolong",{"_index":4385,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["promin",{"_index":2426,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["promis",{"_index":3569,"title":{},"content":{"Designing websites with accessibility in mind":{},"Ending your day with happy thoughts":{}},"tags":{}}],["promot",{"_index":5340,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["prompt",{"_index":945,"title":{},"content":{"undefined":{}},"tags":{}}],["proof",{"_index":2372,"title":{},"content":{"Teaching by philosophy":{}},"tags":{}}],["properli",{"_index":4263,"title":{},"content":{"Healing creative scars":{}},"tags":{}}],["properti",{"_index":359,"title":{},"content":{"undefined":{},"Faking domain logic":{},"Migrating from Extjs to React gradually":{},"Hiding Code Complexity":{},"Thinking in terms of objects":{},"Designing websites with accessibility in mind":{}},"tags":{}}],["property/picoblaze.html",{"_index":2924,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["proport",{"_index":2283,"title":{},"content":{"Death to pseudocode?":{}},"tags":{}}],["propos",{"_index":2127,"title":{"A Ph.D. Thesis Proposal":{}},"content":{"A quick look at 6 fountain pens":{},"A Ph.D. Thesis Proposal":{},"The Startup of a Lean Doctorate":{},"A Ph.D. Thesis: Iteration 2":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["proposal](/post/phd",{"_index":2970,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["proposal](/propos",{"_index":2611,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["protect",{"_index":656,"title":{},"content":{"undefined":{},"Death to pseudocode?":{},"Tracking and privacy concerns on websites":{}},"tags":{}}],["protocol",{"_index":226,"title":{},"content":{"undefined":{}},"tags":{}}],["prototyp",{"_index":222,"title":{},"content":{"undefined":{},"Programming: a Creative Cognitive Process":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["proud",{"_index":3127,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["prove",{"_index":3155,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Take your time.":{}},"tags":{}}],["proven",{"_index":4330,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["provenc",{"_index":4514,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["provid",{"_index":1186,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Metaprogramming instead of duplication":{},"Thinking in terms of objects":{},"Five reasons why agile and academia don't go together":{}},"tags":{}}],["proxi",{"_index":1216,"title":{},"content":{"Integration Testing with SQLite":{},"Custom Webdriver Page Factories":{}},"tags":{}}],["pseudocod",{"_index":2261,"title":{"Death to pseudocode?":{}},"content":{"Death to pseudocode?":{}},"tags":{}}],["psm(4",{"_index":2928,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["psm4",{"_index":2939,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["psycholog",{"_index":3176,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["psychologi",{"_index":3772,"title":{},"content":{"Essays":{}},"tags":{}}],["pthread",{"_index":1406,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["public",{"_index":115,"title":{},"content":{"undefined":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Metaprogramming instead of duplication":{},"Custom Webdriver Page Factories":{},"Faking domain logic":{},"Webdriver Exception Handling":{},"Unit testing in Legacy Projects: VB6":{},"Domain Driven Design in C":{},"Productivity Tools on all platforms":{}},"tags":{}}],["publicati",{"_index":4146,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["publiceren",{"_index":4148,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["publiek",{"_index":5042,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["publish",{"_index":2410,"title":{"Using Pandoc to publish a book":{}},"content":{"Computer Science learning pathways":{},"The Startup of a Lean Doctorate":{},"Using Pandoc to publish a book":{}},"tags":{"Using Pandoc to publish a book":{}}}],["puffi",{"_index":5415,"title":{},"content":{"Take your time.":{}},"tags":{}}],["puke",{"_index":4563,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["pull",{"_index":4345,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["pun",{"_index":4374,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["purcell](https://www.goodreads.com/book/show/7849839",{"_index":3704,"title":{},"content":{"2017 in books":{}},"tags":{}}],["pure",{"_index":3786,"title":{},"content":{"Essays":{}},"tags":{}}],["purpos",{"_index":685,"title":{},"content":{"undefined":{},"Integration Testing with SQLite":{},"Using Pandoc to publish a book":{},"Designing websites with accessibility in mind":{}},"tags":{}}],["pursuit",{"_index":3647,"title":{},"content":{"Tech Blog":{}},"tags":{}}],["push",{"_index":4219,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Learning to become a baker":{},"Concentrating on serendipitous creativity":{}},"tags":{}}],["pusher",{"_index":4361,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["put",{"_index":594,"title":{},"content":{"undefined":{},"Faking domain logic":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Death to pseudocode?":{},"Thinking in terms of objects":{},"Reverse engineering a curriculum":{},"The Startup of a Lean Doctorate":{},"IT Competences and Certificates":{},"Ending your day with happy thoughts":{},"I'm jealous of my dog":{},"Journaling in practice":{}},"tags":{}}],["pycharm",{"_index":2735,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["pyramid",{"_index":4283,"title":{},"content":{"Healing creative scars":{},"Teaching yourself to draw":{}},"tags":{}}],["pythagora",{"_index":4956,"title":{},"content":{"Over entropie":{}},"tags":{}}],["python",{"_index":254,"title":{},"content":{"undefined":{},"Unit Testing PicoBlaze Assembly files":{}},"tags":{"Bye autotools hello Scons":{}}}],["python'",{"_index":2935,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["python3",{"_index":488,"title":{},"content":{"undefined":{}},"tags":{}}],["python](http://effbot.org/zone/default",{"_index":543,"title":{},"content":{"undefined":{}},"tags":{}}],["python](http://www.artima.com/weblogs/viewpost.jsp?thread=101605",{"_index":499,"title":{},"content":{"undefined":{}},"tags":{}}],["python’",{"_index":547,"title":{},"content":{"undefined":{}},"tags":{}}],["qmake",{"_index":1447,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["qt",{"_index":2439,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["qualif",{"_index":4388,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["qualiti",{"_index":3222,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"Inventing - for the worse?":{}},"tags":{}}],["quantifi",{"_index":5446,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["queri",{"_index":838,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["question",{"_index":831,"title":{},"content":{"Unit Testing Stored Procedures":{},"Metaprogramming instead of duplication":{},"A quick look at 6 fountain pens":{},"Hiding Code Complexity":{},"Reverse engineering a curriculum":{},"The Startup of a Lean Doctorate":{},"IT Competences and Certificates":{},"Programming: a Creative Cognitive Process":{},"Tracking and privacy concerns on websites":{},"Journaling in practice":{}},"tags":{}}],["quick",{"_index":1058,"title":{"A quick look at 6 fountain pens":{}},"content":{"Visual Studio 2012 for Eclipse users":{},"Unit testing in Legacy Projects: VB6":{},"A quick look at 6 fountain pens":{},"Death to pseudocode?":{},"The Startup of a Lean Doctorate":{},"Tracking and privacy concerns on websites":{}},"tags":{}}],["quicklaunch",{"_index":2754,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["quickli",{"_index":1033,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Enhancing the builder pattern with closures":{},"Unit Testing Extjs UI with Siesta":{},"Are you handing over enough when inspiring someone?":{},"Journaling in practice":{},"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["quiet",{"_index":4598,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["quit",{"_index":1133,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Unit testing in Legacy Projects: VB6":{},"Development principles in cooking":{},"A quick look at 6 fountain pens":{},"A Decade in the Software Engineering industry":{},"A Ph.D. Thesis: Iteration 2":{},"Programming: a Creative Cognitive Process":{},"Page Building with Brizy in Wordpress":{},"On finding your inner zen in big cities":{},"Teaching yourself to draw":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["quot",{"_index":2331,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["r",{"_index":1095,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Death to pseudocode?":{},"2017 in books":{}},"tags":{}}],["racket",{"_index":720,"title":{},"content":{"undefined":{}},"tags":{}}],["rad",{"_index":3993,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["radermach",{"_index":2988,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["rage",{"_index":1891,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["rail",{"_index":2313,"title":{},"content":{"Death to pseudocode?":{}},"tags":{}}],["raindrop",{"_index":4342,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["ram",{"_index":3271,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["rammen",{"_index":5077,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["random",{"_index":1543,"title":{},"content":{"Faking domain logic":{},"Teaching by philosophy":{},"Domain Driven Design in C":{},"Nuts about local nuts":{}},"tags":{}}],["rang",{"_index":1700,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["range(10",{"_index":549,"title":{},"content":{"undefined":{}},"tags":{}}],["rant",{"_index":3208,"title":{},"content":{"Five reasons why agile and academia don't go together":{}},"tags":{}}],["rapen",{"_index":4657,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["rapid",{"_index":4210,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["rapidli",{"_index":2378,"title":{},"content":{"Teaching by philosophy":{}},"tags":{}}],["rare",{"_index":3105,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{},"Concentrating on serendipitous creativity":{}},"tags":{}}],["raspberri",{"_index":4694,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["re",{"_index":525,"title":{},"content":{"undefined":{},"Teaching Object-Oriented design using the GBA":{},"Journaling in practice":{}},"tags":{}}],["reach",{"_index":2117,"title":{},"content":{"A quick look at 6 fountain pens":{},"Computer Science learning pathways":{},"The Startup of a Lean Doctorate":{},"Using Pandoc to publish a book":{},"Are you handing over enough when inspiring someone?":{},"Nuts about local nuts":{},"Concentrating on serendipitous creativity":{}},"tags":{}}],["react",{"_index":1793,"title":{"Migrating from Extjs to React gradually":{}},"content":{"Migrating from Extjs to React gradually":{}},"tags":{"Migrating from Extjs to React gradually":{}}}],["react.compon",{"_index":1860,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["react/mod/someurl",{"_index":1842,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["react/some/detail/url",{"_index":1867,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["reaction",{"_index":3674,"title":{},"content":{"2017 in books":{}},"tags":{}}],["reactjsaccord",{"_index":3409,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["span>aristotelesgoethelaura",{"_index":3630,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["spanish",{"_index":4532,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["spar",{"_index":3234,"title":{},"content":{"Five reasons why agile and academia don't go together":{}},"tags":{}}],["sparerib",{"_index":5489,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["spark",{"_index":5402,"title":{},"content":{"Take your time.":{}},"tags":{}}],["spati",{"_index":581,"title":{},"content":{"undefined":{}},"tags":{}}],["spawn",{"_index":940,"title":{},"content":{"undefined":{}},"tags":{}}],["speak",{"_index":1997,"title":{},"content":{"How to teach kids to program":{},"Thinking in terms of objects":{},"Computer Science learning pathways":{},"A Ph.D. Thesis: Iteration 2":{},"Five reasons why agile and academia don't go together":{},"Journaling in practice":{}},"tags":{}}],["speciaal",{"_index":174,"title":{},"content":{"undefined":{},"Over analoog en digitaal":{}},"tags":{}}],["special",{"_index":471,"title":{},"content":{"undefined":{},"A quick look at 6 fountain pens":{},"Computer Science learning pathways":{},"Reverse engineering a curriculum":{},"Hugo Extended: More static site processing power!":{},"Using Pandoc to publish a book":{},"Tracking and privacy concerns on websites":{},"Inventing - for the worse?":{},"Learning to become a baker":{},"On finding your inner zen in big cities":{}},"tags":{}}],["specialist",{"_index":3085,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["specialti",{"_index":2155,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["specif",{"_index":1470,"title":{},"content":{"Custom Webdriver Page Factories":{},".NET Memory management VS JVM Memory management":{},"Programming: a Creative Cognitive Process":{},"Page Building with Brizy in Wordpress":{}},"tags":{}}],["specifi",{"_index":825,"title":{},"content":{"Unit Testing Stored Procedures":{},"Bye autotools hello Scons":{}},"tags":{}}],["specifiek",{"_index":4765,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["speed",{"_index":1026,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Programming: a Creative Cognitive Process":{}},"tags":{}}],["speelt",{"_index":5264,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["speeltj",{"_index":5206,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["spel",{"_index":4621,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spelcasett",{"_index":4691,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spelconsol",{"_index":4697,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spelen",{"_index":4731,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spelervar",{"_index":4668,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spellen",{"_index":4649,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spend",{"_index":4245,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Teaching yourself to draw":{}},"tags":{}}],["spenderen",{"_index":4170,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["spent",{"_index":3209,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"Teaching yourself to draw":{}},"tags":{}}],["spice",{"_index":2095,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["spijt",{"_index":5173,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["splitsen",{"_index":671,"title":{},"content":{"undefined":{}},"tags":{}}],["sporad",{"_index":1881,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["spot",{"_index":5424,"title":{},"content":{"Take your time.":{}},"tags":{}}],["spotifi",{"_index":2736,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["spread",{"_index":1797,"title":{},"content":{"Migrating from Extjs to React gradually":{},"Reverse engineering a curriculum":{},"IT Competences and Certificates":{},"Learning to become a baker":{}},"tags":{}}],["spreadabl",{"_index":2101,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["spreken",{"_index":461,"title":{},"content":{"undefined":{}},"tags":{}}],["spreker",{"_index":4115,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["spring",{"_index":4543,"title":{},"content":{"Nuts about local nuts":{},"Over Onmiddellijke Voldoening":{},"Take your time.":{}},"tags":{}}],["springi",{"_index":2197,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["sprint",{"_index":2867,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{}}],["sprite",{"_index":3136,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["sql",{"_index":805,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{}}}],["sqlite",{"_index":1203,"title":{"Integration Testing with SQLite":{}},"content":{"Integration Testing with SQLite":{}},"tags":{"Integration Testing with SQLite":{}}}],["sqlite](http://www.sqlite.org",{"_index":1242,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqlitecommand",{"_index":1269,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqlitecommand.executenonqueri",{"_index":1274,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqliteconnect",{"_index":1258,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqliteconnectionflags.logal",{"_index":1263,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqlitedbconnect",{"_index":1259,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["squar",{"_index":3231,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"Healing creative scars":{}},"tags":{}}],["squeez",{"_index":5360,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["src",{"_index":985,"title":{},"content":{"undefined":{},"Bye autotools hello Scons":{},"Migrating from Extjs to React gradually":{},"Hugo Extended: More static site processing power!":{}},"tags":{}}],["src=\"/img/tnmt.jpg",{"_index":5203,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["src=\"/img/wine.jpg",{"_index":5331,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["src](https://www.slideshare.net/medikawy_2005/how",{"_index":3182,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["ss",{"_index":427,"title":{},"content":{"undefined":{}},"tags":{}}],["ssd",{"_index":3279,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["ssh",{"_index":892,"title":{},"content":{"undefined":{},"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["sshd_config",{"_index":3290,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["sshlogin.exp",{"_index":916,"title":{},"content":{"undefined":{}},"tags":{}}],["ssl",{"_index":3596,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["st",{"_index":4604,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["staan",{"_index":4145,"title":{},"content":{"De zin en onzin van conferenties":{},"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{}},"tags":{}}],["staat",{"_index":301,"title":{},"content":{"undefined":{},"Over het introduceren van bedrijfsethiek":{},"Over tijdsbesef":{}},"tags":{}}],["stabil",{"_index":1721,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["stabl",{"_index":2400,"title":{},"content":{"Teaching by philosophy":{}},"tags":{}}],["stack",{"_index":667,"title":{},"content":{"undefined":{},"Death to pseudocode?":{}},"tags":{}}],["stackoverflow",{"_index":2269,"title":{},"content":{"Death to pseudocode?":{}},"tags":{}}],["stacktrac",{"_index":1737,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["stad",{"_index":5261,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["stage",{"_index":2821,"title":{},"content":{"A Decade in the Software Engineering industry":{},"A samurai learning mindset":{},"Healing creative scars":{}},"tags":{}}],["stagger",{"_index":2081,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["stagnat",{"_index":2817,"title":{},"content":{"A Decade in the Software Engineering industry":{}},"tags":{}}],["staleelementexcept",{"_index":1727,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["stamp",{"_index":4403,"title":{},"content":{"Journaling in practice":{}},"tags":{}}],["stanc",{"_index":3583,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["stand",{"_index":2484,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"The Startup of a Lean Doctorate":{},"Concentrating on serendipitous creativity":{},"Take your time.":{}},"tags":{}}],["standaard",{"_index":111,"title":{},"content":{"undefined":{}},"tags":{}}],["standard",{"_index":3230,"title":{},"content":{"Five reasons why agile and academia don't go together":{}},"tags":{}}],["stapelt",{"_index":3914,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["star",{"_index":2646,"title":{},"content":{"Reverse engineering a curriculum":{},"Nuts about local nuts":{}},"tags":{}}],["stare",{"_index":5409,"title":{},"content":{"Take your time.":{},"Teaching yourself to draw":{}},"tags":{}}],["start",{"_index":780,"title":{},"content":{"Unit Testing Stored Procedures":{},"Enhancing the builder pattern with closures":{},"Bye autotools hello Scons":{},".NET Memory management VS JVM Memory management":{},"Unit Testing Extjs UI with Siesta":{},"Migrating from Extjs to React gradually":{},"Unit testing in Legacy Projects: VB6":{},"Development principles in cooking":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"Reverse engineering a curriculum":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"Teaching Object-Oriented design using the GBA":{},"Page Building with Brizy in Wordpress":{},"Using Pandoc to publish a book":{},"Designing websites with accessibility in mind":{},"2017 in books":{},"A samurai learning mindset":{},"Ending your day with happy thoughts":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"I'm jealous of my dog":{},"Inventing - for the worse?":{},"Journaling in practice":{},"Learning to become a baker":{},"Nuts about local nuts":{},"On finding your inner zen in big cities":{},"Take your time.":{},"Teaching yourself to draw":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["startbutton",{"_index":1479,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["starten",{"_index":4699,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["starter",{"_index":1621,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["startup",{"_index":1595,"title":{"The Startup of a Lean Doctorate":{}},"content":{".NET Memory management VS JVM Memory management":{},"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["startupproject=unittests\\unittests.vbp",{"_index":1924,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["state",{"_index":1690,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"Unit Testing PicoBlaze Assembly files":{},"A samurai learning mindset":{},"I'm jealous of my dog":{},"Over analoog en digitaal":{},"Take your time.":{},"Teaching yourself to draw":{}},"tags":{}}],["statement",{"_index":514,"title":{},"content":{"undefined":{},"Integration Testing with SQLite":{},"Productivity Tools on all platforms":{}},"tags":{}}],["static",{"_index":1157,"title":{"Hugo Extended: More static site processing power!":{}},"content":{"Enhancing the builder pattern with closures":{},"Custom Webdriver Page Factories":{},"Faking domain logic":{},"Webdriver Exception Handling":{},"DIY: Hosting stuff on your own VPS":{},"Hugo Extended: More static site processing power!":{},"Page Building with Brizy in Wordpress":{},"Tracking and privacy concerns on websites":{}},"tags":{}}],["static_method",{"_index":635,"title":{},"content":{"undefined":{}},"tags":{}}],["station",{"_index":1393,"title":{},"content":{"Bye autotools hello Scons":{},"On finding your inner zen in big cities":{},"Concentrating on serendipitous creativity":{}},"tags":{}}],["statist",{"_index":3669,"title":{},"content":{"2017 in books":{}},"tags":{}}],["statu",{"_index":2223,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["status",{"_index":2231,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["stay",{"_index":2803,"title":{},"content":{"A Decade in the Software Engineering industry":{},"Designing websites with accessibility in mind":{},"Take your time.":{}},"tags":{}}],["std",{"_index":81,"title":{},"content":{"undefined":{}},"tags":{}}],["std::cout",{"_index":145,"title":{},"content":{"undefined":{}},"tags":{}}],["steakhous",{"_index":5509,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["steekt",{"_index":371,"title":{},"content":{"undefined":{}},"tags":{}}],["steel",{"_index":2190,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["steken_",{"_index":4609,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["stellen",{"_index":436,"title":{},"content":{"undefined":{},"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["stellingen",{"_index":4933,"title":{},"content":{"Over entropie":{}},"tags":{}}],["step",{"_index":792,"title":{},"content":{"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{},"Unit testing in Legacy Projects: VB6":{},"Development principles in cooking":{},"IT Competences and Certificates":{},"Hugo Extended: More static site processing power!":{},"A samurai learning mindset":{},"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["stephen",{"_index":4010,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["stereotypisch",{"_index":3770,"title":{},"content":{"Essays":{}},"tags":{}}],["sterk",{"_index":3877,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"Over het introduceren van bedrijfsethiek":{},"Over entropie":{}},"tags":{}}],["steven",{"_index":4599,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["stevig",{"_index":2485,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["stick",{"_index":3848,"title":{},"content":{"A samurai learning mindset":{},"Nuts about local nuts":{}},"tags":{}}],["sticker",{"_index":4404,"title":{},"content":{"Journaling in practice":{}},"tags":{}}],["sticki",{"_index":4415,"title":{},"content":{"Journaling in practice":{}},"tags":{}}],["stiekem",{"_index":4947,"title":{},"content":{"Over entropie":{}},"tags":{}}],["stijgt",{"_index":4925,"title":{},"content":{"Over entropie":{}},"tags":{}}],["stil",{"_index":4802,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["stilgestaan",{"_index":4989,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["still",{"_index":1243,"title":{},"content":{"Integration Testing with SQLite":{},"Unit testing in Legacy Projects: VB6":{},"How to teach kids to program":{},"Development principles in cooking":{},"Hiding Code Complexity":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"Programming: a Creative Cognitive Process":{},"DIY: Hosting stuff on your own VPS":{},"Page Building with Brizy in Wordpress":{},"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{},"Healing creative scars":{},"I'm jealous of my dog":{},"Inventing - for the worse?":{},"Learning to become a baker":{}},"tags":{}}],["stock",{"_index":4498,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["stof",{"_index":2504,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["stofj",{"_index":4619,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["stoke",{"_index":4363,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["stom",{"_index":5033,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["stop",{"_index":2001,"title":{},"content":{"How to teach kids to program":{},"Development principles in cooking":{},"Death to pseudocode?":{},"Computer Science learning pathways":{},"A samurai learning mindset":{},"Ending your day with happy thoughts":{},"I'm jealous of my dog":{},"Learning to become a baker":{},"Take your time.":{},"No, vegetarians do not eat fish!":{}},"tags":{}}],["stopt",{"_index":614,"title":{},"content":{"undefined":{}},"tags":{}}],["store",{"_index":747,"title":{"Unit Testing Stored Procedures":{}},"content":{"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{},"Unit Testing PicoBlaze Assembly files":{},"Inventing - for the worse?":{},"Nuts about local nuts":{},"Teaching yourself to draw":{}},"tags":{}}],["stori",{"_index":481,"title":{},"content":{"undefined":{},"How to teach kids to program":{},"Tracking and privacy concerns on websites":{},"2017 in books":{},"Inventing - for the worse?":{}},"tags":{}}],["stove",{"_index":4355,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["straat",{"_index":4917,"title":{},"content":{"Over entropie":{}},"tags":{}}],["strasbourg",{"_index":3280,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["strategi",{"_index":3615,"title":{},"content":{"Tracking and privacy concerns on websites":{},"Concentrating on serendipitous creativity":{}},"tags":{}}],["stream",{"_index":3131,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["streek",{"_index":5226,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["street",{"_index":4561,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["streng",{"_index":4152,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["strength",{"_index":3031,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["stress",{"_index":4238,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Over entropie":{},"Concentrating on serendipitous creativity":{}},"tags":{}}],["stretch",{"_index":1827,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["strictli",{"_index":3845,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["strik",{"_index":4416,"title":{},"content":{"Journaling in practice":{}},"tags":{}}],["string",{"_index":354,"title":{},"content":{"undefined":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Faking domain logic":{},"Webdriver Exception Handling":{}},"tags":{}}],["string(\"somestr",{"_index":399,"title":{},"content":{"undefined":{}},"tags":{}}],["string(\"ss",{"_index":421,"title":{},"content":{"undefined":{}},"tags":{}}],["string.metaclass.istru",{"_index":293,"title":{},"content":{"undefined":{}},"tags":{}}],["string.prototype.istru",{"_index":292,"title":{},"content":{"undefined":{}},"tags":{}}],["strip",{"_index":5092,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["stroke",{"_index":2160,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["stroll",{"_index":4576,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["stromen",{"_index":4759,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["strot",{"_index":5075,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["struct",{"_index":2696,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["structur",{"_index":466,"title":{},"content":{"undefined":{},"Migrating from Extjs to React gradually":{},"Hiding Code Complexity":{},"Thinking in terms of objects":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"Domain Driven Design in C":{},"Designing websites with accessibility in mind":{},"Journaling in practice":{}},"tags":{}}],["struggl",{"_index":2863,"title":{},"content":{"The Startup of a Lean Doctorate":{},"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["stub",{"_index":1312,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["stub/mock",{"_index":2941,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["stuck",{"_index":3253,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Healing creative scars":{}},"tags":{}}],["student",{"_index":2356,"title":{},"content":{"Teaching by philosophy":{},"Computer Science learning pathways":{},"Reverse engineering a curriculum":{},"Productivity Tools on all platforms":{},"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["studi",{"_index":1376,"title":{},"content":{"Bye autotools hello Scons":{},"How to teach kids to program":{},"Computer Science learning pathways":{},"The Startup of a Lean Doctorate":{},"Essays":{},"A samurai learning mindset":{},"I'm jealous of my dog":{},"Learning to become a baker":{}},"tags":{}}],["studies](https://people.cs.kuleuven.be/~wouter.groeneveld/delphi",{"_index":3149,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["studio",{"_index":1010,"title":{"Visual Studio 2012 for Eclipse users":{}},"content":{"Visual Studio 2012 for Eclipse users":{},"Productivity Tools on all platforms":{}},"tags":{}}],["stuff",{"_index":799,"title":{"DIY: Hosting stuff on your own VPS":{}},"content":{"Unit Testing Stored Procedures":{},"undefined":{},"Migrating from Extjs to React gradually":{},"How to teach kids to program":{},"Development principles in cooking":{},"Teaching by philosophy":{},"The Startup of a Lean Doctorate":{},"Page Building with Brizy in Wordpress":{},"Using Pandoc to publish a book":{},"2017 in books":{},"Ending your day with happy thoughts":{},"Are you handing over enough when inspiring someone?":{},"Inventing - for the worse?":{},"Journaling in practice":{},"Take your time.":{}},"tags":{}}],["stuff!”at",{"_index":3551,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["timeout",{"_index":936,"title":{},"content":{"undefined":{}},"tags":{}}],["timestamp",{"_index":992,"title":{},"content":{"undefined":{}},"tags":{}}],["tini",{"_index":4048,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["tip",{"_index":659,"title":{},"content":{"undefined":{},"How to teach kids to program":{}},"tags":{}}],["tire",{"_index":2812,"title":{},"content":{"A Decade in the Software Engineering industry":{}},"tags":{}}],["titanium",{"_index":2188,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["titel",{"_index":2565,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["titl",{"_index":1,"title":{},"content":{"undefined":{},"Unit Testing Extjs UI with Siesta":{},"Migrating from Extjs to React gradually":{},"A Decade in the Software Engineering industry":{},"Five reasons why agile and academia don't go together":{},"Using Pandoc to publish a book":{}},"tags":{}}],["title=\"nostalgi",{"_index":5204,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["tkplabs.org](http://tkplabs.org",{"_index":1948,"title":{},"content":{"How to teach kids to program":{}},"tags":{}}],["to",{"_index":5386,"title":{},"content":{"Take your time.":{}},"tags":{}}],["to(",{"_index":906,"title":{},"content":{"undefined":{}},"tags":{}}],["toch",{"_index":4103,"title":{},"content":{"De zin en onzin van conferenties":{},"Over analoog en digitaal":{}},"tags":{}}],["today",{"_index":2049,"title":{},"content":{"Development principles in cooking":{},"Reverse engineering a curriculum":{},"Ending your day with happy thoughts":{},"I'm jealous of my dog":{},"Inventing - for the worse?":{},"Take your time.":{}},"tags":{}}],["todayessayist",{"_index":3658,"title":{},"content":{"Tech Blog":{}},"tags":{}}],["xlink:href='#tech'>techn",{"_index":3656,"title":{},"content":{"Tech Blog":{}},"tags":{}}],["xm",{"_index":1589,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["xmx",{"_index":1588,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["xp",{"_index":765,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["y",{"_index":89,"title":{},"content":{"undefined":{},"IT Competences and Certificates":{},"Ending your day with happy thoughts":{},"Healing creative scars":{}},"tags":{}}],["y.get",{"_index":96,"title":{},"content":{"undefined":{}},"tags":{}}],["yagi",{"_index":3837,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["yagni](/img/yagni1.p",{"_index":2113,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["yagyu",{"_index":3814,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["yagyū'",{"_index":3826,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["yay",{"_index":843,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["ye",{"_index":1191,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Death to pseudocode?":{},"Domain Driven Design in C":{},"A Decade in the Software Engineering industry":{},"Five reasons why agile and academia don't go together":{},"DIY: Hosting stuff on your own VPS":{},"2017 in books":{},"Ending your day with happy thoughts":{},"I'm jealous of my dog":{},"Journaling in practice":{}},"tags":{}}],["year",{"_index":1152,"title":{"Archive by Year: 2013":{},"Archive by Year: 2014":{},"Archive by Year: 2015":{},"Archive by Year: 2016":{},"Archive by Year: 2017":{},"Archive by Year: 2018":{},"Archive by Year: 2019":{},"Archive by Year: 2020":{}},"content":{"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"How to teach kids to program":{},"Development principles in cooking":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"A Ph.D. Thesis: Iteration 2":{},"IT Competences and Certificates":{},"Teaching Object-Oriented design using the GBA":{},"Five reasons why agile and academia don't go together":{},"Page Building with Brizy in Wordpress":{},"2017 in books":{},"Essays":{},"A samurai learning mindset":{},"Ending your day with happy thoughts":{},"Healing creative scars":{},"Inventing - for the worse?":{},"Learning to become a baker":{},"Teaching yourself to draw":{}},"tags":{}}],["yeast",{"_index":4441,"title":{},"content":{"Learning to become a baker":{}},"tags":{}}],["yell",{"_index":5376,"title":{},"content":{"Take your time.":{}},"tags":{}}],["yip",{"_index":2423,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["yottam",{"_index":2076,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["you'd",{"_index":827,"title":{},"content":{"Unit Testing Stored Procedures":{},"Custom Webdriver Page Factories":{},"Thinking in terms of objects":{},"Teaching by philosophy":{},"Reverse engineering a curriculum":{},"Using Pandoc to publish a book":{},"Healing creative scars":{}},"tags":{}}],["you'll",{"_index":1035,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Integration Testing with SQLite":{},"A Decade in the Software Engineering industry":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"I'm jealous of my dog":{},"Journaling in practice":{},"Concentrating on serendipitous creativity":{}},"tags":{}}],["you'r",{"_index":773,"title":{},"content":{"Unit Testing Stored Procedures":{},"Visual Studio 2012 for Eclipse users":{},"Bye autotools hello Scons":{},"Custom Webdriver Page Factories":{},"Faking domain logic":{},".NET Memory management VS JVM Memory management":{},"Unit Testing Extjs UI with Siesta":{},"Unit testing in Legacy Projects: VB6":{},"Development principles in cooking":{},"A quick look at 6 fountain pens":{},"Death to pseudocode?":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"DIY: Hosting stuff on your own VPS":{},"Tech Blog":{},"A samurai learning mindset":{},"Healing creative scars":{},"Inventing - for the worse?":{},"Journaling in practice":{},"Over Onmiddellijke Voldoening":{},"Concentrating on serendipitous creativity":{},"Teaching yourself to draw":{}},"tags":{}}],["you'v",{"_index":1992,"title":{},"content":{"How to teach kids to program":{},"A Decade in the Software Engineering industry":{},"Five reasons why agile and academia don't go together":{},"Journaling in practice":{}},"tags":{}}],["young",{"_index":4437,"title":{},"content":{"Learning to become a baker":{},"Take your time.":{}},"tags":{}}],["your",{"_index":3723,"title":{},"content":{"2017 in books":{}},"tags":{}}],["yourself",{"_index":858,"title":{"Teaching yourself to draw":{}},"content":{"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{},"Bye autotools hello Scons":{},".NET Memory management VS JVM Memory management":{},"The Startup of a Lean Doctorate":{},"Teaching Object-Oriented design using the GBA":{},"Page Building with Brizy in Wordpress":{},"Journaling in practice":{},"Learning to become a baker":{},"On finding your inner zen in big cities":{},"Concentrating on serendipitous creativity":{},"Teaching yourself to draw":{}},"tags":{}}],["yourself!” { + acc[curr.title] = curr; + return acc; + }, {}); + + fetch('/js/brainbaking-post.json').then(function (res) { + return res.json(); + }).then(function (data) { + const index = lunr.Index.load(data); + const matches = index.search(searchString); + const matchPosts = []; + matches.forEach((m) => { + matchPosts.push(postsByTitle[m.ref]); + }); + + $pages.innerHTML = `(${matches.length})`; + if (matchPosts.length > 0) { + $target.innerHTML = matchPosts.filter(p => p).map(p => { + return ``; + }).join(''); + } else { + $target.innerHTML = `
No relevant search results found.
`; + } + }); + })() + }); diff --git a/themes/brainbaking-minimal/assets/sass/_brainbaking.sass b/themes/brainbaking-minimal/assets/sass/_brainbaking.sass index 1678a233..14b7631f 100644 --- a/themes/brainbaking-minimal/assets/sass/_brainbaking.sass +++ b/themes/brainbaking-minimal/assets/sass/_brainbaking.sass @@ -79,9 +79,8 @@ main blockquote p margin: 0 !important - &.single - article a - text-decoration: underline + a + text-decoration: underline !important &.post article > p:first-of-type::first-letter, &.essays article > p:first-of-type::first-letter @@ -96,11 +95,14 @@ main margin-top: 3.5rem +.list-tags + a + text-decoration: none !important + header margin: auto padding-top: 1rem padding-bottom: 1.5rem - max-width: 80% h1 color: var(--accent) @@ -149,6 +151,11 @@ kbd transition: left .1s ease-in -.sl-counter - font-size: 1.2rem !important - font-weight: bold +.sl-wrapper + .sl-counter + font-weight: bold + font-size: 1.2rem !important + + .sl-caption + text-align: center + background: rgba(0,0,0,0.65) !important diff --git a/themes/brainbaking-minimal/assets/sass/_forms.sass b/themes/brainbaking-minimal/assets/sass/_forms.sass new file mode 100644 index 00000000..b25aa33c --- /dev/null +++ b/themes/brainbaking-minimal/assets/sass/_forms.sass @@ -0,0 +1,13 @@ + +.search-form + padding-top: 1rem + padding-bottom: 1rem + + button[type=submit] + background-color: white + border: 1px solid var(--accent) + color: var(--accent) + + &:hover + color: white + background-color: var(--accent) diff --git a/themes/brainbaking-minimal/assets/sass/main.sass b/themes/brainbaking-minimal/assets/sass/main.sass index a52c80e0..451bfd99 100644 --- a/themes/brainbaking-minimal/assets/sass/main.sass +++ b/themes/brainbaking-minimal/assets/sass/main.sass @@ -10,3 +10,4 @@ $grey: #333 @import 'listing' @import 'commento' @import 'goodreads' +@import 'forms' diff --git a/themes/brainbaking-minimal/layouts/_default/list.html b/themes/brainbaking-minimal/layouts/_default/list.html index ff78f0ac..1eeda9b9 100644 --- a/themes/brainbaking-minimal/layouts/_default/list.html +++ b/themes/brainbaking-minimal/layouts/_default/list.html @@ -21,36 +21,16 @@ {{ end }} {{ end }} + {{ if (not .Params.disableList) }}
- {{ range .Paginator.Pages.GroupByDate "2006" "desc" }} + + {{ range (where .Paginator.Pages ".Params.category" "ne" "archive").GroupByDate "2006" "desc" }}

{{ .Key }}

{{ range .Pages.GroupByDate "Jan" }}

{{ .Key }}

- -
    - {{ range .Pages.ByDate.Reverse }} -
  • - {{ .Date.Format ("02") }} -
    -

    - {{ .Title }} -

    - {{ .Params.subtitle }} -
    - {{ if isset .Params "tags" }} -
    -   - {{ range .Params.tags }} - {{ . }} - {{ end }} -
    - {{ end }} -
  • - {{ end }} -
- + {{ partial "list-ul" . }} {{ end }} {{ end }}
diff --git a/themes/brainbaking-minimal/layouts/_default/terms.html b/themes/brainbaking-minimal/layouts/_default/terms.html index 164c3f79..4febff4d 100644 --- a/themes/brainbaking-minimal/layouts/_default/terms.html +++ b/themes/brainbaking-minimal/layouts/_default/terms.html @@ -17,41 +17,37 @@ {{ end }} -
+
+
- - {{ $letters := split "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "" }} + + {{ $letters := split "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "" }} - - {{ range .Data.Pages.ByTitle }} - - {{ $firstChar := substr .Title 0 1 | upper }} - - - {{ if $firstChar | in $letters }} - - {{ $curLetter := $.Scratch.Get "curLetter" }} - - {{ if ne $firstChar $curLetter }} - - -
- {{ $.Scratch.Set "curLetter" $firstChar }} + + {{ range .Data.Pages.ByTitle }} + + {{ $firstChar := substr .Title 0 1 | upper }} + + + {{ if $firstChar | in $letters }} + + {{ $curLetter := $.Scratch.Get "curLetter" }} + + {{ if ne $firstChar $curLetter }} + +
+ {{ $.Scratch.Set "curLetter" $firstChar }} -

- {{ $firstChar }} -

-
    - {{ end }} +

    {{ $firstChar }}

    -
  • -

    - {{ .Title }} -

    -
  • - {{ end }} - {{ end }} -
+
+ diff --git a/themes/brainbaking-minimal/layouts/partials/list-ul.html b/themes/brainbaking-minimal/layouts/partials/list-ul.html new file mode 100644 index 00000000..4d760eb8 --- /dev/null +++ b/themes/brainbaking-minimal/layouts/partials/list-ul.html @@ -0,0 +1,23 @@ +
+
    + {{ range .Pages.ByDate.Reverse }} +
  • + {{ .Date.Format ("02") }} +
    +

    + {{ .Title }} +

    + {{ .Params.subtitle }} +
    + {{ if isset .Params "tags" }} +
    +   + {{ range .Params.tags }} + {{ . }} + {{ end }} +
    + {{ end }} +
  • + {{ end }} +
+
\ No newline at end of file diff --git a/themes/brainbaking-minimal/layouts/partials/single-header.html b/themes/brainbaking-minimal/layouts/partials/single-header.html index 2308a082..966aea01 100644 --- a/themes/brainbaking-minimal/layouts/partials/single-header.html +++ b/themes/brainbaking-minimal/layouts/partials/single-header.html @@ -38,8 +38,10 @@ {{ end }} - {{ range .Params.tags }} - {{ . }} - {{ end }} + + {{ range .Params.tags }} + {{ . }} + {{ end }} + diff --git a/themes/brainbaking-minimal/static/js/lunr.min.js b/themes/brainbaking-minimal/static/js/lunr.min.js new file mode 100644 index 00000000..937dc48f --- /dev/null +++ b/themes/brainbaking-minimal/static/js/lunr.min.js @@ -0,0 +1 @@ +!function(){var t,l,c,e,r,h,d,f,p,y,m,g,x,v,w,Q,k,S,E,L,b,P,T,O,I,i,n,z=function(e){var t=new z.Builder;return t.pipeline.add(z.trimmer,z.stopWordFilter,z.stemmer),t.searchPipeline.add(z.stemmer),e.call(t,t),t.build()};function s(e){var t,r,i,n,s,o,a,u;return e.length<3||("y"==(r=e.substr(0,1))&&(e=r.toUpperCase()+e.substr(1)),a=m,(s=y).test(e)?e=e.replace(s,"$1$2"):a.test(e)&&(e=e.replace(a,"$1$2")),a=x,(s=g).test(e)?(u=s.exec(e),(s=h).test(u[1])&&(s=v,e=e.replace(s,""))):a.test(e)&&(o=(u=a.exec(e))[1],(a=p).test(o)&&(i=Q,n=k,(a=w).test(e=o)?e+="e":i.test(e)?(s=v,e=e.replace(s,"")):n.test(e)&&(e+="e"))),(s=S).test(e)&&(e=(o=(u=s.exec(e))[1])+"i"),(s=E).test(e)&&(o=(u=s.exec(e))[1],t=u[2],(s=h).test(o)&&(e=o+l[t])),(s=L).test(e)&&(o=(u=s.exec(e))[1],t=u[2],(s=h).test(o)&&(e=o+c[t])),a=P,(s=b).test(e)?(o=(u=s.exec(e))[1],(s=d).test(o)&&(e=o)):a.test(e)&&(o=(u=a.exec(e))[1]+u[2],(a=d).test(o)&&(e=o)),(s=T).test(e)&&(o=(u=s.exec(e))[1],a=f,i=I,((s=d).test(o)||a.test(o)&&!i.test(o))&&(e=o)),a=d,(s=O).test(e)&&a.test(e)&&(s=v,e=e.replace(s,"")),"y"==r&&(e=r.toLowerCase()+e.substr(1))),e}z.version="2.3.8",z.utils={},z.utils.warn=(t=this,function(e){t.console&&console.warn&&console.warn(e)}),z.utils.asString=function(e){return null==e?"":e.toString()},z.utils.clone=function(e){if(null==e)return e;for(var t=Object.create(null),r=Object.keys(e),i=0;i=this.length)return z.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},z.QueryLexer.prototype.width=function(){return this.pos-this.start},z.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},z.QueryLexer.prototype.backup=function(){--this.pos},z.QueryLexer.prototype.acceptDigitRun=function(){for(var e,t;47<(t=(e=this.next()).charCodeAt(0))&&t<58;);e!=z.QueryLexer.EOS&&this.backup()},z.QueryLexer.prototype.more=function(){return this.pos