From 5c93d643e599733f2a9939cdc65a36a96646532d Mon Sep 17 00:00:00 2001 From: wgroeneveld Date: Fri, 29 Apr 2022 14:16:57 +0200 Subject: [PATCH] move webmention endpoint into config.toml --- config.toml | 1 + .../04/cool-things-people-do-with-their-blogs.md | 7 ++++--- hooks/_conf.js | 13 +++++++++++++ hooks/postdeploy.js | 10 +--------- hooks/precommit.js | 10 +--------- static/js/brainbaking-post.json | 2 +- .../layouts/partials/head-meta.html | 4 ++-- .../layouts/partials/single-webmentions.html | 3 ++- 8 files changed, 25 insertions(+), 25 deletions(-) create mode 100644 hooks/_conf.js diff --git a/config.toml b/config.toml index 542db9e5..28fc3305 100644 --- a/config.toml +++ b/config.toml @@ -20,6 +20,7 @@ enableGitInfo = true pagination = 30 description = "Freshly Baked Thoughts" + webmentionServer = "https://jam.brainbaking.com" accent = "#018661" showBorder = true copyright = "↑ Top lightbulb icon Brain Baking. No © and no tracking." diff --git a/content/post/2022/04/cool-things-people-do-with-their-blogs.md b/content/post/2022/04/cool-things-people-do-with-their-blogs.md index c52ab93f..0874e9ca 100644 --- a/content/post/2022/04/cool-things-people-do-with-their-blogs.md +++ b/content/post/2022/04/cool-things-people-do-with-their-blogs.md @@ -9,7 +9,7 @@ tags: Small and independent blogs are always full of surprises. The more blogs I stumble upon, the more genuinely surprised I am by the things people do with their blogs. It seemed like a good idea to summarize highlights here. I hope it might inspire non-bloggers to blog and bloggers to tinker more with their site---because obviously the tinkering never ends! -I randomly selected blogs for each _thing_. There are ample other sites that use that particular feature, but I had to start somewhere. Some blogs appear muiltple times, probably making them even funkier! This list is incomplete, I'll try to periodically update it as I encounter more cool stuff. Enjoy! +I randomly selected blogs for each _thing_. There are ample other sites that use that particular feature, but I had to start somewhere. Some blogs appear multiple times, probably making them even funkier! This list is incomplete, I'll try to periodically update it as I encounter more cool stuff. Enjoy! ### Content related @@ -39,6 +39,7 @@ I randomly selected blogs for each _thing_. There are ample other sites that use - Use a public inbox as a commenting system: [an article from Drew DeVault](https://drewdevault.com/2022/04/15/Status-update-April-2022.html) - Implement reaction buttons for each post: [Jan-Lukas Else's thoughts on reactions](https://jlelse.blog/posts/goblog-reactions) - Emulate the multi-pane layout of an e-mail client: [Brian Lovin's writings](https://brianlovin.com/writing) +- Each post has a unique HTML design/layout: [Aegir's Words](https://aegir.org/words/smoothbooze) ### IndieWeb related @@ -49,7 +50,7 @@ I randomly selected blogs for each _thing_. There are ample other sites that use - Summarize all IndieWeb-based RSVP events in a calendar: [Jamie Tanna's RSVPs](https://www.jvt.me/rsvps/) - Work together on MicroPub/Sub as a new social reading protocol: [Neal Mather's blog](https://doubleloop.net/) - Join the IndieWeb ring to promote own and others' sites: [Horst Gutmann's blog](https://zerokspot.com/) -- Buuild a custom Webmention receiver/sender: [IndieWeb examples](https://indieweb.org/Webmention#IndieWeb_Examples) +- Build a custom Webmention receiver/sender: [IndieWeb examples](https://indieweb.org/Webmention#IndieWeb_Examples) ### RSS related @@ -59,7 +60,7 @@ I randomly selected blogs for each _thing_. There are ample other sites that use - Styled OPML Blogrolls that can be imported into your reader: [Ruben Schade's Omake OPML](https://rubenerd.com/omake.opml) - Styled RSS feeds to better explain what a web feed is: [Matt Webb's RSS feed](http://interconnected.org/home/feed) - A "Reply via email" link in each RSS post to encourage interaction: [Mike Harley's RSS feed](view-source:https://obsolete29.com/feed/feed.xml) -- Secret RSS-only posts that do not appear on the webiste: [Ton Zijlstra's RSS feed](https://www.zylstra.org/blog/feed/) +- Secret RSS-only posts that do not appear on the website: [Ton Zijlstra's RSS feed](https://www.zylstra.org/blog/feed/) - Send out newsletters based on your RSS feed: [Kev Quirk is newslettering again](https://kevq.uk/im-newslettering-again/) (defunct) - Add the location from where you write to your RSS feed: [Ruben Schade's RSS feed](https://rubenerd.com/feed) diff --git a/hooks/_conf.js b/hooks/_conf.js new file mode 100644 index 00000000..b6e526eb --- /dev/null +++ b/hooks/_conf.js @@ -0,0 +1,13 @@ +const { readFileSync } = require('fs'); + +if(!process.env.WEBMENTION_TOKEN) { + throw "No webmention token set!" +} + +const configToml = readFileSync(`${__dirname}/../config.toml`) +const endpoint = /webmentionServer = \"(.+)\"/.exec(configToml)[1] + +module.exports = { + endpoint, + token: process.env.WEBMENTION_TOKEN +}; diff --git a/hooks/postdeploy.js b/hooks/postdeploy.js index f0ac79ee..7a2ca9f2 100644 --- a/hooks/postdeploy.js +++ b/hooks/postdeploy.js @@ -1,14 +1,6 @@ const { webmention } = require('jam-my-stack'); - -if(!process.env.WEBMENTION_TOKEN) { - throw "No webmention token set!" -} - -const wmconfig = { - endpoint: 'https://jam.brainbaking.com', - token: process.env.WEBMENTION_TOKEN -}; +const wmconfig = require('./_conf.js'); (async function() { // 1. send webmentions diff --git a/hooks/precommit.js b/hooks/precommit.js index e2c40cc1..089c12d7 100644 --- a/hooks/precommit.js +++ b/hooks/precommit.js @@ -1,15 +1,7 @@ const { mastodon, goodreads, lunr, webmention, youtube } = require('jam-my-stack'); const fsp = require('fs').promises; - -if(!process.env.WEBMENTION_TOKEN) { - throw "No webmention token set!" -} - -const wmconfig = { - endpoint: 'https://jam.brainbaking.com', - token: process.env.WEBMENTION_TOKEN -}; +const wmconfig = require('./_conf.js'); const rootdir = `${__dirname}/../`; diff --git a/static/js/brainbaking-post.json b/static/js/brainbaking-post.json index b095f029..16785a4b 100644 --- a/static/js/brainbaking-post.json +++ b/static/js/brainbaking-post.json @@ -1 +1 @@ -{"version":"2.3.9","fields":["title","content","tags"],"fieldVectors":[["title/Ending your day with happy thoughts",[0,1.023,1,1.283,2,2.614,3,1.454]],["content/Ending your day with happy thoughts",[0,1.073,1,2.502,2,2.743,3,2.382,4,2.278,5,1.402,6,1.158,7,1.992,8,3.623,9,3.623,10,0.966,11,1.506,12,6.996,13,1.607,14,1.527,15,4.592,16,2.743,17,0.968,18,1.674,19,0.408,20,2.568,21,1.545,22,1.337,23,2.125,24,1.369,25,1.396,26,1.475,27,0.647,28,1.246,29,1.985,30,1.526,31,3.478,32,3.623,33,7.169,34,4.592,35,3.793,36,2.278,37,2.883,38,5.11,39,2.238,40,3.436,41,4.183,42,1.586,43,3.793,44,5.11,45,7.169,46,2.09,47,1.607,48,1.82,49,4.054,50,0.623,51,2.278,52,0.782,53,2.961,54,3.793,55,1.874,56,3.478,57,4.589,58,6.287,59,2.201,60,1.165,61,2.459,62,2.51,63,5.82,64,2.883,65,1.506,66,5.11,67,1.794,68,5.11,69,1.992,70,2.261,71,5.471,72,5.11,73,0.799,74,1.291,75,1.86,76,1.329,77,1.566,78,5.431,79,0.477,80,4.388,81,2.984,82,2.411,83,2.613,84,3.51,85,2.23,86,2.529,87,1.138,88,2.09,89,3.195,90,3.301,91,2.492,92,3.947,93,3.793,94,1.207,95,2.411,96,1.847,97,2.411,98,1.777,99,1.985,100,2.563,101,0.445,102,2.62,103,1.396,104,1.004,105,6.996,106,5.11,107,3.045,108,4.592,109,1.734,110,5.11,111,3.793,112,3.239,113,1.385,114,2.883,115,5.11,116,1.193,117,5.233,118,3.239,119,3.045,120,3.996,121,1.506,122,2.411,123,2.459,124,2.883,125,5.11,126,2.91,127,3.848,128,3.239,129,3.996,130,2.81,131,0.977,132,2.036,133,1.961,134,5.11,135,3.793,136,3.793,137,3.623,138,2.563,139,2.961,140,3.478,141,5.11,142,2.411,143,5.11,144,0.858,145,2.161,146,5.11,147,3.623,148,1.607,149,1.744,150,1.251,151,5.11,152,2.563,153,1.744,154,1.124,155,3.351,156,1.282,157,1.251,158,0.647,159,2.144,160,2.238,161,5.11,162,3.239,163,3.351,164,5.11,165,1.048,166,3.478,167,2.024,168,1.179,169,5.11,170,5.11]],["tags/Ending your day with happy thoughts",[171,3.836,172,1.543]],["title/On finding your inner zen in big cities",[103,1.202,173,3.119,174,2.994,175,1.217,176,2.482]],["content/On finding your inner zen in big cities",[1,1.302,10,0.557,14,0.84,17,0.684,19,0.385,20,1.368,24,0.968,25,1.352,26,0.85,27,0.633,28,0.881,29,1.941,30,2.042,41,2.593,42,2.124,46,2.023,52,0.624,55,1.814,67,2.402,74,1.262,77,2.403,79,0.577,85,1.577,86,1.788,89,1.842,98,1.523,100,2.481,101,0.431,103,1.352,104,1.126,107,2.947,109,1.696,113,0.979,117,5.144,123,2.38,131,0.945,144,0.83,148,2.467,154,1.505,158,0.626,165,1.608,167,1.959,168,1.141,173,3.507,174,3.367,175,2.458,176,5.565,177,4.945,178,4.945,179,1.464,180,2.091,181,3.244,182,1.141,183,3.367,184,1.665,185,1.403,186,3.507,187,3.244,188,3.299,189,2.79,190,4.851,191,4.2,192,3.671,193,3.852,194,3.671,195,4.945,196,1.458,197,2.79,198,3.671,199,1.598,200,1.99,201,2.947,202,3.367,203,1.488,204,6.524,205,4.114,206,3.367,207,3.868,208,2.205,209,2.79,210,2.289,211,2.368,212,3.244,213,2.535,214,3.367,215,3.507,216,0.861,217,1.636,218,3.671,219,1.62,220,3.507,221,3.507,222,3.868,223,1.597,224,3.507,225,3.244,226,4.945,227,4.945,228,4.114,229,4.945,230,2.333,231,2.947,232,3.671,233,2.166,234,2.38,235,4.2,236,4.945,237,4.487,238,4.945,239,6.841,240,1.026,241,2.092,242,1.814,243,3.507,244,3.671,245,3.671,246,2.947,247,3.868,248,2.865,249,3.367,250,4.945,251,1.762,252,2.057,253,2.894,254,3.507,255,2.654,256,4.444,257,3.037,258,3.05,259,3.868,260,4.945,261,3.507,262,5.35,263,1.457,264,2.205,265,3.507,266,3.497,267,4.945,268,4.444,269,5.078,270,3.244,271,2.835,272,3.507,273,4.657,274,3.868,275,0.979,276,1.226,277,1.335,278,1.287,279,2.944,280,3.507,281,5.691,282,1.577,283,4.945,284,4.945,285,3.135,286,3.868,287,2.79,288,1.141,289,2.865,290,4.444,291,1.959,292,3.671,293,1.608,294,1.842,295,2.535,296,4.851,297,2.096,298,6.841,299,4.945,300,4.945,301,4.945,302,4.114,303,3.671,304,2.166,305,4.945,306,4.945,307,2.865,308,3.135,309,2.303,310,3.671,311,1.515,312,1.515,313,6.841,314,2.947,315,0.991,316,2.593,317,1.665,318,2.166,319,4.945,320,1.368,321,1.788,322,2.947,323,3.671,324,2.947,325,4.945,326,2.429,327,4.114,328,4.444,329,4.945,330,2.166,331,4.444,332,3.244,333,4.945,334,4.945,335,4.444]],["tags/On finding your inner zen in big cities",[21,1.033,174,2.325,336,2.671]],["title/No, vegetarians do not eat fish!",[257,3.35,337,4.267,338,4.05]],["content/No, vegetarians do not eat fish!",[3,1.485,7,1.939,9,3.528,10,0.56,13,2.161,18,1.629,19,0.457,20,2.347,22,0.951,24,1.54,26,0.855,28,1.224,39,2.179,51,2.218,52,0.454,53,2.882,60,1.566,70,1.607,73,0.778,74,1.566,75,0.974,77,2.105,79,0.468,83,2.25,87,1.752,91,1.772,93,6.608,94,1.623,98,1.529,104,0.714,113,0.985,117,5.564,120,3.89,133,1.91,150,1.218,157,1.218,158,1.075,159,1.524,160,2.179,167,1.97,168,1.148,179,1.469,182,1.148,188,1.939,196,1.466,209,2.806,211,2.378,219,1.629,257,5.652,258,2.218,269,3.692,273,3.386,275,0.985,277,2.123,278,1.294,281,7.406,286,3.89,291,1.97,293,1.02,297,1.524,317,1.675,318,2.179,337,7.802,338,5.098,339,4.975,340,4.975,341,4.975,342,4.47,343,4.47,344,4.47,345,4.975,346,4.975,347,2.965,348,4.975,349,6.172,350,3.386,351,5.714,352,4.975,353,6.172,354,4.975,355,4.975,356,4.975,357,5.579,358,4.138,359,2.882,360,6.172,361,2.378,362,4.138,363,2.736,364,4.47,365,1.881,366,2.55,367,2.596,368,2.161,369,3.054,370,3.98,371,4.975,372,2.035,373,4.47,374,3.692,375,1.1,376,3.153,377,4.47,378,1.889,379,4.975,380,4.975,381,4.975,382,4.975,383,4.975,384,1.121,385,4.975,386,4.975,387,4.138,388,1.607,389,2.965,390,4.975,391,4.47,392,2.394,393,4.138,394,3.692,395,2.394,396,3.153,397,3.528,398,3.054,399,3.98,400,3.263,401,6.172,402,3.528,403,2.218,404,1.108,405,3.054,406,4.975,407,2.104,408,2.806,409,1.394,410,4.975,411,4.47,412,1.485,413,2.444,414,7.07,415,4.83,416,2.179,417,4.47,418,1.698,419,4.975,420,4.47,421,4.47,422,1.772,423,4.138,424,4.975,425,4.47,426,2.67,427,4.975,428,2.806,429,6.172,430,1.448,431,2.736,432,5.714,433,3.528,434,4.975,435,2.141,436,3.153,437,1.939,438,2.965,439,4.975,440,4.975,441,1.548,442,2.302,443,1.466,444,1.772,445,3.528,446,2.347,447,4.975,448,6.172,449,4.975,450,2.259,451,3.89,452,1.798,453,4.975,454,4.975,455,1.698,456,4.975,457,1.394,458,4.975,459,2.394,460,2.347,461,4.975,462,4.975,463,4.975,464,3.528,465,1.881,466,4.138,467,2.965,468,3.89,469,2.806,470,4.975]],["tags/No, vegetarians do not eat fish!",[]],["title/undefined",[]],["content/undefined",[13,1.339,19,0.491,37,4.464,47,1.339,52,0.388,73,0.665,99,1.208,101,0.371,109,1.055,116,0.994,129,3.329,131,1.176,144,0.715,182,0.982,220,2.182,223,0.994,273,2.897,288,0.982,315,0.853,413,4.124,471,2.232,472,1.659,474,3.825,477,2.559,478,1.659,479,2.698,480,3.329,481,2.284,482,2.466,483,3.018,484,1.77,485,3.825,486,2.341,487,1.433,489,3.329,493,2.466,495,4.464,497,2.613,498,5.671,504,2.613,505,3.159,506,4.352,510,2.613,511,4.435,516,4.188,517,1.482,522,5.718,524,2.792,527,3.973,528,2.897,532,4.035,533,2.897,535,3.018,536,4.738,537,2.613,540,4.188,543,4.256,546,2.903,555,7.224,593,2.341,596,1.495,600,2.897,601,2.792,602,2.536,606,2.743,613,3.018,614,3.302,631,2.341,634,2.613,680,2.613,711,2.182,722,1.634,731,4.256,738,3.541,742,5.118,744,4.579,750,4.035,760,2.613,774,2.536,777,4.256,827,2.341,851,1.394,895,4.256,951,1.042,970,2.613,1083,4.256,1118,3.825,1172,2.466,1180,4.256,1194,4.188,1209,4.256,1230,3.541,1272,2.341,1273,4.256,1340,2.698,1364,2.792,1365,8.107,1366,3.877,1367,6.151,1368,3.541,1369,1.163,1370,4.188,1371,4.256,1372,4.256,1373,4.256,1374,3.541,1375,4.256,1376,5.118,1377,4.256,1378,6.151,1379,4.256,1380,5.123,1381,3.825,1382,2.602,1383,4.256,1384,4.256,1385,4.256,1386,6.584,1387,3.541,1388,4.256,1389,4.256,1390,4.256,1391,4.256,1392,2.897,1393,4.961,1394,3.018,1395,4.256,1396,6.856,1397,6.696,1398,3.974,1399,1.686,1400,4.256,1401,2.743,1402,3.159,1403,1.832,1404,7.224,1405,3.018,1406,4.256,1407,3.541,1408,4.256,1409,2.698,1410,4.256,1411,4.256,1412,3.541,1413,3.159,1414,6.151,1415,1.495,1416,4.256,1417,3.159,1418,3.825,1419,4.256,1420,1.585,1421,2.792,1422,1.686,1423,4.256,1424,4.256,1425,1.97,1426,2.506,1427,7.224,1428,3.825,1429,3.541,1430,2.091,1431,2.341,1432,4.256,1433,4.256,1434,4.256,1435,4.256,1436,4.256,1437,3.825,1438,4.256,1439,4.716,1440,4.256,1441,4.256,1442,3.159,1443,6.151,1444,3.825,1445,4.256,1446,4.256,1447,4.256,1448,3.329,1449,4.256,1450,4.256,1451,2.232,1452,7.914,1453,6.151,1454,4.256,1455,3.825,1456,3.541,1457,3.329,1458,3.825,1459,4.256,1460,4.256,1461,4.256,1462,2.466,1463,2.698,1464,6.151,1465,3.973,1466,4.256,1467,4.256,1468,4.256,1469,4.256,1470,3.302,1471,2.792,1472,5.528,1473,3.159,1474,4.256,1475,6.492,1476,2.613,1477,2.135,1478,4.256,1479,3.541,1480,3.329,1481,2.536,1482,4.256,1483,3.329,1484,4.256,1485,3.018,1486,3.541,1487,1.832,1488,1.686,1489,4.256,1490,3.159,1491,4.256,1492,4.256]],["tags/undefined",[]],["title/Learning to become a baker",[21,1.65,903,2.232,904,3.714]],["content/Learning to become a baker",[1,1.301,6,1.057,7,2.664,10,0.77,11,2.014,17,0.683,18,1.618,19,0.448,22,0.944,24,1.337,26,1.175,27,0.457,29,1.401,30,1.474,40,2.426,50,0.602,52,0.771,60,1.126,67,2.4,74,1.561,77,2.094,79,0.466,87,1.1,89,1.839,93,3.666,101,0.596,104,0.709,109,1.224,113,0.978,116,1.153,120,3.862,130,2.716,138,2.477,139,4.541,145,2.891,150,1.674,154,1.087,156,1.239,157,1.209,158,1.071,185,1.401,190,3.502,193,2.426,200,1.988,203,1.486,208,2.202,219,1.618,223,1.153,242,2.507,249,5.757,251,1.759,257,4.812,264,2.202,276,1.224,277,2.115,278,1.285,281,4.108,290,4.438,291,1.956,295,2.532,303,3.666,320,1.366,351,5.685,364,4.438,372,2.02,375,1.094,378,1.1,403,2.202,408,4.421,409,1.384,418,2.887,433,3.502,438,2.943,441,1.113,444,1.759,457,1.384,517,1.013,621,2.223,629,3.362,705,1.759,724,1.533,801,3.13,877,1.437,904,3.362,905,4.108,906,3.13,907,4.938,908,1.839,909,4.144,910,2.716,911,2.861,912,0.791,913,2.477,914,4.938,915,5.526,916,4.938,917,4.938,918,3.362,919,1.71,920,2.125,921,0.869,922,4.108,923,4.438,924,2.532,925,4.938,926,2.532,927,4.108,928,4.438,929,1.456,930,4.482,931,6.519,932,2.02,933,4.438,934,2.125,935,4.108,936,3.666,937,2.786,938,3.032,939,3.502,940,3.239,941,3.362,942,2.651,943,7.035,944,3.862,945,2.089,946,2.943,947,2.786,948,2.377,949,2.532,950,3.289,951,1.209,952,3.502,953,5.685,954,3.362,955,5.685,956,4.846,957,2.861,958,2.651,959,4.938,960,3.362,961,4.938,962,6.141,963,4.438,964,2.202,965,5.685,966,5.072,967,4.438,968,3.666,969,3.666,970,3.032,971,4.438,972,4.938,973,5.335,974,4.938,975,6.834,976,2.943,977,6.141,978,1.759,979,4.938,980,4.438,981,4.938,982,2.477,983,3.163,984,4.938,985,1.366,986,2.786,987,2.589,988,4.438,989,3.032,990,4.438,991,4.938,992,6.141,993,2.426,994,2.243,995,2.589,996,3.362,997,3.862,998,2.532,999,4.108,1000,3.502,1001,4.938,1002,2.943,1003,2.589,1004,4.938,1005,4.938,1006,4.438,1007,4.108,1008,1.896,1009,3.13,1010,4.108,1011,1.759,1012,5.345,1013,5.072,1014,4.938,1015,4.938,1016,4.938]],["tags/Learning to become a baker",[21,0.861,336,2.226,909,1.184,915,1.566]],["title/Unit Testing Stored Procedures",[1192,2.298,1193,1.761,1276,1.814,1277,3.316]],["content/Unit Testing Stored Procedures",[0,1.065,3,1.514,5,1.592,19,0.361,22,0.969,23,2.895,24,0.992,28,1.24,37,5.528,48,1.807,50,0.618,51,2.261,52,0.865,55,1.86,67,1.781,74,0.936,75,1.754,76,1.319,77,2.133,79,0.346,80,2.789,87,1.55,88,2.075,94,1.198,98,1.55,99,2.255,102,2.6,109,1.257,131,1.331,133,1.947,149,1.731,154,1.116,158,0.642,165,1.427,211,1.756,217,1.664,223,1.184,240,1.649,242,2.553,277,1.369,294,1.888,322,3.022,367,1.917,375,0.812,475,2.261,476,2.367,492,2.6,517,1.427,542,2.938,562,4.557,621,2.627,628,2.145,630,1.926,646,3.452,649,2.6,705,1.807,724,1.574,757,2.393,782,0.925,796,4.219,797,2.183,851,1.661,906,3.214,919,1.756,921,0.893,951,1.242,993,3.419,1069,1.495,1182,4.557,1190,3.966,1191,3.114,1192,4.036,1193,3.715,1194,3.452,1237,1.977,1256,3.927,1276,3.448,1277,6.575,1278,1.639,1279,1.461,1280,5.071,1281,3.596,1282,3.764,1283,0.9,1284,5.071,1285,5.071,1286,2.659,1287,3.764,1288,3.596,1289,0.862,1290,3.649,1291,1.811,1292,2.009,1293,3.326,1294,3.764,1295,3.022,1296,1.116,1297,3.828,1298,3.221,1299,2.938,1300,2.303,1301,3.828,1302,3.114,1303,2.544,1304,3.326,1305,5.071,1306,4.412,1307,3.419,1308,5.071,1309,3.326,1310,3.966,1311,5.071,1312,2.347,1313,7.01,1314,4.219,1315,2.075,1316,5.071,1317,1.833,1318,5.071,1319,2.075,1320,3.114,1321,3.326,1322,3.764,1323,5.071,1324,4.557,1325,4.033,1326,3.596,1327,2.5,1328,4.557,1329,5.071,1330,4.557,1331,2.393,1332,2.303,1333,2.041,1334,2.221,1335,1.888,1336,7.141,1337,2.6,1338,9.483,1339,1.574,1340,3.214,1341,4.557,1342,6.255,1343,6.96,1344,4.557,1345,3.764,1346,2.161,1347,5.071,1348,2.145,1349,5.071,1350,5.071,1351,5.071,1352,2.441,1353,6.255,1354,2.544,1355,6.96,1356,5.071,1357,4.557,1358,6.96,1359,5.071,1360,5.071,1361,5.071,1362,5.071]],["tags/Unit Testing Stored Procedures",[1313,3.339,1363,2.8]],["title/Visual Studio 2012 for Eclipse users",[911,2.549,1403,1.893,1493,2.621,1494,3.265,1495,3.659]],["content/Visual Studio 2012 for Eclipse users",[5,1.329,14,1.411,19,0.497,23,1.968,28,0.843,50,0.577,52,0.605,60,1.512,79,0.323,89,1.762,92,2.669,103,1.293,116,1.105,126,2.759,150,1.159,152,3.328,165,0.97,182,1.092,201,2.82,208,2.11,246,2.82,252,1.968,278,1.231,285,2.999,288,1.092,297,1.45,311,1.45,312,1.45,317,1.593,318,2.072,326,2.324,378,1.054,384,1.066,416,2.072,430,1.377,435,2.036,476,1.835,569,2.905,579,2.714,596,3.268,621,1.342,631,3.648,648,3.221,667,2.54,724,2.059,754,4.321,827,2.602,860,3.221,897,1.45,1020,1.71,1079,3.7,1131,3.953,1193,1.71,1229,1.762,1270,4.351,1291,1.726,1301,3.648,1317,1.71,1326,3.355,1333,2.67,1382,3.512,1392,3.221,1420,1.762,1465,2.602,1480,3.7,1487,2.036,1493,2.82,1494,3.512,1495,6.372,1496,3.221,1497,2.905,1498,6.836,1499,3.355,1500,4.731,1501,1.615,1502,2.741,1503,3.221,1504,2.82,1505,2.481,1506,3.56,1507,5.961,1508,2.905,1509,3.7,1510,6.633,1511,2.481,1512,2.324,1513,4.731,1514,3.221,1515,6.633,1516,4.731,1517,2.374,1518,4.731,1519,3.103,1520,5.518,1521,4.731,1522,3.355,1523,4.683,1524,4.731,1525,4.731,1526,4.731,1527,4.731,1528,6.633,1529,4.731,1530,4.731,1531,4.731,1532,4.731,1533,2.19,1534,2.277,1535,4.731,1536,4.731,1537,1.936,1538,4.731,1539,4.731,1540,4.731,1541,1.508,1542,3.221,1543,4.731,1544,4.731,1545,4.731,1546,4.731,1547,3.936,1548,2.999,1549,4.731,1550,4.731,1551,4.731,1552,2.426,1553,4.731,1554,4.731,1555,2.669,1556,4.731,1557,1.662,1558,4.731,1559,4.731,1560,4.731,1561,8.301,1562,4.731,1563,4.731,1564,3.355,1565,3.7,1566,4.731,1567,3.512,1568,3.221,1569,4.731,1570,4.731,1571,4.731,1572,4.731,1573,6.633,1574,4.252,1575,4.731,1576,4.731,1577,2.149,1578,2.602,1579,6.633,1580,5.518,1581,6.633,1582,3.518,1583,1.489,1584,2.741,1585,3.7,1586,1.469,1587,4.731,1588,4.731,1589,2.19,1590,2.669,1591,4.731,1592,2.602,1593,4.731,1594,2.741,1595,4.731]],["tags/Visual Studio 2012 for Eclipse users",[1495,3.551,1596,4.269]],["title/Enhancing the builder pattern with closures",[726,4.052,1597,3.615,1598,4.052,1599,2.497]],["content/Enhancing the builder pattern with closures",[0,1.043,3,1.483,5,1.782,6,0.67,17,0.687,19,0.489,20,1.899,27,0.635,28,0.885,52,0.811,61,4.428,73,0.776,74,0.917,79,0.468,83,1.627,102,2.547,104,0.985,111,5.093,113,0.984,126,3.269,137,3.522,142,3.238,150,1.216,165,1.407,168,1.146,182,1.146,185,1.947,220,3.518,240,1.031,263,0.815,275,0.984,282,1.584,318,3.005,321,1.796,361,1.72,366,2.547,378,1.106,384,1.119,403,3.06,437,1.937,446,2.344,472,1.937,475,3.968,478,2.675,483,3.522,490,2.605,566,4.431,569,3.05,579,2.807,580,4.365,621,1.947,631,2.732,703,3.885,722,1.907,725,2.802,782,1.434,794,4.349,806,4.72,810,5.351,854,2.256,881,2.138,897,2.989,985,1.899,1021,3.885,1068,3.381,1079,3.885,1096,2.732,1127,4.464,1161,3.005,1279,1.441,1283,0.523,1295,4.089,1300,2.256,1331,2.344,1336,4.464,1344,4.464,1346,1.542,1403,3.649,1431,2.732,1541,1.584,1592,2.732,1597,3.687,1598,7.995,1599,2.547,1600,2.299,1601,6.861,1602,4.967,1603,4.464,1604,4.967,1605,4.967,1606,2.547,1607,4.967,1608,2.215,1609,3.05,1610,4.464,1611,2.256,1612,3.442,1613,2.492,1614,2.032,1615,2.878,1616,4.464,1617,2.066,1618,9.874,1619,4.717,1620,6.861,1621,6.861,1622,8.478,1623,2.854,1624,6.861,1625,6.861,1626,6.861,1627,6.861,1628,6.861,1629,6.861,1630,4.967,1631,1.878,1632,4.967,1633,2.215,1634,3.164,1635,3.885,1636,4.464,1637,4.967,1638,4.967,1639,4.967,1640,4.967,1641,4.967,1642,4.967,1643,4.967,1644,4.967,1645,2.492,1646,3.258,1647,3.149,1648,1.584]],["tags/Enhancing the builder pattern with closures",[475,0.952,649,1.095,703,1.67,726,1.776,1649,1.514,1650,1.919]],["title/Integration Testing with SQLite",[1193,1.972,1651,3.35,1652,4.267]],["content/Integration Testing with SQLite",[2,2.755,5,1.406,6,0.693,10,0.578,17,1.106,19,0.476,22,1.342,26,0.883,27,0.649,37,3.959,39,2.248,46,2.1,47,1.615,50,0.975,52,0.784,61,3.378,79,0.479,89,1.911,91,1.829,94,1.213,97,2.422,104,1.148,114,2.896,122,2.422,152,2.575,154,1.13,179,1.31,216,0.893,217,1.227,223,1.198,240,1.065,242,1.883,270,3.367,278,1.335,293,1.053,309,2.894,311,1.573,312,1.573,321,1.855,375,0.822,378,1.143,384,1.157,388,1.659,441,1.157,455,1.752,457,1.438,472,2.001,476,2.379,482,2.974,492,2.631,549,3.767,550,4.27,554,4.613,566,2.331,580,2.331,596,1.803,621,1.991,647,3.494,710,4.014,754,2.896,768,3.253,794,5.069,806,2.521,810,5.444,912,0.822,978,1.829,983,2.376,985,1.42,1060,3.253,1065,4.014,1069,1.513,1131,3.059,1190,4.014,1193,2.891,1216,2.631,1237,2.001,1260,1.513,1274,1.552,1276,2.978,1277,3.494,1279,1.078,1283,0.738,1303,2.575,1317,2.537,1319,2.1,1325,4.066,1346,2.483,1366,2.755,1393,2.823,1401,4.381,1415,1.803,1420,1.911,1477,3.52,1512,2.521,1519,3.367,1523,2.896,1582,2.824,1583,2.208,1609,5.278,1619,2.631,1648,2.55,1651,3.152,1652,6.254,1653,7.151,1654,4.613,1655,2.1,1656,3.64,1657,2.15,1658,2.575,1659,2.171,1660,2.974,1661,3.64,1662,2.422,1663,1.615,1664,5.133,1665,4.613,1666,2.209,1667,5.133,1668,3.494,1669,5.488,1670,4.014,1671,2.135,1672,6.653,1673,7.018,1674,5.133,1675,2.376,1676,3.152,1677,2.376,1678,2.919,1679,5.133,1680,2.47,1681,3.152,1682,4.613,1683,3.81,1684,5.133,1685,5.133,1686,4.613,1687,1.053,1688,3.152,1689,6.307,1690,4.27,1691,3.152,1692,7.997,1693,7.018,1694,5.133,1695,5.133,1696,4.014,1697,5.133,1698,4.014,1699,5.133,1700,5.133,1701,4.27,1702,5.133,1703,7.018,1704,5.133,1705,5.133,1706,5.133,1707,5.133,1708,5.133,1709,5.133,1710,2.376,1711,2.1,1712,5.133,1713,4.613,1714,3.152,1715,2.331,1716,3.81,1717,5.133,1718,2.755,1719,2.376,1720,2.896,1721,1.04,1722,5.133,1723,4.613,1724,4.27]],["tags/Integration Testing with SQLite",[1313,2.226,1363,1.867,1649,2.019,1652,2.226]],["title/Archive by year: 2013",[6,0.736,477,2.269,483,3.869]],["content/Archive by year: 2013",[19,0.436,477,3.513,483,5.99]],["tags/Archive by year: 2013",[]],["title/Metaprogramming instead of duplication",[404,1.215,729,4.267,1519,3.579]],["content/Metaprogramming instead of duplication",[5,1.162,11,1.71,19,0.477,26,0.997,27,0.537,28,1.357,50,0.707,52,0.776,55,2.128,73,0.907,77,2.334,81,1.926,86,2.097,98,1.292,113,1.149,116,1.354,144,0.974,148,1.825,159,1.777,165,1.19,216,1.009,219,1.9,315,1.162,320,1.605,384,1.307,412,1.732,443,2.245,472,2.261,475,2.587,478,2.261,501,3.805,566,2.635,579,3.695,580,4.102,631,3.19,632,4.678,722,2.227,729,5.957,757,3.594,806,2.849,897,1.777,1096,4.678,1161,2.541,1192,2.737,1193,3.265,1237,3.316,1260,1.71,1278,1.874,1283,0.895,1290,3.041,1300,2.635,1335,2.16,1337,2.974,1519,3.805,1583,1.825,1592,3.19,1599,3.905,1609,3.562,1619,4.936,1631,2.88,1633,2.587,1636,5.213,1647,3.677,1648,1.849,1688,4.677,1698,5.957,1725,2.067,1726,5.8,1727,5.8,1728,7.617,1729,5.8,1730,5.8,1731,5.8,1732,5.8,1733,5.8,1734,5.8,1735,5.8,1736,5.8,1737,3.805,1738,8.505,1739,9.204,1740,3.949,1741,2.737,1742,2.685,1743,4.826,1744,2.792,1745,4.826,1746,4.089,1747,5.8,1748,7.617,1749,5.654,1750,4.536,1751,5.8,1752,5.8,1753,4.306,1754,3.805,1755,3.19,1756,5.8,1757,5.8,1758,5.8,1759,4.113,1760,5.8,1761,7.617,1762,5.8,1763,2.413,1764,1.277,1765,3.949,1766,5.8,1767,5.8,1768,5.8,1769,5.8,1770,5.8,1771,4.826,1772,5.8,1773,5.8,1774,5.8,1775,5.213,1776,3.562,1777,2.454,1778,2.373,1779,5.213,1780,5.8]],["tags/Metaprogramming instead of duplication",[475,0.952,729,1.67,1363,1.401,1649,1.514,1739,1.919,1776,1.311]],["title/Bye autotools hello Scons",[1130,3.454,1781,4.871,1782,4.377,1783,4.377]],["content/Bye autotools hello Scons",[1,1.354,14,0.874,17,0.711,19,0.485,26,0.884,27,0.476,50,0.627,52,0.469,60,1.172,74,0.949,75,1.375,77,1.575,79,0.479,87,1.145,104,0.738,132,2.329,144,1.18,149,1.755,156,1.29,165,1.054,168,1.186,200,2.069,219,1.684,222,4.02,240,1.067,242,1.886,271,2.54,278,1.337,291,2.036,293,1.054,321,2.54,365,1.943,372,2.103,375,1.125,384,1.583,399,2.979,409,1.44,412,1.535,472,3.511,490,2.695,518,2.426,547,3.258,596,2.811,623,2.827,896,2.979,921,1.237,932,2.103,950,2.474,985,1.422,1020,2.54,1193,3.44,1282,3.816,1283,0.739,1289,0.874,1291,1.337,1296,1.131,1317,1.858,1330,4.62,1369,1.405,1370,3.499,1392,3.499,1415,1.805,1418,4.62,1473,3.816,1488,2.782,1577,2.335,1594,2.979,1623,2.694,1663,1.617,1678,2.138,1687,1.054,1696,5.494,1778,2.103,1782,4.62,1783,6.313,1784,3.771,1785,1.617,1786,5.141,1787,3.864,1788,3.499,1789,3.258,1790,2.979,1791,2.827,1792,4.277,1793,6.727,1794,2.069,1795,1.805,1796,2.212,1797,5.141,1798,5.141,1799,2.9,1800,4.62,1801,5.141,1802,5.141,1803,2.9,1804,4.62,1805,5.141,1806,2.759,1807,3.156,1808,5.141,1809,3.645,1810,4.608,1811,2.474,1812,5.141,1813,5.141,1814,5.141,1815,9.297,1816,5.141,1817,5.141,1818,9.297,1819,3.816,1820,3.816,1821,5.141,1822,5.141,1823,7.025,1824,8.602,1825,5.141,1826,5.141,1827,2.979,1828,4.62,1829,7.025,1830,8.602,1831,5.494,1832,8.003,1833,5.141,1834,5.141,1835,7.192,1836,8.003,1837,9.006,1838,7.025,1839,5.141,1840,5.141,1841,7.025,1842,5.141,1843,7.025,1844,7.025,1845,8.003,1846,7.025,1847,7.025,1848,7.025,1849,7.025,1850,4.62,1851,4.62,1852,2.827,1853,5.141,1854,3.372,1855,5.141,1856,4.62,1857,4.02,1858,2.175,1859,4.02,1860,3.064,1861,5.141,1862,5.141,1863,6.313,1864,5.141,1865,5.141,1866,3.499]],["tags/Bye autotools hello Scons",[472,1.332,704,2.422,1867,3.416]],["title/Custom Webdriver Page Factories",[96,1.761,1662,2.298,1868,3.316,1869,4.377]],["content/Custom Webdriver Page Factories",[10,0.828,19,0.487,30,1.642,52,0.806,61,3.987,77,1.685,79,0.501,83,1.801,96,3.332,98,1.225,102,2.819,103,1.503,126,2.287,179,1.027,199,1.777,279,2.367,378,1.225,384,1.239,403,3.694,404,1.225,409,1.541,422,1.959,436,3.486,446,2.595,455,1.877,459,2.647,472,2.144,475,2.452,478,2.144,516,3.744,566,3.762,571,4.661,579,3.389,580,2.498,621,2.615,711,2.819,746,4.575,806,2.701,810,3.744,817,7.947,897,2.253,1029,4.515,1096,5.069,1283,0.579,1289,0.935,1291,1.431,1296,1.21,1300,2.498,1332,2.498,1506,2.952,1612,4.155,1619,4.965,1657,1.685,1661,5.874,1662,2.595,1698,4.301,1749,4.082,1776,3.377,1787,3.024,1868,5.005,1869,6.608,1870,5.499,1871,5.499,1872,2.498,1873,7.353,1874,5.499,1875,5.499,1876,2.452,1877,5.005,1878,3.277,1879,2.819,1880,5.499,1881,2.287,1882,8.843,1883,8.843,1884,7.353,1885,4.26,1886,7.353,1887,8.843,1888,8.843,1889,4.382,1890,5.499,1891,5.499,1892,3.744,1893,5.499,1894,5.499,1895,5.75,1896,4.575,1897,4.575,1898,3.186,1899,5.499,1900,5.499,1901,3.607,1902,5.005,1903,2.819,1904,4.575,1905,7.353,1906,8.283,1907,4.661,1908,5.499,1909,5.499,1910,5.499,1911,5.499,1912,5.005,1913,5.499,1914,5.499,1915,5.499,1916,5.499,1917,5.499,1918,8.283,1919,5.499,1920,5.499,1921,5.499,1922,7.353,1923,5.499,1924,5.499,1925,5.499,1926,5.499,1927,5.499]],["tags/Custom Webdriver Page Factories",[475,1.088,1363,1.601,1649,1.73,1868,1.661,1928,2.193]],["title/Faking domain logic",[1611,2.478,1929,4.267,1930,3.001]],["content/Faking domain logic",[1,1.354,10,0.791,14,0.874,19,0.486,22,0.983,25,1.405,26,0.884,47,1.617,52,0.73,59,1.617,61,3.852,62,2.525,67,1.805,73,0.804,75,1.375,76,1.337,87,1.145,89,2.616,101,0.698,102,2.635,103,1.405,104,0.738,126,3.329,144,1.444,154,1.546,167,2.036,179,0.96,188,2.004,211,1.78,240,1.458,277,1.388,279,2.212,286,4.02,315,1.03,324,5.126,375,0.823,378,1.145,412,1.535,416,2.252,418,1.755,455,1.755,469,2.9,550,4.277,579,3.893,580,4.401,674,3.816,722,2.697,782,1.281,794,5.452,797,2.212,799,3.064,854,3.191,897,2.76,919,1.78,921,0.905,978,1.831,1062,2.069,1096,3.864,1193,1.858,1256,2.9,1278,1.661,1281,3.645,1283,0.948,1289,0.874,1291,1.337,1300,4.09,1301,2.827,1321,5.249,1326,5.675,1327,1.617,1346,1.596,1399,2.782,1402,3.816,1422,2.036,1426,2.389,1506,2.759,1514,3.499,1519,3.372,1520,4.277,1541,1.639,1608,2.292,1611,3.907,1612,3.524,1623,1.731,1648,1.639,1657,1.575,1662,2.426,1677,2.379,1687,1.054,1688,3.156,1691,4.313,1719,2.379,1721,1.424,1764,1.546,1777,2.175,1787,2.827,1811,2.474,1876,3.569,1930,4.401,1931,2.103,1932,4.187,1933,2.759,1934,4.62,1935,4.02,1936,4.277,1937,5.494,1938,2.579,1939,3.963,1940,8.093,1941,2.827,1942,4.62,1943,5.141,1944,3.816,1945,1.661,1946,2.9,1947,4.103,1948,3.372,1949,3.064,1950,1.943,1951,4.02,1952,2.474,1953,3.372,1954,5.141,1955,5.141,1956,5.141,1957,3.816,1958,4.782,1959,9.006,1960,5.141,1961,5.141,1962,1.886,1963,5.141,1964,3.258,1965,1.755,1966,5.141,1967,5.141,1968,4.62,1969,0.884,1970,5.141,1971,2.979,1972,2.635,1973,3.064,1974,2.827,1975,3.499,1976,2.474,1977,3.156,1978,5.141,1979,3.816]],["tags/Faking domain logic",[1649,2.422,1980,2.842,1981,3.416]],["title/.NET Memory management VS JVM Memory management",[492,1.889,549,2.969,720,2.508,1260,1.63,1982,2.735]],["content/.NET Memory management VS JVM Memory management",[10,0.68,19,0.274,26,1.038,47,2.46,50,0.953,52,0.713,55,2.215,67,2.121,74,1.114,75,1.182,79,0.412,87,1.741,98,1.345,101,0.526,103,2.137,104,0.867,109,1.497,113,1.196,182,1.393,217,1.444,223,1.41,233,2.645,240,1.253,242,2.215,263,1.282,275,1.196,292,4.482,293,1.238,388,1.951,416,2.645,465,2.283,473,3.689,475,2.693,492,4.99,549,5.224,627,2.248,844,5.545,845,5.323,951,1.479,1008,2.318,1020,2.183,1029,3.707,1045,3.166,1079,4.722,1146,1.978,1256,3.406,1260,2.556,1291,2.034,1296,1.329,1306,3.827,1315,2.47,1321,3.961,1352,2.906,1398,2.743,1426,2.589,1506,3.241,1648,1.925,1807,3.707,1879,3.096,1982,4.482,1983,1.978,1984,3.707,1985,4.3,1986,2.795,1987,7.819,1988,6.038,1989,6.038,1990,3.961,1991,5.426,1992,5.426,1993,3.166,1994,4.482,1995,3.321,1996,5.426,1997,5.426,1998,5.023,1999,2.966,2000,6.038,2001,3.961,2002,6.038,2003,4.722,2004,3.406,2005,8.097,2006,2.912,2007,2.92,2008,7.819,2009,8.538,2010,5.168,2011,3.599,2012,4.601,2013,6.038,2014,5.426,2015,3.241,2016,5.426,2017,3.961,2018,5.426,2019,6.038,2020,5.023,2021,5.023,2022,6.038,2023,6.038,2024,4.655,2025,2.645,2026,6.038,2027,8.243,2028,2.248,2029,5.023,2030,3.961,2031,4.66,2032,6.038,2033,6.038,2034,2.554,2035,6.038,2036,6.038]],["tags/.NET Memory management VS JVM Memory management",[492,1.459,1982,2.113,2005,2.368,2037,2.847]],["title/Unit Testing Extjs UI with Siesta",[1192,2.076,1193,1.59,2038,3.119,2039,3.265,2040,3.659]],["content/Unit Testing Extjs UI with Siesta",[10,0.552,17,0.678,19,0.473,20,1.357,26,0.843,27,0.454,28,0.873,50,0.598,52,0.907,61,2.36,74,0.905,75,1.528,79,0.334,83,2.227,85,2.168,87,1.092,89,2.532,90,2.313,96,2.458,98,1.092,101,0.593,103,1.34,132,1.427,145,2.876,149,1.674,154,1.496,157,1.201,158,0.621,165,1.395,179,1.711,185,1.391,200,1.973,216,0.853,219,1.606,223,1.145,270,3.216,276,1.215,279,3.36,282,1.563,304,2.147,307,2.841,318,2.147,321,1.772,372,2.006,384,1.105,403,2.186,409,1.374,413,3.34,435,2.11,445,4.822,450,2.227,455,2.321,459,2.36,465,1.853,471,2.571,476,1.357,571,3.108,596,1.722,621,1.391,623,2.696,628,2.074,649,4.911,700,4.322,782,1.24,806,3.34,810,3.337,827,2.696,897,1.502,908,1.826,926,2.513,951,1.201,1011,1.747,1088,2.696,1192,3.208,1193,3.56,1234,2.513,1239,4.079,1256,4.404,1260,1.445,1274,1.483,1283,0.821,1286,2.571,1289,0.833,1291,1.769,1298,2.269,1333,2.737,1334,2.147,1337,2.513,1346,1.522,1403,2.11,1415,1.722,1420,2.532,1487,2.926,1501,1.674,1534,2.36,1615,2.841,1623,1.651,1658,2.459,1662,2.313,1691,3.01,1763,2.039,1858,2.074,1866,4.629,1868,5.739,1876,2.186,1885,2.841,1897,5.657,1930,2.696,1934,4.406,1953,3.216,1975,3.337,1984,3.01,1985,5.168,1993,3.565,1995,4.637,2015,2.631,2017,3.216,2028,1.826,2031,2.922,2038,6.793,2039,6.573,2040,5.657,2041,5.657,2042,4.079,2043,2.513,2044,3.834,2045,4.46,2046,4.903,2047,3.639,2048,3.337,2049,4.079,2050,4.903,2051,4.46,2052,2.571,2053,2.459,2054,4.406,2055,3.639,2056,4.903,2057,4.079,2058,3.639,2059,2.922,2060,3.477,2061,3.337,2062,2.039,2063,2.693,2064,3.01,2065,3.477,2066,3.834,2067,4.903,2068,4.406,2069,4.406,2070,2.513,2071,3.108,2072,4.903,2073,4.406,2074,4.903,2075,4.903,2076,4.903,2077,2.269,2078,2.766,2079,4.079,2080,3.108,2081,4.406,2082,5.657,2083,4.903,2084,4.903,2085,4.903,2086,2.922,2087,2.571,2088,4.903,2089,4.406,2090,4.903,2091,4.903,2092,3.639,2093,4.903,2094,4.903,2095,4.903,2096,4.903,2097,4.903,2098,4.903,2099,4.903,2100,4.903,2101,4.903,2102,4.903]],["tags/Unit Testing Extjs UI with Siesta",[649,1.459,1363,1.867,2038,2.019,2040,2.368]],["title/Archive by year: 2014",[6,0.736,477,2.269,2103,3.714]],["content/Archive by year: 2014",[19,0.436,477,3.513,2103,5.75]],["tags/Archive by year: 2014",[]],["title/Webdriver Exception Handling",[251,1.944,1868,3.714,2104,3.001]],["content/Webdriver Exception Handling",[5,1.421,10,0.799,17,0.721,19,0.489,22,0.996,26,1.386,52,0.789,75,1.02,77,1.597,79,0.484,83,2.64,91,1.857,104,0.748,126,2.168,152,2.614,154,1.147,168,1.202,199,1.684,210,3.282,223,1.217,251,3.403,263,0.855,309,1.755,315,1.044,372,2.132,375,1.291,376,3.303,378,1.579,384,1.174,422,1.857,455,1.779,457,1.46,459,2.508,476,1.962,478,2.032,566,2.367,579,2.132,580,3.221,596,2.831,621,1.479,627,2.641,739,2.94,782,1.293,794,3.303,806,2.56,810,5.487,840,3.303,897,1.597,970,3.2,978,1.857,983,3.282,1002,3.106,1003,2.733,1020,2.563,1038,4.684,1064,3.548,1193,3.375,1199,4.684,1298,3.282,1300,2.367,1346,1.618,1422,2.064,1477,2.614,1583,2.231,1586,1.618,1612,2.614,1619,2.672,1623,1.755,1634,2.098,1675,2.412,1687,1.069,1698,4.076,1750,4.076,1753,3.868,1763,2.168,1764,1.147,1868,4.827,1877,3.548,1897,4.336,1947,2.672,1948,3.418,1950,1.97,1984,3.2,2041,5.899,2073,4.684,2104,2.866,2105,2.866,2106,5.212,2107,5.936,2108,3.413,2109,2.733,2110,5.212,2111,5.212,2112,4.684,2113,5.212,2114,5.212,2115,2.412,2116,2.324,2117,3.2,2118,4.109,2119,7.091,2120,6.16,2121,7.091,2122,5.212,2123,3.413,2124,7.091,2125,2.508,2126,5.212,2127,3.106,2128,5.212,2129,5.212,2130,4.684,2131,5.212,2132,5.212,2133,5.212,2134,4.076,2135,4.495,2136,5.212,2137,9.552,2138,5.212,2139,2.672,2140,5.212,2141,5.212,2142,7.091,2143,5.212,2144,2.94,2145,5.212,2146,5.212,2147,3.106,2148,5.212,2149,3.052,2150,5.212,2151,5.212,2152,5.212,2153,5.212,2154,5.212,2155,5.212,2156,5.212,2157,7.091,2158,5.212,2159,3.2,2160,5.212,2161,5.212,2162,3.2,2163,4.684,2164,5.212,2165,2.243,2166,5.212,2167,5.212,2168,5.212,2169,5.212,2170,5.212,2171,5.212]],["tags/Webdriver Exception Handling",[1363,1.867,1649,2.019,1868,1.938,1928,2.558]],["title/Archive by year: 2015",[6,0.736,477,2.269,2172,3.579]],["content/Archive by year: 2015",[19,0.436,477,3.513,2172,5.54]],["tags/Archive by year: 2015",[]],["title/Migrating from Extjs to React gradually",[2038,3.454,2173,3.316,2174,4.052,2175,3.316]],["content/Migrating from Extjs to React gradually",[0,1.058,5,1.709,19,0.489,22,0.964,26,0.867,27,0.467,52,0.816,73,0.788,74,0.93,79,0.54,86,1.822,87,1.123,99,1.43,130,2.772,132,1.467,175,1.395,179,0.941,208,2.248,218,3.742,271,1.822,307,4.016,311,1.545,315,1.01,320,1.395,366,2.584,378,1.123,395,2.426,441,1.136,455,2.366,457,1.412,471,2.643,472,1.965,476,1.918,481,2.706,517,1.034,569,3.095,579,2.062,586,2.17,649,2.584,700,4.374,705,1.796,711,2.584,722,1.935,723,2.17,725,2.844,782,0.919,799,3.004,806,3.405,810,4.719,951,1.698,952,3.575,958,2.706,973,3.432,978,1.796,1017,2.643,1029,3.095,1031,2.379,1078,3.095,1193,1.822,1234,2.584,1256,3.91,1260,1.486,1267,2.476,1274,1.525,1283,0.833,1289,0.857,1296,1.109,1299,2.921,1325,2.921,1339,1.565,1346,2.152,1366,2.706,1426,1.505,1444,4.53,1470,2.706,1473,3.742,1477,2.529,1487,2.17,1534,2.426,1557,1.77,1611,2.29,1623,1.697,1648,2.21,1662,3.271,1725,1.796,1755,2.772,1858,2.132,1876,2.248,1877,3.432,1885,2.921,1930,2.772,1933,2.706,1950,1.906,1985,4.919,1993,4.154,2015,3.721,2038,6.343,2039,3.742,2041,4.194,2045,4.547,2048,4.719,2059,3.004,2064,4.864,2082,7.097,2135,4.394,2173,3.432,2174,7.441,2176,3.307,2177,2.772,2178,3.307,2179,5.041,2180,5.041,2181,5.041,2182,3.742,2183,2.29,2184,5.041,2185,5.041,2186,3.004,2187,5.041,2188,5.041,2189,4.53,2190,6.59,2191,7.119,2192,5.041,2193,3.812,2194,5.041,2195,4.194,2196,5.041,2197,5.041,2198,4.194,2199,4.194,2200,3.742,2201,5.041,2202,3.943,2203,4.53,2204,5.041,2205,6.932,2206,5.041,2207,5.041,2208,3.943,2209,5.041,2210,5.041,2211,5.041,2212,5.041,2213,5.041,2214,2.844,2215,5.041,2216,3.742,2217,5.041,2218,5.041,2219,3.575,2220,5.041,2221,5.041,2222,5.041,2223,5.041,2224,5.041,2225,3.575,2226,5.88,2227,5.041,2228,5.041,2229,5.041,2230,3.271,2231,2.772,2232,4.194,2233,5.041,2234,5.041,2235,5.041,2236,5.041,2237,5.421,2238,4.194,2239,5.041,2240,5.041,2241,5.041,2242,5.041,2243,5.041,2244,5.041,2245,5.041,2246,5.041,2247,5.041]],["tags/Migrating from Extjs to React gradually",[649,1.751,2038,2.422,2174,2.842]],["title/Unit testing in Legacy Projects: VB6",[1192,2.076,1193,1.59,1415,1.545,1933,2.361,2248,3.659]],["content/Unit testing in Legacy Projects: VB6",[0,1.451,5,1.384,19,0.387,20,1.389,22,0.959,26,0.863,28,1.231,47,1.579,50,0.612,51,2.238,52,0.63,55,1.841,60,1.144,70,1.622,74,1.275,75,0.982,77,2.118,79,0.581,81,2.295,86,2.498,89,1.869,94,1.867,95,2.368,101,0.437,104,0.721,109,1.244,144,0.843,148,1.579,153,1.713,154,1.104,175,1.389,193,2.465,217,1.2,223,1.172,237,3.292,252,2.087,271,1.814,275,0.994,294,1.869,312,2.422,317,2.327,320,1.389,321,1.814,367,1.897,375,1.106,378,1.118,388,2.554,398,3.082,399,2.908,416,2.198,435,2.16,455,1.713,457,1.406,472,1.957,473,3.729,476,1.389,518,2.368,580,2.279,596,3.241,621,2.242,622,2.518,627,2.573,628,2.123,713,2.908,757,2.368,796,4.175,813,2.76,853,1.538,885,3.623,896,2.908,897,2.952,912,1.106,919,1.738,951,1.692,958,4.242,985,1.912,1011,1.788,1146,1.644,1192,4.214,1193,3.642,1215,3.292,1229,1.869,1236,4.098,1274,1.518,1277,3.416,1279,1.054,1283,0.832,1289,1.343,1291,1.306,1296,1.104,1303,2.518,1317,1.814,1327,1.579,1339,1.558,1348,2.123,1369,1.889,1415,3.585,1481,2.991,1488,1.988,1493,4.118,1501,1.713,1533,2.323,1537,2.053,1586,2.454,1623,1.69,1634,2.02,1645,2.518,1659,2.123,1785,1.579,1787,2.76,1858,2.123,1866,3.416,1932,2.991,1933,2.694,1939,2.831,1940,6.21,1977,3.082,1984,3.082,1985,2.76,1994,3.725,2007,1.69,2009,4.51,2062,2.087,2127,4.118,2190,4.175,2225,4.9,2248,6.575,2249,5.019,2250,5.019,2251,8.515,2252,5.019,2253,5.019,2254,2.198,2255,5.019,2256,3.925,2257,4.51,2258,3.181,2259,3.725,2260,2.991,2261,4.175,2262,4.51,2263,4.51,2264,5.019,2265,6.91,2266,6.91,2267,5.019,2268,5.019,2269,7.903,2270,5.019,2271,5.019,2272,5.019,2273,3.725,2274,5.019,2275,3.416,2276,5.019,2277,6.91,2278,4.51,2279,5.019,2280,4.51,2281,4.51,2282,2.518,2283,5.019,2284,5.019,2285,3.925,2286,6.91,2287,5.019,2288,5.019,2289,1.841,2290,4.51,2291,5.019,2292,4.51,2293,5.019,2294,5.019,2295,3.416,2296,2.908,2297,2.632,2298,2.632,2299,2.831,2300,4.51,2301,2.694]],["tags/Unit testing in Legacy Projects: VB6",[1363,2.8,2248,3.551]],["title/Archive by year: 2016",[6,0.736,477,2.269,918,3.714]],["content/Archive by year: 2016",[19,0.436,477,3.513,918,5.75]],["tags/Archive by year: 2016",[]],["title/Teaching yourself to draw",[242,2.002,2302,2.094,2303,2.737]],["content/Teaching yourself to draw",[1,1.293,6,1.196,10,0.553,11,1.447,14,1.328,18,2.229,19,0.452,20,2.162,21,2.363,22,1.301,24,1.332,26,1.17,28,0.875,29,2.393,37,2.77,47,2.141,50,0.598,52,0.621,65,1.447,73,1.221,74,0.906,75,1.332,77,1.504,79,0.464,88,3.196,90,2.317,92,2.77,96,2.824,111,3.644,118,3.112,132,1.429,144,0.824,148,1.545,149,1.676,150,1.202,156,2.116,159,1.504,168,1.57,172,2.824,185,1.393,196,1.447,200,2.739,203,1.48,208,3.035,210,2.272,211,1.7,216,0.854,242,2.866,252,2.042,263,1.281,273,3.342,277,1.325,282,1.565,293,1.007,294,1.828,311,1.504,312,1.504,315,1.364,317,1.653,324,2.926,350,3.342,375,1.09,384,1.534,409,1.907,418,1.676,422,1.749,455,2.324,457,1.376,459,2.363,469,2.77,473,2.317,476,1.883,481,2.635,484,2.042,501,4.464,628,2.077,711,2.517,715,2.517,724,1.524,782,0.896,851,1.608,897,1.504,920,2.113,922,4.084,929,1.447,945,2.077,976,2.926,978,1.749,985,1.359,993,2.412,1236,2.363,1270,3.22,1274,1.485,1276,1.828,1279,1.031,1283,0.822,1291,1.277,1293,3.22,1296,1.498,1333,1.976,1369,1.86,1394,3.482,1422,1.945,1508,4.179,1541,1.565,1567,3.644,1583,1.545,1586,1.524,1589,2.272,1592,2.7,1600,3.15,1615,2.845,1659,2.879,1663,1.545,1678,2.042,1687,1.602,1721,0.995,1791,2.7,1860,2.926,1872,3.091,1881,2.042,1931,2.008,1936,4.084,1962,1.801,1983,1.608,2006,1.828,2007,1.653,2028,1.828,2071,3.112,2077,2.272,2298,2.574,2302,1.885,2303,4.716,2304,6.806,2305,4.91,2306,4.351,2307,4.91,2308,3.482,2309,4.91,2310,4.056,2311,4.91,2312,4.91,2313,3.644,2314,3.489,2315,3.22,2316,4.91,2317,3.342,2318,1.565,2319,2.7,2320,3.015,2321,4.084,2322,4.91,2323,3.112,2324,3.644,2325,3.84,2326,4.179,2327,4.91,2328,2.635,2329,4.084,2330,4.91,2331,4.084,2332,4.412,2333,2.77,2334,4.412,2335,3.944,2336,4.633,2337,3.22,2338,2.463,2339,3.276,2340,4.91,2341,2.463,2342,6.499,2343,4.91,2344,3.015,2345,3.84,2346,2.517,2347,2.77,2348,2.845,2349,3.22,2350,4.412,2351,4.91,2352,3.84,2353,2.042,2354,6.806,2355,3.644,2356,4.91,2357,3.482,2358,2.845,2359,4.084,2360,2.845,2361,3.22,2362,4.91,2363,4.91,2364,3.644,2365,3.342,2366,4.91,2367,6.117,2368,4.91,2369,4.91,2370,4.91,2371,4.412,2372,4.91,2373,4.91]],["tags/Teaching yourself to draw",[]],["title/Are you handing over enough when inspiring someone?",[82,2.076,116,1.027,320,1.217,1600,2.036,2374,1.861]],["content/Are you handing over enough when inspiring someone?",[0,1.066,1,1.338,10,0.572,11,2.344,17,0.964,18,1.664,21,2.107,24,1.364,25,1.388,26,1.542,28,1.241,29,1.977,42,1.577,48,2.482,50,0.849,52,0.463,60,1.589,69,2.716,70,2.898,74,1.286,75,1.364,79,0.542,82,2.396,87,1.131,89,1.891,96,1.836,99,1.441,101,0.443,103,1.388,104,0.729,116,1.186,131,0.971,144,0.853,145,2.947,150,1.244,156,1.995,167,2.012,168,1.172,179,1.301,180,2.12,196,2.054,199,1.641,216,1.489,217,1.214,263,0.833,275,1.006,282,1.619,288,1.172,292,3.77,315,1.396,318,2.225,320,1.405,359,2.943,367,1.92,368,2.192,370,2.943,374,3.77,375,0.813,407,2.148,409,1.423,412,1.516,413,2.495,416,3.052,437,2.716,442,2.351,451,3.972,469,3.931,476,2.201,484,2.112,487,1.71,517,1.042,528,3.457,566,3.612,673,4.225,782,1.271,805,3.77,840,3.219,854,3.612,877,1.478,897,1.556,929,2.344,932,2.078,951,1.244,978,1.809,982,2.548,986,2.865,987,3.653,1011,1.809,1045,2.663,1159,2.044,1161,2.225,1192,2.396,1193,1.836,1236,2.444,1237,1.98,1256,2.865,1279,1.066,1281,3.602,1282,3.77,1283,0.733,1296,1.533,1303,2.548,1312,2.351,1320,3.118,1366,2.726,1369,1.388,1431,4.374,1512,3.422,1537,2.078,1552,2.604,1599,3.572,1600,2.351,1611,2.307,1678,2.112,1681,3.118,1687,1.631,1715,2.307,1725,1.809,1764,1.118,1820,5.172,1827,2.943,1941,2.793,1945,1.641,1950,2.634,1964,3.219,1965,1.734,1969,1.472,1974,3.832,2044,3.972,2069,4.564,2165,2.186,2230,2.396,2296,2.943,2315,3.331,2375,2.726,2376,2.726,2377,3.331,2378,1.451,2379,4.225,2380,4.225,2381,3.972,2382,3.118,2383,4.225,2384,5.079,2385,3.331,2386,4.564,2387,2.865,2388,2.943,2389,5.079,2390,2.396,2391,4.564,2392,2.726,2393,5.079,2394,4.564,2395,6.261,2396,2.726,2397,3.027,2398,4.941,2399,4.225,2400,3.118,2401,3.027,2402,4.225,2403,3.331,2404,3.331,2405,5.903,2406,3.602,2407,2.726,2408,5.079,2409,2.265,2410,3.602,2411,5.079,2412,3.118,2413,3.961,2414,5.079,2415,2.396,2416,5.079,2417,2.793,2418,4.564,2419,3.972,2420,4.564,2421,3.77,2422,5.079,2423,3.602,2424,5.079,2425,5.079,2426,2.943,2427,3.331,2428,3.972,2429,3.77,2430,5.449,2431,2.943,2432,3.972,2433,1.71,2434,2.307,2435,3.027,2436,4.564,2437,4.564,2438,5.079]],["tags/Are you handing over enough when inspiring someone?",[70,1.379,1600,1.976]],["title/How to teach kids to program",[487,1.837,2302,2.094,2417,3.001]],["content/How to teach kids to program",[1,1.32,3,1.496,6,0.676,7,1.954,10,0.889,19,0.419,20,1.387,21,1.516,24,1.351,25,1.37,26,1.463,28,1.407,29,1.422,50,0.611,52,0.457,59,1.577,64,2.827,65,2.035,79,0.342,80,2.756,82,3.257,90,2.365,91,2.459,94,1.184,98,1.116,99,1.422,101,0.602,104,1.42,113,1.367,114,2.827,124,2.827,131,0.958,144,1.326,148,1.577,150,1.227,154,1.103,156,1.257,157,1.691,158,0.635,160,2.195,163,3.287,179,1.475,180,2.106,185,1.422,189,3.895,199,2.75,200,2.017,213,2.569,216,0.872,219,1.641,266,2.235,277,1.353,278,1.304,279,2.157,320,1.387,330,2.195,350,3.411,375,0.802,384,1.129,404,1.116,408,5.035,465,1.894,476,1.387,487,2.865,517,1.028,573,3.554,586,2.157,621,1.422,629,3.411,630,1.387,698,1.838,705,1.785,728,1.866,782,1.259,903,2.824,910,2.756,912,0.802,929,1.477,950,2.412,951,1.227,963,4.503,1030,2.319,1069,1.477,1179,1.985,1236,3.801,1260,2.035,1279,1.052,1283,0.726,1290,3.62,1296,1.103,1298,3.939,1369,1.37,1477,2.514,1502,2.904,1511,2.628,1541,1.598,1568,3.411,1577,2.276,1583,1.577,1600,3.655,1634,2.017,1655,2.05,1657,1.536,1658,2.514,1659,2.12,1678,2.084,1687,1.416,1721,1.016,1742,2.319,1778,2.824,1794,2.017,1795,1.76,1877,3.411,1931,2.05,1950,1.894,1969,1.358,1983,1.641,2007,2.865,2025,2.195,2028,1.866,2053,2.514,2063,1.985,2165,2.157,2302,2.65,2303,2.514,2308,3.554,2328,2.69,2339,2.412,2358,4.576,2390,2.365,2400,3.077,2401,2.987,2415,4.015,2417,4.68,2419,3.919,2439,4.503,2440,5.011,2441,3.176,2442,4.503,2443,5.011,2444,3.72,2445,5.011,2446,5.011,2447,4.849,2448,5.011,2449,3.72,2450,3.554,2451,5.011,2452,2.904,2453,4.503,2454,2.276,2455,5.011,2456,4.239,2457,2.514,2458,3.895,2459,3.411,2460,3.077,2461,2.827,2462,5.124,2463,2.319,2464,3.287,2465,4.503,2466,4.169,2467,2.756,2468,3.176,2469,2.987,2470,4.503,2471,2.756,2472,5.011,2473,3.554,2474,5.011,2475,1.866,2476,2.827,2477,3.72,2478,6.903,2479,3.72,2480,2.69,2481,4.503,2482,3.919,2483,2.69,2484,4.895,2485,3.287,2486,5.011,2487,4.503,2488,3.287,2489,6.903,2490,3.077,2491,5.011,2492,5.011,2493,5.011,2494,3.287,2495,4.169,2496,4.503,2497,3.176,2498,5.011,2499,5.011,2500,5.011,2501,3.411]],["tags/How to teach kids to program",[2442,5.114]],["title/A samurai learning mindset",[21,1.65,2317,3.714,2502,4.539]],["content/A samurai learning mindset",[1,1.344,6,0.688,7,1.989,11,1.504,14,1.188,19,0.318,21,2.925,26,1.202,29,1.983,32,4.956,36,2.275,46,2.087,52,0.637,55,1.872,60,1.593,65,2.35,70,1.649,73,0.797,74,1.582,75,0.998,79,0.544,80,2.806,101,0.609,103,1.394,104,0.732,109,1.732,113,1.578,121,1.504,131,1.524,133,1.958,139,2.956,144,0.857,159,1.563,165,1.046,174,3.473,186,3.618,197,2.878,217,1.22,223,1.632,231,3.04,233,2.235,252,3.316,263,0.837,275,1.384,288,1.177,293,1.046,297,2.443,321,3.1,330,2.235,372,2.087,378,1.136,389,3.04,409,1.429,441,1.575,452,3.1,476,1.412,478,1.989,487,1.718,517,1.635,630,2.485,724,1.584,903,3.261,950,3.364,985,1.934,996,3.473,1044,2.407,1069,2.06,1146,1.671,1179,2.021,1260,2.06,1283,0.537,1291,2.074,1303,4.301,1309,3.346,1369,1.91,1399,2.021,1401,2.275,1422,2.021,1552,2.616,1583,1.605,1600,2.361,1658,3.506,1687,1.046,1719,2.361,1721,1.034,1725,1.818,1741,2.407,1881,2.122,1931,2.859,1969,0.877,1983,1.671,1985,2.806,2052,2.675,2062,2.122,2077,3.235,2104,2.806,2112,4.585,2282,2.559,2289,1.872,2302,2.683,2306,4.293,2310,3.04,2314,2.616,2326,3.133,2328,2.738,2339,2.455,2341,2.559,2396,2.738,2428,3.99,2434,2.317,2503,4.244,2504,5.102,2505,5.102,2506,6.989,2507,5.102,2508,6.989,2509,5.102,2510,3.618,2511,2.806,2512,2.407,2513,4.585,2514,4.585,2515,3.618,2516,4.758,2517,5.102,2518,5.102,2519,5.102,2520,8.072,2521,3.99,2522,4.585,2523,5.102,2524,5.102,2525,5.102,2526,3.99,2527,7.972,2528,2.675,2529,5.466,2530,3.133,2531,3.234,2532,5.102,2533,2.956,2534,3.473,2535,3.473,2536,2.878,2537,3.99,2538,3.618,2539,5.102,2540,2.956,2541,3.473,2542,7.164,2543,5.427,2544,5.102,2545,5.102,2546,4.585,2547,5.102,2548,3.99,2549,5.102,2550,5.466,2551,3.787,2552,3.618,2553,4.585,2554,5.102,2555,6.281,2556,4.244,2557,5.102,2558,1.989,2559,4.244,2560,4.585,2561,5.102,2562,5.102,2563,4.244,2564,3.943,2565,2.616,2566,5.102,2567,5.102,2568,5.102,2569,5.102,2570,4.585,2571,4.585,2572,5.102,2573,5.102,2574,4.585,2575,5.102]],["tags/A samurai learning mindset",[]],["title/Development principles in cooking",[139,3.161,476,1.51,2458,3.078]],["content/Development principles in cooking",[0,1.048,4,2.225,6,0.929,7,1.945,10,0.775,11,2.504,14,0.848,16,2.678,17,0.69,19,0.358,20,2.18,21,2.082,22,0.954,24,1.662,25,1.363,26,1.624,27,0.637,29,1.416,30,1.49,47,2.479,52,0.718,65,1.471,69,2.683,74,1.454,77,1.529,79,0.34,83,1.634,84,3.453,85,1.591,87,1.111,88,2.041,97,2.354,98,1.111,99,1.953,101,0.435,113,1.824,118,3.162,121,1.471,131,0.954,132,2.593,139,5.657,140,3.396,154,1.098,158,1.076,179,1.471,180,1.835,182,1.151,203,1.085,220,2.558,223,1.165,257,3.063,271,1.804,277,1.347,309,2.317,312,1.529,317,1.68,321,1.804,337,5.382,359,2.891,361,1.727,369,3.063,387,5.726,395,2.401,399,2.891,400,3.272,404,1.111,408,2.815,409,1.398,413,2.451,418,1.703,428,2.815,435,2.147,441,1.551,457,2.208,469,3.883,476,1.381,484,2.075,591,2.678,621,2.528,632,2.744,676,3.272,698,1.83,705,1.778,723,2.962,724,1.549,912,0.799,934,2.962,965,7.066,968,3.703,969,3.703,978,1.778,985,2.18,986,2.815,996,4.685,1000,3.538,1006,6.185,1031,2.354,1069,2.504,1234,3.528,1267,2.451,1283,0.724,1290,2.616,1291,1.298,1298,2.309,1303,2.503,1369,1.363,1583,2.165,1590,2.815,1614,2.041,1617,2.075,1631,1.886,1687,1.023,1691,3.063,1711,2.041,1721,1.395,1795,1.752,1804,4.484,1852,2.744,1953,4.514,1969,1.461,1974,2.744,1986,2.309,2007,1.68,2116,2.225,2165,2.147,2230,2.354,2383,4.151,2458,2.815,2576,2.111,2577,3.538,2578,7.879,2579,4.989,2580,4.989,2581,4.989,2582,2.744,2583,4.989,2584,4.989,2585,6.185,2586,4.989,2587,4.989,2588,3.272,2589,4.989,2590,3.063,2591,4.989,2592,3.453,2593,4.151,2594,2.185,2595,4.989,2596,4.88,2597,3.703,2598,4.989,2599,4.989,2600,2.973,2601,4.989,2602,3.538,2603,7.081,2604,4.989,2605,2.309,2606,4.989,2607,4.989,2608,4.989,2609,4.989,2610,3.063,2611,4.484,2612,6.882,2613,4.989,2614,3.902,2615,5.382,2616,3.703,2617,2.891,2618,4.989,2619,4.989,2620,3.902,2621,4.151,2622,3.703,2623,3.396,2624,3.396,2625,4.989,2626,6.882,2627,4.484,2628,4.484,2629,4.989,2630,4.989,2631,4.484,2632,4.989,2633,4.484,2634,3.538,2635,4.989,2636,4.989]],["tags/Development principles in cooking",[139,1.979,476,0.945,2458,1.927]],["title/Healing creative scars",[2318,1.739,2637,4.903,2638,4.539]],["content/Healing creative scars",[1,1.295,6,0.919,9,3.487,10,0.554,14,0.836,17,1.082,18,1.61,19,0.355,21,2.061,24,1.53,26,1.344,27,0.724,28,1.393,29,1.395,42,1.527,46,2.011,48,1.752,50,0.599,51,2.193,60,1.121,69,2.656,74,1.257,76,1.279,79,0.465,82,3.215,83,2.232,87,1.095,88,2.787,91,1.752,94,1.162,98,1.517,113,0.974,114,2.774,127,4.642,128,3.117,131,0.94,149,1.679,154,1.082,156,1.233,159,1.507,165,1.397,179,1.272,180,1.817,190,5.544,217,1.629,240,1.414,244,3.65,271,1.777,275,0.974,276,1.938,278,1.279,282,1.568,291,1.947,293,1.008,294,1.831,296,3.487,368,2.143,375,1.091,384,1.535,388,1.589,404,1.095,408,2.774,433,3.487,443,1.449,446,3.215,484,2.045,517,1.008,586,2.116,627,3.143,630,1.36,705,1.752,715,2.521,782,0.897,827,3.747,877,1.431,912,0.787,924,3.493,934,2.116,951,1.204,966,3.65,1003,2.578,1069,2.008,1159,1.979,1179,1.947,1283,0.517,1291,2.034,1296,1.082,1332,2.233,1512,3.347,1537,2.011,1557,1.727,1615,2.849,1663,2.46,1687,1.008,1721,0.997,1725,1.752,1764,1.082,1778,2.011,1785,1.547,1794,2.742,1799,2.774,1800,6.123,1962,1.804,1973,2.93,1983,1.61,1986,3.153,2007,1.655,2028,1.831,2034,2.08,2109,2.578,2178,5.128,2303,3.922,2306,2.276,2314,2.521,2317,3.347,2318,1.568,2324,3.65,2329,4.09,2361,3.225,2378,1.243,2390,2.32,2406,3.487,2426,2.849,2447,3.019,2454,3.834,2458,2.774,2484,3.487,2488,3.225,2501,3.347,2502,4.09,2520,4.419,2529,6.114,2530,3.019,2531,3.117,2535,3.347,2536,2.774,2542,4.419,2543,3.347,2555,4.419,2565,2.521,2577,3.487,2594,2.154,2610,4.183,2624,4.638,2638,5.668,2639,3.347,2640,4.917,2641,2.93,2642,1.917,2643,6.123,2644,3.487,2645,2.621,2646,3.487,2647,4.419,2648,3.019,2649,3.845,2650,3.845,2651,4.09,2652,4.09,2653,4.917,2654,3.845,2655,2.742,2656,6.123,2657,7.818,2658,5.668,2659,5.668,2660,2.521,2661,2.639,2662,4.917,2663,4.917,2664,4.917,2665,2.578,2666,2.32,2667,4.419,2668,2.276,2669,2.93,2670,5.057,2671,7.818,2672,3.347,2673,4.917,2674,4.917,2675,3.845,2676,4.917,2677,3.845,2678,4.917,2679,4.917,2680,3.845,2681,4.06,2682,6.813,2683,4.419,2684,2.639,2685,4.09,2686,2.93,2687,2.704,2688,4.419,2689,4.419,2690,4.419,2691,2.08,2692,4.09,2693,3.845,2694,2.578,2695,3.845,2696,2.704,2697,3.65,2698,3.347,2699,2.956,2700,2.366,2701,4.09,2702,4.09,2703,4.917,2704,3.019]],["tags/Healing creative scars",[21,1.033,171,3.069,172,1.235]],["title/A quick look at 6 fountain pens",[73,0.688,460,2.076,713,2.549,1533,2.036,2705,2.701]],["content/A quick look at 6 fountain pens",[5,0.992,11,1.46,19,0.357,20,1.37,22,0.947,24,0.969,25,1.354,28,0.882,30,2.044,47,1.558,50,0.957,52,0.624,59,2.154,69,1.931,73,1.437,75,1.657,77,1.518,79,0.467,83,1.622,87,1.103,94,1.17,101,0.597,113,0.981,131,0.947,154,1.507,157,1.213,158,0.627,159,1.518,165,1.016,179,1.279,183,3.372,184,1.667,200,1.993,203,1.077,213,2.539,223,1.599,240,1.421,241,2.095,252,2.06,264,3.054,278,1.289,282,1.579,294,1.844,297,1.518,317,2.305,321,1.79,322,2.952,363,3.766,365,1.872,366,2.539,367,1.872,375,0.793,403,2.209,407,2.095,412,1.479,430,1.441,437,1.931,441,1.116,460,4.834,465,1.872,473,2.337,486,2.724,517,1.016,630,1.37,631,2.724,713,2.87,806,2.433,845,3.372,913,2.485,921,1.206,932,2.026,951,1.213,964,2.209,985,2.172,1193,2.475,1279,1.438,1283,0.826,1289,0.842,1291,1.782,1315,2.026,1334,3.438,1335,1.844,1339,1.538,1382,2.095,1394,3.512,1403,2.131,1533,2.292,1541,1.579,1657,2.098,1662,2.337,1663,1.558,1687,1.016,1721,1.004,1746,2.658,1785,1.558,1858,2.095,1892,3.372,1903,2.539,1945,1.6,1962,1.817,1969,0.852,2006,2.55,2007,1.667,2059,2.952,2104,2.724,2183,2.25,2198,4.12,2230,2.337,2231,2.724,2289,1.817,2303,2.485,2335,2.87,2339,2.384,2349,5.554,2375,3.675,2376,2.658,2385,3.249,2441,3.139,2460,3.041,2582,2.724,2616,5.083,2639,3.372,2665,2.597,2705,5.457,2706,4.953,2707,3.512,2708,7.717,2709,3.873,2710,4.204,2711,4.975,2712,3.249,2713,3.041,2714,3.435,2715,3.041,2716,4.451,2717,2.209,2718,4.12,2719,3.676,2720,4.451,2721,4.953,2722,4.953,2723,4.953,2724,4.953,2725,4.953,2726,5.697,2727,4.081,2728,2.952,2729,4.12,2730,4.451,2731,4.12,2732,4.12,2733,3.249,2734,3.873,2735,4.953,2736,4.953,2737,4.953,2738,6.154,2739,5.697,2740,4.953,2741,4.12,2742,4.953,2743,4.451,2744,6.154,2745,4.953,2746,4.953,2747,4.953,2748,3.041,2749,4.953,2750,4.953,2751,6.848,2752,4.953,2753,3.041,2754,6.848,2755,3.139,2756,2.131,2757,3.512,2758,4.451,2759,2.597,2760,2.724,2761,4.953,2762,4.953,2763,7.848,2764,4.953,2765,7.848,2766,4.953,2767,4.953,2768,3.873,2769,4.451,2770,5.355,2771,4.953,2772,3.873,2773,3.873,2774,4.451,2775,2.095,2776,5.697,2777,3.512,2778,4.953,2779,3.372,2780,4.451,2781,4.953,2782,3.676,2783,4.953]],["tags/A quick look at 6 fountain pens",[2784,4.734]],["title/Journaling in practice",[88,2.537,172,2.242]],["content/Journaling in practice",[2,2.643,3,2.036,5,0.986,10,1.033,17,0.944,19,0.428,21,2.063,22,0.941,24,0.964,26,1.525,27,0.456,29,1.397,33,6.129,40,2.419,42,1.529,47,2.657,48,3.16,50,0.6,52,0.622,59,1.549,65,2.01,74,1.444,75,1.335,79,0.605,80,2.708,83,1.613,85,1.57,86,2.465,87,1.096,96,2.828,98,1.519,99,1.397,103,1.346,104,1.123,113,0.975,130,2.708,132,1.433,142,2.323,147,3.492,148,2.657,159,2.398,165,1.01,172,3.519,188,1.92,213,2.524,216,1.187,217,1.177,223,1.15,242,1.806,248,2.853,252,2.048,257,3.023,263,0.807,275,0.975,277,1.329,282,1.57,297,1.509,304,2.157,312,1.509,315,1.366,318,2.157,321,3.053,322,2.934,336,3.851,363,2.708,372,2.014,375,0.788,378,1.881,384,1.109,393,4.096,398,3.023,408,2.778,418,1.681,443,1.451,444,1.754,452,2.465,482,3.952,517,1.01,579,2.014,724,1.529,782,0.898,805,3.655,813,2.708,877,1.985,921,0.867,951,1.206,964,2.196,978,1.754,985,1.362,994,2.236,1003,2.582,1017,2.582,1066,3.282,1067,4.096,1069,1.451,1232,3.023,1237,1.92,1274,2.063,1279,1.034,1283,0.823,1291,2.197,1296,1.084,1297,2.708,1315,2.014,1335,1.834,1382,2.083,1430,2.419,1506,2.643,1512,2.419,1534,2.37,1577,2.236,1614,2.014,1631,1.861,1647,3.121,1659,2.083,1687,1.399,1714,4.187,1721,1.712,1737,3.23,1744,2.37,1755,2.708,1872,2.236,1931,2.014,1939,3.848,1950,2.578,1969,1.173,1983,1.613,1992,4.425,2108,2.37,2115,2.279,2116,2.196,2214,3.848,2296,2.853,2303,2.47,2317,4.643,2318,2.174,2324,3.655,2336,4.643,2412,3.023,2433,2.296,2435,2.934,2475,1.834,2480,2.643,2483,2.643,2502,5.674,2588,3.23,2594,2.987,2637,4.425,2638,4.096,2668,3.909,2695,5.334,2696,4.645,2698,3.352,2699,1.861,2753,3.023,2760,2.708,2785,1.982,2786,4.924,2787,4.924,2788,3.23,2789,3.655,2790,4.924,2791,3.352,2792,4.425,2793,3.851,2794,3.352,2795,3.23,2796,3.023,2797,3.23,2798,2.083,2799,4.924,2800,3.851,2801,4.924,2802,4.425,2803,4.425,2804,2.853,2805,2.395,2806,2.419,2807,4.924,2808,4.096,2809,3.851,2810,4.096,2811,7.59,2812,4.924,2813,4.425,2814,3.121,2815,4.924,2816,7.031,2817,4.096,2818,2.279,2819,3.492]],["tags/Journaling in practice",[172,1.543,2784,3.551]],["title/Nuts about local nuts",[309,1.837,801,4.636]],["content/Nuts about local nuts",[10,0.546,17,0.671,19,0.22,26,0.833,27,0.449,30,1.447,42,1.505,46,1.983,50,0.591,52,0.442,64,3.805,73,1.213,74,1.245,76,1.261,79,0.46,81,1.609,86,1.752,91,2.403,94,1.145,98,1.079,101,0.422,113,0.96,131,0.926,144,0.814,148,1.525,149,1.655,167,1.92,182,1.118,188,1.89,193,4.121,206,3.299,216,1.174,223,1.132,246,5.255,251,1.727,255,2.601,271,1.752,275,1.336,277,1.308,278,1.755,279,3.339,293,1.383,309,2.969,311,1.485,312,1.485,315,0.971,375,1.242,378,1.079,384,1.092,395,2.333,404,1.079,408,2.734,415,2.976,416,2.123,417,4.355,426,2.601,429,4.355,432,6.455,441,1.092,446,2.287,452,1.752,517,0.994,564,2.161,586,2.086,591,2.601,630,1.341,705,1.727,713,2.808,715,2.485,782,1.23,801,5.317,881,2.086,932,1.983,945,2.05,958,2.601,965,4.032,968,7.201,969,6.777,985,1.341,986,2.734,996,3.299,1146,1.587,1212,3.597,1276,1.805,1283,0.961,1296,1.484,1302,4.142,1315,2.759,1501,1.655,1613,2.431,1615,2.808,1648,1.545,1660,3.908,1666,2.086,1687,1.809,1710,2.243,1711,1.983,1725,2.764,1763,2.016,1785,1.525,1858,2.853,1949,2.888,1969,0.833,1977,2.976,2024,2.601,2034,2.05,2089,4.355,2109,2.541,2115,2.243,2178,3.179,2282,2.431,2376,2.601,2407,2.601,2413,2.243,2433,2.824,2473,3.437,2552,3.437,2576,2.05,2602,4.783,2615,3.79,2622,3.597,2624,3.299,2642,1.89,2665,2.541,2694,3.537,2700,2.333,2733,3.179,2814,3.072,2820,4.846,2821,7.759,2822,4.846,2823,4.846,2824,6.561,2825,2.665,2826,7.539,2827,3.179,2828,3.179,2829,4.355,2830,2.976,2831,4.846,2832,6.972,2833,9.552,2834,7.759,2835,8.389,2836,4.846,2837,4.846,2838,4.355,2839,4.355,2840,3.597,2841,4.846,2842,4.846,2843,4.783,2844,3.299,2845,3.597,2846,4.846,2847,4.355,2848,4.032,2849,4.846,2850,3.79,2851,4.846,2852,4.032,2853,2.431,2854,2.665,2855,3.79,2856,4.846,2857,4.846,2858,3.79,2859,4.783,2860,4.846,2861,4.032,2862,4.032,2863,4.846,2864,4.846,2865,4.355,2866,4.846,2867,3.597,2868,4.032,2869,4.846,2870,4.846,2871,4.355,2872,4.846,2873,4.032,2874,3.072,2875,6.745,2876,2.485,2877,4.846,2878,4.846,2879,4.846,2880,4.355,2881,1.983,2882,3.79,2883,4.846,2884,4.846,2885,4.355,2886,4.846,2887,4.846,2888,4.355,2889,4.355,2890,3.79,2891,3.179,2892,3.179,2893,3.299,2894,2.976,2895,4.355,2896,5.612,2897,3.79,2898,4.846,2899,4.032,2900,3.597,2901,3.597,2902,3.79]],["tags/Nuts about local nuts",[139,3.297]],["title/I'm jealous of my dog",[1969,0.938,2903,4.267,2904,3.35]],["content/I'm jealous of my dog",[4,2.272,7,1.986,10,0.786,11,2.058,14,0.866,17,0.966,18,1.669,24,1.366,26,1.201,27,0.646,28,1.419,29,1.445,30,1.521,41,2.671,50,0.851,59,1.603,65,1.502,70,1.646,74,1.657,79,0.584,83,1.669,84,2.555,88,3.506,90,2.404,91,1.815,94,1.204,101,0.694,113,1.836,121,2.058,130,2.802,133,1.955,142,2.404,148,1.603,159,1.561,160,2.231,165,1.045,174,5.833,179,0.951,180,2.124,184,1.715,203,1.108,208,2.272,211,1.764,213,2.612,216,0.886,223,1.189,258,2.272,263,0.835,271,1.842,275,1.009,278,1.325,282,1.624,287,2.874,288,1.175,291,2.018,315,1.021,326,2.502,368,2.196,375,1.118,378,1.134,404,1.134,407,3.369,426,2.734,443,2.058,444,1.815,473,2.404,490,2.671,813,4.381,912,0.816,947,2.874,950,3.834,989,3.128,1020,1.842,1069,2.526,1283,0.838,1289,0.866,1293,3.341,1296,1.536,1298,2.358,1304,3.341,1312,2.358,1320,3.128,1382,2.953,1412,4.238,1512,2.502,1577,2.314,1634,2.05,1645,3.996,1648,1.624,1658,2.555,1659,2.155,1668,3.468,1710,2.358,1711,2.084,1719,2.358,1720,2.874,1721,1.615,1763,2.119,1764,1.121,1785,1.603,1950,1.926,1969,1.474,1983,3.213,2007,1.715,2028,1.897,2051,3.341,2059,3.036,2070,2.612,2077,3.231,2123,2.452,2230,3.294,2303,2.555,2374,2.155,2392,2.734,2406,4.951,2434,3.892,2463,2.358,2490,3.128,2588,3.341,2645,1.582,2808,4.238,2859,3.612,2891,3.341,2904,5.512,2905,8.068,2906,4.238,2907,3.229,2908,3.612,2909,6.433,2910,4.578,2911,4.238,2912,4.578,2913,5.094,2914,4.425,2915,4.578,2916,3.468,2917,5.094,2918,5.094,2919,3.984,2920,3.984,2921,3.612,2922,4.238,2923,5.094,2924,5.808,2925,3.468,2926,4.238,2927,3.229,2928,2.952,2929,5.094,2930,5.094,2931,5.094,2932,3.341,2933,5.094,2934,4.238,2935,3.612,2936,4.578,2937,4.578,2938,3.612,2939,3.341,2940,4.578,2941,5.094,2942,5.094,2943,5.094,2944,5.094,2945,2.671,2946,4.578,2947,5.094,2948,2.952,2949,2.734,2950,4.578,2951,3.229,2952,2.952,2953,5.094,2954,5.094,2955,4.238,2956,4.578,2957,3.341,2958,5.094,2959,3.036,2960,5.094,2961,4.238]],["tags/I'm jealous of my dog",[]],["title/Inventing - for the worse?",[2666,2.926,2962,4.067]],["content/Inventing - for the worse?",[1,1.289,4,2.183,6,0.661,10,1.109,11,1.443,13,2.137,17,0.677,18,1.603,19,0.402,20,1.355,22,1.299,24,1.329,25,2.302,26,1.168,28,0.872,32,4.817,42,1.52,46,2.003,51,2.183,52,0.807,65,1.443,67,1.719,73,0.765,74,0.903,75,0.958,79,0.463,81,1.626,84,3.408,94,1.157,98,1.09,99,2.213,101,0.68,104,0.975,113,0.969,116,1.143,121,1.443,133,1.879,144,1.415,157,1.664,175,1.355,179,0.914,182,1.13,184,1.648,196,1.443,199,1.582,210,2.266,214,4.624,216,0.852,217,1.171,240,1.016,251,1.744,252,2.036,255,2.628,264,3.029,275,1.345,276,1.213,277,2.389,291,1.939,309,1.648,311,1.5,316,4.09,321,1.77,361,1.695,366,2.51,367,1.851,378,1.513,384,1.103,388,1.582,404,1.513,412,1.462,418,1.671,430,1.425,437,1.909,455,2.319,457,1.903,465,1.851,478,1.909,621,2.213,698,1.796,788,2.917,844,3.472,903,3.191,910,2.692,912,0.784,951,1.199,986,4.401,988,4.399,1030,2.266,1069,1.443,1108,4.073,1276,1.823,1278,1.582,1283,0.886,1291,2.192,1307,2.405,1348,2.873,1354,2.456,1381,4.399,1399,1.939,1497,3.006,1501,2.319,1502,2.837,1534,2.356,1557,1.719,1659,2.873,1687,1.004,1718,2.628,1778,2.003,1785,2.137,1796,2.107,1945,1.582,1952,3.269,1969,0.842,2028,1.823,2043,2.51,2254,3.69,2318,1.561,2328,3.646,2339,2.356,2349,3.211,2374,3.564,2390,3.975,2401,5.021,2413,3.144,2431,2.837,2467,2.692,2515,5.531,2516,3.333,2546,4.399,2558,1.909,2565,2.51,2714,3.408,2759,2.567,2785,1.97,2804,2.837,2805,1.719,2896,4.073,2948,2.837,2962,4.455,2963,4.895,2964,4.895,2965,4.895,2966,4.073,2967,3.211,2968,3.333,2969,2.266,2970,4.073,2971,3.103,2972,4.895,2973,4.073,2974,4.399,2975,4.399,2976,3.211,2977,4.895,2978,4.895,2979,4.895,2980,4.048,2981,2.692,2982,4.399,2983,4.399,2984,3.829,2985,3.829,2986,2.51,2987,3.829,2988,4.895,2989,3.472,2990,3.211,2991,3.829,2992,6.793,2993,4.895,2994,3.006,2995,2.692,2996,2.456,2997,4.895,2998,2.456,2999,4.895,3000,4.895,3001,4.399,3002,4.895,3003,4.399,3004,2.003,3005,2.762,3006,3.829,3007,3.211,3008,3.333,3009,4.895,3010,4.073,3011,6.104,3012,3.211,3013,3.736,3014,2.917,3015,4.073,3016,6.104,3017,4.895,3018,4.895,3019,3.006,3020,4.399,3021,3.333,3022,4.073,3023,3.103,3024,4.399,3025,4.895,3026,3.006,3027,4.073,3028,4.073,3029,4.399]],["tags/Inventing - for the worse?",[3022,4.734]],["title/Archive by year: 2017",[6,0.736,477,2.269,2528,2.861]],["content/Archive by year: 2017",[19,0.436,477,3.513,2528,4.429]],["tags/Archive by year: 2017",[]],["title/2017 in books",[65,1.828,2528,3.251]],["content/2017 in books",[6,0.707,10,0.59,19,0.238,26,1.223,27,0.485,28,1.267,36,2.335,47,1.647,60,1.842,65,2.908,73,0.818,74,1.313,76,2.358,77,1.604,79,0.357,82,2.47,83,1.715,87,1.166,94,1.237,96,1.893,97,2.47,99,1.486,101,0.456,103,1.431,109,1.298,111,3.886,124,2.954,142,2.47,150,1.742,154,1.152,155,3.434,157,1.282,158,1.023,160,2.293,165,1.074,179,0.978,180,1.897,181,4.666,182,1.641,216,1.238,217,1.252,253,3.009,276,1.298,282,1.669,293,1.074,315,1.049,365,1.979,375,0.838,392,2.52,407,3.009,408,4.013,422,1.865,444,1.865,472,2.041,486,2.88,487,2.395,546,2.47,606,3.865,630,1.449,698,1.921,723,2.253,760,4.368,782,0.955,860,3.564,885,2.745,924,3.647,1030,3.292,1031,2.47,1260,1.543,1279,1.696,1307,2.572,1403,2.253,1417,5.997,1564,3.713,1678,2.178,1721,2.022,1778,2.142,1785,1.647,1806,2.81,1962,1.921,1969,0.9,2007,1.763,2070,2.684,2108,2.52,2116,2.335,2123,2.52,2162,3.215,2302,2.01,2303,4.348,2306,4.566,2318,2.268,2324,5.997,2434,2.378,2463,3.739,2497,3.319,2512,2.47,2528,4.236,2576,2.215,2592,2.627,2642,2.041,2666,2.47,2699,2.689,2700,2.52,2712,3.434,2940,4.705,2948,3.034,3030,5.997,3031,3.215,3032,5.236,3033,4.705,3034,3.434,3035,3.231,3036,2.378,3037,3.886,3038,5.236,3039,4.705,3040,5.236,3041,4.095,3042,5.236,3043,5.236,3044,3.034,3045,4.705,3046,4.705,3047,5.236,3048,4.705,3049,4.705,3050,3.12,3051,6.721,3052,7.261,3053,5.236,3054,7.113,3055,7.113,3056,5.236,3057,5.236,3058,7.113,3059,7.113,3060,5.236,3061,8.079,3062,5.236,3063,8.079,3064,5.236,3065,5.236,3066,4.356,3067,5.236,3068,5.236,3069,5.236,3070,5.236,3071,3.215,3072,5.236,3073,3.886,3074,5.236,3075,5.236,3076,5.236,3077,2.378,3078,4.095,3079,3.713,3080,4.356,3081,4.356,3082,3.713,3083,4.356,3084,5.236,3085,5.236,3086,4.095,3087,3.713,3088,3.215,3089,4.705,3090,4.705,3091,5.236,3092,4.705]],["tags/2017 in books",[172,1.543,1721,0.865]],["title/Hiding Code Complexity",[591,2.928,897,1.672,2623,3.714]],["content/Hiding Code Complexity",[1,1.322,14,0.853,19,0.482,22,0.959,24,1.547,26,1.359,35,3.725,37,2.831,52,0.721,70,1.622,75,0.982,85,1.6,86,1.814,94,1.867,101,0.742,104,0.992,119,2.991,121,1.479,123,2.415,126,3.287,132,2.478,144,1.16,154,1.874,158,1.131,173,3.559,185,2.242,186,3.559,208,2.238,216,1.202,217,1.2,223,1.172,255,2.694,275,0.994,277,1.355,279,2.16,312,1.538,320,1.389,321,1.814,366,3.543,372,2.053,375,0.804,378,1.76,404,1.118,409,1.406,418,1.713,437,1.957,443,1.479,455,1.713,476,1.912,484,2.087,517,1.029,528,5.797,566,3.59,579,2.053,591,5.076,621,1.424,628,3.343,722,1.927,724,2.145,749,2.908,757,2.368,797,3.401,799,2.991,854,2.279,912,0.804,928,4.51,1011,1.788,1017,2.632,1025,3.925,1191,3.082,1206,3.292,1278,2.233,1279,1.054,1283,0.896,1300,3.59,1325,4.004,1335,1.869,1339,2.145,1369,2.16,1422,1.988,1511,2.632,1568,3.416,1599,2.573,1609,3.082,1617,2.874,1619,4.052,1634,2.02,1687,1.621,1691,3.082,1696,3.925,1721,1.401,1725,1.788,1763,2.087,1771,5.749,1777,2.123,1796,2.16,1852,2.76,1933,4.242,1950,2.612,1983,1.644,2007,1.69,2031,2.991,2052,3.623,2230,2.368,2323,3.181,2413,2.323,2477,3.725,2494,3.292,2594,3.462,2623,4.704,2642,1.957,2785,2.02,2827,4.533,2906,4.175,2949,2.694,3093,3.725,3094,4.175,3095,3.559,3096,6.21,3097,5.019,3098,6.545,3099,6.628,3100,8.025,3101,4.9,3102,6.21,3103,4.51,3104,5.019,3105,7.652,3106,5.019,3107,9.634,3108,3.725,3109,5.019,3110,6.91,3111,5.019,3112,5.019,3113,5.019,3114,6.91,3115,7.103,3116,5.019,3117,5.019,3118,5.019,3119,4.51,3120,5.019,3121,5.019,3122,2.908,3123,3.292,3124,5.019,3125,2.991,3126,5.019,3127,5.019]],["tags/Hiding Code Complexity",[1980,4.734]],["title/Take your time.",[17,0.858,216,1.079]],["content/Take your time.",[1,1.769,7,1.879,10,0.757,14,0.819,24,1.315,25,1.317,26,0.829,27,0.716,28,1.378,29,1.367,41,2.527,42,1.496,47,1.516,50,0.587,53,3.893,61,2.319,69,3.016,73,1.05,74,0.889,75,0.943,77,1.477,79,0.458,83,1.578,84,2.417,85,1.536,88,1.971,89,2.502,99,1.367,101,0.729,104,0.965,109,1.917,113,0.954,121,1.98,124,2.719,148,2.433,149,2.641,154,1.061,157,1.18,158,0.98,168,1.112,175,1.333,179,0.9,182,1.112,185,1.367,197,2.719,200,1.939,202,3.28,217,1.152,219,2.534,220,2.471,233,2.111,251,1.717,258,3.449,266,2.996,275,0.954,277,1.814,279,2.074,285,3.054,288,1.112,293,0.988,296,3.417,311,1.477,320,1.333,324,2.872,361,1.668,375,0.772,378,1.722,404,1.496,444,1.717,457,1.35,465,1.822,469,2.719,484,2.004,621,1.367,724,1.496,813,3.695,816,3.161,929,1.42,935,4.009,936,3.577,945,2.038,954,3.28,985,1.333,989,2.959,993,2.367,1003,2.527,1045,3.523,1069,2.28,1146,2.201,1236,2.319,1272,2.65,1283,0.507,1289,1.422,1297,2.65,1298,2.23,1299,2.792,1302,2.959,1382,2.038,1426,1.439,1465,2.65,1487,2.074,1501,1.645,1613,2.417,1617,2.004,1635,3.769,1645,3.37,1658,2.417,1659,2.038,1687,0.988,1719,2.23,1725,1.717,1741,2.274,1742,3.11,1764,1.479,1785,1.516,1795,1.692,1799,2.719,1889,2.872,1898,2.792,1969,1.33,1983,2.741,2007,2.604,2025,2.111,2077,2.23,2108,2.319,2115,2.23,2165,2.074,2230,2.274,2282,2.417,2289,2.838,2299,2.719,2339,2.319,2347,2.719,2364,5.741,2404,3.161,2420,4.331,2463,2.23,2476,2.719,2484,3.417,2531,3.054,2536,3.79,2565,3.444,2588,4.407,2650,5.254,2661,2.587,2681,2.872,2689,4.331,2691,2.038,2699,1.822,2760,2.65,2785,3.113,2819,3.417,2900,3.577,2901,3.577,2909,5.489,2916,3.28,2920,3.769,2925,3.28,2927,3.054,2938,4.764,2981,2.65,3036,2.189,3123,3.161,3128,3.28,3129,4.574,3130,3.054,3131,4.331,3132,6.719,3133,5.589,3134,4.009,3135,4.407,3136,4.819,3137,4.819,3138,4.819,3139,4.819,3140,2.872,3141,4.009,3142,4.819,3143,4.819,3144,2.872,3145,2.319,3146,4.819,3147,4.819,3148,4.819,3149,2.527,3150,4.819,3151,4.819,3152,3.28,3153,4.819,3154,4.009,3155,4.009,3156,4.819,3157,4.819,3158,4.331,3159,3.769,3160,2.959,3161,3.161,3162,6.719,3163,2.471,3164,4.819,3165,4.819,3166,5.266,3167,4.009,3168,3.417,3169,4.331,3170,4.819,3171,4.009,3172,3.769,3173,4.819,3174,3.28,3175,4.819,3176,4.819,3177,4.819,3178,2.792,3179,4.819,3180,3.577,3181,2.872,3182,4.819,3183,4.819,3184,4.819,3185,4.819,3186,2.959,3187,4.819,3188,4.819,3189,2.719,3190,2.587,3191,4.819,3192,3.28,3193,4.331,3194,2.792,3195,3.769,3196,4.819]],["tags/Take your time.",[172,2.057]],["title/Concentrating on serendipitous creativity",[280,3.869,2318,1.739,3197,4.539]],["content/Concentrating on serendipitous creativity",[0,1.043,1,1.308,2,4.219,3,1.483,10,0.885,13,1.563,14,0.844,17,1.305,22,1.503,24,0.972,25,1.357,26,1.18,27,0.46,29,1.409,41,2.605,49,2.878,50,0.605,51,2.215,60,1.564,76,1.292,79,0.339,82,3.238,86,1.796,88,2.032,97,2.344,98,1.528,103,1.357,104,1.38,113,0.984,118,3.149,138,2.492,149,1.696,154,1.73,158,0.869,165,1.019,175,1.374,179,0.928,200,1.999,210,3.176,216,1.194,220,2.547,222,3.885,223,1.602,237,3.258,242,2.517,245,3.687,251,1.77,275,1.359,279,2.953,280,6.309,287,2.802,289,4.555,294,2.555,304,2.176,311,1.522,330,2.176,361,2.376,365,1.878,378,1.106,384,2.125,430,1.446,437,3.305,441,1.546,443,1.464,444,2.445,446,2.344,452,1.796,591,2.666,621,2.405,698,1.822,782,1.434,813,3.774,903,2.807,921,0.875,929,1.464,945,2.101,946,4.685,985,1.374,987,2.605,1002,2.96,1069,1.464,1146,1.627,1260,2.022,1274,2.075,1283,0.523,1291,2.315,1296,1.093,1297,3.774,1369,1.875,1415,1.744,1502,3.976,1512,2.44,1555,2.802,1557,1.744,1586,1.542,1592,3.774,1617,2.854,1631,2.594,1645,2.492,1658,2.492,1678,2.066,1687,1.019,1764,1.093,1785,2.159,1791,2.732,1799,2.802,1852,4.323,1876,2.215,1945,1.605,1946,2.802,1950,1.878,1969,0.854,2001,4.501,2063,1.967,2070,2.547,2116,2.215,2319,4.323,2328,3.683,2341,2.492,2358,2.878,2375,4.219,2376,2.666,2390,2.344,2395,4.464,2401,2.96,2429,3.687,2531,3.149,2558,1.937,2670,3.687,2686,4.089,2808,4.132,2818,2.299,2909,3.258,3130,3.149,3198,5.156,3199,6.861,3200,4.132,3201,6.861,3202,3.381,3203,5.155,3204,4.132,3205,6.861,3206,7.064,3207,4.464,3208,3.885,3209,4.967,3210,4.967,3211,4.967,3212,4.967,3213,6.166,3214,6.166,3215,4.132,3216,2.666,3217,3.381,3218,3.885,3219,4.132,3220,2.96,3221,4.132,3222,4.132,3223,4.967,3224,2.605,3225,2.547,3226,3.381,3227,4.132,3228,4.967,3229,3.522,3230,3.885,3231,4.464,3232,3.258,3233,3.258,3234,4.464,3235,4.464,3236,2.391,3237,4.967,3238,4.132,3239,3.885,3240,4.967,3241,1.672,3242,7.619,3243,3.381,3244,4.967,3245,3.149,3246,4.464,3247,2.605,3248,3.885,3249,4.464,3250,4.967]],["tags/Concentrating on serendipitous creativity",[280,3.027,3203,2.473]],["title/Death to pseudocode?",[3251,3.593,3252,5.573]],["content/Death to pseudocode?",[0,1.018,1,1.276,4,2.161,7,2.63,10,0.546,14,0.824,19,0.487,23,2.806,24,0.948,26,1.16,27,0.449,30,1.447,46,2.759,49,3.908,50,0.591,52,0.442,59,1.525,70,1.566,75,0.948,79,0.331,83,1.587,88,1.983,89,1.805,94,1.594,101,0.588,102,2.485,104,0.968,109,1.201,113,0.96,126,3.227,127,4.614,131,1.289,142,2.287,144,1.133,167,1.92,217,1.613,251,1.727,272,3.437,293,0.994,297,1.485,304,2.123,315,0.971,392,2.333,475,3.46,501,3.179,513,7.336,514,6.561,515,4.355,517,2.083,518,2.287,566,3.064,571,3.072,591,3.621,630,1.341,631,2.665,650,3.79,722,3.22,724,1.505,725,2.734,782,0.884,785,3.179,897,2.927,919,1.678,921,0.853,1068,3.299,1114,6.455,1188,3.299,1198,2.888,1234,2.485,1283,0.816,1289,0.824,1290,2.541,1291,2.019,1292,1.92,1300,3.524,1331,2.287,1369,1.324,1382,2.05,1431,2.665,1451,2.541,1533,2.243,1564,5.502,1568,3.299,1577,2.201,1583,1.525,1617,2.016,1655,1.983,1657,1.485,1719,2.243,1721,0.982,1741,2.287,1742,2.243,1776,4.142,1790,5.11,1810,3.179,1827,2.808,1877,3.299,1881,2.016,1936,4.032,1962,1.778,1965,1.655,1969,0.833,1974,4.614,2004,2.734,2028,1.805,2043,2.485,2063,1.92,2162,2.976,2273,3.597,2415,2.287,2434,2.201,2450,3.437,2457,2.431,2538,3.437,2623,3.299,2668,2.243,2699,2.933,2728,2.888,2785,1.951,2791,3.299,2914,3.072,2996,2.431,3241,1.632,3252,8.719,3253,4.783,3254,2.201,3255,3.179,3256,4.846,3257,2.888,3258,4.355,3259,4.032,3260,4.846,3261,4.846,3262,2.808,3263,4.355,3264,2.541,3265,2.976,3266,4.846,3267,3.437,3268,4.846,3269,4.846,3270,3.437,3271,2.976,3272,3.437,3273,7.539,3274,4.846,3275,4.846,3276,6.745,3277,6.745,3278,4.624,3279,7.759,3280,6.972,3281,7.759,3282,8.389,3283,7.759,3284,4.846,3285,4.846,3286,4.846,3287,4.846,3288,4.846,3289,4.355,3290,4.846,3291,4.846,3292,4.846,3293,4.032,3294,4.846,3295,2.888,3296,4.846,3297,4.846,3298,4.846]],["tags/Death to pseudocode?",[475,1.904,1650,3.836]],["title/Thinking in terms of objects",[61,2.626,113,1.08,2341,2.737]],["content/Thinking in terms of objects",[10,0.569,19,0.481,20,1.399,21,1.529,22,1.328,23,3.724,24,1.359,26,1.364,30,1.51,52,0.461,59,2.185,60,1.584,61,4.309,70,1.634,75,0.99,79,0.541,80,3.82,87,1.547,94,2.018,101,0.441,113,1.001,131,0.967,133,1.941,154,1.113,165,1.037,196,2.845,208,2.255,217,1.209,223,1.181,263,1.139,271,1.828,272,6.56,275,1.001,279,2.176,297,2.431,324,3.013,326,2.484,330,2.215,366,2.592,375,0.81,392,2.433,418,1.726,437,2.708,487,1.702,571,3.205,579,2.068,586,2.176,622,2.536,623,3.82,630,1.399,722,1.941,724,1.57,749,4.597,797,3.981,799,5.752,921,0.89,964,3.097,982,2.536,1017,2.651,1044,3.277,1146,2.275,1201,5.156,1237,1.971,1289,0.859,1302,6.237,1307,4.196,1326,3.585,1332,2.296,1342,4.544,1369,2.168,1399,2.751,1568,3.442,1617,2.103,1623,1.702,1631,1.911,1633,2.255,1634,3.193,1657,1.549,1687,1.037,1715,2.296,1720,2.852,1764,1.113,1794,2.035,1898,5.797,1952,3.343,1976,2.433,2028,1.883,2116,2.255,2183,2.296,2289,2.548,2320,5.245,2341,2.536,2374,3.613,2483,2.714,2511,2.781,2536,5.345,2959,3.013,3122,2.93,3145,2.433,3253,3.585,3299,3.954,3300,3.442,3301,4.206,3302,6.946,3303,7.934,3304,5.056,3305,6.242,3306,5.056,3307,4.556,3308,6.946,3309,5.056,3310,5.056,3311,3.585,3312,5.056,3313,4.544,3314,9.347,3315,3.753,3316,3.954,3317,3.954,3318,4.206,3319,2.592,3320,6.946,3321,6.242,3322,4.206]],["tags/Thinking in terms of objects",[2302,2.184]],["title/Over entropie",[116,1.448,3323,6.201]],["content/Over entropie",[19,0.436,79,0.529,116,0.952,131,0.779,196,1.202,311,1.249,452,1.474,493,5.289,494,3.664,495,5.613,497,5.466,498,5.956,504,5.604,505,3.026,506,4.265,510,4.328,511,3.661,512,2.775,522,2.584,524,5.087,527,3.279,530,5.499,532,4.623,535,6.112,537,2.503,540,2.775,546,4.621,568,2.584,578,3.664,593,3.279,597,4.425,599,2.775,600,4.059,601,4.623,602,3.553,606,4.554,613,2.891,614,4.429,623,2.242,634,5.466,645,4.425,659,3.664,680,4.762,689,3.664,699,4.425,744,4.916,745,2.674,747,3.664,750,3.911,760,3.661,774,5.306,792,4.916,807,2.584,808,3.188,809,3.188,812,3.188,816,2.674,856,2.775,890,2.775,894,3.392,1097,3.664,1101,3.664,1108,3.392,1137,2.674,1141,3.392,1144,2.891,1185,4.328,1203,2.43,1204,4.425,1208,3.188,1211,3.188,1263,3.392,1339,1.851,1376,3.392,1456,3.392,2015,2.188,2321,4.96,2429,3.026,3135,2.674,3324,4.96,3325,4.077,3326,5.962,3327,5.962,3328,4.077,3329,5.962,3330,6.334,3331,4.663,3332,4.077,3333,4.425,3334,4.077,3335,4.077,3336,6.969,3337,3.026,3338,4.077,3339,3.392,3340,4.077,3341,3.664,3342,4.077,3343,3.664,3344,4.077,3345,4.077,3346,4.077,3347,4.998,3348,4.077,3349,4.077,3350,4.077,3351,3.664,3352,4.077,3353,7.415,3354,4.077,3355,4.077,3356,4.077,3357,6.065,3358,4.077,3359,4.077,3360,7.049,3361,4.077,3362,4.077,3363,4.077,3364,4.96,3365,5.962,3366,4.96,3367,2.362,3368,3.188,3369,4.077,3370,4.077,3371,4.077,3372,5.962,3373,3.392,3374,5.358,3375,4.077,3376,4.077,3377,3.664,3378,4.077,3379,4.077,3380,4.077,3381,4.077,3382,4.077,3383,5.962,3384,4.077,3385,4.077,3386,4.077,3387,3.188,3388,4.077,3389,3.664,3390,4.077,3391,4.077,3392,4.077,3393,3.188,3394,4.077,3395,3.026,3396,4.077,3397,4.077,3398,3.664,3399,4.077,3400,3.392,3401,3.026,3402,4.077,3403,7.755,3404,3.664,3405,3.392,3406,3.188,3407,4.077,3408,4.077,3409,4.077,3410,5.962,3411,3.664,3412,4.077,3413,3.392,3414,4.077,3415,3.664,3416,7.755,3417,3.026,3418,5.962,3419,3.392,3420,3.026,3421,3.188,3422,3.188,3423,4.077,3424,5.962,3425,4.077,3426,5.499,3427,4.077,3428,4.96,3429,4.077,3430,5.864,3431,4.96,3432,4.077,3433,4.077,3434,4.077,3435,2.891,3436,4.077,3437,4.077,3438,4.077,3439,4.077,3440,4.077,3441,5.962,3442,4.077,3443,4.077,3444,4.077,3445,3.664,3446,4.077,3447,4.077,3448,3.664,3449,4.077,3450,2.775,3451,3.392,3452,4.077,3453,4.077,3454,1.924,3455,2.891,3456,5.962,3457,7.049,3458,2.503,3459,5.962,3460,4.077,3461,3.664,3462,4.077,3463,4.077,3464,4.077,3465,3.664,3466,4.077,3467,3.392,3468,4.077,3469,4.077,3470,4.077,3471,4.077,3472,4.077,3473,4.077,3474,4.077,3475,4.077,3476,4.077,3477,3.911,3478,4.077,3479,4.077]],["tags/Over entropie",[]],["title/Teaching by philosophy",[2302,2.38,2948,3.593]],["content/Teaching by philosophy",[5,1.365,6,0.919,10,0.767,14,1.158,17,0.68,19,0.46,21,2.844,22,0.94,23,2.834,24,1.333,26,1.451,27,0.631,52,0.448,54,3.65,67,1.727,73,0.769,74,0.907,99,1.395,101,0.594,109,1.219,113,0.974,121,2.008,131,0.94,138,4.234,140,3.347,154,1.499,158,1.069,179,0.918,182,1.572,196,1.449,203,1.995,217,1.176,220,2.521,223,2.07,251,1.752,311,1.507,320,1.36,330,2.984,365,2.576,369,3.019,370,2.849,378,1.095,384,1.108,407,2.882,409,1.378,450,2.233,455,1.679,475,4.439,517,1.008,518,3.215,579,2.011,698,2.499,722,1.887,749,2.849,757,2.32,782,0.897,896,4.891,920,3.365,921,1.2,924,2.521,945,2.882,951,2.067,985,2.163,986,2.774,1017,3.572,1062,1.979,1213,3.948,1233,3.845,1283,0.517,1292,1.947,1296,1.858,1297,3.747,1299,2.849,1300,2.233,1332,2.233,1339,1.527,1346,2.115,1369,2.506,1541,1.568,1565,5.328,1614,2.011,1648,1.568,1655,3.198,1663,1.547,1687,1.397,1688,3.019,1721,0.997,1787,3.747,1806,2.639,1876,3.953,1930,3.747,1937,3.845,1939,2.774,1945,3.098,1949,2.93,1969,0.845,2024,2.639,2047,3.65,2059,2.93,2178,3.225,2302,1.887,2310,5.283,2413,2.276,2447,3.019,2457,3.922,2639,4.638,2641,4.06,2665,2.578,2666,2.32,2804,2.849,2882,5.328,2945,4.099,2951,3.117,2986,2.521,3035,2.233,3232,4.469,3241,2.294,3262,2.849,3272,5.544,3311,5.544,3316,3.845,3454,3.215,3458,3.019,3480,3.019,3481,4.419,3482,3.487,3483,4.183,3484,4.09,3485,4.008,3486,6.123,3487,3.487,3488,3.019,3489,3.845,3490,4.09,3491,4.917,3492,3.65,3493,4.917,3494,4.917,3495,4.917,3496,2.467,3497,3.225,3498,4.419,3499,4.09,3500,4.09,3501,4.419,3502,4.917,3503,4.917,3504,3.845,3505,5.668,3506,6.813,3507,5.057,3508,5.328,3509,3.117,3510,4.419,3511,4.917,3512,4.917,3513,4.917,3514,4.917,3515,3.65,3516,4.09]],["tags/Teaching by philosophy",[2302,1.639,2948,2.473]],["title/Computer Science learning pathways",[21,1.473,1655,1.993,2457,2.443,3517,4.052]],["content/Computer Science learning pathways",[0,1.04,6,1.199,7,1.931,17,0.685,19,0.385,23,3.522,28,1.22,29,1.405,50,0.835,65,2.62,67,1.739,73,1.07,74,1.264,77,1.518,79,0.338,83,1.622,88,2.026,90,2.337,97,2.337,101,0.432,116,1.156,131,1.309,145,2.095,149,1.691,150,1.677,157,1.213,165,1.016,179,0.925,182,1.143,203,1.489,208,2.209,211,1.715,216,1.191,223,1.156,263,1.123,264,3.054,275,0.981,276,1.228,293,1.404,297,1.518,311,1.518,361,1.715,365,1.872,375,0.793,407,2.095,409,1.388,412,1.479,435,2.131,446,2.337,452,1.79,472,3.301,473,3.231,476,2.343,486,2.724,487,3.095,491,2.209,517,1.404,630,1.37,724,2.126,785,5.554,885,3.59,896,2.87,897,2.098,903,2.801,921,0.872,950,4.278,951,1.677,957,2.87,985,1.895,993,2.433,994,3.11,1011,1.765,1017,2.597,1082,3.512,1200,3.041,1282,3.676,1283,0.521,1301,2.724,1333,1.993,1339,1.538,1369,2.145,1409,5.973,1412,4.12,1422,1.962,1493,2.952,1506,2.658,1537,2.026,1541,1.579,1557,1.739,1582,1.993,1589,2.292,1599,2.539,1631,1.872,1655,3.636,1660,2.87,1688,3.041,1691,3.041,1721,1.004,1725,2.44,1827,2.87,1930,3.766,1933,2.658,1939,3.863,1941,2.724,1945,2.213,1950,1.872,1969,1.177,1995,2.724,2052,2.597,2254,2.169,2297,2.597,2313,3.676,2314,2.539,2326,4.819,2376,2.658,2378,1.719,2397,2.952,2417,2.724,2457,3.937,2460,3.041,2483,3.675,2530,3.041,2541,3.372,2596,3.512,2700,2.384,2914,3.139,3013,2.724,3035,2.25,3140,2.952,3216,2.658,3241,2.305,3254,3.846,3272,4.856,3311,4.856,3480,3.041,3481,4.451,3482,3.512,3483,2.337,3518,5.644,3519,1.931,3520,4.953,3521,4.953,3522,4.451,3523,3.249,3524,2.724,3525,4.953,3526,3.873,3527,3.372,3528,2.952,3529,4.953,3530,6.848,3531,4.953,3532,9.034,3533,4.12,3534,6.848,3535,4.953,3536,4.953,3537,2.87,3538,3.512,3539,2.794,3540,4.953,3541,4.953,3542,4.953,3543,4.953,3544,4.953,3545,7.848,3546,2.539,3547,3.139,3548,4.12,3549,3.139,3550,3.512,3551,4.451,3552,4.953,3553,6.848,3554,5.697,3555,4.953,3556,3.512,3557,4.451,3558,4.953]],["tags/Computer Science learning pathways",[2302,1.639,3559,2.238]],["title/Over het introduceren van bedrijfsethiek",[116,1.027,495,2.482,546,2.076,3560,3.953,3561,3.953]],["content/Over het introduceren van bedrijfsethiek",[19,0.329,116,0.996,129,3.337,131,0.816,493,5.074,495,5.463,497,4.442,498,6.254,504,5.377,506,4.357,510,5.377,511,4.865,512,2.905,517,0.875,522,2.704,524,4.745,527,4.357,529,3.55,530,3.026,532,4.042,533,2.905,534,3.337,536,5.197,537,2.62,540,4.925,546,4.361,568,2.704,593,4.357,597,3.167,601,4.745,602,4.311,605,5.961,606,4.199,614,5.301,630,1.181,634,4.442,638,2.905,640,4.82,680,2.62,682,3.337,684,4.82,688,3.477,690,3.55,694,5.37,705,1.52,711,2.187,715,3.159,738,3.55,742,3.55,743,3.55,744,3.906,760,3.784,774,4.722,792,3.906,801,2.704,807,3.906,809,3.337,812,3.337,831,4.37,848,3.55,856,4.195,875,5.538,890,4.195,894,3.55,905,3.55,1052,3.55,1073,3.337,1112,3.55,1137,2.799,1138,3.834,1163,4.574,1185,2.62,1203,2.543,1204,3.167,1208,4.82,1223,3.337,1230,3.55,1274,1.864,1369,1.684,2230,2.013,2337,4.042,2759,3.231,3241,2.075,3324,5.127,3331,3.337,3337,3.167,3339,3.55,3387,3.337,3395,3.167,3404,3.834,3420,3.167,3421,3.337,3426,4.37,3431,3.55,3450,2.905,3560,3.834,3561,3.834,3562,4.267,3563,2.704,3564,3.55,3565,3.55,3566,3.55,3567,3.55,3568,4.267,3569,4.267,3570,4.267,3571,4.267,3572,6.018,3573,4.267,3574,4.267,3575,4.267,3576,4.267,3577,4.267,3578,4.267,3579,4.267,3580,4.267,3581,4.267,3582,5.538,3583,4.267,3584,4.267,3585,4.267,3586,4.267,3587,4.267,3588,4.267,3589,4.267,3590,4.267,3591,3.834,3592,3.337,3593,6.163,3594,3.834,3595,4.267,3596,5.538,3597,4.267,3598,4.267,3599,3.834,3600,4.267,3601,4.267,3602,7.234,3603,3.337,3604,4.267,3605,4.267,3606,4.267,3607,4.267,3608,4.267,3609,3.834,3610,3.834,3611,4.267,3612,4.267,3613,4.267,3614,3.834,3615,3.834,3616,3.834,3617,4.267,3618,3.834,3619,4.267,3620,4.267,3621,4.267,3622,4.267,3623,3.55,3624,3.167,3625,6.163,3626,3.55,3627,4.267,3628,3.834,3629,4.267,3630,6.163,3631,3.834,3632,4.267,3633,4.267,3634,3.906,3635,4.267,3636,4.267,3637,3.55,3638,4.267,3639,3.55,3640,5.538,3641,4.267,3642,4.267,3643,4.267,3644,4.267,3645,5.127,3646,4.267,3647,7.234,3648,7.234,3649,7.234,3650,7.234,3651,4.267,3652,3.337,3653,6.163,3654,4.267,3655,4.267,3656,4.267,3657,4.267,3658,4.267,3659,4.267,3660,4.267,3661,4.267,3662,4.267,3663,4.267,3664,4.267,3665,3.834,3666,4.267,3667,4.267,3668,3.55,3669,3.834,3670,6.163,3671,4.267,3672,4.267,3673,4.267,3674,6.163,3675,4.267,3676,4.267,3677,2.905,3678,4.267,3679,5.538,3680,4.267,3681,4.267,3682,4.267,3683,4.267,3684,4.267,3685,4.267,3686,4.267,3687,4.267,3688,4.267,3689,4.267,3690,3.834,3691,4.267,3692,4.267,3693,4.267,3694,4.267,3695,4.267,3696,4.267,3697,3.337,3698,4.267,3699,4.267,3700,4.267,3701,4.267,3702,3.55,3703,4.267,3704,4.267,3705,4.267,3706,4.267,3707,4.267]],["tags/Over het introduceren van bedrijfsethiek",[]],["title/A Ph.D. Thesis Proposal",[2385,3.579,3507,4.05,3708,4.539]],["content/A Ph.D. Thesis Proposal",[19,0.356,116,1.416,158,0.529,297,1.858,372,1.707,399,2.417,407,1.765,493,4.139,495,5.634,497,3.723,498,5.983,502,3.097,504,5.506,505,3.097,506,4.931,510,4.814,511,5.114,512,2.84,516,2.84,517,0.856,522,2.645,527,4.779,529,3.471,532,2.737,535,5.065,537,2.562,540,2.84,546,4.419,568,3.843,573,4.3,588,6.132,593,4.312,597,3.097,600,2.84,601,2.737,602,3.614,605,4.128,606,4.626,614,4.813,615,5.449,618,3.749,630,1.154,634,5.335,638,2.84,640,3.263,643,5.065,662,3.749,663,3.749,664,3.749,676,2.737,680,2.562,682,3.263,684,4.742,694,4.501,695,3.471,699,5.302,705,1.486,738,5.044,750,2.737,752,3.471,767,2.84,774,4.257,793,2.959,807,2.645,870,3.263,877,1.214,985,1.678,1143,3.471,1144,2.959,1146,1.367,1163,4.501,1185,6.132,1187,3.263,1204,3.097,1255,3.471,1275,3.471,1283,0.439,1369,2.511,1387,3.471,1471,2.737,1608,1.86,1688,2.562,2053,2.093,2183,3.561,2375,2.239,2385,2.737,2564,3.421,2983,3.749,3130,2.645,3216,4.664,3241,2.64,3333,4.501,3341,5.449,3343,3.749,3347,4.3,3366,3.471,3395,3.097,3400,3.471,3401,4.501,3411,3.749,3426,2.959,3428,3.471,3448,3.749,3450,4.128,3451,5.044,3458,2.562,3477,2.737,3487,2.959,3496,2.093,3507,3.097,3546,2.139,3567,3.471,3591,5.449,3592,4.742,3603,3.263,3616,3.749,3618,3.749,3624,3.097,3634,2.645,3637,3.471,3645,3.471,3652,3.263,3665,3.749,3669,5.449,3677,4.128,3702,5.044,3708,3.471,3709,3.749,3710,2.959,3711,5.449,3712,6.063,3713,4.172,3714,4.172,3715,4.172,3716,5.449,3717,8.329,3718,6.063,3719,7.143,3720,4.172,3721,4.172,3722,4.172,3723,4.172,3724,4.172,3725,4.172,3726,4.172,3727,3.749,3728,5.449,3729,4.172,3730,4.172,3731,4.172,3732,4.172,3733,4.172,3734,3.749,3735,4.172,3736,4.172,3737,4.172,3738,3.749,3739,4.172,3740,4.172,3741,4.172,3742,4.172,3743,4.172,3744,4.172,3745,6.063,3746,7.143,3747,4.172,3748,6.063,3749,3.471,3750,7.143,3751,4.172,3752,3.749,3753,4.172,3754,4.172,3755,4.172,3756,6.063,3757,3.749,3758,4.172,3759,4.172,3760,4.172,3761,5.449,3762,4.172,3763,4.172,3764,4.172,3765,3.471,3766,4.172,3767,3.749,3768,3.471,3769,4.172,3770,4.172,3771,4.172,3772,4.172,3773,4.172,3774,4.172,3775,6.063,3776,4.172,3777,4.172,3778,4.172,3779,4.172,3780,6.063,3781,4.172,3782,4.172,3783,4.172,3784,4.172,3785,4.172,3786,4.172,3787,3.263,3788,4.172,3789,4.172,3790,4.172,3791,4.172,3792,4.172,3793,4.172,3794,4.172,3795,6.063,3796,4.172,3797,4.172,3798,4.172,3799,4.172,3800,4.172,3801,4.172,3802,4.172,3803,3.749,3804,4.172,3805,4.172,3806,4.172,3807,4.172]],["tags/A Ph.D. Thesis Proposal",[3559,2.984]],["title/Reverse engineering a curriculum",[3241,1.837,3480,3.35,3482,3.869]],["content/Reverse engineering a curriculum",[3,1.487,5,1.377,19,0.429,20,1.379,21,2.785,22,0.952,28,1.225,29,2.408,48,1.775,50,0.607,55,1.828,59,1.567,60,1.568,73,1.075,74,1.453,77,1.527,79,0.34,83,2.252,84,2.499,88,2.813,90,2.351,93,3.698,95,2.351,97,3.244,98,1.109,101,0.434,113,0.986,117,3.268,133,1.912,144,1.155,148,1.567,155,3.268,157,2.39,158,0.631,165,1.741,167,2.723,175,1.379,208,3.511,216,0.867,241,2.107,263,0.817,264,2.222,271,1.801,277,2.125,288,1.149,312,1.527,330,2.182,375,0.798,378,1.109,404,1.109,409,1.396,455,1.701,457,1.396,476,2.178,487,2.315,491,2.222,492,2.554,517,1.022,621,1.951,623,2.74,754,2.811,782,0.909,913,2.499,919,2.38,973,3.391,993,2.447,1003,2.612,1146,1.632,1159,2.767,1236,2.398,1278,1.61,1283,0.828,1290,2.612,1332,3.576,1335,2.56,1339,2.135,1369,1.879,1401,2.222,1415,2.415,1541,2.192,1623,1.677,1655,2.813,1657,2.107,1678,2.86,1701,4.145,1711,2.038,1721,1.01,1725,2.45,1755,2.74,1763,2.86,1785,1.567,1932,4.097,1979,3.698,2024,2.674,2052,2.612,2053,4.468,2062,2.072,2063,3.118,2070,2.554,2108,2.398,2115,2.306,2302,1.912,2306,2.306,2318,1.588,2341,2.499,2439,4.477,2447,3.059,2456,3.059,2457,4.258,2458,3.879,2476,2.811,2496,4.477,2564,2.811,2576,2.107,2592,2.499,2641,2.969,2655,2.005,2681,2.969,2825,2.74,2892,3.268,2915,4.477,2928,3.984,2948,2.887,2962,3.268,3005,2.811,3035,2.263,3044,2.887,3178,2.887,3203,3.984,3216,2.674,3241,2.858,3300,3.391,3482,4.876,3483,3.715,3504,3.896,3524,2.74,3546,2.554,3550,3.533,3563,3.158,3808,4.982,3809,4.477,3810,3.896,3811,4.982,3812,4.982,3813,4.477,3814,3.158,3815,4.982,3816,4.982,3817,4.982,3818,4.982,3819,3.896,3820,4.982,3821,3.698,3822,3.698,3823,4.477,3824,7.628,3825,4.982,3826,5.377,3827,4.982,3828,4.982,3829,4.982,3830,4.477,3831,4.982,3832,4.982,3833,4.477,3834,3.896,3835,4.145,3836,4.145,3837,7.075,3838,6.301,3839,3.268,3840,4.982,3841,4.477,3842,4.477,3843,4.145,3844,4.982,3845,3.896,3846,4.982,3847,4.982,3848,3.391,3849,4.477,3850,6.875,3851,4.982,3852,3.698,3853,3.698,3854,4.982,3855,4.982,3856,4.982,3857,3.533,3858,4.477,3859,4.982,3860,4.145,3861,4.982,3862,4.477]],["tags/Reverse engineering a curriculum",[2302,1.639,3559,2.238]],["title/Over de inflatie van intellect",[116,1.027,546,2.076,606,1.962,3863,4.399,3864,4.399]],["content/Over de inflatie van intellect",[19,0.351,79,0.275,97,1.905,116,1.637,158,0.512,184,1.993,460,1.905,493,4.473,495,5.604,496,3.359,497,3.635,498,6.236,502,2.997,504,5.274,506,4.246,510,5.703,511,5.274,512,4.03,522,3.753,524,5.064,527,3.855,532,4.598,536,2.649,537,3.635,540,4.772,546,4.383,568,3.753,587,2.997,588,3.158,593,4.724,597,2.997,600,2.749,601,2.649,602,3.528,606,4.623,613,2.863,614,4.764,634,2.479,643,2.863,679,3.629,680,4.304,686,3.629,688,3.955,705,1.439,744,2.559,745,2.649,750,5.064,753,3.359,760,3.635,767,5.595,774,4.898,792,3.753,807,2.559,825,2.997,831,4.198,848,4.925,856,4.03,867,3.629,877,1.175,890,2.749,1055,3.359,1093,3.629,1185,5.45,1203,2.406,1227,3.629,1255,3.359,1264,3.359,1421,2.649,1456,3.359,1501,2.021,2339,1.943,2342,4.925,2392,2.167,3050,2.406,3324,3.359,3330,3.629,3333,2.997,3337,2.997,3347,4.971,3353,3.629,3357,3.158,3387,3.158,3393,3.158,3405,4.925,3417,2.997,3420,4.395,3426,2.863,3428,5.832,3450,2.749,3461,3.629,3477,2.649,3565,3.359,3572,3.359,3603,3.158,3631,3.629,3634,3.753,3639,3.359,3668,3.359,3677,4.772,3697,3.158,3716,5.32,3749,3.359,3768,3.359,3787,3.158,3803,3.629,3865,4.038,3866,4.63,3867,4.038,3868,4.038,3869,4.038,3870,3.629,3871,4.038,3872,4.038,3873,5.92,3874,4.038,3875,3.359,3876,4.038,3877,3.158,3878,4.038,3879,3.359,3880,4.038,3881,4.038,3882,5.92,3883,4.038,3884,4.038,3885,2.863,3886,4.038,3887,4.038,3888,4.038,3889,4.038,3890,5.92,3891,4.038,3892,4.038,3893,3.629,3894,4.038,3895,4.038,3896,4.038,3897,5.92,3898,4.038,3899,3.629,3900,3.629,3901,4.038,3902,4.038,3903,4.038,3904,3.629,3905,2.559,3906,4.925,3907,4.038,3908,2.221,3909,2.997,3910,5.92,3911,3.359,3912,4.038,3913,4.038,3914,4.038,3915,5.92,3916,4.038,3917,4.038,3918,5.92,3919,5.92,3920,4.038,3921,4.038,3922,4.038,3923,4.038,3924,3.629,3925,4.038,3926,4.038,3927,2.749,3928,4.038,3929,4.038,3930,3.629,3931,5.32,3932,4.038,3933,4.038,3934,3.629,3935,3.629,3936,4.038,3937,2.479,3938,3.629,3939,3.359,3940,2.997,3941,4.038,3942,4.038,3943,4.038,3944,4.038,3945,3.629,3946,4.038,3947,7.72,3948,4.038,3949,4.038,3950,4.038,3951,4.038,3952,3.359,3953,4.038,3954,4.63,3955,4.038,3956,4.038,3957,4.038,3958,4.038,3959,4.038,3960,4.038,3961,3.629,3962,3.629,3963,4.038,3964,4.038,3965,3.629,3966,4.038,3967,4.038,3968,4.038,3969,5.92,3970,4.038,3971,4.038,3972,4.038,3973,3.629,3974,4.038,3975,4.038,3976,4.038,3977,4.038,3978,3.359,3979,3.629,3980,4.038,3981,3.359,3982,3.629,3983,4.038,3984,2.649,3985,4.038,3986,4.038,3987,4.038,3988,5.32,3989,4.038,3990,4.038,3991,4.038,3992,4.038,3993,4.038,3994,3.359,3995,3.629,3996,4.038,3997,4.038,3998,4.038,3999,4.038,4000,3.158,4001,4.038,4002,4.038,4003,4.038,4004,4.038,4005,4.038,4006,4.038,4007,3.359,4008,4.038,4009,4.038,4010,4.038,4011,4.038,4012,4.038,4013,4.038,4014,4.038,4015,4.038,4016,3.629,4017,3.629,4018,4.038,4019,4.038,4020,4.038,4021,4.038,4022,4.038,4023,3.629,4024,4.038,4025,4.038,4026,4.038]],["tags/Over de inflatie van intellect",[]],["title/Over tijdsbesef",[116,1.448,4027,6.201]],["content/Over tijdsbesef",[14,0.673,17,0.548,19,0.265,64,2.233,79,0.27,116,0.924,221,2.807,235,2.43,330,1.733,484,1.646,489,3.095,493,4.014,495,5.44,497,5.981,498,6.12,500,3.293,502,2.938,504,6.19,506,3.81,509,3.557,510,5.674,511,2.43,512,2.694,522,2.509,524,3.826,526,3.557,527,3.81,530,2.807,532,2.596,533,2.694,535,4.137,536,5.937,537,2.43,546,4.55,568,4.392,586,2.511,587,2.938,593,3.208,599,3.971,600,3.971,601,2.596,602,4.129,605,5.205,606,4.472,610,3.095,614,4.96,634,4.695,638,3.971,656,5.764,661,4.562,680,3.582,683,3.557,688,3.909,690,4.853,695,3.293,698,1.452,699,2.938,742,3.293,743,3.293,744,2.509,745,4.544,750,4.544,760,5.415,767,2.694,773,3.557,774,5.083,791,3.557,792,4.392,793,4.137,807,2.509,856,2.694,870,4.562,946,2.359,1073,4.562,1094,3.557,1137,2.596,1144,4.137,1151,3.557,1185,4.254,1187,4.562,1230,3.293,1387,4.853,1486,3.293,2183,1.798,2332,3.557,2341,1.985,2374,1.674,2392,2.124,2538,2.807,2564,3.291,2661,2.124,2838,3.557,3259,5.764,3333,2.938,3337,2.938,3357,3.095,3368,3.095,3393,3.095,3395,5.143,3401,5.675,3405,3.293,3413,3.293,3417,5.143,3430,3.293,3450,2.694,3467,3.293,3477,3.826,3564,3.293,3594,3.557,3615,3.557,3624,2.938,3634,3.698,3677,2.694,3727,3.557,3870,3.557,3899,5.243,3909,6.547,3937,2.43,3981,3.293,3995,5.243,4000,3.095,4028,3.958,4029,3.958,4030,5.834,4031,5.834,4032,3.958,4033,5.834,4034,5.834,4035,5.834,4036,6.928,4037,6.928,4038,3.958,4039,3.958,4040,3.958,4041,5.834,4042,3.958,4043,3.958,4044,3.958,4045,3.958,4046,3.958,4047,3.958,4048,3.958,4049,3.095,4050,3.095,4051,5.243,4052,3.557,4053,5.834,4054,3.557,4055,3.958,4056,3.958,4057,3.958,4058,3.958,4059,3.958,4060,3.958,4061,3.958,4062,3.557,4063,3.958,4064,5.243,4065,5.243,4066,3.958,4067,3.958,4068,3.557,4069,3.958,4070,3.958,4071,3.958,4072,3.958,4073,3.557,4074,3.958,4075,3.958,4076,3.958,4077,6.226,4078,5.834,4079,3.958,4080,3.557,4081,3.557,4082,3.958,4083,3.958,4084,3.958,4085,5.834,4086,3.958,4087,3.958,4088,3.958,4089,3.958,4090,5.834,4091,3.958,4092,3.958,4093,3.958,4094,3.958,4095,3.958,4096,3.095,4097,3.958,4098,1.905,4099,3.557,4100,3.958,4101,3.958,4102,3.557,4103,2.938,4104,3.958,4105,7.646,4106,3.958,4107,3.958,4108,3.293,4109,3.958,4110,3.958,4111,6.928,4112,3.958,4113,3.958,4114,5.834,4115,3.958,4116,3.958,4117,3.958,4118,3.958,4119,3.557,4120,3.958,4121,3.958,4122,3.958,4123,3.958,4124,3.958,4125,5.834,4126,3.958,4127,3.958,4128,3.958,4129,3.557,4130,3.958,4131,3.958,4132,3.958,4133,3.958,4134,3.958,4135,3.958,4136,3.958,4137,3.958,4138,3.095,4139,3.958,4140,3.958,4141,3.958,4142,3.958,4143,3.958,4144,3.958,4145,3.958,4146,3.958,4147,3.293,4148,3.958,4149,3.557,4150,3.958,4151,3.958,4152,3.958,4153,3.293,4154,3.958,4155,3.958,4156,3.958,4157,3.958,4158,3.958]],["tags/Over tijdsbesef",[]],["title/Boeken die mij gevormd hebben tot wie ik ben",[506,1.744,573,2.248,1185,1.947,3373,2.637,3477,2.079,3634,2.009,3677,2.158,4159,3.17,4160,2.849]],["content/Boeken die mij gevormd hebben tot wie ik ben",[19,0.265,65,1.167,486,2.177,489,5.98,492,2.029,493,4.724,495,5.106,497,4.695,498,5.674,502,2.938,504,5.006,505,2.938,506,4.851,507,3.557,510,5.558,511,4.695,522,5.406,524,3.826,527,4.205,532,4.544,533,2.694,534,3.095,535,4.137,536,4.544,537,2.43,546,4.636,564,2.601,573,4.137,587,4.33,593,4.205,599,2.694,600,3.971,602,5.083,606,4.472,610,3.095,613,4.137,614,4.734,634,2.43,643,4.913,645,4.33,680,4.695,682,3.095,688,2.233,744,4.846,745,2.596,760,3.582,762,2.807,767,3.971,774,5.679,792,2.509,802,3.293,807,2.509,808,4.562,831,2.807,877,1.152,890,4.717,1107,3.557,1137,2.596,1141,5.764,1142,5.243,1143,3.293,1144,2.807,1163,2.938,1185,6.033,1211,3.095,1333,1.593,1376,3.293,1455,3.557,2183,1.798,2392,2.124,2457,2.927,2528,2.075,2693,3.095,2814,2.509,3045,3.557,3046,3.557,3299,6.67,3339,3.293,3347,5.422,3351,3.557,3364,3.293,3366,3.293,3373,7.095,3387,3.095,3395,2.938,3401,4.33,3406,7.227,3417,2.938,3419,3.293,3420,2.938,3421,3.095,3450,3.971,3451,3.293,3465,3.557,3477,3.826,3564,3.293,3565,4.853,3566,3.293,3596,3.557,3624,2.938,3634,4.846,3645,3.293,3677,4.717,3679,3.557,3690,3.557,3749,3.293,3768,3.293,3787,4.562,3819,3.095,3875,4.853,3877,5.98,3879,3.293,3905,2.509,3906,3.293,3909,4.33,3931,3.557,3934,3.557,3952,3.293,3954,3.095,3965,3.557,3979,3.557,3981,3.293,4017,3.557,4023,3.557,4051,3.557,4161,3.958,4162,5.834,4163,3.958,4164,3.557,4165,3.958,4166,3.293,4167,3.958,4168,3.557,4169,3.557,4170,3.958,4171,3.958,4172,3.958,4173,3.958,4174,3.557,4175,3.557,4176,3.958,4177,2.938,4178,2.807,4179,3.958,4180,3.958,4181,3.958,4182,3.958,4183,3.958,4184,3.958,4185,3.958,4186,3.958,4187,3.958,4188,3.958,4189,3.958,4190,3.958,4191,5.834,4192,3.958,4193,2.293,4194,3.958,4195,3.958,4196,3.958,4197,3.958,4198,3.958,4199,3.557,4200,5.834,4201,3.293,4202,3.958,4203,3.958,4204,6.928,4205,3.958,4206,3.958,4207,3.958,4208,2.694,4209,6.928,4210,5.834,4211,3.958,4212,3.958,4213,3.293,4214,3.958,4215,3.958,4216,3.958,4217,3.958,4218,3.958,4219,3.958,4220,3.958,4221,3.557,4222,3.958,4223,3.557,4224,3.958,4225,3.958,4226,3.958,4227,3.958,4228,3.958,4229,3.958,4230,3.958,4231,3.958,4232,3.958,4233,3.958,4234,3.958,4235,3.958,4236,5.834,4237,5.834,4238,3.958,4239,3.958,4240,3.958,4241,3.958,4242,3.958,4243,3.958,4244,3.958,4245,3.958,4246,3.958,4247,3.958,4248,3.557,4249,3.958,4250,3.958,4251,3.958,4252,3.958,4253,3.958,4254,3.958,4255,5.834,4256,3.958,4257,3.958,4258,3.958,4259,3.958,4260,3.958,4261,3.958,4262,3.958,4263,3.958,4264,3.958,4265,3.958,4266,3.557,4267,3.958,4268,3.958,4269,3.958,4270,3.958,4271,3.958,4272,3.958,4273,3.958,4274,3.958,4275,3.958,4276,3.095,4277,3.958,4278,3.958,4279,3.958,4280,3.958,4281,3.293,4282,3.958,4283,3.958,4284,3.971,4285,3.557,4286,3.958,4287,3.958,4288,3.557,4289,3.958,4290,3.958,4291,3.958,4292,3.958,4293,3.958,4294,3.958,4295,3.293,4296,3.958,4297,3.958]],["tags/Boeken die mij gevormd hebben tot wie ik ben",[]],["title/Domain Driven Design in C",[472,1.899,1281,3.454,1611,2.212,1945,1.574]],["content/Domain Driven Design in C",[5,1.325,10,0.531,17,0.652,19,0.485,23,3.446,26,0.81,27,0.612,52,0.603,61,2.268,67,1.655,73,0.737,85,2.109,90,2.223,104,0.676,113,0.933,119,2.808,123,2.268,131,0.901,132,2.224,142,2.223,144,0.791,179,0.88,203,1.025,208,2.101,216,0.82,223,1.1,240,0.978,263,0.773,330,3.347,367,1.781,368,3.217,375,0.754,384,1.062,388,1.523,395,2.268,430,1.371,435,2.028,472,3.759,478,2.579,480,3.685,487,1.586,492,2.416,513,8.02,517,1.567,520,6.898,549,2.529,565,2.893,566,3.004,579,3.57,580,3.471,595,2.808,623,4.203,630,1.304,647,3.207,697,3.92,725,5.351,757,2.223,853,2.342,903,1.928,913,2.364,915,2.591,932,1.928,937,5.705,951,1.154,985,2.115,1017,4.576,1020,1.703,1062,1.896,1067,3.92,1087,3.92,1096,2.591,1146,1.543,1161,2.064,1213,2.73,1236,2.268,1283,0.804,1296,1.037,1300,2.14,1334,2.064,1352,2.268,1426,1.407,1511,2.471,1548,4.192,1611,3.004,1616,4.234,1617,1.96,1619,2.416,1651,2.893,1659,3.233,1687,0.966,1710,2.181,1725,1.679,1764,1.037,1771,5.502,1785,1.482,1787,2.591,1809,3.341,1930,2.591,1944,3.497,1949,2.808,1965,2.258,1971,2.73,2007,1.586,2015,2.529,2028,1.754,2043,2.416,2052,3.468,2059,2.808,2061,3.207,2115,2.181,2127,2.808,2144,2.658,2159,2.893,2165,2.028,2406,3.341,2437,4.234,2464,3.09,2668,2.181,2691,1.993,2707,3.341,2733,3.09,2756,2.028,2845,3.497,2925,3.207,3087,3.341,3108,3.497,3255,3.09,3278,4.938,3455,3.341,3518,2.893,4298,2.987,4299,3.685,4300,4.712,4301,4.712,4302,3.92,4303,4.712,4304,4.712,4305,4.712,4306,4.712,4307,4.712,4308,5.672,4309,7.731,4310,4.712,4311,4.712,4312,8.524,4313,4.712,4314,4.712,4315,7.642,4316,6.614,4317,5.502,4318,6.614,4319,6.614,4320,3.09,4321,3.92,4322,4.712,4323,3.497,4324,8.728,4325,4.234,4326,3.92,4327,4.712,4328,4.712,4329,4.712,4330,3.207,4331,4.234]],["tags/Domain Driven Design in C",[472,2.036,1980,2.842]],["title/Productivity Tools on all platforms",[1333,2.196,1501,1.863,1505,2.861]],["content/Productivity Tools on all platforms",[5,1.357,6,0.658,10,0.763,14,0.828,17,0.674,19,0.416,22,0.932,27,0.778,28,0.868,29,1.383,30,1.455,37,2.75,42,1.513,46,1.994,47,1.533,50,0.594,51,2.174,52,0.71,70,1.575,73,0.762,74,0.9,79,0.332,94,1.6,96,1.762,103,1.332,104,1.313,121,1.437,131,0.932,144,0.819,145,2.062,154,1.073,157,1.194,158,0.617,165,1,179,1.453,184,1.641,200,1.962,203,1.473,208,2.174,216,0.848,217,1.861,223,1.817,240,1.011,261,3.457,266,2.174,270,4.442,271,1.762,274,3.812,293,1,295,3.472,304,2.135,375,0.78,378,1.085,384,1.526,388,1.575,413,2.394,416,2.135,418,1.664,443,2.294,455,2.312,457,1.366,465,1.843,482,3.924,484,2.027,517,1,567,2.905,580,2.214,596,2.378,630,1.349,650,3.812,700,2.499,705,1.737,728,1.815,754,4.39,897,1.494,910,2.681,945,2.062,1060,3.09,1078,2.993,1146,1.597,1229,2.898,1260,1.437,1270,4.442,1274,2.048,1278,1.575,1279,1.023,1283,0.513,1289,0.828,1291,1.268,1294,3.618,1295,4.638,1296,1.073,1315,1.994,1317,2.448,1333,3.91,1348,2.062,1364,3.197,1365,4.38,1368,5.634,1369,1.332,1415,1.712,1420,1.815,1426,2.324,1430,2.394,1487,3.349,1493,2.905,1494,3.618,1498,5.296,1499,3.457,1501,2.312,1505,3.551,1506,3.635,1507,4.38,1520,4.055,1522,3.457,1547,4.055,1552,3.472,1557,1.712,1582,1.962,1583,2.131,1584,3.924,1586,1.513,1594,3.924,1597,3.618,1687,1.389,1740,3.318,1764,1.49,1778,1.994,1784,2.616,1789,4.933,1858,2.062,1872,2.214,1885,4.509,1938,2.445,1950,1.843,1972,2.499,2004,2.75,2031,2.905,2051,3.197,2087,2.556,2165,2.915,2238,4.055,2381,3.812,2403,3.197,2648,4.158,2665,2.556,2699,1.843,2707,3.457,2748,4.158,2830,2.993,2881,1.994,2888,4.38,2945,2.556,2971,4.293,3031,2.993,3257,2.905,3319,2.499,3483,2.3,3826,5.296,4332,4.874,4333,4.38,4334,4.38,4335,4.874,4336,4.874,4337,4.874,4338,2.824,4339,4.158,4340,6.242,4341,7.557,4342,4.055,4343,4.874,4344,4.055,4345,4.874,4346,4.874,4347,3.197,4348,3.812,4349,4.874,4350,3.812,4351,4.38,4352,5.027,4353,2.993,4354,4.874,4355,3.457,4356,4.38,4357,4.874,4358,2.993,4359,4.38,4360,4.874,4361,4.874,4362,4.874,4363,4.874,4364,4.874,4365,4.874,4366,4.055,4367,4.874,4368,4.874,4369,4.055,4370,3.618,4371,4.874,4372,3.457,4373,4.874,4374,6.772,4375,3.812,4376,4.874,4377,4.874,4378,4.874,4379,4.874,4380,4.874,4381,3.812,4382,6.772,4383,4.874,4384,4.874,4385,4.38,4386,3.812]],["tags/Productivity Tools on all platforms",[1333,1.718,1501,1.457]],["title/A Decade in the Software Engineering industry",[1369,1.331,3216,2.614,3241,1.64,4387,3.809]],["content/A Decade in the Software Engineering industry",[0,1.013,6,1.361,10,0.757,11,1.422,13,1.518,14,0.82,17,1.071,19,0.306,20,1.861,21,2.034,22,1.48,24,1.639,25,1.319,26,1.156,27,0.775,28,0.86,41,2.53,50,0.588,67,1.695,70,1.559,73,0.754,74,1.429,76,1.255,79,0.329,85,1.539,101,0.421,104,1.309,114,3.794,121,1.422,131,1.48,142,2.277,144,1.129,145,3.275,149,1.647,150,1.182,154,1.062,158,0.611,159,1.479,179,1.256,185,1.369,187,3.165,196,1.422,203,1.05,220,2.474,223,1.127,234,2.323,240,1.001,253,2.041,258,2.152,263,1.103,275,0.956,277,1.303,282,2.67,291,1.911,304,2.114,316,2.53,317,1.625,320,1.335,374,3.582,384,1.087,404,1.075,416,2.946,418,2.296,430,1.404,441,1.087,455,1.647,471,2.53,476,2.523,484,3.662,491,2.152,517,1.379,586,2.077,621,1.369,630,2.142,698,1.77,705,2.758,715,3.448,724,2.403,897,1.479,908,1.797,912,0.773,919,1.671,921,1.184,929,1.982,947,2.722,951,1.182,957,2.796,1215,3.165,1229,2.882,1279,1.412,1291,2.178,1301,2.654,1315,1.974,1327,1.518,1328,4.337,1369,2.115,1409,3.059,1425,2.233,1501,1.647,1506,2.59,1512,2.37,1577,2.192,1613,2.421,1615,2.796,1623,1.625,1646,3.165,1648,1.539,1659,2.041,1687,1.379,1719,2.233,1763,2.007,1778,1.974,1785,2.435,1791,2.654,1794,1.942,1881,2.007,1950,1.824,1969,0.83,2024,2.59,2052,3.526,2053,2.421,2115,2.233,2116,2.152,2254,2.946,2289,1.77,2302,1.852,2318,1.539,2326,2.963,2331,4.015,2339,2.323,2375,2.59,2377,3.165,2397,2.876,2480,2.59,2513,4.337,2521,3.774,2529,6.548,2574,4.337,2576,2.041,2593,4.015,2614,3.774,2672,3.285,2691,3.275,2718,4.015,2882,3.774,2945,2.53,2994,2.963,2995,2.654,3013,2.654,3019,2.963,3140,2.876,3145,2.323,3160,4.129,3171,4.015,3203,2.796,3216,4.726,3224,2.53,3241,2.264,3245,3.059,3254,2.192,3262,2.796,3264,2.53,3454,2.277,3504,3.774,3546,2.474,3728,4.337,3838,3.582,4338,2.796,4388,3.582,4389,3.582,4390,3.774,4391,4.992,4392,4.826,4393,4.826,4394,4.015,4395,4.337,4396,2.152,4397,3.582,4398,2.876,4399,4.907,4400,4.337,4401,4.015,4402,2.277,4403,3.774,4404,4.015,4405,4.826,4406,4.826,4407,4.826,4408,3.422,4409,3.774,4410,3.285,4411,3.774,4412,4.337,4413,4.337,4414,6.044,4415,4.015,4416,4.826,4417,3.969,4418,4.826,4419,2.796,4420,4.826,4421,3.774,4422,3.059,4423,4.337,4424,3.774,4425,4.015,4426,2.963,4427,4.015,4428,2.876]],["tags/A Decade in the Software Engineering industry",[476,0.945,2254,1.496,3022,2.842]],["title/The Startup of a Lean Doctorate",[1994,4.05,4429,3.714,4430,4.05]],["content/The Startup of a Lean Doctorate",[6,0.708,10,0.591,18,1.718,19,0.367,21,1.586,26,0.902,27,0.748,29,1.488,47,1.65,50,0.639,52,0.872,59,1.65,74,1.492,75,1.026,77,1.607,87,1.168,90,3.36,91,1.868,94,1.91,99,1.488,104,1.022,123,2.524,131,1.002,133,2.013,148,1.65,153,1.79,157,1.284,158,0.902,165,1.86,179,0.979,213,2.688,216,0.912,275,1.038,282,1.672,293,1.076,294,1.953,312,1.607,320,1.451,330,2.297,361,1.816,367,1.982,375,0.84,384,1.182,435,2.257,437,2.045,441,1.182,444,1.868,455,2.431,490,2.75,492,2.688,567,3.125,623,3.916,630,1.451,722,2.734,816,3.44,903,2.145,912,0.84,919,1.816,950,3.427,994,2.382,1008,3.329,1069,1.546,1193,1.896,1238,3.719,1274,1.586,1279,1.101,1281,3.719,1283,0.552,1287,3.892,1296,1.154,1297,2.884,1298,3.742,1335,1.953,1369,1.433,1415,2.501,1481,3.125,1533,2.427,1557,1.842,1608,2.338,1633,2.338,1659,2.218,1666,2.257,1688,4.372,1741,2.474,1763,2.181,1764,1.567,1811,2.524,1896,4.363,1945,1.695,1969,1.39,1999,2.576,2053,2.631,2063,2.077,2117,3.22,2231,2.884,2282,2.631,2310,3.125,2319,2.884,2335,5.254,2345,4.101,2376,2.815,2385,3.44,2458,4.017,2476,2.958,2490,3.22,2511,2.884,2533,3.038,2564,4.017,2775,2.218,2805,3.046,2854,3.916,2939,3.44,2962,3.44,3130,3.324,3140,4.244,3161,3.44,3241,1.765,3254,4.119,3519,3.536,3559,2.75,3836,4.363,3848,3.57,4302,4.363,4429,3.57,4430,6.731,4431,5.244,4432,4.713,4433,4.363,4434,5.244,4435,5.924,4436,3.892,4437,5.244,4438,5.244,4439,5.244,4440,7.121,4441,4.713,4442,4.101,4443,2.884,4444,3.44,4445,4.101,4446,4.363,4447,5.244,4448,5.244,4449,5.244,4450,4.363,4451,5.748,4452,4.101,4453,5.244,4454,5.244,4455,3.892,4456,4.101,4457,3.44,4458,5.244,4459,3.57,4460,4.101,4461,2.077,4462,4.101,4463,4.819,4464,5.244,4465,3.892,4466,5.244,4467,5.244,4468,5.244,4469,5.244,4470,4.713,4471,5.244,4472,4.713,4473,5.244,4474,5.244,4475,7.121,4476,5.244,4477,5.244,4478,3.57,4479,5.244,4480,3.324,4481,5.244,4482,6.399,4483,5.244,4484,5.244,4485,4.101,4486,5.244]],["tags/The Startup of a Lean Doctorate",[1333,1.146,3559,1.493,4451,1.804,4463,1.696]],["title/Over analoog en digitaal",[116,1.137,614,2.614,4487,4.871,4488,4.871]],["content/Over analoog en digitaal",[14,1.194,131,1.343,158,0.513,184,1.364,295,2.078,376,3.763,486,2.229,489,4.642,492,2.078,493,4.481,495,4.644,496,4.938,497,2.488,498,6.103,504,4.748,506,5.113,510,4.313,511,4.313,517,0.831,522,3.763,527,5.012,530,4.209,533,2.759,536,6.098,537,3.645,540,2.759,545,6.312,546,4.656,568,4.452,586,1.744,593,5.012,599,5.604,602,4.186,605,4.041,606,4.568,614,4.77,630,1.643,633,3.642,634,4.313,638,2.759,643,2.874,645,3.008,661,3.169,680,5.054,684,3.169,688,2.286,733,3.642,744,2.569,750,2.658,752,3.371,760,4.313,774,3.538,792,4.902,793,2.874,802,3.371,856,4.041,871,3.642,877,1.179,890,2.759,893,3.642,1124,4.938,1163,3.008,1185,4.313,1194,2.759,1223,3.169,1228,3.642,1263,3.371,1369,1.92,1475,3.642,1486,3.371,1608,1.807,2077,2.747,2183,2.696,2378,0.739,2588,3.893,2590,4.748,2684,3.77,3331,3.169,3333,4.406,3336,3.642,3374,3.642,3389,3.642,3406,4.642,3419,3.371,3426,4.981,3430,3.371,3467,3.371,3626,3.371,3697,3.169,3734,3.642,3738,3.642,3765,3.371,3893,3.642,3927,2.759,3954,3.169,3973,3.642,4052,3.642,4054,3.642,4065,3.642,4077,3.642,4081,3.642,4096,3.169,4119,3.642,4138,3.169,4147,3.371,4201,3.371,4281,3.371,4295,5.844,4339,2.488,4489,7.024,4490,5.334,4491,5.936,4492,5.936,4493,5.334,4494,4.052,4495,4.052,4496,5.334,4497,4.052,4498,4.052,4499,2.874,4500,4.052,4501,3.169,4502,5.88,4503,5.936,4504,2.658,4505,4.052,4506,4.052,4507,7.024,4508,4.052,4509,4.052,4510,5.936,4511,4.052,4512,4.052,4513,4.052,4514,4.052,4515,4.052,4516,4.052,4517,4.052,4518,4.052,4519,5.334,4520,4.052,4521,4.052,4522,4.052,4523,3.169,4524,3.893,4525,5.936,4526,4.041,4527,2.27,4528,4.052,4529,4.052,4530,4.052,4531,3.169,4532,4.052,4533,3.008,4534,4.052,4535,8.231,4536,4.052,4537,4.052,4538,4.642,4539,4.052,4540,3.642,4541,3.169,4542,4.052,4543,4.052,4544,3.371,4545,4.052,4546,4.052,4547,3.642,4548,4.052,4549,3.683,4550,4.642,4551,3.008,4552,2.415,4553,4.052,4554,3.642,4555,4.052,4556,4.052,4557,4.052,4558,4.052,4559,4.642,4560,4.052,4561,4.938,4562,5.936,4563,5.936,4564,4.052,4565,4.052,4566,4.052,4567,4.052,4568,5.936,4569,5.936,4570,4.052,4571,4.052,4572,4.052,4573,4.052,4574,4.406,4575,2.348,4576,4.052,4577,3.642,4578,4.052,4579,4.052,4580,3.169,4581,3.371,4582,3.371,4583,4.052,4584,4.052,4585,4.052,4586,4.052,4587,4.052,4588,3.642,4589,4.052,4590,4.052,4591,3.642,4592,4.052,4593,4.052,4594,4.052,4595,4.052,4596,4.052,4597,3.642,4598,3.642,4599,4.052,4600,4.052,4601,4.052,4602,4.052,4603,4.052,4604,4.052,4605,3.169,4606,4.052,4607,4.052,4608,4.052,4609,4.052,4610,4.052,4611,4.052,4612,4.052,4613,4.052,4614,4.052,4615,4.052,4616,4.052,4617,4.052,4618,4.052,4619,4.052,4620,4.052,4621,4.052,4622,4.052]],["tags/Over analoog en digitaal",[2378,1.038]],["title/Unit Testing PicoBlaze Assembly files",[596,1.545,1192,2.076,1193,1.59,4623,3.659,4624,3.659]],["content/Unit Testing PicoBlaze Assembly files",[5,0.989,10,0.556,11,1.456,17,0.683,19,0.428,23,2.054,27,0.457,31,3.362,37,5.312,50,0.602,52,0.771,60,1.787,64,4.421,73,0.772,75,1.534,76,1.778,79,0.466,94,1.167,98,1.1,126,3.82,131,1.498,150,1.209,158,0.626,184,1.663,196,1.456,216,0.859,219,2.238,223,1.153,240,1.626,251,1.759,261,4.846,271,1.785,275,0.978,278,1.285,282,2.179,304,2.163,372,3.206,384,1.113,395,3.772,441,1.113,455,2.675,472,1.925,473,2.33,476,1.891,490,2.589,516,3.362,517,1.884,518,2.33,579,2.02,596,3.118,621,1.401,628,2.891,630,2.168,704,5.557,705,1.759,713,3.96,724,1.533,757,2.33,921,0.869,926,2.532,958,2.651,1011,1.759,1020,1.785,1039,4.438,1062,1.988,1082,3.502,1126,6.141,1172,3.96,1192,3.698,1193,3.659,1206,3.239,1234,4.018,1237,1.925,1239,6.519,1242,7.386,1256,3.855,1267,3.849,1274,2.067,1276,1.839,1277,5.335,1279,1.037,1283,0.719,1327,2.793,1331,2.33,1337,2.532,1369,1.35,1422,1.956,1426,1.474,1488,1.956,1490,3.666,1505,2.589,1541,1.574,1583,1.554,1600,2.286,1648,1.574,1651,3.032,1746,2.651,1811,2.377,1881,2.054,1939,3.855,1958,3.362,2028,1.839,2063,1.956,2065,3.502,2077,3.627,2079,4.108,2225,4.846,2231,2.716,2278,4.438,2353,2.054,2388,2.861,2526,3.862,2535,3.362,2588,3.239,2592,2.477,2641,2.943,2748,3.032,2876,2.532,3005,4.771,3078,3.862,3093,3.666,4419,2.861,4429,3.362,4551,3.666,4623,5.685,4624,7.833,4625,4.938,4626,3.666,4627,4.438,4628,4.938,4629,3.362,4630,4.438,4631,4.938,4632,4.938,4633,4.938,4634,4.438,4635,4.938,4636,4.108,4637,3.862,4638,4.938,4639,6.834,4640,4.938,4641,4.938,4642,4.938,4643,4.938,4644,2.943,4645,4.938,4646,4.938,4647,4.438,4648,4.938,4649,6.834,4650,7.836,4651,6.834,4652,6.834,4653,6.834,4654,5.685,4655,4.938,4656,6.834,4657,3.13,4658,3.862,4659,4.938,4660,4.938,4661,4.938,4662,4.938,4663,4.938,4664,4.938,4665,4.938,4666,4.938,4667,4.938,4668,4.938,4669,4.938,4670,4.938,4671,4.938,4672,4.938]],["tags/Unit Testing PicoBlaze Assembly files",[1363,2.24,4623,2.842,4624,2.842]],["title/Archive by year: 2018",[6,0.736,477,2.269,3050,3.251]],["content/Archive by year: 2018",[19,0.436,477,3.513,3050,5.034]],["tags/Archive by year: 2018",[]],["title/A Ph.D. Thesis: Iteration 2",[131,0.931,3507,3.615,3708,4.052,4459,3.316]],["content/A Ph.D. Thesis: Iteration 2",[0,1.481,5,1.036,6,0.952,11,1.524,17,0.976,18,1.694,19,0.321,26,1.381,27,0.743,29,1.467,70,1.671,76,1.346,90,2.44,92,2.918,97,2.44,98,1.152,101,0.615,103,1.413,104,1.153,113,1.397,121,1.524,131,0.989,133,3.31,145,2.188,153,2.408,154,1.552,159,1.585,167,2.048,185,1.467,196,1.524,201,3.082,203,1.125,233,2.265,240,1.073,241,2.188,243,3.668,263,0.848,277,1.904,293,1.061,312,1.585,315,1.036,317,2.375,326,2.54,365,1.955,368,1.627,375,1.285,378,1.152,384,1.165,412,2.106,430,1.505,468,4.045,476,1.952,484,2.151,517,1.061,542,2.997,564,3.146,621,1.467,623,4.415,722,1.985,724,1.606,757,2.44,782,1.464,785,3.392,854,2.349,877,1.505,885,3.699,889,4.303,982,2.594,985,2.221,994,3.204,1146,2.311,1260,1.524,1279,1.086,1283,0.544,1289,0.879,1293,3.392,1314,4.303,1369,2.652,1415,1.816,1557,1.816,1608,2.306,1613,2.594,1614,2.116,1647,3.278,1655,2.116,1687,1.061,1688,3.176,1719,2.394,1881,2.934,1937,4.045,1950,1.955,1962,1.897,2034,2.188,2052,2.712,2062,2.151,2065,3.668,2116,2.306,2183,3.917,2216,3.839,2314,2.652,2317,3.521,2326,3.176,2328,5.435,2341,3.539,2357,3.668,2358,4.087,2385,3.392,2441,3.278,2444,3.839,2457,2.594,2458,2.918,2482,4.045,2483,2.776,2534,3.521,2540,2.997,2541,4.802,2576,2.188,2617,2.997,2672,3.521,2691,2.984,2743,4.648,2805,2.477,2928,2.997,3026,3.176,3031,3.176,3140,4.204,3198,3.392,3216,4.629,3217,4.802,3241,3.209,3319,2.652,3528,3.082,3546,4.627,3547,3.278,3711,4.648,3819,4.045,4429,5.465,4443,2.844,4673,5.172,4674,4.648,4675,5.172,4676,5.172,4677,5.172,4678,5.172,4679,4.303,4680,5.172,4681,3.668,4682,8.028,4683,3.839,4684,5.172,4685,5.869,4686,5.172,4687,5.172,4688,3.839,4689,5.172,4690,5.172,4691,2.712,4692,3.521,4693,3.668,4694,3.668,4695,5.172,4696,5.172,4697,5.172,4698,4.648,4699,5.172,4700,3.839,4701,5.172,4702,5.172,4703,5.172,4704,5.172,4705,5.172,4706,4.648,4707,5.172,4708,5.172,4709,5.172,4710,5.172,4711,4.648,4712,5.172]],["tags/A Ph.D. Thesis: Iteration 2",[3559,2.984]],["title/IT Competences and Certificates",[2672,4.221,4713,4.221]],["content/IT Competences and Certificates",[0,1.094,6,0.703,17,0.721,19,0.411,21,2.438,22,0.996,36,2.324,52,0.647,53,3.02,57,3.418,59,1.64,73,0.815,77,1.597,79,0.355,87,1.161,94,1.231,96,2.563,101,0.754,104,0.748,128,3.303,133,2.001,145,2.205,158,0.66,160,2.283,165,1.069,179,0.973,188,2.765,196,1.536,206,3.548,208,3.162,210,2.412,211,1.804,216,1.234,275,1.032,276,1.292,278,1.356,311,1.597,365,1.97,367,1.97,375,1.135,402,6.62,403,3.162,409,1.46,441,1.174,443,1.536,457,1.46,476,1.442,486,3.9,491,2.324,564,2.324,595,3.106,621,2.012,627,1.941,632,3.9,724,1.618,739,2.94,782,0.951,840,3.303,854,2.367,919,1.804,921,0.918,960,5.487,973,3.548,985,1.962,989,4.354,994,2.367,1069,2.376,1146,1.707,1159,2.098,1193,1.884,1213,3.02,1256,5.389,1260,1.536,1267,2.56,1283,0.548,1289,0.886,1296,1.147,1298,2.412,1300,2.367,1303,2.614,1315,2.132,1327,1.64,1334,2.283,1335,2.641,1369,1.424,1470,2.797,1477,2.614,1514,3.548,1611,2.367,1623,1.755,1659,2.205,1660,3.02,1670,4.076,1719,2.412,1721,1.056,1785,1.64,1794,2.098,1881,2.168,1931,2.132,1965,2.421,1968,4.684,1990,3.418,2004,2.94,2024,3.806,2123,2.508,2328,3.806,2341,4.043,2359,4.336,2377,4.651,2397,3.106,2431,3.02,2444,3.868,2449,3.868,2460,3.2,2515,3.696,2536,2.94,2588,3.418,2594,2.283,2605,2.412,2642,2.032,2672,5.487,2686,3.106,2785,2.098,2789,3.868,2806,2.56,2881,2.132,2891,3.418,2967,3.418,3140,3.106,3145,2.508,3161,3.418,3168,3.696,3208,4.076,3216,2.797,3217,3.548,3241,1.755,3255,3.418,3295,4.226,3516,4.336,3551,4.684,3845,4.076,4402,3.346,4425,4.336,4430,3.868,4444,3.418,4452,4.076,4679,5.899,4688,3.868,4713,3.548,4714,2.94,4715,4.684,4716,3.868,4717,5.212,4718,4.684,4719,4.076,4720,5.212,4721,5.212,4722,4.336,4723,5.212,4724,4.076,4725,5.212,4726,5.212,4727,4.336,4728,5.212,4729,5.212,4730,5.212,4731,5.212,4732,5.212,4733,5.212,4734,5.212,4735,5.212,4736,5.212,4737,4.651,4738,5.212,4739,4.684,4740,5.212,4741,4.226,4742,4.076,4743,4.684,4744,5.212,4745,3.418,4746,3.868,4747,5.212,4748,4.684,4749,3.868,4750,4.684,4751,4.684,4752,4.336,4753,3.2,4754,4.684,4755,4.336,4756,2.508,4757,5.212,4758,5.212,4759,4.336,4760,5.212,4761,5.212,4762,3.418,4763,4.684,4764,5.212,4765,4.076,4766,5.212,4767,5.212]],["tags/IT Competences and Certificates",[2672,2.325,3559,1.791,4713,2.325]],["title/Teaching Object-Oriented design using the GBA",[52,0.366,61,1.93,1945,1.296,2302,1.539,3255,2.63,4768,2.152]],["content/Teaching Object-Oriented design using the GBA",[0,1.057,1,1.326,6,0.934,10,0.78,19,0.315,20,1.393,21,2.094,22,1.324,26,0.866,28,0.897,30,1.503,52,0.815,55,1.847,61,3.333,74,1.461,75,0.985,77,2.122,79,0.581,88,2.059,91,2.82,94,1.636,104,1.326,109,1.962,116,1.175,121,1.484,132,1.465,144,0.845,154,1.108,160,2.205,165,1.032,180,1.342,197,2.84,203,2.097,217,1.204,223,1.175,240,1.045,241,2.929,242,1.847,263,0.825,282,1.605,293,1.032,297,1.542,311,1.542,320,1.393,321,1.82,330,3.033,365,1.903,372,2.059,378,1.121,395,2.423,404,1.542,441,1.134,444,1.793,472,3.759,475,3.088,476,1.916,487,2.87,518,3.267,520,3.736,549,2.702,565,3.091,621,2.246,674,3.736,713,2.917,722,1.932,782,1.444,801,3.191,896,2.917,929,1.484,949,2.581,970,3.091,986,2.84,993,2.473,1011,1.793,1020,1.82,1045,2.639,1066,2.423,1192,2.375,1193,2.503,1215,3.302,1237,2.7,1256,2.84,1260,1.484,1283,0.53,1289,1.177,1293,3.302,1309,3.302,1315,2.059,1327,1.584,1369,1.892,1415,2.78,1487,2.166,1488,1.994,1502,2.917,1506,2.702,1584,2.917,1671,2.094,1678,2.094,1719,2.33,1721,1.02,1785,1.584,1789,3.191,1945,2.238,1950,1.903,1965,1.718,1969,0.866,1985,2.768,2063,1.994,2070,2.581,2080,3.191,2256,3.937,2331,4.188,2365,3.427,2375,2.702,2378,1.685,2388,2.917,2454,3.145,2464,3.302,2473,3.57,2588,3.302,2665,2.639,2755,3.191,2785,2.026,2818,2.33,2935,3.57,2939,3.302,2968,3.427,2969,2.33,2995,2.768,3050,3,3077,2.286,3093,3.736,3123,3.302,3216,2.702,3218,3.937,3241,2.331,3255,4.542,3264,2.639,3454,2.375,3483,4.218,3488,3.091,3489,3.937,3524,2.768,4426,3.091,4428,3,4527,1.627,4549,4.471,4644,3,4741,3,4768,3.717,4769,4.524,4770,4.524,4771,5.034,4772,5.034,4773,4.188,4774,5.034,4775,5.034,4776,3.937,4777,4.524,4778,5.034,4779,6.223,4780,4.524,4781,5.034,4782,5.034,4783,5.034,4784,5.034,4785,3,4786,5.761,4787,3.736,4788,5.034,4789,5.034,4790,4.524,4791,3.427,4792,3.427,4793,5.034,4794,2.917,4795,5.034,4796,5.034,4797,3.302,4798,5.034,4799,4.524,4800,3.57,4801,2.525,4802,3.191,4803,4.524,4804,4.524,4805,3.57,4806,5.876,4807,4.524,4808,4.188,4809,5.034,4810,4.524,4811,5.034,4812,4.524,4813,4.188,4814,5.034]],["tags/Teaching Object-Oriented design using the GBA",[472,1.332,2302,1.311,4768,1.833]],["title/De zin en onzin van conferenties",[546,1.892,606,1.788,614,2.152,4815,3.336,4816,4.01,4817,3.604]],["content/De zin en onzin van conferenties",[14,0.994,24,0.777,116,0.927,158,0.879,493,4.73,495,5.499,497,5.013,498,6.223,500,3.304,504,5.679,506,4.212,510,5.775,511,5.243,512,3.982,522,4.401,524,3.836,533,3.982,536,2.605,537,2.439,538,3.569,540,4.726,546,4.364,568,4.401,593,4.697,599,5.558,601,2.605,602,2.367,605,5.214,606,4.303,613,2.816,614,5.353,634,4.703,636,5.43,638,2.704,656,4.866,661,3.106,680,2.439,688,3.3,694,2.948,698,1.457,701,3.304,744,4.401,745,2.605,750,3.836,753,4.866,760,2.439,761,6.239,767,3.982,772,5.256,774,5.4,792,5.175,793,2.816,807,3.707,809,3.106,821,5.256,822,3.569,825,2.948,829,5.256,831,5.431,856,2.704,869,3.569,870,3.106,1052,3.304,1055,4.866,1112,3.304,1124,3.304,1137,3.836,1144,4.148,1208,4.574,1225,3.304,1501,1.356,2053,1.992,2392,2.132,2805,2.054,3216,2.132,3331,6.679,3347,2.816,3368,5.43,3377,3.569,3393,3.106,3398,3.569,3401,2.948,3415,3.569,3420,4.341,3421,3.106,3422,3.106,3426,2.816,3450,2.704,3477,3.836,3566,3.304,3567,4.866,3582,3.569,3592,3.106,3599,5.256,3603,4.574,3623,3.304,3624,2.948,3626,4.866,3628,3.569,3634,3.707,3637,3.304,3639,3.304,3652,3.106,3668,3.304,3697,3.106,3702,4.866,3752,3.569,3900,3.569,3906,4.866,3909,5.153,3930,5.256,3935,3.569,3938,3.569,3978,3.304,3988,5.256,4000,5.43,4016,5.256,4064,3.569,4068,3.569,4080,3.569,4096,5.43,4099,3.569,4102,3.569,4138,3.106,4160,3.569,4174,3.569,4175,6.239,4199,5.256,4221,3.569,4248,5.256,4399,2.517,4460,4.574,4490,3.569,4501,3.106,4519,3.569,4547,3.569,4554,3.569,4597,3.569,4815,3.304,4817,6.883,4818,3.972,4819,3.972,4820,3.972,4821,3.972,4822,5.849,4823,3.972,4824,3.972,4825,3.972,4826,3.972,4827,6.239,4828,5.256,4829,3.972,4830,3.972,4831,3.972,4832,3.972,4833,3.972,4834,3.972,4835,6.883,4836,3.106,4837,5.849,4838,3.106,4839,5.849,4840,3.972,4841,3.972,4842,3.972,4843,3.972,4844,3.972,4845,3.972,4846,3.972,4847,3.972,4848,3.972,4849,3.972,4850,3.972,4851,3.972,4852,3.569,4853,3.972,4854,3.972,4855,5.849,4856,6.943,4857,3.972,4858,3.972,4859,3.972,4860,3.972,4861,4.866,4862,3.972,4863,3.972,4864,3.972,4865,3.972,4866,3.972,4867,5.849,4868,3.972,4869,5.849,4870,3.972,4871,3.972,4872,3.972,4873,5.849,4874,3.972,4875,3.972,4876,3.972,4877,3.569,4878,5.849,4879,3.972,4880,3.972,4881,3.972,4882,3.972,4883,3.972,4884,3.972,4885,3.972,4886,3.972,4887,3.972,4888,3.972,4889,3.972,4890,5.849,4891,3.972,4892,5.849,4893,3.972,4894,3.972,4895,3.972,4896,3.972,4897,3.972,4898,3.972,4899,3.972,4900,5.849,4901,3.972,4902,3.972,4903,3.972,4904,2.439,4905,3.972,4906,3.972,4907,3.972,4908,3.972,4909,3.569,4910,2.948,4911,3.972,4912,3.972,4913,3.972,4914,3.972,4915,3.972,4916,3.972,4917,3.972,4918,3.972,4919,3.972,4920,3.972,4921,3.972,4922,3.972]],["tags/De zin en onzin van conferenties",[4923,4.224]],["title/Programming: a Creative Cognitive Process",[487,1.64,1008,1.87,2318,1.553,4683,3.615]],["content/Programming: a Creative Cognitive Process",[1,1.409,10,0.813,16,2.872,19,0.371,21,2.184,23,2.226,24,1.413,55,1.963,73,0.837,79,0.557,86,2.61,104,0.768,113,1.06,121,1.577,131,1.023,132,1.557,144,1.212,145,2.264,149,1.827,154,1.178,158,0.678,179,0.999,180,2.178,196,1.577,203,1.57,223,1.249,277,1.445,278,2.126,304,2.344,317,1.802,322,3.189,324,3.189,361,1.853,365,3.089,375,0.857,407,2.264,409,1.499,437,2.086,476,2.527,487,1.802,517,1.098,564,2.386,621,2.318,623,2.943,629,4.915,630,1.481,673,4.452,705,1.907,725,3.019,749,3.101,754,3.019,912,0.857,929,1.577,951,1.311,994,2.431,1008,2.054,1096,4.493,1192,2.525,1193,2.61,1289,1.227,1290,2.806,1295,3.189,1298,3.341,1301,2.943,1327,1.684,1333,2.154,1335,1.993,1369,2.708,1382,3.054,1399,2.12,1401,2.386,1425,2.477,1431,2.943,1498,4.185,1501,2.465,1504,3.189,1506,2.872,1534,2.576,1582,2.154,1583,1.684,1589,2.477,1599,2.744,1611,3.279,1655,2.189,1744,2.576,1753,3.972,1763,2.226,1794,2.906,1879,2.744,1881,3.003,1932,3.189,1965,1.827,1977,3.286,1995,2.943,2045,5.359,2052,4.284,2115,2.477,2165,2.303,2258,3.392,2289,1.963,2318,3,2328,3.875,2339,2.576,2341,2.685,2346,2.744,2377,3.51,2382,3.286,2397,3.189,2458,3.019,2467,3.971,2576,2.264,2617,3.101,2707,3.795,2759,2.806,2803,4.809,2945,2.806,2995,2.943,3178,3.101,3181,3.189,3203,3.101,3216,2.872,3241,3.074,3253,3.795,3488,3.286,3516,4.452,3526,4.185,3546,3.701,4153,4.452,4394,4.452,4415,4.452,4426,3.286,4683,3.972,4685,4.452,4777,4.809,4924,5.352,4925,5.352,4926,3.795,4927,4.809,4928,4.809,4929,3.643,4930,4.452,4931,3.643,4932,5.352,4933,4.809,4934,4.809,4935,4.809,4936,4.185,4937,5.352,4938,3.972,4939,5.352,4940,4.809,4941,4.452,4942,4.185,4943,5.352,4944,3.51,4945,3.189,4946,4.809,4947,4.185,4948,3.51,4949,3.972,4950,4.809,4951,5.352,4952,5.352,4953,5.352,4954,3.795,4955,5.352,4956,5.352,4957,5.352,4958,5.352,4959,4.809,4960,3.795,4961,4.809,4962,4.809,4963,4.452,4964,3.101,4965,3.972,4966,5.352,4967,3.51,4968,5.352]],["tags/Programming: a Creative Cognitive Process",[2318,1.361,3559,2.238]],["title/Over Onmiddellijke Voldoening",[116,1.274,4501,4.267,4969,5.456]],["content/Over Onmiddellijke Voldoening",[14,0.674,18,1.299,79,0.271,116,0.926,129,3.103,158,0.503,168,0.915,240,0.823,255,2.129,492,2.034,493,4.946,495,5.442,497,2.436,498,5.773,504,5.01,505,2.945,506,4.488,510,6.082,511,5.419,524,3.833,527,3.214,530,4.144,532,4.551,533,3.978,534,3.103,535,2.813,536,5.352,537,3.588,546,4.436,568,2.515,573,2.813,587,5.682,588,3.103,593,4.21,599,2.701,600,3.978,601,3.833,602,2.364,605,5.555,606,4.447,610,4.57,613,4.92,614,5.118,634,4.7,636,3.103,640,4.57,643,2.813,645,4.338,680,5.419,694,2.945,699,2.945,701,3.3,711,2.996,744,4.398,748,3.565,750,5.021,760,3.588,767,5.555,774,4.562,792,5.172,793,2.813,807,2.515,808,4.57,812,3.103,813,2.182,816,2.602,825,2.945,831,2.813,877,1.154,890,2.701,1049,3.565,1073,3.103,1135,6.235,1137,2.602,1140,3.565,1185,6.222,1187,4.57,1203,4.135,1204,2.945,1211,3.103,1213,2.299,1225,3.3,1275,3.3,1291,1.032,2183,1.802,2576,1.678,2890,3.103,2900,2.945,3035,1.802,3337,2.945,3347,2.813,3357,3.103,3364,3.3,3368,4.57,3406,5.426,3417,2.945,3422,3.103,3431,3.3,3477,3.833,3572,3.3,3592,5.426,3614,3.565,3623,3.3,3634,2.515,3640,5.252,3652,3.103,3677,2.701,3757,3.565,3761,3.565,3765,3.3,3767,5.252,3787,3.103,3875,3.3,3879,3.3,3924,3.565,3939,3.3,3945,3.565,3952,5.772,3954,3.103,3962,3.565,3978,3.3,3982,3.565,4000,3.103,4062,3.565,4096,3.103,4103,2.945,4138,3.103,4147,3.3,4149,3.565,4168,3.565,4201,4.862,4223,6.235,4266,3.565,4281,3.3,4285,3.565,4295,6.368,4338,2.299,4496,5.252,4501,5.426,4540,3.565,4598,3.565,4815,4.862,4828,3.565,4835,3.565,4838,3.103,4970,3.967,4971,3.967,4972,3.967,4973,3.967,4974,3.967,4975,3.967,4976,3.967,4977,3.967,4978,3.967,4979,3.967,4980,3.967,4981,3.967,4982,3.967,4983,3.967,4984,3.967,4985,6.938,4986,3.967,4987,6.938,4988,5.844,4989,3.967,4990,3.967,4991,3.967,4992,3.967,4993,5.844,4994,3.967,4995,3.967,4996,3.967,4997,3.3,4998,5.844,4999,6.938,5000,3.967,5001,3.967,5002,3.967,5003,3.967,5004,3.967,5005,3.967,5006,3.967,5007,3.967,5008,3.967,5009,3.967,5010,3.967,5011,3.967,5012,3.967,5013,3.967,5014,5.844,5015,3.967,5016,3.967,5017,3.967,5018,3.967,5019,3.967,5020,4.862,5021,3.967,5022,3.967,5023,3.967,5024,3.967,5025,3.967,5026,3.967,5027,5.844,5028,3.967,5029,3.967,5030,3.967,5031,3.967,5032,3.967,5033,3.967,5034,3.967,5035,3.967,5036,3.967,5037,3.967,5038,3.967,5039,3.967,5040,3.967,5041,3.967,5042,6.938,5043,3.967,5044,3.967,5045,3.967,5046,3.967,5047,3.967,5048,3.967,5049,3.967,5050,3.967,5051,3.967,5052,3.967,5053,3.967,5054,3.565,5055,3.967,5056,3.967,5057,3.967,5058,3.967,5059,3.967,5060,3.967,5061,3.967,5062,3.967,5063,3.967,5064,3.967,5065,3.967,5066,3.967,5067,3.967,5068,3.967,5069,3.967,5070,3.967,5071,3.967,5072,3.967,5073,3.967,5074,3.967,5075,3.967,5076,3.967,5077,3.967,5078,3.967,5079,3.967,5080,3.967,5081,3.967]],["tags/Over Onmiddellijke Voldoening",[]],["title/Archive by year: 2019",[6,0.736,477,2.269,4792,3.714]],["content/Archive by year: 2019",[19,0.436,477,3.513,4792,5.75]],["tags/Archive by year: 2019",[]],["title/Five reasons why agile and academia don't go together",[14,0.626,211,1.276,1044,1.739,1687,0.756,2063,1.459,4451,2.336,4463,2.196]],["content/Five reasons why agile and academia don't go together",[1,1.787,6,0.916,10,0.551,14,1.153,18,1.601,19,0.383,27,0.452,29,1.387,30,2.026,31,3.328,42,1.518,48,1.742,52,0.619,67,1.717,75,1.328,79,0.532,82,2.307,83,2.758,87,1.089,88,2.776,94,1.155,101,0.679,104,0.702,113,0.968,127,2.689,131,1.297,133,2.605,142,2.307,144,0.821,157,1.197,158,0.619,168,1.566,175,1.353,179,0.913,185,1.387,186,3.467,188,1.906,196,2,211,2.699,216,0.851,217,1.169,219,1.601,220,2.506,223,1.141,230,2.307,237,3.206,263,0.802,276,1.212,277,1.319,288,1.128,297,1.498,308,3.099,312,2.079,330,2.972,367,1.848,370,2.832,372,2,375,0.783,384,1.529,388,1.58,407,2.068,409,1.37,412,1.46,441,1.756,455,1.669,471,2.563,476,2.533,482,2.832,487,1.646,488,4.067,517,1.727,586,2.104,630,1.353,648,3.328,723,2.104,725,3.828,739,2.758,782,0.892,851,1.601,897,3.047,906,3.099,932,2.776,951,2.166,995,2.563,1008,1.877,1009,4.301,1044,2.307,1062,1.967,1082,3.467,1146,2.223,1229,1.82,1237,1.906,1260,1.441,1283,0.714,1307,3.333,1327,1.538,1339,1.518,1346,1.518,1348,2.871,1369,1.854,1382,2.871,1415,1.717,1501,2.661,1537,2,1583,2.135,1586,2.107,1633,3.026,1634,1.967,1647,3.099,1675,2.262,1720,3.828,1721,0.991,1725,1.742,1744,2.353,1787,2.689,1902,3.328,1972,2.506,1999,3.829,2017,3.206,2021,4.067,2053,3.91,2063,1.936,2070,2.506,2105,3.732,2115,3.141,2225,3.467,2335,5.126,2336,3.328,2337,3.206,2344,3.001,2348,2.832,2375,3.642,2390,2.307,2458,3.828,2477,5.785,2480,2.624,2483,2.624,2654,3.823,2699,1.848,2704,3.001,2717,4.535,2730,4.393,2733,3.206,2805,2.957,2945,2.563,2980,2.913,2981,2.689,2984,3.823,3012,3.206,3023,3.099,3145,2.353,3229,5.971,3236,2.353,3254,2.22,3488,3.001,3556,3.467,3710,3.467,3810,3.823,3839,3.206,4391,3.629,4451,4.94,4459,3.328,4463,2.913,4931,3.328,5082,4.888,5083,3.099,5084,4.067,5085,1.601,5086,4.888,5087,4.888,5088,4.067,5089,4.888,5090,3.467,5091,4.393,5092,4.067,5093,3.823,5094,4.888,5095,4.888,5096,4.888,5097,4.067,5098,4.888,5099,4.888,5100,4.393,5101,4.888,5102,4.812,5103,2.832,5104,4.393,5105,4.888,5106,4.888,5107,3.206,5108,4.067,5109,3.404,5110,2.452,5111,4.888]],["tags/Five reasons why agile and academia don't go together",[476,0.945,4451,2.165,4463,2.036]],["title/DIY: Hosting stuff on your own VPS",[99,1.382,2012,2.443,4581,4.052,5112,3.454]],["content/DIY: Hosting stuff on your own VPS",[5,1.341,10,0.868,11,1.972,13,1.507,14,0.814,17,0.663,19,0.45,22,0.916,26,1.151,27,0.619,28,0.854,29,1.36,36,2.137,52,0.761,62,2.354,73,1.046,79,0.327,86,1.732,94,1.132,96,1.732,98,1.067,101,0.418,108,4.306,109,1.188,116,1.119,121,1.972,123,2.306,127,2.635,131,1.279,132,1.394,138,2.404,142,2.261,145,2.027,193,2.354,202,4.556,210,2.218,223,1.562,240,1.389,251,1.707,252,1.993,261,4.746,278,1.247,282,1.528,288,1.106,312,2.051,315,0.96,332,3.143,369,4.735,376,3.037,394,3.557,416,2.099,446,2.261,475,2.137,484,1.993,490,2.512,492,2.457,514,3.747,517,1.373,569,4.109,596,3.084,621,1.899,628,3.262,630,1.326,705,1.707,715,2.457,723,2.062,784,3.143,880,3.747,884,3.986,908,1.784,912,0.767,919,1.659,921,1.178,924,2.457,957,2.776,958,2.572,964,2.137,980,4.306,985,1.852,1069,1.412,1206,3.143,1236,2.306,1267,2.354,1278,1.548,1283,0.704,1289,0.814,1291,1.247,1296,1.055,1315,1.96,1317,2.788,1325,2.776,1374,3.986,1386,6.944,1392,3.262,1396,3.557,1398,3.791,1402,4.967,1403,2.062,1405,4.746,1426,1.431,1430,2.354,1448,5.234,1477,3.869,1517,2.404,1557,2.35,1594,2.776,1611,2.176,1612,3.869,1619,2.457,1659,2.027,1662,2.261,1687,0.983,1720,2.703,1740,3.262,1784,4.48,1878,2.856,1889,2.856,1947,3.954,1953,3.143,1969,1.151,1984,2.942,1999,2.354,2012,4.564,2034,2.027,2086,2.856,2108,2.306,2120,4.556,2149,2.062,2159,2.942,2173,3.262,2186,2.856,2301,2.572,2339,2.306,2346,3.431,2386,4.306,2388,2.776,2407,2.572,2476,2.703,2642,1.868,2669,2.856,2694,2.512,2806,2.354,2816,4.306,2818,3.569,2867,3.557,2874,3.037,2897,3.747,2998,2.404,3083,3.986,3101,3.398,3190,2.572,3278,2.856,4339,2.942,4341,4.306,4386,3.747,4745,3.143,5109,2.404,5112,4.746,5113,4.792,5114,3.986,5115,4.792,5116,3.143,5117,3.986,5118,4.306,5119,2.831,5120,4.792,5121,3.037,5122,2.942,5123,3.986,5124,4.792,5125,4.306,5126,4.792,5127,4.306,5128,2.942,5129,6.692,5130,6.692,5131,3.775,5132,3.986,5133,4.792,5134,3.747,5135,4.792,5136,4.792,5137,4.792,5138,4.792,5139,4.306,5140,6.692,5141,4.792,5142,3.747,5143,4.792,5144,4.556,5145,3.143,5146,4.792,5147,4.241,5148,4.306,5149,4.792,5150,4.792,5151,6.692,5152,7.712,5153,4.792,5154,3.557,5155,6.692,5156,4.792,5157,3.986,5158,9.097,5159,4.306,5160,4.792,5161,4.792,5162,3.262,5163,4.556,5164,4.792,5165,4.792,5166,4.792,5167,4.792,5168,5.234,5169,4.792,5170,3.747,5171,3.747,5172,4.792]],["tags/DIY: Hosting stuff on your own VPS",[1398,1.293,4339,1.748,5112,2.019,5144,1.938]],["title/Hugo Extended: More static site processing power!",[101,0.321,728,1.372,1008,1.414,1612,1.848,2193,2.027,2409,1.643,5119,1.559]],["content/Hugo Extended: More static site processing power!",[0,1.022,5,1.355,10,0.548,13,1.531,18,1.594,19,0.487,26,1.163,36,2.17,50,0.593,52,0.766,55,1.786,70,1.573,77,1.491,79,0.332,86,2.811,94,1.15,101,0.678,104,1.116,121,1.435,144,1.411,158,0.617,179,0.909,182,1.123,191,2.989,223,1.136,263,0.798,264,2.17,275,1.34,291,1.928,293,0.998,297,1.491,309,2.278,315,0.975,324,4.032,375,0.779,378,1.084,384,1.524,388,2.186,404,1.084,416,2.963,444,1.734,455,1.662,457,2.179,476,1.872,478,1.898,518,3.192,591,2.613,596,2.376,667,2.613,700,3.469,724,1.511,840,3.085,896,3.92,897,1.491,908,2.896,909,2.024,948,2.343,951,1.657,958,2.613,985,1.872,1008,1.868,1020,1.76,1031,2.297,1191,2.989,1215,3.193,1233,3.807,1279,1.022,1283,0.712,1289,1.15,1298,3.131,1303,3.901,1315,1.991,1317,2.446,1339,1.511,1366,2.613,1370,3.313,1393,4.277,1415,1.709,1420,1.812,1422,1.928,1473,3.613,1501,1.662,1541,1.552,1552,2.495,1582,2.723,1612,2.442,1623,2.618,1651,2.989,1666,2.912,1764,1.071,1878,4.634,1895,3.807,1903,2.495,1945,1.573,1950,1.84,1969,0.837,1984,2.989,2045,3.193,2109,2.552,2125,2.343,2163,4.374,2186,2.901,2189,6.08,2193,2.677,2409,4.182,2456,2.989,2463,2.253,2526,3.807,2576,2.059,2639,3.313,2691,2.059,2713,2.989,3007,3.193,3021,3.313,3031,2.989,3257,4.032,3264,2.552,3821,3.613,4526,3.313,4776,3.807,4945,2.901,5173,4.867,5174,3.555,5175,4.374,5176,8.428,5177,6.766,5178,7.776,5179,4.867,5180,3.085,5181,6.766,5182,3.807,5183,4.049,5184,3.807,5185,4.374,5186,7.802,5187,4.867,5188,4.867,5189,5.327,5190,4.049,5191,3.613,5192,4.438,5193,3.613,5194,7.776,5195,2.552,5196,4.867,5197,4.867,5198,4.867,5199,4.867,5200,4.867,5201,4.867,5202,6.08,5203,4.867,5204,6.766,5205,4.867,5206,6.766,5207,4.867,5208,4.867,5209,6.766,5210,6.766,5211,4.374,5212,4.049,5213,4.867,5214,4.867,5215,4.867,5216,6.766,5217,4.867,5218,4.867,5219,3.613,5220,4.867,5221,4.867,5222,4.867,5223,4.867,5224,4.867,5225,6.766,5226,4.867,5227,4.867,5228,4.867,5229,3.613,5230,4.867]],["tags/Hugo Extended: More static site processing power!",[2409,1.523,5176,3.069,5186,2.842]],["title/Page Building with Brizy in Wordpress",[96,1.761,1623,1.64,5122,2.991,5231,4.052]],["content/Page Building with Brizy in Wordpress",[6,0.68,10,1.007,13,1.586,14,0.857,19,0.43,22,1.325,52,0.843,55,1.849,74,0.93,77,2.124,79,0.344,86,1.822,87,1.123,96,3.423,98,1.123,99,1.43,100,2.529,101,0.691,104,0.724,126,2.097,138,2.529,149,1.721,153,1.721,154,1.109,155,3.307,156,2.244,158,0.639,165,1.034,168,1.828,175,1.395,179,1.67,185,1.43,196,1.486,203,1.096,242,2.543,275,0.998,293,1.834,310,3.742,311,1.545,315,1.01,317,2.872,365,1.906,399,2.921,409,1.942,415,4.256,416,3.737,443,1.486,455,1.721,457,1.412,490,4.154,564,2.248,566,2.29,586,2.17,621,2.538,705,1.796,723,2.17,725,4.469,728,1.877,782,0.919,881,2.17,885,2.643,897,1.545,908,3.177,912,0.807,978,1.796,985,1.395,1011,1.796,1029,3.095,1044,2.379,1131,3.004,1194,3.432,1267,2.476,1272,2.772,1283,0.53,1290,2.643,1296,1.109,1297,2.772,1320,3.095,1327,1.586,1348,2.132,1403,2.17,1415,1.77,1420,3.177,1465,2.772,1477,2.529,1499,3.575,1511,2.643,1586,2.152,1592,2.772,1598,6.59,1610,4.53,1612,3.477,1623,1.697,1648,1.607,1662,3.271,1671,3.72,1721,1.022,1764,1.109,1765,3.432,1785,1.586,1795,1.77,1876,3.091,1879,2.584,1881,2.097,1945,2.89,1969,1.192,2012,2.529,2042,4.194,2053,2.529,2193,2.772,2195,4.194,2200,3.742,2230,2.379,2358,2.921,2367,4.53,2407,4.252,2475,1.877,2526,3.943,2646,3.575,2665,2.643,2998,2.529,3014,4.721,3087,3.575,3123,4.547,3539,2.844,3911,4.194,4457,3.307,4964,2.921,5097,4.194,5122,5.492,5193,5.145,5231,6.59,5232,5.041,5233,5.041,5234,5.041,5235,5.041,5236,5.041,5237,3.195,5238,5.041,5239,5.767,5240,5.041,5241,7.922,5242,7.922,5243,3.432,5244,4.394,5245,6.932,5246,4.53,5247,5.041,5248,5.041,5249,5.041,5250,2.844,5251,5.041,5252,5.041,5253,5.041,5254,5.041,5255,5.041,5256,5.041,5257,7.228,5258,5.041,5259,5.041,5260,5.041,5261,5.041,5262,4.194,5263,4.53,5264,4.53,5265,4.53,5266,4.194,5267,5.041,5268,5.041,5269,5.041,5270,5.041,5271,5.041,5272,5.041,5273,5.041]],["tags/Page Building with Brizy in Wordpress",[5122,2.097,5231,2.842,5266,2.842]],["title/Using Pandoc to publish a book",[52,0.444,65,1.436,3519,1.899,5274,3.454]],["content/Using Pandoc to publish a book",[10,0.557,11,1.458,17,0.684,18,1.62,19,0.471,20,1.368,21,1.496,26,0.85,29,1.403,46,2.023,52,0.715,65,2.494,73,0.773,74,0.913,75,1.798,76,1.78,79,0.467,83,1.62,90,2.333,92,2.79,96,3.321,97,2.333,98,1.101,99,1.403,101,0.596,104,1.126,131,0.945,132,1.439,133,1.898,139,2.865,144,0.83,145,2.092,147,3.507,149,1.688,175,1.368,179,0.923,182,1.141,240,1.627,252,2.057,263,0.811,264,2.205,275,0.979,278,2.04,293,1.403,308,3.135,311,1.515,320,1.368,321,1.788,358,4.114,378,1.101,388,2.734,392,2.38,404,1.101,413,2.429,416,2.166,422,1.762,445,3.507,452,1.788,471,3.587,472,1.928,491,2.205,517,1.014,518,3.228,564,2.205,579,2.023,595,2.947,596,2.402,630,1.368,884,4.114,903,2.023,909,2.845,915,2.72,919,1.712,921,1.204,954,3.367,958,3.672,1011,1.762,1031,3.228,1131,2.947,1160,3.244,1216,2.535,1270,3.244,1292,1.959,1332,2.246,1333,1.99,1337,2.535,1366,4.209,1392,3.367,1399,1.959,1420,1.842,1422,1.959,1426,1.477,1483,5.35,1541,1.577,1567,3.671,1580,6.524,1589,2.289,1614,2.023,1721,1.002,1744,3.292,1765,4.657,1777,2.092,1785,1.556,1793,3.868,1811,2.38,1859,3.868,1860,4.077,1872,3.562,1965,1.688,1986,2.289,2025,2.166,2115,2.289,2127,2.947,2200,6.281,2319,2.72,2376,2.654,2387,3.859,2461,2.79,2528,2.593,2565,2.535,2691,2.092,2699,1.87,2700,3.292,2707,4.851,2775,2.092,2777,3.507,2795,3.244,2806,2.429,2814,3.135,2819,3.507,3019,3.037,3050,2.947,3203,2.865,3247,2.593,3265,3.037,3270,3.507,3519,3.058,3528,2.947,3877,3.868,4284,3.367,4348,3.868,4426,3.037,4465,3.671,4741,2.947,5108,4.114,5171,3.868,5274,6.001,5275,4.945,5276,4.444,5277,4.945,5278,4.114,5279,4.945,5280,4.945,5281,3.507,5282,2.72,5283,2.246,5284,4.114,5285,4.444,5286,4.444,5287,4.945,5288,3.868,5289,4.945,5290,4.945,5291,4.945,5292,4.945,5293,5.35,5294,4.945,5295,4.444,5296,4.945,5297,3.367,5298,5.078,5299,4.945,5300,4.444,5301,4.444,5302,4.945,5303,4.945,5304,4.945,5305,4.945,5306,4.945,5307,4.945,5308,4.945,5309,4.945,5310,4.945,5311,4.945,5312,4.945,5313,4.945,5314,4.945,5315,4.945,5316,3.367,5317,4.945,5318,3.367,5319,4.945,5320,4.945,5321,6.841,5322,4.945,5323,4.945,5324,4.945,5325,4.945,5326,6.841,5327,4.444,5328,3.037,5329,4.114,5330,4.444,5331,4.945,5332,4.444,5333,3.507,5334,4.945,5335,4.444,5336,4.444,5337,3.367,5338,4.945]],["tags/Using Pandoc to publish a book",[65,0.719,75,0.478,2387,1.377,5274,1.73,5298,1.811]],["title/Project Warlock: About Perseverance",[1415,1.916,5339,4.539,5340,4.903]],["content/Project Warlock: About Perseverance",[6,0.921,14,0.838,19,0.356,21,1.491,22,0.943,27,0.456,29,1.399,52,0.45,69,1.923,70,1.593,74,1.445,77,1.511,78,3.357,79,0.466,85,1.572,98,1.098,101,0.43,104,1.274,131,0.943,144,1.146,148,1.551,149,2.673,159,1.511,165,1.011,175,1.364,179,1.275,185,1.399,196,1.453,199,1.593,200,1.985,209,2.782,217,1.179,240,1.023,245,3.66,266,2.199,271,1.783,277,1.331,278,1.283,288,1.138,293,1.011,294,1.836,320,1.364,361,1.707,368,1.551,375,0.79,404,1.098,413,2.422,443,1.453,450,2.24,476,2.167,491,3.044,621,2.398,782,0.899,788,2.939,853,2.092,877,1.435,912,1.093,918,3.357,921,1.202,926,2.528,950,2.373,978,1.757,982,2.474,1000,3.497,1031,2.327,1179,1.953,1289,0.838,1319,2.017,1415,2.968,1420,1.836,1501,1.683,1505,2.586,1508,3.028,1511,2.586,1582,1.985,1600,3.16,1614,2.017,1687,1.011,1711,2.017,1742,2.282,1763,2.84,1778,2.017,1785,1.551,1831,3.856,1931,2.793,1945,2.206,1974,2.712,1983,1.615,2063,1.953,2087,2.586,2109,2.586,2165,2.122,2173,3.357,2183,2.24,2310,4.069,2338,3.425,2378,1.817,2381,3.856,2415,3.988,2475,1.836,2528,2.586,2594,2.16,2605,2.282,2617,2.857,2645,1.531,2661,3.664,2668,2.282,2691,2.086,2701,5.679,2785,1.985,2854,2.712,2949,2.647,2952,2.857,2980,2.939,2990,5.821,3071,3.028,3077,2.24,3241,1.66,3265,3.028,3271,3.028,3295,2.939,3537,2.857,3554,4.102,3843,4.102,3937,3.028,4421,3.856,4499,3.497,4527,2.53,4753,3.028,4802,3.126,5090,3.497,5134,3.856,5148,4.431,5174,2.888,5250,2.782,5339,6.514,5341,3.497,5342,6.135,5343,4.431,5344,8.451,5345,7.83,5346,3.856,5347,6.135,5348,4.431,5349,4.931,5350,7.83,5351,4.931,5352,6.514,5353,7.031,5354,4.931,5355,5.339,5356,4.931,5357,3.497,5358,3.497,5359,2.647,5360,4.431,5361,2.712,5362,4.931,5363,3.856,5364,3.856,5365,4.931,5366,4.931,5367,3.755,5368,3.357,5369,3.126,5370,4.931,5371,4.102,5372,4.931,5373,4.931,5374,4.931,5375,2.939,5376,2.586,5377,4.431,5378,3.357,5379,8.874,5380,4.931,5381,3.357,5382,4.431,5383,5.679,5384,6.827,5385,4.931,5386,6.827,5387,4.931,5388,4.931,5389,4.931,5390,4.102,5391,4.931,5392,4.931,5393,3.66,5394,4.931,5395,4.931,5396,3.028,5397,4.931,5398,3.66,5399,4.931,5400,3.497,5401,2.586,5402,4.931,5403,4.931,5404,6.827,5405,4.931,5406,4.931,5407,3.234,5408,3.497,5409,2.528,5410,4.431,5411,4.931,5412,4.931,5413,4.931,5414,3.357]],["tags/Project Warlock: About Perseverance",[2378,1.038]],["title/Combining async with generators in Node 11",[409,1.232,542,2.549,2044,3.44,2165,1.893,2186,2.621]],["content/Combining async with generators in Node 11",[0,1.048,8,4.88,10,0.562,17,0.69,19,0.489,27,0.462,30,1.49,50,0.608,52,0.775,53,2.891,55,1.83,61,2.401,73,1.076,75,0.976,79,0.34,83,2.254,94,1.179,98,1.111,101,0.435,116,1.165,132,2.003,142,2.354,150,1.222,160,2.185,168,1.151,196,1.471,223,1.165,264,2.225,291,1.976,294,1.858,297,1.529,312,1.529,378,1.111,404,1.111,405,3.063,409,1.928,412,1.49,430,1.452,444,2.452,472,1.945,542,2.891,566,3.858,591,2.678,596,2.417,622,2.503,649,2.558,700,4.723,725,5.631,782,0.91,897,1.529,908,1.858,909,2.075,912,0.799,919,1.727,973,3.396,985,1.381,1017,3.609,1031,2.354,1066,3.312,1069,2.029,1085,4.151,1087,7.066,1237,1.945,1278,2.224,1392,3.396,1393,3.785,1457,6.643,1458,7.081,1481,2.973,1552,2.558,1614,2.041,1631,1.886,1648,1.591,1671,3.277,1686,4.484,1714,3.063,1764,1.098,1794,2.008,1889,2.973,1951,3.902,1984,3.063,2004,3.883,2044,7.384,2116,2.225,2134,6.162,2135,3.162,2186,5.627,2219,3.538,2237,7.729,2295,3.396,2387,2.815,2409,2.225,2463,2.309,2469,2.973,2558,1.945,2614,3.902,2791,3.396,2806,2.451,2986,2.558,2996,2.503,3130,3.162,3258,4.484,4193,2.891,4459,3.396,4792,3.396,5110,3.952,5244,3.162,5297,3.396,5415,4.989,5416,4.989,5417,2.309,5418,4.989,5419,4.989,5420,4.989,5421,4.989,5422,4.989,5423,4.989,5424,4.989,5425,4.989,5426,4.989,5427,6.882,5428,4.989,5429,6.882,5430,7.879,5431,6.882,5432,3.902,5433,4.989,5434,4.989,5435,6.882,5436,8.494,5437,4.989,5438,4.989,5439,6.882,5440,4.989,5441,4.989,5442,3.902,5443,4.989,5444,4.989,5445,4.989,5446,4.989,5447,4.989,5448,4.989,5449,4.989,5450,4.989,5451,4.989,5452,4.989,5453,4.989,5454,4.989,5455,4.989,5456,4.989,5457,3.902,5458,4.989,5459,4.989,5460,6.882,5461,4.484,5462,4.989,5463,4.989,5464,4.151,5465,4.989,5466,4.989,5467,4.151,5468,4.989,5469,4.989]],["tags/Combining async with generators in Node 11",[649,2.189,2186,2.544]],["title/Designing websites with accessibility in mind",[908,1.814,1945,1.574,1983,1.595,2149,2.096]],["content/Designing websites with accessibility in mind",[0,1.447,8,3.543,10,0.776,14,0.849,19,0.405,20,1.383,21,1.511,26,1.185,27,0.462,46,2.044,47,2.167,52,0.841,64,4.795,74,0.922,75,1.348,76,1.3,79,0.341,86,1.806,87,1.534,91,1.78,109,1.238,113,0.989,131,0.955,132,1.454,133,1.918,144,0.839,168,1.153,179,0.933,182,1.59,216,0.869,217,1.647,223,1.609,252,2.078,261,3.543,277,1.349,278,1.3,291,1.979,293,1.025,312,1.531,324,2.978,366,2.562,375,1.103,395,3.316,404,1.113,422,2.454,430,1.454,436,3.167,443,2.031,459,2.405,465,1.889,481,4.562,490,2.62,517,1.025,571,3.167,595,4.106,630,1.383,782,0.911,797,2.15,799,2.978,827,2.748,854,2.269,908,3.32,909,2.078,912,0.8,919,1.73,932,2.044,970,3.068,1009,3.167,1017,2.62,1020,3.332,1031,3.72,1088,4.337,1200,3.068,1216,2.562,1274,1.511,1278,1.615,1283,0.83,1286,2.62,1289,0.849,1290,2.62,1296,1.1,1326,3.543,1327,1.572,1369,1.365,1403,2.15,1522,4.885,1606,2.562,1623,1.682,1645,2.507,1647,3.167,1671,2.078,1687,1.025,1714,4.841,1742,3.189,1807,3.068,1866,3.401,1872,3.581,1877,3.401,1878,4.106,1938,2.507,1945,1.615,1969,0.859,1977,3.068,1983,2.583,1986,2.313,2004,2.819,2010,4.106,2062,2.078,2063,1.979,2116,3.072,2149,3.393,2162,3.068,2202,3.908,2226,3.709,2463,2.313,2471,2.748,2490,3.068,2494,3.277,2639,4.69,2699,1.889,2805,1.755,2819,3.543,2939,3.277,3005,2.819,3029,4.49,3036,2.269,3122,3.992,3160,3.068,3172,3.908,3241,1.682,3257,4.106,3278,2.978,3295,2.978,3537,2.895,4369,4.157,4741,2.978,5102,3.543,5119,3.335,5189,4.367,5244,4.367,5298,3.709,5470,4.997,5471,3.456,5472,4.997,5473,2.682,5474,4.49,5475,4.157,5476,4.997,5477,3.068,5478,4.997,5479,4.49,5480,4.997,5481,4.49,5482,9.767,5483,7.086,5484,4.997,5485,3.277,5486,3.277,5487,4.997,5488,4.997,5489,4.997,5490,4.997,5491,4.997,5492,4.997,5493,4.997,5494,4.997,5495,4.997,5496,4.997,5497,4.997,5498,4.997,5499,8.499,5500,5.731,5501,4.997,5502,4.997,5503,4.997,5504,4.997,5505,4.997,5506,4.997,5507,4.997,5508,4.997,5509,4.997,5510,4.157,5511,3.908,5512,4.157,5513,4.49,5514,4.49,5515,4.997,5516,4.157,5517,4.157,5518,2.978,5519,5.731,5520,4.997,5521,4.997,5522,6.889,5523,5.388,5524,4.997,5525,3.068,5526,4.997,5527,4.997]],["tags/Designing websites with accessibility in mind",[2149,2.449]],["title/ITiCSE 2020: A Report",[5417,2.525,5477,3.35,5528,5.456]],["content/ITiCSE 2020: A Report",[3,1.507,6,0.936,10,0.781,17,0.698,19,0.42,25,1.38,26,0.868,39,2.211,50,0.966,51,2.251,52,0.633,55,2.908,70,1.631,73,0.789,79,0.344,94,1.193,97,3.274,101,0.605,104,0.996,109,1.251,116,1.62,121,1.488,133,2.664,138,2.533,150,2.32,158,1.004,159,1.547,166,3.437,179,0.943,182,1.165,188,1.968,203,1.724,219,1.654,263,1.138,264,2.251,276,1.251,321,1.825,365,1.909,368,1.588,370,4.02,375,0.808,395,2.43,404,1.545,418,1.724,422,1.799,437,1.968,457,1.415,467,3.009,469,2.848,472,3.328,487,2.336,621,1.432,628,2.136,885,2.647,896,4.02,897,2.126,929,1.488,950,2.43,987,2.647,994,2.293,1008,1.938,1068,3.437,1179,2,1213,2.925,1278,1.631,1283,0.531,1289,0.858,1297,3.816,1299,2.925,1333,2.032,1335,1.88,1346,1.567,1382,2.136,1431,2.777,1523,2.848,1648,1.61,1655,3.875,1657,1.547,1670,3.948,1688,3.1,1711,2.065,1718,2.71,1719,2.337,1720,2.848,1778,2.065,1794,2.793,1803,2.848,1854,3.311,1898,2.925,1945,2.242,1948,3.311,1950,2.623,1962,1.852,1965,1.724,1986,2.337,2078,2.848,2116,2.251,2120,4.723,2165,2.173,2285,3.948,2301,2.71,2306,2.337,2308,3.58,2318,2.948,2348,2.925,2378,1.446,2381,3.948,2388,2.925,2434,2.293,2452,2.925,2457,3.977,2564,3.914,2565,3.557,2594,2.211,2617,2.925,2691,2.136,2785,2.032,2792,4.537,2805,2.784,2867,3.747,2914,3.2,3034,4.551,3086,3.948,3095,6.054,3241,2.669,3247,3.638,3253,3.58,3278,3.009,3300,3.437,3301,5.772,3482,3.58,3483,4.363,3528,3.009,3546,2.588,3550,3.58,3814,3.2,3822,3.747,3860,4.2,4419,4.02,4444,3.311,4480,3.2,4768,2.71,4923,3.747,4947,3.948,4960,3.58,5085,1.654,5368,3.437,5529,3.948,5530,5.049,5531,3.1,5532,3.948,5533,5.049,5534,5.049,5535,5.049,5536,5.049,5537,3.58,5538,4.2,5539,4.537,5540,2.848,5541,4.2,5542,2.71,5543,3.948,5544,5.049,5545,3.948,5546,5.15,5547,5.049,5548,5.049,5549,3.948,5550,3.2,5551,3.948,5552,3.311,5553,3.948,5554,4.537,5555,5.049,5556,5.049,5557,5.049,5558,5.049,5559,6.236,5560,5.049,5561,3.747,5562,3.437,5563,5.049,5564,3.437,5565,3.58,5566,4.2,5567,4.537,5568,5.049,5569,5.049,5570,5.049,5571,4.537,5572,5.049,5573,4.2,5574,3.948,5575,5.049,5576,5.049,5577,4.537,5578,5.049,5579,5.049]],["tags/ITiCSE 2020: A Report",[4923,4.224]],["title/Tracking and privacy concerns on websites",[908,1.814,3036,2.212,4323,3.615,5471,2.443]],["content/Tracking and privacy concerns on websites",[1,1.328,5,1.01,10,0.781,17,1.096,19,0.315,22,1.631,24,0.987,29,1.43,35,3.742,39,2.208,40,3.405,47,1.586,50,0.614,52,0.722,70,2.56,73,1.084,77,1.545,79,0.582,81,1.674,83,2.27,94,1.191,96,1.822,98,1.123,101,0.604,119,3.004,144,0.847,145,2.132,154,1.743,157,1.235,193,2.476,203,1.096,216,0.877,219,1.651,240,1.438,264,2.248,276,1.249,278,1.312,293,1.625,297,1.545,315,1.01,320,1.395,369,3.095,370,2.921,375,0.807,378,1.123,405,3.095,407,2.132,421,4.53,422,2.47,426,2.706,437,1.965,450,2.29,455,1.721,490,4.69,495,2.844,621,1.43,649,2.584,723,2.983,739,2.844,908,3.177,912,0.807,926,2.584,929,2.043,989,3.095,1002,3.004,1030,2.333,1131,3.004,1188,4.719,1223,3.943,1234,2.584,1283,0.53,1289,0.857,1301,2.772,1327,1.586,1333,2.029,1335,1.877,1339,2.152,1346,2.46,1369,1.378,1393,2.772,1398,3.875,1405,3.575,1422,2.745,1425,3.666,1499,3.575,1522,4.915,1533,2.333,1586,1.565,1594,2.921,1612,2.529,1681,3.095,1687,1.034,1710,2.333,1711,2.062,1716,3.742,1725,1.796,1811,4.448,1866,4.719,1938,2.529,1976,2.426,2006,2.581,2081,6.229,2118,4.016,2123,2.426,2135,3.195,2149,2.17,2162,3.095,2346,3.554,2360,2.921,2390,2.379,2402,4.194,2427,3.307,2582,2.772,2789,5.145,2853,2.529,3004,2.062,3030,3.742,3036,3.875,3119,4.53,3145,2.426,3238,4.194,3248,3.943,3262,2.921,3528,3.004,3826,6.672,4193,2.921,4351,6.229,4352,3.742,4356,4.53,4402,2.379,4502,3.004,4713,3.432,4737,3.307,4926,3.575,5116,3.307,5144,3.432,5162,3.432,5189,3.195,5211,4.53,5239,4.194,5300,4.53,5471,2.529,5477,3.095,5523,6.672,5580,4.53,5581,5.041,5582,5.041,5583,4.53,5584,5.041,5585,5.041,5586,3.943,5587,5.88,5588,5.041,5589,5.145,5590,6.932,5591,3.742,5592,6.932,5593,5.041,5594,3.943,5595,5.041,5596,6.932,5597,5.041,5598,6.932,5599,5.041,5600,5.041,5601,5.041,5602,8.306,5603,5.041,5604,5.041,5605,5.041,5606,5.041,5607,5.041,5608,5.041,5609,3.095,5610,7.922,5611,5.041,5612,3.943,5613,5.041,5614,5.041,5615,3.943,5616,5.041,5617,5.041,5618,5.041,5619,5.041,5620,5.041,5621,5.041,5622,6.932,5623,4.719,5624,4.194,5625,5.041,5626,5.041,5627,5.041,5628,5.041,5629,3.432]],["tags/Tracking and privacy concerns on websites",[5471,2.855]],["title/3D Software Rendering on the GBA",[1369,1.331,2990,3.195,4768,2.614,5486,3.195]],["content/3D Software Rendering on the GBA",[0,1.023,6,0.658,10,0.876,11,1.996,19,0.354,23,2.027,26,1.165,27,0.627,30,1.455,46,2.77,50,0.825,52,0.618,60,1.111,61,3.259,74,0.9,75,1.729,81,1.619,85,1.554,95,2.3,99,1.383,101,0.59,102,2.499,131,0.932,132,1.418,149,1.664,158,0.617,179,1.265,180,1.3,216,1.178,217,1.619,220,2.499,224,3.457,241,2.062,242,2.484,261,4.802,262,3.812,263,0.799,265,3.457,282,1.554,288,1.125,312,1.494,321,1.762,372,1.994,375,1.084,388,1.575,403,2.174,413,3.327,441,1.098,443,1.996,455,2.871,457,1.898,472,1.9,487,2.28,491,3.47,516,3.318,517,1.389,520,3.618,549,3.635,586,2.098,630,1.349,705,1.737,739,2.75,749,2.824,782,0.889,840,3.09,885,2.556,897,1.494,938,2.993,951,1.194,956,3.457,985,1.349,1192,3.195,1193,2.448,1229,1.815,1274,1.474,1283,0.819,1289,1.151,1292,1.931,1298,2.256,1299,2.824,1300,2.214,1325,3.924,1345,3.618,1369,1.851,1382,2.865,1402,3.618,1422,1.931,1430,3.327,1465,2.681,1506,2.616,1514,3.318,1534,2.346,1541,1.554,1584,2.824,1590,2.75,1648,1.554,1657,1.494,1660,2.824,1743,4.055,1755,2.681,1764,1.713,1795,1.712,1806,3.635,1896,4.055,1903,3.472,1945,1.575,1965,1.664,1969,0.838,2025,2.135,2060,4.802,2104,2.681,2105,2.681,2115,2.256,2147,2.905,2149,2.098,2183,2.214,2237,3.812,2303,2.445,2320,2.993,2347,2.75,2353,2.027,2374,2.062,2378,1.534,2454,2.214,2516,3.318,2533,2.824,2550,3.812,2654,3.812,2691,2.062,2804,2.824,2828,3.197,2990,4.442,3241,2.831,3262,2.824,3524,3.725,3554,4.055,4370,3.618,4499,3.457,4549,2.556,4552,2.905,4657,3.09,4768,4.743,4800,3.457,4805,4.802,4806,5.027,4807,4.38,4812,4.38,5131,2.75,5147,2.681,5195,2.556,5352,5.634,5355,5.296,5361,3.725,5432,3.812,5473,2.616,5486,4.442,5612,3.812,5630,6.772,5631,6.086,5632,3.457,5633,4.874,5634,5.296,5635,4.874,5636,3.457,5637,4.874,5638,4.874,5639,3.812,5640,4.38,5641,4.874,5642,4.38,5643,4.874,5644,4.874,5645,4.874,5646,4.874,5647,4.874,5648,4.874,5649,4.38,5650,4.055,5651,3.618,5652,4.874,5653,4.874,5654,3.618,5655,3.924,5656,3.812,5657,2.681,5658,7.782,5659,8.41,5660,4.874,5661,4.874,5662,4.874,5663,4.38,5664,4.874,5665,4.61,5666,4.874,5667,4.874,5668,6.772,5669,4.874,5670,4.874,5671,4.874,5672,4.874,5673,4.055,5674,6.086,5675,4.874,5676,4.874,5677,4.874,5678,4.874,5679,4.874,5680,4.055,5681,3.618,5682,4.874,5683,4.874,5684,4.874,5685,4.874,5686,4.874,5687,4.874,5688,4.874,5689,4.874,5690,3.318,5691,4.874,5692,4.874,5693,4.874]],["tags/3D Software Rendering on the GBA",[4768,3.054]],["title/Thoughts on collaboration in education",[3,1.629,3203,3.161,3546,2.797]],["content/Thoughts on collaboration in education",[0,1.076,5,1.027,6,0.946,10,1.013,14,1.191,19,0.39,25,1.401,28,1.249,30,2.093,51,2.285,52,0.729,60,1.169,75,1.003,79,0.649,80,2.819,83,1.679,85,1.634,91,1.826,104,1.007,109,1.27,113,1.015,131,0.98,145,2.966,149,2.393,165,1.438,180,1.366,196,1.511,199,1.656,203,1.115,209,2.891,211,1.774,213,2.627,240,1.064,252,2.132,270,3.362,272,3.634,275,1.015,279,2.206,291,2.03,312,1.57,375,0.821,378,1.141,396,3.248,412,1.53,437,1.998,441,1.155,443,1.511,476,1.418,517,1.051,621,1.454,724,1.591,728,2.975,782,0.935,785,3.362,877,1.491,912,1.122,929,1.511,976,3.054,985,1.94,994,3.629,1002,3.054,1003,2.687,1064,4.772,1066,2.467,1096,2.819,1146,1.679,1159,2.063,1198,3.054,1272,2.819,1278,1.656,1283,0.539,1293,3.362,1333,2.822,1335,1.908,1352,2.467,1369,1.401,1511,2.687,1586,1.591,1623,1.725,1645,2.571,1678,2.132,1721,1.039,1725,1.826,1741,2.418,1742,2.372,1744,2.467,1941,2.819,1962,1.88,1969,1.206,1975,4.772,2014,4.606,2025,2.245,2029,4.264,2053,2.571,2080,3.248,2115,2.372,2144,2.891,2282,2.571,2302,3.566,2314,2.627,2328,2.751,2335,4.062,2434,2.328,2447,5.275,2487,4.606,2515,3.634,2558,1.998,2592,2.571,2681,3.054,2715,3.147,2805,2.806,2806,2.517,2881,2.097,2939,3.362,2945,2.687,3012,3.362,3015,4.264,3034,3.362,3098,3.634,3161,3.362,3178,4.062,3181,3.054,3203,4.978,3229,3.634,3247,2.687,3254,3.184,3454,2.418,3483,4.245,3487,3.634,3546,3.594,3559,3.676,3563,3.248,3848,3.489,3849,4.606,4355,3.634,4403,4.008,4478,3.489,4626,3.804,4714,2.891,5174,2.168,5367,2.819,5409,2.627,5417,2.372,5477,3.147,5516,5.832,5518,4.178,5553,4.008,5694,3.489,5695,4.606,5696,5.125,5697,5.125,5698,5.125,5699,5.125,5700,3.147,5701,5.125,5702,5.125,5703,4.606,5704,3.248,5705,4.008,5706,6.249,5707,7.01,5708,7.01,5709,5.125,5710,5.125,5711,5.125,5712,5.125,5713,6.3,5714,5.125,5715,4.264,5716,4.264,5717,4.008,5718,5.125,5719,4.606,5720,5.125,5721,5.125,5722,3.634,5723,5.125,5724,5.125,5725,3.634,5726,3.489,5727,5.125,5728,5.125,5729,5.125,5730,5.125,5731,5.125,5732,2.462,5733,3.634,5734,5.125,5735,4.606,5736,5.125,5737,4.606,5738,5.125,5739,4.606,5740,4.008,5741,4.008,5742,4.264,5743,4.008,5744,3.634,5745,5.125,5746,5.125,5747,3.634]],["tags/Thoughts on collaboration in education",[2302,1.311,3203,1.979,4451,2.165]],["title/An am486 Performance Analysis",[2078,3.078,5564,3.714,5748,4.903]],["content/An am486 Performance Analysis",[0,1.016,1,1.275,2,2.598,7,1.887,10,0.545,13,1.523,17,0.67,19,0.381,27,0.448,30,1.445,37,2.73,40,2.377,42,1.503,48,1.724,50,0.945,52,0.441,53,2.804,55,1.775,60,1.103,85,2.148,88,1.98,100,2.428,101,0.422,103,1.842,131,0.925,138,2.428,154,1.065,156,1.214,167,1.917,175,1.339,182,1.117,217,1.157,223,1.13,241,2.047,275,0.958,288,1.117,297,1.483,312,1.483,314,2.884,315,0.97,326,2.377,375,0.775,378,1.078,388,1.564,409,1.356,413,2.377,418,1.652,428,2.73,444,1.724,457,1.356,492,2.481,517,0.993,593,2.662,627,2.887,630,1.339,705,1.724,728,2.887,797,2.083,885,2.538,912,1.079,921,0.852,948,2.329,978,1.724,1012,3.785,1066,2.329,1069,2.285,1088,3.706,1160,3.174,1172,2.804,1193,3.031,1229,3.282,1283,0.709,1286,2.538,1291,1.259,1297,3.706,1317,1.749,1319,2.757,1327,1.523,1339,1.503,1340,3.068,1346,1.503,1352,2.329,1369,1.323,1403,2.083,1463,3.068,1477,2.428,1504,4.016,1508,2.971,1578,2.662,1582,2.712,1583,1.523,1614,1.98,1623,1.629,1655,1.98,1680,4.035,1725,1.724,1764,1.065,1969,0.832,1986,2.24,2001,3.174,2078,4.73,2125,2.329,2193,2.662,2289,1.775,2301,2.598,2341,2.428,2378,1.529,2392,2.598,2401,2.884,2412,4.138,2413,3.119,2423,3.432,2464,3.174,2475,2.509,2479,3.592,2494,3.174,2512,2.283,2533,3.904,2590,2.971,2592,2.428,2645,2.092,2684,2.598,2798,2.047,2844,3.294,2892,3.174,2990,4.42,3077,2.198,3099,6.223,3125,2.884,3163,2.481,3224,2.538,3236,2.329,3278,2.884,4308,3.592,4397,3.592,4428,2.884,4552,4.996,4644,2.884,4706,4.349,5103,2.804,5109,3.38,5131,3.802,5174,2.047,5335,4.349,5352,7.789,5361,2.662,5376,3.533,5396,2.971,5417,2.24,5564,3.294,5651,3.592,5657,2.662,5726,3.294,5732,1.7,5748,6.967,5749,4.84,5750,2.971,5751,4.42,5752,4.84,5753,3.785,5754,4.026,5755,5.085,5756,4.84,5757,4.84,5758,6.45,5759,6.967,5760,6.223,5761,4.84,5762,9.126,5763,3.785,5764,4.84,5765,6.967,5766,8.384,5767,6.967,5768,5.498,5769,4.84,5770,2.662,5771,4.84,5772,4.84,5773,4.84,5774,4.84,5775,4.349,5776,4.84,5777,4.42,5778,4.026,5779,4.349,5780,4.84,5781,4.84,5782,4.84,5783,6.739,5784,4.84,5785,4.026,5786,3.592,5787,3.294,5788,4.84,5789,2.804,5790,3.785,5791,5.27,5792,4.026,5793,4.026,5794,4.84,5795,4.84,5796,6.739,5797,4.84,5798,4.84,5799,4.84,5800,7.753,5801,4.587,5802,4.84,5803,4.84,5804,2.971,5805,4.84,5806,4.84]],["tags/An am486 Performance Analysis",[5770,3.13]],["title/486 Upgrade 2: The SD Card HDD",[131,0.767,1463,2.542,1680,1.93,2798,1.696,5751,2.63,5770,2.206]],["content/486 Upgrade 2: The SD Card HDD",[0,1.012,10,0.757,16,2.587,17,1.07,18,1.578,19,0.219,25,1.317,27,0.446,29,1.367,39,2.111,42,2.086,50,0.943,52,0.613,60,1.099,70,1.557,73,0.753,74,1.24,81,1.6,86,2.429,87,1.073,91,2.756,94,1.139,95,2.274,99,1.367,101,0.42,104,0.965,107,2.872,109,1.917,112,3.054,113,0.954,114,2.719,121,1.42,132,1.402,144,1.128,145,2.038,159,1.477,179,0.9,182,1.112,197,4.965,200,1.939,203,1.048,216,1.169,241,2.038,264,2.149,276,1.194,278,1.254,293,0.988,326,2.367,365,1.822,384,1.514,411,6.038,422,1.717,444,1.717,452,1.742,457,1.35,517,0.988,596,2.716,621,1.906,622,2.417,647,3.28,728,1.794,853,2.059,921,0.848,930,3.161,948,2.319,964,2.149,985,1.333,986,2.719,1018,3.417,1026,3.577,1069,1.98,1131,2.872,1191,2.959,1229,1.794,1237,3.016,1260,1.98,1272,2.65,1283,0.507,1286,2.527,1291,1.254,1295,4.987,1298,2.23,1312,2.23,1317,2.429,1319,3.164,1339,2.086,1369,1.317,1403,2.074,1462,2.792,1463,4.903,1476,2.959,1487,2.074,1504,2.872,1534,3.234,1542,3.28,1557,2.359,1578,2.65,1606,2.471,1647,3.054,1655,2.749,1656,3.417,1660,2.792,1662,2.274,1675,2.23,1680,2.319,1687,0.988,1720,2.719,1754,3.161,1777,2.842,1794,1.939,1796,2.074,1811,2.319,1858,2.038,1941,2.65,1990,3.161,1994,3.577,1999,2.367,2006,1.794,2087,2.527,2104,2.65,2149,2.074,2176,3.161,2258,3.054,2289,1.768,2295,3.28,2326,2.959,2347,2.719,2378,0.879,2392,2.587,2456,2.959,2490,2.959,2512,2.274,2558,1.879,2645,1.496,2666,2.274,2681,2.872,2694,2.527,2715,2.959,2797,3.161,2798,3.54,2853,2.417,2881,1.971,2952,2.792,2996,2.417,3007,3.161,3036,2.189,3128,3.28,3273,6.038,3486,4.331,3488,2.959,3500,4.009,4338,5.099,4353,2.959,4417,2.471,4527,1.557,4575,2.792,4904,2.959,5109,2.417,5171,3.769,5190,4.009,5237,3.054,5376,2.527,5401,2.527,5477,2.959,5542,2.587,5634,6.544,5636,3.417,5656,3.769,5722,3.417,5725,3.417,5751,6.134,5755,3.161,5770,3.695,5777,3.161,5790,3.769,5807,3.577,5808,3.769,5809,4.331,5810,4.819,5811,4.331,5812,3.28,5813,4.819,5814,4.331,5815,6.719,5816,4.331,5817,4.009,5818,4.819,5819,4.987,5820,4.819,5821,4.009,5822,3.28,5823,4.819,5824,4.819,5825,4.259,5826,5.596,5827,4.819,5828,3.769,5829,2.792,5830,4.819,5831,6.719,5832,4.819,5833,2.872,5834,4.819,5835,3.769,5836,3.417,5837,4.819,5838,4.819,5839,4.819,5840,4.819,5841,4.819,5842,6.719,5843,4.819,5844,2.471,5845,4.009,5846,4.819,5847,4.819,5848,5.489,5849,4.819,5850,4.819,5851,4.819,5852,4.819,5853,4.819,5854,4.819,5855,3.054,5856,4.819,5857,4.819,5858,4.331,5859,4.331,5860,3.769,5861,4.331,5862,4.819,5863,4.819]],["tags/486 Upgrade 2: The SD Card HDD",[5770,3.13]],["title/486 Upgrade 1: Sound Blaster 16",[85,1.279,517,0.822,1680,1.93,5655,2.324,5750,2.462,5770,2.206]],["content/486 Upgrade 1: Sound Blaster 16",[0,1.018,1,1.276,3,1.447,5,0.971,7,1.89,14,0.824,19,0.22,22,0.926,25,1.324,27,0.449,28,0.863,40,2.381,52,0.708,64,2.734,77,2.067,79,0.46,85,3.046,86,1.752,87,1.079,91,1.727,98,1.079,101,0.422,102,2.485,104,0.696,121,1.428,154,1.067,156,1.216,162,3.072,168,1.556,185,1.375,199,1.566,201,2.888,216,0.843,217,1.159,233,2.123,240,1.006,264,2.161,276,1.201,293,1.591,312,2.067,317,2.271,321,1.752,369,2.976,388,1.566,404,1.079,416,2.123,443,1.988,465,1.832,491,2.161,517,0.994,547,3.072,565,5.415,586,2.903,595,4.02,630,1.866,698,1.778,715,2.485,724,1.505,788,2.888,853,1.485,877,1.963,897,2.067,921,1.188,932,1.983,951,1.652,964,2.161,978,1.727,982,2.431,1069,1.988,1161,2.123,1276,1.805,1289,0.824,1315,1.983,1317,1.752,1319,2.759,1321,3.179,1325,3.908,1352,2.333,1420,2.512,1421,3.179,1422,1.92,1426,1.447,1462,2.808,1481,2.888,1496,4.592,1582,1.951,1608,2.161,1651,2.976,1655,1.983,1687,0.994,1710,2.243,1711,1.983,1719,2.243,1784,2.601,1810,3.179,1858,2.05,1912,3.299,1971,2.808,1986,2.243,2011,2.888,2030,3.179,2045,3.179,2231,2.665,2318,2.474,2365,3.299,2374,2.05,2378,1.23,2413,2.243,2433,2.271,2485,3.179,2512,2.287,2582,2.665,2645,1.505,2666,2.287,2669,2.888,2704,2.976,2798,3.962,2881,1.983,2921,5.949,2986,2.485,3079,3.437,3081,4.032,3105,4.355,3133,4.032,3190,2.601,3454,2.287,4375,3.79,4527,2.507,4549,4.068,4574,3.597,4575,4.495,4629,3.299,4657,4.276,4754,4.355,4945,2.888,5085,1.587,5147,2.665,5180,3.072,5417,2.243,5532,3.79,5609,2.976,5631,4.355,5639,3.79,5655,4.495,5735,4.355,5750,5.865,5755,3.179,5767,4.355,5770,2.665,5785,4.032,5808,3.79,5822,3.299,5829,3.908,5844,2.485,5864,2.976,5865,4.355,5866,4.032,5867,4.355,5868,4.032,5869,3.179,5870,3.597,5871,4.846,5872,4.355,5873,4.846,5874,4.846,5875,4.846,5876,4.846,5877,4.846,5878,3.299,5879,4.355,5880,4.846,5881,4.032,5882,4.846,5883,3.072,5884,4.032,5885,4.846,5886,6.745,5887,4.355,5888,4.846,5889,3.79,5890,4.355,5891,4.355,5892,4.846,5893,4.846,5894,7.759,5895,6.745,5896,4.846,5897,4.846,5898,4.846,5899,4.846,5900,4.846,5901,2.431,5902,4.846,5903,7.759,5904,4.846,5905,2.976,5906,3.597,5907,4.355,5908,4.355,5909,4.846,5910,4.846,5911,4.355,5912,4.846,5913,4.846,5914,4.355,5915,6.745,5916,4.846,5917,2.485,5918,4.846,5919,4.355,5920,4.032,5921,6.745,5922,4.846,5923,4.846,5924,4.846,5925,4.355,5926,4.032,5927,4.846,5928,4.355,5929,4.032,5930,4.846,5931,3.437,5932,4.846,5933,4.846,5934,4.355,5935,4.355,5936,3.597,5937,4.846,5938,4.846,5939,4.355,5940,4.355]],["tags/486 Upgrade 1: Sound Blaster 16",[5770,2.348,5941,3.339]],["title/Reviving an old 80486 PC",[853,1.492,1319,1.993,5755,3.195,5807,3.615]],["content/Reviving an old 80486 PC",[5,0.947,6,0.894,19,0.348,21,1.429,22,1.267,27,0.768,28,0.842,39,2.069,46,1.933,50,0.576,52,0.698,55,1.733,64,2.666,73,0.739,74,1.223,79,0.596,85,1.506,86,1.708,91,1.683,101,0.578,104,0.951,121,1.953,131,1.267,158,0.599,165,0.969,166,3.216,167,1.871,179,0.882,216,0.822,240,0.98,242,1.733,285,4.2,293,0.969,297,1.448,315,0.947,320,1.834,368,1.486,375,1.061,378,1.052,384,1.065,392,2.274,404,1.052,412,1.411,422,2.361,426,2.536,433,3.351,443,1.393,517,1.359,569,2.901,595,2.816,621,1.341,627,1.759,629,3.216,630,1.834,667,2.536,705,1.683,715,2.422,728,2.468,853,2.677,911,2.738,912,1.399,947,2.666,951,1.157,1011,1.683,1041,3.931,1062,1.902,1201,3.507,1229,1.759,1274,2.004,1289,0.803,1295,3.949,1317,1.708,1319,3.705,1321,3.099,1327,1.486,1346,2.057,1354,3.324,1394,4.699,1401,2.107,1422,1.871,1426,1.411,1462,3.84,1463,4.851,1471,3.099,1476,2.901,1483,5.183,1487,2.033,1488,1.871,1534,2.274,1578,2.599,1582,1.902,1655,1.933,1657,2.031,1680,3.189,1687,0.969,1759,3.351,1764,1.458,1796,2.033,1827,2.738,1881,1.965,1903,2.422,1930,3.644,1933,2.536,1999,2.321,2006,1.759,2024,2.536,2052,2.477,2062,1.965,2078,2.666,2082,3.931,2087,2.477,2115,2.187,2198,3.931,2357,5.427,2434,2.146,2475,1.759,2648,5.364,2704,2.901,2785,1.902,2797,3.099,2798,1.999,2880,4.246,2881,1.933,2932,3.099,2945,2.477,2951,2.995,2952,2.738,2986,2.422,2995,4.563,3088,2.901,3099,4.919,3128,4.511,3497,3.099,4193,2.738,4321,3.931,4338,2.738,4353,2.901,4401,3.931,4552,4.561,4575,2.738,4658,3.695,4745,3.099,4904,4.069,4926,3.351,5110,3.324,5131,2.666,5283,3.01,5355,3.695,5401,3.475,5518,2.816,5634,5.183,5656,3.695,5758,3.931,5759,4.246,5760,4.919,5765,4.246,5768,3.351,5775,7.456,5777,4.347,5778,3.931,5785,3.931,5809,4.246,5811,4.246,5812,6.166,5819,3.507,5825,2.995,5829,2.738,5835,3.695,5836,3.351,5848,3.099,5859,4.246,5870,3.507,5901,2.37,5926,3.931,5942,2.901,5943,3.351,5944,4.725,5945,4.725,5946,4.725,5947,4.725,5948,4.725,5949,3.931,5950,4.725,5951,4.246,5952,5.513,5953,4.725,5954,6.627,5955,4.725,5956,6.627,5957,4.725,5958,4.725,5959,4.725,5960,4.725,5961,4.725,5962,4.725,5963,4.725,5964,4.725,5965,2.995,5966,4.725,5967,7.653,5968,4.725,5969,3.351,5970,3.931,5971,4.725,5972,6.627,5973,4.725,5974,4.725,5975,4.725,5976,4.725,5977,5.955,5978,4.725,5979,3.507,5980,4.725,5981,4.725,5982,4.725,5983,2.901,5984,3.931,5985,3.351,5986,4.246,5987,5.955,5988,4.725,5989,4.246,5990,4.725,5991,4.725,5992,4.725,5993,3.507,5994,4.725,5995,4.246,5996,4.725,5997,4.725,5998,3.695,5999,4.725,6000,4.725]],["tags/Reviving an old 80486 PC",[5770,3.13]],["title/A journey through the history of webdesign",[109,1.207,4396,2.172,6001,3.316,6002,4.052]],["content/A journey through the history of webdesign",[5,1.013,6,0.682,10,0.894,19,0.316,22,1.328,25,1.382,28,0.901,29,1.435,40,3.412,52,0.816,60,1.153,73,1.24,74,0.933,75,0.99,76,2.064,79,0.345,81,1.679,84,2.536,85,1.612,96,2.511,101,0.605,109,1.722,144,0.849,150,1.238,168,1.167,182,1.167,189,2.852,193,2.484,203,1.511,234,2.433,275,1.001,288,1.603,294,1.883,297,2.128,307,4.597,312,1.549,315,1.013,368,2.496,374,3.753,388,1.634,393,4.206,403,2.255,415,4.265,428,2.852,435,2.176,473,2.386,475,2.255,477,2.889,481,2.714,595,3.013,596,2.439,621,1.971,649,2.592,700,3.561,705,1.801,713,2.93,786,3.013,853,1.549,880,3.954,881,2.176,897,2.617,908,3.646,912,1.112,921,0.89,932,3.246,951,1.238,985,1.399,1008,1.941,1011,1.801,1062,2.035,1069,1.49,1260,2.047,1267,2.484,1274,1.529,1309,3.316,1312,2.34,1315,2.068,1333,2.035,1369,1.382,1415,1.776,1420,2.586,1425,2.34,1488,2.751,1493,3.013,1577,2.296,1582,2.035,1608,2.255,1612,2.536,1633,2.255,1671,2.103,1720,2.852,1740,3.442,1764,1.113,1777,2.139,1795,1.776,1872,2.296,1878,3.013,1952,2.433,1965,1.726,2007,1.702,2012,3.484,2063,3.143,2065,4.925,2080,3.205,2123,2.433,2162,3.104,2191,4.544,2323,3.205,2358,2.93,2378,0.922,2433,1.702,2483,2.714,2543,3.442,2592,2.536,2645,1.57,2727,4.139,2728,3.013,2797,3.316,2818,2.34,2916,3.442,3008,3.442,3224,2.651,3546,2.592,4348,3.954,4396,3.538,4422,3.205,4433,4.206,4688,3.753,4753,3.104,4802,3.205,4967,3.316,5119,3.788,5281,3.585,5283,2.296,5358,6.349,5367,2.781,5377,4.544,5381,3.442,5417,2.34,5523,3.954,5587,5.156,5825,5.029,5848,3.316,5855,3.205,5934,4.544,5942,3.104,5984,4.206,6001,3.442,6002,5.778,6003,3.316,6004,4.206,6005,5.056,6006,3.954,6007,4.544,6008,5.056,6009,4.544,6010,4.544,6011,5.056,6012,5.056,6013,3.442,6014,4.544,6015,6.946,6016,7.934,6017,6.946,6018,5.056,6019,5.056,6020,6.946,6021,5.056,6022,5.056,6023,5.056,6024,4.544,6025,5.056,6026,5.056,6027,5.056,6028,5.056,6029,5.056,6030,3.205,6031,5.056,6032,5.056,6033,5.056,6034,8.542,6035,3.954,6036,4.206,6037,5.056,6038,3.753,6039,3.442,6040,5.056,6041,4.206,6042,3.954,6043,5.056,6044,5.056,6045,5.056,6046,5.056,6047,5.056,6048,5.056,6049,3.104,6050,5.056,6051,4.544,6052,5.056,6053,5.056,6054,3.205]],["tags/A journey through the history of webdesign",[]],["title/Building a Core2Duo Windows XP Retro PC",[1288,2.844,1319,1.641,1487,1.726,1623,1.35,4527,1.296,6055,3.336]],["content/Building a Core2Duo Windows XP Retro PC",[0,1.363,13,1.444,17,0.898,19,0.209,22,0.878,26,0.789,27,0.601,28,0.818,30,1.371,42,1.425,50,0.791,59,2.043,60,1.481,73,0.718,76,1.194,79,0.313,87,1.022,90,2.166,92,2.59,98,1.022,101,0.782,104,0.932,116,1.072,122,2.166,131,1.652,150,1.124,153,1.567,154,1.01,156,1.152,166,3.125,167,1.818,179,0.857,180,1.224,184,1.545,199,1.483,209,2.59,216,0.799,219,2.468,230,2.166,240,1.347,241,1.942,253,1.942,264,2.047,266,2.047,275,0.909,288,1.059,311,1.407,361,1.589,388,1.483,398,2.819,409,1.819,416,2.011,431,2.525,438,2.736,443,1.353,517,1.68,630,2.085,723,1.976,728,2.806,749,2.66,788,3.87,853,1.407,903,1.878,911,2.66,912,0.735,920,1.976,951,1.124,964,2.047,978,1.635,987,3.405,1011,1.635,1069,1.914,1146,1.504,1172,2.66,1237,2.938,1278,2.647,1283,0.793,1288,4.605,1304,3.011,1312,2.125,1319,3.351,1321,3.011,1339,2.016,1352,2.209,1354,2.303,1382,1.942,1399,2.984,1403,1.976,1413,3.407,1422,1.818,1470,2.464,1487,3.97,1537,1.878,1586,1.425,1608,2.047,1623,2.758,1657,1.407,1763,1.909,1764,1.01,1777,1.942,1785,1.444,1789,2.91,1803,2.59,1885,2.66,1933,2.464,1947,2.353,1986,2.125,2063,2.572,2117,2.819,2289,1.684,2378,0.837,2382,2.819,2392,2.464,2467,2.525,2483,2.464,2610,2.819,2617,2.66,2727,2.736,2773,3.59,2798,3.465,2825,2.525,2830,2.819,2843,3.255,2844,3.125,2854,2.525,2926,3.819,3108,3.407,3128,4.42,3152,4.42,3236,2.209,3497,3.011,3539,2.59,3549,2.91,3821,5.593,3927,3.125,4397,3.407,4419,2.66,4428,2.736,4527,1.483,4538,3.59,4549,2.407,4552,2.736,4561,3.819,4691,2.407,4745,3.011,4756,2.209,4802,4.116,4861,3.819,4904,3.987,5107,4.259,5131,4.621,5147,2.525,5174,2.747,5398,3.407,5401,3.405,5549,3.59,5673,3.819,5680,3.819,5700,3.987,5732,1.612,5751,4.942,5763,3.59,5812,3.125,5864,2.819,5901,2.303,5920,3.819,5952,3.819,5986,4.125,5998,3.59,6049,3.987,6055,5.402,6056,4.125,6057,5.593,6058,3.987,6059,4.125,6060,3.819,6061,3.125,6062,4.59,6063,3.819,6064,4.59,6065,4.59,6066,4.59,6067,4.59,6068,4.125,6069,4.59,6070,4.125,6071,4.59,6072,3.59,6073,4.59,6074,2.59,6075,3.407,6076,5.509,6077,5.835,6078,4.59,6079,7.534,6080,6.129,6081,4.59,6082,6.268,6083,5.129,6084,5.835,6085,4.59,6086,3.819,6087,4.59,6088,6.493,6089,6.493,6090,4.42,6091,4.125,6092,4.59,6093,4.59,6094,4.59,6095,3.819,6096,4.59,6097,4.125,6098,4.59,6099,3.407,6100,4.59,6101,4.59,6102,4.59,6103,3.59,6104,4.605,6105,4.59,6106,6.493,6107,4.59,6108,4.125,6109,4.59,6110,4.59,6111,5.835,6112,6.493,6113,3.819,6114,4.125,6115,3.59,6116,4.59,6117,4.59,6118,4.125,6119,5.078,6120,4.125,6121,4.59,6122,2.91,6123,4.59]],["tags/Building a Core2Duo Windows XP Retro PC",[6076,3.494]],["title/Building an Athlon Windows 98 Retro PC",[1319,1.641,1487,1.726,1623,1.35,4527,1.296,6057,2.977,6061,2.73]],["content/Building an Athlon Windows 98 Retro PC",[0,1.049,4,2.228,5,1.001,6,1.064,17,0.691,19,0.227,20,1.383,22,1.317,26,1.356,27,0.638,28,0.89,39,2.188,50,0.84,60,1.571,73,1.077,74,0.922,79,0.538,85,1.593,98,1.113,100,2.507,101,0.601,103,1.365,104,0.989,142,2.358,152,2.507,153,1.706,156,1.253,158,0.633,167,2.729,168,1.153,175,1.383,223,1.167,230,2.358,240,1.636,243,3.543,263,0.819,276,1.238,295,2.562,320,1.383,378,1.113,388,1.615,407,2.114,428,2.819,430,1.454,443,2.031,446,2.358,549,2.682,627,2.936,749,2.895,788,2.978,853,2.111,854,3.129,877,1.454,912,0.8,921,0.88,983,2.313,1069,1.473,1146,2.257,1229,1.861,1260,2.031,1278,1.615,1288,6.027,1304,3.277,1319,3.477,1339,1.551,1348,2.114,1426,2.057,1430,2.454,1463,3.167,1487,4.065,1488,1.979,1504,4.699,1615,2.895,1623,2.319,1680,4.291,1691,3.068,1741,2.358,1763,2.078,1965,1.706,1983,2.257,1999,2.454,2006,2.565,2147,2.978,2289,1.833,2336,3.401,2378,1.626,2390,2.358,2397,2.978,2417,2.748,2431,2.895,2511,2.748,2645,1.551,2727,4.106,2753,3.068,2843,3.543,2854,2.748,2969,3.189,3174,3.401,3485,2.562,3549,3.167,3848,3.401,3905,3.167,4350,3.908,4396,2.228,4428,4.106,4527,1.615,4552,5.065,4657,3.167,4714,2.819,4797,3.277,4904,3.068,5107,3.277,5128,3.068,5174,2.114,5195,2.62,5237,3.167,5278,4.157,5368,3.401,5398,5.114,5417,2.313,5750,3.068,5751,4.519,5755,4.519,5758,4.157,5763,3.908,5770,3.789,5777,5.575,5807,3.709,5808,3.908,5917,2.562,5926,4.157,5942,4.23,5952,4.157,5989,4.49,6006,3.908,6038,3.709,6057,5.853,6058,4.23,6060,4.157,6061,5.368,6076,3.068,6077,6.191,6084,4.49,6124,4.997,6125,4.997,6126,4.997,6127,4.997,6128,4.157,6129,3.543,6130,4.997,6131,3.401,6132,3.908,6133,4.49,6134,4.157,6135,4.997,6136,4.997,6137,4.157,6138,7.885,6139,4.997,6140,4.997,6141,4.49,6142,6.889,6143,4.997,6144,4.157,6145,4.997,6146,4.997,6147,4.49,6148,4.997,6149,4.997,6150,4.997,6151,3.401,6152,3.709,6153,4.997,6154,6.889,6155,4.997,6156,4.997,6157,4.49,6158,4.997,6159,4.997,6160,4.997,6161,4.997,6162,4.997,6163,4.997,6164,3.908,6165,4.157,6166,4.997,6167,4.997,6168,4.997,6169,4.157,6170,4.997,6171,4.997,6172,4.997,6173,4.997,6174,3.543,6175,4.157,6176,4.997,6177,3.908,6178,4.49,6179,3.543,6180,4.997,6181,3.908,6182,4.997,6183,4.49,6184,4.997,6185,4.997,6186,4.997,6187,4.997,6188,4.157]],["tags/Building an Athlon Windows 98 Retro PC",[6058,3.494]],["title/Personal Desktop Screenshots of Olde",[368,1.532,853,1.492,1885,2.822,2118,2.822]],["content/Personal Desktop Screenshots of Olde",[0,1.035,1,1.299,6,0.665,10,0.769,18,2.236,19,0.31,24,0.965,25,1.348,26,1.174,27,0.632,48,1.757,52,0.45,60,1.124,73,1.224,74,1.26,76,1.283,79,0.336,83,1.615,84,2.474,87,1.52,95,2.327,101,0.8,104,0.98,109,1.222,116,1.151,144,1.146,149,1.683,153,2.673,158,1.071,160,2.16,162,3.126,165,1.011,175,1.889,179,0.921,180,1.315,198,3.66,203,1.072,216,1.188,242,1.809,253,2.086,276,1.222,288,1.138,294,1.836,311,1.511,320,1.364,321,2.468,375,0.79,404,1.098,430,1.987,445,4.841,452,1.783,467,2.939,483,3.497,491,2.199,518,2.327,596,2.398,705,1.757,714,4.431,853,2.092,877,1.987,881,2.122,903,2.017,912,1.254,920,2.122,921,0.868,932,3.203,937,2.782,951,1.208,964,2.199,983,3.16,985,1.364,1011,2.79,1160,3.234,1229,1.836,1260,2.012,1274,1.491,1283,0.519,1289,1.16,1294,3.66,1296,1.085,1303,2.474,1312,2.282,1317,1.783,1333,1.985,1339,1.531,1346,1.531,1348,2.086,1382,2.086,1393,3.755,1413,3.66,1420,1.836,1487,2.122,1488,1.953,1534,2.373,1552,3.5,1557,1.732,1578,2.712,1663,2.148,1678,2.051,1725,1.757,1753,3.66,1784,2.647,1785,2.148,1790,2.857,1858,2.086,1885,4.537,1931,2.017,1969,0.848,2062,2.051,2063,1.953,2087,2.586,2105,2.712,2118,4.537,2297,2.586,2301,2.647,2360,3.956,2361,3.234,2396,2.647,2475,1.836,2552,3.497,2564,2.782,2610,3.028,2645,1.531,2648,3.028,2691,2.888,2694,2.586,2697,3.66,2794,3.357,2795,3.234,2921,3.497,3098,3.497,3123,3.234,3242,4.431,3295,2.939,3454,2.327,3504,3.856,3537,2.857,3548,4.102,3549,3.126,4339,5.779,4340,3.66,4358,3.028,4386,5.339,4408,4.841,4417,2.528,4549,3.58,4552,2.939,4808,4.102,4960,3.497,5121,3.126,5131,2.782,5174,2.086,5369,3.126,5414,3.357,5651,3.66,5654,3.66,5700,3.028,5942,3.028,6004,4.102,6006,3.856,6042,5.339,6063,4.102,6072,3.856,6189,3.357,6190,2.857,6191,3.856,6192,4.931,6193,4.931,6194,4.431,6195,7.037,6196,4.931,6197,4.931,6198,4.931,6199,7.037,6200,3.497,6201,4.431,6202,9.593,6203,4.931,6204,4.931,6205,4.931,6206,2.939,6207,3.497,6208,4.931,6209,4.931,6210,4.102,6211,4.931,6212,6.827,6213,3.497,6214,4.102,6215,4.931,6216,4.931,6217,4.931,6218,4.931,6219,4.931,6220,4.931,6221,4.931,6222,4.931,6223,4.931,6224,3.66,6225,4.931,6226,4.931,6227,4.931,6228,4.102,6229,4.931,6230,4.102,6231,4.931,6232,4.102,6233,4.931,6234,4.931,6235,4.431,6236,4.931,6237,4.931,6238,4.931,6239,4.931,6240,4.431,6241,4.931,6242,4.931,6243,4.931,6244,4.931,6245,4.931]],["tags/Personal Desktop Screenshots of Olde",[4339,3.494]],["title/The Internet Killed Secrets in Games",[40,2.392,2378,0.888,4954,3.454,6246,3.615]],["content/The Internet Killed Secrets in Games",[10,0.897,11,2.526,14,1.186,17,0.966,19,0.362,25,1.392,27,0.471,28,1.244,29,1.981,39,2.231,40,2.502,50,1.044,52,0.637,55,1.869,69,1.986,70,1.646,76,2.072,79,0.347,86,1.842,92,2.874,94,1.204,98,1.134,99,1.445,103,1.392,104,0.731,107,3.036,109,1.73,113,1.009,149,1.739,163,3.341,165,1.432,180,1.358,182,1.175,210,2.358,219,1.669,223,1.189,233,2.231,242,1.869,253,2.953,288,1.175,291,2.018,294,1.897,304,2.231,310,5.182,311,1.561,357,4.951,365,2.639,375,1.118,378,1.134,404,1.134,422,1.815,443,2.058,455,1.739,457,1.427,459,3.36,491,2.272,728,1.897,782,1.273,908,1.897,912,0.816,920,2.192,929,1.502,932,2.084,951,1.248,985,1.932,1237,1.986,1238,3.612,1291,1.325,1292,2.018,1296,1.121,1298,2.358,1315,2.084,1334,2.231,1339,1.582,1399,2.018,1425,2.358,1462,2.952,1537,2.084,1555,2.874,1568,3.468,1586,1.582,1608,2.272,1623,1.715,1646,3.341,1648,1.624,1711,2.084,1721,1.033,1763,2.119,1794,2.81,1803,2.874,1811,2.452,1852,2.802,1965,1.739,1969,1.201,1971,2.952,1973,3.036,1979,3.781,1983,1.669,2006,1.897,2020,4.238,2063,2.018,2070,2.612,2144,2.874,2147,4.161,2165,3.005,2214,4.494,2230,2.404,2289,1.869,2378,1.763,2392,2.734,2417,2.802,2454,2.314,2471,2.802,2475,1.897,2480,2.734,2576,2.953,2645,1.582,2669,3.036,2684,2.734,2711,3.229,2806,2.502,2967,3.341,2970,4.238,3122,4.615,3145,4.124,3189,2.874,3248,3.984,3259,4.238,3271,3.128,3293,4.238,3445,4.578,3994,4.238,4398,3.036,4399,3.229,4456,3.984,4527,1.646,4949,3.781,5083,3.229,5340,4.578,5348,6.274,5407,3.341,5562,3.468,5833,3.036,5864,3.128,5868,4.238,5942,3.128,6054,3.229,6191,3.984,6246,3.781,6247,5.094,6248,4.578,6249,5.094,6250,5.094,6251,5.094,6252,4.578,6253,4.578,6254,5.094,6255,4.578,6256,8.569,6257,5.094,6258,5.094,6259,4.578,6260,4.578,6261,6.982,6262,4.578,6263,5.094,6264,7.158,6265,5.094,6266,5.094,6267,5.094,6268,6.274,6269,6.982,6270,5.094,6271,3.036,6272,6.982,6273,7.158,6274,4.578,6275,7.158,6276,5.094,6277,5.094,6278,5.808,6279,3.781,6280,4.578,6281,3.781,6282,5.094,6283,4.578,6284,5.094,6285,4.238,6286,3.612,6287,4.238,6288,5.094,6289,5.182,6290,3.984,6291,5.094,6292,5.094,6293,5.094,6294,5.094,6295,4.238,6296,5.094,6297,5.094,6298,5.094,6299,3.781,6300,4.578,6301,3.984,6302,3.984]],["tags/The Internet Killed Secrets in Games",[2378,1.038]],["title/Win98 Upgrade: Sound Blaster Audigy",[85,1.402,1680,2.117,5750,2.701,6058,2.701,6303,3.44]],["content/Win98 Upgrade: Sound Blaster Audigy",[14,1.136,19,0.304,21,1.447,22,0.915,25,1.308,27,0.443,39,2.096,50,1.017,52,0.436,73,1.045,77,1.466,85,3.036,87,1.066,98,1.066,101,0.417,104,0.687,127,3.677,130,2.632,131,1.278,145,2.024,154,1.053,157,1.172,159,1.466,182,1.104,184,1.611,185,1.358,197,2.699,217,1.144,240,1.387,251,1.705,263,0.785,271,3.173,275,0.947,293,1.371,320,1.324,375,0.766,378,1.066,384,1.078,395,2.303,404,1.716,407,2.024,409,1.341,412,1.429,422,1.705,430,1.392,441,1.078,473,2.258,484,1.99,517,0.981,547,3.033,586,2.059,593,2.632,595,2.852,630,1.324,631,2.632,632,2.632,705,1.705,797,2.059,853,1.466,881,2.059,912,0.766,921,0.842,934,2.059,951,1.172,983,2.215,998,2.453,1018,3.393,1062,1.926,1069,1.41,1172,3.874,1193,1.73,1278,1.546,1283,0.503,1289,0.813,1291,1.245,1315,1.957,1317,2.417,1319,2.735,1327,1.505,1335,1.782,1382,2.024,1420,2.489,1462,2.772,1481,3.984,1487,3.316,1517,2.4,1557,1.68,1582,2.691,1623,1.611,1634,1.926,1645,2.4,1653,3.981,1663,1.505,1680,3.218,1725,1.705,1764,1.053,1858,2.024,1889,2.852,1903,2.453,1912,3.257,1941,2.632,1964,3.033,2061,3.257,2086,2.852,2104,2.632,2127,2.852,2231,2.632,2318,2.457,2337,3.138,2346,2.453,2353,1.99,2357,3.393,2358,2.772,2378,1.219,2407,2.568,2417,2.632,2433,1.611,2483,2.568,2534,3.257,2621,5.562,2694,2.509,2756,2.059,2798,4.26,2844,3.257,2881,3.152,2945,2.509,2995,2.632,3023,4.238,3163,2.453,3524,2.632,3538,3.393,3539,2.699,4331,4.3,4396,2.134,4527,2.16,4531,3.742,4549,3.505,4575,3.874,5145,4.385,5147,3.677,5358,4.741,5542,2.568,5543,3.742,5574,3.742,5629,3.257,5632,3.393,5655,2.772,5680,3.981,5732,1.68,5750,5.94,5792,3.981,5829,2.772,5845,3.981,5866,3.981,5869,3.138,5878,3.257,5881,3.981,5883,3.033,5891,4.3,5917,2.453,5949,3.981,5998,3.742,6003,3.138,6049,2.938,6057,3.552,6058,2.938,6061,4.551,6076,2.938,6090,5.679,6190,2.772,6303,7.3,6304,4.3,6305,4.785,6306,4.785,6307,4.785,6308,4.785,6309,4.3,6310,4.785,6311,6.685,6312,4.785,6313,4.785,6314,3.981,6315,4.3,6316,5.564,6317,3.742,6318,6.925,6319,4.3,6320,3.677,6321,4.785,6322,4.785,6323,3.981,6324,6.685,6325,4.3,6326,4.785,6327,3.552,6328,4.785,6329,4.785,6330,3.981,6331,4.785,6332,3.552,6333,7.706,6334,4.3,6335,3.742,6336,6.008,6337,4.785,6338,4.785,6339,4.785,6340,4.3,6341,4.785,6342,4.3,6343,4.785,6344,4.785,6345,4.785,6346,4.785,6347,4.3,6348,3.742,6349,4.785,6350,4.785,6351,4.785,6352,3.552,6353,4.785,6354,4.785,6355,3.742,6356,4.785]],["tags/Win98 Upgrade: Sound Blaster Audigy",[5941,3.339,6058,2.621]],["title/WinXP Upgrade: Sound Blaster X-Fi",[85,1.279,127,2.206,1680,1.93,5750,2.462,6076,2.462,6323,3.336]],["content/WinXP Upgrade: Sound Blaster X-Fi",[5,0.964,17,0.666,19,0.305,27,0.445,39,2.108,73,0.752,79,0.328,85,3.088,87,1.072,90,2.271,94,1.137,98,1.072,103,1.315,127,4.251,131,1.283,150,1.178,154,1.059,158,0.61,162,4.254,167,1.906,175,1.857,180,1.79,185,1.365,197,2.715,199,1.555,218,3.572,293,0.987,311,1.475,315,0.964,317,1.62,320,1.332,359,2.788,404,1.072,409,1.348,412,1.437,415,2.955,416,2.108,418,1.643,426,2.583,430,1.4,431,2.647,435,2.071,441,1.884,446,2.271,452,1.74,457,1.348,478,1.876,517,0.987,547,4.254,586,2.889,630,1.332,648,4.569,698,1.765,705,1.714,724,2.4,728,1.792,749,2.788,921,0.847,926,2.467,940,3.156,945,2.036,948,2.316,954,3.276,994,2.186,998,2.467,1069,1.418,1274,1.455,1278,1.555,1279,1.01,1283,0.506,1296,1.477,1319,2.746,1348,2.839,1420,1.792,1430,2.364,1501,1.643,1582,1.937,1594,2.788,1597,4.982,1615,3.889,1655,1.969,1677,2.227,1680,3.23,1764,1.84,1810,5.07,1902,3.276,1969,0.827,2086,2.868,2108,2.316,2292,4.324,2318,1.534,2347,2.715,2353,2.001,2357,3.412,2360,3.889,2435,2.868,2461,3.787,2471,2.647,2479,3.572,2558,1.876,2605,2.227,2655,1.937,2699,2.537,2704,2.955,2712,3.156,2718,4.003,2775,2.036,2796,2.955,2798,4.194,2874,3.05,2881,2.746,2967,3.156,2990,3.156,3236,2.316,3241,2.26,3293,4.003,3319,2.467,3485,2.467,3537,2.788,3830,6.032,4410,3.276,4527,2.169,4575,4.478,4714,2.715,4762,3.156,4909,4.324,5107,3.156,5110,2.414,5131,2.715,5145,3.156,5243,3.276,5278,4.003,5358,3.412,5361,2.647,5381,3.276,5401,2.523,5540,2.715,5623,3.276,5655,2.788,5657,2.647,5750,5.855,5760,3.572,5770,2.647,5777,3.156,5786,3.572,5844,2.467,5866,6.43,5867,4.324,5870,4.982,5878,3.276,5917,2.467,5939,4.324,5977,4.324,5993,4.982,6003,3.156,6042,5.249,6049,2.955,6055,4.003,6076,4.121,6090,5.262,6164,3.763,6301,3.763,6303,6.045,6309,4.324,6316,5.301,6317,3.763,6318,4.324,6323,6.43,6336,4.324,6342,4.324,6357,4.812,6358,4.812,6359,6.712,6360,4.324,6361,4.812,6362,4.324,6363,6.712,6364,4.812,6365,4.812,6366,4.812,6367,4.324,6368,4.324,6369,4.812,6370,6.712,6371,4.812,6372,4.812,6373,4.812,6374,4.812,6375,4.812,6376,3.276,6377,4.812,6378,4.812,6379,6.032,6380,4.812,6381,4.812,6382,4.812,6383,4.812,6384,4.812,6385,4.812,6386,4.812,6387,4.003,6388,4.812,6389,4.812,6390,4.812,6391,4.812,6392,4.324,6393,4.324,6394,4.812,6395,4.812,6396,4.812,6397,3.763,6398,4.812,6399,4.324,6400,4.812,6401,4.812,6402,3.572,6403,4.324,6404,4.324,6405,4.324,6406,4.812,6407,3.763,6408,3.763,6409,4.812,6410,4.812,6411,4.812,6412,4.003,6413,3.572,6414,4.812]],["tags/WinXP Upgrade: Sound Blaster X-Fi",[5941,3.339,6076,2.621]],["title/Programming on the Apple M1 Silicon",[487,1.64,6415,2.822,6416,3.316,6417,3.454]],["content/Programming on the Apple M1 Silicon",[1,1.322,5,1.384,7,1.957,13,2.174,14,0.853,19,0.228,22,0.959,24,1.352,27,0.788,28,0.894,50,0.842,51,3.082,52,0.63,60,1.144,73,0.784,74,0.926,76,1.306,79,0.342,89,1.869,98,1.539,99,1.424,101,0.437,103,1.372,104,0.721,150,1.229,158,0.636,160,3.027,162,4.38,175,1.912,179,0.937,182,1.158,216,1.202,223,1.845,240,1.64,242,1.841,251,1.788,257,3.082,271,1.814,275,0.994,276,1.713,278,1.306,282,2.203,312,1.538,315,1.005,323,5.129,418,1.713,431,2.76,438,2.991,441,1.131,457,1.406,473,2.368,476,2.617,480,3.925,482,2.908,487,1.69,518,2.368,627,1.869,628,2.923,632,2.76,853,1.538,896,2.908,911,2.908,912,1.363,913,2.518,919,1.738,921,1.392,934,2.16,951,1.229,1020,1.814,1026,3.725,1061,3.559,1062,2.02,1267,2.465,1279,1.054,1283,0.528,1289,0.853,1297,2.76,1317,3.078,1331,2.368,1333,3.427,1354,2.518,1369,1.889,1380,4.9,1420,2.573,1425,3.198,1426,1.498,1463,3.181,1488,3.373,1501,1.713,1537,2.053,1594,2.908,1623,1.69,1633,2.238,1648,1.6,1652,3.925,1663,1.579,1678,2.087,1680,3.326,1687,1.029,1721,1.017,1725,1.788,1858,2.923,1889,2.991,1947,2.573,1974,2.76,1983,1.644,2047,3.725,2078,2.831,2125,3.326,2259,3.725,2320,3.082,2326,3.082,2413,2.323,2456,3.082,2490,3.082,2610,4.243,2642,1.957,2648,3.082,2687,3.801,2717,2.238,2818,2.323,2881,2.827,2891,3.292,2928,2.908,2932,3.292,2949,2.694,2952,4.579,2971,3.181,3093,3.725,3094,4.175,3821,3.725,4340,3.725,4353,5.228,4358,4.243,4428,2.991,4455,3.725,4552,2.991,4838,3.925,4967,3.292,5117,4.175,5119,2.123,5318,3.416,5396,3.082,5417,2.323,5732,2.427,6003,3.292,6041,4.175,6070,4.51,6074,2.831,6195,4.51,6415,4.004,6416,6.735,6417,6.038,6418,5.019,6419,5.019,6420,5.019,6421,5.019,6422,4.175,6423,3.925,6424,5.019,6425,6.91,6426,4.175,6427,5.019,6428,5.019,6429,5.019,6430,5.019,6431,5.019,6432,5.019,6433,4.175,6434,5.019,6435,5.019,6436,6.21,6437,5.019,6438,5.019,6439,5.019,6440,3.925,6441,4.51,6442,5.019,6443,4.51,6444,5.019,6445,4.175,6446,8.93,6447,5.019,6448,5.019,6449,4.51,6450,5.019,6451,5.019,6452,4.51,6453,6.91,6454,5.019,6455,4.175,6456,4.51,6457,5.019,6458,5.019,6459,4.175,6460,5.019,6461,5.019,6462,5.019,6463,5.019]],["tags/Programming on the Apple M1 Silicon",[6415,2.473,6464,4.269]],["title/Thoughts on Bullshit Jobs",[3,1.629,2254,2.39,6465,3.714]],["content/Thoughts on Bullshit Jobs",[13,1.627,14,0.879,19,0.321,22,0.989,24,1.571,28,1.257,42,1.606,49,2.997,52,0.472,55,1.897,61,2.489,65,2.366,73,0.808,79,0.353,94,1.222,100,3.539,101,0.451,104,1.238,113,1.024,121,1.524,124,3.98,144,0.869,148,1.627,158,1.017,179,0.966,215,3.668,216,0.9,217,1.237,237,3.392,263,0.848,277,1.396,311,2.162,367,1.955,375,0.828,388,1.671,404,1.152,422,1.843,469,2.918,483,3.668,493,2.997,567,3.082,623,2.844,722,1.985,844,3.668,845,3.521,854,3.646,923,6.339,926,2.652,929,2.079,950,2.489,951,1.728,970,3.176,985,1.431,987,2.712,1017,2.712,1069,2.079,1179,2.048,1212,3.839,1242,4.303,1279,1.086,1283,0.544,1289,0.879,1291,1.346,1348,3.396,1497,3.176,1503,3.521,1541,1.649,1555,3.98,1614,2.116,1631,1.955,1633,2.306,1635,4.045,1659,2.188,1666,2.226,1710,2.394,1721,1.627,1741,2.44,1742,2.394,1794,2.082,1932,4.204,1969,1.213,2016,4.648,2043,2.652,2062,2.151,2230,2.44,2254,4.582,2259,3.839,2281,4.648,2297,2.712,2391,4.648,2396,2.776,2434,2.349,2449,3.839,2460,3.176,2528,2.712,2558,2.016,2576,2.188,2759,2.712,2805,2.477,2814,5.089,2984,4.045,3012,3.392,3014,5.139,3019,4.929,3035,2.349,3050,3.082,3236,2.489,3487,3.668,3488,4.331,3519,2.016,3563,3.278,3841,4.648,4166,4.303,4330,3.521,4372,5.002,4432,4.648,4658,5.517,4694,3.668,4724,4.045,4759,4.303,4787,3.839,4927,4.648,5093,4.045,5243,3.521,5409,4.627,5540,2.918,5657,2.844,6465,7.074,6466,6.339,6467,4.648,6468,4.648,6469,5.172,6470,5.172,6471,3.278,6472,3.668,6473,4.303,6474,5.172,6475,4.303,6476,7.054,6477,5.172,6478,5.172,6479,7.058,6480,6.679,6481,4.045,6482,5.172,6483,7.054,6484,5.172,6485,5.172,6486,4.648,6487,5.172,6488,4.648,6489,5.172,6490,5.172,6491,4.648,6492,4.648,6493,5.172,6494,5.236,6495,5.172,6496,5.172,6497,5.172,6498,4.045,6499,4.648,6500,5.172,6501,4.303,6502,4.648,6503,3.521,6504,5.172,6505,7.054,6506,5.172,6507,5.172,6508,4.303]],["tags/Thoughts on Bullshit Jobs",[2254,1.87,4463,2.544]],["title/Archive by year: 2020",[6,0.736,477,2.269,5417,2.525]],["content/Archive by year: 2020",[19,0.436,477,3.513,5417,3.909]],["tags/Archive by year: 2020",[]],["title/Digitizing journals using DEVONthink",[52,0.444,172,1.761,2353,2.026,6509,3.195]],["content/Digitizing journals using DEVONthink",[6,0.669,10,0.885,14,0.843,17,0.686,19,0.428,25,1.355,28,0.884,41,3.594,47,1.56,48,3.168,52,0.716,60,1.131,62,2.436,73,1.071,77,1.52,79,0.338,83,2.245,87,1.104,88,2.804,95,2.34,98,1.104,104,0.712,116,1.158,126,2.063,131,0.948,132,1.443,144,1.319,153,1.693,157,1.215,158,0.628,159,1.52,160,2.172,162,3.144,165,1.017,172,1.793,182,1.812,185,1.407,203,1.079,211,1.717,216,1.547,219,2.573,240,1.422,241,2.098,252,2.063,276,1.229,288,1.144,291,1.965,294,1.847,315,0.994,317,2.644,366,2.543,368,1.56,378,1.104,395,2.387,404,1.104,412,1.481,422,1.767,426,2.662,446,2.34,478,2.672,481,2.662,517,1.017,630,1.372,667,2.662,715,2.543,725,2.798,754,2.798,912,1.097,951,1.215,971,4.457,986,2.798,1030,2.296,1069,1.462,1146,1.625,1206,3.253,1216,2.543,1276,1.847,1278,1.603,1279,1.041,1283,0.891,1289,1.165,1291,1.783,1296,1.092,1299,2.874,1306,3.144,1307,2.436,1310,3.879,1315,2.029,1321,3.253,1346,2.128,1398,2.253,1457,3.879,1471,3.253,1476,3.045,1501,1.693,1504,2.956,1537,2.029,1565,3.879,1582,1.996,1599,2.543,1609,3.045,1662,3.234,1669,3.879,1677,2.296,1687,1.406,1719,2.296,1721,1.389,1764,1.092,1778,2.029,1811,2.387,1827,2.874,1860,2.956,1876,2.212,1889,2.956,1931,2.029,1946,2.798,1952,2.387,1957,3.682,1962,1.82,1969,0.853,1977,3.045,1983,1.625,1985,2.728,1993,2.601,2015,2.662,2034,2.098,2039,3.682,2071,3.144,2116,2.212,2144,2.798,2289,1.82,2346,2.543,2353,2.063,2387,2.798,2462,5.088,2471,2.728,2480,2.662,2528,2.601,2538,3.517,2576,2.098,2698,3.376,2699,1.875,2704,3.045,2714,2.488,2756,2.95,2775,2.098,2881,2.029,3013,2.728,3014,2.956,3088,3.045,3125,4.085,3236,2.387,3245,3.144,4098,2.387,4338,2.874,4340,3.682,4353,3.045,4358,3.045,4398,2.956,4428,2.956,4549,2.601,4629,3.376,4745,3.253,4936,5.361,4964,3.972,5054,4.457,5144,3.376,5189,3.144,5281,3.517,5282,2.728,5288,3.879,5471,2.488,5473,2.662,5591,3.682,5732,2.758,5833,2.956,5848,3.253,5917,2.543,6074,2.798,6213,3.517,6320,2.728,6415,2.874,6416,4.666,6417,3.517,6479,5.361,6509,5.152,6510,4.457,6511,8.633,6512,4.457,6513,7.049,6514,4.96,6515,4.96,6516,4.96,6517,4.457,6518,4.96,6519,4.126,6520,4.96,6521,4.96,6522,4.457,6523,4.457,6524,4.96,6525,4.96,6526,3.144,6527,4.457,6528,4.457,6529,4.96,6530,4.96,6531,4.96,6532,4.96,6533,4.96,6534,4.126,6535,4.96,6536,4.96,6537,4.96,6538,4.96,6539,4.96,6540,4.96,6541,4.457,6542,3.517,6543,4.96,6544,4.126,6545,3.253,6546,4.96]],["tags/Digitizing journals using DEVONthink",[172,1.543,5471,2.141]],["title/RSS Feeds, Hugo, and Lazy Image Loading",[405,2.462,1234,2.056,2123,1.93,2409,1.788,5979,2.977,6547,2.542]],["content/RSS Feeds, Hugo, and Lazy Image Loading",[0,1.884,4,2.268,5,1.019,19,0.487,29,1.443,41,2.667,50,0.62,51,2.268,52,0.818,60,1.16,73,1.09,74,0.939,79,0.476,84,2.552,85,1.622,87,1.133,96,1.839,113,1.007,132,1.48,156,1.997,163,3.336,168,1.174,175,1.407,179,0.95,184,1.712,188,1.983,199,1.644,217,1.216,219,1.666,233,2.228,240,1.056,242,1.866,258,2.268,275,1.381,278,1.323,312,1.559,375,1.274,378,1.133,384,1.146,388,1.644,392,3.357,405,4.887,428,2.87,465,1.923,471,4.705,481,4.272,491,2.268,569,5.258,631,2.797,649,2.608,700,3.576,728,1.894,797,2.189,919,2.415,939,3.607,951,1.246,985,1.407,1234,4.39,1237,2.719,1274,1.538,1296,1.119,1300,2.31,1315,2.081,1333,2.047,1345,3.776,1346,1.579,1354,2.552,1409,3.224,1422,2.015,1451,2.667,1473,5.908,1481,3.031,1488,2.015,1490,5.908,1502,2.947,1533,2.354,1534,2.448,1547,5.802,1577,2.31,1615,2.947,1631,1.923,1662,2.4,1671,3.562,1680,2.448,1721,1.031,1742,2.354,1763,2.116,1791,3.836,1792,4.232,1872,3.89,1876,2.268,1878,4.156,1907,3.224,1950,1.923,1953,3.336,1962,2.559,1972,2.608,1983,1.666,2051,4.575,2078,2.87,2107,3.336,2108,2.448,2118,2.947,2123,2.448,2149,3.425,2193,2.797,2387,2.87,2409,2.268,2494,3.336,2528,2.667,2665,2.667,2769,4.571,2844,3.463,2881,2.081,3257,4.156,4153,7.124,4193,2.947,4358,3.123,4461,2.015,5108,4.232,5189,3.224,5212,4.232,5396,3.123,5486,4.575,5511,5.455,5589,5.177,5801,3.463,5844,2.608,5979,5.177,6074,2.87,6415,2.947,6416,3.463,6503,5.418,6526,3.224,6547,6.016,6548,5.087,6549,5.087,6550,5.087,6551,5.087,6552,3.463,6553,5.087,6554,3.776,6555,5.087,6556,5.087,6557,5.087,6558,5.087,6559,5.087,6560,5.087,6561,5.087,6562,5.087,6563,3.978,6564,5.087,6565,5.087,6566,5.087,6567,7.959,6568,4.571,6569,7.959,6570,5.087,6571,6.974,6572,5.087,6573,5.087,6574,5.087,6575,5.087,6576,5.087,6577,5.087]],["tags/RSS Feeds, Hugo, and Lazy Image Loading",[2409,1.904,6547,2.706]],["title/The Productive Programmer on Mac",[1501,1.863,3518,3.35,4358,3.35]],["content/The Productive Programmer on Mac",[1,2.241,5,1.004,6,0.932,10,0.958,11,1.477,14,0.852,17,0.693,19,0.406,21,1.516,24,1.351,26,0.862,29,2.414,30,1.496,46,2.05,49,2.904,50,0.611,52,0.776,65,2.035,67,1.76,73,0.783,96,1.812,101,0.437,103,1.37,104,0.719,109,1.711,121,1.477,132,1.458,136,3.72,144,0.842,145,2.12,150,1.227,158,0.635,163,3.287,165,1.028,172,2.496,179,1.289,182,1.156,184,1.687,200,2.017,203,1.09,207,3.919,216,0.872,217,1.198,232,3.72,242,1.838,275,0.992,276,1.957,277,1.863,288,1.156,297,1.536,311,1.536,318,2.195,320,1.387,330,2.195,367,1.894,418,2.357,437,2.691,443,1.477,517,1.028,564,2.235,622,2.514,728,1.866,782,0.914,806,3.391,853,1.536,897,1.536,912,0.802,921,0.882,929,2.328,934,2.157,938,3.077,953,4.169,1011,1.785,1062,2.017,1069,2.035,1159,2.017,1172,2.904,1274,1.516,1286,2.628,1289,1.173,1291,1.796,1301,2.756,1319,2.05,1333,2.017,1366,4.239,1368,4.169,1382,2.12,1403,2.157,1437,4.503,1476,3.077,1487,2.157,1497,3.077,1501,3.227,1514,3.411,1583,1.577,1600,3.195,1603,6.204,1659,2.92,1710,2.319,1711,2.05,1744,2.412,1754,3.287,1790,2.904,1794,2.017,1795,1.76,1799,2.827,1950,1.894,1969,0.862,1983,1.641,2149,2.157,2165,2.157,2193,2.756,2298,2.628,2299,2.827,2315,3.287,2353,2.084,2360,2.904,2375,2.69,2385,3.287,2396,2.69,2412,4.239,2426,2.904,2441,3.176,2462,5.124,2475,1.866,2476,2.827,2669,2.987,2681,4.114,2693,3.919,2696,2.756,2796,3.077,2818,3.195,2932,3.287,2949,2.69,2969,2.319,2981,2.756,2996,2.514,3004,2.05,3013,2.756,3096,4.503,3194,2.904,3227,4.169,3245,3.176,3264,2.628,3307,3.287,3483,2.365,3492,3.72,3518,4.239,3519,1.954,3852,3.72,3862,4.503,4298,3.176,4333,7.648,4334,4.503,4353,3.077,4358,4.239,4396,3.522,4931,3.411,4945,2.987,5109,2.514,5282,2.756,5328,3.077,5376,2.628,5552,3.287,5553,3.919,5651,3.72,5716,4.169,5744,3.554,5858,4.503,6072,3.919,6189,3.411,6415,2.904,6416,4.699,6417,3.554,6443,4.503,6475,4.169,6509,3.287,6534,4.169,6578,5.011,6579,5.011,6580,5.011,6581,5.011,6582,5.011,6583,5.011,6584,5.011,6585,5.011,6586,5.011,6587,3.554,6588,2.987,6589,5.011,6590,3.72,6591,5.011,6592,3.176,6593,5.011,6594,4.503,6595,2.904,6596,4.503,6597,4.503,6598,5.011,6599,5.011,6600,5.011,6601,4.503,6602,3.72,6603,4.169,6604,5.011,6605,5.011,6606,5.011,6607,5.011,6608,4.503,6609,5.011,6610,4.503,6611,5.011,6612,5.011,6613,4.503,6614,4.503,6615,5.011,6616,5.011,6617,5.011,6618,3.176,6619,5.011,6620,5.011,6621,3.919,6622,4.169]],["tags/The Productive Programmer on Mac",[1501,1.943]],["title/What is Creativity in Software Engineering?",[1369,1.491,2318,1.739,3241,1.837]],["content/What is Creativity in Software Engineering?",[0,1.06,3,1.507,6,0.681,13,1.588,17,0.698,18,1.654,19,0.407,20,1.397,23,2.1,24,1.358,27,0.79,39,2.211,50,0.615,62,2.48,67,2.437,76,1.313,79,0.344,88,2.065,96,1.825,97,2.382,98,1.124,101,0.691,103,1.38,104,0.996,109,1.251,126,2.1,131,0.965,144,0.848,145,2.136,150,1.236,152,2.533,153,1.724,156,1.267,159,1.547,168,1.165,180,1.346,196,1.488,199,1.631,223,1.62,240,1.048,244,3.747,246,3.009,263,0.828,277,1.363,293,1.423,304,2.211,307,2.925,365,1.909,368,1.588,369,3.1,375,1.48,384,1.138,395,3.34,407,2.136,422,2.472,430,1.469,437,2.705,441,1.138,442,2.337,452,1.825,455,1.724,469,2.848,476,2.362,487,2.336,517,1.035,561,3.009,567,3.009,580,2.293,623,3.816,630,1.92,698,1.852,705,1.799,715,2.588,724,1.567,782,0.921,786,3.009,806,2.48,877,1.469,905,4.2,919,1.748,921,0.889,929,1.488,1008,1.938,1020,1.825,1045,2.647,1096,3.816,1191,3.1,1236,3.34,1256,3.914,1279,1.06,1290,2.647,1327,1.588,1335,1.88,1348,2.136,1369,2.675,1501,1.724,1541,1.61,1592,2.777,1663,1.588,1716,3.747,1721,1.607,1763,2.1,1764,1.111,1854,3.311,1879,2.588,1881,2.1,1902,3.437,1952,2.43,1962,1.852,1969,0.868,1986,2.337,2012,2.533,2064,3.1,2108,2.43,2116,2.251,2230,2.382,2300,4.537,2303,2.533,2318,3.02,2326,3.1,2328,4.803,2339,3.34,2374,2.136,2431,2.925,2434,3.601,2444,3.747,2449,3.747,2558,2.705,2563,4.2,2564,2.848,2699,2.623,2775,2.136,2785,2.032,2805,2.998,3036,2.293,3077,2.293,3140,3.009,3178,2.925,3241,3.013,3253,3.58,3254,2.293,3295,3.009,3546,2.588,3559,2.647,3710,3.58,4411,3.948,4426,3.1,4457,3.311,4461,2,4683,5.15,4692,3.437,4753,3.1,4923,3.747,4935,4.537,4944,3.311,4945,3.009,4961,4.537,4962,4.537,5184,3.948,5229,3.747,5485,3.311,5540,3.914,5985,3.58,6340,4.537,6623,4.2,6624,5.049,6625,5.049,6626,4.537,6627,5.049,6628,5.049,6629,5.049,6630,6.939,6631,6.939,6632,5.049,6633,3.948,6634,4.537,6635,4.537,6636,5.049,6637,5.049,6638,3.948,6639,5.049,6640,5.049,6641,5.049,6642,5.049,6643,5.049,6644,5.049,6645,5.049,6646,5.049,6647,3.2,6648,5.049,6649,4.537,6650,5.049,6651,4.537,6652,5.049,6653,4.537,6654,5.049,6655,5.049,6656,4.537,6657,3.437,6658,3.747,6659,5.049,6660,5.049,6661,5.049,6662,3.747,6663,5.049,6664,5.049,6665,5.049]],["tags/What is Creativity in Software Engineering?",[2318,1.361,3559,2.238]],["title/Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2",[630,0.943,720,2.32,1680,1.64,6058,2.093,6080,2.417,6666,3.063,6667,3.063,6668,3.063]],["content/Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2",[0,1.438,5,1.372,6,0.668,10,0.558,13,2.154,14,0.842,17,0.685,19,0.225,22,0.947,25,1.354,26,0.852,27,0.458,50,0.835,52,0.452,55,1.817,60,1.561,67,1.739,79,0.535,85,1.579,91,1.765,94,1.17,101,0.432,104,0.983,123,2.384,131,1.309,138,2.485,144,0.832,158,0.867,175,1.37,185,1.405,203,1.489,220,2.539,233,2.169,240,1.028,263,0.812,277,1.337,288,1.143,293,1.016,317,1.667,367,1.872,394,3.676,404,1.103,409,1.388,412,1.479,416,3.438,441,1.116,452,1.79,455,1.691,473,2.337,478,1.931,549,2.658,627,1.844,630,2.607,698,1.817,768,3.139,782,0.903,797,2.131,913,2.485,920,2.131,932,2.026,946,2.952,993,3.364,998,2.539,1008,1.901,1011,1.765,1020,1.79,1062,1.993,1146,1.622,1192,2.337,1276,1.844,1279,1.04,1291,1.289,1312,2.292,1319,3.211,1331,2.337,1332,2.25,1420,2.55,1487,3.644,1508,3.041,1537,2.026,1582,1.993,1623,1.667,1655,2.026,1680,3.777,1720,2.794,1784,2.658,1912,3.372,1930,2.724,1969,0.852,2017,4.491,2025,2.169,2043,3.511,2078,2.794,2104,2.724,2149,2.131,2378,1.544,2431,2.87,2461,2.794,2464,3.249,2531,3.139,2533,2.87,2596,3.512,2605,2.292,2727,4.081,2756,2.131,2798,4.252,2800,3.873,2804,2.87,2854,2.724,2949,3.675,2969,2.292,3006,3.873,3026,3.041,3077,2.25,3125,2.952,3160,3.041,3435,3.512,4338,2.87,4527,2.736,4575,3.968,4644,2.952,4714,2.794,4742,3.873,4802,4.975,4838,3.873,4861,4.12,4904,4.819,4945,2.952,5131,2.794,5147,3.766,5174,2.897,5282,2.724,5358,3.512,5359,2.658,5363,5.355,5417,2.292,5571,4.451,5654,3.676,5657,2.724,5751,3.249,5777,3.249,5789,2.87,5825,4.34,5881,4.12,5983,4.204,6035,3.873,6049,3.041,6056,4.451,6057,3.676,6058,3.041,6059,4.451,6061,3.372,6080,6.682,6082,4.12,6090,4.661,6091,4.451,6111,4.451,6144,4.12,6147,4.451,6175,4.12,6200,3.512,6304,4.451,6334,4.451,6441,4.451,6526,3.139,6563,3.873,6666,4.451,6667,6.154,6668,7.609,6669,4.953,6670,4.953,6671,4.953,6672,4.953,6673,4.953,6674,4.451,6675,8.468,6676,3.372,6677,4.953,6678,3.676,6679,4.451,6680,6.154,6681,4.953,6682,4.953,6683,6.848,6684,3.512,6685,4.451,6686,4.12,6687,4.953,6688,4.953,6689,4.451,6690,4.12,6691,7.053,6692,4.953,6693,4.953,6694,3.873,6695,4.953,6696,4.451,6697,3.676,6698,4.953,6699,4.953,6700,4.12,6701,4.953,6702,3.676,6703,3.512,6704,4.451,6705,4.953,6706,4.953]],["tags/Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2",[6058,2.621,6080,3.027]],["title/My Retro Desk/Gaming Setup in 2021",[1337,2.497,4461,1.929,4527,1.574,6707,4.377]],["content/My Retro Desk/Gaming Setup in 2021",[0,1.044,10,0.56,13,1.565,14,0.845,19,0.357,20,1.376,22,0.951,25,2.15,29,1.411,42,1.544,47,2.161,49,2.882,50,0.837,51,2.218,73,1.074,79,0.628,81,1.652,87,1.529,99,1.411,101,0.434,109,1.233,113,1.36,144,0.835,148,2.161,150,1.218,156,1.248,157,1.218,159,1.524,168,1.585,180,1.326,182,1.148,185,1.411,203,1.082,209,2.806,216,0.866,217,1.189,219,1.629,235,4.217,240,1.032,253,2.104,263,1.126,264,2.218,266,3.063,269,3.692,271,1.798,276,1.233,287,3.875,289,3.98,293,1.02,311,1.524,315,0.997,361,1.722,378,1.108,395,2.394,405,3.054,407,2.104,409,1.394,412,1.485,415,3.054,418,1.698,428,2.806,435,2.141,441,1.121,446,2.347,455,2.345,465,1.881,492,2.55,517,1.02,728,1.852,853,2.105,881,2.141,912,1.1,929,2.024,948,2.394,951,1.218,964,3.063,976,2.965,983,3.179,1062,3.705,1065,3.89,1078,3.054,1200,3.054,1229,1.852,1237,1.939,1272,2.736,1279,1.044,1283,0.523,1317,2.844,1327,1.565,1334,2.179,1335,1.852,1337,4.564,1399,2.72,1401,2.218,1470,2.67,1557,2.412,1578,4.327,1600,3.641,1614,2.035,1631,1.881,1655,2.035,1660,2.882,1676,3.054,1683,3.692,1687,1.02,1711,2.035,1725,1.772,1741,2.347,1764,1.095,1777,2.104,1852,2.736,1858,2.104,1939,2.806,1946,2.806,1983,1.629,2004,2.806,2011,2.965,2055,5.098,2077,2.302,2108,2.394,2115,2.302,2254,2.179,2365,3.386,2378,1.253,2623,3.386,2642,1.939,2694,2.608,2741,4.138,2805,1.747,2818,3.641,2968,3.386,2986,2.55,2998,2.495,3014,2.965,3028,4.138,3031,4.217,3081,4.138,3227,7.406,3265,3.054,3505,5.714,3537,2.882,3547,3.153,3857,3.528,3927,3.386,4007,4.138,4098,2.394,4444,3.263,4461,1.97,4502,2.965,4527,1.607,4605,5.372,4691,2.608,4800,3.528,4945,2.965,4960,4.871,5408,5.579,5414,3.386,5531,3.054,5673,4.138,5755,4.505,5770,3.777,5814,4.47,5833,2.965,5901,2.495,5942,3.054,6076,3.054,6099,3.692,6352,3.692,6542,3.528,6587,3.528,6592,3.153,6708,4.138,6709,4.975,6710,4.975,6711,4.138,6712,4.975,6713,4.975,6714,4.975,6715,3.89,6716,4.47,6717,7.867,6718,4.975,6719,4.975,6720,7.867,6721,4.975,6722,3.89,6723,4.47,6724,4.975,6725,4.975,6726,4.47,6727,4.975,6728,6.545,6729,4.47,6730,3.89,6731,7.406,6732,4.47,6733,4.975,6734,4.975,6735,4.47,6736,4.975,6737,4.975,6738,4.138,6739,4.975,6740,4.975,6741,4.975,6742,4.138,6743,4.975,6744,4.47,6745,4.975,6746,3.692,6747,4.47,6748,4.975,6749,4.975,6750,4.975]],["tags/My Retro Desk/Gaming Setup in 2021",[]],["title/The insanity of collecting retro games",[851,1.595,2378,0.888,4527,1.574,6751,3.316]],["content/The insanity of collecting retro games",[4,2.272,5,1.399,6,0.687,10,0.897,14,0.866,17,0.966,19,0.231,27,0.737,28,1.244,50,0.621,52,0.781,73,1.091,74,0.94,76,1.816,79,0.476,81,1.692,91,1.815,101,0.694,109,1.263,113,1.009,116,1.63,121,1.502,128,3.229,153,1.739,158,0.645,167,3.155,168,1.175,175,1.932,184,2.35,191,3.128,196,1.502,216,1.215,217,1.669,233,2.231,240,1.057,241,2.155,263,1.145,288,1.175,293,1.045,311,1.561,315,1.021,366,2.612,398,4.287,430,1.482,441,1.148,478,1.986,739,2.874,757,2.404,851,2.807,854,2.314,877,1.482,903,3.259,919,2.417,948,2.452,964,2.272,982,2.555,993,2.502,1179,2.765,1229,1.897,1289,1.186,1312,2.358,1315,2.084,1317,1.842,1337,3.579,1352,2.452,1426,1.521,1430,2.502,1503,3.468,1589,2.358,1710,3.231,1721,1.033,1796,2.192,1885,4.045,1976,2.452,2003,3.984,2028,1.897,2034,2.155,2177,2.802,2289,1.869,2315,3.341,2333,2.874,2346,3.579,2374,2.155,2378,1.855,2454,2.314,2512,2.404,2684,4.599,2714,3.502,2717,2.272,2756,4.161,2966,5.808,2987,3.984,3014,3.036,3021,3.468,3149,2.671,3159,3.984,3163,2.612,3215,4.238,3225,2.612,3236,2.452,3267,3.612,3524,2.802,3537,2.952,3853,3.781,3908,2.802,4098,2.452,4347,3.341,4396,2.272,4417,2.612,4428,3.036,4461,2.018,4502,3.036,4527,3.124,4588,4.578,4644,3.036,4681,3.612,4692,3.468,4794,2.952,5085,1.669,5145,3.341,5174,2.155,5250,2.874,5396,3.128,5401,2.671,5512,5.808,5531,3.128,5636,3.612,5700,4.287,5789,2.952,5901,3.502,5905,3.128,6003,3.341,6042,3.984,6286,3.612,6397,3.984,6402,5.912,6594,4.578,6647,3.229,6752,5.094,6753,4.578,6754,5.094,6755,5.094,6756,4.238,6757,5.094,6758,3.984,6759,3.984,6760,5.094,6761,5.094,6762,4.238,6763,3.781,6764,5.094,6765,4.578,6766,4.578,6767,4.951,6768,5.094,6769,7.965,6770,5.094,6771,5.094,6772,3.984,6773,3.612,6774,4.425,6775,5.094,6776,4.238,6777,5.094,6778,5.094,6779,5.094,6780,5.094,6781,5.094,6782,5.094,6783,5.094,6784,5.46,6785,5.094,6786,5.808,6787,6.982,6788,6.982,6789,5.094,6790,3.984,6791,4.578,6792,5.094,6793,3.781,6794,5.094,6795,6.982,6796,5.094,6797,5.094,6798,5.094,6799,5.094,6800,5.094]],["tags/The insanity of collecting retro games",[851,1.398,2378,0.779]],["title/How to write academic papers in Markdown",[75,0.953,2387,2.748,2805,1.711,3254,2.212]],["content/How to write academic papers in Markdown",[3,1.519,10,0.896,13,1.6,19,0.362,21,1.538,26,1.199,28,0.906,30,1.519,47,1.6,52,0.781,59,1.6,65,1.499,73,1.09,75,1.941,79,0.347,82,2.4,87,1.133,98,1.133,99,1.979,104,1.143,132,2.316,133,1.953,144,1.171,149,1.736,158,0.644,160,3.055,165,1.632,172,1.839,179,1.302,180,1.356,199,1.644,210,2.354,216,0.885,217,1.216,235,3.123,252,2.901,263,1.144,282,2.224,291,2.015,320,1.93,324,3.031,359,2.947,367,1.923,375,0.814,378,1.553,388,1.644,389,3.031,404,1.553,412,1.519,450,3.168,452,1.839,457,1.425,475,3.11,476,1.407,479,3.224,481,2.73,518,2.4,579,2.081,596,2.795,621,1.443,622,2.552,631,2.797,784,3.336,881,2.189,885,2.667,896,4.612,912,1.274,951,1.708,964,2.268,978,1.812,1008,1.953,1130,4.946,1201,3.776,1272,2.797,1283,0.837,1307,2.499,1334,2.228,1337,2.608,1366,2.73,1392,3.463,1393,2.797,1403,2.189,1487,2.189,1488,2.015,1542,3.463,1590,2.87,1623,2.348,1648,1.622,1657,1.559,1675,2.354,1681,3.123,1687,1.043,1721,1.414,1765,3.463,1793,3.978,1878,3.031,1879,3.576,1938,3.499,1939,3.935,1950,1.923,1969,1.199,1976,2.448,1999,2.499,2123,3.357,2134,3.978,2200,5.177,2230,2.4,2314,2.608,2375,2.73,2387,4.831,2397,3.031,2512,2.4,2700,2.448,2805,3.007,2995,2.797,3203,4.041,3225,2.608,3254,2.31,3307,3.336,3319,2.608,3519,1.983,3984,3.336,4323,3.776,4348,3.978,4372,3.607,4428,3.031,4452,3.978,4463,3.031,4478,3.463,4741,3.031,4801,2.552,4923,3.776,5189,3.224,5192,3.336,5264,4.571,5274,6.73,5282,2.797,5283,2.31,5293,5.455,5297,4.748,5298,5.908,5301,4.571,5333,3.607,5417,2.354,5565,3.607,5732,1.786,5787,3.463,6119,3.978,6213,3.607,6426,4.232,6801,5.087,6802,3.607,6803,4.571,6804,5.087,6805,5.087,6806,4.571,6807,5.087,6808,5.087,6809,5.087,6810,5.087,6811,5.802,6812,5.087,6813,7.959,6814,5.087,6815,5.087,6816,5.087,6817,5.087,6818,5.087,6819,5.087,6820,5.087,6821,4.156,6822,3.336,6823,5.087,6824,5.087,6825,4.232,6826,6.974,6827,5.087,6828,5.087,6829,4.571,6830,5.087,6831,5.087,6832,5.087,6833,5.087,6834,5.087,6835,5.087,6836,5.087,6837,5.087,6838,5.087,6839,5.087,6840,5.087,6841,5.087,6842,5.087,6843,5.087]],["tags/How to write academic papers in Markdown",[75,0.557,2387,1.606,5274,2.019,5298,2.113]],["title/You Shouldn't Use Spotify",[52,0.498,2177,3.001,4347,3.579]],["content/You Shouldn't Use Spotify",[1,1.36,5,1.035,6,0.697,10,0.582,17,0.714,19,0.235,26,0.888,29,1.465,42,1.603,52,0.471,74,0.953,76,1.833,80,2.84,88,2.113,94,1.22,98,1.15,99,1.465,101,0.614,113,1.023,132,1.503,144,1.183,150,1.726,156,1.295,158,0.893,162,3.273,168,1.191,174,3.515,180,1.879,182,1.626,184,1.739,185,2.445,196,1.522,216,0.899,223,1.645,230,2.437,263,1.156,275,1.023,278,1.344,288,1.191,311,1.582,375,0.827,404,1.15,457,1.974,465,1.952,517,1.059,723,2.222,757,2.437,797,2.222,903,2.113,910,2.84,912,0.827,934,2.222,939,3.662,945,2.184,951,1.265,982,2.591,1044,2.437,1232,3.171,1276,1.923,1279,1.48,1292,2.045,1297,2.84,1310,4.039,1403,3.033,1425,2.39,1508,3.171,1582,2.836,1583,1.625,1606,2.647,1614,2.883,1633,2.303,1663,1.625,1666,2.222,1710,2.39,1721,1.047,1725,1.84,1791,2.84,1947,4.113,1969,0.888,1974,2.84,1999,2.537,2052,2.708,2103,3.515,2108,3.861,2162,3.171,2177,2.84,2183,2.345,2298,2.708,2314,2.647,2315,3.387,2318,1.646,2333,2.913,2345,4.039,2346,2.647,2378,1.285,2392,2.772,2396,2.772,2407,2.772,2433,1.739,2454,2.345,2470,4.641,2512,2.437,2558,2.013,2564,2.913,2576,2.184,2634,3.662,2642,2.013,2645,2.188,2649,4.039,2655,3.63,2668,2.39,2700,2.485,2727,3.078,2779,3.515,2785,2.078,2805,1.814,2825,2.84,2854,2.84,2881,2.113,2994,3.171,3014,3.078,3019,3.171,3036,3.644,3071,3.171,3149,2.708,3186,3.171,3190,3.782,3225,2.647,3319,2.647,3507,3.833,3853,3.833,3937,4.327,4098,3.861,4347,5.917,4459,3.515,4801,4.323,5119,2.184,5132,4.296,5195,2.708,5243,3.515,5250,3.976,5316,3.515,5359,2.772,5396,3.171,5473,2.772,5475,4.296,5545,4.039,5657,2.84,5694,3.515,5704,3.273,5747,3.662,5848,3.387,5883,5.085,5905,3.171,6271,3.078,6399,4.641,6413,3.833,6415,2.992,6763,5.231,6821,3.078,6844,3.387,6845,4.641,6846,4.641,6847,5.164,6848,5.164,6849,4.641,6850,5.164,6851,3.833,6852,5.164,6853,3.171,6854,3.833,6855,3.833,6856,5.164,6857,3.515,6858,4.039,6859,3.833,6860,5.164,6861,5.164,6862,4.296,6863,4.039,6864,7.047,6865,7.745,6866,7.047,6867,5.164,6868,5.164,6869,5.164,6870,5.164,6871,5.164,6872,5.164,6873,5.164,6874,4.296,6875,5.164,6876,5.164,6877,5.164,6878,5.164,6879,5.164,6880,5.164,6881,5.164,6882,5.164,6883,5.164,6884,3.515,6885,5.164,6886,5.164,6887,5.164,6888,5.164,6889,5.164,6890,5.164,6891,5.164,6892,5.164,6893,4.296]],["tags/You Shouldn't Use Spotify",[2655,2.29]],["title/Always have a Diaster Recovery Plan",[418,1.663,2806,2.392,6894,4.871,6895,4.052]],["content/Always have a Diaster Recovery Plan",[10,0.696,17,1.213,22,1.182,27,0.572,50,0.753,59,1.945,79,0.422,98,1.376,101,0.764,160,2.707,168,1.426,191,3.795,203,1.344,231,3.684,235,4.874,251,2.828,263,1.014,282,1.971,288,1.426,311,1.894,315,1.238,327,5.142,375,0.99,384,1.393,426,3.318,430,2.31,441,1.393,539,6.208,596,2.171,627,2.302,628,2.615,700,3.169,757,3.746,881,2.66,908,2.302,921,1.088,998,3.169,1232,3.795,1286,3.241,1289,1.349,1346,1.919,1393,3.4,1398,2.808,1405,4.383,1426,1.846,1429,6.604,1448,4.834,1584,3.582,1609,3.795,1612,3.101,1663,1.945,1742,2.861,1764,1.36,2007,2.081,2012,3.101,2025,2.707,2048,4.208,2087,3.241,2159,3.795,2231,3.4,2256,4.834,2299,3.487,2404,4.055,2511,3.4,2600,3.684,2715,3.795,2775,3.358,2806,3.899,2998,3.101,3238,5.142,3501,5.555,4398,3.684,4417,3.169,5112,6.219,5122,3.795,5139,5.555,5243,4.208,5281,6.219,5538,5.142,5943,4.383,6445,5.142,6471,3.918,6686,5.142,6735,5.555,6821,3.684,6822,4.055,6849,5.555,6895,5.142,6896,7.938,6897,5.555,6898,3.684,6899,6.181,6900,3.241,6901,8.769,6902,6.181,6903,6.181,6904,6.181,6905,6.181,6906,6.181,6907,6.181,6908,6.181,6909,5.97,6910,6.181,6911,6.181,6912,6.181,6913,6.181,6914,6.181,6915,6.181,6916,6.181,6917,6.181,6918,6.181,6919,6.181,6920,6.181,6921,5.142,6922,6.181,6923,5.142,6924,5.555,6925,6.181,6926,6.181,6927,6.181,6928,4.834,6929,6.181,6930,6.181,6931,6.208,6932,6.181,6933,3.918,6934,6.181,6935,6.181]],["tags/Always have a Diaster Recovery Plan",[5112,4.035]],["title/Exploring the AlterNet",[234,2.984,6936,5.573]],["content/Exploring the AlterNet",[5,1.389,10,0.892,14,0.857,20,1.395,23,3.295,24,0.987,26,0.867,27,0.642,29,1.43,47,2.492,50,0.614,52,0.778,74,0.93,79,0.344,99,1.43,101,0.744,104,0.995,107,3.004,113,0.998,131,0.964,132,1.467,133,1.935,156,1.265,165,1.422,167,1.997,168,1.599,180,1.344,182,1.163,185,1.43,187,3.307,210,2.333,217,1.657,223,1.177,230,2.379,275,0.998,276,1.964,277,1.871,282,1.607,288,1.163,293,1.422,315,1.389,317,1.697,357,3.575,375,1.11,378,1.544,384,1.562,403,2.248,404,1.123,438,4.131,441,1.136,459,3.336,476,1.395,477,2.097,487,1.697,490,2.643,517,1.034,565,3.095,579,2.062,591,2.706,628,2.132,649,2.584,677,3.307,688,2.844,700,2.584,724,2.152,801,3.195,853,2.124,921,0.888,948,2.426,998,2.584,1146,1.651,1188,3.432,1201,3.742,1256,2.844,1274,2.097,1276,1.877,1279,1.455,1283,0.729,1296,1.109,1300,3.598,1382,2.132,1420,1.877,1421,3.307,1426,1.505,1470,2.706,1508,3.095,1517,3.477,1542,3.432,1557,1.77,1577,3.148,1583,1.586,1586,1.565,1597,3.742,1631,1.906,1678,2.883,1687,1.034,1790,2.921,1794,2.029,1866,3.432,1879,2.584,1881,2.097,1946,2.844,1953,3.307,1958,3.432,1969,0.867,2010,3.004,2042,4.194,2052,2.643,2062,2.883,2063,1.997,2105,2.772,2139,2.584,2186,3.004,2282,2.529,2333,3.91,2400,3.095,2427,3.307,2541,3.432,2558,1.965,2600,3.004,2605,2.333,2617,4.59,2668,2.333,2699,1.906,2729,4.194,2733,3.307,2779,3.432,2825,3.812,2893,3.432,2967,3.307,3036,2.29,3129,3.432,3220,4.131,3224,2.643,3226,3.432,3243,3.432,3257,4.131,3289,4.53,3367,4.016,3497,3.307,3547,3.195,4299,3.943,4352,5.88,4389,3.742,4398,3.004,4417,2.584,4724,3.943,4786,4.194,5119,2.932,5163,3.432,5186,4.194,5189,3.195,5369,3.195,5376,2.643,5471,3.477,5523,3.943,5587,3.742,5623,3.432,5732,1.77,5763,3.943,5998,3.943,6030,3.195,6074,2.844,6335,3.943,6465,3.432,6751,3.432,6898,3.004,6900,3.635,6937,5.021,6938,4.53,6939,4.194,6940,4.194,6941,5.041,6942,5.041,6943,5.041,6944,6.229,6945,5.041,6946,5.041,6947,4.53,6948,5.041,6949,5.041,6950,5.145,6951,4.194,6952,5.041,6953,5.041,6954,5.041,6955,5.041,6956,5.041,6957,3.943,6958,3.943,6959,5.041,6960,4.53,6961,5.041,6962,5.041,6963,5.041,6964,5.041,6965,4.53,6966,5.041,6967,5.041,6968,4.53,6969,5.041,6970,5.041,6971,3.943,6972,4.53,6973,5.041,6974,5.041,6975,5.041,6976,5.041,6977,5.041,6978,3.943,6979,5.041,6980,5.041,6981,5.041,6982,5.041,6983,4.53,6984,4.53,6985,5.041,6986,5.041,6987,3.742,6988,4.53]],["tags/Exploring the AlterNet",[6989,3.874]],["title/Getting rid of trackers using LineageOS",[52,0.401,122,2.076,282,1.402,5602,3.953,6990,3.265]],["content/Getting rid of trackers using LineageOS",[1,1.334,5,1.393,6,0.683,13,1.593,14,0.86,16,2.718,17,1.183,19,0.316,27,0.469,28,0.902,36,2.258,50,0.617,51,2.258,52,0.779,59,1.593,65,1.493,74,0.935,79,0.542,81,1.681,87,1.128,95,2.389,101,0.745,102,3.565,109,1.255,113,1.003,121,1.493,122,2.389,131,0.968,144,0.85,157,1.24,172,1.831,180,1.35,182,1.168,199,1.636,203,1.101,210,2.344,216,1.21,223,1.854,234,2.437,276,1.255,288,1.168,297,1.552,312,1.552,315,1.014,317,1.705,330,2.218,378,1.128,407,2.142,441,1.141,444,1.804,457,1.419,517,1.426,565,4.269,586,2.179,621,1.437,627,1.886,630,1.401,667,2.718,705,1.804,713,2.934,745,3.321,908,1.886,912,1.113,921,1.224,924,2.596,929,2.049,945,2.142,948,2.437,1090,3.759,1215,3.321,1260,2.049,1274,2.402,1289,0.86,1296,1.114,1317,3.09,1333,2.038,1346,2.465,1439,4.144,1465,2.785,1470,2.718,1488,2.006,1541,1.614,1557,1.778,1584,2.934,1592,2.785,1599,2.596,1606,2.596,1611,2.3,1623,1.705,1633,2.258,1663,1.593,1675,2.344,1687,1.039,1746,2.718,1754,3.321,1764,1.114,1789,4.407,1811,4.454,1879,2.596,1947,3.565,1993,3.646,2034,2.142,2062,2.106,2123,3.822,2173,3.447,2413,2.344,2441,3.21,2534,3.447,2558,1.974,2596,3.591,2617,2.934,2668,2.344,2683,4.551,2691,2.941,2794,3.447,2825,3.824,2957,3.321,3036,3.158,3149,3.646,3181,3.018,3225,2.596,3264,3.646,3319,2.596,3367,2.934,3519,1.974,3527,3.447,4098,2.437,4504,4.561,4541,5.438,4936,3.96,5123,4.213,5144,4.733,5159,4.551,5171,5.438,5190,5.784,5195,2.655,5471,3.488,5615,3.96,5632,4.931,5722,3.591,5825,5.418,5833,4.144,6415,4.601,6509,3.321,6545,6.425,6592,3.21,6746,3.759,6854,3.759,6895,5.784,6971,3.96,6990,5.894,6991,3.96,6992,5.064,6993,5.064,6994,5.064,6995,4.551,6996,5.064,6997,5.064,6998,5.064,6999,3.759,7000,3.591,7001,5.064,7002,5.064,7003,5.064,7004,5.064,7005,4.213,7006,4.551,7007,4.551,7008,5.064,7009,4.551,7010,5.064,7011,5.064,7012,4.551,7013,5.064,7014,3.759,7015,5.064,7016,4.551,7017,5.064,7018,4.551,7019,7.111,7020,5.064,7021,7.94,7022,3.109,7023,5.064,7024,4.213,7025,5.064,7026,4.551,7027,5.064,7028,5.064,7029,5.064,7030,5.064,7031,6.953,7032,5.064,7033,5.064,7034,5.064,7035,5.064]],["tags/Getting rid of trackers using LineageOS",[5471,2.855]],["title/Lousy Wordpress Hacking Attempts detected",[2025,1.927,5122,2.701,5836,3.119,6054,2.788,7036,4.399]],["content/Lousy Wordpress Hacking Attempts detected",[6,0.691,17,0.708,19,0.318,27,0.474,39,2.241,50,0.624,73,0.8,76,1.331,84,2.567,86,1.85,96,1.85,116,1.195,131,1.877,156,1.284,168,1.616,191,3.142,252,2.128,278,2.554,297,1.568,375,1.121,452,1.85,477,2.128,596,3.488,909,2.128,912,0.819,915,2.814,920,2.202,1021,7.678,1131,5.851,1274,2.969,1298,4.544,1306,6.223,1393,2.814,1398,4.459,1405,3.629,1451,2.683,1457,7.767,1477,2.567,1485,3.629,1488,2.027,1612,2.567,1659,2.165,1671,2.128,1746,2.747,1795,1.797,1971,4.058,2012,4.855,2123,3.371,2173,3.484,2219,3.629,2254,2.241,2409,2.282,2565,2.623,3125,3.05,3186,3.142,3496,2.567,4502,3.05,5119,2.962,5122,3.142,5154,3.798,5183,4.257,5477,3.142,5855,3.244,6003,3.356,6921,4.257,7037,4.257,7038,4.002,7039,8.585,7040,5.117,7041,5.117,7042,4.257,7043,5.117,7044,5.117,7045,5.117,7046,5.117,7047,4.002,7048,5.117,7049,9.817,7050,9.817,7051,9.817,7052,5.117,7053,9.817,7054,9.817,7055,6.683,7056,7.003,7057,7.003,7058,9.679,7059,9.679,7060,5.117,7061,5.117,7062,5.117,7063,5.117,7064,5.117,7065,5.117,7066,5.117,7067,5.117,7068,5.117,7069,5.117,7070,5.117,7071,5.117,7072,5.117,7073,5.117,7074,5.117]],["tags/Lousy Wordpress Hacking Attempts detected",[]],["title/Teaching students about coding trends",[897,1.492,2302,1.87,3224,2.554,3483,2.298]],["content/Teaching students about coding trends",[5,1.437,10,0.981,11,2.114,17,0.733,19,0.326,21,2.753,23,3.786,26,1.234,27,0.806,28,0.944,30,2.142,41,2.78,42,1.646,47,2.558,50,0.646,69,2.067,70,1.713,73,0.829,74,0.978,77,2.198,79,0.555,83,1.736,103,1.449,113,1.05,127,3.945,150,1.757,188,2.067,196,1.563,199,1.713,203,1.768,253,2.243,263,0.869,275,1.05,276,1.314,297,1.624,311,2.492,315,1.437,343,4.764,347,3.159,388,1.713,400,3.477,404,1.181,422,1.889,442,2.454,452,1.916,457,2.01,476,1.985,482,4.157,487,2.933,517,1.087,700,2.718,722,2.035,754,2.991,813,2.916,851,1.736,885,2.78,903,2.169,921,1.263,924,2.718,947,2.991,951,1.298,957,3.072,982,2.659,986,2.991,1011,1.889,1020,2.593,1159,2.134,1198,3.159,1267,2.604,1283,0.558,1289,1.382,1299,3.072,1312,3.32,1346,1.646,1366,2.846,1369,1.96,1382,2.243,1426,1.583,1488,2.1,1533,2.454,1548,3.36,1599,2.718,1677,2.454,1687,1.087,1718,2.846,1721,1.075,1725,1.889,1742,2.454,1785,1.668,1931,2.169,1957,3.935,1997,4.764,1999,2.604,2077,4.44,2177,2.916,2182,3.935,2254,2.322,2302,2.035,2377,3.477,2417,2.916,2479,3.935,2559,4.41,2560,4.764,2680,4.146,2748,4.405,2791,4.883,2853,2.659,2945,2.78,3026,3.255,3035,2.408,3198,3.477,3224,4.263,3225,2.718,3241,1.785,3483,3.385,3822,5.325,3858,4.764,4298,3.36,4419,3.072,4426,3.255,4460,4.146,4533,3.935,5085,1.736,5109,2.659,5163,3.609,5189,3.36,5369,3.36,5417,2.454,5477,4.405,5518,3.159,6542,3.759,6588,3.159,6685,4.764,6937,4.547,7075,6.447,7076,5.301,7077,3.935,7078,5.301,7079,5.301,7080,4.41,7081,5.301,7082,4.764,7083,4.764,7084,3.609,7085,3.759,7086,5.301,7087,4.146,7088,4.146,7089,5.301,7090,5.301,7091,5.301,7092,5.301,7093,5.301,7094,5.301,7095,5.301,7096,5.301,7097,5.301,7098,5.301,7099,5.301,7100,7.174,7101,5.301,7102,5.301,7103,5.301,7104,5.301,7105,4.764,7106,4.764,7107,5.301,7108,5.301,7109,5.301,7110,7.174,7111,8.131,7112,5.301,7113,5.301,7114,5.301,7115,5.301,7116,4.41,7117,5.301,7118,5.301,7119,3.255,7120,4.764]],["tags/Teaching students about coding trends",[487,1.437,3224,2.238]],["title/The IndieWeb Mixed Bag",[998,2.797,2600,3.251,6900,2.861]],["content/The IndieWeb Mixed Bag",[5,1.033,6,0.696,10,0.793,17,0.974,18,1.689,19,0.32,21,1.56,28,0.919,29,1.997,39,2.258,41,2.704,42,2.186,52,0.47,74,1.479,75,1.009,79,0.48,82,2.433,83,1.689,96,1.864,104,1.011,113,1.021,149,1.76,156,1.766,157,1.263,160,2.258,168,1.624,175,1.427,188,2.01,196,1.52,203,1.121,208,2.299,211,1.785,221,3.656,223,1.204,233,2.258,240,1.07,253,2.978,275,1.021,276,1.745,282,1.644,288,1.19,312,1.58,315,1.033,330,3.083,372,2.88,375,0.826,378,1.148,388,1.666,404,1.785,435,2.219,443,2.075,452,2.545,579,2.88,627,1.92,676,4.617,723,2.219,782,1.462,788,3.073,827,3.872,881,2.219,889,4.29,897,2.157,908,2.985,919,1.785,929,1.52,939,3.656,949,2.643,951,1.724,978,1.837,983,2.386,1009,4.462,1020,2.898,1229,2.621,1279,1.083,1283,0.741,1289,1.196,1300,3.197,1301,2.836,1307,2.533,1357,4.634,1402,3.827,1415,1.811,1425,2.386,1439,3.073,1470,2.768,1480,4.033,1505,2.704,1512,3.458,1577,2.342,1583,1.622,1611,3.197,1619,2.643,1634,2.075,1648,1.644,1651,3.166,1657,2.456,1671,3.334,1711,2.109,1785,1.622,1788,3.51,1795,1.811,1878,3.073,1930,2.836,1950,1.949,1969,0.887,2011,3.073,2045,4.617,2080,3.268,2087,2.704,2118,2.988,2135,3.268,2144,2.909,2149,2.219,2182,3.827,2308,3.656,2480,2.768,2564,2.909,2658,4.29,2660,2.643,2785,2.075,2798,2.181,2867,5.95,2881,2.88,3079,3.656,3232,3.382,3267,3.656,3519,2.01,3528,3.073,3539,2.909,4320,3.382,4413,6.326,4419,2.988,4424,4.033,4745,3.382,4945,3.073,5085,1.689,5103,4.079,5119,3.814,5122,4.922,5244,3.268,5409,2.643,5473,2.768,6526,3.268,6773,3.656,6898,5.373,6900,4.203,6937,3.268,6944,4.634,6950,3.827,6958,4.033,7121,5.156,7122,4.033,7123,4.033,7124,5.156,7125,5.156,7126,4.29,7127,5.156,7128,5.156,7129,5.156,7130,5.156,7131,5.156,7132,4.29,7133,4.29,7134,5.156,7135,4.634,7136,4.634,7137,5.156,7138,4.634,7139,5.156,7140,5.156,7141,5.156,7142,5.156,7143,5.156,7144,5.156,7145,5.156,7146,6.668,7147,4.033,7148,5.156,7149,3.827,7150,5.156,7151,5.156,7152,5.156,7153,5.156,7154,5.156,7155,5.505,7156,5.156,7157,5.156,7158,5.156,7159,4.634,7160,6.326,7161,4.033,7162,5.156,7163,5.156,7164,5.156,7165,5.156,7166,4.29,7167,5.156]],["tags/The IndieWeb Mixed Bag",[2149,1.47,5471,1.713,6900,1.791]],["title/Discord killed support for WinXP",[2881,1.993,4954,3.454,6076,2.991,7168,4.377]],["content/Discord killed support for WinXP",[0,1.019,1,1.278,4,2.164,5,1.556,7,2.632,14,0.825,17,0.671,19,0.307,20,1.868,24,0.95,26,0.835,27,0.449,28,0.865,37,2.738,40,3.317,50,0.592,52,0.765,69,2.632,70,1.568,74,0.896,79,0.461,81,1.612,82,2.29,83,1.59,87,1.729,94,1.147,98,1.081,101,0.423,103,1.326,104,0.969,132,1.412,150,1.189,153,2.305,160,2.126,184,1.634,198,3.603,209,2.738,217,1.16,234,2.336,240,1.007,263,0.796,271,1.754,275,0.961,277,1.31,293,0.995,297,1.487,312,1.487,315,1.556,320,1.868,361,2.688,368,1.527,375,0.777,377,4.362,397,3.442,435,2.089,437,3.027,441,1.521,444,1.729,457,1.36,484,2.019,627,2.514,677,3.183,749,2.812,754,2.738,782,1.232,786,2.892,794,4.28,853,1.487,854,2.204,908,1.807,912,1.081,924,2.488,947,2.738,948,2.336,978,1.729,983,2.246,1011,1.729,1161,2.126,1229,1.807,1274,1.468,1278,2.182,1283,0.71,1288,5.506,1289,0.825,1291,1.757,1292,1.922,1296,1.068,1319,2.762,1337,2.488,1339,1.507,1348,2.053,1354,2.435,1370,4.596,1401,2.164,1403,2.089,1420,1.807,1426,1.449,1465,2.669,1487,3.612,1488,1.922,1533,2.246,1534,2.336,1537,1.985,1578,2.669,1586,2.411,1606,2.488,1634,1.953,1645,2.435,1655,1.985,1678,2.019,1680,2.336,1764,1.709,1784,2.605,1795,2.371,1885,2.812,1902,4.596,1903,2.488,1947,2.488,1969,0.835,1993,3.54,2025,2.957,2034,2.053,2061,3.304,2077,2.246,2120,3.304,2125,2.336,2139,2.488,2147,4.024,2297,2.545,2365,3.304,2378,0.885,2388,2.812,2390,2.29,2471,2.669,2475,1.807,2479,3.603,2576,2.053,2645,2.096,2704,2.98,2797,3.183,2881,1.985,2935,3.442,2957,3.183,2971,3.076,3178,2.812,3194,2.812,3225,3.462,3241,1.634,3257,5.444,3537,2.812,3710,3.442,4352,3.603,4527,2.712,4561,4.038,4813,5.617,4949,3.603,5109,2.435,5119,2.053,5144,3.304,5145,3.183,5180,3.076,5184,3.796,5191,3.603,5284,4.038,5316,3.304,5417,2.246,5486,4.429,5500,4.038,5732,1.704,5792,4.038,5878,3.304,5943,3.442,5949,5.617,6054,3.076,6061,3.304,6264,6.068,6387,4.038,6491,4.362,6656,4.362,6684,3.442,6731,4.038,6742,4.038,6937,3.076,6983,6.068,7168,7.929,7169,4.853,7170,4.853,7171,3.183,7172,5.012,7173,4.038,7174,4.038,7175,4.853,7176,4.853,7177,3.442,7178,4.853,7179,4.853,7180,4.853,7181,4.853,7182,4.853,7183,4.853,7184,4.788,7185,4.853,7186,4.853,7187,4.853,7188,4.853,7189,4.853,7190,4.853,7191,4.853,7192,4.853,7193,4.853,7194,4.853,7195,6.072,7196,4.853,7197,4.853,7198,6.752,7199,4.853,7200,4.853,7201,4.853,7202,4.853,7203,4.853,7204,4.853,7205,4.853,7206,4.853,7207,4.853,7208,4.853,7209,4.853,7210,4.853,7211,4.038,7212,2.384,7213,4.853,7214,4.853]],["tags/Discord killed support for WinXP",[2378,1.038]],["title/Exploring the Go programming language",[14,0.828,23,2.026,234,2.344,487,1.64]],["content/Exploring the Go programming language",[1,1.782,5,1.355,6,0.913,10,0.548,11,1.435,14,1.688,18,1.594,19,0.382,20,1.872,21,2.352,23,3.977,27,0.45,39,2.132,65,1.435,67,1.709,73,0.761,74,1.249,75,1.324,79,0.332,87,1.084,107,4.634,113,0.964,116,1.136,121,1.435,124,2.746,131,0.93,136,3.613,155,3.193,158,0.617,179,0.909,180,1.804,196,1.435,209,2.746,216,0.847,224,4.798,228,4.049,234,2.343,240,1.01,262,3.807,275,0.964,276,1.206,278,1.266,288,1.123,297,1.491,309,1.639,315,1.769,316,2.552,320,1.347,326,2.391,363,4.277,372,1.991,378,1.084,404,1.084,418,1.662,428,2.746,437,2.638,441,1.524,442,2.253,444,1.734,450,2.211,464,3.452,472,3.032,475,3.748,476,1.347,484,2.024,487,2.618,492,2.495,501,3.193,518,3.669,567,4.032,579,1.991,591,2.613,596,1.709,631,2.677,667,4.174,674,3.613,739,2.746,746,4.049,782,0.888,799,2.901,806,3.323,844,3.452,851,2.216,881,2.095,897,2.073,927,4.049,938,2.989,956,3.452,958,2.613,983,2.253,998,2.495,1008,1.868,1025,3.807,1026,5.022,1130,3.452,1192,2.297,1193,2.446,1229,1.812,1267,2.391,1274,1.472,1283,0.712,1289,0.827,1296,1.071,1307,2.391,1341,4.374,1415,2.376,1426,1.453,1488,1.928,1505,2.552,1534,2.343,1583,1.531,1586,2.414,1648,2.157,1687,0.998,1718,2.613,1744,2.343,1775,4.374,1794,1.959,1811,2.343,1852,2.677,1858,2.059,1942,4.374,1945,1.573,1962,2.482,1982,3.613,1983,1.594,1985,2.677,1990,4.438,1998,4.049,2005,4.049,2017,4.438,2062,2.024,2087,2.552,2104,2.677,2149,2.095,2182,3.613,2186,2.901,2302,1.868,2315,3.193,2339,2.343,2374,2.059,2382,2.989,2433,1.639,2441,3.085,2459,3.313,2543,3.313,2597,3.613,2600,2.901,2621,4.049,2713,2.989,2715,2.989,2775,2.059,2806,2.391,2854,2.677,2881,1.991,2976,3.193,2980,2.901,2986,2.495,3004,1.991,3035,2.211,3115,4.374,3145,2.343,3224,2.552,3264,3.547,3483,3.192,3485,2.495,3537,2.82,4312,4.374,4317,4.049,4375,3.807,4691,2.552,4801,3.394,5085,1.594,5109,2.442,5116,5.101,5145,3.193,5147,2.677,5163,3.313,5283,2.211,5623,3.313,5706,3.807,5739,4.374,5855,3.085,6001,3.313,6036,4.049,6376,3.313,6481,3.807,6526,3.085,6711,4.049,6732,4.374,6759,3.807,6898,2.901,6900,2.552,6937,3.085,7055,3.313,7080,4.049,7166,4.049,7215,4.867,7216,4.374,7217,4.867,7218,4.867,7219,4.867,7220,4.867,7221,4.867,7222,4.374,7223,3.807,7224,4.374,7225,4.374,7226,4.049,7227,4.867,7228,6.08,7229,4.867,7230,4.867,7231,2.82,7232,4.867,7233,4.867,7234,4.867,7235,6.766,7236,4.867,7237,4.867,7238,4.867,7239,4.867,7240,4.867,7241,4.374,7242,4.867,7243,4.867,7244,4.049]],["tags/Exploring the Go programming language",[14,0.484,472,1.11,475,1.269,649,1.459]],["title/Stop limiting yourself to JS in browsers",[7,1.715,241,1.861,242,1.614,700,2.255,3257,2.621]],["content/Stop limiting yourself to JS in browsers",[0,1.429,1,1.793,10,0.553,14,0.834,17,0.942,19,0.427,22,0.939,23,2.042,26,0.844,27,0.63,37,3.84,50,0.598,52,0.712,55,2.497,73,1.064,77,1.504,86,1.775,94,1.16,104,1.122,109,1.217,113,0.972,138,3.414,144,1.143,150,1.202,158,0.622,162,3.112,179,0.917,181,4.464,203,1.068,216,0.854,223,1.589,242,1.801,293,1.007,311,1.504,320,1.359,330,2.15,375,0.786,378,1.093,395,2.363,399,2.845,404,1.74,409,1.376,426,2.635,446,2.317,455,1.676,472,3.736,518,4.591,596,2.744,649,3.489,652,3.112,698,1.801,700,3.489,710,3.84,722,1.885,723,2.113,757,2.317,782,1.425,786,2.926,897,2.394,910,2.7,913,2.463,921,0.864,948,2.363,985,1.359,1002,2.926,1003,2.574,1020,2.824,1026,5.052,1146,1.608,1172,2.845,1192,2.317,1193,3.049,1238,3.482,1274,2.551,1283,0.716,1312,2.272,1327,1.545,1339,1.524,1348,2.077,1354,4.232,1370,3.342,1393,2.7,1415,1.724,1417,3.644,1422,1.945,1504,2.926,1511,2.574,1517,2.463,1567,3.644,1582,1.976,1612,2.463,1623,1.653,1633,2.189,1660,2.845,1687,1.007,1696,5.323,1721,1.38,1725,2.425,1750,3.84,1788,3.342,1793,6.11,1806,2.635,1811,2.363,1828,4.412,1831,3.84,1835,7.021,1850,6.117,1863,7.021,1877,3.342,1878,2.926,1898,2.845,1938,2.463,1950,1.856,1971,2.845,2010,2.926,2052,2.574,2077,2.272,2301,2.635,2314,2.517,2388,2.845,2456,3.015,2541,3.342,2563,4.084,2686,2.926,2779,3.342,2785,1.976,2858,3.84,2881,2.784,3004,2.008,3035,2.23,3154,4.084,3236,2.363,3257,2.926,3265,3.015,3483,2.317,3822,3.644,4457,3.22,4647,4.412,4741,2.926,4749,3.644,4805,3.482,5121,3.112,5128,3.015,5219,3.644,5283,2.23,5293,6.11,5542,2.635,5681,3.644,5821,4.084,6134,4.084,6230,4.084,6403,4.412,6445,4.084,6621,3.84,6730,3.84,6825,4.084,7159,4.412,7244,4.084,7245,4.91,7246,4.91,7247,7.581,7248,4.412,7249,4.91,7250,6.806,7251,4.91,7252,4.91,7253,4.91,7254,7.812,7255,4.91,7256,4.91,7257,6.806,7258,6.806,7259,4.91,7260,4.91,7261,4.91,7262,4.91,7263,4.412,7264,4.91,7265,4.91,7266,4.91,7267,4.91,7268,8.436,7269,4.91,7270,4.91,7271,4.91,7272,4.91,7273,4.91,7274,7.812,7275,7.812,7276,6.806,7277,8.436,7278,4.91,7279,4.91,7280,4.91,7281,4.91,7282,4.91,7283,4.91,7284,4.91,7285,4.91,7286,4.412,7287,4.91,7288,4.412]],["tags/Stop limiting yourself to JS in browsers",[14,0.58,472,1.332,649,1.751]],["title/The first Dutch Obsidian meetup",[135,3.615,921,0.858,3496,2.443,7289,2.679]],["content/The first Dutch Obsidian meetup",[0,1.47,1,1.348,5,1.025,10,0.576,11,1.508,17,0.708,19,0.233,20,1.938,24,1.001,26,0.88,27,0.648,28,0.912,42,1.589,47,1.61,48,3.538,50,0.624,52,0.783,60,1.167,74,0.944,88,2.093,99,1.987,104,0.735,111,3.798,113,1.387,114,2.887,121,1.508,122,2.415,126,3.862,131,0.978,135,5.198,144,0.859,156,1.284,157,1.253,158,0.648,159,1.568,165,1.436,172,2.532,179,0.956,180,1.867,191,3.142,200,2.06,203,1.113,216,1.565,246,3.05,252,2.128,263,0.839,265,4.966,275,1.013,277,1.381,288,1.181,291,2.774,311,2.146,312,1.568,315,1.403,318,2.241,321,1.85,367,1.934,372,2.093,375,1.121,396,3.244,412,1.528,413,2.514,422,1.823,437,1.995,455,1.747,460,2.415,606,2.282,621,1.452,728,1.905,757,2.415,825,3.798,909,2.913,910,2.814,920,2.202,921,0.901,929,1.508,978,1.823,1008,1.964,1020,1.85,1236,2.463,1278,1.654,1295,3.05,1327,1.61,1333,2.06,1334,2.241,1339,2.174,1352,2.463,1425,3.241,1451,2.683,1477,2.567,1479,4.257,1541,1.632,1583,1.61,1614,2.093,1619,3.59,1634,2.06,1648,1.632,1663,1.61,1687,1.05,1721,1.037,1737,3.356,1764,1.126,1765,3.484,1796,3.014,1931,2.865,1938,2.567,1944,3.798,1952,2.463,1969,1.373,1983,2.294,2006,1.905,2063,2.774,2108,2.463,2116,2.282,2177,2.814,2186,3.05,2289,1.877,2297,2.683,2301,2.747,2353,2.128,2415,2.415,2435,3.05,2462,3.798,2463,3.695,2468,3.244,2691,2.165,2696,2.814,2698,3.484,2717,2.282,2733,3.356,2805,1.797,2903,4.002,3004,2.093,3160,3.142,3496,4.005,3519,2.73,3866,5.477,4443,2.814,4785,3.05,5114,4.257,5174,2.165,5237,3.244,5333,3.629,5518,3.05,5550,3.244,5690,3.484,5844,2.623,6271,3.05,6320,3.852,6327,3.798,6368,4.599,6509,4.594,6511,6.294,6527,4.599,6618,3.244,6626,4.599,6900,2.683,6937,3.244,7119,3.142,7174,4.257,7177,3.629,7212,2.514,7289,4.945,7290,6.373,7291,5.117,7292,4.002,7293,3.629,7294,4.599,7295,5.117,7296,4.002,7297,5.117,7298,5.117,7299,5.117,7300,5.117,7301,4.257,7302,4.257,7303,4.599,7304,5.117,7305,5.117,7306,5.117,7307,4.599,7308,5.117,7309,5.117,7310,4.599,7311,5.117,7312,5.117,7313,5.117,7314,4.257,7315,6.294,7316,5.117,7317,5.117,7318,5.117,7319,4.599,7320,4.599,7321,5.117,7322,5.117,7323,5.117,7324,4.599,7325,4.599,7326,5.117,7327,5.117,7328,5.117,7329,3.798]],["tags/The first Dutch Obsidian meetup",[172,1.543,7289,2.348]],["title/Using Hugo to Launch a Gemini Capsule",[52,0.401,2409,1.962,6989,2.994,7330,3.265,7331,3.659]],["content/Using Hugo to Launch a Gemini Capsule",[0,1.051,1,1.318,5,1.581,6,0.931,11,2.033,14,1.445,18,1.639,19,0.359,23,2.081,27,0.73,28,1.229,30,1.494,50,0.841,52,0.72,67,1.757,73,0.782,76,1.794,77,1.533,79,0.341,81,1.662,94,1.182,97,2.361,101,0.688,104,0.99,109,1.24,113,0.991,116,1.842,119,2.982,126,2.081,132,2.007,137,3.548,144,0.84,156,2.238,158,0.874,223,1.61,224,3.548,234,2.408,240,1.431,253,2.117,275,0.991,276,1.24,277,1.351,278,1.794,288,1.155,309,1.685,315,1.382,317,1.685,318,2.192,322,2.982,368,2.483,372,2.047,375,1.104,392,2.408,409,1.932,413,2.458,416,2.192,422,1.783,455,1.708,465,1.892,596,2.422,614,2.686,627,1.863,628,2.117,630,1.385,677,5.176,782,0.913,797,2.154,909,2.081,919,2.732,921,1.214,958,2.686,985,1.385,987,2.624,1011,1.783,1062,2.014,1078,3.072,1229,1.863,1279,1.786,1289,1.445,1299,2.899,1315,2.821,1334,2.192,1335,1.863,1366,2.686,1370,3.406,1398,4.188,1407,4.163,1426,2.059,1481,4.11,1505,2.624,1541,1.595,1586,2.141,1590,2.823,1611,2.273,1612,3.46,1623,1.685,1633,2.231,1663,1.574,1666,2.154,1671,3.282,1721,1.014,1777,2.117,1794,2.014,1795,1.757,1872,2.273,1881,2.081,1958,3.406,1964,4.371,2012,2.51,2057,4.163,2087,2.624,2306,2.316,2323,3.172,2409,2.231,2452,2.899,2463,2.316,2475,1.863,2536,2.823,2594,2.192,2661,2.686,2719,3.714,2796,3.072,2825,2.752,2969,2.316,3004,2.821,3008,3.406,3145,2.408,3190,2.686,3496,3.46,3519,2.689,3527,3.406,3939,4.163,4317,4.163,4399,3.172,4582,4.163,4713,3.406,4741,2.982,4792,3.406,4946,4.497,5090,3.548,5116,4.523,5119,2.917,5147,4.34,5163,3.406,5283,2.273,5375,2.982,5376,2.624,5793,4.163,5984,4.163,6224,3.714,6552,3.406,6933,3.172,6936,4.497,6937,3.172,6989,7.046,7212,2.458,7231,2.899,7331,6.565,7332,5.004,7333,5.004,7334,5.004,7335,4.497,7336,5.004,7337,5.004,7338,4.163,7339,5.004,7340,5.004,7341,5.004,7342,6.896,7343,5.004,7344,6.198,7345,5.004,7346,5.004,7347,5.004,7348,5.004,7349,5.004,7350,4.163,7351,4.497,7352,5.004,7353,5.004,7354,5.004,7355,5.004,7356,4.163,7357,5.004,7358,5.004,7359,5.004,7360,3.913,7361,5.004,7362,5.004,7363,5.004,7364,3.714,7365,5.004,7366,5.004]],["tags/Using Hugo to Launch a Gemini Capsule",[2149,1.837,6989,2.906]],["title/On Manuscript Review Procedures",[1277,3.714,2717,2.433,7367,4.267]],["content/On Manuscript Review Procedures",[6,1.15,10,0.566,11,2.331,17,1.179,19,0.406,22,0.961,24,0.984,25,1.374,27,0.732,28,1.232,30,1.501,37,2.836,42,1.56,50,0.613,52,0.458,60,1.146,74,0.928,75,1.807,76,1.308,79,0.539,101,0.603,104,0.722,109,1.246,116,1.174,131,0.961,133,2.655,145,3.346,158,0.637,167,1.991,180,1.34,196,1.481,203,1.093,207,3.931,263,0.824,275,0.995,278,1.8,282,1.602,293,1.031,317,1.692,322,2.995,372,2.056,384,1.559,388,1.624,396,3.186,404,1.119,412,1.501,425,6.217,430,1.463,435,2.163,465,2.615,476,1.914,478,1.96,487,2.329,501,5.589,517,1.419,542,2.912,646,3.422,652,3.186,768,3.186,782,0.917,786,2.995,897,2.738,906,3.186,920,3.404,951,1.694,982,3.968,985,1.391,998,2.577,1008,2.655,1061,3.564,1066,2.419,1088,2.764,1146,2.591,1278,1.624,1279,1.789,1282,3.731,1289,1.176,1301,2.764,1302,3.086,1327,1.581,1337,3.546,1339,1.56,1352,2.419,1369,1.374,1399,2.74,1497,3.086,1504,2.995,1541,1.602,1578,2.764,1645,2.521,1721,1.019,1725,1.791,1776,3.086,1794,2.023,1952,4.101,1965,1.716,1985,2.764,1999,2.469,2034,2.126,2062,2.877,2108,2.419,2226,3.731,2335,5.839,2344,4.247,2375,2.698,2387,2.836,2390,2.372,2645,1.56,2692,4.181,2717,4.118,2729,4.181,2777,3.564,2805,2.778,2809,3.931,2819,3.564,2852,4.181,2853,2.521,2928,2.912,2949,2.698,3027,4.181,3190,2.698,3203,2.912,3229,3.564,3254,3.87,3519,1.96,3546,2.577,3556,3.564,3559,2.635,3826,3.931,4381,3.931,4397,5.135,4463,2.995,4836,3.931,4931,3.422,5088,4.181,5091,4.517,5092,4.181,5390,4.181,5396,3.086,5705,3.931,5706,3.931,5733,3.564,5936,3.731,6039,3.422,6408,3.931,6633,3.931,6704,4.517,6855,3.731,7155,3.931,7367,7.222,7368,5.026,7369,3.931,7370,5.026,7371,5.026,7372,5.026,7373,5.026,7374,4.517,7375,5.026,7376,5.026,7377,5.026,7378,4.517,7379,5.026,7380,5.026,7381,3.931,7382,5.026,7383,4.517,7384,6.186,7385,5.026,7386,5.026,7387,5.026,7388,5.026,7389,5.026,7390,5.026,7391,4.517,7392,3.931,7393,6.917,7394,4.181,7395,5.026,7396,5.026,7397,4.517,7398,5.026,7399,5.026,7400,3.931,7401,5.026,7402,4.181,7403,5.026,7404,5.026,7405,4.517]],["tags/On Manuscript Review Procedures",[75,0.835,3203,2.473]],["title/Host your own webmention receiver",[982,2.737,2012,2.737,6898,3.251]],["content/Host your own webmention receiver",[0,1.088,14,1.466,19,0.392,22,0.99,24,1.382,27,0.744,28,0.923,35,3.845,50,0.631,52,0.787,86,3.119,89,1.929,95,2.444,99,1.47,104,0.744,107,5.143,109,1.284,121,1.527,131,0.99,132,2.055,138,2.598,144,1.186,156,1.772,165,1.062,168,1.195,196,1.527,200,2.842,216,0.901,219,1.697,223,1.209,234,2.493,240,1.465,242,2.591,253,2.191,263,0.849,275,1.026,276,1.991,277,1.906,297,2.164,309,1.744,317,1.744,326,2.544,375,0.829,378,1.153,384,1.167,412,1.547,428,3.984,443,1.527,457,1.451,487,1.744,517,1.062,595,3.087,627,2.992,667,2.78,782,0.945,897,2.164,929,1.527,982,3.542,985,1.433,998,2.656,1020,1.872,1045,2.716,1267,2.544,1276,2.63,1283,0.743,1291,1.348,1297,2.849,1303,3.542,1315,2.889,1317,1.872,1332,2.353,1335,1.929,1339,2.192,1340,3.283,1346,1.608,1354,2.598,1370,4.807,1420,1.929,1426,1.547,1430,2.544,1477,4.329,1497,3.18,1512,2.544,1612,2.598,1661,3.673,1675,2.397,1721,1.05,1755,2.849,1777,2.987,1784,2.78,1858,3.399,1876,2.31,1878,3.087,1947,4.119,1950,1.958,1962,1.9,1965,1.768,2012,3.542,2080,3.283,2087,2.716,2104,2.849,2108,2.493,2115,2.397,2144,2.922,2149,2.229,2296,4.092,2388,3.001,2409,3.149,2415,2.444,2459,3.526,2512,3.791,2551,3.845,2558,2.02,2590,3.18,2594,2.269,2600,3.087,2642,2.02,2665,2.716,2687,2.849,2710,3.18,2775,2.987,2785,2.085,2806,2.544,2908,5.008,2980,3.087,3088,3.18,3154,4.309,3232,3.398,3241,1.744,3264,2.716,3480,3.18,4339,3.18,4691,3.703,4745,3.398,4756,2.493,4813,4.309,4964,3.001,5103,3.001,5119,2.191,5174,2.191,5237,4.476,5244,3.283,5591,3.845,5624,4.309,5632,3.673,5732,1.819,6592,3.283,6657,5.47,6715,4.051,6898,5.553,6900,4.525,6950,5.242,7055,3.526,7166,4.309,7224,4.655,7293,3.673,7406,4.655,7407,7.062,7408,5.18,7409,5.18,7410,5.18,7411,5.18,7412,5.18,7413,4.655,7414,5.18,7415,5.18,7416,5.18,7417,5.18,7418,4.051,7419,5.18,7420,4.309,7421,4.309,7422,5.18,7423,5.18,7424,4.655,7425,5.18,7426,5.18,7427,5.18,7428,5.18,7429,5.18,7430,5.18,7431,5.18,7432,5.18,7433,5.18,7434,5.18,7435,4.309,7436,5.18,7437,4.051,7438,5.18]],["tags/Host your own webmention receiver",[2409,1.904,6900,2.238]],["title/Moon Logic",[1930,3.41,7195,4.85]],["content/Moon Logic",[1,1.318,6,0.931,10,0.564,14,0.85,17,0.954,24,0.979,25,2.157,26,1.534,27,0.73,40,2.458,47,1.574,60,1.141,73,0.782,76,1.302,79,0.58,85,1.595,92,4.452,99,1.42,101,0.601,104,0.99,109,1.956,113,1.563,123,2.408,131,1.318,133,1.921,154,1.518,157,1.225,158,1,165,1.414,179,0.934,187,3.282,188,1.951,189,2.823,192,3.714,203,1.088,219,1.639,233,3.021,241,2.917,245,3.714,263,1.131,276,1.24,282,1.595,315,1.002,317,2.322,321,2.493,368,1.574,384,1.128,441,1.128,459,2.408,465,1.892,484,2.081,564,2.231,688,2.823,782,1.439,813,2.752,853,2.113,877,1.456,920,2.154,921,1.214,932,2.821,948,2.408,985,1.908,1031,2.361,1069,1.475,1260,1.475,1274,1.513,1283,0.726,1291,1.794,1302,4.234,1319,2.047,1332,2.273,1334,2.192,1339,1.554,1348,2.117,1352,2.408,1557,1.757,1586,2.141,1594,2.899,1614,2.047,1631,1.892,1646,3.282,1663,1.574,1675,2.316,1715,2.273,1764,1.101,1876,2.231,1879,2.565,1930,5.373,1946,2.823,1969,0.86,1973,2.982,1986,2.316,2001,3.282,2011,2.982,2015,2.686,2028,1.863,2043,2.565,2065,3.548,2115,2.316,2117,3.072,2147,2.982,2165,2.154,2183,2.273,2260,2.982,2326,3.072,2341,2.51,2348,2.899,2378,1.804,2390,2.361,2415,2.361,2480,2.686,2543,3.406,2666,2.361,2669,2.982,2699,1.892,2755,3.172,2828,4.523,2859,3.548,2904,3.072,2959,2.982,3077,3.132,3108,3.714,3125,2.982,3181,2.982,3189,5.202,3198,3.282,3226,3.406,3458,3.072,3485,3.536,3517,4.163,4338,2.899,4399,3.172,4700,3.714,4785,2.982,4804,4.497,4836,3.913,4954,3.548,5318,3.406,5368,3.406,5612,3.913,5732,1.757,5789,2.899,5836,3.548,5844,2.565,5919,4.497,6228,4.163,6289,3.714,6290,3.913,6299,5.119,6300,4.497,6302,3.913,6697,5.119,6759,3.913,6821,2.982,7042,4.163,7177,3.548,7195,7.212,7231,2.899,7301,4.163,7439,8.287,7440,5.004,7441,5.004,7442,5.004,7443,5.004,7444,6.198,7445,4.163,7446,5.004,7447,7.891,7448,6.896,7449,5.004,7450,5.004,7451,5.004,7452,5.004,7453,5.004,7454,5.004,7455,5.004,7456,5.004,7457,4.163,7458,5.004,7459,4.497,7460,4.497,7461,7.891,7462,6.896,7463,5.004,7464,5.004,7465,5.004,7466,5.004,7467,4.497,7468,5.004,7469,5.004,7470,5.004,7471,5.004,7472,5.004,7473,6.896]],["tags/Moon Logic",[2378,1.038]],["title/Nineties collecting nostalgia",[851,1.787,5359,2.928,6784,4.267]],["content/Nineties collecting nostalgia",[0,1.057,1,1.326,6,0.679,10,0.891,11,1.484,14,0.855,18,1.649,27,0.466,29,1.428,39,3.467,49,2.917,52,0.631,67,1.768,69,2.7,73,1.237,76,1.31,79,0.343,87,1.121,98,1.121,101,0.604,103,1.376,116,1.175,137,3.57,144,0.845,154,1.742,156,1.263,158,0.638,168,1.161,179,1.293,182,1.161,185,1.428,188,1.963,193,2.473,196,2.041,198,3.736,203,1.506,242,1.847,251,1.793,263,1.135,276,1.248,288,1.161,293,1.032,311,1.542,314,3,317,1.695,320,1.393,321,1.82,357,3.57,358,4.188,359,2.917,378,1.121,388,1.627,408,2.84,422,1.793,435,2.166,437,1.963,443,1.484,455,1.718,459,2.423,473,2.375,477,2.094,549,2.702,722,1.932,723,2.166,782,0.918,799,3,851,3.1,877,1.465,885,2.639,908,1.874,912,1.109,930,3.302,932,3.657,948,2.423,952,3.57,983,2.33,995,2.639,999,4.188,1029,3.091,1045,2.639,1161,2.205,1179,2.743,1198,3,1200,3.091,1276,1.874,1283,0.53,1292,1.994,1439,3,1504,3,1583,2.178,1589,3.205,1648,1.605,1764,1.108,1795,1.768,1796,2.166,1803,2.84,1879,2.581,1901,3.302,1931,2.059,1939,2.84,2007,2.331,2028,1.874,2030,3.302,2116,2.245,2125,3.333,2263,4.524,2289,2.54,2301,3.717,2374,2.129,2378,1.631,2404,3.302,2407,2.702,2433,2.87,2454,2.286,2512,2.375,2600,3,2605,2.33,2617,2.917,2641,3,2642,1.963,2645,2.458,2711,3.191,2760,2.768,2798,3.348,2874,3.191,2989,5.613,3013,2.768,3035,3.145,3454,2.375,3496,2.525,3526,3.937,3905,3.191,4049,3.937,4213,4.188,4444,3.302,4527,1.627,4575,4.94,5154,3.736,5174,2.129,5283,2.286,5401,2.639,5529,3.937,5543,3.937,5639,3.937,5640,4.524,5844,2.581,5868,4.188,5914,4.524,5917,2.581,5936,3.736,5942,3.091,6035,3.937,6075,5.14,6132,3.937,6295,4.188,7014,3.736,7222,4.524,7369,3.937,7474,5.034,7475,3.57,7476,5.034,7477,8.526,7478,8.939,7479,5.034,7480,3.736,7481,4.524,7482,7.916,7483,7.916,7484,5.034,7485,5.034,7486,5.034,7487,5.034,7488,6.223,7489,5.034,7490,5.034,7491,4.524,7492,4.524,7493,5.034,7494,5.034,7495,5.034,7496,3.937,7497,5.034,7498,6.925,7499,5.034,7500,5.034,7501,4.524,7502,5.034,7503,5.034,7504,5.034,7505,5.034,7506,4.524,7507,5.034,7508,4.524,7509,5.034,7510,5.034,7511,3.937,7512,5.034,7513,5.034,7514,5.034,7515,5.034,7516,5.034,7517,5.034,7518,5.034,7519,5.034,7520,5.034,7521,4.188,7522,5.034,7523,5.034,7524,5.034,7525,5.034,7526,5.034,7527,5.034]],["tags/Nineties collecting nostalgia",[851,1.864]],["title/Re: Is collecting physical games worth it?",[851,1.441,1066,2.117,1589,2.036,2378,0.802,3035,1.998]],["content/Re: Is collecting physical games worth it?",[14,1.195,18,1.686,19,0.32,24,1.376,26,0.885,27,0.476,28,1.533,46,2.106,50,0.627,69,2.742,73,0.805,77,1.578,79,0.48,85,1.641,94,1.662,99,1.461,100,2.583,101,0.449,103,1.407,113,1.019,121,1.517,144,0.865,156,1.292,157,1.261,165,1.643,175,1.425,180,1.373,182,1.623,184,1.733,193,2.529,211,1.783,223,1.202,240,1.786,241,3.388,242,1.889,248,4.641,255,2.763,258,2.296,263,1.153,275,1.392,294,1.917,297,1.578,307,2.983,312,1.578,315,1.031,323,3.821,330,2.255,367,1.946,368,1.62,376,3.263,384,1.16,388,1.664,396,3.263,405,3.161,415,3.161,430,1.498,435,2.216,437,2.007,452,2.542,459,2.478,473,2.429,478,2.007,482,2.983,517,1.056,564,2.296,627,2.982,724,1.598,757,2.429,786,4.191,851,3.047,877,1.498,908,1.917,912,0.824,913,3.528,919,1.783,995,2.7,1066,3.385,1069,1.517,1200,3.161,1237,2.007,1260,1.517,1289,0.875,1291,2.084,1292,2.785,1296,1.548,1334,3.08,1426,1.537,1430,2.529,1541,2.554,1557,1.808,1577,2.338,1589,3.984,1613,2.583,1631,1.946,1675,2.383,1676,4.318,1742,2.383,1763,2.141,1777,2.178,1794,2.072,1901,3.377,1962,1.889,1969,1.209,2060,4.987,2125,2.478,2260,3.068,2376,2.763,2378,1.814,2433,3.034,2516,3.505,2576,2.178,2592,2.583,2644,3.651,2699,1.946,2714,2.583,2756,2.216,2814,4.457,3035,3.194,3245,3.263,3509,4.457,3839,3.377,4098,2.478,4308,3.821,4320,3.377,4444,3.377,4527,2.912,4629,3.505,4752,4.283,4794,2.983,4948,3.377,5085,1.686,5107,3.377,5109,2.583,5195,2.7,5383,4.283,5398,3.821,5474,4.627,5519,4.283,5525,3.161,5726,3.505,5917,4.106,6115,4.026,6179,3.651,6512,4.627,6751,4.787,6772,6.264,6855,3.821,7087,4.026,7195,4.026,7496,4.026,7528,6.32,7529,5.148,7530,7.032,7531,5.148,7532,5.148,7533,5.148,7534,5.148,7535,5.148,7536,7.032,7537,5.148,7538,5.148,7539,5.148,7540,3.821,7541,5.148,7542,5.148,7543,4.627,7544,4.627,7545,5.148,7546,3.821,7547,4.627,7548,5.148,7549,5.148,7550,5.148,7551,6.32,7552,4.627,7553,5.148,7554,5.148,7555,5.148,7556,4.627,7557,5.148,7558,4.627,7559,5.148,7560,5.148,7561,7.032,7562,4.627,7563,5.148]],["tags/Re: Is collecting physical games worth it?",[851,1.398,2378,0.779]],["title/Social Debt in Development Teams",[476,1.348,2053,2.443,5409,2.497,7564,4.052]],["content/Social Debt in Development Teams",[0,1.099,1,1.379,3,1.563,10,0.91,16,2.81,17,1.293,19,0.238,20,1.968,24,1.392,27,0.485,50,0.638,65,1.543,83,1.715,84,2.627,86,1.893,94,1.237,98,1.166,101,0.704,104,1.16,113,1.037,116,1.222,122,2.47,123,2.52,132,1.524,133,2.01,144,0.879,150,1.282,158,0.663,165,1.074,168,1.208,230,2.47,233,2.293,246,3.12,266,2.335,276,1.298,278,1.362,293,1.459,322,3.12,366,2.684,375,1.139,384,1.603,404,1.584,412,1.563,437,2.773,441,1.603,443,2.097,452,1.893,457,1.467,468,4.095,471,2.745,476,2.508,631,2.88,757,2.47,782,0.955,897,2.982,903,2.142,919,1.813,921,1.252,989,6.057,1012,4.095,1030,3.292,1069,1.543,1179,2.818,1233,4.095,1236,2.52,1279,1.099,1289,1.473,1292,2.074,1301,3.912,1312,2.423,1334,2.293,1369,2.369,1403,2.253,1498,4.095,1501,1.787,1511,2.745,1517,2.627,1534,3.424,1555,2.954,1586,1.626,1599,2.684,1612,3.568,1657,1.604,1658,2.627,1675,2.423,1683,3.886,1689,4.705,1715,2.378,1721,1.638,1741,2.47,1746,2.81,1749,3.886,1755,2.88,1827,4.122,1881,4.103,1933,2.81,1945,1.692,1983,1.715,2053,4.053,2062,2.178,2078,2.954,2178,3.434,2319,2.88,2341,3.568,2346,2.684,2348,3.034,2377,3.434,2397,3.12,2559,4.356,2576,2.215,2681,3.12,2777,3.713,2796,3.215,2805,1.839,2876,3.647,3004,2.142,3082,3.713,3140,3.12,3254,2.378,3267,3.713,3316,4.095,3853,3.886,3961,4.705,4342,4.356,4411,5.563,4425,4.356,4691,4.545,4727,4.356,4945,3.12,5085,1.715,5409,4.142,5742,4.356,6038,3.886,6129,3.713,6999,3.886,7506,4.705,7544,4.705,7564,8.095,7565,5.236,7566,5.236,7567,5.236,7568,5.236,7569,5.236,7570,5.236,7571,3.713,7572,5.236,7573,5.236,7574,4.095,7575,5.236,7576,5.236,7577,6.393,7578,5.236,7579,5.236,7580,5.236,7581,5.236,7582,5.236,7583,5.236,7584,5.236,7585,5.236,7586,5.236,7587,4.705,7588,4.705,7589,5.236,7590,5.236,7591,5.236,7592,5.236,7593,5.236,7594,5.236,7595,5.236,7596,5.236]],["tags/Social Debt in Development Teams",[]],["title/Academese Gems",[7597,5.573,7598,5.573]],["content/Academese Gems",[6,0.704,7,2.768,19,0.393,22,0.998,24,1.389,25,1.426,26,0.898,28,0.93,46,2.135,50,0.636,59,1.642,65,1.539,73,0.816,74,1.31,75,1.87,79,0.484,93,3.874,99,1.481,101,0.755,102,2.676,104,0.749,109,1.294,113,1.597,121,1.539,132,1.519,133,2.725,148,2.538,149,1.782,156,1.309,158,0.661,165,1.456,182,1.204,196,2.378,211,1.807,216,1.235,217,1.248,263,0.856,272,3.701,276,1.294,278,1.847,291,2.067,297,1.599,308,3.309,312,2.472,317,1.757,320,1.444,328,4.691,351,4.342,365,2.684,368,1.642,395,2.512,409,1.462,418,1.782,437,2.768,455,1.782,476,1.444,493,3.024,564,2.328,580,2.371,652,4.499,722,2.004,728,1.944,782,0.952,860,3.553,903,2.904,912,0.836,919,1.807,920,2.246,982,2.618,994,2.371,1009,3.309,1017,3.722,1096,2.871,1198,3.111,1278,1.687,1289,1.206,1293,3.424,1327,1.642,1335,1.944,1339,1.621,1485,3.701,1555,2.945,1611,3.224,1617,2.171,1633,2.328,1648,1.664,1677,2.416,1687,1.654,1721,1.635,1725,1.86,1737,3.424,1741,2.463,1764,1.149,1785,1.642,1851,4.691,1852,2.871,1872,2.371,1879,2.676,1945,2.294,1946,2.945,1969,1.221,2006,1.944,2103,3.553,2275,3.553,2314,3.639,2319,2.871,2333,2.945,2335,3.024,2341,2.618,2458,2.945,2475,1.944,2501,3.553,2511,2.871,2512,2.463,2515,3.701,2558,2.035,2717,3.165,2739,4.342,2804,3.024,2805,2.833,2861,4.342,2928,3.024,3163,2.676,3229,5.72,3245,3.309,3254,4.478,3271,3.205,3454,2.463,3458,4.359,3483,2.463,3484,4.342,3487,3.701,3519,2.035,4399,3.309,4442,4.082,4674,4.691,4688,3.874,4691,2.737,5085,2.325,5283,2.371,5328,3.205,5409,2.676,5551,4.082,5719,4.691,5969,3.701,6280,4.691,6472,3.701,6508,4.342,6590,3.874,6595,3.024,6623,4.342,6633,4.082,6773,3.701,7014,3.874,7080,4.342,7564,5.906,7597,4.691,7598,6.379,7599,4.691,7600,5.22,7601,7.099,7602,5.22,7603,7.099,7604,5.22,7605,3.874,7606,5.22,7607,5.22,7608,5.22,7609,4.691,7610,5.22,7611,5.22,7612,5.22,7613,5.22,7614,5.22,7615,5.22,7616,4.691,7617,5.22,7618,4.342,7619,5.22,7620,4.691,7621,5.22,7622,5.22,7623,5.22,7624,4.691,7625,5.22,7626,5.22,7627,4.691,7628,5.22,7629,5.22,7630,4.691,7631,5.22]],["tags/Academese Gems",[75,1.114]],["title/Belgium - Portugal: 5 - 2",[131,0.931,193,2.392,586,2.096,7632,4.871]],["content/Belgium - Portugal: 5 - 2",[1,1.243,6,0.893,13,1.484,17,0.653,18,1.545,19,0.301,22,0.902,24,0.923,25,1.289,27,0.613,28,0.841,30,1.409,36,2.952,43,3.502,48,1.681,50,0.575,52,0.43,59,1.484,60,1.076,62,2.318,73,0.738,77,2.029,79,0.452,83,1.545,86,1.706,94,1.115,97,2.226,101,0.577,114,2.662,130,2.595,144,1.112,153,1.611,154,1.038,158,1.106,160,2.067,163,3.095,165,0.968,175,1.306,191,2.897,194,3.502,196,2.444,199,1.525,211,2.292,263,0.774,276,1.169,288,1.527,297,1.446,315,0.945,316,2.474,342,4.24,375,0.755,435,2.031,441,1.063,450,2.143,467,2.812,491,2.104,549,2.533,688,2.662,698,2.806,813,2.595,877,1.927,912,1.06,921,0.831,937,2.662,942,2.533,954,3.212,994,2.143,1066,2.271,1161,2.067,1191,2.897,1216,2.419,1283,0.697,1289,0.802,1317,1.706,1319,3.129,1337,2.419,1354,2.367,1399,1.869,1401,2.104,1426,1.409,1430,3.252,1451,2.474,1465,2.595,1487,2.031,1502,2.734,1503,3.212,1608,2.104,1611,2.143,1617,2.754,1634,1.899,1662,2.226,1668,3.212,1680,2.271,1687,0.968,1718,2.533,1721,0.956,1725,1.681,1777,3.235,1778,1.93,1969,1.138,2028,1.757,2053,2.367,2107,3.095,2289,2.429,2378,1.802,2426,2.734,2431,3.836,2475,1.757,2476,2.662,2534,3.212,2558,1.84,2582,2.595,2645,2.055,2661,2.533,2700,2.271,2755,4.196,2785,1.899,2798,3.235,2800,3.69,2805,1.657,2847,4.24,2907,2.991,2951,2.991,2981,2.595,3034,3.095,3077,3.007,3087,3.346,3217,3.212,3236,2.271,3251,2.734,3319,2.419,3435,3.346,3908,2.595,4098,2.271,4325,4.24,4403,3.69,4444,5.438,4461,1.869,4538,3.69,4550,3.69,4714,2.662,4737,3.095,4802,2.991,4904,2.897,5083,4.196,5103,2.734,5174,2.8,5175,4.24,5250,2.662,5358,3.346,5417,2.184,5486,4.342,5542,2.533,5665,3.212,5768,4.695,5822,3.212,5828,3.69,5829,2.734,5905,2.897,6039,3.212,6061,6.163,6080,3.346,6082,3.925,6090,3.212,6157,4.24,6271,2.812,6281,3.502,6320,2.595,6596,4.24,6675,4.24,6690,3.925,6691,4.24,6696,4.24,6700,3.925,6729,4.24,6776,3.925,7174,3.925,7184,3.346,7310,4.24,7480,3.502,7574,3.69,7605,3.502,7618,3.925,7633,4.718,7634,4.718,7635,4.24,7636,4.718,7637,7.648,7638,4.718,7639,4.718,7640,4.718,7641,3.925,7642,7.451,7643,4.24,7644,4.718,7645,3.925,7646,6.873,7647,4.695,7648,7.648,7649,3.69,7650,4.718,7651,4.718,7652,4.718,7653,4.718,7654,6.62,7655,4.718,7656,6.873,7657,4.718,7658,6.62,7659,4.718,7660,4.24,7661,4.718,7662,4.718,7663,6.62,7664,4.24,7665,4.718,7666,4.718,7667,4.718,7668,4.718,7669,4.718,7670,4.718,7671,4.718,7672,4.718,7673,4.718,7674,3.69,7675,4.24,7676,3.69,7677,3.925,7678,4.718,7679,4.718,7680,4.24,7681,3.095,7682,3.502,7683,4.718,7684,5.949,7685,4.718,7686,4.718,7687,4.718,7688,3.925,7689,4.718,7690,4.718,7691,4.24,7692,4.718,7693,4.718,7694,4.718,7695,4.24,7696,4.718]],["tags/Belgium - Portugal: 5 - 2",[2378,1.038]],["title/Flea Market Season",[2605,2.525,7697,4.05,7698,4.05]],["content/Flea Market Season",[0,1.418,1,1.778,2,3.624,6,0.655,10,0.547,11,1.431,17,1.074,19,0.221,20,1.868,21,1.468,22,0.928,26,0.835,27,0.777,30,2.634,50,0.946,52,0.443,57,3.183,59,1.527,60,1.107,73,1.312,79,0.53,101,0.423,117,3.183,121,1.431,144,0.815,152,2.435,153,1.657,155,3.183,157,1.189,158,0.855,175,2.148,188,1.892,193,2.384,199,1.568,216,0.845,219,1.59,225,4.429,246,4.627,251,1.729,255,2.605,258,2.164,259,3.796,265,3.442,266,2.164,275,1.537,276,1.203,277,1.823,287,2.738,288,1.12,293,1.385,297,1.487,309,2.614,314,2.892,347,2.892,361,2.338,412,1.449,413,3.317,418,2.305,430,1.412,438,2.892,443,2.474,444,1.729,446,2.29,460,2.29,484,2.019,564,2.164,703,3.796,851,2.212,854,2.204,877,1.412,881,2.089,912,0.777,921,0.855,929,1.431,931,4.038,932,1.985,993,2.384,1030,2.246,1062,1.953,1179,1.922,1240,2.669,1260,1.431,1274,1.468,1279,1.418,1283,0.511,1286,2.545,1289,1.147,1291,1.263,1296,1.068,1319,1.985,1325,2.812,1327,1.527,1334,2.126,1346,2.096,1430,2.384,1496,3.304,1502,2.812,1512,2.384,1557,2.371,1617,2.019,1648,1.547,1657,2.069,1658,2.435,1666,2.089,1687,0.995,1715,2.204,1718,2.605,1755,2.669,1764,1.486,1785,2.124,1795,2.371,1799,2.738,1892,3.304,1965,1.657,1969,0.835,1976,2.336,2006,1.807,2007,2.273,2011,2.892,2051,3.183,2064,2.98,2077,2.246,2147,2.892,2325,3.796,2378,1.709,2413,2.246,2433,2.273,2475,1.807,2485,3.183,2558,1.892,2582,2.669,2605,4.228,2641,4.024,2642,1.892,2694,2.545,2697,3.603,2705,2.98,2753,2.98,2756,2.089,2827,3.183,2840,3.603,2892,3.183,2904,2.98,2914,3.076,2951,3.076,2952,2.812,3004,1.985,3007,3.183,3077,3.527,3088,2.98,3168,3.442,3264,2.545,3505,4.038,3515,3.603,4050,3.796,4098,3.25,4465,3.603,4527,2.182,4544,4.038,4629,3.304,4768,2.605,4779,4.362,4794,2.812,5085,1.59,5417,3.125,5531,2.98,5565,3.442,5623,4.596,5700,2.98,5732,1.704,5790,3.796,5829,2.812,5889,3.796,5901,2.435,5907,4.362,5969,3.442,5970,5.617,6141,4.362,6179,3.442,6587,3.442,6595,2.812,6703,3.442,6995,4.362,7290,3.603,7418,3.796,7646,4.362,7660,4.362,7697,6.231,7698,3.603,7699,4.038,7700,4.853,7701,4.853,7702,4.853,7703,4.362,7704,4.853,7705,4.038,7706,4.853,7707,4.038,7708,4.853,7709,3.603,7710,4.038,7711,6.068,7712,4.853,7713,4.853,7714,4.853,7715,4.853,7716,4.853,7717,5.617,7718,4.853,7719,6.752,7720,4.853,7721,3.603,7722,4.853,7723,4.853,7724,4.853,7725,3.796,7726,4.853,7727,4.853,7728,4.853,7729,4.853,7730,4.853,7731,4.853,7732,4.853,7733,4.362,7734,4.853,7735,4.853,7736,4.853]],["tags/Flea Market Season",[851,1.398,7737,2.706]],["title/Misconceptions about retro gamers",[4527,1.763,5789,3.161,7738,4.267]],["content/Misconceptions about retro gamers",[0,1.079,5,1.03,6,0.694,10,0.791,13,1.617,14,0.874,17,0.711,19,0.391,27,0.476,47,1.617,50,0.627,51,2.292,52,0.469,60,1.602,79,0.479,98,1.145,101,0.448,113,1.585,116,1.2,121,1.515,144,0.863,150,1.259,154,1.131,158,0.89,165,1.054,180,2.401,182,1.621,184,2.694,203,1.118,206,3.499,241,2.175,251,1.831,275,1.018,276,1.984,277,1.388,278,1.337,372,2.103,441,1.158,443,1.515,446,2.426,476,1.422,478,2.004,527,2.827,564,2.292,571,3.258,728,1.914,782,0.938,788,3.064,851,2.301,853,2.76,912,0.823,921,0.905,948,2.474,951,1.259,1198,3.064,1240,2.827,1279,1.475,1289,1.194,1296,1.131,1331,2.426,1369,1.405,1399,2.036,1415,1.805,1555,2.9,1583,1.617,1586,1.596,1589,2.379,1590,2.9,1600,3.704,1608,3.836,1634,2.069,1648,1.639,1666,3.023,1721,1.042,1741,2.426,1742,2.379,1787,2.827,1795,1.805,1946,2.9,1965,2.398,1969,0.884,1976,2.474,2061,3.499,2079,4.277,2123,2.474,2193,2.827,2358,4.07,2378,1.858,2433,2.365,2454,2.335,2456,3.156,2461,2.9,2531,3.258,2590,3.156,2645,1.596,2661,2.759,2666,2.426,2675,4.02,2710,3.156,3028,4.277,3035,2.335,3036,2.335,3101,3.645,3135,3.372,3189,2.9,4387,4.02,4461,2.036,4462,4.02,4502,3.064,4523,5.494,4526,4.782,4527,3.355,4551,3.816,4559,4.02,4577,4.62,4605,4.02,4794,2.979,5085,2.301,5104,4.62,5174,3.385,5339,4.277,5353,4.277,5357,3.645,5359,2.759,5371,4.277,5475,4.277,5546,3.816,5789,5.814,5864,3.156,5917,2.635,5942,3.156,6151,3.499,6255,4.62,6301,4.02,6352,3.816,6499,4.62,6751,3.499,6784,4.02,7738,5.494,7739,4.62,7740,4.62,7741,4.982,7742,5.141,7743,5.141,7744,5.141,7745,5.214,7746,5.141,7747,4.62,7748,5.141,7749,5.141,7750,5.141,7751,5.141,7752,4.02,7753,5.141,7754,3.816,7755,4.782,7756,5.141,7757,5.141,7758,5.141,7759,5.141,7760,7.025,7761,5.141,7762,4.62,7763,4.277,7764,5.141,7765,4.277,7766,4.277,7767,5.141,7768,3.816,7769,5.141,7770,4.277,7771,5.141,7772,4.62,7773,5.141,7774,5.141,7775,5.141,7776,5.141,7777,4.02,7778,5.141,7779,5.141]],["tags/Misconceptions about retro gamers",[2378,1.038]],["title/Software Engineering Is Not Engineering",[1369,1.491,3241,2.462]],["content/Software Engineering Is Not Engineering",[0,1.078,1,1.352,5,1.028,6,0.693,21,2.6,23,2.135,26,0.883,30,2.095,46,2.1,50,0.975,52,0.468,60,1.6,65,1.513,70,1.659,74,0.947,76,1.335,79,0.479,88,2.871,94,1.213,119,3.059,123,2.47,131,1.342,159,1.573,175,1.42,185,1.456,188,2.736,196,2.068,208,2.289,216,0.893,223,1.198,240,1.065,252,3.326,263,0.842,266,2.289,275,1.016,365,3.403,367,1.94,376,3.253,378,1.563,384,2.214,402,6.746,404,1.143,409,1.966,412,1.532,422,1.829,441,1.157,443,1.513,486,2.823,517,1.439,646,3.494,698,1.883,722,1.97,782,1.568,897,2.15,921,0.904,998,2.631,1002,3.059,1003,3.68,1061,3.64,1247,4.613,1256,2.896,1283,0.841,1286,2.691,1289,0.872,1290,5.079,1335,1.911,1369,1.918,1426,1.532,1488,2.033,1541,1.636,1583,1.615,1592,3.86,1599,4.615,1677,2.376,1688,3.152,1742,3.248,1763,2.135,1776,5.278,1790,4.066,1852,2.823,1876,2.289,1898,4.066,1933,2.755,1941,3.86,1945,2.584,1969,0.883,2062,2.135,2065,3.64,2139,2.631,2144,2.896,2183,2.331,2193,2.823,2275,3.494,2314,2.631,2319,2.823,2434,2.331,2457,4.515,2460,3.152,2466,4.27,2483,2.755,2488,4.603,2490,3.152,2515,6.096,2556,4.27,2558,2.736,2641,3.059,2952,2.974,2959,3.059,3015,4.27,3122,2.974,3140,3.059,3200,4.27,3241,2.692,3243,3.494,3254,2.331,3315,3.81,3319,2.631,3519,2.001,3523,3.367,4323,3.81,4396,2.289,4399,3.253,4430,5.209,4679,4.27,4700,3.81,4716,3.81,4763,4.613,4780,4.613,4944,4.603,4948,3.367,5357,3.64,5473,2.755,5574,4.014,5747,3.64,5821,4.27,5826,3.152,6131,3.494,6151,3.494,6588,4.182,6633,4.014,6635,4.613,6658,3.81,7077,3.81,7324,4.613,7402,5.838,7588,4.613,7780,5.133,7781,5.133,7782,5.133,7783,7.018,7784,5.133,7785,5.133,7786,5.133,7787,4.27,7788,5.133,7789,5.133,7790,7.018,7791,6.307,7792,4.613,7793,5.133,7794,5.133,7795,5.133,7796,5.133,7797,5.133,7798,4.613,7799,5.133,7800,5.133,7801,5.133,7802,5.133,7803,5.133,7804,7.018,7805,5.133,7806,5.133,7807,5.133,7808,5.133,7809,5.133,7810,5.133,7811,4.27,7812,5.133,7813,5.133]],["tags/Software Engineering Is Not Engineering",[]],["title/The Pilot Capless: a stellar stealth pen",[460,2.076,2734,3.44,6392,3.953,7814,3.953,7815,3.953]],["content/The Pilot Capless: a stellar stealth pen",[3,2.004,6,0.906,10,0.756,14,1.313,17,0.666,24,1.314,26,0.827,27,0.621,36,2.146,40,2.364,47,1.514,48,2.979,49,2.788,50,0.586,52,0.439,59,1.514,60,1.53,67,1.69,73,0.752,74,0.888,75,1.513,79,0.527,81,1.598,88,1.969,89,1.792,99,1.365,100,2.414,101,0.585,113,0.953,116,1.124,121,1.418,131,0.92,138,2.414,144,0.808,148,1.514,150,1.178,154,1.059,155,3.156,157,1.178,158,0.61,159,1.475,160,2.108,181,3.156,213,2.467,216,1.168,217,1.151,230,2.271,263,1.101,275,0.953,278,1.252,293,0.987,311,1.475,315,0.964,317,1.62,318,2.94,320,1.332,363,3.691,366,2.467,367,1.819,384,1.084,399,2.788,412,1.437,426,2.583,446,2.271,452,1.74,457,1.348,460,4.814,465,2.922,481,2.583,486,3.691,517,1.377,621,1.365,630,1.332,851,1.576,912,0.77,921,1.182,929,1.418,942,2.583,955,4.003,978,1.714,1088,2.647,1236,2.316,1238,3.412,1283,0.706,1289,1.313,1291,1.252,1310,3.763,1320,2.955,1327,1.514,1354,2.414,1382,2.036,1399,1.906,1426,1.437,1431,3.691,1533,2.227,1534,2.316,1541,1.534,1617,2.001,1631,1.819,1648,1.534,1662,3.167,1666,2.071,1668,4.569,1687,0.987,1721,0.975,1764,1.059,1785,1.514,1794,1.937,1795,1.69,1796,2.071,1827,2.788,1945,1.555,1977,2.955,1986,2.227,1995,2.647,2004,2.715,2034,2.036,2078,2.715,2086,2.868,2254,2.108,2296,2.788,2303,2.414,2348,2.788,2361,3.156,2374,2.036,2407,2.583,2415,3.167,2433,2.602,2460,2.955,2468,3.05,2501,3.276,2617,2.788,2624,3.276,2686,2.868,2687,2.647,2694,2.523,2698,3.276,2705,4.121,2708,7.125,2717,2.993,2726,7.317,2727,4.984,2734,7.125,2756,2.071,2773,3.763,2775,2.036,2805,1.69,2853,2.414,2907,3.05,2957,3.156,2986,2.467,3004,1.969,3036,2.186,3087,3.412,3128,3.276,3318,4.003,3556,3.412,3908,2.647,4098,2.316,4320,3.156,4436,3.572,4931,3.276,4942,3.763,5085,1.576,5192,3.156,5195,2.523,5283,2.186,5346,3.763,5376,2.523,5467,4.003,5485,3.156,5542,2.583,5747,3.412,5754,4.003,5905,2.955,6232,4.003,6320,2.647,6408,3.763,6508,4.003,6684,3.412,6933,3.05,7288,4.324,7302,4.003,7488,6.032,7752,3.763,7814,6.946,7815,4.324,7816,4.812,7817,4.812,7818,4.324,7819,4.812,7820,4.324,7821,4.324,7822,4.812,7823,4.812,7824,4.812,7825,4.324,7826,4.003,7827,4.812,7828,4.324,7829,6.712,7830,4.812,7831,4.812,7832,4.812,7833,3.572,7834,3.572,7835,4.812,7836,3.763,7837,4.812,7838,5.584,7839,4.812,7840,4.324,7841,4.812,7842,3.763,7843,4.812,7844,4.812,7845,4.324,7846,4.812,7847,4.812,7848,4.812,7849,4.324,7850,4.812,7851,4.812,7852,3.763,7853,3.572,7854,4.812,7855,4.324,7856,4.812,7857,4.324,7858,4.812,7859,4.812,7860,6.032,7861,4.812,7862,4.812]],["tags/The Pilot Capless: a stellar stealth pen",[2784,4.734]],["title/Why I like Pawn Stars",[2892,4.067,7717,5.159]],["content/Why I like Pawn Stars",[10,0.555,13,2.657,17,1.169,19,0.356,20,1.362,24,1.335,25,1.346,26,0.847,27,0.456,29,1.397,30,1.47,41,2.582,50,1.081,62,2.419,65,1.451,69,1.92,73,1.223,79,0.336,87,1.742,89,1.834,90,2.323,97,2.323,98,1.096,99,2.22,104,0.979,112,3.121,121,1.451,122,2.323,131,0.941,142,2.323,159,1.509,175,1.362,179,0.919,180,2.365,203,1.071,211,2.924,219,1.613,231,2.934,240,1.022,255,3.661,263,0.807,275,0.975,287,2.778,315,0.986,316,2.582,318,2.157,347,2.934,378,1.096,435,2.119,438,2.934,441,1.109,442,2.279,443,1.451,450,2.236,460,2.323,465,1.861,466,4.096,473,2.323,627,1.834,698,1.806,782,1.427,851,2.563,853,2.718,854,2.236,877,1.433,924,2.524,930,3.23,978,1.754,1031,2.323,1069,1.451,1264,4.096,1274,1.489,1283,0.823,1292,1.95,1296,1.501,1487,2.119,1508,3.023,1537,2.014,1589,3.156,1634,1.982,1657,1.509,1658,2.47,1660,2.853,1663,1.549,1677,2.279,1718,4.533,1725,1.754,1778,2.014,1785,1.549,1790,3.952,1854,3.23,1929,5.334,1969,0.847,2001,3.23,2006,2.914,2053,2.47,2086,2.934,2115,2.279,2306,2.279,2374,2.083,2378,1.244,2433,2.296,2475,1.834,2490,3.023,2533,2.853,2550,3.851,2571,4.425,2582,2.708,2605,2.279,2661,4.2,2704,3.023,2705,3.023,2719,5.062,2768,3.851,2788,4.473,2854,2.708,2892,5.132,2896,4.096,2899,4.096,2902,3.851,2957,4.473,2998,2.47,3004,2.014,3035,3.554,3099,3.655,3186,3.023,3537,2.853,3839,3.23,3905,4.323,3927,3.352,4457,3.23,4527,2.204,4626,3.655,4694,3.492,5109,2.47,5145,3.23,5408,3.492,5704,3.121,5789,2.853,5855,3.121,5869,3.23,5935,4.425,6129,3.492,6179,3.492,6472,3.492,6479,3.851,6751,3.352,6825,4.096,6884,4.643,6909,3.352,7418,3.851,7511,3.851,7543,4.425,7546,3.655,7547,4.425,7697,3.655,7698,3.655,7717,6.509,7725,3.851,7825,4.425,7853,3.655,7863,4.924,7864,4.924,7865,4.425,7866,4.425,7867,7.824,7868,4.924,7869,4.924,7870,4.924,7871,4.924,7872,4.924,7873,4.924,7874,4.924,7875,4.425,7876,4.924,7877,6.129,7878,4.924,7879,4.924,7880,4.924,7881,4.924,7882,3.23,7883,4.924,7884,4.425,7885,4.425,7886,4.924,7887,4.924,7888,4.924,7889,4.924,7890,4.924,7891,4.425,7892,4.425,7893,4.096,7894,4.924,7895,4.425,7896,6.129,7897,5.062,7898,4.924,7899,4.924,7900,4.924,7901,4.924,7902,4.425,7903,4.425,7904,4.425,7905,4.924,7906,4.924,7907,4.924,7908,4.425,7909,4.924,7910,4.425,7911,6.82,7912,4.924,7913,4.924,7914,4.924,7915,3.851,7916,4.924,7917,4.425,7918,4.924,7919,4.924,7920,4.924,7921,4.096,7922,4.924,7923,4.924]],["tags/Why I like Pawn Stars",[]],["title/YouTube Play Image Links in Hugo",[1020,1.59,2123,2.117,2409,1.962,2645,1.366,5250,2.482]],["content/YouTube Play Image Links in Hugo",[4,2.265,17,0.703,19,0.421,22,0.971,27,0.47,29,1.977,30,1.516,37,2.865,46,2.85,50,0.619,51,2.265,52,0.78,73,0.794,81,1.686,101,0.607,107,3.027,116,1.186,119,4.152,131,0.971,132,1.478,154,1.118,156,1.748,158,0.883,167,2.76,175,1.405,180,1.354,199,1.641,201,3.027,202,3.457,203,1.105,216,0.884,219,1.664,235,3.118,240,1.054,263,0.833,282,1.619,288,1.172,293,1.042,297,1.556,311,1.556,366,2.604,367,1.92,372,2.078,384,1.144,404,1.131,457,1.423,459,2.444,473,2.396,516,3.457,517,1.042,569,4.278,596,2.447,621,1.441,622,3.495,628,2.148,700,4.077,711,2.604,722,1.95,728,1.891,782,1.271,851,1.664,897,1.556,910,2.793,912,0.813,947,2.865,978,1.809,1020,1.836,1045,2.663,1088,4.374,1114,4.225,1194,4.743,1198,4.152,1279,1.066,1283,0.837,1295,4.152,1300,2.307,1319,2.078,1327,1.598,1346,1.577,1374,4.225,1380,3.602,1393,4.707,1415,1.784,1451,2.663,1462,2.943,1487,2.186,1533,2.351,1583,1.598,1586,1.577,1606,3.572,1611,3.164,1648,1.619,1651,3.118,1657,1.556,1662,2.396,1677,2.351,1741,2.396,1750,3.972,1763,2.112,1777,2.148,1791,2.793,1811,2.444,1938,2.548,1939,2.865,1945,1.641,1950,1.92,1995,2.793,2051,3.331,2063,2.012,2118,2.943,2123,2.444,2130,4.564,2135,3.219,2186,3.027,2190,4.225,2219,3.602,2230,2.396,2295,3.457,2299,2.865,2388,2.943,2409,3.816,2415,2.396,2645,2.469,2666,2.396,2791,3.457,3036,2.307,3077,4.073,3234,4.564,3239,3.972,3499,4.225,4429,3.457,4461,2.76,4527,1.641,4644,3.027,4753,3.118,4756,2.444,4785,4.152,5119,3.364,5157,4.225,5250,5.45,5257,6.22,5265,7.691,5282,2.793,5283,2.307,5297,3.457,5407,3.331,5587,3.77,5589,5.903,5632,3.602,5741,3.972,5789,2.943,6013,3.457,6376,4.743,6459,4.225,6568,4.564,6802,3.602,6844,4.57,6898,3.027,6951,4.225,6984,6.261,7212,2.495,7787,4.225,7924,5.079,7925,5.079,7926,5.079,7927,5.079,7928,5.079,7929,5.079,7930,5.079,7931,5.079,7932,5.079,7933,5.079,7934,5.079,7935,5.079,7936,4.564,7937,4.564,7938,5.079,7939,5.079,7940,5.079,7941,6.967,7942,5.079,7943,5.079,7944,4.564,7945,5.079,7946,5.079,7947,5.079,7948,5.079,7949,5.079,7950,5.079,7951,5.079,7952,5.079,7953,5.079,7954,5.079,7955,5.079,7956,3.972,7957,3.457,7958,7.147,7959,5.079,7960,4.225,7961,5.079,7962,5.079,7963,5.079,7964,5.079,7965,5.079]],["tags/YouTube Play Image Links in Hugo",[2409,2.538]],["title/Apple's App Store Design Mistake",[1276,1.638,1945,1.421,1993,2.306,2467,2.419,7966,4.399]],["content/Apple's App Store Design Mistake",[7,3.079,13,1.577,14,1.173,19,0.314,26,1.187,27,0.731,28,0.893,29,1.959,30,1.496,40,3.391,50,0.611,59,1.577,62,3.391,64,2.827,70,1.619,74,0.925,78,3.411,79,0.539,85,1.598,87,1.537,98,1.116,101,0.602,113,0.992,121,1.477,131,0.958,132,1.458,144,0.842,154,1.103,158,0.635,160,2.195,165,1.028,167,1.985,175,2.47,180,1.336,182,1.156,199,1.619,216,0.872,219,1.641,223,1.17,233,2.195,251,1.785,263,1.295,275,0.992,279,2.157,311,1.536,315,1.383,317,2.324,370,4,375,1.105,378,1.759,384,1.129,388,1.619,403,3.522,431,2.756,442,2.319,443,1.477,446,2.365,450,2.276,465,1.894,471,2.628,487,1.687,517,1.028,596,1.76,627,1.866,630,1.387,722,1.924,912,1.105,926,2.569,940,4.528,942,2.69,951,1.227,958,2.69,978,1.785,985,2.355,1018,3.554,1069,2.035,1088,2.756,1160,3.287,1215,3.287,1234,2.569,1267,3.391,1276,2.941,1283,0.527,1317,3.576,1321,4.528,1327,1.577,1331,2.365,1335,1.866,1339,2.143,1348,2.12,1399,1.985,1401,3.078,1415,1.76,1465,2.756,1481,4.114,1487,2.157,1501,1.711,1504,2.987,1537,2.05,1557,1.76,1606,4.937,1612,2.514,1659,2.12,1680,2.412,1725,1.785,1794,2.017,1807,3.077,1938,2.514,1945,2.552,1969,1.187,1993,4.462,2031,2.987,2043,2.569,2045,5.18,2062,2.084,2077,2.319,2108,2.412,2208,3.919,2296,2.904,2335,2.904,2360,2.904,2410,3.554,2577,3.554,2614,3.919,2719,3.72,2728,2.987,2797,3.287,2853,3.463,2876,2.569,2881,2.05,2893,3.411,2971,3.176,3839,3.287,3857,4.895,4193,4,4338,2.904,4353,3.077,4691,2.628,4776,3.919,5182,3.919,5195,2.628,5288,3.919,5359,2.69,5381,3.411,5401,2.628,5778,4.169,5822,3.411,5965,3.176,6068,6.204,6083,4.699,6415,4.931,6416,3.411,6417,3.554,6436,6.204,6534,4.169,6608,4.503,6618,3.176,6647,3.176,6858,3.919,6978,3.919,7024,4.169,7212,2.462,7293,3.554,7475,3.554,7480,3.72,7540,7.016,7967,5.011,7968,5.011,7969,5.011,7970,4.169,7971,5.011,7972,3.919,7973,5.011,7974,5.011,7975,4.503,7976,5.011,7977,5.011,7978,5.011,7979,8.51,7980,5.011,7981,5.011,7982,5.011,7983,5.011,7984,5.011,7985,5.011,7986,4.503,7987,3.72,7988,5.011,7989,5.011,7990,5.011,7991,5.011,7992,5.011,7993,5.011,7994,5.011,7995,5.011,7996,3.411]],["tags/Apple's App Store Design Mistake",[1945,1.839]],["title/Book Number Fourteen",[65,1.608,797,2.348,7997,4.539]],["content/Book Number Fourteen",[1,1.512,11,1.692,14,1.286,22,1.098,26,0.987,27,0.531,47,1.806,50,1.031,55,2.106,71,4.49,73,1.183,74,1.396,75,1.481,79,0.392,87,1.884,88,2.349,96,2.076,101,0.738,103,1.569,109,1.423,122,2.709,145,2.429,148,1.806,150,1.406,158,0.727,166,3.909,172,3.252,180,1.531,184,1.933,193,2.82,196,1.692,203,1.249,216,0.999,219,1.881,223,1.341,240,1.191,241,2.429,282,1.831,288,1.746,294,2.138,304,2.515,311,1.759,315,1.15,320,1.589,372,2.349,375,0.919,412,1.714,460,3.57,482,3.327,517,1.178,698,2.106,745,3.766,757,2.709,797,4.212,853,1.759,877,1.671,912,0.919,921,1.011,924,2.944,945,2.429,985,2.094,1159,2.311,1279,1.589,1283,0.796,1289,0.976,1292,2.274,1327,1.806,1534,2.763,1541,1.831,1557,2.016,1583,1.806,1657,2.318,1663,2.38,1796,2.471,1944,4.262,1986,2.657,1999,2.82,2010,4.509,2034,3.201,2063,2.274,2109,3.011,2127,3.422,2298,3.011,2361,3.766,2396,3.082,2410,5.365,2421,4.262,2433,2.547,2528,3.967,2610,3.525,2646,4.071,2668,2.657,2681,3.422,2692,4.777,2693,4.49,2695,4.49,2696,3.158,2702,4.777,2705,3.525,2708,4.49,2802,5.16,2805,2.657,2818,2.657,2844,3.909,2904,3.525,3149,3.967,3226,3.909,4370,4.262,4945,3.422,4967,3.766,5716,4.777,5726,3.909,5917,2.944,6103,4.49,6510,5.16,6526,3.639,6774,3.639,6857,3.909,6991,4.49,7231,3.327,7421,4.777,7475,4.071,7562,5.16,7681,3.766,7838,4.777,7997,4.777,7998,5.16,7999,5.16,8000,5.742,8001,5.16,8002,5.742,8003,5.16,8004,5.16,8005,5.742,8006,5.742,8007,5.16,8008,5.742,8009,5.742,8010,5.742,8011,5.742,8012,5.742,8013,5.742,8014,5.742,8015,5.16,8016,5.742,8017,5.742,8018,5.742,8019,5.16,8020,5.742,8021,7.04,8022,5.742,8023,5.742,8024,5.742,8025,4.49,8026,4.262,8027,5.16,8028,5.742,8029,5.742]],["tags/Book Number Fourteen",[172,2.057]],["title/Double-dipping and Market Prices",[2605,2.254,2756,2.096,5375,2.903,6991,3.809]],["content/Double-dipping and Market Prices",[3,1.451,5,0.974,6,0.656,14,0.826,17,1.075,19,0.307,20,2.15,25,1.328,27,0.45,36,2.167,39,2.129,50,0.592,52,0.443,73,0.76,76,1.264,79,0.53,81,1.614,87,1.082,101,0.732,109,1.205,113,0.962,133,1.866,142,2.293,144,0.816,150,1.19,153,1.659,156,1.219,157,1.655,158,0.856,159,1.489,167,1.925,182,1.121,185,1.379,201,2.897,217,1.162,219,2.214,223,1.135,240,1.403,258,3.014,263,0.797,276,1.926,277,1.824,314,2.897,315,1.557,321,1.757,367,1.837,384,1.523,441,1.095,442,2.249,443,1.992,467,2.897,484,2.022,567,5.006,586,2.092,628,2.056,762,3.447,877,1.414,911,2.816,921,1.19,934,2.909,1009,3.081,1020,1.757,1044,2.293,1066,3.253,1229,1.81,1278,1.571,1283,0.511,1289,0.826,1291,1.264,1296,1.487,1339,1.509,1369,1.328,1413,3.608,1420,2.893,1451,2.549,1480,6.569,1505,2.549,1557,1.707,1608,2.167,1645,2.438,1676,2.984,1677,3.128,1764,1.07,1778,1.988,1785,1.529,1795,2.374,1947,3.465,1965,1.659,1969,1.336,1986,3.128,2061,4.601,2070,2.492,2108,2.339,2118,2.816,2289,1.783,2344,2.984,2374,2.056,2378,1.853,2427,3.188,2432,5.286,2433,1.636,2454,2.208,2488,3.188,2540,3.916,2590,2.984,2605,2.249,2645,1.509,2660,2.492,2666,2.293,2677,3.801,2684,2.609,2685,4.043,2700,2.339,2710,2.984,2756,3.344,2779,3.309,2788,3.188,2874,3.081,2894,2.984,2938,3.447,2984,5.286,3189,3.813,3226,3.309,3233,3.188,3264,2.549,3523,3.188,3524,2.673,3527,3.309,4417,2.492,4502,5.446,4523,3.801,4526,4.601,4527,2.511,4752,4.043,4768,2.609,4787,3.608,4794,3.916,5110,2.438,5174,3.287,5195,2.549,5341,3.447,5367,2.673,5375,4.028,5518,2.897,5623,3.309,5700,2.984,5704,3.081,5829,2.816,5864,4.15,5983,2.984,6190,2.816,6295,4.043,6330,4.043,6348,3.801,6367,4.368,6772,3.801,6774,3.081,6991,5.286,7084,3.309,7263,4.368,7350,4.043,7682,5.017,7725,3.801,7741,3.447,7768,7.297,7826,4.043,7865,4.368,7944,4.368,8030,4.86,8031,4.86,8032,3.608,8033,4.86,8034,4.86,8035,4.86,8036,3.447,8037,4.86,8038,3.608,8039,3.447,8040,4.86,8041,4.86,8042,4.86,8043,9.138,8044,4.86,8045,4.368,8046,4.043,8047,4.368,8048,3.801,8049,3.447,8050,4.86,8051,4.86,8052,4.368,8053,4.86,8054,4.86,8055,4.86,8056,4.368,8057,4.86,8058,4.86,8059,4.368,8060,5.623,8061,4.86,8062,4.86,8063,4.86,8064,4.86,8065,4.86,8066,4.86,8067,4.86,8068,4.368,8069,4.86,8070,4.368,8071,4.368]],["tags/Double-dipping and Market Prices",[851,1.864]],["title/The Fridge, Your Inoculation Room",[287,3.078,7897,4.05,8072,4.903]],["content/The Fridge, Your Inoculation Room",[13,1.531,19,0.221,22,0.93,25,1.33,27,0.45,28,0.867,30,1.453,41,2.552,47,2.128,59,1.531,60,1.543,70,2.186,76,1.266,79,0.573,86,2.446,101,0.424,103,1.33,104,0.699,131,0.93,132,2.446,138,2.442,152,2.442,154,1.071,159,2.073,165,0.998,182,1.123,199,2.186,200,2.723,208,2.17,209,2.746,211,1.685,216,0.847,219,1.594,223,1.136,237,4.438,240,1.01,249,3.313,257,2.989,263,1.109,270,5.101,276,1.206,278,2.023,279,2.095,287,4.983,288,1.561,294,1.812,311,1.491,317,1.639,320,1.347,384,1.097,387,4.049,402,3.452,404,1.084,408,2.746,412,1.453,441,1.097,450,3.073,452,1.76,455,1.662,457,1.364,472,3.277,476,1.347,479,4.288,606,2.17,622,2.442,698,1.786,713,2.82,723,2.912,782,0.888,881,3.347,903,2.768,904,4.606,909,2.024,910,3.721,915,4.277,934,2.095,941,3.313,943,7.606,964,2.17,970,2.989,978,1.734,983,2.253,985,1.347,987,2.552,990,6.08,997,5.291,1229,1.812,1237,1.898,1278,1.573,1283,0.512,1291,1.266,1303,2.442,1422,2.68,1465,2.677,1471,3.193,1483,3.807,1577,2.211,1586,1.511,1592,2.677,1617,2.024,1633,2.17,1655,1.991,1687,0.998,1714,2.989,1719,3.131,1754,5.513,1759,3.452,1763,2.024,1784,3.631,1876,2.17,1892,3.313,1939,2.746,1965,1.662,1973,2.901,1975,3.313,2028,1.812,2105,2.677,2275,3.313,2298,2.552,2333,2.746,2338,2.442,2344,2.989,2400,2.989,2464,3.193,2540,3.92,2582,2.677,2590,2.989,2615,5.291,2686,2.901,2687,2.677,2818,2.253,2827,3.193,2890,3.807,2909,3.193,2970,4.049,3044,2.82,3099,5.772,3186,4.775,3233,3.193,3454,2.297,3492,3.613,3497,4.438,3634,3.085,3710,3.452,4193,2.82,4385,4.374,4410,3.313,5191,3.613,5192,3.193,5276,4.374,5401,4.631,5732,1.709,5826,2.989,5860,5.291,5901,2.442,5983,2.989,5993,3.613,6104,3.452,6115,3.807,6122,3.085,6128,4.049,6134,4.049,6206,2.901,6210,8.266,6488,4.374,6554,3.613,7897,6.556,7960,5.628,8073,4.867,8074,4.867,8075,4.867,8076,4.867,8077,4.374,8078,4.867,8079,4.867,8080,4.867,8081,4.867,8082,7.776,8083,8.832,8084,4.867,8085,6.766,8086,4.867,8087,4.374,8088,6.766,8089,3.193,8090,4.867,8091,4.049,8092,4.867,8093,4.867,8094,4.374,8095,4.374,8096,3.807,8097,4.867,8098,4.867,8099,6.08,8100,6.766,8101,4.867,8102,4.867,8103,4.867,8104,4.867,8105,4.867,8106,4.867,8107,4.374,8108,3.807,8109,4.867,8110,4.867,8111,4.867,8112,4.867,8113,4.867,8114,4.867,8115,4.867,8116,4.867]],["tags/The Fridge, Your Inoculation Room",[139,2.473,915,2.348]],["title/How Much Should I Spend On Magic The Gathering",[263,0.799,995,2.554,2125,2.344,2315,3.195]],["content/How Much Should I Spend On Magic The Gathering",[0,1.048,5,1.379,6,1.063,10,0.562,17,0.69,19,0.227,24,0.976,27,0.637,28,0.889,30,2.055,47,2.165,59,1.57,69,1.945,73,0.78,75,0.976,79,0.644,81,1.657,83,1.634,91,1.778,94,1.626,98,1.533,101,0.687,102,2.558,103,1.363,116,1.165,124,2.815,142,2.354,154,1.098,158,0.632,175,1.381,176,2.815,179,1.285,180,1.33,188,1.945,189,2.815,194,3.703,200,2.008,211,1.727,216,0.868,223,1.165,228,4.151,231,2.973,233,2.185,263,1.129,294,1.858,304,3.014,308,3.162,315,1.379,409,1.398,422,1.778,430,1.452,441,1.124,442,2.309,443,1.471,450,2.266,479,3.162,542,2.891,586,2.147,698,1.83,724,2.137,728,1.858,782,1.255,851,1.634,853,1.529,854,2.266,912,0.799,919,1.727,921,0.878,953,4.151,993,2.451,995,2.616,1276,1.858,1279,1.048,1283,0.724,1289,1.17,1296,1.098,1307,2.451,1334,2.185,1364,4.514,1399,2.726,1426,1.49,1512,2.451,1533,2.309,1537,2.041,1542,3.396,1583,1.57,1676,4.226,1715,2.266,1741,2.354,1777,2.111,1796,2.147,1933,2.678,2011,2.973,2024,3.694,2115,2.309,2125,4.088,2165,2.962,2172,3.272,2183,2.266,2285,3.902,2297,2.616,2346,2.558,2347,2.815,2360,2.891,2376,2.678,2378,1.549,2392,2.678,2415,2.354,2450,3.538,2528,2.616,2616,3.703,2645,2.637,2659,4.151,2660,2.558,2686,2.973,2710,3.063,2714,2.503,2756,3.655,2798,4.358,2945,2.616,2967,3.272,2976,3.272,2996,2.503,3004,2.041,3100,4.484,3202,3.396,3215,4.151,3218,5.382,3224,2.616,3225,2.558,3236,2.401,3248,3.902,3271,3.063,3435,3.538,3937,3.063,4098,2.401,4326,4.151,4417,2.558,4445,5.382,4472,4.484,4681,3.538,4694,3.538,4745,3.272,4753,3.063,4801,2.503,4965,3.703,5103,2.891,5174,3.333,5191,3.703,5318,3.396,5965,3.162,6074,2.815,6075,3.703,6177,3.902,6246,3.703,6271,4.102,6542,4.88,6634,4.484,6647,3.162,6674,6.185,6676,3.396,6857,3.396,7014,3.703,7037,4.151,7231,2.891,7496,3.902,8036,3.538,8117,9.213,8118,4.989,8119,4.989,8120,7.879,8121,4.484,8122,4.989,8123,7.384,8124,4.989,8125,4.484,8126,3.902,8127,4.989,8128,4.989,8129,4.484,8130,4.989,8131,4.989,8132,4.989,8133,4.989,8134,4.989,8135,4.989,8136,4.989,8137,4.989,8138,4.989,8139,3.703,8140,4.151,8141,4.989,8142,3.902,8143,4.989,8144,4.484,8145,4.989,8146,4.989,8147,4.989,8148,4.989,8149,4.989,8150,4.989,8151,4.989,8152,4.484,8153,4.989,8154,4.989,8155,4.989]],["tags/How Much Should I Spend On Magic The Gathering",[2125,2.055,2378,0.779]],["title/On Tea Prices",[254,4.397,2756,2.669]],["content/On Tea Prices",[3,1.451,6,0.656,14,0.826,16,2.609,22,0.929,24,1.323,28,0.866,30,1.451,60,1.108,73,1.056,79,0.331,84,2.438,94,1.836,95,3.189,98,1.082,101,0.677,104,0.698,109,1.205,116,1.135,132,1.414,140,3.309,144,0.816,153,1.659,158,0.856,159,2.071,165,0.997,175,1.345,179,1.262,180,1.296,193,3.32,194,5.017,210,2.249,216,0.846,219,1.592,240,1.009,241,2.056,253,2.056,254,7.313,255,2.609,263,0.797,276,1.205,277,1.312,295,4.306,297,1.489,361,1.683,363,2.673,365,1.837,403,3.014,409,1.362,441,1.095,452,1.757,476,1.345,484,2.022,486,2.673,630,1.345,648,3.309,757,2.293,782,0.887,786,4.028,805,6.234,934,2.909,937,2.742,958,4.171,999,4.043,1000,3.447,1062,1.956,1069,1.433,1090,3.608,1146,1.592,1276,1.81,1279,1.02,1283,0.884,1291,1.264,1648,1.55,1659,2.056,1687,1.594,1741,2.293,1778,1.988,1819,6.552,1958,3.309,1962,1.783,1969,0.836,2282,4.428,2296,2.816,2329,4.043,2333,2.742,2339,2.339,2346,2.492,2374,2.056,2392,3.628,2483,2.609,2536,2.742,2543,3.309,2582,2.673,2600,2.897,2605,2.249,2624,3.309,2642,1.895,2687,4.274,2691,2.056,2694,2.549,2714,3.898,2756,2.092,2824,3.801,2855,3.801,2862,4.043,2874,4.284,2876,2.492,2907,3.081,3007,4.433,3023,3.081,3050,2.897,3078,3.801,3186,4.15,3189,2.742,3271,2.984,3314,7.548,3550,5.51,3834,3.801,3908,2.673,4049,6.077,4050,5.286,4193,2.816,4461,2.677,4627,4.368,5020,4.043,5100,4.368,5128,2.984,5142,3.801,5368,3.309,5401,3.544,5726,3.309,6174,4.793,6355,3.801,6601,4.368,6662,3.608,6790,3.801,7106,4.368,7521,4.043,7698,5.017,7754,3.608,7836,3.801,7882,3.188,8096,3.801,8140,4.043,8156,4.86,8157,7.77,8158,4.86,8159,4.043,8160,5.623,8161,4.86,8162,4.86,8163,4.86,8164,4.86,8165,4.86,8166,4.86,8167,4.86,8168,4.86,8169,4.86,8170,4.86,8171,4.86,8172,4.86,8173,4.86,8174,4.86,8175,4.86,8176,4.86,8177,4.86,8178,4.86,8179,4.368,8180,4.368,8181,4.043,8182,4.86,8183,4.368,8184,4.86,8185,4.368,8186,3.608,8187,3.801,8188,8.399,8189,8.399,8190,4.86,8191,3.081,8192,7.77,8193,8.399,8194,4.86,8195,6.759,8196,6.759,8197,6.759,8198,4.86,8199,4.86,8200,4.86,8201,4.86,8202,4.86,8203,4.86,8204,4.86,8205,4.86,8206,6.759,8207,6.074,8208,4.86,8209,4.86,8210,4.86,8211,6.759,8212,6.759,8213,4.86,8214,4.86,8215,4.86,8216,4.86,8217,4.86]],["tags/On Tea Prices",[254,4.035]],["title/Reducing Workflow Load Facilitates Writing",[75,0.861,1234,2.255,1972,2.255,5229,3.265,6802,3.119]],["content/Reducing Workflow Load Facilitates Writing",[0,1.625,3,1.441,5,1.347,6,0.651,14,0.82,17,1.071,19,0.49,26,0.83,27,0.447,28,0.86,29,1.369,48,1.719,50,0.943,52,0.613,56,3.285,67,1.695,73,1.21,75,1.515,79,0.459,80,2.654,85,2.144,86,1.744,87,1.075,99,1.369,101,0.421,116,1.127,132,1.404,144,0.81,148,1.518,154,1.062,156,1.687,157,1.182,158,0.611,159,1.479,165,0.99,168,1.113,172,1.744,188,1.881,197,2.722,211,1.671,216,1.347,217,1.154,240,1.396,263,0.791,271,1.744,278,1.255,297,2.061,303,3.582,315,0.967,374,3.582,384,1.087,389,2.876,392,3.237,403,2.152,405,2.963,409,1.884,474,7.525,476,1.335,481,2.59,486,2.654,517,0.99,569,2.963,596,1.695,621,1.369,676,3.165,711,2.474,912,0.773,921,1.184,949,2.474,978,1.719,1020,1.744,1267,2.37,1274,1.46,1289,0.82,1303,2.421,1325,2.796,1333,1.942,1430,2.37,1476,2.963,1505,2.53,1517,2.421,1541,1.539,1648,2.144,1657,1.479,1658,2.421,1663,1.518,1671,2.007,1678,2.007,1680,2.323,1687,0.99,1718,2.59,1764,1.062,1785,1.518,1872,2.192,1889,2.876,1952,3.237,1972,2.474,1983,1.581,2006,1.797,2028,1.797,2031,2.876,2058,3.582,2063,1.911,2086,2.876,2108,2.323,2123,4.03,2159,2.963,2214,2.722,2289,1.77,2297,2.53,2299,2.722,2306,2.233,2378,1.227,2400,2.963,2431,3.897,2452,2.796,2459,3.285,2469,2.876,2530,2.963,2564,2.722,2665,2.53,2666,2.277,2698,3.285,2712,3.165,2753,2.963,2798,3.542,2876,2.474,2907,3.059,2955,4.015,2986,2.474,3108,3.582,3160,2.963,3174,3.285,3220,2.876,4527,1.559,4714,2.722,5085,1.581,5109,2.421,5174,2.041,5262,5.595,5285,4.337,5297,3.285,5316,5.27,5367,2.654,5565,3.422,5589,4.992,5750,4.129,5855,3.059,5889,5.26,6152,3.582,6286,3.422,6287,4.015,6303,3.774,6376,3.285,6503,4.578,6547,4.263,6933,3.059,7161,5.26,7618,4.015,7852,3.774,7936,4.337,7970,4.015,8032,4.992,8185,4.337,8186,3.582,8218,4.337,8219,4.337,8220,6.725,8221,6.725,8222,4.337,8223,4.826,8224,3.774,8225,4.826,8226,4.826,8227,4.826,8228,4.826,8229,6.725,8230,4.826,8231,4.826,8232,8.805,8233,4.826,8234,6.725,8235,4.826,8236,4.337,8237,4.826,8238,4.826,8239,8.373,8240,4.826,8241,4.826,8242,6.725,8243,6.725,8244,4.826,8245,4.337,8246,4.826,8247,4.826,8248,4.015,8249,3.422,8250,4.826,8251,4.337,8252,3.774,8253,4.826,8254,4.826]],["tags/Reducing Workflow Load Facilitates Writing",[75,0.835,2409,1.904]],["title/Rules of a Creator's Life",[252,2.269,1931,2.232,8255,5.456]],["content/Rules of a Creator's Life",[5,1.17,10,0.862,17,1.059,19,0.348,24,1.143,26,1.004,27,0.541,39,2.558,41,3.062,48,2.081,59,1.837,65,2.255,73,1.334,75,1.143,84,2.93,101,0.744,103,1.596,104,1.385,131,1.117,144,1.433,147,5.426,159,1.79,167,2.313,172,2.111,180,1.557,184,1.966,216,1.331,230,2.756,252,3.549,277,1.576,278,1.519,293,1.198,297,1.79,317,1.966,347,3.481,361,2.649,375,0.935,378,1.301,407,2.471,412,1.744,418,1.994,435,2.514,441,1.316,457,1.636,465,2.208,517,1.198,571,5.409,586,2.514,621,1.657,630,1.616,632,3.212,705,2.081,713,3.384,715,2.994,762,4.142,782,1.557,797,3.293,911,3.384,912,1.225,924,2.994,929,2.255,985,1.616,1044,2.756,1069,2.515,1090,4.335,1206,3.831,1283,0.898,1291,1.519,1488,2.313,1557,2.051,1600,3.541,1658,3.838,1687,1.198,1719,2.703,1872,2.653,1969,1.004,1971,3.384,1986,2.703,1990,3.831,2007,1.966,2254,4.225,2282,2.93,2289,2.807,2302,2.242,2328,4.107,2412,3.586,2452,3.384,2467,3.212,2645,1.813,2668,2.703,2669,3.481,2696,4.208,2717,2.604,2775,2.471,2814,3.702,2986,2.994,3013,3.212,3035,3.475,3071,3.586,3092,5.249,3129,3.976,3218,4.568,3319,2.994,3519,2.277,3937,3.586,4442,6.674,4756,2.811,4947,4.568,5110,2.93,5119,2.471,5400,5.426,5732,2.687,6188,4.859,6465,5.209,6466,5.249,6475,4.859,6603,4.859,7212,2.869,8187,4.568,8256,5.84,8257,5.249,8258,5.84,8259,5.84,8260,3.976,8261,7.652,8262,5.84,8263,5.84,8264,5.84,8265,4.335,8266,5.84,8267,5.84,8268,5.84,8269,7.652,8270,5.84]],["tags/Rules of a Creator's Life",[2254,2.492]],["title/The Decline of Battery Life",[1931,2.232,2648,3.35,8271,5.456]],["content/The Decline of Battery Life",[0,1.439,1,1.306,5,1.373,6,0.669,10,0.559,13,2.156,17,1.087,18,2.245,19,0.225,25,1.355,27,0.459,28,0.884,52,0.452,73,1.071,75,0.971,79,0.338,83,1.625,84,2.488,95,2.34,101,0.739,113,0.982,116,1.158,122,2.34,144,1.151,158,0.868,167,1.965,179,0.926,182,1.582,185,1.407,200,2.759,203,1.079,214,3.376,216,0.863,263,0.813,271,1.793,276,1.229,288,1.144,291,1.965,304,2.172,314,2.956,317,2.308,375,0.794,378,1.104,398,3.045,430,2.466,443,2.02,487,1.67,506,2.728,648,3.376,698,1.82,723,2.135,724,2.128,782,1.25,797,2.95,853,1.52,912,1.097,932,2.804,978,1.767,983,4.116,985,2.173,1062,1.996,1193,2.478,1229,1.847,1234,2.543,1237,1.934,1278,2.215,1283,0.522,1296,1.092,1303,2.488,1327,1.56,1339,1.54,1364,3.253,1382,2.098,1399,1.965,1403,2.95,1426,1.481,1488,1.965,1552,2.543,1555,2.798,1578,4.32,1582,2.759,1613,2.488,1645,2.488,1648,2.185,1657,1.52,1718,2.662,1744,2.387,1764,1.729,1785,1.56,1787,2.728,1796,2.95,1889,2.956,1931,3.856,1945,1.603,1952,2.387,1969,1.351,2010,2.956,2052,2.601,2063,1.965,2066,3.879,2301,2.662,2333,4.431,2341,2.488,2378,1.622,2380,4.126,2399,4.126,2413,3.172,2454,3.568,2576,2.098,2642,2.672,2645,1.54,2647,4.457,2648,6.174,2649,3.879,2652,5.702,2727,2.956,2949,2.662,2968,3.376,2969,2.296,3036,2.253,3077,2.253,3224,2.601,3319,2.543,3539,2.798,3848,3.376,3908,2.728,4419,2.874,4422,3.144,4465,3.682,4541,3.879,4549,2.601,4552,2.956,4582,4.126,4756,2.387,5110,3.439,5131,2.798,5250,2.798,5283,3.113,5477,3.045,5561,3.682,5636,3.517,5657,2.728,5760,3.682,5789,2.874,5833,5.049,5872,4.457,6115,3.879,6120,4.457,6144,4.126,6290,3.879,6360,4.457,6376,3.376,6473,4.126,6544,4.126,6653,4.457,6676,3.376,6690,4.126,6703,4.861,6857,3.376,6990,3.682,7022,4.209,7026,4.457,7119,3.045,7745,5.83,8060,5.702,8207,4.457,8272,4.126,8273,4.96,8274,4.96,8275,4.457,8276,4.457,8277,4.96,8278,4.457,8279,4.457,8280,4.96,8281,4.96,8282,4.96,8283,4.96,8284,4.96,8285,4.457,8286,4.96,8287,4.96,8288,4.96,8289,4.96,8290,4.96,8291,4.96,8292,4.96,8293,4.96,8294,4.96,8295,4.96,8296,3.682,8297,4.96,8298,4.96,8299,3.879,8300,4.96,8301,4.96,8302,4.96,8303,4.457,8304,4.96,8305,4.96,8306,3.879,8307,3.376,8308,4.96,8309,4.96,8310,4.96,8311,4.96]],["tags/The Decline of Battery Life",[4768,3.054]],["title/Water Levels As Public Data",[491,2.172,580,2.212,1346,1.512,6206,2.903]],["content/Water Levels As Public Data",[4,2.189,5,0.984,6,0.663,17,0.942,18,2.229,19,0.223,21,1.485,26,1.343,27,0.781,42,1.524,43,3.644,50,0.83,52,0.621,53,2.845,60,1.781,74,0.906,76,1.277,79,0.464,90,2.317,95,2.317,101,0.681,109,1.217,116,1.146,149,1.676,158,0.99,176,2.77,182,1.133,185,1.393,192,5.799,199,1.586,200,1.976,230,2.317,271,1.775,276,1.217,277,1.837,295,2.517,296,5.982,304,2.15,309,2.291,320,1.359,322,2.926,326,2.412,361,1.7,403,2.189,422,2.425,430,1.981,450,2.23,491,3.762,517,1.602,566,2.23,580,2.23,723,2.113,724,1.524,782,1.241,908,2.534,912,0.786,945,2.077,946,4.056,951,1.667,987,2.574,1045,2.574,1146,1.608,1260,1.447,1289,0.834,1346,2.425,1415,1.724,1422,1.945,1425,3.15,1426,1.466,1517,2.463,1557,1.724,1567,6.262,1609,3.015,1613,2.463,1614,3.196,1634,1.976,1677,2.272,1718,2.635,1721,0.995,1755,2.7,1777,2.077,1799,2.77,1937,3.84,1965,1.676,1995,2.7,2024,2.635,2063,1.945,2105,2.7,2117,4.179,2149,2.113,2262,4.412,2298,2.574,2339,2.363,2380,5.662,2392,2.635,2538,4.827,2582,3.743,2642,1.914,2654,5.323,2666,2.317,2691,2.077,2734,3.84,2760,3.743,2897,3.84,2927,3.112,3010,4.084,3101,3.482,3149,2.574,3186,3.015,3230,3.84,3264,2.574,3322,4.084,3515,3.644,4381,3.84,4410,5.318,4435,4.084,4737,3.22,4941,5.662,5110,2.463,5337,3.342,5346,3.84,5361,4.297,5531,3.015,5732,1.724,5787,3.342,5901,2.463,5931,3.482,5993,3.644,6074,2.77,6181,3.84,6206,5.799,6213,3.482,6638,3.84,7119,3.015,7647,3.482,7681,3.22,7709,3.644,7721,3.644,7754,3.644,7855,4.412,7897,3.644,7998,4.412,7999,4.412,8046,4.084,8068,4.412,8070,4.412,8139,3.644,8181,4.084,8265,3.644,8307,3.342,8312,4.084,8313,4.412,8314,4.91,8315,3.482,8316,3.482,8317,4.91,8318,4.91,8319,6.117,8320,3.482,8321,4.412,8322,4.91,8323,4.91,8324,4.91,8325,4.91,8326,4.91,8327,4.084,8328,4.412,8329,4.91,8330,2.926,8331,4.91,8332,6.806,8333,6.806,8334,4.91,8335,4.91,8336,4.412,8337,8.436,8338,6.806,8339,4.91,8340,4.91,8341,6.806,8342,7.962,8343,7.812,8344,4.91,8345,4.084,8346,4.91,8347,4.91,8348,4.91,8349,4.91,8350,4.91,8351,4.91,8352,4.91,8353,4.412,8354,4.91,8355,4.91,8356,4.91,8357,4.91,8358,4.91,8359,4.91,8360,4.91,8361,4.91,8362,4.91,8363,4.084,8364,4.91,8365,4.91,8366,4.91,8367,4.084,8368,4.412,8369,4.91,8370,4.91,8371,4.91,8372,4.91,8373,4.91,8374,4.91,8375,4.91,8376,4.91,8377,4.91,8378,4.91,8379,4.91]],["tags/Water Levels As Public Data",[7737,3.607]],["title/What if Seneca wasn't Nero's advisor?",[2969,2.254,4178,3.454,6494,3.615,8380,4.052]],["content/What if Seneca wasn't Nero's advisor?",[2,2.639,3,2.334,6,1.055,10,0.554,17,0.943,19,0.223,20,1.36,25,1.344,26,1.172,27,0.455,29,1.395,47,1.547,52,0.621,59,1.547,60,1.121,65,1.449,69,1.917,73,0.769,75,1.905,76,1.279,79,0.335,81,2.262,99,1.933,100,3.922,101,0.429,104,0.706,113,1.349,130,2.704,132,1.983,133,3.001,150,1.204,154,1.082,156,1.233,157,2.171,159,2.396,165,1.008,167,1.947,168,1.572,180,1.311,182,1.134,184,1.655,196,1.449,199,2.526,210,2.276,212,3.225,216,1.186,219,1.61,242,1.804,271,2.826,276,1.938,277,1.327,293,1.008,315,0.985,317,1.655,320,1.885,326,2.415,361,2.707,365,1.859,375,0.787,389,2.93,407,2.08,409,1.909,430,1.431,437,1.917,441,1.108,460,3.689,506,2.704,579,2.011,628,2.08,788,2.93,877,2.456,903,2.011,912,1.091,920,2.932,942,4.196,950,2.366,951,1.204,1160,3.225,1232,3.019,1289,1.329,1298,2.276,1364,3.225,1431,2.704,1485,5.544,1541,1.568,1552,2.521,1586,1.527,1657,1.507,1721,0.997,1764,1.082,1794,1.979,1796,2.116,1803,2.774,1806,2.639,1872,2.233,1901,3.225,1931,3.453,1933,3.657,1969,0.845,1983,1.61,2261,4.09,2275,4.638,2310,2.93,2355,3.65,2394,4.419,2398,3.487,2435,2.93,2503,5.668,2510,3.487,2512,2.32,2665,2.578,2688,4.419,2698,3.347,2775,2.882,2785,1.979,2853,2.467,2919,3.845,2948,2.849,2969,3.153,2987,3.845,2998,3.418,3048,4.419,3095,3.487,3125,2.93,3152,3.347,3208,3.845,3217,3.347,3251,2.849,3262,3.948,3295,2.93,3458,3.019,3496,3.418,3546,2.521,3563,3.117,4178,6.286,4208,5.322,4478,3.347,4931,3.347,5085,2.232,5102,3.487,5357,5.544,5375,2.93,5378,3.347,5409,2.521,5525,4.183,5732,2.393,5906,3.65,6009,4.419,6113,4.09,6181,3.845,6290,3.845,6494,5.057,6501,4.09,6793,5.803,6909,3.347,7005,4.09,7546,3.65,7681,3.225,8071,4.419,8330,2.93,8380,5.668,8381,4.917,8382,4.917,8383,3.347,8384,4.8,8385,3.487,8386,4.419,8387,4.917,8388,4.917,8389,4.917,8390,4.917,8391,4.917,8392,4.917,8393,4.917,8394,4.419,8395,4.917,8396,4.419,8397,4.419,8398,4.419,8399,4.419,8400,4.917,8401,5.328,8402,4.917,8403,4.09,8404,4.917,8405,4.917,8406,4.09,8407,4.419,8408,4.917,8409,4.917,8410,4.09,8411,3.845,8412,4.917,8413,4.917,8414,4.917,8415,4.917,8416,4.917,8417,3.845,8418,7.818,8419,4.917,8420,4.419,8421,4.917,8422,3.845,8423,4.09,8424,4.917,8425,4.419,8426,4.917]],["tags/What if Seneca wasn't Nero's advisor?",[2948,3.297]],["title/Accidental Discovery By Bike: Fietsknooppunten",[3144,2.903,3166,3.316,7853,3.615,8427,4.871]],["content/Accidental Discovery By Bike: Fietsknooppunten",[1,1.299,3,2.038,5,0.988,6,0.665,10,0.555,11,1.453,14,1.16,17,0.682,20,1.889,22,0.943,24,0.965,27,0.725,28,0.879,42,2.431,50,0.601,52,0.45,53,2.857,59,1.551,60,1.124,67,1.732,74,1.26,76,2.037,79,0.336,83,1.615,86,1.783,89,2.542,91,1.757,103,1.348,104,1.213,107,2.939,109,1.692,144,1.315,148,2.463,153,1.683,158,1.071,159,1.511,175,1.364,180,1.82,184,1.66,185,1.399,188,1.923,200,1.985,202,3.357,210,3.16,213,3.5,214,3.357,216,1.188,217,1.179,218,6.273,219,1.615,234,3.769,243,3.497,253,2.086,263,0.809,265,3.497,266,3.044,271,1.783,275,1.352,276,1.692,278,1.283,285,3.126,288,1.138,293,1.4,297,2.092,304,2.16,309,1.66,311,1.511,315,0.988,321,1.783,332,4.478,363,2.712,378,1.52,389,2.939,412,1.472,418,2.331,441,1.764,782,1.245,784,3.234,797,3.37,840,3.126,903,2.017,912,1.093,920,2.122,945,2.086,1008,1.893,1146,2.236,1188,3.357,1279,1.433,1283,0.519,1289,0.838,1292,1.953,1293,3.234,1307,2.422,1348,2.086,1401,2.199,1409,3.126,1465,2.712,1493,2.939,1557,1.732,1577,2.24,1584,2.857,1586,2.12,1589,2.282,1657,1.511,1659,2.086,1660,2.857,1663,2.463,1666,2.122,1719,2.282,1721,1,1764,1.085,1777,2.888,1795,1.732,1796,2.122,1799,2.782,1806,2.647,1860,2.939,1898,2.857,1931,2.017,1941,2.712,1962,1.809,1965,2.885,1969,0.848,1972,2.528,2059,2.939,2086,2.939,2092,3.66,2105,2.712,2260,2.939,2282,2.474,2299,2.782,2375,2.647,2398,3.497,2464,3.234,2644,3.497,2645,1.531,2700,2.373,2796,3.028,2806,3.353,2876,3.5,2903,3.856,2904,3.028,2927,4.327,2937,4.431,3005,2.782,3079,3.497,3088,3.028,3144,4.069,3163,2.528,3166,5.33,3168,6.51,3180,3.66,3195,3.856,3485,2.528,3496,2.474,3517,4.102,4402,2.327,4409,3.856,4410,4.647,4422,4.327,4637,3.856,4714,2.782,5119,2.086,5382,4.431,5401,2.586,5531,3.028,5549,3.856,5732,2.398,6075,3.66,6152,3.66,6190,2.857,6404,4.431,7292,3.856,7394,4.102,7457,5.679,7647,3.497,7733,4.431,8025,3.856,8026,5.067,8252,3.856,8363,5.679,8428,4.931,8429,4.431,8430,4.931,8431,4.931,8432,5.679,8433,4.931,8434,4.431,8435,4.931,8436,3.856,8437,4.931,8438,4.931,8439,4.931,8440,4.431,8441,4.431,8442,4.931,8443,4.931,8444,4.431,8445,4.931,8446,6.827,8447,4.931,8448,8.451,8449,4.931,8450,4.931,8451,4.931,8452,4.931,8453,4.931,8454,4.431,8455,4.931,8456,4.931,8457,4.931,8458,4.931,8459,4.931,8460,4.931]],["tags/Accidental Discovery By Bike: Fietsknooppunten",[7737,3.607]],["title/Cheese cheese cheese cheese cheese",[2622,6.312]],["content/Cheese cheese cheese cheese cheese",[2,2.651,5,1.369,10,0.556,11,1.456,13,1.554,14,0.839,17,0.683,19,0.224,25,1.35,28,0.88,50,0.833,59,2.465,60,1.126,65,1.456,79,0.534,86,1.785,90,2.33,91,1.759,101,0.596,103,1.35,109,1.224,124,2.786,139,3.96,144,1.148,149,2.333,150,1.674,158,0.866,160,2.163,165,1.607,168,1.139,175,1.891,180,1.317,185,1.401,199,2.208,203,1.074,206,3.362,211,1.71,217,1.181,219,1.618,223,1.153,253,2.089,257,5.451,275,0.978,278,1.285,287,2.786,288,1.577,293,1.013,309,2.301,337,7.182,338,3.666,344,4.438,349,4.438,361,2.366,362,4.108,370,2.861,373,4.438,375,0.791,384,1.113,391,4.438,396,3.13,404,1.1,408,4.771,409,1.384,412,1.474,418,1.686,423,5.685,446,2.33,448,4.438,451,3.862,476,1.366,478,1.925,527,2.716,698,1.812,782,0.901,801,3.13,908,1.839,911,2.861,912,0.791,921,0.869,937,2.786,945,2.089,952,3.502,956,3.502,962,4.438,964,2.202,994,2.243,1003,2.589,1130,3.502,1159,1.988,1179,1.956,1229,2.918,1276,1.839,1278,1.596,1279,1.435,1283,0.89,1292,1.956,1307,2.426,1315,2.02,1320,3.032,1352,2.377,1354,2.477,1488,1.956,1501,1.686,1503,3.362,1514,3.362,1590,2.786,1613,2.477,1615,2.861,1658,2.477,1663,2.15,1675,2.286,1721,1.385,1744,2.377,1764,1.087,1794,2.75,1858,2.891,1876,2.202,1903,4.018,1931,2.796,1950,1.867,1962,1.812,1965,1.686,2028,1.839,2059,2.943,2258,3.13,2324,3.666,2397,2.943,2403,3.239,2412,3.032,2421,3.666,2433,1.663,2459,3.362,2497,3.13,2522,4.438,2558,1.925,2596,3.502,2622,7.458,2627,4.438,2628,4.438,2642,1.925,2824,3.862,2826,4.438,2830,3.032,2832,4.438,2839,4.438,2873,4.108,2876,2.532,2914,3.13,2916,6.252,2969,3.163,2996,2.477,2998,2.477,3538,3.502,4388,3.666,4396,2.202,4737,3.239,4756,2.377,5109,2.477,5401,2.589,5407,3.239,5513,4.438,5694,3.362,6119,3.862,6128,4.108,6213,3.502,6268,7.042,6480,4.108,6884,3.362,7315,4.438,7828,4.438,8048,3.862,8072,4.438,8320,3.502,8461,4.938,8462,4.938,8463,4.938,8464,6.834,8465,4.938,8466,6.834,8467,5.345,8468,4.938,8469,4.938,8470,4.938,8471,4.938,8472,4.938,8473,4.938,8474,4.938,8475,4.938,8476,4.938,8477,4.938,8478,3.862,8479,4.938,8480,4.938,8481,6.834,8482,4.108,8483,4.938,8484,4.938,8485,4.938,8486,4.938,8487,4.938,8488,4.938,8489,4.438,8490,4.108,8491,4.938,8492,4.938,8493,4.938,8494,4.438,8495,4.938,8496,4.938,8497,4.438,8498,4.938,8499,6.141,8500,4.938,8501,4.938,8502,4.438,8503,4.108,8504,4.938,8505,6.834,8506,4.938]],["tags/Cheese cheese cheese cheese cheese",[139,3.297]],["title/Emotional Magic",[2125,2.984,7329,4.603]],["content/Emotional Magic",[5,1.028,6,0.693,10,0.79,14,1.193,18,1.681,19,0.363,20,1.42,24,1.004,27,0.649,30,1.532,42,1.594,47,1.615,48,1.829,49,2.974,50,0.855,60,1.17,74,0.947,76,1.335,92,2.896,101,0.697,102,2.631,104,0.737,148,2.208,150,1.257,154,1.13,157,1.958,158,0.65,175,1.942,179,1.31,185,2.269,203,1.526,213,2.631,252,2.135,263,0.842,278,1.335,280,4.977,282,1.636,294,1.911,311,1.573,315,1.028,332,3.367,384,1.157,388,1.659,438,3.059,457,1.438,472,2.001,479,3.253,561,4.182,591,2.755,621,1.456,622,2.575,782,1.28,784,3.367,851,1.681,912,1.124,920,2.209,950,2.47,951,1.257,976,3.059,995,3.68,1002,3.059,1003,2.691,1062,2.824,1161,3.074,1179,2.033,1240,2.823,1279,1.078,1283,0.54,1289,0.872,1296,1.544,1334,2.248,1366,2.755,1420,1.911,1426,2.095,1431,2.823,1442,3.81,1488,2.033,1583,1.615,1609,3.152,1623,1.728,1657,1.573,1666,2.209,1668,3.494,1675,2.376,1710,2.376,1711,3.271,1721,1.423,1744,2.47,1746,2.755,1755,2.823,1795,1.803,1852,2.823,1858,2.171,1872,3.904,2077,2.376,2125,4.579,2178,3.367,2216,3.81,2306,3.248,2314,2.631,2315,3.367,2325,4.014,2371,4.613,2378,1.568,2415,2.422,2433,1.728,2434,2.331,2458,2.896,2469,3.059,2511,2.823,2531,3.253,2594,2.248,2645,1.594,2665,3.68,2666,2.422,2714,2.575,2775,2.171,2798,3.931,2945,2.691,2998,2.575,3036,2.331,3037,3.81,3071,3.152,3140,3.059,3243,3.494,3307,3.367,3311,3.64,4417,2.631,4430,3.81,4441,4.613,4443,3.86,4657,3.253,4691,2.691,4746,3.81,5239,4.27,5283,2.331,5525,4.309,5564,3.494,5715,4.27,6075,3.81,6207,4.977,6271,4.182,6603,4.27,6774,3.253,6897,4.613,7293,3.64,7329,5.209,7394,4.27,7496,4.014,7681,4.603,7721,3.81,7820,4.613,8025,7.04,8123,4.014,8125,4.613,8126,4.014,8139,3.81,8384,3.152,8507,5.133,8508,5.133,8509,5.133,8510,5.133,8511,5.133,8512,5.133,8513,7.018,8514,5.133,8515,5.133,8516,8.596,8517,8.596,8518,4.613,8519,7.018,8520,5.133,8521,4.613,8522,4.014,8523,5.133,8524,5.133,8525,5.133,8526,5.133,8527,5.133,8528,5.133,8529,8.596,8530,5.133,8531,5.133,8532,7.018,8533,3.81,8534,5.133,8535,4.613,8536,5.133,8537,5.133,8538,5.133,8539,5.133,8540,5.133,8541,5.133,8542,5.133]],["tags/Emotional Magic",[2125,2.055,2378,0.779]],["title/Kotlin Is Java 2.0, But It's Still Java",[475,2.627,912,0.642,1283,0.422,1421,2.63,8543,2.73]],["content/Kotlin Is Java 2.0, But It's Still Java",[4,2.282,5,1.801,10,0.576,14,1.459,16,2.747,18,1.676,19,0.459,22,1.641,23,3.321,26,1.204,27,0.474,36,2.282,46,2.093,48,1.823,52,0.728,59,1.61,61,2.463,69,1.995,81,1.699,98,1.14,101,0.446,109,1.268,116,1.195,119,3.05,153,1.747,154,1.126,157,1.253,160,2.241,165,1.05,179,0.956,203,1.523,216,0.89,223,1.635,234,2.463,237,3.356,240,1.453,242,1.877,270,3.356,276,1.268,278,1.822,293,1.05,315,1.403,330,2.241,363,2.814,372,2.093,375,1.278,404,1.778,437,1.995,441,1.153,475,4.239,476,2.376,487,2.358,566,2.324,579,2.093,710,4.002,722,1.964,725,5.073,782,0.933,794,5.061,806,2.514,851,1.676,897,1.568,912,1.121,945,2.165,1161,2.241,1194,3.484,1260,1.508,1267,2.514,1283,0.737,1289,0.87,1290,2.683,1296,1.541,1313,5.477,1332,2.324,1348,2.165,1352,2.463,1401,2.282,1409,3.244,1421,3.356,1422,2.027,1451,2.683,1462,2.965,1509,4.002,1519,3.356,1534,2.463,1584,2.965,1594,2.965,1608,2.282,1614,2.093,1634,2.06,1657,1.568,1701,4.257,1721,1.037,1745,4.257,1764,1.126,1777,2.165,1784,2.747,1806,4.285,1811,2.463,1854,3.356,1965,1.747,1969,0.88,1972,2.623,1993,2.683,2007,1.723,2017,3.356,2068,4.599,2071,3.244,2159,3.142,2193,2.814,2203,4.599,2273,3.798,2289,1.877,2314,2.623,2338,2.567,2377,3.356,2450,3.629,2458,2.887,2475,2.608,2483,2.747,2536,2.887,2596,3.629,2681,3.05,2691,2.165,2712,3.356,2748,3.142,2789,3.798,2825,3.852,2959,3.05,3247,2.683,3454,2.415,3810,4.002,3835,4.257,3984,3.356,4634,4.599,4636,4.257,4637,4.002,4722,4.257,4753,3.142,4944,3.356,5694,3.484,5855,3.244,6397,4.002,6545,4.594,7216,4.599,7228,4.599,7286,4.599,7752,4.002,8108,4.002,8257,4.599,8543,6.683,8544,5.117,8545,4.257,8546,4.599,8547,3.798,8548,5.117,8549,5.117,8550,5.117,8551,5.117,8552,4.002,8553,5.117,8554,6.294,8555,5.117,8556,5.117,8557,5.117,8558,4.257,8559,5.117,8560,5.117,8561,5.117,8562,6.294,8563,4.599,8564,5.117,8565,5.117,8566,5.117,8567,5.117,8568,5.117,8569,5.117,8570,5.117,8571,5.117,8572,5.117,8573,5.117,8574,5.117,8575,5.117,8576,5.117,8577,5.117,8578,5.117,8579,5.117,8580,5.117,8581,5.117,8582,5.117,8583,5.117,8584,5.117,8585,5.117,8586,5.117,8587,5.117]],["tags/Kotlin Is Java 2.0, But It's Still Java",[475,1.904,8543,2.906]],["title/On Selling a Self-published Book",[65,1.436,248,2.822,1159,1.96,3519,1.899]],["content/On Selling a Self-published Book",[0,1.055,6,0.678,11,1.481,17,1.094,22,0.961,23,2.091,24,1.354,25,1.89,26,1.19,28,1.232,42,1.56,46,2.056,59,1.581,60,1.146,62,2.469,65,2.946,73,1.081,74,0.928,76,1.8,79,0.472,85,1.602,87,1.119,98,1.54,101,0.743,113,0.995,121,1.481,131,1.322,137,3.564,144,1.162,150,1.231,153,2.362,156,1.261,165,1.419,209,3.902,211,1.74,216,0.875,242,1.844,248,2.912,249,4.709,263,0.824,277,1.357,295,2.577,297,1.54,309,1.692,311,1.54,320,2.189,368,1.581,372,2.056,375,0.805,400,3.297,407,2.126,443,2.039,444,1.791,455,1.716,457,1.408,517,1.419,630,1.391,632,3.804,705,1.791,724,2.456,799,2.995,908,1.872,909,2.877,911,2.912,912,1.364,915,4.686,921,0.885,934,2.163,941,3.422,951,1.231,985,1.391,994,2.283,996,3.422,1030,3.202,1069,1.481,1159,2.023,1213,2.912,1279,1.452,1283,0.728,1289,1.176,1296,1.106,1304,3.297,1307,2.469,1315,2.056,1334,2.201,1415,1.765,1451,2.635,1512,2.469,1541,1.602,1585,3.931,1589,3.202,1600,2.326,1614,2.056,1660,2.912,1662,2.372,1663,1.581,1676,3.086,1715,2.283,1763,2.091,1764,1.106,1785,1.581,1796,2.163,1881,2.091,1962,1.844,1969,1.36,1976,3.329,1983,1.646,2006,1.872,2070,2.577,2109,2.635,2139,2.577,2296,2.912,2301,2.698,2308,3.564,2336,3.422,2347,2.836,2355,3.731,2418,4.517,2433,1.692,2457,3.47,2467,2.764,2480,2.698,2565,2.577,2576,2.126,2582,2.764,2658,4.181,2668,2.326,2691,2.126,2710,3.086,2713,3.086,2755,3.186,2760,2.764,2775,2.126,2814,3.186,2853,2.521,2894,4.856,2969,2.326,3037,3.731,3039,4.517,3144,2.995,3152,3.422,3174,3.422,3189,2.836,3202,4.709,3232,4.537,3262,2.912,3454,2.372,3458,3.086,3496,3.968,3519,3.483,3877,3.931,4402,2.372,4504,3.297,4700,3.731,5085,2.591,5174,3.346,5183,4.181,5274,3.564,5295,4.517,5328,3.086,5417,3.202,5537,3.564,5594,5.41,5804,3.086,6122,3.186,6137,4.181,6481,3.931,6703,3.564,6763,3.731,6862,4.181,7119,3.086,7231,4.008,7367,3.931,7384,3.931,8003,6.217,8038,3.731,8039,3.564,8091,4.181,8307,3.422,8588,5.026,8589,5.026,8590,5.026,8591,5.026,8592,6.917,8593,5.026,8594,4.181,8595,5.026,8596,5.026,8597,3.731,8598,5.026,8599,5.41,8600,5.026,8601,5.026,8602,3.564,8603,5.026,8604,4.181,8605,4.181,8606,4.181,8607,4.517,8608,5.026,8609,5.026,8610,5.026,8611,5.026,8612,4.517,8613,4.517]],["tags/On Selling a Self-published Book",[65,1.258,75,0.835]],["title/Pinball Machines in a Jenever Museum",[983,2.254,8614,4.377,8615,4.377,8616,3.809]],["content/Pinball Machines in a Jenever Museum",[5,1.041,10,0.797,19,0.236,26,0.893,28,0.926,46,2.126,47,1.635,50,0.862,55,1.906,60,1.97,62,2.552,69,2.026,70,2.287,73,0.812,76,1.352,79,0.636,95,3.339,101,0.453,131,0.993,144,0.873,145,2.198,154,1.557,157,1.272,158,0.658,184,1.749,185,1.474,188,2.026,200,2.091,203,1.539,258,3.156,275,1.029,309,2.382,320,1.438,327,4.322,347,4.217,375,1.133,378,1.157,409,1.983,433,3.684,441,1.594,442,2.405,444,1.851,853,2.168,912,0.832,913,2.606,929,1.531,930,3.408,960,3.537,983,4.653,985,1.438,1010,4.322,1232,3.19,1237,2.026,1240,2.858,1278,1.679,1292,2.058,1332,2.36,1348,2.198,1354,2.606,1426,1.551,1557,1.825,1582,2.091,1586,2.197,1600,2.405,1619,2.664,1623,1.749,1633,3.156,1657,1.592,1663,1.635,1764,1.143,1791,2.858,1794,2.091,1795,1.825,1796,2.236,1852,2.858,1854,4.642,1945,2.287,1957,3.857,2015,2.789,2086,3.096,2165,2.236,2216,3.857,2254,2.276,2258,3.293,2328,2.789,2378,0.948,2401,3.096,2407,2.789,2426,3.01,2434,3.214,2548,4.063,2624,3.537,2645,2.963,2739,4.322,2806,2.552,2876,3.628,2892,3.408,2902,4.063,2951,3.293,2968,3.537,2969,2.405,3236,2.501,3241,1.749,3497,3.408,4330,3.537,4459,3.537,4527,1.679,4805,3.684,4942,4.063,5121,3.293,5123,4.322,5174,2.198,5219,3.857,5359,3.798,5367,2.858,5369,3.293,5378,3.537,5574,4.063,5609,3.19,5801,4.817,5844,2.664,5901,2.606,6003,3.408,6086,4.322,6131,3.537,6332,3.857,6412,4.322,6449,4.669,6590,3.857,6595,3.01,6602,5.253,6647,3.293,6756,4.322,6773,3.684,7171,3.408,7231,3.01,7737,3.293,7754,3.857,7762,4.669,7910,4.669,7917,4.669,8159,4.322,8265,3.857,8299,4.063,8604,4.322,8614,8.124,8615,4.669,8616,6.757,8617,4.063,8618,5.196,8619,5.196,8620,5.196,8621,5.196,8622,5.196,8623,4.669,8624,5.196,8625,5.196,8626,7.076,8627,4.669,8628,5.196,8629,5.196,8630,5.196,8631,4.669,8632,7.232,8633,5.196,8634,7.076,8635,5.196,8636,5.196,8637,5.196,8638,5.196,8639,5.196,8640,7.076,8641,5.196,8642,5.196,8643,5.196,8644,5.196,8645,5.196,8646,5.196,8647,5.196,8648,5.196,8649,5.196,8650,5.196,8651,5.196,8652,7.076,8653,5.196,8654,5.196,8655,3.01,8656,5.196,8657,5.196,8658,4.669,8659,4.063,8660,5.196,8661,5.196,8662,5.196,8663,5.196,8664,4.669]],["tags/Pinball Machines in a Jenever Museum",[7737,3.607]],["title/My Kotlin Rose-Tinted Glasses Broke",[112,2.788,7777,3.44,8320,3.119,8543,2.994,8665,3.953]],["content/My Kotlin Rose-Tinted Glasses Broke",[3,1.494,5,1.382,10,1.005,14,1.172,17,0.692,18,1.639,19,0.444,21,1.513,22,1.318,23,2.868,24,0.979,27,0.463,29,1.42,50,0.61,52,0.629,54,3.714,61,4.093,74,0.923,75,1.35,79,0.341,87,1.114,89,1.863,99,1.42,101,0.778,102,4.046,112,3.172,126,2.081,131,1.318,132,2.007,144,0.84,148,1.574,149,1.708,153,1.708,157,1.225,158,0.634,165,1.414,179,0.934,203,1.088,217,1.196,234,2.408,240,1.765,275,0.991,276,1.24,291,1.982,293,1.026,294,1.863,326,2.458,367,1.892,378,1.536,384,1.554,396,3.172,404,1.536,409,2.211,418,1.708,430,1.456,441,1.128,444,2.457,452,2.493,465,1.892,473,2.361,475,4.293,476,1.908,487,2.322,488,5.737,518,3.254,566,3.132,579,3.479,621,1.42,622,2.51,627,1.863,632,2.752,722,1.921,725,2.823,782,0.913,794,5.002,799,2.982,853,1.533,854,3.132,885,2.624,896,2.899,897,2.826,912,1.104,924,2.565,937,3.891,970,3.072,998,2.565,1096,2.752,1161,3.456,1191,3.072,1213,2.899,1278,2.228,1283,0.526,1289,1.172,1290,2.624,1296,1.101,1301,2.752,1325,2.899,1331,2.361,1332,2.273,1346,2.141,1348,2.117,1421,3.282,1519,3.282,1612,3.959,1648,1.595,1675,2.316,1744,2.408,1746,2.686,1749,3.714,1803,2.823,1903,2.565,1946,2.823,1950,1.892,1969,0.86,1976,2.408,1982,5.857,1993,2.624,2006,1.863,2007,1.685,2017,3.282,2080,3.172,2105,3.793,2273,3.714,2299,2.823,2323,3.172,2396,2.686,2401,2.982,2407,2.686,2471,2.752,2475,1.863,2488,3.282,2497,3.172,2686,2.982,2772,3.913,2785,2.014,2900,3.714,3078,3.913,3145,2.408,3220,2.982,3262,2.899,4330,4.695,4338,2.899,4370,3.714,4381,3.913,4404,4.163,5085,2.259,5107,3.282,5180,3.172,5246,4.497,5336,4.497,5375,2.982,5703,4.497,5725,3.548,6036,4.163,6103,3.913,6423,3.913,6471,3.172,6545,3.282,6855,3.714,7754,3.714,7777,3.913,8320,3.548,8543,6.554,8562,6.198,8563,6.198,8597,3.714,8665,4.497,8666,5.004,8667,5.004,8668,4.497,8669,3.913,8670,5.004,8671,5.004,8672,4.497,8673,5.004,8674,5.004,8675,7.891,8676,5.004,8677,4.497,8678,5.004,8679,5.004,8680,4.497,8681,5.004,8682,5.004,8683,5.004,8684,5.004,8685,5.004,8686,5.004,8687,4.163,8688,5.004,8689,5.004,8690,5.004]],["tags/My Kotlin Rose-Tinted Glasses Broke",[475,1.904,8543,2.906]],["title/Thirty-Six",[7231,3.593,8315,4.397]],["content/Thirty-Six",[5,1.074,6,1.233,11,1.58,14,0.911,24,1.414,26,0.922,27,0.496,47,2.274,48,1.91,52,0.489,73,1.278,74,0.989,75,1.049,79,0.493,84,2.689,91,2.575,94,1.266,99,1.521,101,0.63,109,1.329,113,1.061,116,1.251,144,0.9,150,1.313,153,1.83,156,1.345,168,1.237,193,2.633,199,1.732,203,1.166,216,0.933,230,2.529,247,4.192,253,2.267,263,1.185,264,2.39,275,1.061,288,1.237,293,1.677,297,1.642,375,0.858,409,1.502,433,3.801,546,2.529,650,4.192,797,2.307,845,3.649,853,2.215,904,3.649,909,2.229,910,2.948,936,3.979,945,2.267,948,2.58,989,3.291,1044,2.529,1069,1.58,1216,2.748,1283,0.99,1292,2.123,1298,2.481,1327,1.686,1340,3.398,1430,2.633,1517,2.689,1555,3.024,1582,2.157,1583,1.686,1613,2.689,1631,2.026,1646,3.516,1659,2.267,1687,1.099,1719,2.481,1721,1.087,1725,1.91,1785,1.686,1795,2.538,1796,2.307,1881,2.229,1932,3.194,1962,1.966,1969,1.243,1974,2.948,1983,1.756,2006,3.259,2034,3.057,2051,3.516,2125,2.58,2360,3.106,2378,0.978,2433,1.805,2434,2.435,2454,2.435,2463,2.481,2511,3.975,2590,4.438,2592,2.689,2639,3.649,2642,2.09,2645,1.664,2660,2.748,2684,2.877,2719,3.979,2798,2.267,2814,3.398,2859,3.801,2935,3.801,2952,3.106,2998,2.689,3005,3.024,3013,2.948,3080,6.013,3095,3.801,3122,3.106,3166,3.649,3178,3.106,3192,3.649,3232,3.516,3251,3.106,3265,3.291,3270,3.801,3524,2.948,4330,3.649,4428,3.194,4455,3.979,4526,4.92,4527,1.732,4531,4.192,5085,1.756,5376,2.811,5546,3.979,5650,4.459,5732,1.882,5744,3.801,5747,3.801,5791,4.192,5936,3.979,5995,4.817,6189,3.649,6279,3.979,6289,3.979,6552,3.649,6595,3.106,6684,3.801,6884,3.649,7088,4.192,7231,4.738,7330,3.979,7360,4.192,7635,4.817,7695,4.817,7866,4.817,8004,4.817,8025,4.192,8049,3.801,8315,6.823,8328,4.817,8467,4.192,8691,5.36,8692,5.36,8693,4.459,8694,5.36,8695,5.36,8696,5.36,8697,5.36,8698,3.801,8699,5.36,8700,5.36,8701,5.36,8702,4.192,8703,5.36,8704,5.36,8705,5.36,8706,5.36,8707,5.36,8708,5.36,8709,5.36,8710,5.36,8711,5.36,8712,5.36,8713,4.817,8714,5.36,8715,5.36,8716,5.36,8717,4.459,8718,4.459,8719,4.817,8720,5.36,8721,5.36,8722,4.817,8723,5.36,8724,5.36,8725,5.36,8726,4.817,8727,5.36,8728,4.817]],["tags/Thirty-Six",[]],["title/20 Years of Personal Cellphone History",[6,0.594,368,1.384,3155,3.659,3908,2.419,4396,1.962]],["content/20 Years of Personal Cellphone History",[0,1.422,3,1.455,7,1.9,10,0.876,14,1.322,17,1.163,18,1.597,20,1.349,22,0.932,24,0.954,27,0.451,28,1.207,39,2.135,50,0.825,51,2.174,52,0.618,67,1.712,73,1.059,74,0.9,79,0.531,86,1.762,98,1.085,101,0.59,113,0.965,116,1.138,131,1.295,137,3.457,144,0.819,154,1.073,157,1.659,158,0.858,159,2.075,168,1.125,174,4.61,175,1.349,183,3.318,189,2.75,219,1.597,240,1.011,248,2.824,271,1.762,275,0.965,288,1.125,294,1.815,303,3.618,326,2.394,388,2.188,392,2.346,400,3.197,404,1.085,412,1.455,430,1.971,438,2.905,443,1.437,445,3.457,517,1,629,3.318,724,1.513,782,0.889,797,2.098,912,0.78,921,1.192,932,2.77,934,2.098,957,2.824,985,1.349,993,2.394,1060,3.09,1260,1.437,1279,1.422,1291,1.268,1339,1.513,1354,2.445,1403,2.098,1413,3.618,1422,1.931,1578,2.681,1582,1.962,1657,1.494,1662,2.3,1663,1.533,1671,2.027,1680,2.346,1711,1.994,1725,1.737,1778,1.994,1785,2.131,1795,1.712,1857,3.812,1933,2.616,1995,2.681,1999,2.394,2025,2.135,2030,3.197,2049,4.055,2071,3.09,2115,2.256,2175,3.318,2214,2.75,2232,4.055,2295,3.318,2318,2.481,2320,2.993,2335,2.824,2353,2.027,2360,2.824,2374,2.062,2375,2.616,2378,1.534,2399,4.055,2400,2.993,2412,2.993,2413,2.256,2415,2.3,2419,3.812,2449,3.618,2461,3.821,2462,3.618,2475,1.815,2477,3.618,2484,3.457,2616,3.618,2617,2.824,2645,2.103,2648,2.993,2655,1.962,2666,2.3,2681,2.905,2699,1.843,2700,2.346,2711,4.933,2760,2.681,2798,2.062,2828,3.197,2961,4.055,2996,2.445,3005,2.75,3008,3.318,3041,3.812,3089,4.38,3155,6.474,3194,2.824,3233,4.442,3271,2.993,3497,3.197,3549,3.09,3885,3.457,4369,4.055,4470,4.38,4541,6.086,4549,2.556,5192,3.197,5361,2.681,5367,2.681,5378,3.318,5400,3.457,5409,2.499,5539,4.38,5700,2.993,5732,1.712,5825,4.293,5833,4.036,5901,2.445,6041,4.055,6049,2.993,6072,3.812,6086,4.055,6271,4.638,6314,4.055,6413,5.027,6544,4.055,6689,4.38,6822,3.197,6859,5.027,7019,7.609,7022,4.158,7956,3.812,8036,3.457,8060,4.055,8260,3.318,8278,4.38,8279,4.38,8303,8.22,8597,3.618,8729,7.782,8730,4.874,8731,4.874,8732,4.874,8733,4.38,8734,6.772,8735,4.874,8736,4.874,8737,6.772,8738,6.772,8739,4.874,8740,4.874,8741,4.38,8742,4.874,8743,5.027,8744,4.38,8745,4.874,8746,4.874,8747,4.874,8748,4.874,8749,4.874,8750,6.772,8751,7.782,8752,6.772,8753,7.782,8754,4.874,8755,4.874,8756,4.874,8757,4.874,8758,8.41,8759,4.874,8760,4.38,8761,4.874,8762,4.874,8763,4.874,8764,4.874,8765,4.874,8766,4.874,8767,4.874,8768,4.874,8769,4.874,8770,4.874]],["tags/20 Years of Personal Cellphone History",[]],["title/A Note About Footnotes",[48,2.209,8771,5.159]],["content/A Note About Footnotes",[0,1.799,5,1.021,10,0.574,13,1.603,14,1.186,24,1.559,27,0.646,28,0.908,30,1.521,48,2.838,50,0.621,52,0.845,59,1.603,60,1.162,65,2.953,73,1.091,74,0.94,75,0.997,76,1.325,79,0.476,80,2.802,83,1.669,87,1.134,89,1.897,92,2.874,94,1.204,96,3.245,101,0.609,103,2.177,104,0.731,113,1.009,116,1.189,127,2.802,131,0.974,144,0.855,154,1.536,157,1.248,165,1.045,172,1.842,175,2.204,180,2.124,217,1.669,248,2.952,249,3.468,263,0.835,276,1.73,278,1.325,279,2.192,288,1.175,293,1.045,315,1.021,326,2.502,384,1.573,388,2.256,389,3.036,392,3.36,396,3.229,404,1.134,422,1.815,446,2.404,450,3.171,452,1.842,490,2.671,517,1.045,630,1.41,723,2.192,724,2.168,768,3.229,782,0.929,784,3.341,797,3.99,801,3.229,806,2.502,877,1.482,885,4.707,940,3.341,941,4.753,951,1.71,1011,1.815,1060,3.229,1065,3.984,1146,2.609,1159,2.05,1260,1.502,1270,3.341,1283,0.735,1286,2.671,1291,1.816,1296,1.121,1327,1.603,1331,2.404,1332,2.314,1422,2.018,1425,2.358,1541,1.624,1633,2.272,1648,1.624,1671,2.904,1672,4.238,1687,1.045,1721,1.82,1725,2.487,1741,2.404,1794,2.05,1872,3.618,1948,3.341,1949,3.036,1969,1.37,1971,2.952,2006,1.897,2007,1.715,2165,3.005,2200,3.781,2297,2.671,2319,2.802,2423,3.612,2452,2.952,2457,2.555,2469,3.036,2480,2.734,2540,4.045,2704,3.128,2818,2.358,2881,2.084,2920,3.984,2980,3.036,3145,2.452,3264,2.671,3485,2.612,3519,2.722,3528,3.036,3547,3.229,3549,3.229,4372,3.612,4398,3.036,4478,3.468,4692,4.753,4787,5.182,4926,3.612,5128,3.128,5283,2.314,5330,4.578,5368,4.753,5393,3.781,5432,3.984,5519,4.238,5564,3.468,5573,5.808,5931,3.612,6397,3.984,6472,3.612,6806,4.578,6821,3.036,6829,4.578,7212,2.502,7226,4.238,8144,6.274,8771,8.555,8772,4.578,8773,5.094,8774,4.238,8775,5.094,8776,5.094,8777,3.984,8778,5.094,8779,5.094,8780,5.094,8781,4.238,8782,5.094,8783,4.578,8784,5.094,8785,5.094,8786,5.094,8787,5.094,8788,5.094,8789,5.094]],["tags/A Note About Footnotes",[65,1.677]],["title/Are You In The System Yet, Sir?",[1339,1.925,8790,5.159]],["content/Are You In The System Yet, Sir?",[0,1.423,1,1.286,6,0.659,9,4.807,10,0.55,11,1.439,17,0.675,18,1.599,20,1.876,24,1.327,26,0.839,27,0.627,28,0.87,30,1.457,50,0.826,59,2.133,73,0.763,79,0.574,81,1.621,85,1.556,87,1.087,89,2.524,101,0.679,116,1.14,121,1.998,144,1.138,150,1.195,152,2.449,154,1.074,158,1.066,165,1.39,167,1.933,182,1.126,188,1.903,203,1.062,211,1.69,219,1.599,223,1.583,240,1.746,255,3.639,275,0.967,279,2.101,282,1.556,289,2.828,293,1.001,294,2.524,309,2.282,310,3.623,315,0.978,320,1.351,359,2.828,367,2.563,368,2.133,388,1.577,400,3.202,404,1.087,413,2.398,457,1.899,460,2.303,527,2.685,565,5.167,628,2.065,723,2.101,782,0.89,860,3.323,877,1.421,912,0.782,921,0.859,926,2.503,929,1.439,934,2.101,970,2.997,978,1.739,1159,1.965,1161,2.138,1179,2.685,1237,1.903,1260,1.439,1272,2.685,1276,2.9,1279,1.025,1289,0.83,1291,1.27,1296,1.074,1320,2.997,1334,2.969,1335,3.292,1339,2.418,1346,2.841,1425,2.259,1470,4.517,1502,2.828,1517,2.449,1617,2.03,1634,1.965,1663,1.536,1666,2.101,1677,2.259,1681,4.162,1687,1.39,1710,2.259,1764,1.074,1788,3.323,1795,1.714,1856,4.387,1879,2.503,1903,2.503,1945,1.577,1946,2.754,1950,1.845,1969,0.839,1977,2.997,1983,1.599,2007,1.643,2028,1.818,2034,2.065,2043,2.503,2159,4.162,2177,2.685,2254,2.138,2282,3.401,2297,2.56,2320,2.997,2323,3.094,2349,3.202,2374,2.065,2382,2.997,2404,3.202,2407,2.62,2413,2.259,2433,2.282,2476,2.754,2535,3.323,2541,3.323,2558,1.903,2576,2.065,2594,2.138,2668,2.259,2687,2.685,2726,4.061,2727,2.909,2748,2.997,2798,2.868,2824,3.818,2854,2.685,2894,2.997,2895,4.387,2927,4.297,2949,2.62,2955,4.061,3004,2.773,3026,2.997,3129,3.323,3145,2.349,3367,5.438,4108,4.061,4390,3.818,4402,3.675,4408,4.807,4504,3.202,4714,2.754,4749,3.623,4785,2.909,4794,2.828,5219,3.623,5471,2.449,5473,2.62,5586,3.818,5615,3.818,5878,3.323,5965,3.094,6030,4.297,6393,4.387,6455,4.061,6541,4.387,6618,3.094,6931,3.818,7173,4.061,7212,2.398,7437,3.818,7556,7.562,7577,4.387,7627,4.387,7821,4.387,7996,3.323,8038,3.623,8616,3.818,8791,4.881,8792,7.788,8793,4.881,8794,4.881,8795,3.818,8796,6.779,8797,4.387,8798,8.841,8799,4.881,8800,4.881,8801,4.061,8802,4.881,8803,4.387,8804,4.881,8805,3.462,8806,4.881,8807,4.881,8808,4.881,8809,4.881,8810,4.881,8811,4.881,8812,4.881,8813,4.881,8814,6.779,8815,4.881,8816,6.779,8817,4.881,8818,4.881,8819,3.818,8820,3.818]],["tags/Are You In The System Yet, Sir?",[5471,2.855]],["title/Creativity Self-Assessment Is Nonsense",[1159,1.96,2318,1.553,4626,3.615,6987,3.615]],["content/Creativity Self-Assessment Is Nonsense",[10,0.978,11,2.387,14,0.894,20,1.456,26,1.561,28,1.443,50,0.87,52,0.48,55,1.93,59,1.655,62,2.584,64,2.968,82,3.821,88,2.152,94,1.243,101,0.459,103,1.438,104,1.163,113,1.413,123,2.532,127,3.925,128,3.334,131,1.006,150,1.288,152,2.639,154,1.158,179,0.982,182,1.214,184,1.771,185,2.025,196,1.55,203,1.144,219,2.337,230,2.482,245,3.905,248,3.048,251,1.874,275,1.042,277,1.42,280,3.73,293,1.464,304,2.304,307,3.048,308,3.334,312,2.187,365,1.989,368,2.245,378,1.171,384,1.608,467,3.135,476,1.456,517,1.079,546,3.367,630,1.456,638,3.581,646,3.581,652,3.334,751,4.376,782,1.302,854,2.389,877,1.531,897,1.612,926,2.697,929,2.103,960,3.581,994,2.389,1096,4.454,1146,1.723,1193,2.58,1278,1.7,1289,0.894,1292,2.826,1296,1.158,1335,1.959,1369,2.213,1382,2.225,1541,1.677,1592,2.893,1611,3.944,1659,3.019,1721,1.066,1725,1.874,1755,2.893,1794,2.872,1799,2.968,1903,3.658,1907,3.334,1931,2.919,1965,1.796,1969,1.227,1976,2.532,2078,2.968,2080,3.334,2109,2.758,2183,2.389,2254,2.304,2306,4.202,2318,3.35,2339,4.369,2352,7.321,2358,3.048,2376,2.823,2417,2.893,2471,2.893,2501,4.858,2535,3.581,2536,2.968,2558,2.051,2668,2.435,2710,3.23,2759,2.758,2793,4.114,2858,4.114,2868,4.376,3026,3.23,3037,3.905,3066,4.376,3071,3.23,3144,3.135,3220,3.135,3232,3.45,3241,2.402,3563,4.523,3839,3.45,4465,3.905,4776,4.114,4931,3.581,4947,4.114,4948,3.45,5085,1.723,5093,4.114,5396,3.23,5409,2.697,5733,3.73,5931,3.73,6279,3.905,6285,4.376,6335,4.114,7574,4.114,8108,4.114,8307,3.581,8805,5.06,8819,4.114,8821,5.26,8822,5.26,8823,5.26,8824,4.727,8825,5.26,8826,5.26,8827,5.26,8828,5.26,8829,5.26,8830,4.114,8831,4.376,8832,7.136,8833,5.26,8834,4.376,8835,4.376,8836,4.376,8837,4.727,8838,5.26,8839,5.26,8840,4.727,8841,5.26,8842,5.26,8843,5.26,8844,4.376,8845,4.376,8846,4.114]],["tags/Creativity Self-Assessment Is Nonsense",[2318,1.814]],["title/Favorite Game Meme",[2378,0.995,2700,2.626,8743,4.05]],["content/Favorite Game Meme",[0,1.02,1,2.046,3,1.451,5,0.974,10,0.547,17,1.075,19,0.307,24,0.951,25,1.328,26,0.836,52,0.443,67,1.707,73,0.76,75,0.951,77,1.489,78,3.309,79,0.461,85,1.55,89,1.81,98,1.505,101,0.424,109,1.205,116,1.135,121,1.433,131,0.929,144,0.816,150,1.19,156,1.219,157,1.19,158,0.616,165,0.997,168,1.559,175,1.87,176,2.742,180,2.072,182,1.559,184,1.636,185,1.379,189,2.742,209,2.742,242,1.783,253,2.056,263,0.797,275,1.663,276,1.205,278,1.264,350,3.309,368,1.529,378,1.082,388,1.571,404,1.082,418,1.659,430,1.414,441,1.523,468,3.801,486,2.673,621,1.379,627,1.81,698,3.081,724,1.509,845,3.309,877,1.414,903,1.988,912,0.778,921,1.19,929,1.433,939,3.447,948,2.339,951,1.19,957,2.816,976,2.897,1030,2.249,1031,2.293,1260,1.433,1279,1.763,1283,0.511,1317,1.757,1352,3.253,1420,2.517,1586,1.509,1590,2.742,1608,2.167,1631,1.837,1666,2.092,1711,1.988,1715,2.208,1721,0.985,1742,2.249,1745,4.043,1764,1.07,1938,2.438,1976,2.339,2030,3.188,2034,2.056,2060,3.447,2070,3.465,2125,2.339,2147,2.897,2260,2.897,2306,2.249,2374,2.056,2378,1.864,2379,4.043,2457,2.438,2469,2.897,2594,2.129,2645,1.509,2699,2.555,2700,3.74,2748,4.15,2759,2.549,2779,3.309,2818,2.249,2874,3.081,2912,4.368,2986,2.492,3135,3.188,3189,3.813,3271,2.984,3299,3.801,3317,3.801,3485,2.492,3905,3.081,4284,3.309,4504,3.188,4523,3.801,4527,2.184,4768,2.609,4933,4.368,5085,1.592,5121,3.081,5250,2.742,5337,3.309,5363,3.801,5364,3.801,5401,2.549,5550,4.284,5612,3.801,5642,4.368,5706,3.801,5755,3.188,5789,2.816,5929,4.043,6060,4.043,6259,4.368,6260,4.368,6542,3.447,6595,2.816,6697,3.608,6844,3.188,6909,3.309,7400,5.286,7445,4.043,7508,4.368,7682,3.608,7763,4.043,7765,4.043,7772,4.368,7956,3.801,7975,4.368,8089,3.188,8187,5.286,8385,3.447,8547,3.608,8597,3.608,8669,3.801,8743,5.768,8847,4.86,8848,4.86,8849,4.368,8850,4.86,8851,4.86,8852,4.86,8853,4.86,8854,4.86,8855,4.86,8856,4.86,8857,4.86,8858,4.86,8859,4.86,8860,4.86,8861,4.368,8862,4.86,8863,7.77,8864,4.86,8865,4.86,8866,4.86,8867,3.801,8868,4.86,8869,4.86,8870,4.043,8871,4.86,8872,6.759,8873,4.86,8874,4.86,8875,4.043,8876,4.86,8877,4.86,8878,4.86,8879,4.86,8880,4.86,8881,6.759,8882,4.86,8883,6.759,8884,4.86,8885,4.86,8886,4.86,8887,4.86,8888,4.86,8889,4.86,8890,4.86,8891,3.608,8892,4.86,8893,4.86,8894,4.86,8895,4.86,8896,4.86,8897,4.86,8898,4.86,8899,4.86,8900,4.86,8901,4.86,8902,4.86,8903,4.043,8904,3.447,8905,4.86,8906,4.86,8907,4.368,8908,3.801,8909,4.86,8910,4.368,8911,5.623,8912,4.86,8913,4.86,8914,4.86,8915,4.368,8916,4.86,8917,4.86,8918,3.801,8919,4.86,8920,4.86,8921,4.368,8922,4.368]],["tags/Favorite Game Meme",[2378,1.038]],["title/The HP Sprocket Mini Printer",[2991,3.809,4524,3.195,8923,4.377,8924,4.052]],["content/The HP Sprocket Mini Printer",[1,1.316,4,2.228,10,0.888,14,0.849,16,2.682,17,0.953,19,0.227,24,1.663,28,0.89,47,1.572,50,0.84,52,0.628,53,2.895,56,3.401,79,0.58,83,1.637,87,1.113,88,2.044,90,2.358,92,2.819,94,1.181,95,2.358,97,2.358,99,1.418,104,0.989,107,2.978,109,1.238,112,3.167,122,3.251,132,1.454,133,3.027,154,1.1,158,0.633,172,1.806,184,1.682,203,1.087,209,4.448,219,1.637,223,1.167,240,1.43,293,1.413,315,1.001,320,1.906,361,1.73,369,3.068,375,1.103,404,1.534,426,2.682,430,2.005,442,3.189,457,1.93,561,5.313,564,2.228,580,2.269,627,1.861,646,3.401,677,3.277,722,1.918,728,1.861,749,2.895,782,0.911,813,2.748,897,1.531,906,4.367,908,1.861,912,1.103,929,1.473,934,2.15,938,3.068,982,2.507,1061,3.543,1069,1.473,1131,2.978,1237,1.948,1274,2.385,1276,1.861,1279,1.049,1283,0.725,1291,1.3,1312,2.313,1315,2.044,1317,1.806,1319,2.044,1320,3.068,1332,2.269,1346,1.551,1354,3.456,1369,1.365,1439,5.065,1488,2.729,1501,1.706,1503,3.401,1600,2.313,1606,2.562,1661,3.543,1663,1.572,1666,2.15,1687,1.617,1721,1.013,1778,2.044,1785,1.572,1795,1.755,1811,3.795,1881,2.078,1947,3.532,1993,3.612,2025,3.017,2107,3.277,2149,2.15,2328,2.682,2401,2.978,2413,2.313,2433,2.319,2477,3.709,2512,2.358,2552,3.543,2645,2.139,2648,3.068,2668,3.649,2714,2.507,2717,2.228,2760,3.789,2797,3.277,2805,2.769,2853,2.507,2902,3.908,2928,2.895,2981,3.789,2991,5.388,3013,2.748,3023,4.367,3036,2.269,3083,4.157,3123,3.277,3149,2.62,3241,1.682,3267,3.543,3480,3.068,3509,3.167,3539,2.819,4330,3.401,4389,3.709,4398,2.978,4524,3.277,4591,7.086,4691,2.62,4741,2.978,5103,2.895,5114,4.157,5180,4.367,5244,3.167,5286,4.49,5629,3.401,5787,3.401,5825,3.167,5826,3.068,5828,3.908,5833,4.699,5901,4.473,5917,2.562,6129,4.885,6169,4.157,6281,3.709,6465,3.401,6821,2.978,6853,3.068,6990,5.114,7022,4.23,7707,4.157,7957,3.401,8047,7.086,8260,3.401,8627,4.49,8790,4.157,8824,4.49,8923,7.638,8924,7.417,8925,6.889,8926,6.889,8927,4.997,8928,4.997,8929,4.997,8930,4.997,8931,4.997,8932,4.49,8933,4.997,8934,4.997,8935,6.889,8936,6.889,8937,4.997,8938,4.997,8939,4.997,8940,4.997,8941,4.997,8942,4.997,8943,4.997,8944,4.49,8945,4.997,8946,4.997,8947,4.997]],["tags/The HP Sprocket Mini Printer",[172,2.057]],["title/Parking Machines Design Mistakes",[983,2.254,1945,1.574,2467,2.679,3135,3.195]],["content/Parking Machines Design Mistakes",[0,1.473,1,1.352,6,0.693,10,0.901,14,0.872,17,1.106,18,1.681,19,0.233,22,1.777,24,1.004,27,0.475,30,1.532,48,1.829,50,0.626,52,0.784,67,1.803,76,1.335,79,0.586,87,1.563,94,1.658,98,1.143,99,1.456,101,0.447,121,1.513,144,1.343,149,1.752,154,1.13,158,0.889,165,1.053,176,3.959,179,0.958,189,2.896,194,3.81,203,1.116,208,3.129,210,2.376,211,1.777,216,0.893,217,1.678,223,2.007,233,3.074,240,1.065,255,2.755,259,4.014,264,2.289,271,1.855,275,1.016,279,2.209,282,1.636,293,1.64,296,3.64,315,1.028,318,2.248,367,2.653,368,1.615,400,3.367,412,1.532,431,2.823,442,2.376,443,2.068,484,2.135,677,3.367,711,2.631,724,1.594,749,2.974,782,0.936,797,2.209,877,1.494,910,2.823,912,0.822,932,2.1,933,4.613,978,2.5,983,2.376,1229,1.911,1274,1.552,1276,1.911,1289,0.872,1296,1.13,1300,2.331,1317,2.537,1339,3.007,1346,1.594,1403,2.209,1477,2.575,1490,3.81,1511,2.691,1512,2.521,1557,1.803,1584,2.974,1585,4.014,1586,1.594,1634,2.066,1657,1.573,1659,2.171,1660,2.974,1663,1.615,1687,1.053,1710,3.701,1715,2.331,1720,2.896,1746,2.755,1763,2.135,1764,1.13,1803,2.896,1857,4.014,1876,2.289,1945,2.584,1948,3.367,1969,0.883,1976,2.47,1993,4.873,2077,2.376,2117,3.152,2127,3.059,2208,4.014,2295,3.494,2302,1.97,2344,3.152,2390,2.422,2407,2.755,2413,2.376,2433,1.728,2456,3.152,2467,3.86,2473,3.64,2512,2.422,2605,2.376,2666,3.311,2668,2.376,2748,3.152,2798,2.171,2818,2.376,2859,3.64,2927,3.253,2991,4.014,2998,2.575,3014,4.182,3135,6.58,3243,3.494,3262,2.974,3280,4.613,4007,4.27,4098,2.47,4402,2.422,4524,3.367,4526,3.494,4629,3.494,5083,3.253,5085,1.681,5119,2.171,5127,4.613,5144,3.494,5409,2.631,5514,7.725,5589,3.81,5743,4.014,5905,3.152,5983,3.152,6676,3.494,6821,3.059,7022,4.309,7171,3.367,7643,4.613,7842,4.014,8316,3.64,8363,5.838,8441,4.613,8733,4.613,8924,4.27,8948,5.133,8949,5.133,8950,5.133,8951,5.133,8952,5.133,8953,5.133,8954,7.018,8955,5.133,8956,5.133,8957,5.133,8958,4.613,8959,4.27,8960,5.133,8961,5.133,8962,5.133,8963,4.27,8964,4.27,8965,5.133,8966,5.133,8967,5.133,8968,5.133,8969,5.133,8970,5.133,8971,5.133]],["tags/Parking Machines Design Mistakes",[1945,1.839]],["title/A Triumph For Blogging",[156,1.556,8972,4.85]],["content/A Triumph For Blogging",[0,1.457,6,0.681,11,1.488,14,0.858,17,0.698,19,0.229,20,1.397,21,2.398,23,2.1,25,1.38,27,0.642,42,1.567,48,1.799,50,0.615,52,0.46,58,4.537,65,2.045,74,1.575,75,1.552,81,2.304,101,0.744,103,1.38,109,1.965,126,2.1,133,1.938,135,5.15,149,1.724,150,1.942,156,2.456,158,1.081,165,1.035,168,1.165,172,1.825,179,1.296,180,1.85,185,1.432,216,1.207,232,3.747,253,2.136,254,3.58,277,1.363,278,1.313,288,1.165,312,1.547,320,1.397,321,1.825,359,2.925,361,1.748,375,0.808,378,1.124,388,1.631,404,1.124,459,2.43,460,2.382,476,1.397,487,1.7,527,2.777,606,2.251,649,2.588,677,3.311,757,2.382,919,1.748,929,1.488,942,4.582,945,2.136,973,3.437,978,1.799,982,3.481,994,2.293,995,2.647,1002,3.009,1008,1.938,1025,3.948,1279,1.665,1289,1.179,1296,1.111,1317,1.825,1327,2.183,1401,3.094,1425,2.337,1426,1.507,1470,2.71,1511,2.647,1548,3.2,1634,2.032,1657,1.547,1658,2.533,1671,2.1,1746,2.71,1764,1.111,1785,1.588,1789,3.2,1795,1.773,1811,2.43,1852,2.777,1858,2.136,1881,2.1,1931,2.065,1962,2.546,1965,2.369,2116,2.251,2139,2.588,2149,2.173,2282,2.533,2335,2.925,2344,3.1,2358,2.925,2378,1.266,2387,2.848,2433,1.7,2468,3.2,2576,2.136,2677,3.948,2681,3.009,2782,3.747,2785,2.032,2798,2.136,2805,1.773,2830,3.1,2853,2.533,2867,3.747,2881,2.065,3003,6.236,3090,4.537,3159,3.948,3225,2.588,3254,3.152,3264,2.647,3367,4.02,3496,2.533,4098,2.43,4419,2.925,4426,3.1,4527,2.759,4727,4.2,4756,3.816,4964,4.02,5103,2.925,5119,2.935,5182,3.948,5237,3.2,5369,3.2,5378,3.437,5471,2.533,5549,3.948,5580,4.537,5732,1.773,5807,3.747,5943,3.58,6004,4.2,6545,3.311,6547,3.2,6588,3.009,6844,3.311,6898,3.009,6900,2.647,6933,3.2,6937,4.398,6989,3.437,7084,3.437,7123,3.948,7135,4.537,7136,4.537,7147,3.948,7212,3.408,7289,3.816,7290,5.15,7296,3.948,7445,4.2,7605,3.747,7630,4.537,8049,6.054,8249,3.58,8252,3.948,8668,4.537,8845,7.88,8846,3.948,8973,3.58,8974,5.049,8975,5.049,8976,5.049,8977,5.049,8978,5.049,8979,4.723,8980,4.537,8981,5.049,8982,5.049,8983,5.049,8984,4.537,8985,5.049,8986,5.049,8987,5.049,8988,4.537,8989,4.2,8990,5.049,8991,3.948,8992,5.049,8993,4.537,8994,5.049,8995,5.049,8996,5.049,8997,5.049,8998,4.537,8999,5.049,9000,4.537]],["tags/A Triumph For Blogging",[156,1.428]],["title/Are Digital Gardens Blogs?",[156,1.369,2353,2.269,2911,4.539]],["content/Are Digital Gardens Blogs?",[0,1.04,3,2.343,4,3.054,5,0.992,10,0.771,13,1.558,14,0.842,19,0.225,25,1.354,27,0.784,28,0.882,30,1.479,46,2.801,48,3.017,50,0.835,57,3.249,59,1.558,60,1.129,62,2.433,65,1.46,74,0.914,75,1.536,76,1.289,77,1.518,79,0.338,81,1.645,86,1.79,96,2.837,103,1.354,109,1.228,126,2.06,131,1.5,154,1.507,156,1.718,158,0.627,159,2.723,165,1.016,168,1.143,172,1.79,179,0.925,196,1.46,203,1.077,211,2.371,217,1.184,240,1.028,263,0.812,277,1.848,278,1.289,291,1.962,294,1.844,318,2.169,326,2.433,357,3.512,365,1.872,366,2.539,368,1.558,378,1.103,407,2.095,418,1.691,430,1.441,469,2.794,517,1.404,561,2.952,621,1.943,623,2.724,630,1.895,667,2.658,705,2.44,724,1.538,782,1.249,794,3.139,851,2.243,854,2.25,885,2.597,896,2.87,912,0.793,919,2.371,921,0.872,941,3.372,951,1.922,957,3.968,994,3.11,995,2.597,1007,4.12,1017,3.59,1020,2.475,1069,1.46,1118,6.154,1159,1.993,1216,2.539,1260,1.46,1276,1.844,1278,1.6,1279,1.438,1283,0.72,1296,1.09,1301,2.724,1327,1.558,1331,3.231,1333,1.993,1401,2.209,1422,1.962,1426,1.479,1502,2.87,1511,2.597,1537,2.801,1541,1.579,1557,1.739,1619,3.511,1631,1.872,1657,1.518,1678,2.06,1710,2.292,1763,2.848,1794,2.756,1796,2.947,1872,3.11,1903,2.539,1965,1.691,2007,3.095,2028,1.844,2055,3.676,2183,2.25,2232,4.12,2298,2.597,2303,3.435,2338,2.485,2350,4.451,2352,3.873,2353,3.919,2421,3.676,2452,2.87,2463,2.292,2501,3.372,2540,2.87,2565,2.539,2597,3.676,2646,3.512,2696,2.724,2818,2.292,2911,8.11,3079,3.512,3086,3.873,3222,4.12,3225,2.539,3300,3.372,3318,4.12,3519,1.931,3539,2.794,3984,3.249,4177,3.676,4299,3.873,4419,2.87,4443,2.724,4691,2.597,4741,2.952,4749,3.676,5117,4.12,5525,3.041,5594,3.873,5901,2.485,6320,2.724,6658,3.676,6715,3.873,6758,3.873,6900,2.597,6937,3.139,7024,4.12,7132,4.12,7133,4.12,7289,2.724,7302,4.12,7338,4.12,7840,4.451,8180,4.451,8186,3.676,8522,3.873,8558,4.12,8722,4.451,9001,4.953,9002,4.953,9003,4.953,9004,4.953,9005,4.953,9006,4.953,9007,4.953,9008,4.953,9009,4.953,9010,4.953,9011,4.953,9012,4.953,9013,4.953,9014,6.848,9015,4.953,9016,4.953,9017,4.451,9018,4.451,9019,4.953,9020,4.953,9021,4.953,9022,4.953,9023,4.953,9024,4.953,9025,3.873,9026,4.953,9027,4.953,9028,4.451,9029,4.953,9030,4.953,9031,4.953,9032,4.953,9033,4.953,9034,4.953,9035,4.953,9036,4.953,9037,4.451,9038,4.953]],["tags/Are Digital Gardens Blogs?",[7289,3.13]],["title/Collective Creativity",[851,2.031,2318,1.977]],["content/Collective Creativity",[0,1.436,5,0.991,17,0.946,22,0.945,28,1.397,42,1.535,62,2.429,70,1.598,79,0.337,114,2.79,116,1.155,121,1.458,132,1.439,158,0.626,165,1.014,175,1.368,185,1.403,190,3.507,196,2.312,198,3.671,208,2.205,232,3.671,252,2.057,263,0.811,271,1.788,307,2.865,312,1.515,316,2.593,365,1.87,368,1.556,426,2.654,432,4.114,441,1.114,443,1.458,457,1.386,469,4.424,546,2.333,579,2.023,596,1.737,728,2.547,816,4.487,840,3.135,877,2.463,903,2.023,924,2.535,936,3.671,995,3.587,1011,1.762,1021,3.868,1030,2.289,1031,2.333,1062,1.99,1236,3.292,1274,1.496,1292,1.959,1340,3.135,1523,2.79,1548,4.336,1586,1.535,1599,2.535,1608,2.205,1619,2.535,1682,4.444,1690,4.114,1711,2.023,1742,2.289,1799,2.79,1820,3.671,1907,3.135,1933,2.654,2006,1.842,2062,2.845,2183,2.246,2275,5.339,2306,4.359,2374,2.092,2427,3.244,2434,2.246,2435,2.947,2456,3.037,2468,3.135,2495,4.114,2558,1.928,2642,1.928,2655,3.406,2711,3.135,2794,3.367,2795,3.244,2796,3.037,2804,2.865,2848,4.114,2876,4.021,2928,3.964,2976,3.244,2995,2.72,3014,2.947,3044,2.865,3066,4.114,3098,3.507,3101,3.507,3161,3.244,3190,2.654,3224,2.593,3247,2.593,3824,7.048,3833,4.444,3834,5.35,3911,4.114,4103,3.671,4208,4.657,4309,4.114,4387,3.868,4408,3.507,4410,3.367,4427,4.114,4433,4.114,4436,3.671,4827,4.444,5085,1.62,5168,3.868,5192,3.244,5407,3.244,5537,3.507,5550,3.135,5553,3.868,5732,2.402,6129,3.507,6175,4.114,6181,3.868,6590,3.671,6592,3.135,6657,3.367,6722,3.868,6793,3.671,6865,4.444,6999,3.671,7085,3.507,7147,3.868,7172,5.078,7540,5.078,7676,3.868,7699,4.114,7833,3.671,7893,4.114,8046,4.114,8159,5.691,8252,3.868,8296,3.671,8299,3.868,8306,3.868,8330,5.043,8383,4.657,8384,4.2,8533,3.671,8545,4.114,8655,4.544,8669,3.868,8831,4.114,8844,4.114,8908,3.868,9039,4.945,9040,4.945,9041,4.945,9042,4.114,9043,4.114,9044,7.842,9045,4.945,9046,6.524,9047,4.945,9048,4.945,9049,4.945,9050,4.945,9051,4.444,9052,6.841,9053,4.945,9054,4.444,9055,4.945,9056,4.945,9057,5.691,9058,4.945,9059,4.945,9060,4.945,9061,4.945,9062,4.945,9063,4.114,9064,7.842,9065,4.945,9066,4.945,9067,4.945,9068,4.945,9069,4.945,9070,4.945,9071,4.945,9072,4.945,9073,4.945,9074,4.945,9075,4.444,9076,7.842,9077,4.945,9078,3.671,9079,4.945,9080,4.945,9081,4.945,9082,4.444,9083,4.444,9084,4.945,9085,4.945,9086,4.945,9087,4.945,9088,4.945,9089,4.945,9090,4.444,9091,4.945,9092,4.444,9093,4.945,9094,4.945,9095,4.945,9096,4.945,9097,4.444,9098,4.945,9099,4.945,9100,4.945,9101,4.945,9102,4.945,9103,4.444,9104,4.945,9105,6.841,9106,4.945,9107,4.945,9108,4.945,9109,4.444]],["tags/Collective Creativity",[2318,1.361,4396,1.904]],["title/Dear Student",[3483,3.389]],["content/Dear Student",[3,2.076,5,1.014,8,3.591,10,0.57,17,1.099,21,2.103,24,0.991,27,0.469,28,1.239,42,1.572,50,0.847,70,1.636,77,1.552,78,4.733,79,0.474,82,2.389,83,1.659,87,1.128,88,2.072,91,2.477,94,1.643,103,1.384,104,0.727,109,1.255,113,1.377,136,5.161,142,3.281,144,1.333,149,1.729,150,1.24,158,0.641,160,2.218,179,0.946,182,1.604,188,1.974,199,1.636,203,1.859,219,1.659,242,1.858,252,3.303,263,0.83,278,1.317,282,1.614,288,1.168,293,1.039,297,1.552,324,3.018,350,3.447,361,2.407,365,1.914,367,3.387,368,1.593,404,1.128,416,3.045,437,2.711,452,1.831,457,2.225,467,3.018,487,2.673,518,2.389,520,5.894,579,3.497,632,2.785,698,2.551,728,1.886,851,1.659,881,2.179,897,2.131,903,2.072,920,3.417,921,1.224,922,4.213,942,3.732,985,1.401,987,2.655,1008,1.944,1011,1.804,1012,3.96,1062,2.038,1069,1.493,1172,2.934,1179,2.754,1198,4.144,1216,3.565,1283,0.533,1291,2.066,1296,1.114,1327,1.593,1335,2.957,1397,3.759,1425,2.344,1426,1.512,1451,2.655,1541,1.614,1557,1.778,1577,2.3,1586,1.572,1606,2.596,1623,1.705,1678,2.106,1687,1.039,1711,2.844,1764,1.114,1872,2.3,1876,2.258,1931,2.844,1965,1.729,1973,4.144,1995,2.785,2007,1.705,2063,2.006,2066,3.96,2070,2.596,2176,3.321,2231,2.785,2296,2.934,2310,3.018,2313,3.759,2314,2.596,2337,3.321,2339,2.437,2348,2.934,2447,4.875,2456,3.109,2469,3.018,2480,2.718,2531,3.21,2594,3.478,2665,2.655,2668,3.675,2920,3.96,2973,4.213,3013,2.785,3073,3.759,3088,3.109,3149,2.655,3152,5.405,3194,2.934,3454,3.747,3483,4.555,3489,3.96,3550,3.591,3814,5.418,3838,3.759,3908,2.785,4755,4.213,4801,2.54,4944,3.321,4949,3.759,5090,3.591,5162,3.447,5195,2.655,5333,3.591,5361,2.785,5531,3.109,5537,4.931,5801,3.447,6001,3.447,6279,5.161,6587,3.591,6592,3.21,6702,3.759,7084,3.447,7105,6.248,7149,3.759,7711,6.248,7996,6.572,8597,3.759,8698,3.591,9110,5.064,9111,4.551,9112,4.551,9113,4.551,9114,5.064,9115,5.064,9116,5.064,9117,5.064,9118,5.064,9119,5.064,9120,5.064,9121,5.064,9122,4.551,9123,5.064,9124,4.551,9125,4.551,9126,4.213,9127,5.064,9128,5.064]],["tags/Dear Student",[]],["title/Ditch Scrum, Organize As You See Fit",[246,2.621,275,0.871,1287,3.265,2986,2.255,6971,3.44]],["content/Ditch Scrum, Organize As You See Fit",[1,1.286,2,2.62,10,0.763,14,0.83,16,3.639,17,1.078,19,0.222,20,1.351,24,0.955,27,0.721,28,0.87,42,1.516,47,1.536,50,1.026,51,2.177,87,1.087,89,1.818,91,1.739,94,1.602,102,2.503,104,0.973,113,0.967,126,2.82,131,0.933,132,1.421,138,2.449,144,0.82,145,2.065,147,4.807,150,1.195,154,1.492,159,1.496,175,2.689,182,1.126,184,1.643,196,1.439,203,1.062,211,2.347,246,2.909,268,6.092,275,0.967,276,1.68,277,1.318,293,1.001,295,2.503,302,4.061,312,1.496,315,0.978,321,1.765,367,1.845,378,1.734,388,1.577,404,1.087,437,1.903,441,1.1,457,1.368,471,2.56,517,1.001,564,2.177,580,2.217,627,2.524,630,1.351,667,2.62,688,2.754,705,1.739,711,2.503,724,1.516,782,0.89,827,2.685,903,2.773,912,1.347,919,1.69,951,1.195,969,3.623,976,2.909,983,2.259,987,2.56,1008,1.874,1011,1.739,1146,2.22,1159,1.965,1229,1.818,1260,2.821,1279,1.025,1283,0.713,1287,6.966,1290,2.56,1331,2.303,1335,1.818,1415,3.296,1425,2.259,1426,2.024,1481,2.909,1501,3.018,1537,1.997,1631,1.845,1654,4.387,1677,2.259,1687,1.39,1691,2.997,1720,2.754,1811,2.349,1898,2.828,1941,3.728,1965,2.314,2007,1.643,2031,2.909,2047,3.623,2053,4.875,2078,2.754,2109,2.56,2254,2.969,2390,2.303,2468,4.297,2535,3.323,2558,1.903,2576,2.065,2594,2.138,2611,4.387,2668,2.259,2697,3.623,2709,3.818,2731,4.061,2732,4.061,2733,3.202,2809,3.818,2840,3.623,2925,4.615,2945,2.56,2949,2.62,3004,1.997,3098,3.462,3122,2.828,3130,4.297,3135,3.202,3167,4.061,3241,1.643,3255,3.202,3271,2.997,3278,2.909,4399,4.297,4402,4.318,4435,4.061,4499,3.462,4742,3.818,4765,5.302,4964,5.63,5333,3.462,5542,2.62,5657,2.685,5732,1.714,5741,3.818,5790,3.818,5844,2.503,5936,3.623,6051,4.387,6355,3.818,6413,3.623,6465,5.302,6602,3.623,6657,4.615,6694,3.818,6728,4.061,6811,4.061,6822,3.202,6909,3.323,6971,3.818,7290,3.623,7511,3.818,7849,4.387,8059,4.387,8089,3.202,8306,3.818,8307,3.323,8599,3.818,8771,4.061,8875,4.061,8979,3.323,9129,4.881,9130,4.881,9131,4.881,9132,4.881,9133,4.881,9134,3.818,9135,6.779,9136,4.881,9137,4.061,9138,4.881,9139,4.881,9140,4.881,9141,4.881,9142,4.881,9143,4.881,9144,4.881,9145,4.881,9146,6.779,9147,5.64,9148,4.881,9149,4.881,9150,4.881,9151,4.881,9152,4.881,9153,4.881]],["tags/Ditch Scrum, Organize As You See Fit",[4451,3.607]],["title/Ever-increasing Work Email Spam",[104,0.699,2405,3.615,3236,2.344,6030,3.087]],["content/Ever-increasing Work Email Spam",[0,1.035,5,1.778,10,0.555,21,1.491,22,0.943,28,1.216,52,0.623,54,3.66,60,1.124,69,1.923,76,1.283,79,0.605,82,2.327,88,2.017,94,1.165,95,2.327,101,0.683,104,1.398,113,0.976,119,2.939,130,3.755,131,0.943,150,1.672,153,1.683,158,1.071,165,1.011,172,1.783,175,1.889,182,1.138,188,1.923,193,2.422,200,1.985,201,2.939,203,1.072,213,2.528,216,0.858,217,1.179,224,3.497,252,2.051,275,0.976,297,2.092,314,2.939,315,0.988,320,1.364,375,1.093,412,1.472,455,1.683,459,2.373,479,3.126,480,3.856,491,2.199,517,1.011,565,4.192,667,2.647,724,1.531,877,1.435,913,2.474,921,0.868,942,2.647,945,2.086,951,1.208,960,3.357,982,2.474,1030,2.282,1088,2.712,1179,1.953,1236,2.373,1237,1.923,1260,1.453,1279,1.035,1283,0.889,1289,1.16,1292,1.953,1296,1.502,1309,3.234,1332,2.24,1333,1.985,1345,3.66,1346,1.531,1397,3.66,1415,1.732,1420,1.836,1470,3.664,1497,3.028,1542,3.357,1552,2.528,1589,2.282,1594,2.857,1631,1.864,1645,2.474,1648,1.572,1659,2.086,1663,2.148,1675,2.282,1678,2.84,1723,4.431,1725,1.757,1744,2.373,1765,4.647,1807,3.028,1876,2.199,1879,3.5,1929,3.856,1952,2.373,1965,1.683,1969,1.346,1972,2.528,1985,2.712,2047,3.66,2055,3.66,2059,2.939,2139,2.528,2231,2.712,2256,3.856,2285,3.856,2289,2.504,2290,4.431,2297,3.58,2302,1.893,2385,3.234,2405,5.067,2412,3.028,2419,3.856,2447,4.192,2460,3.028,2468,3.126,2530,3.028,2533,2.857,2728,2.939,2805,2.398,2951,3.126,3012,3.234,3034,4.478,3163,2.528,3254,2.24,3319,3.5,3367,5.453,3454,4.441,3482,3.497,3483,2.327,3499,4.102,3526,3.856,3539,2.782,3557,4.431,3559,2.586,3814,3.126,3822,5.067,3845,3.856,4299,6.124,4388,3.66,4402,2.327,4419,2.857,4427,4.102,4446,4.102,4463,4.069,4644,2.939,4691,3.58,4755,4.102,4762,3.234,4910,3.66,4944,3.234,5192,3.234,5282,2.712,5361,2.712,5375,4.069,5381,3.357,5473,2.647,5552,3.234,5704,3.126,5732,1.732,5911,4.431,5969,4.841,6030,4.327,6074,2.782,6554,3.66,6684,3.497,6702,3.66,7038,3.856,7055,3.357,7088,5.339,7211,4.102,8039,3.497,8048,3.856,8249,3.497,8316,4.841,8605,4.102,8998,4.431,9154,4.931,9155,4.931,9156,4.931,9157,4.931,9158,6.61,9159,4.431,9160,4.931,9161,4.431,9162,4.931,9163,4.931,9164,4.931,9165,4.431,9166,4.931,9167,6.135,9168,4.431,9169,4.931,9170,7.83,9171,4.102,9172,4.931,9173,4.431,9174,4.431,9175,4.431,9176,4.931,9177,4.931,9178,4.931,9179,4.931,9180,4.931]],["tags/Ever-increasing Work Email Spam",[4463,3.391]],["title/Very Old and Somewhat Old Mood Boards",[28,0.714,853,1.805,4657,2.542,6190,2.324,8108,3.136]],["content/Very Old and Somewhat Old Mood Boards",[0,1.426,6,1.194,10,0.765,13,2.137,17,1.079,19,0.222,20,1.355,22,0.936,23,2.036,24,0.958,25,1.856,27,0.722,28,0.872,48,1.744,52,0.711,59,1.54,60,1.116,61,2.356,79,0.334,87,1.09,98,1.09,101,0.592,103,1.338,112,3.103,116,1.143,130,2.692,145,2.071,148,1.54,150,1.199,154,1.077,156,1.228,159,1.5,160,2.144,163,3.211,175,1.355,180,2.246,203,1.065,217,1.171,230,2.31,242,1.796,249,3.333,253,2.071,263,1.382,266,3.029,271,1.77,288,1.13,289,2.837,303,3.634,312,2.582,315,0.981,318,2.144,320,1.355,321,1.77,361,2.352,375,0.784,392,2.356,404,1.09,409,1.372,436,4.306,441,1.103,443,1.443,450,2.224,460,2.31,478,1.909,484,2.036,621,2.213,667,2.628,704,3.472,762,3.472,782,0.893,845,3.333,851,2.225,853,2.582,897,1.5,909,2.036,912,0.784,913,2.456,915,2.692,929,1.443,932,2.003,948,2.356,950,3.269,952,3.472,956,3.472,989,3.006,995,2.567,1011,1.744,1062,2.734,1066,2.356,1068,3.333,1191,3.006,1216,2.51,1289,0.832,1380,3.472,1401,2.183,1426,1.462,1557,1.719,1586,1.52,1590,2.762,1614,2.003,1631,1.851,1663,1.54,1671,2.036,1678,2.036,1687,1.004,1721,0.992,1764,1.495,1795,1.719,1799,2.762,1803,3.832,1809,3.472,1820,5.042,1938,2.456,1950,1.851,1962,1.796,1983,1.603,2025,2.144,2034,2.071,2048,3.333,2063,2.69,2125,2.356,2176,3.211,2214,2.762,2231,2.692,2282,2.456,2303,4.44,2310,2.917,2328,2.628,2378,1.239,2396,2.628,2415,3.205,2426,2.837,2454,2.224,2464,3.211,2485,3.211,2495,4.073,2521,5.312,2602,3.472,2623,3.333,2644,3.472,2756,2.107,2759,2.567,2785,1.97,2793,3.829,2798,2.071,2805,1.719,2840,3.634,2925,3.333,2949,2.628,2981,2.692,3130,3.103,3149,3.562,3163,2.51,3192,3.333,3265,4.171,3519,1.909,3523,4.455,3814,4.306,4193,3.936,4320,4.455,4480,3.103,4527,1.582,4657,5.61,4719,3.829,4794,3.936,4836,3.829,5085,1.603,5088,5.651,5266,4.073,5361,3.736,5414,3.333,5525,3.006,5532,3.829,5552,3.211,5732,1.719,5754,4.073,6095,4.073,6169,4.073,6174,3.472,6190,4.882,6471,3.103,6738,4.073,6928,3.829,7212,2.405,7293,3.472,7356,4.073,7755,3.333,7777,5.312,7903,4.399,8320,3.472,8327,4.073,8467,3.829,8616,3.829,8664,4.399,8702,5.312,9181,4.895,9182,4.895,9183,4.895,9184,4.399,9185,4.895,9186,4.895,9187,4.895,9188,4.895,9189,4.895,9190,4.895,9191,4.895,9192,4.895,9193,3.829,9194,6.104,9195,4.399,9196,4.895,9197,4.895,9198,4.895,9199,4.895,9200,4.895,9201,4.399,9202,4.073,9203,4.073,9204,4.895,9205,4.895,9206,4.399,9207,4.895,9208,4.895,9209,4.895,9210,4.895,9211,4.073,9212,6.104,9213,4.895,9214,4.895]],["tags/Very Old and Somewhat Old Mood Boards",[]],["title/Power Usage Effectiveness",[728,2.032,1179,2.161,1552,2.797]],["content/Power Usage Effectiveness",[6,0.655,19,0.221,21,1.468,22,0.928,24,0.95,27,0.449,30,2.016,40,2.384,70,1.568,73,1.055,79,0.461,84,2.435,87,1.081,94,1.983,98,1.729,99,1.377,101,0.846,109,1.203,116,1.133,132,1.412,133,1.863,148,1.527,154,1.068,157,1.189,158,0.984,173,3.442,175,1.343,196,1.431,199,2.182,203,1.056,208,3.011,216,0.845,217,1.16,221,3.442,223,1.576,235,6.097,240,1.007,263,1.273,273,5.286,277,1.31,282,2.153,287,2.738,294,1.807,309,2.273,312,1.487,330,2.126,361,1.68,367,1.835,378,1.081,384,1.521,409,1.36,457,1.892,464,3.442,486,2.669,728,3.285,782,0.885,797,2.906,912,0.777,921,1.189,924,2.488,951,1.189,985,1.868,987,2.545,993,2.384,1146,1.59,1192,2.29,1260,1.431,1276,2.514,1279,1.019,1283,0.511,1289,0.825,1302,2.98,1306,4.28,1315,2.762,1331,2.29,1346,3.154,1348,2.053,1398,2.204,1401,2.164,1421,3.183,1511,2.545,1552,3.981,1589,3.125,1613,2.435,1623,1.634,1633,2.164,1634,1.953,1655,1.985,1657,1.487,1676,2.98,1719,2.246,1759,5.506,1790,2.812,1952,2.336,1972,2.488,1973,2.892,1993,2.545,1995,2.669,1999,2.384,2007,1.634,2010,2.892,2012,2.435,2015,4.168,2043,3.462,2048,3.304,2063,1.922,2117,2.98,2144,2.738,2254,2.126,2338,2.435,2355,3.603,2365,3.304,2410,4.788,2412,2.98,2434,2.204,2463,2.246,2516,3.304,2533,2.812,2590,2.98,2666,2.29,2675,3.796,2773,3.796,2969,2.246,3021,4.596,3077,2.204,3145,2.336,3208,3.796,3233,3.183,3264,2.545,3483,2.29,4098,2.336,4389,3.603,4402,2.29,4485,3.796,4544,5.617,4549,4.071,4713,3.304,4739,4.362,4746,3.603,4756,2.336,4759,4.038,4762,3.183,4910,3.603,5390,4.038,5562,5.714,5804,2.98,5812,3.304,5819,3.603,5844,2.488,5983,4.146,6104,4.788,6122,5.593,6587,3.442,6595,2.812,6658,3.603,6676,3.304,6940,4.038,7022,2.98,7212,2.384,7818,4.362,7897,3.603,7987,3.603,8089,3.183,8422,3.796,8680,6.068,9215,4.853,9216,4.853,9217,9.37,9218,4.853,9219,4.853,9220,6.752,9221,6.752,9222,4.362,9223,4.853,9224,6.752,9225,4.362,9226,4.853,9227,4.853,9228,4.853,9229,4.853,9230,4.853,9231,4.362,9232,6.978,9233,4.362,9234,6.752,9235,4.853,9236,4.853,9237,4.853,9238,4.853,9239,4.362,9240,4.853,9241,4.853,9242,4.853,9243,4.853,9244,4.853,9245,4.853,9246,4.853,9247,4.362,9248,4.362,9249,4.853,9250,4.853,9251,4.362,9252,4.853,9253,4.853]],["tags/Power Usage Effectiveness",[]],["title/Questionable Game Publishing Methods",[126,2.026,1335,1.814,2378,0.888,3519,1.899]],["content/Questionable Game Publishing Methods",[4,2.174,11,1.437,18,1.597,19,0.308,22,1.295,24,1.325,27,0.627,31,3.318,50,0.594,56,3.318,60,1.111,69,1.9,74,0.9,76,1.268,80,2.681,89,1.815,94,1.987,101,0.59,109,1.208,114,3.821,131,1.488,153,1.664,157,1.194,175,1.349,180,1.3,183,3.318,184,1.641,185,1.383,196,1.437,211,2.345,212,3.197,241,2.865,255,3.635,263,0.799,278,1.268,288,1.125,293,1.725,315,1.357,320,1.349,367,1.843,384,1.526,392,2.346,396,3.09,403,2.174,418,1.664,430,1.971,435,2.098,450,2.214,451,3.812,452,1.762,465,1.843,481,2.616,517,1.389,518,2.3,539,3.812,561,4.036,586,2.915,627,3.131,630,1.349,722,2.6,782,0.889,786,2.905,851,1.597,853,1.494,934,2.915,940,3.197,1008,1.871,1029,2.993,1044,2.3,1062,2.726,1088,2.681,1161,2.135,1229,1.815,1283,0.885,1289,1.151,1291,1.268,1296,1.073,1297,2.681,1315,1.994,1322,3.618,1348,2.865,1380,3.457,1398,2.214,1420,2.898,1422,1.931,1430,3.327,1451,2.556,1493,2.905,1505,2.556,1512,3.327,1523,2.75,1537,2.77,1541,1.554,1589,4.233,1606,2.499,1645,3.397,1659,2.062,1663,1.533,1710,2.256,1711,1.994,1794,1.962,1895,3.812,1938,2.445,1969,0.838,2006,1.815,2139,2.499,2346,2.499,2353,2.027,2378,1.772,2396,2.616,2433,1.641,2684,4.177,2715,2.993,2756,2.915,2757,3.457,2760,2.681,2798,2.062,2804,2.824,2827,3.197,2853,2.445,2871,4.38,2894,2.993,2974,4.38,2989,3.457,2996,2.445,3035,2.214,3080,4.055,3163,2.499,3485,2.499,3519,3.279,3527,3.318,3839,3.197,3843,4.055,4402,3.672,4417,2.499,4462,3.812,4480,3.09,4502,2.905,4711,4.38,4794,2.824,4801,2.445,4805,3.457,5110,2.445,5128,2.993,5174,2.062,5192,3.197,5243,3.318,5337,3.318,5361,2.681,5609,2.993,5629,3.318,5655,2.824,5657,2.681,5726,3.318,5829,2.824,5864,2.993,5869,3.197,5901,2.445,5917,2.499,5979,3.618,6013,3.318,6189,3.318,6262,6.994,6348,6.911,6554,3.618,6821,2.905,6857,3.318,6884,3.318,6978,3.812,7212,2.394,7682,3.618,7705,5.634,7725,3.812,7741,3.457,7755,3.318,7904,4.38,7921,4.055,7996,3.318,8039,4.802,8187,6.086,8489,4.38,9254,4.874,9255,4.874,9256,4.38,9257,5.634,9258,6.086,9259,4.874,9260,6.086,9261,4.874,9262,4.874,9263,4.874,9264,4.874,9265,4.874,9266,4.874,9267,4.874,9268,4.874,9269,3.812,9270,4.055,9271,4.874,9272,4.874,9273,4.874,9274,4.874,9275,4.874,9276,4.38,9277,4.874,9278,6.772,9279,4.874,9280,4.874,9281,4.055,9282,4.874,9283,4.38,9284,4.874,9285,4.874,9286,6.772,9287,4.874,9288,6.086,9289,4.874,9290,4.874,9291,4.874,9292,4.874]],["tags/Questionable Game Publishing Methods",[2378,1.038]],["title/The Lost Art of Being Lost",[361,1.686,949,3.47,2306,2.254]],["content/The Lost Art of Being Lost",[1,1.312,3,2.053,7,1.942,14,0.847,21,1.507,24,0.975,25,1.361,27,0.461,31,3.391,40,2.447,43,3.698,50,0.838,52,0.454,60,1.136,65,2.027,69,1.942,73,0.779,76,1.296,79,0.579,98,1.109,101,0.686,103,1.361,109,2.282,144,0.837,148,3.025,150,1.684,157,1.22,158,0.997,165,1.741,173,3.533,175,1.379,176,2.811,185,1.413,188,1.942,192,3.698,196,2.027,210,2.306,216,1.196,218,3.698,223,1.163,225,3.268,242,1.828,253,2.908,255,2.674,266,2.222,271,2.485,277,1.345,293,1.022,308,3.158,309,2.315,310,3.698,326,2.447,361,1.725,375,0.798,395,2.398,408,2.811,441,1.123,442,2.306,455,1.701,457,1.396,467,2.969,490,2.612,491,3.066,567,4.097,632,2.74,652,4.358,705,1.775,728,1.855,762,3.533,919,1.725,932,2.813,942,2.674,945,2.107,949,5.065,1018,3.533,1029,3.059,1030,2.306,1045,2.612,1161,2.182,1216,4.036,1260,2.027,1272,3.781,1276,1.855,1283,0.524,1289,0.847,1291,1.296,1299,2.887,1307,2.447,1382,2.107,1401,2.222,1517,2.499,1548,3.158,1557,2.415,1577,2.263,1606,2.554,1613,2.499,1614,2.038,1623,1.677,1657,1.527,1718,2.674,1721,1.596,1737,3.268,1852,2.74,1931,2.813,1932,2.969,1972,2.554,2001,4.51,2006,1.855,2007,1.677,2053,2.499,2378,1.254,2397,2.969,2415,3.244,2429,5.103,2433,1.677,2475,1.855,2480,2.674,2642,1.942,2660,2.554,2670,3.698,2696,2.74,2853,2.499,2903,3.896,2904,4.221,2909,4.51,2959,2.969,2976,3.268,3004,2.038,3012,3.268,3077,2.263,3088,3.059,3135,3.268,3144,4.097,3149,2.612,3152,3.391,3159,3.896,3166,4.68,3180,6.611,3220,4.097,3232,3.268,3523,3.268,3937,3.059,4422,3.158,4654,4.145,4801,2.499,4930,4.145,5085,1.632,5110,2.499,5121,3.158,5134,3.896,5283,2.263,5383,4.145,5517,4.145,5552,3.268,5562,4.68,5655,2.887,5733,3.533,5742,4.145,5817,4.145,6137,4.145,6151,3.391,6246,3.698,6563,5.377,6676,3.391,6702,3.698,6774,5.645,6893,4.145,6940,4.145,6987,3.698,7014,3.698,7077,3.698,7172,3.698,7853,3.698,8316,3.533,8384,3.059,8432,4.145,8444,4.477,8478,3.896,8613,4.477,8795,3.896,8904,3.533,9124,4.477,9293,4.982,9294,4.982,9295,6.875,9296,9.617,9297,4.982,9298,6.875,9299,4.982,9300,4.982,9301,4.982,9302,4.982,9303,4.982,9304,4.477,9305,4.982,9306,4.982,9307,4.982,9308,4.477,9309,4.982,9310,4.982,9311,4.982,9312,4.982,9313,4.982]],["tags/The Lost Art of Being Lost",[]],["title/A 5.25\" Gobliins 2 Surprise",[131,0.931,189,2.748,6299,3.615,9314,4.377]],["content/A 5.25\" Gobliins 2 Surprise",[0,0.965,3,1.372,5,0.921,6,0.877,7,1.792,10,0.518,14,0.781,16,2.467,19,0.343,24,0.9,27,0.759,30,1.372,36,2.05,39,2.847,50,0.56,59,1.446,62,2.258,64,3.667,79,0.314,81,2.158,85,1.466,87,1.024,91,2.316,94,1.086,101,0.754,104,0.66,123,2.212,131,1.243,148,1.446,156,1.153,158,1.038,162,2.914,175,1.798,179,0.858,197,4.254,201,2.739,203,1,204,3.824,216,0.8,223,1.073,263,0.754,276,1.139,295,2.357,315,0.921,320,1.272,368,1.446,384,1.036,409,1.288,422,2.316,430,1.338,464,3.26,549,3.489,586,1.978,630,1.798,782,0.838,853,2.31,908,1.712,912,1.041,913,3.26,930,3.015,940,3.015,949,2.357,983,2.127,985,2.086,1041,5.407,1044,2.169,1062,1.85,1069,2.416,1146,1.506,1172,2.663,1237,1.792,1277,3.129,1289,0.781,1307,2.258,1319,2.659,1420,2.808,1425,2.127,1430,4.248,1439,2.739,1451,2.41,1537,1.88,1541,1.466,1557,1.614,1614,1.88,1617,1.912,1655,1.88,1687,0.943,1710,3.008,1721,0.932,1764,1.012,1796,1.978,1881,1.912,1904,3.824,1912,3.129,1938,2.306,1945,1.485,1965,1.569,2004,2.593,2062,1.912,2063,1.821,2064,2.822,2127,2.739,2193,2.528,2226,3.412,2320,3.991,2378,1.748,2430,3.595,2497,2.914,2576,1.944,2597,3.412,2605,2.127,2610,2.822,2645,1.427,2699,1.738,2700,2.212,2710,2.822,2714,2.306,2757,4.609,2798,2.749,2800,3.595,2854,2.528,2874,2.914,2890,3.595,2893,3.129,2938,3.26,2952,2.663,2989,3.26,3013,2.528,3174,3.129,3189,2.593,3225,2.357,3319,2.357,3908,2.528,4098,2.212,4419,2.663,4527,2.794,4533,3.412,4549,2.41,4574,3.412,4753,2.822,4802,2.914,4806,3.412,5131,3.667,5168,3.595,5180,4.12,5359,2.467,5361,2.528,5376,2.41,5473,2.467,5567,4.131,5609,2.822,5623,3.129,5655,2.663,5665,3.129,5722,3.26,5755,4.263,5760,3.412,5768,5.347,5770,2.528,5807,3.412,5808,3.595,5812,3.129,5819,6.419,5829,2.663,5848,4.946,5883,4.12,5905,2.822,5929,5.407,5941,5.083,5951,7.365,5965,2.914,6074,2.593,6177,3.595,6286,3.26,6287,3.824,6299,4.824,6316,4.12,6317,5.897,6347,5.841,6348,5.083,6379,5.841,6426,3.824,6471,4.12,6618,2.914,6694,5.083,6700,3.824,6863,3.595,7138,4.131,7223,3.595,7301,3.824,7444,4.131,7467,5.841,7697,3.412,8049,3.26,8089,3.015,8655,2.663,8743,3.412,8744,4.131,8795,3.595,8915,4.131,8988,4.131,8989,3.824,9078,3.412,9239,4.131,9251,4.131,9314,5.841,9315,4.131,9316,4.597,9317,4.597,9318,4.597,9319,4.597,9320,4.597,9321,4.131,9322,4.597,9323,5.407,9324,6.499,9325,4.597,9326,4.597,9327,4.597,9328,6.499,9329,4.597,9330,4.597,9331,4.597,9332,4.597,9333,3.824,9334,4.131,9335,4.597,9336,4.597,9337,4.597,9338,4.597,9339,4.597,9340,4.597,9341,6.499,9342,4.597,9343,4.597,9344,4.597,9345,4.597,9346,4.597,9347,4.597,9348,4.597,9349,4.597,9350,4.597,9351,4.597,9352,4.131,9353,4.131,9354,4.597,9355,4.131,9356,4.597,9357,4.131,9358,4.597,9359,4.131]],["tags/A 5.25\" Gobliins 2 Surprise",[2378,1.038]],["title/A Treatise on Leavened Waffles",[8718,4.539,9360,4.903,9361,5.456]],["content/A Treatise on Leavened Waffles",[10,0.876,17,0.673,19,0.307,22,0.93,27,0.626,28,1.385,30,1.453,52,0.444,60,1.11,81,1.616,83,1.594,86,1.76,88,1.991,94,1.15,101,0.733,140,3.313,142,2.297,144,1.136,150,1.192,156,1.221,157,1.192,158,0.617,168,1.123,176,2.746,179,0.909,182,1.561,183,3.313,184,1.639,191,2.989,193,2.391,204,6.469,211,1.685,216,0.847,223,1.58,230,2.297,233,2.132,249,3.313,263,1.275,275,0.964,295,4.309,309,1.639,311,1.491,331,6.08,363,2.677,366,2.495,378,1.084,407,2.059,412,1.453,430,1.416,478,1.898,622,2.442,698,1.786,724,1.511,728,1.812,840,3.085,904,3.313,909,3.234,913,2.442,921,0.857,932,1.991,940,3.193,941,3.313,951,1.192,966,3.613,967,4.374,976,2.901,996,4.606,997,7.15,1017,2.552,1161,2.963,1213,2.82,1240,2.677,1267,2.391,1283,0.512,1291,1.266,1296,1.071,1364,3.193,1420,1.812,1426,1.453,1501,1.662,1512,2.391,1533,2.253,1541,1.552,1583,1.531,1586,2.609,1608,2.17,1614,1.991,1617,2.024,1631,1.84,1648,1.552,1666,2.095,1687,0.998,1711,1.991,1744,2.343,1764,1.071,1785,1.531,1787,2.677,1792,4.049,1796,2.095,1807,2.989,1819,5.772,1939,2.746,1950,1.84,1957,3.613,1972,2.495,2010,2.901,2028,1.812,2034,2.059,2109,2.552,2117,2.989,2175,3.313,2282,2.442,2374,2.059,2397,2.901,2415,2.297,2471,2.677,2530,2.989,2540,2.82,2558,1.898,2565,2.495,2576,2.059,2582,3.721,2669,2.901,2753,2.989,2770,3.807,2774,4.374,2810,4.049,2817,4.049,2845,6.238,2859,4.798,2910,4.374,2962,3.193,2980,2.901,2981,2.677,3001,4.374,3496,3.394,3533,4.049,4688,3.613,4700,5.022,5102,4.798,5154,3.613,5457,7.334,5545,5.291,5629,3.313,5878,4.606,5983,4.154,6190,2.82,6332,3.613,6680,4.374,6703,3.452,6884,3.313,7684,4.374,7842,3.807,8007,6.08,8222,4.374,8224,7.15,8490,4.049,8494,4.374,8718,8.741,8719,4.374,8964,4.049,8989,5.628,9362,4.867,9363,6.766,9364,4.867,9365,4.867,9366,4.867,9367,4.867,9368,4.867,9369,4.374,9370,4.867,9371,4.867,9372,4.867,9373,4.867,9374,4.867,9375,4.867,9376,4.867,9377,4.374,9378,7.776,9379,7.776,9380,4.867,9381,4.867,9382,8.216,9383,4.867,9384,4.374,9385,4.867,9386,4.867,9387,4.867,9388,4.867,9389,4.867,9390,4.374,9391,4.867,9392,4.374,9393,6.766,9394,6.08,9395,4.867,9396,4.867,9397,4.867,9398,4.867,9399,4.867,9400,7.776,9401,4.867,9402,4.867,9403,4.867,9404,4.867]],["tags/A Treatise on Leavened Waffles",[909,2.367]],["title/Constraint-based Creativity",[1278,1.763,1683,4.05,2318,1.739]],["content/Constraint-based Creativity",[0,1.418,7,2.632,13,1.527,22,0.928,25,1.326,29,1.916,42,1.507,48,1.729,50,0.592,51,2.164,52,0.708,65,1.431,75,0.95,76,1.757,79,0.53,85,1.547,101,0.423,104,0.697,126,2.019,132,1.412,157,1.189,158,0.855,165,0.995,175,1.343,176,2.738,187,3.183,196,1.431,211,1.68,213,2.488,216,0.845,219,2.543,233,2.126,240,1.007,263,1.107,289,2.812,309,1.634,314,4.024,315,0.972,318,2.126,320,1.343,323,5.763,369,2.98,403,2.164,404,1.081,407,2.053,441,1.094,443,1.99,452,1.754,457,1.36,465,2.553,471,2.545,549,2.605,606,2.164,614,2.605,621,1.377,622,2.435,724,2.096,728,2.514,782,0.885,877,1.412,930,3.183,949,2.488,951,1.189,1085,4.038,1188,3.304,1309,3.183,1325,2.812,1327,1.527,1501,1.657,1557,2.371,1584,2.812,1677,2.246,1681,2.98,1742,2.246,1806,4.168,1857,3.796,1945,1.568,1946,3.809,1951,3.796,1965,2.305,1990,4.429,1991,4.362,2006,2.514,2024,2.605,2025,2.126,2053,2.435,2165,2.089,2175,3.304,2183,2.204,2289,2.477,2303,2.435,2306,3.594,2339,3.25,2346,2.488,2352,6.565,2378,0.885,2412,2.98,2421,5.763,2467,2.669,2503,4.038,2550,3.796,2650,3.796,2659,4.038,2660,2.488,2687,2.669,2744,4.362,2759,2.545,2770,3.796,2805,1.704,2818,3.125,2855,3.796,2862,4.038,2889,4.362,2891,4.429,2916,3.304,2939,4.429,2995,2.669,3011,4.362,3019,2.98,3071,2.98,3077,2.204,3134,4.038,3200,4.038,3455,3.442,3518,2.98,3814,3.076,4298,3.076,4309,4.038,4436,3.603,4457,3.183,4658,3.796,4694,3.442,4750,4.362,4942,3.796,5083,3.076,5282,3.713,5369,3.076,5543,3.796,5562,3.304,5690,3.304,6104,3.442,6415,3.912,6588,2.892,6602,3.603,6647,3.076,6702,3.603,6763,3.603,7007,4.362,7147,3.796,7381,3.796,7676,3.796,8087,4.362,8181,4.038,8186,5.012,8296,3.603,8312,4.038,8330,5.002,8385,3.442,8396,4.362,8423,4.038,8533,3.603,8655,2.812,8658,4.362,8687,4.038,8760,4.362,8830,3.796,8831,5.617,8835,4.038,8846,3.796,8907,4.362,9090,4.362,9097,6.068,9103,4.362,9111,4.362,9112,4.362,9352,4.362,9405,4.853,9406,4.853,9407,4.853,9408,4.853,9409,4.853,9410,4.853,9411,4.853,9412,4.853,9413,6.983,9414,4.038,9415,4.853,9416,4.853,9417,6.978,9418,4.038,9419,4.362,9420,4.853,9421,6.752,9422,6.752,9423,5.617,9424,4.038,9425,4.853,9426,6.752,9427,4.038,9428,4.362,9429,4.853,9430,4.853,9431,4.853,9432,6.752,9433,4.853,9434,4.853,9435,4.853,9436,4.853,9437,4.853,9438,4.853,9439,7.765,9440,4.853,9441,4.853,9442,4.853,9443,4.853,9444,7.765,9445,6.068,9446,4.362,9447,4.853,9448,4.853,9449,4.853,9450,6.752,9451,4.853,9452,4.853,9453,4.853,9454,4.853,9455,4.853,9456,4.853,9457,4.853,9458,4.853,9459,4.853,9460,4.853,9461,4.853,9462,4.853,9463,4.853,9464,4.853,9465,4.853,9466,4.853,9467,4.362]],["tags/Constraint-based Creativity",[2318,1.361,4396,1.904]],["title/Creative Critical Thinking",[113,1.08,2318,1.739,5396,3.35]],["content/Creative Critical Thinking",[3,2.024,10,0.55,18,1.599,21,1.476,24,1.524,26,1.166,27,0.627,30,1.457,32,3.462,42,1.516,76,1.27,79,0.574,87,1.087,100,2.449,101,0.426,113,0.967,116,1.14,122,2.303,158,0.859,165,1.001,187,3.202,199,1.577,213,2.503,215,3.462,219,1.599,223,1.583,240,1.013,244,3.623,246,4.642,259,3.818,264,2.177,266,2.177,275,0.967,276,1.21,277,1.318,278,1.764,285,3.094,309,1.643,315,1.358,338,3.623,361,2.347,365,1.845,375,0.782,378,1.087,403,2.177,404,1.087,407,2.065,423,4.061,444,2.415,527,2.685,739,2.754,816,3.202,853,1.496,877,1.973,915,2.685,920,3.352,937,2.754,941,4.615,951,1.195,968,3.623,987,2.56,989,2.997,998,2.503,1008,1.874,1159,1.965,1234,2.503,1289,1.323,1307,2.398,1327,1.536,1335,3.133,1439,2.909,1477,2.449,1541,1.556,1583,1.536,1590,2.754,1681,2.997,1687,1.39,1714,2.997,1715,2.217,1737,3.202,1763,2.03,1854,3.202,1889,2.909,1901,3.202,1903,2.503,1907,3.094,1965,1.666,1983,1.599,1995,2.685,2006,1.818,2115,2.259,2302,2.602,2328,3.639,2339,2.349,2406,3.462,2426,2.828,2434,2.217,2447,2.997,2485,3.202,2536,2.754,2537,3.818,2565,2.503,2576,2.065,2594,2.969,2602,3.462,2615,6.091,2620,3.818,2633,4.387,2655,1.965,2660,2.503,2661,3.639,2709,3.818,2772,3.818,2881,1.997,2935,3.462,2948,2.828,2980,2.909,2987,3.818,3008,3.323,3073,3.623,3129,3.323,3158,4.387,3181,2.909,3219,4.061,3301,4.061,3311,3.462,3834,3.818,3845,3.818,4050,5.302,4428,2.909,4457,3.202,5083,3.094,5121,3.094,5337,3.323,5367,2.685,5432,5.302,5457,3.818,5537,3.462,5540,2.754,5551,3.818,5835,3.818,6407,3.818,6413,5.032,6455,5.64,6481,5.302,6595,2.828,7084,3.323,7085,3.462,7172,3.623,7211,4.061,7364,3.623,7642,4.387,7676,3.818,7699,4.061,7763,4.061,7972,3.818,8091,4.061,8094,4.387,8095,4.387,8123,3.818,8330,4.04,8406,6.479,8407,4.387,8606,4.061,8655,2.828,8659,3.818,8803,4.387,9046,4.061,9075,4.387,9082,4.387,9092,4.387,9392,4.387,9468,3.818,9469,4.881,9470,4.881,9471,4.881,9472,6.779,9473,6.779,9474,4.881,9475,4.881,9476,4.881,9477,4.387,9478,4.881,9479,4.387,9480,4.881,9481,4.881,9482,4.881,9483,4.881,9484,4.387,9485,4.881,9486,4.061,9487,4.881,9488,4.881,9489,4.387,9490,4.881,9491,4.881,9492,4.387,9493,4.387,9494,6.779,9495,6.779,9496,9.385,9497,4.881,9498,4.387,9499,4.881,9500,4.387,9501,7.788,9502,4.881,9503,4.881,9504,4.881,9505,4.881,9506,4.881,9507,4.387,9508,4.881,9509,4.881,9510,4.387,9511,4.881,9512,4.881,9513,4.881,9514,4.881,9515,6.779,9516,6.779,9517,8.415,9518,4.881,9519,4.881,9520,6.779,9521,4.881,9522,4.881,9523,4.881,9524,4.881,9525,4.881,9526,4.881,9527,4.881,9528,4.881,9529,4.881,9530,4.387,9531,3.818,9532,4.387,9533,4.881,9534,4.881]],["tags/Creative Critical Thinking",[2318,1.361,4396,1.904]],["title/The Emperor of Lists",[2699,2.344,8411,4.85]],["content/The Emperor of Lists",[0,1.018,1,1.276,6,0.654,7,1.89,17,1.161,19,0.22,22,0.926,25,2.12,27,0.449,42,1.505,47,1.525,50,0.591,52,0.442,55,1.778,56,3.299,65,2.599,74,1.432,75,0.948,76,1.755,77,2.067,79,0.46,81,2.24,87,1.079,98,1.079,101,0.422,104,0.968,109,1.201,121,1.428,122,2.287,132,1.41,144,0.814,148,1.525,157,1.652,158,0.614,159,1.485,167,1.92,168,1.118,179,1.26,180,1.292,188,1.89,208,2.161,216,0.843,223,1.132,247,3.79,263,0.795,271,1.752,273,3.299,279,2.086,288,1.556,295,2.485,304,2.123,316,2.541,365,2.55,372,1.983,394,3.597,412,1.447,430,1.41,438,2.888,441,1.52,457,1.358,460,2.287,484,2.016,506,2.665,561,2.888,586,2.086,630,1.341,698,2.475,788,2.888,851,1.587,912,1.08,915,2.665,921,1.188,934,2.086,949,3.458,1062,2.715,1069,1.428,1229,1.805,1287,3.597,1296,1.067,1327,2.122,1348,2.05,1415,1.702,1451,3.537,1485,3.437,1541,2.151,1583,1.525,1600,2.243,1614,2.759,1657,1.485,1662,2.287,1677,2.243,1710,2.243,1715,2.201,1721,0.982,1740,5.282,1744,2.333,1763,2.016,1778,1.983,1787,3.71,1806,2.601,1860,2.888,1872,2.201,1932,2.888,1969,0.833,1986,3.122,2015,2.601,2043,3.458,2070,4.301,2214,2.734,2297,2.541,2321,4.032,2374,2.05,2378,1.665,2382,2.976,2400,2.976,2403,3.179,2427,3.179,2433,1.632,2452,2.808,2454,2.201,2469,2.888,2565,2.485,2645,2.908,2666,2.287,2684,4.164,2699,3.753,2701,4.032,2705,2.976,2731,4.032,2732,4.032,2811,4.355,2818,3.122,2828,3.179,2843,3.437,2853,2.431,2865,4.355,2901,3.597,2914,4.918,2925,3.299,2961,4.032,2973,4.032,2976,3.179,2985,3.79,3008,3.299,3036,2.201,3103,4.355,3122,2.808,3198,3.179,3233,3.179,3236,2.333,3251,2.808,3307,4.424,3484,4.032,3524,2.665,3563,4.276,3610,4.355,4193,2.808,4390,3.79,4410,3.299,4411,3.79,4482,4.355,4502,4.624,4527,1.566,4533,3.597,4654,4.032,4762,3.179,4940,4.355,5092,4.032,5170,3.79,5417,2.243,5486,3.179,5657,2.665,5726,4.592,5732,1.702,5917,2.485,5940,4.355,5983,2.976,6253,4.355,6686,4.032,6767,3.437,6909,3.299,7212,3.313,7459,4.355,7558,4.355,7755,3.299,7915,3.79,8038,3.597,8056,4.355,8655,4.495,9353,4.355,9355,4.355,9413,6.455,9418,4.032,9423,4.032,9492,4.355,9535,4.355,9536,6.745,9537,4.846,9538,4.846,9539,4.846,9540,4.846,9541,4.846,9542,4.846,9543,4.846,9544,4.846,9545,4.846,9546,6.062,9547,4.846,9548,4.355,9549,4.846,9550,4.846,9551,4.846,9552,4.846,9553,4.846,9554,4.846,9555,4.846,9556,4.846,9557,4.846,9558,4.846,9559,4.355,9560,4.846,9561,4.846,9562,4.846,9563,4.846,9564,4.846,9565,4.846]],["tags/The Emperor of Lists",[4396,2.538]],["title/Exporting Goodreads to Obsidian",[3030,4.05,5690,3.714,7289,3.001]],["content/Exporting Goodreads to Obsidian",[0,1.005,1,1.26,6,0.646,17,0.925,19,0.491,22,0.915,27,0.443,30,1.429,41,2.509,48,2.972,52,0.703,60,1.091,65,2.587,69,1.866,74,0.883,75,0.936,79,0.456,94,1.131,96,2.417,101,0.672,103,1.308,104,0.687,144,0.804,150,1.172,157,1.172,158,0.606,168,1.104,172,1.73,253,2.024,276,1.186,315,0.959,318,2.096,365,1.809,368,1.505,378,1.066,384,1.506,388,1.546,404,1.066,409,2.159,441,1.078,471,4.04,478,1.866,481,2.568,482,3.874,517,0.981,564,2.134,586,2.059,596,2.706,700,2.453,782,0.873,877,1.946,903,1.957,908,1.782,909,1.99,926,2.453,932,1.957,938,2.938,940,3.138,942,2.568,945,2.024,951,1.172,998,2.453,1017,2.509,1020,1.73,1082,3.393,1088,2.632,1159,1.926,1260,1.41,1279,1.005,1290,2.509,1327,1.505,1331,2.258,1339,2.392,1346,2.076,1393,2.632,1426,1.429,1462,2.772,1501,1.634,1506,2.568,1583,1.505,1586,1.486,1611,2.173,1615,2.772,1623,1.611,1648,1.526,1671,1.99,1711,1.957,1721,1.691,1806,2.568,1872,2.173,1876,2.134,1903,2.453,1904,3.981,1947,2.453,1976,2.303,2021,3.981,2025,2.096,2108,2.303,2165,2.877,2214,2.699,2273,3.552,2298,2.509,2333,3.772,2353,1.99,2387,2.699,2431,3.874,2463,2.215,2600,2.852,2610,2.938,2691,2.024,2717,4.162,2853,2.4,2892,3.138,2914,3.033,3005,2.699,3019,2.938,3030,7.068,3122,2.772,3145,2.303,3278,2.852,3518,2.938,3519,1.866,3984,3.138,4284,3.257,4358,2.938,4424,3.742,4694,4.741,4785,2.852,5110,2.4,5244,4.238,5282,3.677,5283,2.173,5297,4.551,5473,2.568,5537,3.393,5542,2.568,5609,2.938,5657,4.238,5690,4.551,5732,1.68,6133,4.3,6320,3.677,6509,3.138,6622,3.981,6657,3.257,6900,3.505,7146,3.981,7155,3.742,7160,4.3,7289,2.632,7752,3.742,7766,3.981,7842,3.742,8219,4.3,8367,5.562,8836,3.981,9025,3.742,9566,4.785,9567,4.3,9568,4.785,9569,6.685,9570,4.785,9571,3.981,9572,4.785,9573,4.785,9574,4.785,9575,4.785,9576,4.785,9577,4.785,9578,4.785,9579,4.785,9580,4.785,9581,4.3,9582,4.3,9583,3.742,9584,4.785,9585,4.3,9586,4.785,9587,4.785,9588,4.785,9589,4.785,9590,4.785,9591,4.3,9592,3.981,9593,4.785,9594,6.685,9595,6.685,9596,4.785,9597,6.685,9598,6.685,9599,6.685,9600,6.685,9601,6.685,9602,4.785,9603,4.785,9604,4.785,9605,4.785,9606,4.785,9607,6.685,9608,4.785]],["tags/Exporting Goodreads to Obsidian",[7289,3.13]],["title/From Analog Notebook to Digital Vault",[2353,2.026,2696,2.679,6320,2.679,9583,3.809]],["content/From Analog Notebook to Digital Vault",[3,1.468,5,1.365,10,0.554,13,1.547,19,0.484,24,0.962,25,1.344,27,0.455,48,2.785,52,0.713,55,1.804,73,0.769,75,0.962,77,1.507,79,0.335,101,0.594,103,1.344,104,0.706,131,0.94,132,1.431,135,3.65,144,0.826,154,1.082,157,1.204,168,1.134,172,1.777,179,1.272,188,1.917,199,1.589,203,1.069,216,0.856,217,1.176,223,1.148,240,1.02,275,1.548,276,1.219,291,1.947,320,1.36,365,1.859,368,1.547,378,1.095,404,1.095,409,1.909,418,1.679,430,1.431,441,1.535,444,1.752,481,5.289,517,1.008,566,3.095,596,3.418,621,2.218,622,2.467,630,1.36,700,3.493,705,1.752,784,4.469,912,1.091,926,2.521,929,1.449,958,2.639,986,2.774,1008,2.615,1020,1.777,1078,3.019,1179,1.947,1260,1.449,1278,1.589,1283,0.517,1303,2.467,1332,2.233,1334,2.154,1339,1.527,1393,3.747,1401,2.193,1403,2.116,1422,2.699,1425,2.276,1477,2.467,1493,2.93,1499,3.487,1533,2.276,1541,1.568,1580,4.09,1583,1.547,1586,1.527,1613,2.467,1721,0.997,1749,3.65,1796,2.116,1819,3.65,1872,3.095,1879,3.493,1939,2.774,1945,1.589,1948,3.225,1952,2.366,1972,2.521,2123,4.266,2127,2.93,2144,2.774,2165,2.116,2214,2.774,2237,3.845,2299,2.774,2314,2.521,2353,2.045,2387,3.844,2413,2.276,2468,3.117,2471,2.704,2475,1.831,2476,2.774,2670,3.65,2691,2.08,2696,2.704,2712,3.225,2796,3.019,2996,2.467,3030,5.057,3220,2.93,3262,2.849,3458,3.019,3496,2.467,4129,4.419,4340,3.65,4644,2.93,4785,5.283,4790,4.419,4797,3.225,4997,4.09,5110,2.467,5180,3.117,5244,4.319,5297,4.638,5542,2.639,5690,3.347,5917,2.521,6320,2.704,6376,3.347,6459,4.09,6503,3.347,6509,5.128,6602,3.65,6802,3.487,7119,3.019,7289,5.353,7296,3.845,7405,4.419,8248,4.09,8979,3.347,9000,4.419,9025,5.328,9583,6.114,9585,4.419,9591,6.123,9592,4.09,9609,4.917,9610,4.917,9611,4.419,9612,4.917,9613,4.917,9614,4.917,9615,4.917,9616,4.917,9617,4.917,9618,4.917,9619,4.917,9620,4.917,9621,4.917,9622,6.123,9623,8.441,9624,4.917,9625,4.917,9626,4.917,9627,4.917,9628,4.917,9629,4.917,9630,4.917,9631,6.813,9632,4.917,9633,4.917,9634,4.917,9635,4.917,9636,4.917,9637,4.917,9638,6.813,9639,4.917,9640,4.917,9641,4.917,9642,4.09,9643,4.917]],["tags/From Analog Notebook to Digital Vault",[172,1.543,7289,2.348]],["title/From Curiosity To Creativity",[2318,1.977,7292,4.85]],["content/From Curiosity To Creativity",[0,1.043,6,1.061,13,1.563,22,0.95,27,0.46,36,2.215,39,2.176,48,2.445,60,1.133,67,2.41,74,1.266,75,1.538,79,0.339,83,2.247,104,0.713,133,1.907,144,0.834,150,1.216,153,1.696,159,1.522,185,1.409,192,3.687,196,2.022,215,3.522,234,2.391,241,2.101,243,3.522,263,0.815,266,2.215,288,1.583,289,2.878,307,2.878,309,2.646,315,0.995,347,2.96,359,2.878,444,1.77,457,1.392,478,1.937,566,2.256,782,1.252,788,2.96,851,2.247,853,1.522,877,1.997,912,1.099,921,1.384,930,3.258,936,3.687,938,3.05,946,2.96,993,2.44,1044,2.344,1179,1.967,1206,3.258,1260,2.022,1294,3.687,1335,1.85,1340,3.149,1366,2.666,1399,1.967,1401,2.215,1426,1.483,1659,2.101,1668,3.381,1678,2.066,1721,1.007,1764,1.093,1785,2.159,1810,3.258,1881,2.066,1889,2.96,1898,2.878,1958,4.671,1990,3.258,2028,1.85,2043,2.547,2064,3.05,2070,2.547,2105,2.732,2165,2.138,2230,2.344,2339,2.391,2360,2.878,2365,3.381,2383,4.132,2483,2.666,2510,3.522,2552,4.866,2585,4.464,2592,2.492,2594,2.176,2642,1.937,2660,3.518,2661,3.683,2677,5.366,2680,3.885,2728,2.96,2738,4.464,2780,4.464,2788,3.258,2830,3.05,2848,4.132,2909,4.501,2921,3.522,2959,2.96,2969,3.638,2981,2.732,2985,3.885,2996,2.492,3016,4.464,3026,3.05,3049,4.464,3129,3.381,3131,4.464,3141,5.708,3163,2.547,3189,2.802,3194,2.878,3198,3.258,3243,3.381,3253,3.522,3317,3.885,3455,3.522,3527,3.381,3547,3.149,3563,3.149,3984,3.258,4177,3.687,4396,3.06,4436,3.687,4743,4.464,4765,3.885,4926,4.866,4929,3.381,5083,3.149,5283,2.256,5357,3.522,5360,7.064,5483,4.464,5542,3.683,5609,3.05,5732,1.744,5905,3.05,6001,3.381,6113,4.132,6190,2.878,6191,3.885,6467,4.464,6468,4.464,6502,4.464,6678,3.687,6708,4.132,6790,3.885,6968,4.464,7116,4.132,7177,3.522,7231,2.878,7292,6.148,7350,4.132,7367,3.885,7475,3.522,7546,3.687,7647,3.522,7755,3.381,7895,4.464,8126,3.885,8330,2.96,8420,4.464,8655,2.878,8687,4.132,8820,3.885,8834,4.132,8993,4.464,9017,4.464,9018,7.619,9057,4.132,9125,4.464,9126,4.132,9202,4.132,9414,4.132,9446,4.464,9468,3.885,9500,4.464,9644,4.967,9645,4.464,9646,7.861,9647,4.967,9648,4.967,9649,4.967,9650,4.967,9651,4.967,9652,4.967,9653,7.619,9654,6.166,9655,4.967,9656,4.967,9657,6.861,9658,4.967,9659,4.967,9660,4.967,9661,4.464,9662,4.967,9663,4.967,9664,4.967,9665,4.967,9666,4.967,9667,4.967,9668,4.967,9669,4.967,9670,4.464,9671,4.967,9672,7.861,9673,4.967,9674,4.132,9675,4.967,9676,6.861,9677,4.967,9678,4.967,9679,4.464,9680,4.967,9681,4.967,9682,4.967,9683,4.967,9684,4.967,9685,4.967,9686,4.464,9687,4.464,9688,4.967,9689,4.967,9690,4.967,9691,4.967,9692,4.967,9693,4.967,9694,4.967,9695,3.885]],["tags/From Curiosity To Creativity",[2318,1.361,4396,1.904]],["title/How Not To Do A Remaster",[7741,5.093]],["content/How Not To Do A Remaster",[1,2.045,3,1.449,5,0.972,6,0.911,14,1.147,19,0.353,22,0.928,26,0.835,27,0.625,28,1.203,29,1.377,47,1.527,60,1.77,64,2.738,74,0.896,79,0.461,82,2.29,87,1.081,98,1.081,101,0.589,102,2.488,103,1.326,116,1.133,126,2.019,130,2.669,131,0.928,167,3.075,176,2.738,179,0.906,180,1.294,182,1.12,184,1.634,196,1.431,197,2.738,199,1.568,211,2.338,222,3.796,225,3.183,241,2.053,251,1.729,263,0.796,275,0.961,277,1.823,278,1.263,288,1.12,293,0.995,297,1.487,315,0.972,347,2.892,378,1.081,409,1.36,420,4.362,430,1.965,443,1.431,450,2.204,467,2.892,501,3.183,517,0.995,630,1.343,705,1.729,739,2.738,877,1.412,903,1.985,919,1.68,921,1.367,945,2.053,947,2.738,957,2.812,1011,1.729,1029,2.98,1179,1.922,1229,1.807,1237,1.892,1276,1.807,1283,0.511,1286,3.54,1317,1.754,1331,2.29,1332,2.204,1339,1.507,1417,5.012,1420,2.514,1476,4.146,1501,1.657,1512,2.384,1517,3.387,1519,3.183,1534,3.25,1555,2.738,1623,1.634,1631,1.835,1634,1.953,1675,3.125,1725,1.729,1778,1.985,1795,1.704,1941,2.669,1949,2.892,1965,1.657,1969,0.835,2007,2.273,2010,2.892,2052,2.545,2060,4.788,2071,4.28,2077,2.246,2108,2.336,2117,2.98,2289,1.78,2303,2.435,2323,3.076,2353,2.019,2360,2.812,2374,2.053,2378,1.666,2403,3.183,2413,2.246,2423,3.442,2433,2.614,2484,3.442,2605,2.246,2610,2.98,2642,1.892,2686,2.892,2779,3.304,2828,3.183,2854,2.669,2881,1.985,2891,3.183,2927,5.321,2949,2.605,2957,4.429,2976,3.183,2982,6.068,3013,2.669,3190,2.605,3217,3.304,3316,3.796,3519,1.892,4359,6.068,4402,2.29,4422,3.076,4451,3.076,4681,3.442,4944,3.183,4954,4.788,5119,2.053,5132,4.038,5174,2.856,5195,2.545,5250,2.738,5263,4.362,5408,3.442,5477,2.98,5540,2.738,5804,2.98,5844,2.488,5848,3.183,5864,2.98,5908,4.362,5917,2.488,5931,3.442,6035,3.796,6083,3.304,6131,3.304,6179,3.442,6200,3.442,6271,2.892,6595,2.812,6697,3.603,6774,3.076,6822,3.183,6854,3.603,7009,4.362,7055,3.304,7077,3.603,7330,3.603,7688,4.038,7691,4.362,7709,3.603,7741,5.506,7902,4.362,7915,3.796,8107,4.362,8336,6.068,8345,4.038,8612,4.362,8801,4.038,9231,4.362,9288,4.362,9531,3.796,9645,4.362,9695,3.796,9696,4.362,9697,6.068,9698,4.362,9699,4.853,9700,4.362,9701,4.853,9702,4.853,9703,4.853,9704,4.853,9705,4.853,9706,4.853,9707,6.752,9708,4.853,9709,4.038,9710,4.853,9711,6.752,9712,6.978,9713,7.765,9714,7.765,9715,4.853,9716,6.752,9717,4.853,9718,7.765,9719,4.038,9720,4.362,9721,4.853,9722,4.853,9723,4.853,9724,4.853,9725,4.853,9726,4.853,9727,4.038,9728,4.853,9729,4.853,9730,4.853,9731,4.853,9732,4.853,9733,4.853,9734,4.362,9735,6.752,9736,4.853,9737,4.853,9738,4.853,9739,4.853,9740,4.853,9741,4.853,9742,4.853,9743,4.853]],["tags/How Not To Do A Remaster",[2378,1.038]],["title/Where Does It Stop?",[7,2.8]],["content/Where Does It Stop?",[1,1.289,3,1.462,6,1.194,7,1.909,10,0.551,11,1.443,14,1.326,17,0.677,20,1.88,22,0.936,24,0.958,27,0.819,42,1.52,50,0.951,52,0.768,55,1.796,73,1.062,74,1.633,76,1.274,88,2.003,89,2.529,96,2.456,101,0.771,104,1.12,113,1.345,116,1.143,132,1.425,144,0.822,150,1.664,154,1.077,157,1.199,158,0.86,159,1.5,175,1.355,176,2.762,180,1.811,182,1.13,184,1.648,185,1.389,186,3.472,187,4.455,190,4.817,200,1.97,205,4.073,212,3.211,216,0.852,219,1.603,223,1.143,240,1.41,241,2.071,247,6.1,248,3.936,251,1.744,263,1.114,264,2.183,271,1.77,275,0.969,276,1.213,309,2.287,311,1.5,314,4.048,317,1.648,320,1.355,321,1.77,338,3.634,361,1.695,401,4.399,404,1.09,412,2.329,418,1.671,441,1.531,442,2.266,455,2.319,476,1.355,622,2.456,647,3.333,797,2.923,877,1.425,904,3.333,909,3.504,911,2.837,915,2.692,947,2.762,949,2.51,964,2.183,1008,2.607,1069,1.443,1078,3.006,1213,2.837,1260,1.443,1279,1.028,1289,0.832,1297,2.692,1304,3.211,1306,3.103,1327,1.54,1335,1.823,1348,2.071,1352,2.356,1369,2.132,1415,1.719,1420,1.823,1462,2.837,1501,2.319,1504,2.917,1634,1.97,1657,1.5,1663,1.54,1676,3.006,1721,0.992,1776,3.006,1784,2.628,1791,2.692,1796,2.107,1859,5.312,1950,1.851,1962,3.091,1969,0.842,2006,2.905,2053,3.408,2059,2.917,2071,3.103,2159,3.006,2258,3.103,2298,2.567,2314,2.51,2319,2.692,2341,2.456,2364,3.634,2376,2.628,2426,2.837,2433,2.836,2434,2.224,2459,3.333,2468,3.103,2475,1.823,2497,3.103,2551,5.042,2605,2.266,2709,3.829,2713,3.006,2825,2.692,2882,3.829,2936,4.399,2969,2.266,2998,2.456,3004,2.003,3019,3.006,3169,6.104,3178,3.936,3245,3.103,3435,3.472,3523,3.211,3908,2.692,4098,2.356,4399,3.103,4402,2.31,4424,3.829,4444,3.211,4461,1.939,4737,3.211,4748,4.399,4756,3.754,5085,1.603,5414,3.333,5510,4.073,5562,3.333,5654,3.634,5844,2.51,5855,3.103,6129,3.472,6402,3.634,6479,3.829,6621,3.829,6763,3.634,6774,3.103,7047,3.829,7710,5.651,8048,3.829,8260,3.333,8403,4.073,8425,4.399,8594,5.651,8805,3.472,8979,3.333,9427,4.073,9507,4.399,9531,3.829,9670,6.104,9744,4.895,9745,4.895,9746,4.399,9747,4.895,9748,4.895,9749,4.895,9750,4.895,9751,4.895,9752,4.895,9753,4.399,9754,4.895,9755,3.634,9756,4.895,9757,4.895,9758,4.895,9759,4.895,9760,4.895,9761,4.895,9762,4.895,9763,4.895,9764,4.895,9765,4.895,9766,4.895,9767,4.895,9768,4.399,9769,4.895,9770,4.895,9771,4.895,9772,6.793,9773,6.793,9774,4.895,9775,4.895]],["tags/Where Does It Stop?",[]],["title/A Creative State of Mind",[1983,1.787,2077,2.525,2318,1.739]],["content/A Creative State of Mind",[3,1.498,17,1.178,18,1.644,24,0.982,26,0.863,50,0.612,52,0.458,53,2.908,55,1.841,57,3.292,75,0.982,79,0.342,87,1.118,92,2.831,101,0.437,104,1.282,116,1.613,150,1.229,157,1.229,175,1.389,185,1.424,217,1.2,225,3.292,266,2.238,277,1.355,279,2.974,288,1.158,297,1.538,311,1.538,320,1.389,384,1.781,399,2.908,422,1.788,457,1.406,478,3.081,491,2.238,580,3.139,627,1.869,652,3.181,782,0.915,877,2.011,920,2.974,921,1.392,946,4.118,985,1.389,1030,2.323,1194,3.416,1240,2.76,1272,2.76,1279,1.054,1296,1.104,1331,3.261,1565,3.925,1592,2.76,1599,2.573,1611,2.279,1614,2.053,1623,1.69,1645,2.518,1657,1.538,1658,2.518,1663,1.579,1677,2.323,1809,3.559,1876,2.238,1903,2.573,1930,2.76,1945,1.622,1952,2.415,1983,2.589,2004,2.831,2006,2.943,2028,1.869,2062,2.087,2077,2.323,2123,2.415,2147,4.118,2199,4.175,2258,3.181,2296,2.908,2318,2.203,2376,2.694,2415,2.368,2426,2.908,2430,3.925,2434,2.279,2461,2.831,2512,2.368,2558,1.957,2592,2.518,2660,3.543,2661,2.694,2670,5.129,2691,2.123,2713,3.082,2891,3.292,2907,5.01,2919,3.925,2962,3.292,2969,2.323,2980,2.991,3086,3.925,3098,3.559,3144,2.991,3145,2.415,3194,2.908,3198,3.292,3295,2.991,3305,4.51,3311,3.559,3488,3.082,3492,3.725,3528,2.991,3857,3.559,4208,3.416,4404,4.175,4423,4.51,4450,4.175,4657,3.181,4756,2.415,4926,3.559,5084,5.749,5147,2.76,5283,2.279,5393,3.725,5400,3.559,5609,4.853,5636,3.559,5654,5.129,5656,5.404,5725,3.559,5825,3.181,5931,3.559,6206,4.118,6278,4.175,6302,3.925,6647,3.181,6766,4.51,6790,3.925,6793,3.725,6938,4.51,7402,5.749,7915,3.925,8142,3.925,8265,3.725,8320,3.559,8330,4.118,8502,4.51,8655,4.004,8973,3.559,9046,5.749,9134,3.925,9308,4.51,9360,4.51,9414,4.175,9417,6.21,9418,4.175,9727,4.175,9776,6.91,9777,9.634,9778,6.91,9779,5.019,9780,5.019,9781,4.51,9782,5.019,9783,5.019,9784,5.019,9785,5.019,9786,7.103,9787,6.91,9788,5.019,9789,5.019,9790,5.019,9791,8.93,9792,5.019,9793,5.019,9794,5.019,9795,5.019,9796,5.019,9797,4.175,9798,5.019,9799,5.019,9800,4.51,9801,5.019,9802,4.51,9803,4.51,9804,5.019,9805,5.019,9806,3.925,9807,5.019,9808,5.019,9809,5.019,9810,5.019,9811,5.019,9812,5.019,9813,5.019,9814,5.019,9815,5.019,9816,5.019,9817,5.019,9818,5.019,9819,5.019,9820,5.019,9821,5.019,9822,5.019,9823,6.91,9824,5.019,9825,5.019,9826,6.91,9827,5.019,9828,5.019,9829,5.019,9830,5.019,9831,5.019,9832,5.019,9833,5.019,9834,5.019,9835,5.019,9836,5.019]],["tags/A Creative State of Mind",[2318,1.361,4396,1.904]],["title/Allspice Is Not All Spice",[2620,4.85,9837,5.573]],["content/Allspice Is Not All Spice",[6,0.665,13,1.551,14,0.838,25,1.348,42,1.531,48,1.757,59,1.551,64,2.782,77,2.092,79,0.336,89,1.836,91,2.432,94,1.165,95,2.327,98,1.52,101,0.43,113,0.976,131,1.305,133,1.893,144,0.828,157,1.208,158,0.625,165,1.011,179,1.275,180,1.315,203,1.072,205,4.102,210,2.282,242,1.809,256,4.431,288,1.575,291,1.953,293,1.4,309,1.66,335,6.135,392,2.373,418,1.683,422,1.757,430,1.435,441,1.111,442,2.282,465,1.864,478,1.923,517,1.011,547,3.126,561,2.939,566,2.24,621,1.399,630,1.364,697,4.102,705,1.757,711,3.5,720,3.357,722,1.893,782,1.245,877,2.279,904,4.647,909,2.84,921,0.868,926,2.528,942,3.664,943,5.679,985,1.364,996,5.33,997,3.856,998,4.333,1008,1.893,1161,2.16,1240,2.712,1260,1.453,1267,3.353,1278,2.206,1279,1.035,1289,0.838,1291,1.283,1296,1.085,1332,2.24,1348,2.086,1501,1.683,1541,1.572,1583,1.551,1715,2.24,1791,3.755,1794,1.985,1858,2.888,1938,2.474,1949,2.939,1974,2.712,2007,1.66,2149,2.122,2254,2.16,2296,2.857,2318,1.572,2341,2.474,2347,3.851,2480,2.647,2510,3.497,2540,2.857,2594,2.16,2603,6.135,2620,7.963,2641,4.069,2686,2.939,2714,2.474,2715,3.028,2720,4.431,2785,1.985,2845,3.66,2897,3.856,2932,3.234,3004,2.793,3213,4.431,3214,4.431,3262,2.857,3319,3.5,3321,6.135,3458,3.028,3496,4.24,3538,3.497,4402,2.327,4719,5.339,4938,5.067,5084,4.102,5162,3.357,5400,3.497,5457,6.124,5587,6.273,5609,3.028,5732,1.732,5747,3.497,5878,4.647,5906,3.66,6207,3.497,6278,4.102,6407,3.856,6647,3.126,6730,3.856,6821,2.939,6884,3.357,6921,4.102,7360,5.339,7480,3.66,7521,4.102,7551,4.431,7710,5.679,7792,4.431,7852,3.856,7891,4.431,7892,4.431,7996,3.357,8077,7.595,8121,4.431,8139,3.66,8183,4.431,8191,3.126,8224,5.339,8296,3.66,8327,4.102,8423,4.102,8726,4.431,8904,4.841,9171,4.102,9206,7.037,9394,4.431,9661,4.431,9837,6.135,9838,4.931,9839,6.827,9840,4.431,9841,4.931,9842,4.931,9843,9.411,9844,4.931,9845,4.931,9846,4.931,9847,6.827,9848,6.827,9849,4.931,9850,4.431,9851,6.827,9852,4.931,9853,4.931,9854,4.931,9855,4.931,9856,4.931,9857,4.931,9858,3.66,9859,4.931,9860,4.931,9861,6.827,9862,4.931,9863,4.931,9864,4.931,9865,4.931,9866,4.931,9867,4.931,9868,4.931,9869,4.931,9870,4.931,9871,4.931,9872,4.931,9873,4.931,9874,4.931,9875,4.931,9876,4.931,9877,4.931,9878,4.931,9879,4.931,9880,4.931,9881,4.931,9882,4.931,9883,4.931,9884,4.931,9885,4.931]],["tags/Allspice Is Not All Spice",[909,1.776,7737,2.706]],["title/2021 Donations",[4461,2.456,9886,5.573]],["content/2021 Donations",[0,1.445,3,1.49,6,1.146,9,4.88,10,0.562,11,1.471,14,1.17,17,0.69,22,0.954,25,1.363,26,1.355,30,1.49,42,1.549,50,0.608,52,0.628,59,1.57,60,1.138,70,2.224,73,0.78,77,1.529,79,0.34,85,1.591,86,1.804,87,1.111,94,1.179,98,1.533,113,1.363,118,3.162,144,1.156,149,1.703,154,1.734,156,1.977,168,1.818,175,1.381,180,1.33,184,1.68,185,1.953,212,3.272,213,2.558,217,1.884,223,1.165,233,2.185,253,2.111,263,0.818,275,0.988,288,1.588,307,3.988,309,1.68,314,4.695,315,1,317,1.68,320,1.904,375,1.262,388,1.612,404,1.533,418,1.703,457,1.398,476,1.381,478,1.945,566,2.266,621,1.416,628,2.111,700,2.558,711,2.558,722,1.915,908,1.858,912,0.799,934,2.962,942,2.678,951,1.222,960,3.396,1020,1.804,1062,2.008,1088,2.744,1216,2.558,1232,3.063,1240,2.744,1274,1.509,1279,1.654,1283,0.724,1289,0.848,1295,2.973,1331,2.354,1333,2.008,1335,1.858,1339,1.549,1369,2.58,1415,2.983,1431,2.744,1451,2.616,1488,1.976,1501,2.35,1509,3.902,1541,1.591,1614,2.816,1617,2.075,1645,2.503,1663,1.57,1687,1.616,1711,2.816,1715,3.126,1721,1.395,1737,3.272,1744,3.312,1764,1.098,1787,2.744,1806,3.694,1941,2.744,1969,1.355,1994,3.703,2028,2.563,2062,2.075,2092,3.703,2177,2.744,2301,2.678,2303,2.503,2376,2.678,2388,2.891,2404,3.272,2407,2.678,2415,2.354,2426,2.891,2433,2.86,2450,3.538,2471,2.744,2480,2.678,2699,1.886,2700,2.401,2704,3.063,2712,3.272,2756,2.147,2806,2.451,2881,2.041,2916,3.396,2934,4.151,3077,2.266,3236,2.401,3518,3.063,4347,4.514,4398,2.973,4402,3.247,4417,2.558,4478,3.396,4714,2.815,4756,2.401,4762,3.272,4964,4.565,5102,3.538,5110,2.503,5191,3.703,5347,6.185,6049,3.063,6083,3.396,6651,4.484,6703,3.538,6762,4.151,6821,2.973,6863,3.902,7087,3.902,7126,4.151,7212,3.381,7289,2.744,7787,4.151,8160,4.151,8552,3.902,8602,3.538,8605,4.151,8728,4.484,8790,4.151,8819,3.902,8984,4.484,9147,4.151,9168,4.484,9174,4.484,9175,4.484,9260,3.902,9531,3.902,9746,4.484,9886,8.008,9887,4.989,9888,4.989,9889,6.882,9890,4.989,9891,4.484,9892,8.494,9893,8.494,9894,4.989,9895,4.989,9896,6.882,9897,4.989,9898,4.989,9899,4.484,9900,4.484,9901,4.989,9902,4.989,9903,4.989,9904,4.989,9905,4.989,9906,4.989,9907,4.989,9908,4.484,9909,4.989,9910,4.989,9911,4.989,9912,4.989,9913,4.989]],["tags/2021 Donations",[]],["title/I'm Joining the Coffeeneuring Challenge of 2021",[1969,0.756,2995,2.419,3194,2.549,4461,1.742,9914,3.953]],["content/I'm Joining the Coffeeneuring Challenge of 2021",[0,1.035,1,1.798,3,1.472,5,0.988,6,0.665,7,2.662,10,0.555,17,1.169,18,2.236,22,0.943,24,0.965,26,0.848,27,0.456,29,1.399,36,2.199,50,0.601,60,1.124,69,1.923,73,0.771,75,0.965,81,1.637,83,1.615,101,0.595,104,0.708,116,1.151,119,2.939,124,2.782,131,0.943,140,3.357,144,0.828,148,1.551,153,1.683,156,1.713,157,1.208,158,0.625,160,2.99,168,1.138,179,0.921,180,1.315,188,1.923,191,3.028,203,1.485,211,1.707,219,1.615,242,1.809,252,2.84,253,2.086,254,5.553,255,2.647,263,1.119,264,2.199,266,2.199,272,3.497,275,1.55,288,1.138,291,1.953,309,1.66,315,0.988,316,2.586,318,2.16,366,2.528,367,1.864,375,1.254,441,1.538,442,3.16,450,2.24,715,2.528,724,1.531,782,0.899,851,1.615,903,2.017,921,1.488,951,1.672,964,2.199,977,4.431,1000,3.497,1045,2.586,1160,3.234,1216,2.528,1236,2.373,1260,1.453,1279,1.035,1283,0.824,1289,1.16,1291,1.283,1292,1.953,1296,1.723,1399,1.953,1409,3.126,1470,2.647,1496,3.357,1577,2.24,1583,1.551,1634,1.985,1687,1.011,1764,1.085,1777,2.086,1791,2.712,1795,1.732,1969,0.848,1983,1.615,2024,2.647,2034,2.086,2043,2.528,2077,3.16,2087,2.586,2107,3.234,2116,2.199,2390,2.327,2401,2.939,2404,3.234,2413,2.282,2475,1.836,2476,2.782,2512,2.327,2600,2.939,2605,2.282,2687,2.712,2690,4.431,2691,2.086,2756,2.122,2760,2.712,2775,2.086,2806,2.422,2819,3.497,2855,3.856,2906,4.102,2951,3.126,2952,2.857,2995,5.049,2998,2.474,3035,2.24,3087,3.497,3144,4.069,3163,2.528,3166,6.249,3168,5.553,3171,4.102,3181,2.939,3194,3.956,3235,4.431,3265,3.028,3367,2.857,3492,3.66,3508,3.856,4049,3.856,4412,4.431,4422,3.126,4461,3.101,4693,3.497,4787,3.66,5083,3.126,5119,2.086,5134,3.856,5337,3.357,5732,2.398,5743,3.856,5801,3.357,5917,2.528,6118,4.431,6152,3.66,6275,4.431,6618,3.126,7038,3.856,7231,2.857,7384,3.856,7480,5.067,7546,5.812,7649,3.856,7853,3.66,8026,6.273,8160,6.514,8191,3.126,8315,3.497,8316,3.497,8659,3.856,8772,4.431,8845,4.102,8867,3.856,8918,3.856,8963,6.514,9269,3.856,9914,4.431,9915,6.124,9916,4.102,9917,7.83,9918,4.931,9919,4.931,9920,4.931,9921,4.931,9922,4.931,9923,4.931,9924,4.931,9925,4.931,9926,4.431,9927,4.931,9928,4.931,9929,4.931,9930,4.431,9931,4.931,9932,4.931,9933,4.931,9934,4.931,9935,4.431,9936,4.931,9937,4.931,9938,4.431,9939,4.931,9940,4.931,9941,4.931,9942,4.931,9943,4.931,9944,4.931,9945,4.931,9946,4.431,9947,4.431,9948,4.931,9949,4.931,9950,4.931,9951,4.931,9952,4.102,9953,4.931,9954,4.931,9955,4.931,9956,4.931,9957,4.931,9958,4.931,9959,4.931,9960,4.931]],["tags/I'm Joining the Coffeeneuring Challenge of 2021",[7737,3.607]],["title/Migrating from Mailchimp to Listmonk",[2173,3.714,9961,4.903,9962,4.903]],["content/Migrating from Mailchimp to Listmonk",[3,1.521,5,1.021,10,0.574,11,1.502,17,0.705,19,0.231,23,2.119,25,1.392,27,0.737,28,1.244,42,1.582,50,0.971,52,0.781,59,1.603,70,1.646,73,0.796,74,0.94,77,1.561,79,0.347,86,1.842,94,1.204,104,0.731,109,1.73,144,0.855,150,1.248,153,1.739,158,0.645,185,1.445,203,1.108,206,3.468,214,3.468,216,1.215,233,2.231,240,1.449,252,2.119,277,1.375,278,1.325,311,1.561,312,2.139,315,1.399,317,1.715,324,3.036,370,2.952,375,1.275,384,1.148,409,1.427,416,3.058,418,1.739,422,2.487,435,2.192,444,1.815,445,3.612,450,2.314,487,1.715,591,2.734,595,3.036,606,2.272,627,2.6,629,3.468,757,2.404,813,2.802,827,2.802,912,1.118,921,0.897,945,2.155,949,2.612,985,1.932,1002,3.036,1003,2.671,1008,1.955,1011,1.815,1030,2.358,1061,3.612,1069,1.502,1159,2.81,1188,3.468,1193,1.842,1260,1.502,1276,1.897,1283,0.536,1289,0.866,1298,2.358,1317,3.245,1345,3.781,1346,2.787,1380,3.612,1398,3.892,1425,2.358,1439,4.161,1462,2.952,1589,2.358,1653,4.238,1663,1.603,1675,2.358,1687,1.045,1764,1.536,1784,3.747,1785,2.196,1795,1.789,1811,2.452,1820,3.781,1858,3.369,1876,3.113,1950,1.926,1969,0.876,1971,4.045,1974,2.802,1983,1.669,1985,2.802,1990,3.341,2012,2.555,2015,2.734,2024,2.734,2025,2.231,2066,3.984,2116,2.272,2259,3.781,2341,2.555,2405,5.182,2533,2.952,2556,4.238,2558,1.986,2623,3.468,2646,4.951,2666,2.404,2699,3.011,2714,2.555,2741,4.238,2825,2.802,2949,2.734,2998,3.502,3004,2.084,3174,5.422,3225,2.612,3367,5.202,3496,2.555,3548,4.238,3810,3.984,3984,3.341,4326,4.238,4386,3.984,4398,3.036,4504,3.341,4737,3.341,5085,1.669,5109,2.555,5119,2.155,5125,4.578,5284,4.238,5471,3.502,5517,4.238,5525,3.128,5566,4.238,5586,5.46,5681,3.781,6010,4.578,6103,3.984,6314,4.238,6327,3.781,6422,4.238,6501,4.238,6513,4.238,6965,4.578,7000,3.612,7171,3.341,7344,4.578,7833,3.781,8249,4.951,8299,3.984,8602,3.612,8672,4.578,9797,4.238,9961,8.068,9962,7.701,9963,2.734,9964,6.982,9965,5.094,9966,6.982,9967,4.578,9968,5.094,9969,5.094,9970,5.094,9971,4.578,9972,4.578,9973,5.094,9974,5.094,9975,5.094,9976,5.094,9977,5.094,9978,4.578,9979,5.094,9980,4.578,9981,5.094,9982,6.982,9983,5.094,9984,5.094,9985,4.578,9986,5.094,9987,6.982,9988,5.094,9989,5.094,9990,5.094,9991,5.094]],["tags/Migrating from Mailchimp to Listmonk",[14,0.725,5471,2.141]],["title/The Monthly Retro Screenshot Guessing Quiz",[442,2.036,2118,2.549,4527,1.421,8602,3.119,9992,3.953]],["content/The Monthly Retro Screenshot Guessing Quiz",[3,2.034,4,3.038,6,0.663,14,0.836,17,0.943,19,0.223,22,0.94,29,1.395,59,1.547,70,1.589,73,1.065,79,0.576,81,2.262,85,1.568,87,1.095,89,1.831,95,2.32,96,1.777,98,1.095,116,1.148,121,2.008,131,1.302,132,1.431,153,1.679,158,0.623,160,2.154,168,1.134,175,1.36,180,1.311,182,1.134,216,0.856,231,4.06,246,2.93,251,1.752,278,1.279,304,2.154,316,2.578,320,1.36,378,1.095,404,1.095,430,1.983,436,3.117,441,1.108,442,3.618,443,1.449,484,2.045,517,1.008,542,2.849,586,2.116,591,2.639,630,1.36,676,3.225,698,1.804,705,1.752,713,2.849,715,2.521,724,1.527,806,2.415,880,3.845,881,2.116,912,0.787,1030,2.276,1044,2.32,1090,3.65,1146,1.61,1160,3.225,1213,2.849,1237,1.917,1278,1.589,1283,0.517,1286,2.578,1291,1.279,1332,2.233,1348,2.08,1352,2.366,1430,2.415,1431,2.704,1617,2.045,1631,1.859,1648,2.493,1666,2.116,1671,2.045,1677,2.276,1711,2.787,1746,2.639,1755,2.704,1763,2.045,1811,2.366,1881,2.045,1929,5.328,1933,2.639,1979,3.65,2030,3.225,2062,2.045,2104,2.704,2109,2.578,2118,4.891,2162,3.019,2230,2.32,2231,3.747,2306,2.276,2338,2.467,2378,1.617,2427,3.225,2463,2.276,2528,2.578,2540,2.849,2577,3.487,2590,4.183,2592,2.467,2594,2.154,2660,2.521,2661,2.639,2685,4.09,2748,3.019,2759,2.578,2760,2.704,2818,2.276,2828,3.225,2956,4.419,2966,4.09,2975,4.419,3031,3.019,3145,2.366,3160,3.019,3167,4.09,3174,3.347,3186,3.019,3189,2.774,3528,2.93,3537,2.849,3836,4.09,3908,3.747,3937,3.019,4193,2.849,4401,4.09,4461,2.699,4480,3.117,4527,2.526,4533,3.65,4644,2.93,4965,3.65,4967,3.225,5110,2.467,5243,3.347,5341,4.831,5355,3.845,5364,3.845,5376,2.578,5442,3.845,5485,3.225,5512,4.09,5529,3.845,5655,2.849,5732,1.727,5920,4.09,5943,3.487,5993,3.65,6099,5.803,6214,4.09,6228,4.09,6252,4.419,6433,4.09,6440,3.845,6471,3.117,6526,3.117,6587,3.487,6592,3.117,6746,3.65,6751,3.347,6772,3.845,6821,2.93,6893,4.09,7184,3.487,7244,4.09,7383,4.419,7384,3.845,7649,3.845,7741,3.487,7768,3.65,8099,4.419,8191,3.117,8602,4.831,8669,3.845,8743,5.057,8870,4.09,8904,3.487,9567,4.419,9781,4.419,9963,2.639,9992,8.615,9993,7.818,9994,4.917,9995,4.917,9996,4.917,9997,4.917,9998,4.917,9999,7.818,10000,4.419,10001,4.09,10002,4.917,10003,4.917,10004,4.917,10005,4.917,10006,4.917,10007,4.917,10008,4.917,10009,4.917,10010,4.917,10011,6.813,10012,4.917,10013,4.917,10014,4.917,10015,4.917,10016,4.917,10017,4.917,10018,4.917,10019,4.917,10020,4.917,10021,4.917,10022,4.917,10023,4.917,10024,4.917,10025,4.917,10026,4.917,10027,4.917,10028,4.917,10029,4.917,10030,4.917,10031,4.917,10032,4.917,10033,4.917,10034,4.917,10035,4.917,10036,4.917,10037,4.917,10038,4.917,10039,4.917,10040,4.917,10041,4.917,10042,4.917,10043,4.917,10044,4.917,10045,4.917]],["tags/The Monthly Retro Screenshot Guessing Quiz",[2378,1.038]],["title/November 2021 Meta Post",[168,1.124,676,3.195,4461,1.929,5341,3.454]],["content/November 2021 Meta Post",[0,1.083,4,2.299,6,0.95,17,0.713,18,1.689,19,0.41,20,1.948,22,0.986,24,1.009,27,0.742,28,0.919,42,1.601,47,1.622,50,0.628,62,2.533,65,2.075,70,1.666,75,1.009,81,1.712,83,1.689,85,2.244,98,1.568,99,1.463,104,0.74,121,1.52,131,1.532,144,0.866,148,1.622,153,2.403,154,1.135,156,2.011,157,1.263,165,1.058,168,1.987,200,3.226,230,2.433,275,1.021,276,1.278,293,1.058,375,0.826,412,1.539,443,1.52,455,1.76,459,2.482,517,1.444,564,2.299,622,2.587,676,3.382,698,1.892,782,0.94,805,3.827,806,2.533,851,1.689,853,1.58,885,2.704,906,3.268,929,1.52,934,2.219,944,4.033,951,1.263,1020,1.864,1172,4.079,1229,1.92,1279,1.808,1289,1.196,1396,3.827,1502,2.988,1523,2.909,1533,2.386,1557,2.472,1577,2.342,1631,1.949,1634,2.075,1678,2.928,1687,1.058,1721,1.625,1788,3.51,1949,3.073,1962,1.892,1965,1.76,1969,1.211,2060,3.656,2123,2.482,2144,2.909,2260,4.777,2298,2.704,2320,3.166,2364,3.827,2378,1.571,2382,3.166,2441,3.268,2454,2.342,2475,1.92,2645,1.601,2850,5.505,2894,3.166,3031,3.166,3035,2.342,3186,3.166,3219,4.29,3224,2.704,3241,1.736,3251,2.988,3264,2.704,3270,3.656,3307,3.382,3480,3.166,3485,2.643,3837,4.634,4284,4.792,4443,2.836,4445,4.033,4461,2.042,4637,5.505,5262,4.29,5341,3.656,5410,4.634,5817,4.29,5826,3.166,5864,3.166,6030,3.268,6174,3.656,6190,2.988,6224,3.827,6299,3.827,6433,4.29,6440,4.033,6621,4.033,6622,4.29,6715,4.033,6774,3.268,6844,3.382,6845,4.634,7122,4.033,7123,4.033,7437,4.033,7528,4.634,7709,5.225,8049,3.656,8191,4.462,8602,3.656,8903,6.668,8904,5.684,9413,4.29,9427,4.29,9546,4.634,9548,4.634,9622,4.634,9891,4.634,10046,5.156,10047,5.156,10048,4.29,10049,5.156,10050,7.04,10051,5.156,10052,5.156,10053,5.156,10054,5.156,10055,5.156,10056,4.634,10057,4.634,10058,4.634,10059,5.156,10060,5.156,10061,5.156,10062,5.156,10063,5.156,10064,5.156,10065,5.156,10066,5.156,10067,7.04,10068,5.156,10069,5.156,10070,5.156,10071,5.156,10072,5.156,10073,5.156,10074,7.04,10075,5.156,10076,5.156,10077,5.156,10078,5.156,10079,4.634,10080,5.156,10081,3.827,10082,5.156,10083,4.634,10084,7.04,10085,5.156,10086,5.156,10087,5.156,10088,5.156,10089,5.156,10090,5.156,10091,5.156,10092,5.156,10093,3.827,10094,5.156,10095,5.156,10096,4.033,10097,4.29,10098,5.156,10099,4.634,10100,5.156,10101,5.156,10102,5.156,10103,5.156,10104,5.156,10105,5.156,10106,5.156]],["tags/November 2021 Meta Post",[10107,3.874]],["title/Seneca on How to Live",[271,2.242,4178,4.397]],["content/Seneca on How to Live",[0,1.044,6,1.242,11,1.466,17,0.688,18,1.629,19,0.357,22,1.313,24,0.974,26,0.855,27,0.46,28,0.886,29,1.411,50,0.837,52,0.812,55,1.825,60,1.934,65,1.466,67,1.747,69,1.939,75,1.54,77,1.524,79,0.339,82,3.241,87,1.108,101,0.434,103,1.359,104,1.38,113,1.36,133,1.91,138,2.495,148,1.565,149,2.686,150,1.218,154,1.512,156,1.248,159,2.105,165,1.02,168,1.148,179,0.929,185,1.411,212,5.16,217,1.189,224,3.528,230,2.347,263,1.126,271,2.483,276,1.95,292,3.692,293,1.02,294,1.852,311,1.524,312,1.524,359,3.98,375,1.26,376,3.153,388,1.607,407,2.104,409,2.204,412,1.485,422,1.772,430,1.448,441,1.121,455,1.698,460,2.347,465,1.881,478,1.939,561,2.965,580,2.259,606,2.218,816,5.16,851,1.629,853,1.524,877,2.591,912,1.358,920,2.141,929,1.466,942,2.67,951,1.927,976,2.965,1159,2.002,1179,1.97,1278,1.607,1279,1.442,1289,1.167,1292,1.97,1298,3.641,1312,2.302,1352,2.394,1409,3.153,1471,3.263,1635,3.89,1681,3.054,1721,1.392,1764,1.095,1791,3.777,1794,2.002,1795,1.747,1881,2.857,1931,3.218,1965,1.698,1969,1.181,1983,1.629,1996,6.172,2007,1.675,2028,1.852,2159,3.054,2298,2.608,2310,2.965,2398,3.528,2435,2.965,2469,2.965,2511,2.736,2536,2.806,2576,2.104,2660,2.55,2661,3.687,2667,4.47,2700,2.394,2759,2.608,2785,2.764,2805,1.747,2876,2.55,2919,3.89,2922,4.138,2969,2.302,2996,2.495,3149,2.608,3161,3.263,3207,4.47,3220,2.965,3247,2.608,3254,2.259,3270,3.528,3278,2.965,3524,2.736,3546,3.521,3842,4.47,4169,4.47,4177,5.098,4178,6.313,4208,3.386,4276,3.89,4443,2.736,4450,4.138,4773,4.138,4797,3.263,5116,3.263,5540,2.806,5552,5.16,5732,2.412,5740,3.89,5985,3.528,6332,3.692,6597,4.47,7084,4.676,7605,3.692,7755,3.386,8383,3.386,8384,4.83,8385,3.528,8401,6.635,8403,4.138,8655,2.882,8777,3.89,8867,3.89,8908,3.89,9134,3.89,9334,4.47,9359,4.47,9384,4.47,9755,3.692,9800,4.47,10108,4.975,10109,4.975,10110,4.975,10111,4.47,10112,4.47,10113,4.47,10114,4.975,10115,4.975,10116,4.975,10117,4.975,10118,4.47,10119,4.975,10120,4.975,10121,4.975,10122,4.975,10123,4.975,10124,4.975,10125,4.975,10126,4.975,10127,4.975,10128,4.975,10129,4.47,10130,4.975,10131,4.975,10132,4.975,10133,4.975,10134,4.975,10135,4.47,10136,4.975,10137,4.975,10138,4.975]],["tags/Seneca on How to Live",[2948,3.297]],["title/Technical Knowledge Brews Creativity",[365,1.841,1881,2.026,2318,1.553,6456,4.377]],["content/Technical Knowledge Brews Creativity",[0,1.041,1,1.306,6,0.925,11,2.02,13,1.56,17,0.686,21,1.5,27,0.634,28,0.884,42,2.128,48,1.767,50,0.605,52,0.452,60,1.131,65,1.462,69,2.672,73,1.071,74,0.915,75,1.537,76,1.29,78,3.376,79,0.467,81,1.647,87,1.104,95,2.34,104,0.984,109,1.699,116,1.158,123,2.387,124,2.798,133,1.904,148,1.56,158,0.628,172,1.793,216,1.193,219,1.625,220,3.514,223,1.158,231,4.085,233,2.172,269,3.682,278,1.29,288,1.144,289,2.874,291,1.965,297,1.52,320,1.372,359,3.972,361,2.719,365,2.591,367,1.875,368,1.56,409,1.39,416,2.172,418,1.693,444,2.442,457,1.39,460,2.34,566,2.253,596,1.742,688,2.798,698,1.82,877,1.443,919,1.717,920,2.135,950,2.387,1062,1.996,1159,1.996,1198,2.956,1260,1.462,1339,1.54,1399,1.965,1426,2.047,1501,2.892,1586,2.128,1589,2.296,1613,2.488,1623,1.67,1646,3.253,1651,3.045,1671,2.063,1711,2.029,1714,3.045,1721,1.389,1952,2.387,1975,3.376,1976,2.387,1995,2.728,2006,1.847,2029,4.126,2071,3.144,2165,2.135,2193,2.728,2199,4.126,2275,3.376,2282,2.488,2301,2.662,2344,3.045,2349,3.253,2374,2.098,2398,3.517,2453,4.457,2467,2.728,2530,3.045,2548,3.879,2594,2.172,2651,4.126,2697,3.682,2759,2.601,2782,3.682,2805,2.758,2806,2.436,2830,3.045,2885,4.457,2932,3.253,3095,3.517,3125,2.956,3149,2.601,3152,3.376,3251,2.874,3254,3.568,3313,4.457,3488,4.209,3519,2.672,3550,3.517,3814,3.144,3940,3.682,4178,6.684,4208,3.376,4344,4.126,4391,3.682,4394,4.126,4443,2.728,4502,2.956,4691,3.594,4722,4.126,4785,4.085,4797,3.253,4954,3.517,5116,3.253,5357,3.517,5367,2.728,5409,2.543,5546,3.682,5559,4.457,5732,1.742,5905,3.045,5906,3.682,6179,3.517,6189,3.376,6213,3.517,6224,3.682,6332,3.682,6613,4.457,6753,4.457,6773,3.517,6793,3.682,7085,3.517,7173,4.126,7325,4.457,7475,3.517,7705,4.126,7836,6.143,7877,4.457,7896,4.457,7972,3.879,8039,3.517,8330,4.085,8380,4.126,8383,4.666,8384,4.209,8398,7.059,8399,4.457,8401,5.361,8406,4.126,8411,3.879,8631,4.457,8632,4.457,8655,2.874,8777,3.879,8834,4.126,8836,4.126,8846,5.361,9042,5.702,9212,7.059,9225,4.457,9233,4.457,9423,4.126,9559,4.457,9674,4.126,9695,3.879,9755,3.682,10139,4.96,10140,4.96,10141,4.96,10142,4.96,10143,6.854,10144,6.854,10145,4.96,10146,4.126,10147,4.96,10148,4.96,10149,4.96,10150,4.457,10151,4.96,10152,4.96,10153,4.96,10154,4.96,10155,4.96,10156,4.96,10157,4.96,10158,4.96,10159,4.96,10160,4.96,10161,4.126,10162,4.96,10163,4.96,10164,4.126,10165,4.96,10166,4.96,10167,4.96,10168,4.96,10169,4.96,10170,4.96,10171,4.96,10172,4.96,10173,4.96,10174,4.126,10175,4.96,10176,4.96,10177,4.96,10178,4.96,10179,4.96]],["tags/Technical Knowledge Brews Creativity",[2318,1.361,4396,1.904]],["title/Three Little GameCube Mods",[67,1.711,1399,1.929,6786,4.052,8891,3.615]],["content/Three Little GameCube Mods",[6,0.916,9,3.467,13,2.135,14,0.831,19,0.308,25,1.336,27,0.721,28,0.871,31,3.328,36,3.026,50,0.596,52,0.619,60,1.547,67,1.717,73,0.764,76,1.272,98,1.089,99,1.387,101,0.426,103,1.336,104,1.27,109,1.932,113,0.968,119,2.913,121,1.441,131,1.297,144,0.821,157,1.197,158,0.619,197,2.758,217,1.169,235,3.001,258,2.18,263,1.381,278,1.272,285,3.099,287,2.758,288,1.128,289,2.832,293,1.003,312,1.498,314,2.913,317,2.624,320,1.353,326,2.401,384,1.756,412,1.46,441,1.101,444,1.742,472,1.906,487,1.646,517,1.003,542,2.832,622,2.452,720,3.328,728,1.82,782,1.422,853,1.498,877,1.423,881,2.104,934,2.104,964,3.026,987,2.563,1172,4.879,1200,3.001,1232,3.001,1234,2.506,1240,2.689,1274,1.479,1283,0.514,1289,0.831,1296,1.493,1317,2.453,1337,3.479,1339,2.107,1354,3.91,1369,1.336,1382,2.068,1394,3.467,1397,3.629,1399,2.688,1401,3.026,1426,2.026,1488,1.936,1517,2.452,1578,3.732,1586,1.518,1634,1.967,1648,1.559,1658,2.452,1666,2.104,1677,2.262,1691,3.001,1744,2.353,1753,3.629,1754,4.451,1764,1.076,1784,2.624,1858,2.068,1885,2.832,1962,1.793,2003,3.823,2018,4.393,2027,7.567,2052,2.563,2147,2.913,2254,2.141,2289,1.793,2298,2.563,2348,2.832,2353,2.033,2431,2.832,2461,2.758,2577,3.467,2645,2.42,2652,4.067,2687,2.689,2691,2.068,2694,2.563,2798,2.871,2804,2.832,2805,1.717,2843,3.467,2852,4.067,2876,2.506,2952,2.832,2969,2.262,2986,2.506,2989,5.527,3077,2.22,3172,3.823,3271,3.001,3927,3.328,4353,3.001,4499,3.467,4524,3.206,4527,1.58,4538,7.16,4551,3.629,4575,3.932,4605,3.823,4630,4.393,4644,2.913,4785,2.913,5085,2.223,5103,2.832,5107,3.206,5142,3.823,5147,4.287,5162,3.328,5401,4.638,5414,3.328,5464,4.067,5700,3.001,5791,3.823,5826,4.786,5828,3.823,5833,2.913,5879,6.098,5901,2.452,6090,3.328,6183,4.393,6316,3.099,6317,3.823,6320,3.732,6746,3.629,6747,6.098,6786,7.964,7424,4.393,7492,4.393,7511,3.823,7674,3.823,7811,4.067,7838,4.067,7957,3.328,8296,3.629,8659,3.823,8819,3.823,8891,5.785,9078,3.629,9424,4.067,10180,4.888,10181,4.888,10182,4.888,10183,4.067,10184,4.888,10185,4.888,10186,4.888,10187,4.888,10188,4.888,10189,4.888,10190,4.888,10191,4.888,10192,4.888,10193,4.888,10194,6.786,10195,4.888,10196,4.888,10197,4.888,10198,4.888,10199,4.393,10200,4.888,10201,4.888,10202,4.888,10203,4.888,10204,4.888,10205,4.888,10206,4.888,10207,4.888,10208,4.888,10209,4.067,10210,4.888,10211,4.888,10212,4.888,10213,4.888,10214,4.888,10215,4.888,10216,4.888,10217,4.888,10218,4.888,10219,4.888]],["tags/Three Little GameCube Mods",[2378,1.038]],["title/Why Mastodon Isn't Great For Serendipity",[157,1.193,2028,1.814,3204,4.052,6933,3.087]],["content/Why Mastodon Isn't Great For Serendipity",[5,1.606,10,0.581,17,0.974,19,0.234,20,1.427,24,1.009,27,0.477,29,1.463,30,1.539,39,2.258,48,1.837,52,0.47,59,1.622,60,1.176,70,1.666,73,0.806,74,0.952,76,1.341,79,0.352,87,1.148,94,1.218,97,2.433,98,1.148,101,0.614,103,1.409,104,0.74,113,1.021,117,4.617,123,2.482,126,2.145,144,0.866,148,1.622,150,2.279,156,1.766,168,1.19,182,1.19,189,2.909,196,1.52,213,2.643,217,1.233,232,3.827,240,1.07,252,2.145,266,2.299,275,1.021,277,1.392,293,1.058,294,1.92,312,1.58,315,1.033,332,3.382,409,1.445,412,1.539,437,2.745,441,1.162,459,2.482,460,2.433,469,2.909,547,3.268,596,1.811,757,2.433,782,0.94,853,2.157,897,1.58,908,1.92,912,0.826,919,1.785,929,1.52,932,2.88,976,3.073,992,4.634,993,2.533,1020,1.864,1030,3.986,1062,2.075,1088,2.836,1146,1.689,1179,2.042,1274,2.424,1283,0.543,1291,1.341,1295,3.073,1312,2.386,1317,1.864,1346,1.601,1352,2.482,1354,2.587,1369,1.409,1398,2.342,1403,3.03,1425,3.71,1439,3.073,1488,3.175,1499,3.656,1509,4.033,1548,3.268,1623,1.736,1633,2.299,1663,1.622,1671,2.145,1687,1.058,1714,3.166,1715,2.342,1741,2.433,1765,3.51,1858,2.181,1932,3.073,1945,1.666,1949,5.133,1969,0.887,2004,3.971,2007,1.736,2028,1.92,2107,3.382,2116,2.299,2139,2.643,2183,2.342,2230,2.433,2258,3.268,2303,3.531,2310,3.073,2314,2.643,2348,2.988,2426,2.988,2485,3.382,2512,2.433,2592,2.587,2668,2.386,2705,3.166,2775,2.181,2805,1.811,3004,2.109,3019,3.166,3093,5.95,3144,4.777,3194,2.988,3197,7.5,3202,3.51,3204,6.668,3216,2.768,3245,3.268,3247,2.704,3272,3.656,3487,3.656,3885,4.992,4445,4.033,4478,3.51,4691,2.704,4741,3.073,4753,3.166,4964,4.079,5119,2.978,5229,3.827,5328,3.166,5359,2.768,5376,2.704,5378,3.51,5409,2.643,5471,2.587,5594,5.505,5722,3.656,5943,3.656,6509,3.382,6517,4.634,6547,3.268,6657,3.51,6738,4.29,6900,2.704,6933,3.268,7088,4.033,7289,2.836,7624,4.634,8224,4.033,8432,4.29,8972,5.505,8980,4.634,9323,4.29,9445,4.634,9734,4.634,9935,4.634,9967,4.634,10220,5.156,10221,7.04,10222,5.156,10223,5.156,10224,5.156,10225,5.156,10226,5.156,10227,5.156,10228,5.156,10229,5.156,10230,5.156,10231,5.156,10232,4.634,10233,5.156,10234,5.156,10235,5.156,10236,5.156,10237,8.016,10238,5.156,10239,5.156,10240,5.156,10241,5.156,10242,5.156,10243,5.156,10244,5.156,10245,5.156,10246,5.156,10247,5.156,10248,5.156,10249,4.634,10250,5.156,10251,5.156]],["tags/Why Mastodon Isn't Great For Serendipity",[]],["title/Archive by year: 2021",[6,0.736,477,2.269,4461,2.161]],["content/Archive by year: 2021",[19,0.436,477,3.513,4461,3.345]],["tags/Archive by year: 2021",[]],["title/Dark Age of Camelot in 2022",[937,2.748,4716,3.615,9963,2.614,10252,4.377]],["content/Dark Age of Camelot in 2022",[5,0.957,6,1.125,10,0.752,11,1.408,18,1.565,19,0.304,20,1.848,27,0.442,30,1.427,31,3.253,42,1.483,43,3.547,47,1.503,60,1.089,76,1.243,79,0.569,81,1.587,83,1.565,87,1.064,100,2.397,101,0.417,128,3.029,144,0.802,154,1.052,158,0.605,159,2.047,175,1.322,181,3.134,185,1.895,188,1.863,190,3.388,196,1.408,199,1.544,200,1.923,203,1.039,212,3.134,213,2.45,216,0.831,240,0.992,251,1.702,258,2.131,263,0.784,278,1.243,279,2.056,316,2.505,318,2.093,323,3.547,330,2.093,361,1.654,375,0.765,404,1.064,431,2.628,436,3.029,442,2.211,444,1.702,476,1.848,491,2.131,549,3.585,579,3.15,621,1.356,632,2.628,647,3.253,698,1.753,720,3.253,877,1.39,912,1.233,913,2.397,921,1.468,934,2.056,937,3.768,947,3.768,985,1.322,1011,1.702,1044,3.151,1159,1.923,1274,2.02,1278,2.835,1283,0.503,1289,0.812,1317,1.727,1339,1.483,1340,3.029,1398,2.17,1399,2.645,1420,1.779,1426,1.994,1430,3.782,1523,2.696,1583,2.101,1613,2.397,1657,2.047,1666,2.056,1718,2.565,1719,2.211,1777,2.021,1795,1.678,1799,2.696,1941,2.628,1947,2.45,1962,1.753,1983,1.565,1986,2.211,2043,2.45,2063,1.893,2064,2.934,2103,3.253,2116,2.131,2118,2.769,2147,2.848,2176,3.134,2183,2.17,2216,3.547,2313,3.547,2326,2.934,2337,3.134,2338,3.863,2348,3.87,2378,1.6,2441,3.029,2510,3.388,2514,4.294,2531,3.029,2597,3.547,2645,2.724,2660,3.424,2759,2.505,2794,4.547,2825,2.628,2874,3.029,2938,3.388,2945,2.505,2996,2.397,3004,1.955,3077,2.17,3239,3.737,3485,2.45,4103,3.547,4350,3.737,4636,3.975,4938,4.958,4944,3.134,4949,3.547,4965,3.547,5174,2.825,5250,2.696,5283,2.17,5328,2.934,5368,3.253,5485,3.134,5541,3.975,5546,4.958,5565,3.388,5650,6.406,5715,3.975,5732,1.678,5826,2.934,5844,2.45,5985,3.388,6049,2.934,6063,3.975,6271,5.228,6281,3.547,6352,3.547,6759,3.737,7231,2.769,7481,4.294,7765,5.556,7770,3.975,7957,3.253,8036,3.388,8123,5.223,8142,6.52,8249,3.388,8617,3.737,8623,4.294,8713,4.294,8918,3.737,8973,3.388,9137,3.975,9333,3.975,9571,3.975,10252,4.294,10253,4.778,10254,4.778,10255,4.778,10256,8.337,10257,4.778,10258,4.778,10259,9.33,10260,4.778,10261,4.778,10262,6.679,10263,4.778,10264,4.778,10265,4.778,10266,4.778,10267,4.778,10268,4.778,10269,4.778,10270,4.778,10271,4.778,10272,6.679,10273,4.778,10274,4.778,10275,4.778,10276,4.778,10277,4.778,10278,4.778,10279,4.778,10280,4.778,10281,4.778,10282,4.778,10283,4.294,10284,4.778,10285,4.778,10286,4.778,10287,4.778,10288,4.778,10289,4.778,10290,4.778,10291,4.778,10292,8.337,10293,4.778,10294,4.778,10295,7.7,10296,4.778,10297,4.294,10298,4.778,10299,6.679,10300,4.778,10301,4.778,10302,4.778,10303,4.778,10304,4.778]],["tags/Dark Age of Camelot in 2022",[2378,1.038]],["title/December 2021 In Review",[2717,2.433,4461,2.161,8191,3.458]],["content/December 2021 In Review",[0,1.134,1,1.423,7,2.106,11,1.592,13,1.7,18,1.77,19,0.399,20,1.495,25,1.477,26,0.929,27,0.5,36,2.409,50,0.658,52,0.663,57,3.544,65,2.142,67,2.552,71,4.225,75,1.057,79,0.368,97,2.549,98,1.203,99,1.533,101,0.471,104,0.776,109,1.339,150,1.323,152,2.71,153,2.481,156,1.823,157,1.323,165,1.49,168,1.247,175,1.495,199,1.746,235,3.317,240,1.121,258,2.409,263,0.886,315,1.082,318,2.366,361,1.871,375,1.163,392,2.6,404,1.203,407,2.285,412,1.613,413,2.654,430,1.572,435,2.325,443,1.592,479,3.425,495,3.048,546,2.549,579,2.21,606,3.661,774,3.22,897,1.656,921,0.951,934,2.325,950,2.6,964,2.409,995,2.833,1069,1.592,1229,2.706,1274,2.198,1278,1.746,1279,1.526,1289,0.918,1346,1.677,1403,2.325,1415,1.897,1488,2.878,1523,3.048,1577,2.454,1721,1.78,1795,1.897,1858,2.285,1872,2.454,1949,3.22,1969,0.929,2020,4.495,2025,2.366,2260,3.22,2306,2.501,2318,1.723,2338,2.71,2378,0.985,2430,4.225,2433,1.819,2452,3.13,2457,2.71,2483,2.9,2642,2.106,2645,1.677,2714,2.71,2717,2.409,2785,2.175,2791,3.678,2881,2.972,2894,3.317,2935,5.153,2969,2.501,2990,3.544,3130,3.425,3195,4.225,3225,2.77,3300,3.678,3307,3.544,3518,3.317,3519,2.106,3857,3.831,4390,4.225,4391,4.01,4461,3.478,4527,1.746,4716,4.01,4768,2.9,5093,5.683,5147,2.971,5189,3.425,5341,3.831,5407,3.544,5500,4.495,5531,3.317,5717,4.225,5789,3.13,5791,4.225,5864,3.317,5869,3.544,6122,3.425,6151,3.678,6513,4.495,6595,3.13,7184,3.831,7599,4.855,7709,4.01,7768,4.01,7770,4.495,8049,3.831,8191,3.425,8384,3.317,8478,4.225,8533,4.01,8655,3.13,8903,6.045,8904,3.831,8911,4.495,9025,4.225,9043,6.045,9369,4.855,9467,4.855,9571,4.495,9611,4.855,9915,4.225,9916,4.495,9985,4.855,10056,4.855,10057,6.53,10107,3.678,10174,4.495,10305,5.403,10306,5.403,10307,5.403,10308,5.403,10309,5.403,10310,5.403,10311,5.403,10312,5.403,10313,5.403,10314,5.403,10315,4.855,10316,5.403,10317,5.403,10318,5.403,10319,5.403,10320,4.855,10321,5.403,10322,5.403,10323,5.403,10324,5.403,10325,4.855,10326,5.403,10327,4.855,10328,5.403,10329,5.403,10330,5.403,10331,5.403,10332,5.403,10333,4.855,10334,5.403,10335,5.403,10336,5.403,10337,5.403,10338,5.403,10339,5.403,10340,5.403,10341,5.403,10342,5.403,10343,5.403,10344,5.403,10345,5.403]],["tags/December 2021 In Review",[10107,3.874]],["title/Generating a Blogroll With OPML in Hugo",[409,1.365,2409,2.172,10048,4.052,10346,4.377]],["content/Generating a Blogroll With OPML in Hugo",[3,1.485,6,0.671,10,0.56,13,1.565,14,0.845,19,0.437,26,0.855,27,0.636,28,0.886,35,3.692,50,0.606,51,2.218,52,0.626,67,2.412,70,2.219,73,0.778,75,1.344,81,1.652,82,2.347,83,1.629,94,1.175,96,1.798,99,1.411,101,0.434,109,1.95,116,1.161,118,3.153,121,1.466,133,1.91,144,0.835,148,2.161,150,1.218,154,1.095,179,0.929,182,1.148,184,1.675,211,2.378,230,2.347,241,2.104,263,0.816,264,2.218,282,1.586,288,1.585,312,1.524,316,2.608,389,4.093,392,2.394,422,1.772,443,1.466,459,2.394,465,1.881,471,2.608,477,2.069,481,3.687,487,2.312,561,2.965,566,2.259,596,2.412,631,2.736,708,4.47,711,3.521,722,1.91,739,3.875,754,2.806,782,0.907,799,2.965,806,2.444,853,1.524,903,2.035,908,2.929,909,3.272,921,0.876,926,2.55,929,1.466,932,2.035,949,2.55,951,1.218,995,2.608,1008,1.91,1020,3.218,1216,2.55,1260,1.466,1272,2.736,1278,1.607,1279,1.652,1283,0.937,1299,2.882,1300,2.259,1326,3.528,1334,2.179,1346,2.442,1394,3.528,1476,3.054,1506,2.67,1614,2.035,1671,2.857,1715,2.259,1719,2.302,1740,3.386,1764,1.731,1778,2.035,1860,2.965,1907,3.153,1948,3.263,1962,2.52,1964,3.153,1969,0.855,1973,2.965,1983,1.629,2028,1.852,2058,3.692,2086,2.965,2125,2.394,2139,2.55,2149,2.141,2225,3.528,2299,2.806,2353,2.857,2378,1.547,2409,3.063,2415,2.347,2454,2.259,2463,2.302,2475,2.558,2521,3.89,2642,1.939,2645,1.544,2655,2.002,2684,2.67,2691,2.104,2699,1.881,2713,3.054,2775,2.104,2908,3.528,2994,3.054,2996,2.495,3077,2.259,3088,3.054,3095,3.528,3225,2.55,3226,3.386,3241,2.312,3257,2.965,3838,3.692,4298,3.153,4339,3.054,4366,4.138,4395,4.47,4417,2.55,4459,3.386,4527,1.607,4797,3.263,5109,2.495,5110,2.495,5119,2.905,5174,2.104,5193,3.692,5244,3.153,5257,3.89,5367,2.736,5381,3.386,5694,3.386,5700,3.054,5855,3.153,5942,3.054,5969,3.528,6014,4.47,6038,3.692,6189,3.386,6199,4.47,6200,3.528,6240,4.47,6547,3.153,6595,2.882,6728,4.138,6756,4.138,6767,3.528,6844,3.263,6853,3.054,6958,7.378,7016,4.47,7084,3.386,7116,4.138,7126,4.138,7437,3.89,8482,4.138,8805,3.528,8891,3.692,8932,4.47,9486,4.138,9900,4.47,10048,4.138,10232,4.47,10346,6.172,10347,4.975,10348,4.975,10349,4.975,10350,4.975,10351,4.975,10352,4.975,10353,4.975,10354,4.47,10355,4.47,10356,4.975,10357,4.975,10358,4.975,10359,4.975,10360,4.975,10361,4.975,10362,4.975,10363,4.975,10364,4.975,10365,4.47,10366,4.975,10367,4.975,10368,4.975,10369,7.867,10370,4.975,10371,4.975,10372,4.975,10373,4.975,10374,4.975,10375,4.975,10376,4.47]],["tags/Generating a Blogroll With OPML in Hugo",[2409,2.538]],["title/A Factor Analysis For Dummies in R",[1353,4.377,1564,3.454,4355,3.454,5564,3.316]],["content/A Factor Analysis For Dummies in R",[10,0.54,11,1.414,14,0.815,19,0.446,27,0.62,28,1.193,29,1.901,46,1.963,50,0.816,52,0.801,73,0.75,80,2.639,87,1.069,94,1.583,98,1.069,118,3.041,121,1.414,123,3.224,126,2.786,138,2.407,156,1.204,158,0.608,167,1.901,168,1.107,175,1.854,182,1.107,184,1.615,185,1.361,203,1.044,240,0.996,252,1.996,263,0.787,293,1.583,367,1.814,368,1.51,375,0.768,422,1.71,437,1.871,441,1.081,455,1.638,469,2.707,472,1.871,476,1.854,517,0.984,628,2.03,631,2.639,725,2.707,782,1.408,806,2.357,827,3.684,854,3.043,877,1.396,921,1.179,929,1.414,958,2.576,994,2.179,1019,3.992,1044,3.161,1069,1.414,1137,3.147,1193,1.735,1234,2.46,1237,1.871,1274,1.451,1283,0.812,1296,1.056,1303,2.407,1327,2.107,1335,3.272,1346,2.396,1366,2.576,1398,2.179,1422,1.901,1426,1.433,1470,2.576,1541,1.53,1557,1.685,1564,4.75,1583,1.51,1599,3.957,1631,1.814,1648,2.136,1655,1.963,1716,4.972,1725,2.387,1746,2.576,1778,1.963,1803,2.707,1810,5.062,1831,3.753,1972,2.46,1973,2.86,1977,2.946,2034,2.03,2092,3.562,2104,2.639,2159,2.946,2176,3.147,2214,4.712,2231,2.639,2318,1.53,2533,2.78,2594,2.934,2642,1.871,2680,3.753,2728,2.86,2805,1.685,2858,5.239,2876,2.46,3034,5.062,3161,3.147,3178,3.881,3239,3.753,3245,3.041,3485,2.46,3523,3.147,3546,2.46,3814,3.041,4308,3.562,4355,5.473,4400,4.312,4421,3.753,4455,3.562,4765,5.239,4810,4.312,4934,4.312,4948,3.147,5085,1.572,5103,2.78,5128,2.946,5162,3.266,5529,3.753,5564,4.56,5751,3.147,5786,4.972,5804,2.946,5826,2.946,5836,3.403,6013,3.266,6131,3.266,6230,5.573,6232,3.992,6498,3.753,6503,3.266,6662,3.562,6803,4.312,6923,3.992,6999,4.972,7307,4.312,7460,4.312,8089,3.147,8617,3.753,8801,3.992,8805,3.403,9222,4.312,9674,3.992,10377,4.312,10378,4.798,10379,4.798,10380,4.798,10381,4.798,10382,4.798,10383,4.798,10384,4.798,10385,3.992,10386,4.798,10387,4.798,10388,4.798,10389,6.699,10390,6.699,10391,6.699,10392,4.798,10393,6.699,10394,4.798,10395,4.798,10396,4.798,10397,4.798,10398,4.798,10399,4.798,10400,4.798,10401,4.798,10402,4.798,10403,7.717,10404,6.699,10405,4.798,10406,4.798,10407,4.798,10408,6.699,10409,4.798,10410,6.699,10411,7.717,10412,4.312,10413,4.798,10414,4.798,10415,4.798,10416,4.798,10417,6.699,10418,6.699,10419,6.699,10420,6.699,10421,6.699,10422,4.798,10423,4.798,10424,6.699,10425,4.798,10426,4.798,10427,4.798,10428,4.798,10429,4.312,10430,6.699,10431,4.798,10432,4.798,10433,4.798,10434,4.798,10435,4.798,10436,4.798,10437,4.798,10438,4.798,10439,4.798,10440,4.798,10441,4.798,10442,4.798,10443,4.798,10444,4.798,10445,4.798,10446,4.798,10447,4.798,10448,4.798,10449,4.798]],["tags/A Factor Analysis For Dummies in R",[3559,2.984]],["title/Minimalism and Tidying Up",[27,0.505,2777,3.869,10450,4.903]],["content/Minimalism and Tidying Up",[2,3.679,6,0.669,10,1.036,13,2.156,19,0.311,20,1.372,22,0.948,25,1.873,27,0.851,49,2.874,50,0.835,55,1.82,60,1.131,65,2.497,73,0.775,77,1.52,79,0.627,81,1.647,89,2.552,94,1.172,98,1.104,99,2.229,100,2.488,101,0.597,104,1.128,109,1.699,113,0.982,116,1.158,118,3.144,122,3.706,142,2.34,144,1.423,148,1.56,153,1.693,154,1.092,157,1.215,158,0.868,165,1.017,175,1.897,179,1.28,180,2.094,184,1.67,185,1.945,189,2.798,199,2.538,212,3.253,217,1.186,248,2.874,269,3.682,275,1.357,282,1.581,293,1.017,294,2.552,312,1.52,321,2.478,350,3.376,378,1.104,392,2.387,418,1.693,430,1.443,436,3.144,446,3.234,457,1.39,630,1.372,711,2.543,728,1.847,797,2.135,851,2.245,853,1.52,920,2.135,949,2.543,950,2.387,978,1.767,986,4.431,1030,2.296,1031,2.34,1216,2.543,1283,0.826,1292,2.715,1399,1.965,1470,2.662,1508,3.045,1537,2.029,1552,2.543,1589,3.635,1606,2.543,1614,2.029,1617,2.063,1655,2.804,1687,1.017,1721,1.389,1764,1.092,1827,3.972,1860,2.956,1931,2.029,2007,1.67,2012,2.488,2034,2.9,2055,3.682,2125,2.387,2214,4.78,2231,2.728,2317,3.376,2353,2.851,2378,1.545,2390,3.234,2413,2.296,2427,5.833,2433,2.994,2436,4.457,2452,2.874,2454,2.253,2482,3.879,2512,2.34,2533,2.874,2537,6.143,2665,2.601,2702,4.126,2711,4.345,2777,6.008,2909,3.253,2948,2.874,2998,3.94,3004,2.029,3007,3.253,3010,4.126,3013,2.728,3035,2.253,3077,3.113,3488,3.045,3539,2.798,3609,4.457,3852,3.682,4108,4.126,4398,2.956,4417,2.543,4461,1.965,4480,3.144,4524,3.253,4794,2.874,5168,3.879,5250,2.798,5288,6.143,5481,4.457,5725,3.517,5732,2.407,5768,3.517,5777,3.253,5864,3.045,5983,3.045,6588,5.049,6731,4.126,6744,4.457,7177,3.517,7212,3.367,7374,4.457,7552,4.457,7836,3.879,7860,7.059,8783,4.457,9126,4.126,9899,6.16,10333,4.457,10450,6.16,10451,6.854,10452,4.96,10453,4.96,10454,4.96,10455,4.96,10456,4.96,10457,4.96,10458,4.96,10459,4.96,10460,4.96,10461,4.96,10462,4.96,10463,4.96,10464,4.96,10465,4.96,10466,6.16,10467,4.457,10468,4.96,10469,4.96,10470,4.96,10471,4.96,10472,4.96,10473,4.96,10474,4.96,10475,3.879]],["tags/Minimalism and Tidying Up",[]],["title/Natural Gas Prices and The Energy Market",[2565,2.255,2605,2.036,2756,1.893,6122,2.788,10476,3.265]],["content/Natural Gas Prices and The Energy Market",[0,1.013,4,2.152,5,1.347,6,1.045,14,1.143,17,0.93,19,0.219,27,0.447,36,2.999,54,3.582,57,3.165,62,2.37,73,1.051,77,2.372,79,0.459,87,1.498,91,1.719,94,1.14,101,0.586,102,2.474,103,1.319,116,1.127,128,3.059,144,0.81,148,1.518,149,1.647,150,1.182,153,1.647,156,1.211,168,1.113,179,1.256,182,1.113,184,1.625,193,2.37,199,2.173,203,1.05,210,2.233,216,0.84,221,4.769,263,0.791,282,1.539,293,0.99,304,2.114,309,2.264,321,1.744,384,1.087,398,2.963,430,1.404,431,2.654,435,2.077,484,2.007,491,2.152,518,2.277,580,3.055,652,3.059,704,3.422,705,1.719,711,2.474,854,3.516,906,3.059,913,3.374,927,4.015,951,1.182,1011,1.719,1044,2.277,1179,3.066,1212,3.582,1229,2.504,1237,1.881,1274,1.46,1279,1.013,1283,0.508,1302,4.753,1317,1.744,1327,1.518,1332,2.192,1346,2.831,1382,3.725,1488,1.911,1534,3.237,1537,1.974,1552,4.514,1582,1.942,1583,2.116,1614,1.974,1631,1.824,1633,3.452,1657,1.479,1663,1.518,1675,2.233,1710,2.233,1715,2.192,1778,1.974,1794,1.942,1796,2.077,1938,3.374,1951,3.774,1952,2.323,1965,1.647,1976,2.323,2003,3.774,2007,1.625,2028,1.797,2048,3.285,2105,2.654,2116,2.152,2127,2.876,2172,4.411,2177,2.654,2302,1.852,2333,2.722,2347,4.367,2540,3.897,2565,3.448,2631,4.337,2646,3.422,2649,5.26,2714,2.421,2728,2.876,2756,3.924,2785,1.942,2795,3.165,2796,2.963,2850,3.774,2901,3.582,2924,4.015,2959,2.876,2968,4.578,2969,3.113,3178,2.796,3224,2.53,3236,2.323,3247,2.53,3490,4.015,3510,4.337,3515,3.582,3524,2.654,3940,3.582,4366,4.015,4396,2.152,4402,2.277,4461,3.066,4756,2.323,4910,4.992,4929,3.285,5107,3.165,5195,2.53,5361,2.654,5417,3.113,5786,3.582,5787,4.578,5844,2.474,5965,4.907,6104,4.769,6122,4.263,6206,2.876,6210,6.966,6486,4.337,6498,3.774,6647,3.059,6678,3.582,7000,3.422,7119,4.129,7314,4.015,7392,3.774,7641,5.595,8089,3.165,8129,4.337,8191,4.263,8321,4.337,8434,6.044,8440,4.337,8522,3.774,9063,5.595,9165,4.337,9248,4.337,9276,4.337,9727,4.015,9753,4.337,9963,2.59,10476,6.215,10477,6.725,10478,4.826,10479,6.044,10480,4.826,10481,4.826,10482,6.725,10483,4.826,10484,4.826,10485,4.826,10486,4.826,10487,4.337,10488,4.826,10489,4.826,10490,4.826,10491,4.826,10492,4.826,10493,4.826,10494,4.826,10495,4.826,10496,4.826,10497,4.826,10498,4.826,10499,4.826,10500,4.826,10501,4.826,10502,4.826,10503,4.826,10504,4.826,10505,4.826,10506,4.826,10507,4.826,10508,4.826,10509,4.826,10510,4.826,10511,4.826,10512,4.826,10513,4.826,10514,4.826,10515,4.826,10516,4.826,10517,4.826,10518,4.826,10519,4.826,10520,4.826,10521,4.826]],["tags/Natural Gas Prices and The Energy Market",[7737,2.706,10522,3.551]],["title/Re: Writing A Book Is Nonesense",[65,1.436,75,0.953,1066,2.344,10523,4.871]],["content/Re: Writing A Book Is Nonesense",[5,1.583,10,0.89,13,2.174,14,0.853,19,0.228,20,1.389,21,1.518,26,0.863,28,1.231,29,1.424,32,3.559,50,0.842,59,2.174,65,3.009,75,1.547,77,1.538,85,1.6,89,1.869,94,1.867,103,2.327,104,1.135,109,1.244,117,3.292,121,1.479,126,2.087,131,0.959,144,0.843,148,2.174,150,1.936,154,1.521,156,1.983,157,1.229,158,0.636,165,1.029,182,1.158,185,1.424,187,3.292,188,1.957,196,1.479,211,2.736,216,0.873,217,1.2,219,1.644,251,1.788,258,2.238,263,0.823,271,1.814,276,2.111,277,1.865,291,2.737,293,1.029,316,3.623,321,2.498,357,3.559,367,2.988,368,1.579,407,2.923,412,1.498,430,1.46,435,2.16,457,1.406,478,1.957,479,3.181,517,1.029,528,3.416,564,3.982,722,1.927,728,1.869,827,2.76,912,0.804,919,1.738,921,0.884,945,2.123,973,3.416,978,1.788,994,3.139,1008,1.927,1069,1.479,1096,2.76,1270,3.292,1274,1.518,1276,1.869,1278,1.622,1283,0.528,1289,0.853,1296,1.104,1312,2.323,1315,2.053,1339,1.558,1348,2.123,1352,3.326,1415,2.427,1505,2.632,1511,2.632,1533,2.323,1582,2.02,1584,2.908,1617,2.087,1657,1.538,1671,2.087,1721,2.006,1737,3.292,1790,2.908,1791,2.76,1935,3.925,1964,3.181,1969,0.863,1999,2.465,2071,3.181,2077,2.323,2139,2.573,2177,2.76,2254,2.198,2297,3.623,2301,2.694,2338,3.467,2358,2.908,2376,2.694,2378,0.915,2401,2.991,2431,2.908,2457,2.518,2665,2.632,2715,3.082,2813,4.51,2825,2.76,2951,3.181,2986,2.573,3044,2.908,3079,3.559,3082,3.559,3122,2.908,3202,3.416,3243,3.416,3254,3.139,3255,3.292,3295,2.991,3315,3.725,3454,2.368,3509,3.181,3519,2.694,3528,4.118,3709,4.51,3821,5.129,3835,4.175,4103,3.725,4284,5.38,4320,3.292,4342,4.175,4451,3.181,4499,3.559,4756,2.415,4852,4.51,5085,1.644,5121,3.181,5283,2.279,5328,3.082,5367,2.76,5518,2.991,5545,3.925,5565,3.559,5583,4.51,5779,4.51,5969,3.559,5985,3.559,6001,3.416,6503,4.704,6708,4.175,6987,5.129,7226,4.175,7290,5.129,7296,3.925,7314,4.175,7587,4.51,8417,3.925,8546,4.51,8979,3.416,9484,4.51,10524,6.91,10525,5.019,10526,5.019,10527,5.019,10528,6.91,10529,5.019,10530,5.019,10531,5.019,10532,5.019,10533,5.019,10534,5.019,10535,5.019,10536,5.019,10537,5.019,10538,5.019,10539,5.019,10540,5.019,10541,5.019,10542,5.019,10543,5.019,10544,5.019,10545,5.019,10546,5.019]],["tags/Re: Writing A Book Is Nonesense",[65,1.677]],["title/The Creative Techniques Toolbox",[1309,3.579,2318,1.739,10547,5.456]],["content/The Creative Techniques Toolbox",[0,1.005,5,1.339,6,0.902,10,0.539,13,1.505,14,0.813,17,0.925,25,1.308,27,0.443,39,2.096,42,1.486,47,1.505,48,1.705,50,1.017,63,3.981,73,1.045,75,0.936,76,1.245,79,0.456,87,1.066,89,1.782,95,2.258,96,2.417,98,1.066,101,0.672,116,1.117,132,1.392,154,1.053,158,0.847,176,2.699,179,0.894,182,1.104,208,2.134,214,3.257,215,3.393,216,0.833,225,3.138,244,3.552,273,3.257,276,1.91,277,1.292,278,1.245,285,3.033,286,5.229,287,2.699,288,1.104,366,2.453,384,1.736,403,3.72,404,1.716,437,1.866,444,1.705,452,1.73,457,1.341,490,2.509,566,2.173,722,1.837,723,2.059,851,1.567,877,1.946,920,3.316,921,0.842,924,2.453,926,2.453,929,1.41,937,3.772,942,2.568,944,3.742,949,2.453,993,3.284,995,2.509,1013,3.552,1017,2.509,1060,3.033,1062,2.691,1192,2.258,1198,2.852,1206,3.138,1340,3.033,1399,1.895,1442,3.552,1506,2.568,1557,1.68,1586,1.486,1592,2.632,1600,2.215,1608,2.134,1617,1.99,1663,1.505,1714,2.938,1764,1.471,1777,2.024,1778,1.957,1785,1.505,1796,2.059,1931,2.735,1941,2.632,1974,2.632,1976,2.303,1983,1.567,2062,2.781,2077,3.094,2117,2.938,2144,2.699,2175,3.257,2208,3.742,2319,3.677,2376,3.588,2400,2.938,2444,3.552,2488,3.138,2490,2.938,2494,4.385,2510,4.741,2558,1.866,2661,4.136,2669,2.852,2757,3.393,2760,2.632,2768,3.742,2775,2.024,2791,3.257,2794,3.257,2798,2.828,2805,2.706,2829,4.3,2830,2.938,2876,2.453,2900,3.552,2907,3.033,2922,3.981,2946,4.3,2969,2.215,3021,3.257,3035,2.173,3125,2.852,3133,3.981,3160,2.938,3172,3.742,3221,3.981,3233,3.138,3236,2.303,3270,4.741,3278,2.852,3300,4.551,3317,3.742,3485,2.453,3498,4.3,3556,3.393,4208,5.679,4388,3.552,4421,3.742,4426,2.938,4446,3.981,4714,2.699,4718,4.3,4960,4.741,5083,3.033,5154,3.552,5367,2.632,5464,3.981,5665,4.551,5869,3.138,5906,3.552,5983,2.938,6099,3.552,6165,3.981,6174,3.393,6330,5.562,6352,3.552,6563,3.742,6679,4.3,6722,3.742,6791,4.3,6811,3.981,7149,3.552,7605,3.552,7997,3.981,8001,4.3,8038,3.552,8260,3.257,8313,4.3,8319,4.3,8330,3.984,8345,3.981,8383,3.257,8410,6.94,8411,3.742,8422,3.742,8436,3.742,8693,3.981,8820,3.742,8835,3.981,8959,5.562,8972,3.742,9042,3.981,9057,3.981,9147,3.981,9493,4.3,9532,4.3,9755,3.552,9858,3.552,10081,4.962,10150,4.3,10164,3.981,10174,3.981,10475,3.742,10548,4.785,10549,4.785,10550,4.785,10551,7.497,10552,4.785,10553,4.785,10554,4.785,10555,4.785,10556,4.785,10557,4.785,10558,4.785,10559,4.785,10560,4.785,10561,4.785,10562,4.785,10563,4.785,10564,4.785,10565,4.785,10566,4.785,10567,4.785,10568,6.685,10569,4.785,10570,4.785,10571,4.785,10572,4.785,10573,4.3,10574,4.785,10575,4.785,10576,4.785,10577,4.785,10578,4.785,10579,4.785,10580,4.785,10581,4.785,10582,7.706,10583,6.685,10584,4.785,10585,4.785,10586,4.785,10587,4.785,10588,4.785,10589,4.785]],["tags/The Creative Techniques Toolbox",[2318,1.361,4396,1.904]],["title/Why I Play Games (And So Should You)",[2378,1.131,2645,1.925]],["content/Why I Play Games (And So Should You)",[1,1.322,7,3.081,10,0.959,11,1.479,13,1.579,17,1.178,19,0.314,22,1.511,26,0.863,27,0.731,39,2.198,46,2.053,47,1.579,69,1.957,73,0.784,74,0.926,77,1.538,79,0.342,85,1.6,89,1.869,92,2.831,100,2.518,101,0.602,103,1.372,104,0.721,109,1.244,113,1.368,116,1.172,123,3.326,130,2.76,144,1.43,148,2.174,149,2.359,158,1.001,165,1.621,168,1.158,175,1.389,180,1.338,182,1.158,196,2.037,200,2.781,211,1.738,216,1.482,217,1.2,225,3.292,234,2.415,240,1.041,263,0.823,271,1.814,276,1.959,277,1.865,288,1.158,294,1.869,309,1.69,312,1.538,315,1.005,361,1.738,375,0.804,384,1.557,397,3.559,408,2.831,409,1.406,412,2.063,418,1.713,428,2.831,437,1.957,444,1.788,564,2.238,565,3.082,567,2.991,627,1.869,754,2.831,813,2.76,912,1.106,929,1.479,949,2.573,950,2.415,1063,4.51,1069,2.037,1179,2.737,1232,3.082,1276,1.869,1283,0.528,1291,1.306,1312,2.323,1348,2.923,1431,2.76,1533,2.323,1537,2.053,1541,1.6,1577,2.279,1613,2.518,1663,1.579,1666,2.16,1721,1.017,1764,1.521,1785,1.579,1876,2.238,1931,2.827,1965,1.713,1969,0.863,2007,1.69,2024,2.694,2028,2.943,2043,2.573,2070,2.573,2105,2.76,2177,2.76,2226,3.725,2378,1.838,2382,3.082,2396,2.694,2398,3.559,2417,3.801,2423,3.559,2426,2.908,2467,2.76,2534,3.416,2553,4.51,2616,5.129,2642,1.957,2644,4.9,2645,2.772,2699,1.897,2713,3.082,2714,2.518,2755,3.181,2785,2.02,2788,3.292,2825,2.76,3007,3.292,3012,3.292,3077,3.868,3161,3.292,3181,2.991,3230,3.925,3254,2.279,3265,3.082,3267,3.559,3299,3.925,3300,3.416,3839,3.292,3853,3.725,3885,3.559,4298,3.181,4320,3.292,4391,3.725,4422,3.181,4527,1.622,4550,3.925,4803,4.51,4948,4.533,5085,2.263,5282,2.76,5343,4.51,5353,4.175,5364,3.925,5518,2.991,5540,2.831,5550,3.181,6190,2.908,6200,3.559,6207,3.559,6274,4.51,6618,3.181,6765,4.51,6939,4.175,8096,3.925,8142,3.925,8251,4.51,8315,3.559,8417,6.66,8422,3.925,8429,4.51,8436,3.925,8482,4.175,8820,3.925,8830,3.925,8870,4.175,8908,3.925,8964,4.175,9134,3.925,9269,3.925,9535,4.51,9696,4.51,9697,4.51,9712,4.51,10093,3.725,10118,4.51,10590,5.019,10591,5.019,10592,5.019,10593,5.019,10594,5.019,10595,4.51,10596,5.019,10597,5.019,10598,5.019,10599,5.019,10600,5.019,10601,5.019,10602,5.019,10603,5.019,10604,4.175,10605,5.019,10606,4.51,10607,5.019,10608,5.019,10609,5.019]],["tags/Why I Play Games (And So Should You)",[2378,1.038]],["title/Winnie Lim on Rebuilding Oneself",[10096,3.809,10097,4.052,10146,4.052,10610,4.871]],["content/Winnie Lim on Rebuilding Oneself",[0,1.445,3,1.49,6,1.203,7,1.945,10,0.887,11,2.322,13,1.57,19,0.429,24,0.976,25,1.881,27,0.825,28,0.889,47,1.57,50,0.96,57,3.272,73,0.78,75,1.662,77,1.529,79,0.469,85,1.591,86,1.804,87,1.111,98,1.111,100,2.503,101,0.74,103,1.363,104,0.716,112,4.362,113,1.56,114,2.815,144,0.838,145,2.911,149,1.703,150,1.222,156,2.131,165,1.023,168,1.588,172,2.488,179,1.471,180,1.835,182,1.151,183,3.396,196,1.471,215,3.538,216,0.868,233,2.185,240,1.428,242,1.83,251,1.778,258,2.225,263,0.818,271,1.804,275,0.988,276,1.237,293,1.023,297,2.109,312,1.529,315,1,317,1.68,321,1.804,360,4.484,361,1.727,372,2.041,375,0.799,378,1.111,384,1.124,422,2.452,441,1.124,450,2.266,460,2.354,465,1.886,476,1.381,478,1.945,487,1.68,580,2.266,628,2.111,897,1.529,909,2.075,919,1.727,924,2.558,926,2.558,931,4.151,950,2.401,978,1.778,986,2.815,1010,4.151,1020,1.804,1030,2.309,1159,2.008,1274,2.082,1278,1.612,1279,1.445,1283,0.829,1289,0.848,1291,1.791,1292,1.976,1335,1.858,1346,2.446,1537,2.041,1541,1.591,1582,2.008,1586,1.549,1592,2.744,1599,2.558,1648,1.591,1672,5.726,1687,1.412,1719,2.309,1721,1.597,1776,3.063,1785,2.165,1881,2.075,1931,3.223,1935,3.902,1945,1.612,1969,0.858,1975,4.685,2172,5.168,2202,3.902,2334,4.484,2344,3.063,2396,2.678,2463,2.309,2497,3.162,2511,2.744,2594,3.014,2651,4.151,2715,3.063,2717,3.513,2760,2.744,2770,3.902,2830,3.063,2909,3.272,2948,2.891,2981,2.744,2998,2.503,3004,2.041,3034,3.272,3160,3.063,3190,2.678,3220,2.973,3225,2.558,3231,4.484,3251,2.891,3307,4.514,3315,3.703,3905,3.162,4443,2.744,4456,3.902,4461,1.976,4716,3.703,4756,2.401,5085,1.634,5097,5.726,5518,4.102,5561,3.703,5717,3.902,6013,3.396,6165,4.151,6191,3.902,6320,2.744,6588,2.973,6614,4.484,6662,3.703,7037,4.151,7675,4.484,7681,3.272,7766,4.151,8179,4.484,8186,3.703,8316,3.538,8383,3.396,8384,3.063,8394,4.484,8547,3.703,8599,3.902,8604,4.151,8837,4.484,8973,3.538,9078,3.703,9803,4.484,9978,4.484,10093,3.703,10096,6.162,10146,4.151,10385,4.151,10611,4.989,10612,4.989,10613,4.989,10614,4.989,10615,4.989,10616,6.882,10617,4.989,10618,4.989,10619,4.989,10620,6.882,10621,4.989,10622,4.989,10623,4.989,10624,4.989,10625,4.989,10626,4.989,10627,4.989,10628,4.989,10629,4.989,10630,4.151,10631,4.989,10632,4.989,10633,4.484,10634,4.989,10635,4.989]],["tags/Winnie Lim on Rebuilding Oneself",[]],["title/Woke in Class",[579,2.537,10636,5.573]],["content/Woke in Class",[1,1.291,3,1.464,4,2.186,5,0.982,6,0.662,10,0.766,14,0.833,17,0.941,20,1.357,24,1.528,25,1.34,26,1.169,27,0.629,28,0.873,50,0.829,52,0.447,59,1.542,60,1.118,70,1.584,79,0.334,85,1.563,87,1.514,91,2.422,94,1.607,98,1.092,100,2.459,113,1.346,116,1.588,123,2.36,144,1.311,149,2.321,154,1.496,158,0.861,165,1.005,179,0.915,182,1.131,186,3.477,203,1.698,209,2.766,210,3.147,211,1.697,216,0.853,240,1.411,241,2.074,263,0.804,275,1.346,276,1.215,278,1.275,279,2.11,282,2.168,297,2.084,309,1.651,316,2.571,318,2.147,361,1.697,367,1.853,375,1.089,384,1.105,443,1.445,457,1.905,459,2.36,467,2.922,478,1.911,487,1.651,518,3.208,539,3.834,579,2.006,628,2.876,724,1.522,782,0.894,813,3.74,877,1.427,881,2.11,912,1.418,920,2.11,921,0.863,932,2.006,938,3.01,978,1.747,1009,3.108,1011,1.747,1060,4.31,1146,1.606,1193,1.772,1236,2.36,1279,1.428,1283,0.821,1286,3.565,1289,1.155,1291,2.031,1296,1.079,1352,2.36,1382,2.074,1401,2.186,1497,3.01,1505,2.571,1617,2.828,1619,2.513,1631,1.853,1634,1.973,1656,4.822,1657,2.084,1671,2.039,1678,2.828,1687,1.601,1710,3.147,1711,2.782,1714,4.175,1725,1.747,1742,2.269,1763,2.039,1764,1.496,1778,2.782,1787,2.696,1803,2.766,1876,2.186,1881,2.039,1892,3.337,1946,2.766,1965,1.674,1969,0.843,1984,3.01,2006,1.826,2007,1.651,2015,2.631,2025,2.147,2034,2.074,2057,5.657,2123,3.273,2176,3.216,2178,3.216,2193,2.696,2301,2.631,2302,1.882,2335,2.841,2338,4.229,2348,2.841,2375,2.631,2390,2.313,2396,2.631,2413,3.147,2447,5.626,2484,3.477,2564,2.766,2639,3.337,2661,2.631,2687,3.74,2891,3.216,2893,3.337,3006,5.318,3020,4.406,3041,3.834,3129,3.337,3186,3.01,3216,2.631,3319,4.002,3483,4.324,3485,2.513,3809,4.406,3838,3.639,3885,3.477,3904,4.406,4164,4.406,4426,3.01,4493,4.406,4715,4.406,4801,2.459,4930,4.079,5121,3.108,5359,2.631,5408,3.477,5409,2.513,5511,3.834,5551,3.834,5844,2.513,5985,3.477,6207,3.477,6319,4.406,6480,4.079,6618,3.108,6711,4.079,6716,4.406,6774,3.108,6822,5.53,7161,3.834,7703,4.406,7834,3.639,7893,4.079,7908,4.406,7958,4.406,8617,3.834,9171,4.079,9184,4.406,9858,3.639,9947,4.406,10595,4.406,10636,4.406,10637,6.799,10638,4.903,10639,4.903,10640,4.903,10641,4.903,10642,4.903,10643,4.903,10644,4.903,10645,4.903,10646,4.903,10647,4.903,10648,6.799,10649,4.903,10650,4.903,10651,4.903,10652,7.015,10653,4.903,10654,4.903]],["tags/Woke in Class",[]],["title/2021 Year In Review",[6,0.736,2717,2.433,4461,2.161]],["content/2021 Year In Review",[2,2.613,4,2.17,5,1.558,6,1.31,10,0.548,13,1.531,14,0.827,17,1.222,19,0.401,21,2.352,22,0.93,23,2.024,25,2.125,27,0.626,28,0.867,29,1.381,34,4.374,42,1.511,45,4.374,47,1.531,50,0.593,51,2.17,56,3.313,62,2.391,69,1.898,73,0.761,74,1.249,75,1.324,79,0.332,81,1.616,87,1.084,96,1.76,97,2.297,101,0.797,104,0.699,116,1.58,131,0.93,138,2.442,148,1.531,149,2.31,150,1.192,152,2.442,153,1.662,156,1.951,157,1.192,159,1.491,165,1.388,168,1.123,172,1.76,175,1.347,188,1.898,220,2.495,223,1.136,251,1.734,253,2.862,258,2.17,263,0.798,266,3.748,275,0.964,278,1.76,288,1.561,289,4.506,307,2.82,311,2.073,317,2.278,365,2.558,368,2.644,375,0.779,402,4.798,412,1.453,426,2.613,441,1.097,443,1.994,487,1.639,492,2.495,517,0.998,579,1.991,630,1.347,677,3.193,723,2.095,853,1.491,909,2.024,912,1.083,921,0.857,924,2.495,926,2.495,929,1.435,938,2.989,944,3.807,954,3.313,960,3.313,994,2.211,1234,2.495,1260,1.994,1283,0.712,1292,1.928,1294,3.613,1331,2.297,1337,3.469,1398,2.211,1401,2.17,1471,3.193,1501,1.662,1517,3.394,1537,1.991,1584,2.82,1586,1.511,1617,2.024,1651,2.989,1675,3.131,1676,2.989,1711,2.768,1721,0.987,1742,2.253,1764,1.071,1776,2.989,1796,2.095,1860,2.901,1885,2.82,1907,3.085,1949,2.901,1969,1.163,1979,3.613,1983,1.594,2064,2.989,2087,2.552,2149,2.095,2289,1.786,2302,1.868,2348,3.92,2364,3.613,2400,2.989,2403,3.193,2434,2.211,2441,3.085,2463,2.253,2592,2.442,2656,4.374,2660,3.469,2691,2.059,2699,1.84,2717,3.748,2759,2.552,2775,2.059,2881,2.768,2907,3.085,2908,3.452,2939,3.193,2995,2.677,2998,2.442,3004,1.991,3073,5.022,3101,3.452,3144,2.901,3145,2.343,3166,4.606,3192,3.313,3193,4.374,3194,2.82,3197,4.049,3454,2.297,3485,2.495,4288,4.374,4398,2.901,4422,4.288,4456,3.807,4461,3.329,4527,2.513,4791,3.313,4797,3.193,4904,2.989,4960,3.452,5090,3.452,5102,3.452,5119,2.862,5193,3.613,5318,3.313,5359,2.613,5417,2.253,5540,2.746,5550,3.085,5665,3.313,5786,3.613,5870,3.613,6095,4.049,6547,3.085,6684,3.452,6707,4.374,6773,3.452,6898,2.901,6900,2.552,6909,3.313,6933,3.085,6989,3.313,7212,2.391,7289,2.677,7364,3.613,7972,3.807,8260,3.313,8677,4.374,8991,3.807,9158,3.807,9755,3.613,9963,2.613,10093,3.613,10161,4.049,10655,4.867,10656,4.867,10657,4.867,10658,4.867,10659,4.867,10660,4.867,10661,4.867,10662,4.867,10663,4.867,10664,4.867,10665,4.867,10666,4.867,10667,4.867,10668,4.867,10669,4.374,10670,4.867,10671,4.867,10672,4.867,10673,4.867]],["tags/2021 Year In Review",[10107,2.906,10674,4.269]],["title/How To Enjoy Your Own Digital Music",[258,2.433,2353,2.269,2655,2.196]],["content/How To Enjoy Your Own Digital Music",[3,1.457,5,1.358,6,0.915,11,1.998,13,2.133,17,0.938,18,1.599,20,1.876,24,1.327,25,1.334,27,0.452,36,2.177,39,2.138,41,2.56,46,1.997,50,0.595,52,0.806,69,2.643,71,3.818,74,1.251,81,1.621,83,1.599,89,2.524,99,1.385,101,0.734,103,1.334,104,0.973,109,2.086,112,3.094,121,1.439,122,2.303,131,0.933,140,3.323,144,1.308,149,2.659,150,1.66,158,0.618,168,1.126,179,1.266,180,1.301,184,1.643,185,1.385,216,0.849,217,1.167,253,2.065,258,2.177,263,0.8,288,1.126,293,1.001,297,1.496,309,2.282,315,1.358,321,1.765,370,2.828,409,1.899,418,1.666,430,1.421,441,1.1,443,1.998,444,1.739,528,3.323,596,1.714,782,0.89,827,2.685,851,2.22,854,2.217,877,1.421,881,2.101,908,1.818,911,2.828,912,1.247,913,2.449,921,1.371,934,2.917,935,4.061,942,2.62,954,3.323,993,2.398,1071,4.387,1179,1.933,1229,1.818,1236,2.349,1276,2.524,1278,1.577,1279,1.423,1292,1.933,1312,4.092,1319,1.997,1333,1.965,1334,2.969,1364,3.202,1369,1.334,1397,3.623,1401,2.177,1496,3.323,1606,3.475,1608,2.177,1633,2.177,1648,1.556,1663,2.133,1676,2.997,1678,2.03,1687,1.001,1721,0.989,1777,2.065,1806,3.639,1948,3.202,1976,2.349,1983,2.22,2001,3.202,2177,3.728,2178,3.202,2306,2.259,2310,2.909,2346,2.503,2390,2.303,2433,1.643,2473,3.462,2497,3.094,2540,2.828,2582,2.685,2634,3.462,2655,3.387,2660,2.503,2711,3.094,2713,2.997,2759,2.56,2775,2.065,2795,3.202,2830,2.997,2854,3.728,2976,3.202,2994,2.997,3006,3.818,3044,2.828,3071,5.167,3144,2.909,3229,4.807,3866,3.818,4098,2.349,4347,5.799,4409,3.818,4429,3.323,4443,2.685,4685,4.061,4692,3.323,4756,2.349,4801,3.907,4967,3.202,5174,2.065,5328,4.162,5359,2.62,5473,2.62,5700,2.997,5825,3.094,5883,4.937,5901,2.449,6049,2.997,6189,3.323,6271,2.909,6316,3.094,6465,3.323,6649,4.387,6762,5.64,6851,3.623,6853,2.997,6858,5.302,6859,6.563,6933,3.094,7540,3.623,7645,4.061,7987,3.623,8307,3.323,8385,3.462,9915,6.091,9916,4.061,10099,4.387,10675,4.881,10676,4.881,10677,6.779,10678,5.519,10679,6.091,10680,5.302,10681,4.881,10682,4.881,10683,4.881,10684,4.881,10685,4.881,10686,4.387,10687,4.881,10688,4.881,10689,4.881,10690,4.881,10691,4.881,10692,4.881,10693,4.881,10694,4.881,10695,4.881,10696,4.881,10697,4.881,10698,4.881,10699,4.881,10700,4.881,10701,4.387,10702,3.818,10703,4.881,10704,4.881,10705,4.881,10706,4.881,10707,4.881,10708,4.881,10709,4.881,10710,4.881,10711,4.881,10712,4.881,10713,4.881]],["tags/How To Enjoy Your Own Digital Music",[2655,2.29]],["title/How to setup Pi-Hole on a Synology NAS",[1013,3.265,1203,2.621,1337,2.255,4580,3.44,10714,3.44]],["content/How to setup Pi-Hole on a Synology NAS",[10,0.564,22,1.626,26,0.86,27,0.463,52,0.813,59,1.574,73,0.782,75,0.979,76,1.302,79,0.341,87,1.114,94,1.182,99,1.957,103,1.367,104,0.718,109,1.24,122,2.361,142,2.361,156,1.255,159,1.533,165,1.414,168,1.591,182,1.155,202,3.406,217,1.196,220,2.565,223,1.61,234,2.408,241,2.117,257,3.072,258,3.075,270,3.282,276,1.24,282,1.595,285,3.172,291,2.731,293,1.026,309,2.322,312,2.113,320,1.385,321,1.809,332,4.523,384,1.554,399,2.899,416,3.021,422,2.457,441,1.554,465,1.892,473,2.361,490,2.624,627,2.568,628,2.117,631,2.752,632,2.752,715,2.565,768,3.172,782,0.913,912,0.801,921,1.389,932,2.047,978,1.783,985,1.385,1000,3.548,1011,2.811,1013,7.146,1030,2.316,1203,5.316,1232,3.072,1279,1.448,1283,0.526,1296,1.101,1303,2.51,1317,2.853,1337,3.536,1393,2.752,1398,4.188,1405,5.596,1426,2.539,1477,2.51,1496,3.406,1511,2.624,1522,3.548,1537,2.047,1583,1.574,1586,1.554,1606,2.565,1611,3.132,1657,1.533,1661,3.548,1662,3.723,1663,2.17,1755,2.752,1784,2.686,1789,3.172,1858,2.117,1866,3.406,1876,3.075,1881,2.081,1901,3.282,1952,2.408,1962,1.836,1984,3.072,1985,3.793,2011,2.982,2012,2.51,2045,3.282,2087,2.624,2134,3.913,2176,3.282,2230,2.361,2282,2.51,2289,3.12,2353,2.868,2390,2.361,2402,4.163,2461,2.823,2558,1.951,2610,3.072,2645,1.554,2655,2.014,2668,2.316,2694,2.624,2795,3.282,2806,2.458,2996,2.51,3088,3.072,3480,3.072,3852,3.714,3927,3.406,4338,2.899,4375,3.913,4443,3.793,4580,7.529,4749,3.714,5147,3.793,5219,3.714,5332,7.092,5540,2.823,5704,4.371,5822,3.406,5833,2.982,5861,4.497,6024,6.198,6178,4.497,6200,3.548,6283,4.497,6928,7.641,7122,3.913,7392,3.913,9193,3.913,10183,4.163,10355,4.497,10714,6.651,10715,5.004,10716,7.075,10717,5.004,10718,4.497,10719,4.497,10720,5.004,10721,5.004,10722,5.004,10723,5.004,10724,5.004,10725,5.004,10726,5.004,10727,5.004,10728,5.004,10729,6.896,10730,5.004,10731,5.004,10732,5.004,10733,4.497,10734,4.497,10735,5.004,10736,8.505,10737,5.004,10738,5.004,10739,4.497,10740,5.004,10741,5.004,10742,5.004,10743,5.004,10744,4.497,10745,5.004,10746,5.004,10747,4.497,10748,5.004,10749,5.004,10750,5.004]],["tags/How to setup Pi-Hole on a Synology NAS",[]],["title/January 2022 In Review",[2717,2.433,7000,3.869,9963,2.928]],["content/January 2022 In Review",[0,1.057,2,2.702,3,1.503,4,2.245,5,1.586,6,0.679,19,0.315,21,1.522,22,0.962,25,1.376,26,0.866,27,0.789,28,1.41,36,2.245,52,0.631,53,2.917,60,1.148,65,2.635,73,0.787,75,1.549,76,1.31,79,0.343,91,1.793,96,1.82,101,0.69,104,0.994,121,1.484,148,2.178,150,1.233,152,2.525,153,2.364,157,1.233,179,0.94,185,1.428,199,1.627,203,1.506,220,2.581,233,2.205,234,2.423,271,2.861,276,1.248,282,1.605,288,1.598,295,2.581,309,1.695,316,2.639,368,1.584,392,2.423,404,1.121,412,1.503,430,2.015,442,2.33,472,1.963,479,3.191,547,3.191,564,2.245,698,1.847,827,2.768,851,1.649,860,3.427,912,0.806,919,1.743,921,1.394,929,1.484,945,2.929,949,2.581,951,1.233,964,2.245,968,3.736,970,3.091,998,2.581,1008,1.932,1011,1.793,1260,1.484,1270,3.302,1278,1.627,1279,1.877,1283,0.729,1289,0.855,1292,1.994,1303,2.525,1399,2.743,1426,1.503,1494,3.736,1501,1.718,1514,3.427,1557,2.432,1583,1.584,1586,1.563,1608,2.245,1721,1.404,1764,1.876,1777,2.929,1796,2.166,1806,2.702,1879,2.581,1950,2.618,1969,1.361,1995,2.768,2024,2.702,2139,2.581,2214,2.84,2302,2.658,2306,2.33,2317,3.427,2318,1.605,2325,3.937,2378,1.631,2432,3.937,2454,2.286,2475,1.874,2602,3.57,2624,3.427,2642,1.963,2645,2.15,2717,2.245,2782,5.14,2806,2.473,2827,3.302,2908,3.57,2949,2.702,2981,2.768,2996,2.525,3005,2.84,3044,2.917,3241,1.695,3319,2.581,3483,3.267,3485,2.581,3489,3.937,3496,2.525,3518,3.091,3519,1.963,3547,3.191,3819,3.937,4166,4.188,4276,3.937,4284,3.427,4461,1.994,4526,3.427,4756,2.423,4768,2.702,4773,4.188,4791,3.427,4806,3.736,4910,3.736,4948,3.302,4964,4.012,5361,2.768,5376,2.639,5485,3.302,5704,3.191,5717,3.937,5743,3.937,5801,3.427,5917,2.581,6423,3.937,6522,4.524,6523,4.524,6545,3.302,6678,3.736,6784,3.937,7000,3.57,7171,3.302,7574,3.937,7845,4.524,7970,4.188,8191,3.191,8272,4.188,8285,4.524,8330,3,8383,5.389,8401,3.937,8543,3.427,8781,4.188,8979,3.427,9173,4.524,9257,4.188,9258,4.524,9283,4.524,9530,4.524,9653,4.524,9963,2.702,10001,4.188,10058,4.524,10081,3.736,10111,4.524,10112,4.524,10113,4.524,10320,4.524,10325,7.662,10751,5.034,10752,5.034,10753,6.925,10754,5.034,10755,5.034,10756,5.034,10757,5.034,10758,5.034,10759,5.034,10760,5.034,10761,5.034,10762,5.034,10763,5.034,10764,4.524,10765,5.034,10766,5.034,10767,5.034,10768,5.034,10769,5.034,10770,6.925,10771,5.034,10772,5.034,10773,5.034,10774,5.034,10775,5.034,10776,5.034]],["tags/January 2022 In Review",[10107,3.874]],["title/On Trying To Sell A Laptop",[248,3.161,375,0.874,2971,3.458]],["content/On Trying To Sell A Laptop",[1,1.293,5,1.69,6,0.918,14,0.834,19,0.355,20,2.162,26,0.844,27,0.723,36,3.035,40,2.412,42,1.524,50,0.598,52,0.712,55,1.801,60,1.923,74,0.906,79,0.533,87,1.093,89,1.828,94,1.608,96,2.824,98,1.093,101,0.593,102,2.517,104,0.705,109,1.687,122,3.211,148,1.545,153,2.667,154,1.08,159,1.504,179,0.917,188,2.654,193,2.412,199,1.586,200,2.739,203,1.48,217,1.174,240,1.751,241,2.077,248,5.134,288,1.802,291,1.945,293,1.007,294,2.534,295,2.517,309,1.653,311,1.504,315,1.565,321,1.775,322,2.926,363,2.7,368,2.141,369,3.015,375,1.09,415,3.015,416,2.981,430,1.981,441,1.106,450,2.23,473,3.211,484,2.831,621,1.393,628,2.077,711,2.517,797,2.113,853,2.086,877,1.981,911,2.845,912,1.09,919,2.705,957,2.845,978,1.749,982,2.463,983,2.272,987,2.574,1011,1.749,1031,2.317,1044,2.317,1045,4.096,1130,3.482,1131,2.926,1267,2.412,1279,1.031,1283,0.888,1289,0.834,1291,1.277,1317,1.775,1322,3.644,1333,1.976,1354,2.463,1364,3.22,1420,1.828,1426,1.466,1428,4.412,1497,3.015,1501,1.676,1512,2.412,1523,2.77,1533,2.272,1537,2.008,1619,2.517,1648,1.565,1663,2.141,1678,2.042,1715,2.23,1741,2.317,1742,2.272,1858,2.077,1962,1.801,1974,2.7,1993,2.574,2001,3.22,2007,1.653,2139,4.7,2214,2.77,2289,2.497,2296,2.845,2335,2.845,2353,2.042,2374,2.879,2392,2.635,2407,2.635,2415,2.317,2433,1.653,2471,3.743,2488,3.22,2577,3.482,2594,2.15,2605,3.616,2700,2.363,2756,2.929,2788,3.22,2794,3.342,2795,3.22,2881,2.784,2894,4.179,2952,2.845,2971,4.314,3125,2.926,3149,2.574,3178,2.845,3247,2.574,3257,2.926,3455,3.482,3458,3.015,3519,2.654,4098,2.363,4353,3.015,4370,3.644,4403,3.84,4575,2.845,4629,3.342,5085,1.608,5119,2.879,5195,3.569,5281,3.482,5328,3.015,5473,3.653,5542,2.635,5733,3.482,5822,3.342,5829,5.312,6074,2.77,6206,2.926,6281,3.644,6327,3.644,6415,2.845,6416,5.318,6417,3.482,6939,4.084,7022,3.015,7055,3.342,7571,3.482,7645,4.084,7647,3.482,7721,3.644,7740,4.412,7834,3.644,7882,3.22,7996,3.342,8655,2.845,8741,4.412,9321,4.412,9468,3.84,9477,7.581,10747,4.412,10777,4.91,10778,4.91,10779,4.91,10780,4.91,10781,4.91,10782,4.91,10783,4.91,10784,4.91,10785,4.412,10786,7.812,10787,4.91,10788,4.91,10789,4.91,10790,4.91,10791,4.91,10792,4.91,10793,4.91,10794,4.91]],["tags/On Trying To Sell A Laptop",[]],["title/Once Upon a Time in Shaolin",[17,0.674,294,1.814,1003,2.554,10795,4.377]],["content/Once Upon a Time in Shaolin",[4,2.231,6,0.931,13,2.17,14,0.85,17,1.092,19,0.405,22,0.957,27,0.638,46,2.047,74,0.923,79,0.538,81,1.662,87,1.114,91,1.783,101,0.741,118,3.172,121,2.033,126,2.081,131,1.318,147,3.548,158,0.874,165,1.026,179,1.288,180,1.334,182,1.155,200,2.014,216,1.48,217,1.196,219,1.639,243,3.548,258,3.519,263,1.131,275,0.991,276,1.24,294,1.863,311,1.533,315,1.382,317,2.322,330,2.192,347,2.982,363,2.752,370,2.899,384,1.128,415,3.072,491,2.231,547,3.172,566,2.273,698,1.836,723,2.154,851,2.585,853,1.533,854,3.584,919,1.732,921,0.881,950,2.408,952,4.89,978,1.783,985,1.908,1003,2.624,1031,2.361,1274,1.513,1283,0.83,1296,1.101,1317,1.809,1320,3.072,1327,1.574,1334,2.192,1494,3.714,1523,2.823,1533,2.316,1586,1.554,1589,3.192,1600,2.316,1687,1.414,1724,4.163,1741,2.361,1746,2.686,1777,2.117,1795,1.757,1809,3.548,1860,2.982,1903,2.565,1952,2.408,1969,0.86,1972,2.565,2010,2.982,2028,1.863,2031,2.982,2139,2.565,2172,3.282,2289,1.836,2306,2.316,2319,2.752,2338,2.51,2353,2.868,2410,3.548,2433,2.322,2471,2.752,2535,3.406,2536,2.823,2538,3.548,2634,3.548,2641,2.982,2645,2.141,2655,3.98,2700,2.408,2714,3.46,2728,4.703,2785,2.014,2868,4.163,2894,4.234,2928,2.899,2967,3.282,3035,2.273,3041,3.913,3216,2.686,3225,2.565,3226,3.406,3247,2.624,3315,3.714,3509,3.172,3523,3.282,3547,3.172,4193,2.899,4344,4.163,4347,4.523,4461,1.982,4524,3.282,4681,3.548,4801,3.959,4808,4.163,5109,2.51,5363,3.913,5376,3.616,5401,2.624,5461,4.497,5525,3.072,5542,2.686,5550,3.172,5793,4.163,5883,5.989,5884,4.163,5942,3.072,6114,4.497,6206,2.982,6289,3.714,6316,3.172,6407,3.913,6588,2.982,6730,3.913,6851,3.714,6874,4.163,6947,4.497,7077,3.714,7085,3.548,7171,3.282,7293,3.548,7364,3.714,7391,4.497,7882,3.282,7921,4.163,8499,6.198,8693,4.163,9054,4.497,9161,4.497,9260,3.913,9498,4.497,9802,4.497,10129,4.497,10199,4.497,10209,4.163,10476,3.714,10678,4.523,10796,4.163,10797,5.004,10798,5.004,10799,5.004,10800,4.497,10801,5.004,10802,5.004,10803,5.004,10804,5.004,10805,5.004,10806,5.004,10807,5.004,10808,5.004,10809,5.004,10810,5.004,10811,5.004,10812,5.004,10813,5.004,10814,5.004,10815,5.004,10816,5.004,10817,6.896,10818,5.004,10819,5.004,10820,5.004,10821,5.004,10822,5.004,10823,5.004,10824,5.004,10825,5.004,10826,5.004,10827,5.004,10828,5.004,10829,5.004,10830,5.004,10831,5.004,10832,5.004,10833,5.004,10834,5.004,10835,5.004,10836,5.004,10837,5.004]],["tags/Once Upon a Time in Shaolin",[2655,2.29]],["title/My Retrocomputing Projects For 2022",[1415,1.916,9963,2.928,10838,4.903]],["content/My Retrocomputing Projects For 2022",[0,1.009,1,1.266,4,2.143,10,0.755,11,1.416,13,1.512,16,2.579,19,0.351,20,1.33,21,1.453,24,0.94,26,1.328,28,0.856,36,2.99,50,0.817,52,0.802,60,1.096,67,1.688,73,0.751,76,1.25,79,0.527,85,2.138,98,1.07,99,2.191,101,0.729,103,2.111,104,0.69,121,1.416,123,2.313,150,1.177,153,1.64,154,1.057,157,1.177,159,1.472,165,1.584,168,1.109,179,0.897,180,1.281,182,1.109,196,1.416,197,3.783,234,2.313,240,0.997,251,2.389,263,1.1,282,1.532,315,0.963,375,1.074,376,3.046,378,1.07,388,1.553,399,2.784,437,1.873,465,1.817,471,2.52,472,1.873,487,2.6,518,3.164,586,2.068,596,2.355,667,2.579,674,4.977,723,2.068,853,2.055,912,0.769,929,1.416,932,1.966,964,2.143,983,3.103,985,1.33,1018,3.408,1069,2.276,1213,2.784,1274,1.453,1279,1.408,1283,0.705,1288,3.408,1289,0.817,1291,1.25,1295,2.864,1296,1.057,1314,3.998,1317,2.424,1319,1.966,1415,2.355,1431,2.643,1462,2.784,1463,3.046,1465,3.688,1487,2.068,1534,3.227,1578,2.643,1617,1.999,1655,2.743,1666,2.068,1678,3.212,1687,0.986,1690,3.998,1764,1.476,1795,1.688,1809,3.408,1898,2.784,1907,3.046,1912,3.271,1962,1.763,1983,1.574,2012,2.411,2107,5.066,2120,3.271,2139,2.464,2162,2.95,2260,2.864,2261,3.998,2282,2.411,2308,3.408,2338,3.364,2347,2.711,2359,3.998,2378,1.223,2415,2.267,2429,3.567,2431,2.784,2432,3.758,2433,1.618,2475,2.497,2485,3.152,2529,3.758,2551,3.567,2558,1.873,2593,3.998,2605,2.224,2642,2.614,2684,2.579,2699,2.535,2713,4.117,2714,2.411,2733,3.152,2798,3.535,2986,2.464,3012,3.152,3031,2.95,3077,2.183,3247,2.52,3500,3.998,3852,3.567,4339,2.95,4358,2.95,4480,4.25,4527,2.167,4800,3.408,4801,2.411,4904,2.95,4945,2.864,5085,2.53,5110,2.411,5131,2.711,5147,3.688,5185,4.318,5293,3.758,5376,2.52,5655,2.784,5750,2.95,5751,3.152,5753,5.244,5768,4.755,5770,3.688,5812,3.271,5819,4.977,5826,4.117,5829,2.784,5845,3.998,5860,5.244,5869,3.152,5870,3.567,5884,3.998,5887,4.318,6006,3.758,6058,4.117,6076,2.95,6080,3.408,6090,4.565,6099,3.567,6190,2.784,6519,3.998,6526,4.25,6552,3.271,6694,3.758,6723,4.318,6742,3.998,6844,3.152,7225,4.318,7247,4.318,7364,3.567,7571,3.408,7674,3.758,7680,4.318,7697,3.567,7745,3.567,7833,3.567,7956,3.758,8979,3.271,9257,3.998,9642,3.998,9806,3.758,9963,2.579,10487,6.026,10733,4.318,10838,6.941,10839,4.805,10840,4.805,10841,4.805,10842,4.805,10843,6.705,10844,4.805,10845,4.318,10846,4.805,10847,4.805,10848,4.805,10849,4.805,10850,4.805,10851,4.805,10852,4.805,10853,4.805,10854,4.805,10855,3.998,10856,4.805,10857,4.805,10858,4.805,10859,4.805,10860,4.805,10861,4.805,10862,4.805,10863,4.805]],["tags/My Retrocomputing Projects For 2022",[]],["title/Thoughts On Home NAS Systems",[3,1.454,266,2.172,1203,2.903,1339,1.512]],["content/Thoughts On Home NAS Systems",[0,1.04,6,0.668,10,0.771,17,0.685,18,1.622,19,0.311,24,0.969,26,1.177,27,0.726,30,1.479,40,2.433,46,2.801,52,0.452,87,1.103,101,0.684,116,1.156,131,0.947,132,1.441,156,1.718,157,1.213,158,0.994,165,1.404,168,1.58,179,1.279,182,1.58,184,1.667,199,1.6,216,0.862,223,1.156,231,2.952,240,1.028,258,2.209,263,0.812,266,3.963,274,3.873,276,1.228,278,1.289,279,2.131,293,1.404,309,2.305,315,1.372,332,4.491,368,1.558,375,0.793,428,2.794,442,2.292,467,2.952,517,1.404,621,1.943,627,2.55,715,2.539,724,2.126,728,3.509,912,0.793,919,1.715,921,0.872,934,2.947,983,3.632,1011,1.765,1013,3.676,1146,1.622,1159,1.993,1161,2.169,1203,5.046,1216,2.539,1237,1.931,1260,1.46,1276,2.55,1279,1.438,1283,0.826,1292,1.962,1296,1.09,1317,1.79,1319,2.801,1334,2.169,1337,3.511,1339,2.437,1369,2.314,1386,4.12,1398,3.846,1403,2.131,1426,1.479,1431,2.724,1471,5.148,1485,3.512,1541,1.579,1552,2.539,1555,2.794,1586,1.538,1590,3.863,1594,2.87,1623,2.305,1631,2.589,1633,2.209,1657,1.518,1671,2.06,1683,3.676,1710,2.292,1725,1.765,1755,2.724,1763,2.06,1764,1.09,1777,2.095,1787,2.724,1789,3.139,1854,4.491,1885,2.87,1947,2.539,1962,1.817,1998,4.12,2015,2.658,2034,2.095,2087,2.597,2109,2.597,2149,2.947,2298,2.597,2319,2.724,2346,3.511,2347,2.794,2353,2.848,2382,3.041,2410,3.512,2413,2.292,2433,2.305,2473,3.512,2480,2.658,2482,3.873,2558,1.931,2655,2.756,2694,2.597,2699,1.872,2707,3.512,2756,2.131,2775,2.095,2932,3.249,2939,3.249,2945,2.597,2968,3.372,2981,2.724,2995,2.724,3122,2.87,3247,3.59,3908,2.724,4339,3.041,4355,3.512,4387,3.873,4443,3.766,4524,3.249,4549,2.597,4552,4.081,4580,5.355,4581,4.12,4693,3.512,4801,2.485,4964,2.87,5116,3.249,5128,3.041,5131,2.794,5195,2.597,5281,3.512,5282,2.724,5327,4.451,5361,2.724,5375,2.952,5401,2.597,5562,4.661,5777,3.249,5804,3.041,5816,6.154,6108,4.451,6201,4.451,6412,4.12,6415,2.87,6854,3.676,6928,3.873,7018,4.451,7223,3.873,7435,4.12,8522,3.873,8774,4.12,8973,3.512,10083,4.451,10476,3.676,10714,6.622,10718,6.154,10734,4.451,10744,4.451,10864,4.953,10865,4.451,10866,4.451,10867,4.953,10868,4.953,10869,4.953,10870,4.953,10871,4.953,10872,4.451,10873,4.953,10874,4.953,10875,4.953,10876,4.953,10877,4.953,10878,4.953,10879,4.953,10880,4.953,10881,4.953,10882,4.953,10883,4.953,10884,4.953,10885,4.953,10886,4.953,10887,4.953,10888,4.451,10889,4.953]],["tags/Thoughts On Home NAS Systems",[]],["title/Visualizing Personal Data Takeouts",[368,1.532,1346,1.512,1493,2.903,10890,4.377]],["content/Visualizing Personal Data Takeouts",[7,3.301,10,0.884,19,0.311,20,1.895,21,1.498,27,0.458,29,1.405,47,2.154,51,2.209,52,0.838,73,0.774,76,1.289,79,0.467,91,1.765,99,1.405,101,0.775,109,1.228,122,3.231,131,0.947,132,1.441,138,2.485,154,1.09,158,0.627,165,1.016,197,2.794,199,1.6,201,2.952,206,3.372,231,2.952,275,1.356,278,1.289,282,1.579,288,1.143,293,1.016,359,3.968,384,1.116,388,1.6,397,3.512,409,1.388,422,1.765,435,2.131,437,1.931,464,3.512,465,1.872,528,5.343,565,3.041,596,2.756,705,1.765,782,0.903,785,3.249,827,3.766,910,3.766,912,1.257,920,2.131,921,1.206,934,2.131,993,2.433,995,2.597,1011,1.765,1146,2.243,1161,2.169,1279,1.04,1296,1.09,1302,4.204,1315,2.026,1332,2.25,1346,2.854,1422,1.962,1425,2.292,1439,2.952,1470,4.213,1477,2.485,1479,6.529,1493,4.677,1506,2.658,1583,1.558,1585,3.873,1599,2.539,1631,1.872,1764,1.09,1778,2.026,1811,4.873,1947,3.511,1953,3.249,1971,4.906,2006,1.844,2051,3.249,2059,2.952,2063,1.962,2064,3.041,2103,3.372,2108,2.384,2120,3.372,2172,3.249,2175,3.372,2405,3.676,2434,2.25,2465,4.451,2488,3.249,2511,2.724,2666,2.337,2699,1.872,2772,3.873,2899,4.12,3036,4.175,3050,4.081,3163,2.539,3319,2.539,3367,4.548,3454,2.337,3848,3.372,3940,5.083,4352,5.083,4389,5.083,4396,2.209,4402,2.337,4461,2.712,4693,3.512,4741,2.952,4756,2.384,4792,3.372,4929,6.05,5346,3.873,5378,3.372,5396,3.041,5417,2.292,5471,2.485,5473,2.658,5486,3.249,5511,3.873,5542,3.675,5586,3.873,5591,5.826,5663,4.451,5694,3.372,5901,3.937,5987,6.154,6030,3.139,6519,5.697,6545,3.249,6610,4.451,6863,3.873,6990,3.676,6999,3.676,7019,5.697,7022,3.041,7055,3.372,7119,3.041,7161,3.873,7177,3.512,7212,2.433,7987,3.676,8052,4.451,8140,5.697,8152,4.451,8599,3.873,9037,4.451,9158,3.873,9167,6.154,10385,4.12,10890,8.468,10891,4.953,10892,4.953,10893,4.953,10894,4.953,10895,4.953,10896,4.953,10897,4.953,10898,6.848,10899,4.953,10900,4.953,10901,4.953,10902,4.953,10903,4.953,10904,4.953,10905,4.953,10906,4.953,10907,4.953,10908,4.953,10909,4.953,10910,4.953,10911,4.953,10912,4.953,10913,4.953,10914,6.848,10915,6.848,10916,4.953,10917,6.848,10918,4.953,10919,4.953,10920,4.451,10921,4.953]],["tags/Visualizing Personal Data Takeouts",[5471,2.141,10522,3.551]],["title/Water Usage and Prices",[1552,2.797,2756,2.348,6206,3.251]],["content/Water Usage and Prices",[6,1.031,10,0.531,14,1.299,16,2.529,19,0.449,22,0.901,27,0.767,29,1.337,50,0.574,52,0.43,63,3.92,73,1.034,76,1.721,77,1.444,79,0.321,81,1.565,91,1.679,94,1.113,95,2.223,98,1.049,101,0.81,104,0.676,116,1.1,130,2.591,144,1.111,158,0.838,159,1.444,168,1.087,179,1.235,185,1.337,199,1.523,203,1.025,216,1.519,221,3.341,263,1.085,266,3.695,275,0.933,278,1.226,279,2.028,282,1.502,291,2.62,295,2.416,296,4.69,309,1.586,317,2.227,388,2.137,394,3.497,413,3.249,426,2.529,430,1.371,484,1.96,518,2.223,606,2.101,628,1.993,704,3.341,797,3.289,906,2.987,918,3.207,921,0.83,929,1.389,1020,1.703,1044,3.121,1060,2.987,1146,2.166,1179,1.866,1192,3.91,1237,1.837,1260,1.389,1274,1.425,1279,0.989,1289,1.124,1296,1.037,1302,2.893,1331,2.223,1332,2.14,1346,2.053,1382,3.505,1422,1.866,1497,2.893,1537,1.928,1552,4.474,1582,2.662,1583,1.482,1614,2.706,1633,2.101,1634,2.662,1663,1.482,1665,4.234,1666,2.028,1710,3.537,1725,2.356,1741,3.121,1759,3.341,1778,1.928,1930,2.591,1938,2.364,2006,1.754,2011,2.808,2172,5.013,2177,2.591,2295,3.207,2298,2.471,2501,3.207,2511,2.591,2528,4.007,2540,2.73,2558,1.837,2565,3.391,2605,3.061,2756,4.082,2757,4.69,2788,3.09,2904,2.893,2928,2.73,2959,2.808,2980,2.808,2998,2.364,3031,2.893,3050,4.554,3149,3.468,3224,3.468,3236,3.183,3249,5.944,3515,3.497,3909,3.497,3940,4.909,4321,3.92,4417,3.391,4461,1.866,4531,3.685,4693,3.341,4762,4.338,4792,3.207,4929,4.502,5283,2.14,5417,3.835,5473,3.55,5787,5.202,5804,4.692,5844,2.416,5965,4.192,6097,4.234,6104,3.341,6122,4.192,6206,5.745,6248,4.234,6315,4.234,6405,4.234,6526,2.987,6542,4.69,6552,3.207,6776,3.92,7119,4.692,7171,5.013,7641,3.92,8521,4.234,8959,3.92,8991,3.685,9063,5.502,9247,4.234,9489,4.234,9786,4.234,9858,3.497,10283,4.234,10429,4.234,10476,6.717,10845,4.234,10922,4.712,10923,4.712,10924,6.614,10925,4.712,10926,4.712,10927,6.614,10928,6.614,10929,4.712,10930,4.712,10931,4.712,10932,4.712,10933,4.712,10934,4.712,10935,4.712,10936,4.712,10937,4.712,10938,4.712,10939,4.712,10940,4.712,10941,4.712,10942,4.712,10943,4.712,10944,4.712,10945,4.712,10946,4.712,10947,6.614,10948,4.712,10949,4.712,10950,4.712,10951,6.614,10952,4.712,10953,4.712,10954,4.712]],["tags/Water Usage and Prices",[7737,2.706,10522,3.551]],["title/What a Night Cam Is Good For",[98,1.215,231,3.251,10955,4.903]],["content/What a Night Cam Is Good For",[1,1.789,2,2.628,6,0.917,10,0.551,17,0.677,19,0.222,22,0.936,24,1.527,27,0.78,41,2.567,49,2.837,50,1.079,52,0.711,56,3.333,60,1.549,67,1.719,69,1.909,74,1.254,75,0.958,77,1.5,78,3.333,79,0.334,81,1.626,84,2.456,85,1.561,86,1.77,87,1.513,101,0.427,104,0.975,123,2.356,139,2.837,148,1.54,153,1.671,154,1.717,157,1.664,158,0.62,179,1.268,180,1.811,182,1.13,185,2.213,211,2.352,214,4.624,216,1.182,231,4.649,233,2.975,263,1.114,266,2.183,282,2.166,288,1.8,294,1.823,315,1.361,347,2.917,375,1.249,384,1.531,388,1.582,398,4.171,426,2.628,443,1.443,444,1.744,465,1.851,628,2.873,711,2.51,853,2.081,903,2.003,912,0.784,937,2.762,946,2.917,949,2.51,951,1.199,978,1.744,989,3.006,1009,3.103,1044,2.31,1069,1.443,1146,2.225,1283,0.715,1291,1.274,1296,1.077,1304,3.211,1320,4.171,1327,1.54,1415,1.719,1422,1.939,1582,1.97,1586,1.52,1614,2.003,1634,3.391,1647,3.103,1657,2.081,1658,2.456,1663,2.651,1675,2.266,1681,3.006,1718,2.628,1746,2.628,1764,1.077,1777,2.071,1778,3.191,1795,1.719,1969,0.842,1975,5.735,1977,3.006,1983,1.603,1984,3.006,1985,2.692,1986,2.266,1999,2.405,2006,1.823,2107,3.211,2109,2.567,2135,3.103,2165,2.923,2186,2.917,2282,2.456,2337,3.211,2406,3.472,2423,3.472,2476,2.762,2490,3.006,2534,3.333,2594,2.144,2622,3.634,2645,1.52,2785,2.734,2809,3.829,2845,3.634,2904,3.006,2905,8.606,2907,4.306,2908,4.817,2916,5.735,2927,3.103,2932,4.455,2950,4.399,3004,2.003,3005,2.762,3128,3.333,3192,5.31,3194,2.837,4298,3.103,4353,3.006,4397,3.634,4801,2.456,5085,1.603,5157,4.073,5367,2.692,5409,2.51,5510,4.073,5542,2.628,5657,2.692,5681,3.634,5704,3.103,6122,3.103,6207,3.472,6289,3.634,6376,3.333,6492,4.399,6853,3.006,7171,3.211,7248,4.399,7620,4.399,7857,7.01,7882,3.211,8045,4.399,8307,3.333,8702,3.829,8717,4.073,8781,4.073,8921,4.399,9195,4.399,9260,3.829,9269,6.1,10164,4.073,10479,4.399,10551,4.399,10955,6.104,10956,6.793,10957,6.793,10958,4.895,10959,4.895,10960,6.793,10961,6.793,10962,4.895,10963,4.895,10964,4.895,10965,4.895,10966,6.793,10967,4.895,10968,4.895,10969,4.895,10970,4.895,10971,4.895,10972,4.895,10973,4.895,10974,4.895,10975,4.895,10976,4.895,10977,4.895,10978,4.895,10979,4.895,10980,4.895,10981,4.895,10982,6.793,10983,6.793,10984,4.895,10985,4.895,10986,4.895,10987,4.895,10988,4.895,10989,4.895]],["tags/What a Night Cam Is Good For",[336,4.45]],["title/A Personal Intro To Gentle Hip-Hop",[368,1.384,2994,2.701,6039,2.994,6853,2.701,10990,3.659]],["content/A Personal Intro To Gentle Hip-Hop",[0,1.438,2,2.658,5,0.992,10,0.558,19,0.357,20,1.37,24,0.969,25,1.871,30,1.479,47,2.154,48,2.44,52,0.716,55,1.817,60,1.129,70,1.6,74,0.914,82,2.337,86,1.79,89,1.844,90,2.337,91,1.765,97,2.337,98,1.103,99,1.405,113,1.554,122,2.337,124,2.794,149,1.691,165,1.016,225,3.249,240,1.028,258,2.209,263,0.812,275,0.981,277,2.118,278,1.289,279,2.131,282,1.579,293,1.016,320,1.37,367,1.872,368,2.154,375,1.096,404,1.525,444,1.765,452,1.79,457,2.199,486,2.724,542,2.87,602,2.952,628,2.095,720,3.372,782,0.903,912,0.793,921,0.872,929,2.018,947,2.794,1031,3.231,1064,3.372,1066,3.296,1092,4.12,1289,1.164,1291,1.782,1399,1.962,1420,1.844,1472,4.451,1511,2.597,1582,1.993,1590,2.794,1608,3.054,1631,1.872,1658,2.485,1764,1.09,1799,2.794,1931,2.801,1932,2.952,1958,3.372,1974,3.766,1983,2.243,1986,2.292,2007,2.305,2058,3.676,2109,2.597,2258,3.139,2260,2.952,2417,2.724,2475,1.844,2481,4.451,2530,3.041,2570,4.451,2576,2.095,2650,3.873,2655,3.159,2699,1.872,2700,2.384,2727,2.952,2753,3.041,2755,3.139,2796,3.041,2818,2.292,2985,3.873,2994,6.12,3026,3.041,3036,2.25,3044,3.968,3071,3.041,3128,3.372,3190,2.658,3247,3.59,3251,2.87,3263,4.451,3295,2.952,3549,4.34,4443,3.766,4485,3.873,5085,2.571,5128,3.041,5318,3.372,5375,2.952,5485,4.491,5636,3.512,5965,3.139,6001,3.372,6039,3.372,6049,3.041,6164,3.873,6285,4.12,6387,4.12,6402,3.676,6471,3.139,6588,4.081,6638,3.873,6853,6.12,7330,3.676,7356,4.12,7400,3.873,7406,4.451,7421,4.12,8032,3.676,8036,3.512,8126,5.355,9377,4.451,9581,4.451,9850,4.451,10209,5.697,10604,5.697,10678,3.249,10679,7.717,10680,3.873,10686,4.451,10702,3.873,10990,5.697,10991,6.154,10992,4.953,10993,4.953,10994,4.953,10995,4.953,10996,4.953,10997,4.451,10998,4.451,10999,4.953,11000,4.953,11001,4.953,11002,4.953,11003,4.953,11004,4.953,11005,4.953,11006,4.953,11007,4.953,11008,4.953,11009,4.953,11010,4.953,11011,4.953,11012,4.953,11013,4.451,11014,4.953,11015,4.953,11016,4.953,11017,4.953,11018,4.953,11019,4.953,11020,4.953,11021,4.953,11022,4.953,11023,4.953,11024,4.451,11025,4.953,11026,4.953,11027,4.953,11028,4.953,11029,4.953,11030,4.953,11031,4.953,11032,4.953,11033,4.953,11034,4.451,11035,4.953,11036,4.953,11037,4.953,11038,4.953,11039,4.953,11040,4.953,11041,4.953,11042,4.953,11043,4.451,11044,6.848,11045,4.953,11046,4.953,11047,4.953,11048,4.953,11049,4.451,11050,4.953,11051,4.953,11052,4.953,11053,4.953]],["tags/A Personal Intro To Gentle Hip-Hop",[2655,2.29]],["title/A Personal Intro To Rough Hip-Hop",[368,1.384,2994,2.701,3044,2.549,6039,2.994,6853,2.701]],["content/A Personal Intro To Rough Hip-Hop",[10,0.551,19,0.383,20,1.353,24,1.328,27,0.452,30,1.46,60,1.115,62,2.401,70,1.58,74,0.902,82,2.307,85,1.559,90,2.307,91,1.742,99,1.925,101,0.592,104,0.702,113,1.344,114,2.758,156,1.226,157,1.662,159,1.498,160,2.141,168,1.128,180,1.303,196,1.441,208,2.18,216,0.851,271,1.767,275,0.968,276,1.212,277,1.319,288,1.128,293,1.392,368,1.538,375,1.248,378,1.089,388,2.193,404,1.089,412,1.46,441,1.529,444,1.742,452,1.767,472,1.906,542,2.832,564,2.18,580,2.22,627,1.82,724,1.518,785,3.206,912,0.783,913,2.452,921,0.861,948,2.353,1011,1.742,1030,2.262,1064,3.328,1066,2.353,1092,4.067,1179,1.936,1191,3.001,1240,2.689,1279,1.026,1291,1.765,1420,1.82,1426,2.327,1501,1.669,1502,2.832,1512,2.401,1548,3.099,1564,4.812,1586,1.518,1608,3.026,1631,1.848,1663,1.538,1687,1.599,1810,3.206,1819,5.037,1852,2.689,1858,2.068,1974,2.689,1983,2.223,1986,2.262,2007,2.285,2103,3.328,2109,2.563,2165,2.104,2225,3.467,2238,5.645,2260,2.913,2323,3.099,2460,3.001,2494,3.206,2530,3.001,2634,4.812,2655,1.967,2687,2.689,2699,1.848,2700,2.353,2753,5.431,2775,2.068,2793,3.823,2818,2.262,2876,2.506,2926,4.067,2928,2.832,2967,3.206,2994,5.968,3026,3.001,3036,3.824,3044,3.932,3134,4.067,3189,2.758,3190,2.624,3247,4.415,3278,2.913,3549,3.099,4372,3.467,4429,3.328,4756,2.353,4762,3.206,5085,1.601,5282,2.689,5573,4.067,6039,3.328,6132,3.823,6164,3.823,6206,2.913,6301,3.823,6471,4.94,6472,3.467,6588,4.044,6851,5.785,6853,5.878,6874,5.645,7012,4.393,7172,3.629,7241,4.393,7400,3.823,7501,4.393,7571,3.467,7707,4.067,7986,4.393,8026,3.629,8032,3.629,8036,4.812,8096,3.823,8385,3.467,9211,4.067,9315,4.393,9390,4.393,10135,4.393,10412,4.393,10573,4.393,10630,4.067,10678,3.206,10679,7.16,10680,5.307,10701,7.005,10702,3.823,10739,4.393,10796,4.067,10990,6.484,10991,4.393,10998,4.393,11013,6.098,11049,4.393,11054,4.888,11055,4.888,11056,4.888,11057,4.888,11058,4.888,11059,4.888,11060,4.888,11061,4.888,11062,4.888,11063,4.888,11064,4.888,11065,4.888,11066,4.067,11067,6.786,11068,4.888,11069,4.888,11070,4.888,11071,4.888,11072,4.393,11073,4.393,11074,4.888,11075,4.888,11076,4.888,11077,4.888,11078,4.888,11079,4.888,11080,4.888,11081,4.888,11082,4.888,11083,4.888,11084,4.888,11085,4.888,11086,4.888,11087,4.393,11088,6.786,11089,4.888,11090,4.888,11091,4.888,11092,4.888,11093,4.888,11094,4.888,11095,4.888,11096,4.888,11097,4.888,11098,4.888,11099,4.888,11100,4.888,11101,4.888,11102,4.888,11103,4.888,11104,4.888,11105,4.888,11106,4.888,11107,4.888,11108,4.888,11109,4.888,11110,4.888,11111,4.888]],["tags/A Personal Intro To Rough Hip-Hop",[2655,2.29]],["title/Academic Lineage",[3254,2.816,10855,5.159]],["content/Academic Lineage",[4,2.296,11,1.517,14,1.195,19,0.234,22,1.531,24,1.376,27,0.476,28,0.917,29,1.995,40,2.529,48,1.834,50,0.857,67,1.808,70,1.664,88,2.106,91,1.834,101,0.75,121,1.517,149,1.758,150,2.108,152,4.018,158,1.015,159,1.578,193,2.529,199,2.272,217,1.915,242,1.889,251,1.834,263,1.153,264,4.148,276,1.276,277,1.39,278,2.084,288,1.623,291,2.039,309,1.733,318,2.255,320,1.425,330,2.255,365,3.028,375,0.824,384,1.16,409,1.97,422,1.834,431,2.831,441,1.805,514,4.026,606,2.296,652,3.263,782,0.939,881,2.216,921,0.906,929,1.517,945,2.975,957,2.983,976,3.068,994,2.338,1068,3.505,1096,4.405,1161,2.255,1274,1.557,1283,0.74,1290,2.7,1307,2.529,1315,2.106,1369,1.922,1583,1.62,1609,3.161,1611,2.338,1623,1.733,1648,2.242,1655,2.877,1659,2.178,1687,1.643,1711,2.106,1724,4.283,1741,2.429,1742,3.255,1744,2.478,1785,1.62,1807,3.161,1898,5.517,1938,3.528,1962,1.889,1964,3.263,1969,0.885,1973,3.068,1976,2.478,2006,1.917,2025,2.255,2149,2.216,2165,3.026,2177,2.831,2257,4.627,2297,2.7,2298,2.7,2302,1.976,2338,2.583,2435,4.191,2457,3.528,2475,1.917,2530,3.161,2564,2.904,2592,2.583,2642,2.007,2699,2.658,2715,3.161,2748,3.161,2758,8.556,2876,2.639,2928,2.983,2959,3.068,2980,3.068,3014,3.068,3031,3.161,3035,2.338,3052,4.627,3180,3.821,3241,2.368,3254,4.093,3454,2.429,3488,3.161,3522,7.198,3532,4.627,3546,3.605,3559,3.687,3814,3.263,3823,4.627,3860,4.283,3994,4.283,4396,2.296,4452,4.026,4714,2.904,4746,3.821,4769,4.627,4770,4.627,5085,1.686,5329,4.283,5473,2.763,5577,4.627,5634,4.026,5713,6.32,5740,4.026,6152,3.821,6494,5.945,6528,6.32,6590,3.821,6657,3.505,6678,3.821,7006,4.627,8454,4.627,8607,4.627,9051,4.627,9158,4.026,9908,4.627,10000,4.627,10855,6.663,11112,5.148,11113,5.148,11114,5.148,11115,5.148,11116,5.148,11117,5.148,11118,5.148,11119,5.148,11120,5.148,11121,5.148,11122,5.148,11123,5.148,11124,5.148,11125,5.148,11126,5.148,11127,5.148,11128,5.148,11129,5.148,11130,5.148,11131,5.148,11132,5.148,11133,5.148,11134,5.148,11135,5.148,11136,5.148,11137,5.148,11138,5.148,11139,5.148,11140,5.148]],["tags/Academic Lineage",[]],["title/An Ad Leaflet QR Design Mistake",[723,1.893,1945,1.421,2467,2.419,11141,3.659,11142,3.659]],["content/An Ad Leaflet QR Design Mistake",[10,0.79,13,1.615,17,0.971,19,0.319,22,1.529,26,0.883,27,0.74,42,1.594,47,1.615,48,1.829,52,0.729,67,1.803,73,0.802,75,1.004,77,1.573,79,0.479,94,1.213,101,0.697,120,4.014,157,1.257,158,0.889,159,1.573,165,1.053,179,0.958,184,1.728,199,1.659,203,1.116,208,2.289,217,1.227,240,1.659,251,1.829,253,2.171,297,1.573,309,1.728,315,1.406,321,1.855,322,3.059,332,3.367,361,1.777,400,3.367,405,3.152,414,4.613,441,1.581,444,1.829,452,2.537,464,3.64,466,4.27,478,2.001,561,4.182,567,3.059,593,2.823,636,4.014,715,2.631,723,3.441,751,4.27,881,2.209,897,2.915,908,2.613,919,2.43,921,0.904,966,3.81,1020,1.855,1161,2.248,1179,2.033,1190,4.014,1274,1.552,1276,2.613,1279,1.078,1283,0.54,1286,2.691,1339,1.594,1346,1.594,1403,2.209,1425,2.376,1430,2.521,1537,2.1,1586,1.594,1589,2.376,1590,2.896,1611,2.331,1617,2.135,1646,3.367,1655,2.1,1656,3.64,1670,4.014,1687,1.053,1721,1.04,1764,1.13,1788,5.444,1859,4.014,1872,2.331,1945,2.268,1946,2.896,1965,1.752,1969,0.883,1976,2.47,1993,4.193,2007,1.728,2116,3.129,2135,3.253,2297,2.691,2338,2.575,2345,4.014,2349,3.367,2401,4.182,2403,3.367,2461,2.896,2466,4.27,2494,4.603,2497,3.253,2516,3.494,2536,2.896,2666,2.422,2687,2.823,2728,3.059,2818,2.376,2825,2.823,2962,3.367,2986,2.631,3004,2.871,3036,2.331,3122,2.974,3123,3.367,3145,2.47,3202,3.494,3220,3.059,3224,2.691,3225,2.631,3233,3.367,3236,2.47,3246,4.613,3272,3.64,3367,2.974,3413,4.27,3422,4.014,3496,2.575,3538,3.64,4098,2.47,4358,3.152,4504,3.367,4785,4.766,4928,4.613,4929,3.494,4964,2.974,5407,3.367,5409,3.598,5531,3.152,5615,4.014,5844,2.631,5965,3.253,5979,3.81,6422,4.27,6957,4.014,6960,4.613,7022,4.309,7087,4.014,7212,2.521,7420,4.27,7664,4.613,7755,3.494,7996,3.494,8368,4.613,8417,4.014,8436,4.014,8698,3.64,9028,6.307,9078,3.81,9193,4.014,9926,4.613,9971,4.613,10652,4.613,11066,4.27,11141,6.653,11142,8.47,11143,5.133,11144,5.133,11145,5.133,11146,5.133,11147,5.133,11148,5.133,11149,5.133,11150,5.133,11151,5.133,11152,5.133,11153,5.133,11154,5.133,11155,5.133,11156,5.133,11157,5.133,11158,5.133,11159,5.133,11160,5.133,11161,5.133,11162,5.133,11163,5.133,11164,5.133,11165,5.133,11166,5.133,11167,5.133,11168,5.133,11169,5.133,11170,5.133,11171,5.133,11172,5.133,11173,5.133]],["tags/An Ad Leaflet QR Design Mistake",[1945,1.839]],["title/Choosing an Audio Codec",[2031,3.251,6316,3.458,11174,4.539]],["content/Choosing an Audio Codec",[3,1.453,6,0.657,10,0.548,19,0.447,20,1.347,27,0.45,52,0.444,53,2.82,60,1.543,75,0.953,76,1.266,79,0.461,85,1.552,113,1.34,122,2.297,131,1.293,132,1.416,149,1.662,155,3.193,158,0.857,167,1.928,168,1.123,179,1.263,210,2.253,211,1.685,217,1.164,219,1.594,230,2.297,237,3.193,241,2.059,263,1.109,291,1.928,293,1.595,312,1.491,326,2.391,350,3.313,384,1.097,395,2.343,404,1.084,409,1.364,412,2.02,416,2.132,422,1.734,452,1.76,465,1.84,476,1.347,517,0.998,596,3.546,705,1.734,728,1.812,739,2.746,897,1.491,912,1.245,919,1.685,921,0.857,951,1.192,1045,3.547,1069,1.435,1082,4.798,1179,1.928,1193,1.76,1283,0.712,1289,1.15,1296,1.489,1327,1.531,1331,2.297,1346,2.101,1399,1.928,1417,3.613,1517,2.442,1542,4.606,1606,3.469,1613,2.442,1655,1.991,1663,1.531,1666,2.095,1759,4.798,1764,2.104,1785,2.128,1810,4.438,1950,1.84,1972,2.495,1976,2.343,1983,2.216,2007,1.639,2010,5.589,2333,2.746,2374,2.059,2396,2.613,2450,3.452,2461,2.746,2558,2.638,2565,2.495,2645,1.511,2655,3.68,2727,2.901,2728,2.901,2753,2.989,2775,2.059,2788,3.193,2818,2.253,2850,3.807,2854,2.677,2914,3.085,2921,3.452,2986,2.495,3005,2.746,3023,4.929,3036,3.073,3149,2.552,3163,2.495,3178,2.82,3190,2.613,3221,4.049,3241,1.639,3272,4.798,3524,2.677,4302,4.049,4308,3.613,4350,3.807,4419,2.82,4455,3.613,4527,1.573,4746,3.613,4801,3.901,4967,4.438,5090,3.452,5103,2.82,5109,2.442,5110,2.442,5145,3.193,5174,3.29,5202,7.553,5359,3.631,5561,3.613,5639,3.807,5655,2.82,5657,5.259,5674,4.374,5694,3.313,5812,5.294,5865,4.374,5883,4.288,6131,3.313,6271,2.901,6316,5.327,6320,2.677,6325,4.374,6362,4.374,6592,3.085,6858,3.807,6859,6.786,6957,3.807,7047,3.807,7418,3.807,7656,4.374,7738,3.807,7882,3.193,7987,3.613,8089,3.193,8547,3.613,9357,4.374,9709,4.049,10678,5.513,11087,4.374,11174,5.628,11175,4.867,11176,4.374,11177,8.404,11178,6.766,11179,4.867,11180,6.766,11181,4.867,11182,4.374,11183,4.867,11184,4.867,11185,6.766,11186,4.867,11187,4.867,11188,4.867,11189,4.867,11190,4.867,11191,4.867,11192,4.867,11193,4.867,11194,4.867,11195,4.867,11196,4.867,11197,4.867,11198,4.867,11199,4.867,11200,4.867,11201,4.867,11202,4.867]],["tags/Choosing an Audio Codec",[]],["title/Creativity Equals Messy Code?",[897,1.492,1240,2.679,2054,4.377,2318,1.553]],["content/Creativity Equals Messy Code?",[0,1.454,6,0.934,16,2.702,19,0.315,20,1.916,21,1.522,26,1.191,27,0.641,28,0.897,50,0.965,51,2.245,52,0.631,60,1.148,67,2.432,74,0.929,76,1.31,79,0.472,97,2.375,103,1.376,142,2.375,144,0.845,150,1.233,153,1.718,167,1.994,168,1.161,203,1.506,223,1.175,234,2.423,264,2.245,279,2.166,287,2.84,291,1.994,302,4.188,311,1.542,320,1.393,321,1.82,330,3.033,372,2.059,375,0.806,378,1.542,384,1.921,388,1.627,395,2.423,397,4.91,409,1.41,430,1.465,455,1.718,457,1.41,475,2.245,476,1.393,484,2.88,487,1.695,517,1.032,591,2.702,623,3.808,722,1.932,881,2.166,897,2.739,920,2.166,921,1.394,945,2.129,950,3.333,957,2.917,994,2.286,995,2.639,1020,1.82,1029,3.091,1030,2.33,1064,3.427,1068,3.427,1146,2.268,1159,2.787,1193,1.82,1236,2.423,1274,2.394,1279,1.057,1281,3.57,1296,1.108,1303,2.525,1307,2.473,1309,3.302,1327,1.584,1339,2.15,1346,1.563,1369,1.892,1415,3.244,1555,2.84,1577,2.286,1648,2.208,1655,2.833,1675,2.33,1677,2.33,1710,2.33,1711,2.833,1721,1.02,1744,2.423,1777,2.129,1785,1.584,1827,4.587,1881,2.094,1892,3.427,1965,1.718,2006,1.874,2034,2.129,2039,3.736,2149,2.166,2289,1.847,2318,3.302,2319,2.768,2333,4.466,2374,2.129,2434,2.286,2457,2.525,2475,1.874,2512,2.375,2576,2.129,2642,1.963,2675,3.937,2759,2.639,2775,2.129,2785,2.026,2805,2.994,2959,3,3021,3.427,3023,5.017,3050,3,3181,3,3192,4.714,3198,3.302,3241,2.331,3483,3.735,3519,1.963,3539,2.84,3546,2.581,3556,3.57,3710,3.57,3908,2.768,4298,3.191,4426,3.091,4626,5.876,4683,3.736,4692,3.427,4698,4.524,4802,3.191,4938,3.736,4948,3.302,4950,4.524,4959,4.524,4963,4.188,4967,3.302,5085,1.649,5103,2.917,5540,2.84,5552,3.302,5554,4.524,5705,3.937,5733,3.57,5801,5.804,5804,3.091,6302,3.937,6335,3.937,6498,5.415,6623,4.188,6662,3.736,6855,3.736,7085,3.57,7338,4.188,7475,3.57,7885,4.524,8342,8.034,8774,4.188,8797,4.524,8805,3.57,8958,4.524,9211,4.188,10297,4.524,10888,4.524,11203,6.925,11204,5.034,11205,5.034,11206,5.034,11207,5.034,11208,5.034,11209,5.034,11210,5.034,11211,5.034,11212,5.034,11213,5.034,11214,5.034,11215,5.034,11216,5.034,11217,5.034,11218,5.034,11219,5.034,11220,5.034]],["tags/Creativity Equals Messy Code?",[2318,1.361,3559,2.238]],["title/Expiry Dates On Journals",[172,1.972,482,3.161,11221,5.456]],["content/Expiry Dates On Journals",[3,2.057,6,0.93,7,1.948,10,0.888,11,1.473,17,0.691,20,1.383,26,1.185,27,0.73,28,1.514,48,1.78,55,1.833,65,1.473,70,1.615,75,1.348,76,1.3,80,2.748,82,4.01,83,2.257,84,2.507,85,1.593,89,3.165,90,3.251,99,1.418,100,2.507,113,1.561,145,2.114,148,2.167,149,1.706,154,1.735,156,1.978,158,0.999,168,1.819,172,3.531,181,3.277,185,1.955,188,1.948,196,1.473,199,1.615,203,1.087,240,1.037,242,1.833,251,1.78,263,0.819,276,1.238,277,2.128,288,1.153,294,1.861,304,2.188,308,3.167,312,1.531,317,1.682,361,1.73,363,2.748,368,1.572,375,1.103,388,2.226,397,3.543,403,2.228,409,1.4,418,1.706,441,1.126,446,3.251,455,1.706,477,2.078,528,5.368,546,3.251,580,3.129,724,1.551,853,2.824,912,0.8,919,1.73,921,0.88,929,2.324,939,3.543,1009,3.167,1060,4.367,1066,2.405,1146,2.257,1159,2.011,1216,3.532,1283,0.894,1289,1.171,1296,1.516,1335,2.565,1505,3.612,1609,3.068,1617,2.078,1619,4.725,1631,1.889,1648,1.593,1657,1.531,1659,2.914,1671,2.865,1675,3.189,1678,2.078,1721,1.598,1725,1.78,1764,1.1,1827,2.895,1879,2.562,1947,2.562,1953,3.277,1962,1.833,1969,1.185,2011,2.978,2024,2.682,2077,2.313,2139,2.562,2202,3.908,2299,2.819,2336,3.401,2338,2.507,2353,2.078,2379,4.157,2390,2.358,2435,4.106,2447,3.068,2541,3.401,2594,3.017,2660,2.562,2665,3.612,2686,4.106,2696,3.789,2775,2.114,2782,3.709,2785,2.011,2804,2.895,2853,2.507,2981,2.748,3004,2.044,3082,3.543,3145,2.405,3255,3.277,3455,3.543,3509,3.167,3519,2.686,3885,4.885,4177,3.709,4298,3.167,4330,4.69,4417,2.562,4644,2.978,4797,3.277,4877,4.49,5085,1.637,5170,3.908,5237,3.167,5407,3.277,5409,3.532,5414,3.401,5705,3.908,5732,1.755,5804,3.068,5890,4.49,6194,4.49,6320,2.748,6402,3.709,6503,3.401,7083,4.49,7122,5.388,7123,3.908,7149,3.709,7329,3.709,7681,3.277,7957,3.401,8306,3.908,8410,4.157,8547,3.709,8698,3.543,8717,4.157,8840,4.49,8844,4.157,9270,4.157,10081,3.709,10093,3.709,10633,4.49,10872,4.49,11066,4.157,11222,4.997,11223,4.997,11224,4.997,11225,4.997,11226,4.997,11227,4.997,11228,4.997,11229,4.997,11230,4.997,11231,4.997,11232,4.997,11233,4.997,11234,4.997,11235,4.997,11236,4.997,11237,4.997]],["tags/Expiry Dates On Journals",[172,2.057]],["title/February 2022 In Review",[2717,2.433,4791,3.714,9963,2.928]],["content/February 2022 In Review",[5,1.342,6,0.648,8,3.403,11,1.414,17,1.068,18,2.528,19,0.399,22,0.917,24,0.939,25,1.831,26,1.152,46,1.963,55,1.76,59,1.51,65,2.462,67,2.352,73,0.75,75,1.311,76,1.248,83,1.572,85,1.53,87,1.492,91,1.71,99,1.361,100,2.407,101,0.584,113,1.326,114,2.707,152,2.407,153,1.638,154,1.056,156,1.204,157,1.641,158,0.849,165,0.984,168,1.107,176,2.707,179,1.441,180,1.279,183,3.266,216,1.343,234,2.309,251,2.387,255,2.576,263,0.787,288,1.546,295,2.46,315,0.961,365,1.814,392,2.309,413,2.357,431,2.639,441,1.081,444,1.71,491,2.14,546,3.641,571,3.041,606,3.725,786,2.86,806,2.357,851,2.194,877,1.396,912,0.768,938,2.946,945,2.03,947,2.707,964,2.14,993,2.357,1003,2.516,1008,1.842,1031,3.161,1045,2.516,1064,3.266,1066,2.309,1161,2.102,1203,2.86,1245,4.312,1278,1.551,1279,1.406,1283,0.812,1296,1.056,1307,2.357,1312,2.221,1319,1.963,1346,2.08,1420,1.787,1523,2.707,1577,2.179,1608,2.14,1656,3.403,1657,2.053,1663,1.51,1666,2.065,1715,2.179,1721,0.973,1746,2.576,1764,1.056,1778,2.74,1892,3.266,1895,3.753,1932,2.86,1935,3.753,1944,3.562,1962,1.76,1969,1.327,2006,2.494,2007,1.615,2015,2.576,2030,3.147,2043,2.46,2062,1.996,2063,1.901,2080,3.041,2125,3.224,2323,3.041,2347,3.779,2378,1.524,2403,3.147,2433,1.615,2452,2.78,2475,1.787,2634,4.75,2641,2.86,2642,1.871,2645,2.08,2655,2.696,2684,3.595,2717,2.987,2755,3.041,2776,3.992,2797,3.147,2861,3.992,2893,3.266,2901,3.562,2995,2.639,3008,3.266,3180,3.562,3181,2.86,3190,2.576,3195,3.753,3206,4.312,3454,2.264,3509,3.041,4073,4.312,4276,3.753,4396,2.14,4480,3.041,4549,2.516,4550,3.753,4785,2.86,4791,3.266,4936,3.753,5170,5.239,5359,2.576,5371,3.992,5381,3.266,5485,3.147,5732,1.685,5883,4.246,5917,2.46,5970,3.992,6131,5.254,6151,3.266,6224,3.562,6471,3.041,6726,4.312,6767,4.75,6851,4.972,7000,3.403,7120,4.312,7351,4.312,7420,3.992,7439,6.02,7688,3.992,7698,3.562,7798,4.312,7875,4.312,7882,3.147,8026,3.562,8032,3.562,8312,3.992,8315,3.403,8330,2.86,8384,2.946,8386,4.312,8503,3.992,8533,3.562,8535,4.312,8554,4.312,9083,6.02,9202,3.992,9654,4.312,9698,4.312,9709,3.992,9915,3.753,9963,4.142,10365,4.312,10475,3.753,10606,4.312,10630,3.992,10678,4.394,10795,4.312,10796,5.573,11238,4.798,11239,4.798,11240,4.798,11241,4.312,11242,4.798,11243,6.699,11244,4.798,11245,4.798,11246,4.798,11247,4.798,11248,4.798,11249,4.798,11250,6.699,11251,4.798,11252,6.699,11253,6.699,11254,4.798,11255,4.798,11256,4.798,11257,4.798,11258,4.798,11259,4.798,11260,4.798,11261,4.798,11262,4.798,11263,4.798,11264,4.798,11265,4.798,11266,4.798,11267,4.798,11268,4.798,11269,4.798,11270,4.798,11271,4.798,11272,4.798,11273,4.798,11274,4.798]],["tags/February 2022 In Review",[10107,3.874]],["title/How To Stream Your Own Music: Reprise",[2655,2.196,4801,2.737,11176,4.903]],["content/How To Stream Your Own Music: Reprise",[5,1.351,10,0.546,14,1.318,17,0.671,18,1.587,19,0.353,20,1.341,22,0.926,27,0.624,28,0.863,42,2.094,50,0.591,52,0.615,67,1.702,70,1.566,86,2.438,91,2.403,99,1.375,101,0.588,103,1.324,104,0.696,109,1.672,113,0.96,132,1.41,142,2.287,154,1.067,156,1.216,168,1.556,182,1.118,235,2.976,240,1.006,251,1.727,258,3.46,263,0.795,266,2.161,275,0.96,289,2.808,297,1.485,304,2.123,309,2.824,312,1.485,315,1.351,326,2.381,347,2.888,368,1.525,375,0.776,378,1.079,395,2.333,399,2.808,403,2.161,413,2.381,428,2.734,430,1.41,435,2.086,442,2.243,459,4.037,569,2.976,596,2.369,621,1.914,627,1.805,667,2.601,782,0.884,851,2.209,897,1.485,912,1.08,929,1.428,934,2.086,946,2.888,948,2.333,958,2.601,978,2.403,1019,4.032,1066,2.333,1159,1.951,1203,4.624,1272,2.665,1276,1.805,1279,1.018,1283,0.928,1289,0.824,1296,1.067,1306,5.317,1315,2.759,1317,2.438,1319,1.983,1335,1.805,1339,1.505,1398,3.064,1407,4.032,1409,3.072,1426,2.014,1448,3.79,1463,3.072,1465,2.665,1476,2.976,1488,1.92,1490,3.597,1522,3.437,1548,3.072,1606,2.485,1613,2.431,1633,2.161,1657,1.485,1661,4.783,1666,2.086,1678,2.806,1687,1.383,1784,2.601,1790,2.808,1806,2.601,1827,2.808,1947,3.458,1950,1.832,1969,0.833,1985,2.665,1993,2.541,1999,2.381,2004,2.734,2012,2.431,2015,2.601,2034,2.05,2043,2.485,2048,3.299,2104,2.665,2115,2.243,2118,2.808,2135,3.072,2195,4.032,2219,3.437,2231,2.665,2289,1.778,2346,2.485,2353,3.668,2374,2.05,2433,1.632,2434,2.201,2435,2.888,2461,2.734,2469,2.888,2471,3.71,2516,4.592,2533,2.808,2548,3.79,2594,2.123,2642,1.89,2644,3.437,2645,2.094,2655,3.675,2694,3.537,2710,2.976,2756,2.903,2789,3.597,2810,4.032,2818,2.243,2893,3.299,2927,3.072,2949,2.601,2996,2.431,3190,2.601,3217,3.299,3454,2.287,3480,4.142,3508,3.79,3524,2.665,4098,2.333,4347,5.089,4693,3.437,4786,5.612,4791,3.299,4801,3.892,5128,2.976,5147,3.71,5162,3.299,5163,4.592,5195,2.541,5328,2.976,5342,4.355,5375,2.888,5479,4.355,5542,2.601,5836,3.437,5848,3.179,5860,3.79,5883,4.276,6007,4.355,6038,3.597,6132,3.79,6273,4.355,6316,3.072,6595,2.808,6746,3.597,6859,3.597,6988,4.355,7647,3.437,7739,4.355,7882,3.179,9479,4.355,9797,4.032,10678,4.424,10679,3.79,10702,3.79,10714,3.79,10716,6.455,10719,4.355,10800,4.355,10865,4.355,10866,6.972,11072,6.062,11073,6.062,11275,4.846,11276,4.846,11277,4.846,11278,4.846,11279,4.846,11280,4.846,11281,4.846,11282,4.846,11283,4.846,11284,4.846,11285,4.846,11286,4.846,11287,4.846,11288,4.846,11289,4.846,11290,4.846,11291,4.846,11292,4.846,11293,4.846]],["tags/How To Stream Your Own Music: Reprise",[2655,2.29]],["title/Leuchtturm Notebook Paper Quality",[2696,2.679,2805,1.711,3023,3.087,8021,4.052]],["content/Leuchtturm Notebook Paper Quality",[3,1.477,5,0.991,14,1.333,20,1.893,22,0.945,26,1.176,27,0.458,36,2.205,47,2.152,50,0.834,51,2.205,52,0.451,60,1.128,65,2.618,73,1.069,74,0.913,75,1.931,79,0.642,80,2.72,96,2.473,101,0.684,109,1.696,113,0.979,116,1.597,122,2.333,144,0.83,148,2.152,152,3.934,153,2.335,157,1.675,158,1.125,166,3.367,179,0.923,182,1.141,199,2.21,203,1.076,217,1.636,223,1.155,230,2.333,233,2.166,240,1.026,251,1.762,265,4.851,282,1.577,288,1.141,293,1.014,308,3.135,317,2.64,320,1.893,361,1.712,363,2.72,372,2.023,375,0.792,403,3.497,404,1.101,412,1.477,415,3.037,416,2.166,428,2.79,430,1.439,436,3.135,443,1.458,460,3.993,465,1.87,698,1.814,724,2.627,877,1.439,920,2.128,937,2.79,1007,4.114,1008,1.898,1062,1.99,1146,1.62,1193,1.788,1229,1.842,1283,0.89,1289,0.84,1299,2.865,1334,2.166,1399,3.106,1403,2.128,1442,3.671,1451,2.593,1501,1.688,1582,2.753,1631,1.87,1645,2.481,1648,2.181,1657,1.515,1744,2.38,1778,2.798,1872,2.246,1898,2.865,1969,1.349,2006,1.842,2031,2.947,2078,2.79,2105,2.72,2349,3.244,2382,4.2,2400,3.037,2404,3.244,2428,3.868,2433,2.303,2469,2.947,2669,2.947,2694,2.593,2695,3.868,2696,5.568,2705,4.815,2708,6.133,2755,3.135,2775,2.092,2776,6.524,2805,3.371,2843,3.507,2945,2.593,3004,2.023,3007,3.244,3023,5.824,3123,3.244,3192,3.367,3538,3.507,3937,3.037,4323,3.671,4402,3.228,4799,4.444,5184,5.35,5369,3.135,5518,4.077,5541,4.114,5649,4.444,5704,3.135,5725,3.507,6235,7.983,6355,3.868,6822,4.487,7184,3.507,7616,4.444,7649,3.868,7677,4.114,8019,4.444,8021,7.04,8027,7.983,8260,3.367,8353,4.444,8467,3.868,8702,3.868,9333,4.114,9768,4.444,9840,4.444,10785,4.444,11294,4.945,11295,4.945,11296,4.945,11297,4.444,11298,4.945,11299,6.841,11300,4.945,11301,4.945,11302,4.945,11303,4.444,11304,4.945,11305,4.945,11306,4.945,11307,4.945,11308,4.945,11309,4.945,11310,4.945,11311,4.444,11312,4.945,11313,4.945,11314,4.945,11315,4.945,11316,6.841]],["tags/Leuchtturm Notebook Paper Quality",[172,2.057]],["title/The Analogue Pocket: The Definitive Game Boy Handheld?",[1555,2.262,2378,0.731,2454,1.821,4559,3.136,6857,2.73,7745,2.977]],["content/The Analogue Pocket: The Definitive Game Boy Handheld?",[5,0.955,6,1.183,10,0.537,17,0.922,19,0.217,20,1.318,22,0.911,24,0.932,28,0.849,36,2.125,42,1.479,60,1.086,70,1.54,76,1.24,79,0.524,87,1.484,98,1.061,101,0.726,104,0.684,131,0.911,145,2.82,154,1.049,157,1.167,158,0.604,159,1.46,167,3.045,181,3.125,185,1.352,188,1.858,203,1.036,230,2.248,277,1.286,278,1.734,288,1.099,293,0.977,295,2.443,315,1.335,363,2.62,378,1.061,384,1.074,388,1.54,398,2.926,413,2.34,422,1.698,430,1.387,431,2.62,441,1.732,450,2.164,452,2.41,457,1.335,490,2.498,517,0.977,596,1.673,648,3.244,724,2.07,786,3.972,851,1.561,853,2.043,860,3.244,912,0.763,913,3.344,921,0.839,948,2.293,964,2.125,966,3.537,978,1.698,1045,2.498,1066,2.293,1088,2.62,1146,1.561,1179,1.887,1229,1.774,1237,1.858,1274,1.441,1278,2.484,1279,1,1289,1.133,1300,2.164,1304,4.372,1319,1.949,1327,1.499,1335,2.482,1517,2.39,1541,1.519,1578,3.666,1582,1.918,1589,3.085,1594,2.761,1600,2.205,1645,3.344,1677,3.085,1687,0.977,1715,2.164,1720,2.688,1790,2.761,1795,1.673,1858,2.016,1902,3.244,1973,2.84,1986,2.205,1995,2.62,2028,1.774,2061,4.538,2062,1.982,2104,2.62,2183,2.164,2289,1.748,2338,2.39,2346,2.443,2357,4.727,2361,3.125,2378,1.763,2396,2.557,2417,2.62,2433,1.604,2454,3.782,2461,2.688,2483,2.557,2511,3.666,2512,2.248,2551,4.948,2645,2.387,2660,2.443,2668,2.205,2684,4.127,2691,2.016,2694,2.498,2714,2.39,2756,2.051,2757,3.379,2827,4.372,2921,3.379,2989,3.379,2990,3.125,3005,2.688,3035,3.028,3077,2.164,3082,3.379,3094,3.964,3149,2.498,3163,2.443,3236,2.293,3524,2.62,3533,3.964,3813,4.282,4338,2.761,4355,3.379,4417,2.443,4457,3.125,4461,1.887,4502,2.84,4504,3.125,4527,1.54,4549,2.498,4551,3.537,4552,2.84,4559,6.013,4574,3.537,4575,3.862,4657,3.02,4681,3.379,4737,3.125,4742,3.726,4756,2.293,4768,4.127,4794,5.078,4904,4.093,5109,2.39,5142,3.726,5180,3.02,5250,2.688,5393,3.537,5408,3.379,5467,3.964,5591,3.537,5609,2.926,5629,3.244,5657,3.666,5732,1.673,5744,3.379,5753,3.726,5804,2.926,5826,2.926,5833,2.84,5905,2.926,5925,4.282,6083,5.668,6174,3.379,6188,3.964,6408,3.726,6545,3.125,6751,4.538,6767,3.379,6857,6.182,7381,3.726,7677,3.964,7745,4.948,7747,4.282,7834,3.537,8039,3.379,8272,3.964,8891,3.537,9424,3.964,9486,3.964,9679,4.282,9695,3.726,9858,3.537,9946,4.282,11182,4.282,11317,4.765,11318,4.765,11319,4.765,11320,4.765,11321,4.765,11322,4.765,11323,4.765,11324,4.765,11325,4.765,11326,4.765,11327,6.666,11328,4.765,11329,4.765,11330,4.765,11331,4.765,11332,4.765,11333,4.765,11334,4.765,11335,4.765,11336,4.765,11337,4.765,11338,4.765,11339,4.765,11340,4.765,11341,4.765,11342,4.765,11343,4.765,11344,4.765,11345,4.765,11346,4.765]],["tags/The Analogue Pocket: The Definitive Game Boy Handheld?",[2378,0.779,4768,2.291]],["title/Cool Things People Do With Their Blogs",[10,0.549,156,1.222,277,1.315,881,2.096]],["content/Cool Things People Do With Their Blogs",[0,1.076,1,1.846,6,0.692,10,0.577,17,0.709,18,1.679,19,0.319,29,1.454,42,1.591,48,1.826,52,0.82,74,0.946,75,1.003,96,3.106,98,1.141,99,1.454,101,0.784,121,1.511,132,1.491,144,0.861,152,2.571,156,2.429,158,0.649,168,2.076,182,1.182,185,1.454,189,3.955,216,0.892,258,2.285,277,1.383,304,2.245,309,1.725,315,1.405,375,0.821,404,1.141,418,1.75,477,2.132,564,2.285,621,2.267,647,3.489,667,2.751,881,3.017,908,1.908,909,2.916,910,2.819,929,1.511,946,3.054,994,2.328,1002,3.054,1003,2.687,1020,2.534,1200,4.304,1236,3.374,1286,2.687,1292,2.03,1300,2.328,1306,3.248,1335,2.61,1339,1.591,1346,1.591,1398,2.328,1476,3.147,1481,4.762,1523,2.891,1541,1.634,1577,2.328,1583,1.612,1600,2.372,1657,1.57,1662,2.418,1669,4.008,1671,2.132,1677,3.245,1715,2.328,1785,2.206,1807,3.147,1945,2.265,1971,2.97,2004,2.891,2034,2.168,2049,4.264,2062,2.132,2063,2.03,2116,3.126,2144,2.891,2378,1.457,2409,2.285,2463,3.245,2485,3.362,2617,2.97,2648,3.147,2655,2.063,2699,1.937,2711,3.248,2717,3.126,2753,3.147,2924,4.264,2971,3.248,3021,3.489,3026,3.147,3034,3.362,3241,1.725,3435,3.634,3519,3.115,3866,4.008,3905,3.248,3937,3.147,4460,5.483,4997,4.264,5119,4.096,5163,3.489,5237,4.444,5316,3.489,5318,3.489,5369,3.248,5376,2.687,5393,3.804,5442,5.483,5525,4.906,5540,2.891,5744,3.634,5928,4.606,6054,3.248,6074,2.891,6286,3.634,6758,4.008,6989,4.772,7119,3.147,7146,4.264,7149,3.804,7223,5.483,7294,4.606,7319,4.606,7320,4.606,7330,3.804,7331,5.832,7413,4.606,7457,4.264,8275,4.606,8276,4.606,9109,4.606,9193,4.008,9719,4.264,10466,4.606,10467,4.606,11347,5.125,11348,5.125,11349,5.125,11350,5.125,11351,5.125,11352,7.01,11353,5.125,11354,5.125,11355,5.125,11356,7.01,11357,5.125,11358,5.125,11359,5.125,11360,5.125,11361,5.125,11362,5.125,11363,5.125,11364,5.125,11365,5.125,11366,5.125,11367,5.125,11368,5.125,11369,5.125,11370,5.125,11371,5.125,11372,5.125,11373,5.125,11374,5.125,11375,5.125,11376,5.125,11377,5.125,11378,7.01,11379,5.125,11380,5.125,11381,5.125,11382,5.125,11383,5.125,11384,5.125,11385,5.125,11386,5.125,11387,4.606,11388,4.606,11389,5.125,11390,5.125,11391,5.125,11392,5.125,11393,5.125,11394,5.125,11395,5.125,11396,5.125,11397,5.125,11398,5.125,11399,5.125,11400,5.125,11401,5.125]],["tags/Cool Things People Do With Their Blogs",[156,1.428]],["title/Equality in Game Credits",[1240,3.001,2378,0.995,11402,4.903]],["content/Equality in Game Credits",[0,1.789,5,1.007,6,0.678,13,2.176,19,0.228,24,0.984,26,1.19,27,0.465,28,0.895,30,2.362,50,0.964,73,0.786,74,0.928,79,0.472,81,1.669,82,2.372,89,2.576,91,1.791,95,2.372,101,0.438,113,0.995,121,1.481,127,2.764,128,3.186,132,1.463,144,0.844,148,1.581,154,1.522,158,0.876,159,1.54,175,1.914,179,0.939,180,1.34,182,1.16,184,1.692,189,2.836,201,2.995,203,1.505,208,3.085,210,2.326,216,0.875,275,0.995,276,1.246,282,1.602,288,1.16,289,2.912,297,2.424,315,1.386,317,1.692,368,1.581,375,0.805,384,1.133,398,3.086,404,1.119,471,3.627,491,2.241,564,2.241,580,2.283,632,2.764,722,1.929,724,1.56,739,2.836,782,0.917,844,3.564,881,2.163,908,1.872,910,2.764,921,1.218,964,3.527,985,1.391,1031,2.372,1200,3.086,1229,1.872,1237,1.96,1240,3.804,1260,1.481,1283,0.529,1286,3.627,1292,1.991,1322,5.135,1325,2.912,1331,2.372,1366,2.698,1382,2.926,1496,3.422,1517,2.521,1541,2.205,1557,1.765,1583,1.581,1617,2.091,1677,2.326,1687,1.031,1715,2.283,1721,1.019,1742,3.944,1803,2.836,1903,2.577,1952,2.419,1969,0.864,2028,1.872,2092,3.731,2109,2.635,2254,2.201,2259,3.731,2289,1.844,2378,1.726,2407,2.698,2428,5.41,2452,2.912,2454,2.283,2459,4.709,2558,1.96,2641,2.995,2655,2.023,2684,2.698,2699,2.615,2785,2.023,2805,2.429,2925,3.422,2934,4.181,3037,5.135,3071,3.086,3077,2.283,3145,2.419,3181,2.995,3216,3.713,3241,1.692,3254,2.283,3265,3.086,3322,4.181,3509,3.186,3518,3.086,3528,4.123,3563,4.385,4320,3.297,4402,2.372,4414,6.217,4415,4.181,4463,2.995,4480,3.186,4713,3.422,4714,2.836,4751,4.517,4802,3.186,5085,1.646,5174,2.126,5283,2.283,5376,2.635,5518,2.995,5561,3.731,5732,1.765,5740,3.931,5741,3.931,5789,2.912,5835,3.931,5869,3.297,6074,2.836,6494,3.731,6638,3.931,6658,3.731,6697,5.135,7155,3.931,7184,3.564,7329,3.731,7378,4.517,7682,3.731,7768,3.731,7811,4.181,7833,3.731,8139,3.731,8861,4.517,8867,3.931,9113,4.517,9159,6.217,9281,4.181,9419,4.517,9719,4.181,10001,4.181,10327,4.517,10764,4.517,10997,4.517,11402,8.029,11403,5.026,11404,5.026,11405,5.026,11406,5.026,11407,5.026,11408,5.026,11409,5.026,11410,5.026,11411,6.917,11412,5.026,11413,5.026,11414,5.026,11415,5.026,11416,5.026,11417,5.026,11418,5.026,11419,5.026,11420,6.917,11421,5.026,11422,5.026,11423,5.026,11424,5.026,11425,5.026,11426,6.917,11427,5.026,11428,5.026,11429,5.026,11430,5.026,11431,5.026,11432,5.026,11433,5.026,11434,5.026,11435,5.026,11436,6.917,11437,5.026,11438,5.026,11439,5.026,11440,5.026,11441,5.026]],["tags/Equality in Game Credits",[2378,1.038]],["title/Fighting Webmention And Pingback Spam",[2537,3.809,6030,3.087,6898,2.903,6950,3.615]],["content/Fighting Webmention And Pingback Spam",[0,1.074,6,0.691,7,1.995,14,1.578,19,0.39,30,1.528,40,2.514,52,0.467,70,1.654,76,1.331,79,0.349,94,1.209,96,1.85,101,0.696,104,0.735,107,5.533,133,1.964,149,1.747,157,1.253,158,0.887,165,1.05,168,1.842,179,0.956,182,1.981,207,4.002,210,2.368,217,1.909,240,1.062,252,2.128,274,6.244,275,1.387,276,1.268,293,1.904,294,1.905,297,1.568,330,2.241,372,2.093,378,1.14,403,2.282,404,1.14,412,1.528,431,2.814,438,3.05,443,1.508,473,2.415,622,2.567,628,3.377,646,3.484,723,2.202,724,1.589,728,1.905,768,4.439,908,2.608,912,1.121,921,0.901,951,1.253,982,3.513,998,2.623,1008,2.688,1020,1.85,1161,3.067,1172,2.965,1260,1.508,1279,1.47,1283,0.538,1291,1.331,1292,2.027,1296,1.126,1298,3.241,1300,3.181,1312,3.241,1339,1.589,1346,1.589,1442,3.798,1488,2.774,1508,3.142,1533,2.368,1557,1.797,1586,1.589,1611,3.899,1647,3.244,1648,1.632,1678,2.128,1687,1.05,1779,4.599,1788,3.484,1795,1.797,1807,3.142,1860,3.05,1878,3.05,1879,2.623,1902,3.484,1907,3.244,1938,2.567,1941,2.814,1945,1.654,1964,3.244,1969,0.88,2007,1.723,2025,3.067,2028,1.905,2062,3.74,2120,3.484,2183,2.324,2344,3.142,2475,1.905,2512,2.415,2600,3.05,2668,2.368,2710,3.142,2711,3.244,2881,2.093,2962,3.356,3004,2.865,3073,3.798,3125,3.05,3130,3.244,3163,2.623,3508,4.002,3857,3.629,4691,2.683,4929,3.484,4965,3.798,5112,3.629,5119,3.377,5122,3.142,5182,4.002,5193,3.798,5212,4.257,5333,3.629,5375,3.05,5477,3.142,5624,4.257,5632,3.629,5655,4.058,5722,3.629,5737,4.599,5889,4.002,6030,5.442,6119,4.002,6898,5.533,6900,4.502,6950,6.892,6951,4.257,6957,6.244,6958,7.032,6978,4.002,7042,4.257,7397,4.599,8918,4.002,9256,4.599,9270,4.257,9592,4.257,9806,4.002,9952,4.257,9972,4.599,10183,4.257,10376,4.599,10669,4.599,11141,4.257,11142,4.257,11297,4.599,11442,5.117,11443,5.117,11444,5.117,11445,5.117,11446,5.117,11447,5.117,11448,5.117,11449,5.117,11450,5.117,11451,5.117,11452,5.117,11453,5.117,11454,5.117,11455,5.117,11456,5.117,11457,5.117,11458,5.117,11459,5.117,11460,5.117,11461,7.003,11462,5.117,11463,5.117,11464,5.117,11465,5.117]],["tags/Fighting Webmention And Pingback Spam",[6900,2.984]],["title/March 2022 In Review",[2717,2.433,6552,3.714,9963,2.928]],["content/March 2022 In Review",[1,1.269,8,3.417,10,0.757,11,1.42,17,0.667,19,0.4,25,1.836,26,0.829,27,0.716,28,1.197,32,3.417,50,0.587,59,1.516,62,2.367,65,1.42,69,1.879,70,1.557,73,1.05,74,1.428,75,1.315,79,0.458,83,2.201,87,1.496,98,1.073,101,0.729,103,1.317,133,1.85,148,2.433,150,1.645,152,3.37,153,3.193,156,1.209,157,1.18,158,0.851,168,1.112,179,0.9,182,1.112,184,1.622,185,1.367,200,1.939,211,1.668,216,0.838,217,1.152,220,2.471,223,1.125,251,1.717,253,2.038,263,1.102,288,1.112,293,0.988,311,1.477,317,1.622,318,2.111,321,1.742,361,1.668,375,0.772,389,2.872,392,2.319,403,2.149,405,2.959,412,1.439,422,1.717,444,1.717,567,2.872,593,3.695,606,3.732,614,3.606,621,1.367,785,3.161,909,2.004,915,2.65,932,1.971,1011,2.756,1031,2.274,1066,3.234,1069,1.42,1078,2.959,1159,2.704,1161,2.111,1267,2.367,1279,1.411,1283,0.814,1289,1.314,1322,3.577,1324,4.331,1398,2.189,1399,1.909,1426,1.439,1537,1.971,1586,1.496,1608,2.149,1619,2.471,1721,1.696,1764,1.479,1962,1.768,1969,0.829,2007,1.622,2012,2.417,2031,2.872,2034,2.038,2064,2.959,2070,2.471,2115,2.23,2123,3.234,2125,2.319,2193,2.65,2289,1.768,2302,1.85,2306,2.23,2313,3.577,2319,2.65,2342,4.009,2347,2.719,2378,1.411,2388,2.792,2390,2.274,2413,2.23,2433,2.262,2435,2.872,2463,2.23,2475,1.794,2476,2.719,2582,2.65,2602,3.417,2645,2.086,2655,1.939,2684,2.587,2691,2.038,2717,2.996,2775,2.038,2804,2.792,2994,2.959,3013,2.65,3044,2.792,3102,4.331,3163,2.471,3220,2.872,3251,2.792,3254,2.189,3547,3.054,3905,3.054,4396,2.149,4402,2.274,4408,4.764,4442,3.769,4443,2.65,4791,5.266,4801,2.417,4941,4.009,5085,1.578,5122,2.959,5359,2.587,5367,2.65,5398,3.577,5531,2.959,5532,3.769,5538,4.009,5540,2.719,5550,3.054,5665,3.28,5732,1.692,5901,2.417,6151,4.574,6190,2.792,6473,4.009,6547,4.259,6552,4.574,6588,2.872,6618,3.054,6767,3.417,6853,2.959,6931,3.769,7335,4.331,7392,3.769,8218,4.331,8384,2.959,8497,4.331,8503,4.009,8795,3.769,8875,4.009,8910,4.331,8911,4.009,8973,3.417,8991,3.769,9232,4.331,9281,4.009,9686,4.331,9687,4.331,9806,3.769,9930,4.331,9952,4.009,9963,4.152,9980,4.331,10096,3.769,10097,4.009,10315,4.331,10354,4.331,10377,4.331,10475,3.769,10604,4.009,10716,6.435,10920,4.331,11034,4.331,11174,4.009,11241,4.331,11466,4.819,11467,4.819,11468,4.819,11469,4.819,11470,4.819,11471,4.819,11472,4.819,11473,4.819,11474,4.819,11475,4.819,11476,4.819,11477,4.819,11478,4.819,11479,4.819,11480,4.819,11481,4.819,11482,4.819,11483,6.719,11484,4.819,11485,4.819,11486,4.819,11487,4.819,11488,4.819,11489,4.819,11490,4.819,11491,4.819,11492,4.819,11493,4.819,11494,4.819,11495,4.819,11496,4.819,11497,4.819,11498,4.819,11499,4.819,11500,4.819]],["tags/March 2022 In Review",[10107,3.874]],["title/None Of My Best Friends Are Content Creators",[69,1.715,698,1.614,1078,2.701,1671,1.83,8552,3.44]],["content/None Of My Best Friends Are Content Creators",[0,1.066,7,1.98,10,0.896,17,0.703,19,0.317,22,0.971,23,2.112,24,1.364,27,0.47,28,0.905,42,2.163,50,0.969,52,0.463,59,1.598,61,2.444,69,3.337,70,1.641,74,1.468,75,1.857,79,0.475,81,1.686,91,1.809,98,1.131,100,2.548,101,0.807,104,1.229,113,1.38,116,1.186,117,4.57,124,2.865,131,0.971,144,1.17,148,2.192,150,1.706,154,1.118,156,2.533,158,0.643,168,1.608,179,0.948,182,1.172,184,1.71,196,1.497,203,1.515,211,2.412,217,1.214,263,0.833,275,1.006,277,2.5,279,2.186,282,2.221,312,2.135,316,2.663,330,2.225,367,1.92,368,1.598,375,0.813,384,1.144,404,1.131,407,2.947,418,2.379,443,1.497,444,1.809,465,1.92,471,2.663,476,1.405,487,1.71,688,2.865,698,2.918,722,1.95,724,1.577,782,0.926,784,3.331,827,2.793,912,0.813,921,0.894,929,1.497,946,3.027,951,1.706,1078,3.118,1159,2.044,1192,2.396,1193,1.836,1274,1.536,1279,1.066,1289,0.863,1296,1.533,1298,2.351,1306,3.219,1327,1.598,1369,1.388,1398,2.307,1422,2.012,1505,2.663,1533,2.351,1541,1.619,1617,2.112,1668,3.457,1671,2.898,1687,1.042,1716,3.77,1721,1.412,1785,1.598,1790,2.943,1931,3.253,1952,2.444,1962,1.863,2006,1.891,2025,3.052,2062,2.112,2175,3.457,2254,2.225,2280,4.564,2289,2.918,2301,4.269,2302,1.95,2338,2.548,2358,2.943,2375,2.726,2377,3.331,2417,2.793,2475,1.891,2592,2.548,2666,2.396,2669,3.027,2716,4.564,2804,2.943,2873,4.225,2894,3.118,3004,2.078,3019,3.118,3033,6.261,3044,2.943,3082,3.602,3189,2.865,3202,3.457,3230,3.972,3251,2.943,3264,2.663,3549,3.219,4692,3.457,4724,3.972,4963,4.225,4964,5.196,5085,1.664,5174,2.148,5237,3.219,5550,3.219,5651,3.77,6002,4.225,6013,3.457,6054,3.219,6592,3.219,6802,3.602,6844,3.331,6846,4.564,6854,3.77,6862,4.225,6987,3.77,7047,3.972,7132,4.225,7133,4.225,7212,2.495,7369,3.972,7681,3.331,7738,3.972,8248,4.225,8397,4.564,8552,5.449,8698,3.602,8777,3.972,8849,4.564,8944,4.564,8972,5.449,9137,4.225,9304,4.564,9323,4.225,10249,4.564,10678,3.331,11043,4.564,11311,4.564,11501,5.079,11502,5.079,11503,5.079,11504,5.079,11505,6.967,11506,5.079,11507,5.079,11508,5.079,11509,5.079,11510,5.079,11511,5.079,11512,6.967,11513,5.079]],["tags/None Of My Best Friends Are Content Creators",[156,1.428]],["title/Password Hacking Sylvester & Tweety: Breakfast on the Run",[19,0.167,627,1.372,1396,2.735,3051,3.065,6054,2.336,11514,3.311,11515,3.311]],["content/Password Hacking Sylvester & Tweety: Breakfast on the Run",[3,1.47,6,0.664,11,1.451,19,0.403,24,0.964,30,1.47,50,1.081,52,0.622,55,1.806,67,1.729,74,0.909,79,0.534,81,1.635,99,1.397,104,0.707,109,1.69,123,2.37,126,2.048,131,0.941,156,1.235,158,0.624,166,3.352,167,1.95,168,1.136,180,1.818,182,1.136,184,1.658,216,0.857,230,2.323,251,1.754,263,0.807,275,1.35,282,1.57,293,1.399,312,2.718,361,1.705,375,0.788,376,3.121,384,1.903,389,2.934,404,1.096,430,1.433,452,1.78,485,4.425,487,1.658,491,2.196,517,1.605,542,2.853,549,4.2,627,2.54,630,1.362,768,3.121,853,2.09,854,3.554,912,0.788,921,0.867,951,1.206,1044,3.218,1131,2.934,1146,2.234,1215,3.23,1272,2.708,1276,2.54,1283,0.718,1289,0.837,1296,1.084,1300,2.236,1333,1.982,1339,1.529,1396,7.227,1415,1.729,1426,1.47,1465,2.708,1487,2.119,1523,2.778,1568,3.352,1574,4.425,1578,3.751,1582,3.149,1646,4.473,1657,1.509,1663,1.549,1666,2.119,1687,1.01,1711,2.014,1715,2.236,1721,0.998,1740,3.352,1754,3.23,1764,1.084,1791,4.303,1795,1.729,1807,3.023,1876,2.196,1950,1.861,1969,0.847,1971,3.952,2011,2.934,2025,2.987,2030,5.54,2087,2.582,2105,2.708,2149,2.119,2230,2.323,2260,4.663,2320,4.804,2339,2.37,2378,1.857,2417,2.708,2454,4.167,2645,2.622,2655,1.982,2668,2.279,2687,2.708,2691,2.083,2827,4.473,2844,3.352,2853,2.47,2904,3.023,2971,3.121,3005,3.848,3051,4.096,3241,1.658,3480,3.023,3497,3.23,3509,3.121,3537,2.853,3984,3.23,4388,3.655,4549,2.582,4574,5.062,4575,2.853,4794,2.853,4800,3.492,4806,3.655,5085,1.613,5110,2.47,5131,2.778,5180,3.121,5282,2.708,5329,4.096,5566,4.096,5665,3.352,6083,3.352,6440,3.851,6452,4.425,6822,3.23,7303,4.425,7491,6.129,7721,3.655,7957,3.352,8490,4.096,8922,6.129,10079,6.129,10081,3.655,11514,4.425,11515,6.129,11516,4.924,11517,4.924,11518,4.924,11519,4.924,11520,4.924,11521,4.924,11522,4.924,11523,4.924,11524,6.82,11525,4.924,11526,4.924,11527,4.924,11528,4.924,11529,4.924,11530,4.924,11531,4.924,11532,4.924,11533,4.924,11534,4.924,11535,4.924,11536,4.924,11537,4.924,11538,4.924,11539,4.924,11540,6.82,11541,4.924,11542,4.924,11543,4.924,11544,4.924,11545,4.924,11546,4.924,11547,4.924,11548,4.924,11549,4.924,11550,6.82,11551,4.924,11552,4.924,11553,4.924,11554,4.924,11555,4.924,11556,4.924,11557,4.924,11558,4.924,11559,4.924,11560,4.924,11561,4.924]],["tags/Password Hacking Sylvester & Tweety: Breakfast on the Run",[2378,0.779,6054,2.706]],["title/The Death Of The Nike+ SportWatch",[3251,3.161,11562,4.903,11563,4.903]],["content/The Death Of The Nike+ SportWatch",[3,1.464,5,0.982,6,0.662,14,1.327,15,4.406,16,2.631,17,0.678,19,0.223,27,0.722,29,1.391,36,2.186,42,1.522,47,1.542,49,4.523,50,0.951,52,0.62,55,2.494,69,1.911,70,1.584,81,2.258,94,1.158,101,0.427,103,1.34,104,1.121,124,2.766,136,3.639,158,0.989,159,2.084,165,1.005,175,1.357,182,1.131,200,1.973,202,3.337,213,2.513,217,1.626,219,1.606,240,1.749,251,1.747,271,1.772,278,1.275,279,2.11,288,1.131,307,2.841,309,1.651,311,1.502,315,0.982,317,1.651,318,2.978,362,4.079,384,1.105,409,1.374,430,1.427,431,2.696,443,1.445,452,1.772,473,2.313,484,2.039,546,2.313,596,1.722,627,3.622,754,2.766,853,2.084,903,2.006,908,1.826,912,1.418,918,3.337,934,2.11,951,1.665,985,1.357,1011,1.747,1146,1.606,1212,3.639,1229,1.826,1238,3.477,1260,2.004,1276,2.532,1283,0.516,1291,1.275,1312,2.269,1346,2.749,1366,2.631,1369,2.42,1398,4.162,1401,3.032,1415,2.741,1420,1.826,1429,4.079,1487,2.11,1488,1.942,1615,2.841,1623,2.628,1655,2.006,1656,3.477,1669,3.834,1675,2.269,1687,1.005,1718,3.65,1719,2.269,1720,3.836,1743,4.079,1754,3.216,1777,2.074,1785,1.542,1789,3.108,1803,2.766,1912,5.314,1969,1.169,1999,2.408,2017,3.216,2025,2.147,2028,1.826,2034,2.074,2182,3.639,2230,2.313,2254,2.147,2297,3.565,2299,2.766,2355,5.047,2375,2.631,2388,3.94,2475,1.826,2511,2.696,2528,2.571,2592,2.459,2655,1.973,2672,3.337,2805,1.722,2806,2.408,2828,3.216,2938,3.477,2957,3.216,2969,2.269,2996,2.459,3014,2.922,3036,2.227,3140,2.922,3168,5.978,3190,2.631,3222,4.079,3241,1.651,3295,2.922,3454,2.313,3480,3.01,3483,2.313,3485,2.513,3496,2.459,3527,3.337,3848,3.337,3908,2.696,4372,3.477,4402,2.313,4409,3.834,4417,2.513,4691,2.571,4800,3.477,5085,1.606,5109,2.459,5283,2.227,5316,3.337,5442,3.834,5525,3.01,5690,4.629,5787,3.337,5822,3.337,5829,2.841,6003,3.216,6013,3.337,6054,4.31,6074,2.766,6246,3.639,6423,3.834,6472,3.477,6676,3.337,7022,3.01,7082,4.406,7571,3.477,7674,5.318,7834,3.639,7957,3.337,8367,4.079,8478,3.834,8545,4.079,8963,4.079,9642,4.079,9700,4.406,9938,4.406,10680,3.834,11387,4.406,11562,8.85,11563,7.015,11564,4.903,11565,6.799,11566,4.903,11567,4.903,11568,4.903,11569,7.806,11570,4.903,11571,4.903,11572,4.903,11573,4.903,11574,4.903,11575,4.903,11576,4.903,11577,4.903,11578,4.903,11579,4.903,11580,4.903,11581,4.903,11582,4.903,11583,4.903,11584,4.903]],["tags/The Death Of The Nike+ SportWatch",[]],["title/True Backlink Support in Hugo",[478,1.899,2409,2.172,2881,1.993,11585,4.377]],["content/True Backlink Support in Hugo",[0,0.998,10,0.749,14,0.807,19,0.488,27,0.71,28,1.185,29,1.348,48,1.693,52,0.607,55,3.051,75,1.502,76,1.236,79,0.567,81,1.578,89,2.859,96,3.006,101,0.414,103,1.818,104,0.955,109,1.649,113,0.941,126,1.976,127,2.613,130,2.613,132,1.383,156,2.086,157,1.164,165,0.974,168,1.535,191,2.917,199,2.15,201,2.832,203,1.033,217,1.136,240,0.986,278,1.731,293,1.364,297,2.039,304,3.834,315,0.952,320,1.315,372,1.944,378,1.058,389,2.832,403,2.119,404,1.709,418,1.622,441,1.071,478,2.993,481,4.699,501,3.116,516,4.529,517,1.574,630,1.315,722,1.824,723,2.045,728,1.769,754,3.753,768,3.012,782,0.867,851,2.179,897,1.456,908,1.769,909,2.767,919,2.879,921,1.352,929,1.4,956,5.444,987,2.491,1020,3.28,1062,1.912,1161,2.081,1200,4.085,1234,2.436,1272,2.613,1278,2.15,1279,0.998,1283,0.7,1296,1.046,1300,2.158,1301,2.613,1312,2.199,1333,1.912,1399,1.882,1477,2.384,1503,3.234,1505,3.488,1517,2.384,1583,2.093,1586,1.475,1671,2.767,1713,5.979,1964,4.866,1965,1.622,1972,3.411,1999,2.334,2025,2.081,2058,3.527,2086,2.832,2116,3.709,2127,2.832,2219,3.369,2230,2.242,2299,2.68,2333,2.68,2353,2.767,2361,3.116,2378,1.597,2409,3.709,2415,2.242,2454,2.158,2460,2.917,2463,3.079,2565,2.436,2643,4.27,2696,2.613,2699,1.796,2840,3.527,3241,2.584,3247,2.491,3262,2.753,3539,2.68,4527,1.535,5118,4.27,5119,2.01,5195,2.491,5229,4.938,5257,3.716,5316,5.96,5516,3.953,5552,3.116,5681,3.527,6083,3.234,6214,3.953,6286,4.718,6320,2.613,6722,3.716,6758,3.716,6802,3.369,7369,6.004,7826,3.953,8236,4.27,8245,5.979,8606,3.953,9382,4.27,9582,4.27,9583,3.716,9720,5.979,11585,8.542,11586,4.751,11587,4.751,11588,4.751,11589,4.751,11590,4.751,11591,6.653,11592,4.751,11593,4.751,11594,4.751,11595,4.751,11596,4.751,11597,4.751,11598,4.751,11599,4.751,11600,6.653,11601,4.751,11602,6.653,11603,6.653,11604,4.751,11605,4.751,11606,4.751,11607,4.751,11608,4.751,11609,4.751]],["tags/True Backlink Support in Hugo",[2409,2.538]],["title/Wax Seals And Snail Mail",[1901,3.195,3367,2.822,9203,4.052,11610,4.377]],["content/Wax Seals And Snail Mail",[0,1.758,6,0.908,10,0.543,14,0.82,17,1.071,22,1.286,24,0.944,25,1.319,29,1.908,50,1.073,52,0.44,59,1.518,60,1.1,67,1.695,73,0.754,74,0.891,75,1.515,79,0.329,96,1.744,99,1.369,101,0.586,113,0.956,144,0.81,145,2.041,148,2.435,153,1.647,157,1.182,168,1.113,172,2.431,173,3.422,179,0.901,180,1.287,181,5.492,185,1.369,199,1.559,203,1.05,216,0.84,220,3.448,240,1.396,241,2.041,251,1.719,318,2.114,370,2.796,375,1.077,378,1.075,384,1.087,404,1.075,430,1.404,431,3.699,450,3.055,452,1.744,460,2.277,478,1.881,621,1.369,881,2.077,906,3.059,909,2.007,912,1.077,915,2.654,918,3.285,921,1.184,929,1.422,964,2.999,969,3.582,1008,1.852,1011,1.719,1031,2.277,1069,1.422,1179,1.911,1260,1.422,1278,1.559,1289,1.315,1298,2.233,1327,2.116,1334,2.114,1382,3.275,1420,1.797,1422,1.911,1439,4.008,1583,1.518,1586,1.498,1633,2.152,1634,1.942,1657,1.479,1662,2.277,1681,2.963,1687,0.99,1691,2.963,1764,1.704,1776,2.963,1785,2.116,1795,1.695,1901,6.614,1945,3.172,1986,3.113,2006,1.797,2025,3.39,2062,2.007,2070,2.474,2139,2.474,2165,2.077,2289,1.77,2303,2.421,2320,2.963,2336,3.285,2337,3.165,2349,3.165,2361,3.165,2390,2.277,2463,2.233,2467,2.654,2475,1.797,2543,3.285,2552,3.422,2642,2.622,2705,2.963,2712,3.165,2760,2.654,2768,3.774,2805,1.695,2817,4.015,2853,3.374,2957,4.411,2981,2.654,3027,4.015,3141,4.015,3367,3.897,3400,4.015,3490,4.015,3539,2.722,4213,6.966,4408,3.422,4462,3.774,4485,5.26,4719,3.774,4753,2.963,4805,3.422,4938,3.582,5020,5.595,5282,2.654,5337,3.285,5400,3.422,5629,3.285,5744,3.422,5753,3.774,5901,2.421,6177,3.774,6279,3.582,6327,3.582,6554,3.582,6923,4.015,6924,4.337,6931,3.774,7005,4.015,7038,3.774,7075,4.337,7360,3.774,7381,3.774,7435,4.015,7540,5.746,7571,3.422,7609,4.337,7791,4.337,7884,4.337,7937,4.337,7960,4.015,8015,6.957,8265,3.582,8518,4.337,8558,4.015,8594,4.015,8698,3.422,8830,3.774,9043,5.595,9122,4.337,9194,4.337,9201,4.337,9203,5.595,9428,4.337,9468,3.774,9510,4.337,10161,5.595,11024,4.337,11303,6.044,11388,4.337,11610,8.71,11611,6.725,11612,4.826,11613,4.826,11614,4.826,11615,4.826,11616,4.826,11617,4.826,11618,4.826,11619,4.826,11620,4.826,11621,4.826,11622,9.118,11623,4.826,11624,4.826,11625,4.826,11626,4.826,11627,4.826,11628,4.826,11629,4.826,11630,4.826,11631,4.826,11632,4.826,11633,4.826,11634,4.826,11635,4.826,11636,4.826]],["tags/Wax Seals And Snail Mail",[]],["title/Archive by year: 2022",[6,0.736,477,2.269,9963,2.928]],["content/Archive by year: 2022",[19,0.436,477,3.513,9963,4.534]],["tags/Archive by year: 2022",[]],["title/Freshly Baked Thoughts",[3,1.629,909,2.269,955,4.539]],["content/Freshly Baked Thoughts",[3,2.218,11,2.189,19,0.338,21,2.247,27,0.687,42,2.306,73,1.391,103,2.03,104,1.277,150,1.819,211,2.572,240,1.541,253,3.142,365,2.808,368,2.337,402,5.267,452,2.685,482,4.304,782,1.355,909,3.701,921,1.308,929,2.189,1291,1.933,1327,2.337,1600,4.118,1721,1.506,2162,4.561,2302,3.415,2306,3.438,2360,4.304,2457,3.726,2463,3.438,2476,4.191,2592,3.726,2876,3.808,3024,6.675,3160,4.561,3163,3.808,5116,4.872,5695,6.675,6972,6.675,7852,5.809,8249,5.267,11637,7.428,11638,7.428,11639,7.428,11640,7.428,11641,7.428,11642,7.428,11643,7.428,11644,7.428,11645,7.428,11646,7.428,11647,7.428]],["tags/Freshly Baked Thoughts",[]]],"invertedIndex":[["",{"_index":19,"title":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"content":{"Ending your day with happy thoughts":{},"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"undefined":{},"Learning to become a baker":{},"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":{},"Teaching yourself to draw":{},"How to teach kids to program":{},"A samurai learning mindset":{},"Development principles in cooking":{},"Healing creative scars":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"Nuts about local nuts":{},"Inventing - for the worse?":{},"Archive by year: 2017":{},"2017 in books":{},"Hiding Code Complexity":{},"Death to pseudocode?":{},"Thinking in terms of objects":{},"Over entropie":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Reverse engineering a curriculum":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"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":{},"Project Warlock: About Perseverance":{},"Combining async with generators in Node 11":{},"Designing websites with accessibility in mind":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"3D Software Rendering on the GBA":{},"Thoughts on collaboration in education":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"486 Upgrade 1: Sound Blaster 16":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Personal Desktop Screenshots of Olde":{},"The Internet Killed Secrets in Games":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Programming on the Apple M1 Silicon":{},"Thoughts on Bullshit Jobs":{},"Archive by year: 2020":{},"Digitizing journals using DEVONthink":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The Productive Programmer on Mac":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"My Retro Desk/Gaming Setup in 2021":{},"The insanity of collecting retro games":{},"How to write academic papers in Markdown":{},"You Shouldn't Use Spotify":{},"Getting rid of trackers using LineageOS":{},"Lousy Wordpress Hacking Attempts detected":{},"Teaching students about coding trends":{},"The IndieWeb Mixed Bag":{},"Discord killed support for WinXP":{},"Exploring the Go programming language":{},"Stop limiting yourself to JS in browsers":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"On Manuscript Review Procedures":{},"Host your own webmention receiver":{},"Re: Is collecting physical games worth it?":{},"Social Debt in Development Teams":{},"Academese Gems":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"Why I like Pawn Stars":{},"YouTube Play Image Links in Hugo":{},"Apple's App Store Design Mistake":{},"Double-dipping and Market Prices":{},"The Fridge, Your Inoculation Room":{},"How Much Should I Spend On Magic The Gathering":{},"Reducing Workflow Load Facilitates Writing":{},"Rules of a Creator's Life":{},"The Decline of Battery Life":{},"Water Levels As Public Data":{},"What if Seneca wasn't Nero's advisor?":{},"Cheese cheese cheese cheese cheese":{},"Emotional Magic":{},"Kotlin Is Java 2.0, But It's Still Java":{},"Pinball Machines in a Jenever Museum":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Favorite Game Meme":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{},"A Triumph For Blogging":{},"Are Digital Gardens Blogs?":{},"Ditch Scrum, Organize As You See Fit":{},"Very Old and Somewhat Old Mood Boards":{},"Power Usage Effectiveness":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"A Treatise on Leavened Waffles":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"From Analog Notebook to Digital Vault":{},"How Not To Do A Remaster":{},"Migrating from Mailchimp to Listmonk":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"Three Little GameCube Mods":{},"Why Mastodon Isn't Great For Serendipity":{},"Archive by year: 2021":{},"Dark Age of Camelot in 2022":{},"December 2021 In Review":{},"Generating a Blogroll With OPML in Hugo":{},"A Factor Analysis For Dummies in R":{},"Minimalism and Tidying Up":{},"Natural Gas Prices and The Energy Market":{},"Re: Writing A Book Is Nonesense":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"2021 Year In Review":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"Once Upon a Time in Shaolin":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{},"What a Night Cam Is Good For":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Academic Lineage":{},"An Ad Leaflet QR Design Mistake":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{},"Fighting Webmention And Pingback Spam":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{},"True Backlink Support in Hugo":{},"Archive by year: 2022":{},"Freshly Baked Thoughts":{}},"tags":{}}],["0",{"_index":516,"title":{},"content":{"undefined":{},"Custom Webdriver Page Factories":{},"A Ph.D. Thesis Proposal":{},"Unit Testing PicoBlaze Assembly files":{},"3D Software Rendering on the GBA":{},"YouTube Play Image Links in Hugo":{},"True Backlink Support in Hugo":{}},"tags":{}}],["0.0.0.0",{"_index":10726,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["0.0.0.0:1965",{"_index":7347,"title":{},"content":{"Using Hugo to Launch a Gemini Capsule":{}},"tags":{}}],["0.001128",{"_index":6870,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["0.017",{"_index":10431,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.018",{"_index":10443,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.019",{"_index":10428,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.021",{"_index":10445,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.035",{"_index":10444,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.036",{"_index":10427,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.041",{"_index":10441,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.1",{"_index":5403,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["0.18",{"_index":10433,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.19",{"_index":10447,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.21",{"_index":10424,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.24",{"_index":10439,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.25",{"_index":10434,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.49",{"_index":10448,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.51",{"_index":10425,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.53",{"_index":10430,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.64",{"_index":10449,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.66",{"_index":10426,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.68",{"_index":10440,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.7",{"_index":5173,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["0.84",{"_index":10409,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["0.92.0",{"_index":10364,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["00",{"_index":11551,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["0000",{"_index":11542,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["001",{"_index":10192,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["007",{"_index":5644,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["01",{"_index":485,"title":{},"content":{"undefined":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["02",{"_index":11552,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["02/2004",{"_index":6204,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["02/2005",{"_index":6227,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["03",{"_index":11554,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["04",{"_index":11556,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["05",{"_index":5421,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["06",{"_index":5418,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["08/2004",{"_index":6209,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["09",{"_index":5918,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["09/2004",{"_index":6218,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["09:30h",{"_index":8374,"title":{},"content":{"Water Levels As Public Data":{}},"tags":{}}],["09:57:47",{"_index":7050,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["1",{"_index":517,"title":{"486 Upgrade 1: Sound Blaster 16":{}},"content":{"undefined":{},"Learning to become a baker":{},"Unit Testing Stored Procedures":{},"Migrating from Extjs to React gradually":{},"Are you handing over enough when inspiring someone?":{},"How to teach kids to program":{},"A samurai learning mindset":{},"Healing creative scars":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"Nuts about local nuts":{},"Hiding Code Complexity":{},"Death to pseudocode?":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"Over het introduceren van bedrijfsethiek":{},"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":{},"Over analoog en digitaal":{},"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":{},"3D Software Rendering on the GBA":{},"Thoughts on collaboration in education":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"486 Upgrade 1: Sound Blaster 16":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"What is Creativity in Software Engineering?":{},"My Retro Desk/Gaming Setup in 2021":{},"You Shouldn't Use Spotify":{},"Exploring the AlterNet":{},"Getting rid of trackers using LineageOS":{},"Teaching students about coding trends":{},"On Manuscript Review Procedures":{},"Host your own webmention receiver":{},"Re: Is collecting physical games worth it?":{},"Software Engineering Is Not Engineering":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"Apple's App Store Design Mistake":{},"Book Number Fourteen":{},"Reducing Workflow Load Facilitates Writing":{},"Rules of a Creator's Life":{},"Water Levels As Public Data":{},"On Selling a Self-published Book":{},"20 Years of Personal Cellphone History":{},"A Note About Footnotes":{},"Creativity Self-Assessment Is Nonsense":{},"Are Digital Gardens Blogs?":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{},"Questionable Game Publishing Methods":{},"Exporting Goodreads to Obsidian":{},"From Analog Notebook to Digital Vault":{},"How Not To Do A Remaster":{},"Allspice Is Not All Spice":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"Three Little GameCube Mods":{},"A Factor Analysis For Dummies in R":{},"Re: Writing A Book Is Nonesense":{},"2021 Year In Review":{},"Thoughts On Home NAS Systems":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"True Backlink Support in Hugo":{}},"tags":{}}],["1,000",{"_index":10827,"title":{},"content":{"Once Upon a Time in Shaolin":{}},"tags":{}}],["1,200",{"_index":9748,"title":{},"content":{"Where Does It Stop?":{}},"tags":{}}],["1,641",{"_index":10462,"title":{},"content":{"Minimalism and Tidying Up":{}},"tags":{}}],["1.0",{"_index":8680,"title":{},"content":{"My Kotlin Rose-Tinted Glasses Broke":{},"Power Usage Effectiveness":{}},"tags":{}}],["1.0/2.0_",{"_index":6359,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["1.1",{"_index":9222,"title":{},"content":{"Power Usage Effectiveness":{},"A Factor Analysis For Dummies in R":{}},"tags":{}}],["1.15",{"_index":10442,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["1.2",{"_index":9338,"title":{},"content":{"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["1.2.html",{"_index":1258,"title":{},"content":{"undefined":{}},"tags":{}}],["1.2066",{"_index":10927,"title":{},"content":{"Water Usage and Prices":{}},"tags":{}}],["1.2m",{"_index":6734,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{}},"tags":{}}],["1.3",{"_index":9220,"title":{},"content":{"Power Usage Effectiveness":{}},"tags":{}}],["1.35ghz",{"_index":6185,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["1.4",{"_index":5964,"title":{},"content":{"Reviving an old 80486 PC":{}},"tags":{}}],["1.44",{"_index":9239,"title":{},"content":{"Power Usage Effectiveness":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["1.472",{"_index":6891,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["1.48",{"_index":10950,"title":{},"content":{"Water Usage and Prices":{}},"tags":{}}],["1.4ghz",{"_index":6170,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["1.5",{"_index":9285,"title":{},"content":{"Questionable Game Publishing Methods":{}},"tags":{}}],["1.6",{"_index":764,"title":{},"content":{"undefined":{}},"tags":{}}],["1.7",{"_index":7229,"title":{},"content":{"Exploring the Go programming language":{}},"tags":{}}],["1.7254",{"_index":10951,"title":{},"content":{"Water Usage and Prices":{}},"tags":{}}],["1.7886",{"_index":10952,"title":{},"content":{"Water Usage and Prices":{}},"tags":{}}],["1.8",{"_index":7230,"title":{},"content":{"Exploring the Go programming language":{}},"tags":{}}],["1.8364",{"_index":10928,"title":{},"content":{"Water Usage and Prices":{}},"tags":{}}],["1.95",{"_index":10945,"title":{},"content":{"Water Usage and Prices":{}},"tags":{}}],["1.amazonaws.com/product",{"_index":6639,"title":{},"content":{"What is Creativity in Software Engineering?":{}},"tags":{}}],["1.jpg",{"_index":5402,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["1.method(\"+\").unbind().bind(1).call(2",{"_index":1174,"title":{},"content":{"undefined":{}},"tags":{}}],["1.method(:+).cal",{"_index":1171,"title":{},"content":{"undefined":{}},"tags":{}}],["1.methods.each{|x",{"_index":1186,"title":{},"content":{"undefined":{}},"tags":{}}],["1/+1",{"_index":8530,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["1/2",{"_index":9342,"title":{},"content":{"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["1/3th",{"_index":6912,"title":{},"content":{"Always have a Diaster Recovery Plan":{}},"tags":{}}],["10",{"_index":484,"title":{},"content":{"undefined":{},"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"Development principles in cooking":{},"Healing creative scars":{},"Hiding Code Complexity":{},"Take your time.":{},"Over tijdsbesef":{},"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":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Discord killed support for WinXP":{},"Exploring the Go programming language":{},"Moon Logic":{},"Flea Market Season":{},"Double-dipping and Market Prices":{},"On Tea Prices":{},"Parking Machines Design Mistakes":{},"Very Old and Somewhat Old Mood Boards":{},"The Emperor of Lists":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Natural Gas Prices and The Energy Market":{},"On Trying To Sell A Laptop":{},"Water Usage and Prices":{},"Creativity Equals Messy Code?":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["10\"_",{"_index":4393,"title":{},"content":{"A Decade in the Software Engineering industry":{}},"tags":{}}],["10.0",{"_index":7207,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["10.000",{"_index":2332,"title":{},"content":{"Teaching yourself to draw":{},"Over tijdsbesef":{}},"tags":{}}],["10.10",{"_index":5431,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["100",{"_index":295,"title":{},"content":{"On finding your inner zen in big cities":{},"Learning to become a baker":{},"Productivity Tools on all platforms":{},"Over analoog en digitaal":{},"Building an Athlon Windows 98 Retro PC":{},"On Tea Prices":{},"Water Levels As Public Data":{},"On Selling a Self-published Book":{},"Ditch Scrum, Organize As You See Fit":{},"A 5.25\" Gobliins 2 Surprise":{},"A Treatise on Leavened Waffles":{},"The Emperor of Lists":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"Water Usage and Prices":{},"February 2022 In Review":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["1000",{"_index":2850,"title":{},"content":{"Nuts about local nuts":{},"November 2021 Meta Post":{},"Natural Gas Prices and The Energy Market":{},"Choosing an Audio Codec":{}},"tags":{}}],["100000",{"_index":1435,"title":{},"content":{"undefined":{}},"tags":{}}],["1000d",{"_index":8763,"title":{},"content":{"20 Years of Personal Cellphone History":{}},"tags":{}}],["105",{"_index":7531,"title":{},"content":{"Re: Is collecting physical games worth it?":{}},"tags":{}}],["106",{"_index":7538,"title":{},"content":{"Re: Is collecting physical games worth it?":{}},"tags":{}}],["108",{"_index":6339,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["1080p",{"_index":4601,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["108942",{"_index":10834,"title":{},"content":{"Once Upon a Time in Shaolin":{}},"tags":{}}],["10](https://www.pcgamer.com/th",{"_index":7472,"title":{},"content":{"Moon Logic":{}},"tags":{}}],["10`/month",{"_index":6875,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["10k",{"_index":2343,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["10th",{"_index":9937,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["11",{"_index":542,"title":{"Combining async with generators in Node 11":{}},"content":{"undefined":{},"Unit Testing Stored Procedures":{},"A Ph.D. Thesis: Iteration 2":{},"Combining async with generators in Node 11":{},"On Manuscript Review Procedures":{},"How Much Should I Spend On Magic The Gathering":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Three Little GameCube Mods":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["11.1",{"_index":6437,"title":{},"content":{"Programming on the Apple M1 Silicon":{}},"tags":{}}],["114",{"_index":6945,"title":{},"content":{"Exploring the AlterNet":{}},"tags":{}}],["11:01h",{"_index":8377,"title":{},"content":{"Water Levels As Public Data":{}},"tags":{}}],["11be9bb99d35",{"_index":6485,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["12",{"_index":4193,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"Combining async with generators in Node 11":{},"Tracking and privacy concerns on websites":{},"Reviving an old 80486 PC":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Apple's App Store Design Mistake":{},"The Fridge, Your Inoculation Room":{},"On Tea Prices":{},"Very Old and Somewhat Old Mood Boards":{},"The Emperor of Lists":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["12.1",{"_index":9945,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["12.50",{"_index":10484,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["120",{"_index":2213,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["1200",{"_index":8746,"title":{},"content":{"20 Years of Personal Cellphone History":{}},"tags":{}}],["120w",{"_index":10886,"title":{},"content":{"Thoughts On Home NAS Systems":{}},"tags":{}}],["127",{"_index":11324,"title":{},"content":{"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["128",{"_index":6325,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{},"Choosing an Audio Codec":{}},"tags":{}}],["12v",{"_index":5815,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{}},"tags":{}}],["13",{"_index":4967,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"A journey through the history of webdesign":{},"Programming on the Apple M1 Silicon":{},"Book Number Fourteen":{},"The Monthly Retro Screenshot Guessing Quiz":{},"How To Enjoy Your Own Digital Music":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["13.5",{"_index":5788,"title":{},"content":{"An am486 Performance Analysis":{}},"tags":{}}],["133868",{"_index":7652,"title":{},"content":{"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["138c5efd45e9#.aul09q3wr",{"_index":2311,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["13hr",{"_index":2869,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["14",{"_index":7649,"title":{},"content":{"Belgium - Portugal: 5 - 2":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["14/07",{"_index":8370,"title":{},"content":{"Water Levels As Public Data":{}},"tags":{}}],["140",{"_index":6698,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["141",{"_index":7486,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["1441.2",{"_index":11195,"title":{},"content":{"Choosing an Audio Codec":{}},"tags":{}}],["146.59.146.120:80",{"_index":7059,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["14th",{"_index":7999,"title":{},"content":{"Book Number Fourteen":{},"Water Levels As Public Data":{}},"tags":{}}],["15",{"_index":3937,"title":{},"content":{"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Project Warlock: About Perseverance":{},"You Shouldn't Use Spotify":{},"How Much Should I Spend On Magic The Gathering":{},"Rules of a Creator's Life":{},"The Lost Art of Being Lost":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Leuchtturm Notebook Paper Quality":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["15/07",{"_index":8373,"title":{},"content":{"Water Levels As Public Data":{}},"tags":{}}],["150",{"_index":10199,"title":{},"content":{"Three Little GameCube Mods":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["1599",{"_index":9856,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["15](https://www.stefanimhoff.de/links/bundl",{"_index":11379,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["15th",{"_index":8333,"title":{},"content":{"Water Levels As Public Data":{}},"tags":{}}],["16",{"_index":5655,"title":{"486 Upgrade 1: Sound Blaster 16":{}},"content":{"3D Software Rendering on the GBA":{},"486 Upgrade 1: Sound Blaster 16":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Questionable Game Publishing Methods":{},"The Lost Art of Being Lost":{},"A 5.25\" Gobliins 2 Surprise":{},"The Monthly Retro Screenshot Guessing Quiz":{},"My Retrocomputing Projects For 2022":{},"Choosing an Audio Codec":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["16.44",{"_index":10878,"title":{},"content":{"Thoughts On Home NAS Systems":{}},"tags":{}}],["160",{"_index":6780,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["1620",{"_index":9811,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["162453#162453",{"_index":7051,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["1643",{"_index":2523,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["16_",{"_index":6363,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["16mhz",{"_index":5630,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["17",{"_index":6746,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Getting rid of trackers using LineageOS":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Three Little GameCube Mods":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["17.5",{"_index":10692,"title":{},"content":{"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["170",{"_index":10552,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["1717",{"_index":11131,"title":{},"content":{"Academic Lineage":{}},"tags":{}}],["1790099958",{"_index":6516,"title":{},"content":{"Digitizing journals using DEVONthink":{}},"tags":{}}],["179870",{"_index":7052,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["179871",{"_index":7060,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["179872",{"_index":7062,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["179873",{"_index":7063,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["179874",{"_index":7065,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["179875",{"_index":7068,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["179876",{"_index":7069,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["179877",{"_index":7071,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["179878",{"_index":7073,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["17h",{"_index":267,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["18",{"_index":4965,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"How Much Should I Spend On Magic The Gathering":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Dark Age of Camelot in 2022":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["1829874126",{"_index":5389,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["1836",{"_index":9693,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["1850",{"_index":9392,"title":{},"content":{"A Treatise on Leavened Waffles":{},"Creative Critical Thinking":{}},"tags":{}}],["18698",{"_index":8203,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["1890",{"_index":8839,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{}},"tags":{}}],["1893",{"_index":9447,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["18eur",{"_index":6398,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["19",{"_index":6587,"title":{},"content":{"The Productive Programmer on Mac":{},"My Retro Desk/Gaming Setup in 2021":{},"Flea Market Season":{},"Dear Student":{},"Power Usage Effectiveness":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["190",{"_index":11181,"title":{},"content":{"Choosing an Audio Codec":{}},"tags":{}}],["1917](https://www.leuchtturm1917.d",{"_index":8022,"title":{},"content":{"Book Number Fourteen":{}},"tags":{}}],["192",{"_index":11178,"title":{},"content":{"Choosing an Audio Codec":{}},"tags":{}}],["192.168.1.1",{"_index":10731,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["192.168.1.11",{"_index":1411,"title":{},"content":{"undefined":{}},"tags":{}}],["1950",{"_index":4013,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["1965",{"_index":7349,"title":{},"content":{"Using Hugo to Launch a Gemini Capsule":{}},"tags":{}}],["1975",{"_index":5724,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["1979",{"_index":4216,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["1983",{"_index":7782,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["1986)die(@md5(hellothinkcmf))hellomor",{"_index":5506,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["article](/post/2020/05/us",{"_index":6830,"title":{},"content":{"How to write academic papers in Markdown":{}},"tags":{}}],["article](https://www.nintendolife.com/news/2021/02/soapbox_retro_nintendo_games_cost_too_much_but_nostalgia_is_expens",{"_index":6782,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["articlecalcul",{"_index":1758,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["articledatabas",{"_index":1760,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["articlemanag",{"_index":1762,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["articlemanagertest",{"_index":1757,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["artifact",{"_index":6051,"title":{},"content":{"A journey through the history of webdesign":{},"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["artifici",{"_index":3525,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["artikel",{"_index":3977,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["artist",{"_index":3071,"title":{},"content":{"2017 in books":{},"Project Warlock: About Perseverance":{},"You Shouldn't Use Spotify":{},"Rules of a Creator's Life":{},"Emotional Magic":{},"Creativity Self-Assessment Is Nonsense":{},"Constraint-based Creativity":{},"How To Enjoy Your Own Digital Music":{},"A Personal Intro To Gentle Hip-Hop":{},"Equality in Game Credits":{}},"tags":{}}],["artist'",{"_index":3068,"title":{},"content":{"2017 in books":{}},"tags":{}}],["artist.jpg",{"_index":8526,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["artist_](https://scryfall.com/card/jmp/206/blood",{"_index":8525,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["artista_",{"_index":11438,"title":{},"content":{"Equality in Game Credits":{}},"tags":{}}],["artistri",{"_index":3025,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["artwork",{"_index":2356,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["as",{"_index":10422,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["ascii",{"_index":7355,"title":{},"content":{"Using Hugo to Launch a Gemini Capsule":{}},"tags":{}}],["asham",{"_index":10590,"title":{},"content":{"Why I Play Games (And So Should You)":{}},"tags":{}}],["ashor",{"_index":9684,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["asia",{"_index":2864,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["asian",{"_index":2604,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["asid",{"_index":8059,"title":{},"content":{"Double-dipping and Market Prices":{},"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["asimov",{"_index":4287,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["ask",{"_index":367,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Unit Testing Stored Procedures":{},"Unit testing in Legacy Projects: VB6":{},"Are you handing over enough when inspiring someone?":{},"A quick look at 6 fountain pens":{},"Inventing - for the worse?":{},"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":{},"Thoughts on Bullshit Jobs":{},"The Productive Programmer on Mac":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"How to write academic papers in Markdown":{},"The first Dutch Obsidian meetup":{},"Re: Is collecting physical games worth it?":{},"Software Engineering Is Not Engineering":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"Double-dipping and Market Prices":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Are You In The System Yet, Sir?":{},"Parking Machines Design Mistakes":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Power Usage Effectiveness":{},"Questionable Game Publishing Methods":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Technical Knowledge Brews Creativity":{},"A Factor Analysis For Dummies in R":{},"Re: Writing A Book Is Nonesense":{},"Woke in Class":{},"A Personal Intro To Gentle Hip-Hop":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["asleep",{"_index":7248,"title":{},"content":{"Stop limiting yourself to JS in browsers":{},"What a Night Cam Is Good For":{}},"tags":{}}],["aspect",{"_index":3556,"title":{},"content":{"Computer Science learning pathways":{},"Five reasons why agile and academia don't go together":{},"On Manuscript Review Procedures":{},"The Pilot Capless: a stellar stealth pen":{},"The Creative Techniques Toolbox":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["aspx",{"_index":2046,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["ass",{"_index":3235,"title":{},"content":{"Concentrating on serendipitous creativity":{},"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["assassin'",{"_index":3047,"title":{},"content":{"2017 in books":{}},"tags":{}}],["assembl",{"_index":4624,"title":{"Unit Testing PicoBlaze Assembly files":{}},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{"Unit Testing PicoBlaze Assembly files":{}}}],["assert",{"_index":1239,"title":{},"content":{"undefined":{},"Unit Testing Extjs UI with Siesta":{},"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["assert.that",{"_index":2265,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["assert_that",{"_index":4666,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["assert_that.reg(\"s5\").contains(3",{"_index":4670,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["assess",{"_index":4626,"title":{"Creativity Self-Assessment Is Nonsense":{}},"content":{"Unit Testing PicoBlaze Assembly files":{},"Thoughts on collaboration in education":{},"Why I like Pawn Stars":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["asset",{"_index":10038,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["assign",{"_index":1068,"title":{},"content":{"undefined":{},"Enhancing the builder pattern with closures":{},"Death to pseudocode?":{},"ITiCSE 2020: A Report":{},"Very Old and Somewhat Old Mood Boards":{},"Academic Lineage":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["assimil",{"_index":2572,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["assist",{"_index":5740,"title":{},"content":{"Thoughts on collaboration in education":{},"Seneca on How to Live":{},"Academic Lineage":{},"Equality in Game Credits":{}},"tags":{}}],["associ",{"_index":2915,"title":{},"content":{"I'm jealous of my dog":{},"Reverse engineering a curriculum":{}},"tags":{}}],["assum",{"_index":2659,"title":{},"content":{"Healing creative scars":{},"How Much Should I Spend On Magic The Gathering":{},"Constraint-based Creativity":{}},"tags":{}}],["assumpt",{"_index":2384,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["assur",{"_index":9503,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["assword",{"_index":1438,"title":{},"content":{"undefined":{}},"tags":{}}],["asterix",{"_index":5646,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["astonish",{"_index":4401,"title":{},"content":{"A Decade in the Software Engineering industry":{},"Reviving an old 80486 PC":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["async",{"_index":2044,"title":{"Combining async with generators in Node 11":{}},"content":{"Unit Testing Extjs UI with Siesta":{},"Are you handing over enough when inspiring someone?":{},"Combining async with generators in Node 11":{}},"tags":{}}],["asynchron",{"_index":5435,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["at",{"_index":961,"title":{},"content":{"Learning to become a baker":{}},"tags":{}}],["at](https://www.goodreads.com/user/year_in_books/2017/5451893",{"_index":3032,"title":{},"content":{"2017 in books":{}},"tags":{}}],["athen",{"_index":8407,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{},"Creative Critical Thinking":{}},"tags":{}}],["athenian",{"_index":9472,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["athlon",{"_index":6057,"title":{"Building an Athlon Windows 98 Retro PC":{}},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["ati",{"_index":6677,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["atlantic](https://www.theatlantic.com/education/archive/2015/10/complex",{"_index":7613,"title":{},"content":{"Academese Gems":{}},"tags":{}}],["atmospher",{"_index":8867,"title":{},"content":{"Favorite Game Meme":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Seneca on How to Live":{},"Equality in Game Credits":{}},"tags":{}}],["attach",{"_index":1496,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"486 Upgrade 1: Sound Blaster 16":{},"Flea Market Season":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"How To Enjoy Your Own Digital Music":{},"How to setup Pi-Hole on a Synology NAS":{},"Equality in Game Credits":{}},"tags":{}}],["attack",{"_index":5154,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Lousy Wordpress Hacking Attempts detected":{},"Nineties collecting nostalgia":{},"A Treatise on Leavened Waffles":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["attempt",{"_index":2025,"title":{"Lousy Wordpress Hacking Attempts detected":{}},"content":{".NET Memory management VS JVM Memory management":{},"How to teach kids to program":{},"Take your time.":{},"Using Pandoc to publish a book":{},"3D Software Rendering on the GBA":{},"Thoughts on collaboration in education":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Always have a Diaster Recovery Plan":{},"Discord killed support for WinXP":{},"20 Years of Personal Cellphone History":{},"The HP Sprocket Mini Printer":{},"Very Old and Somewhat Old Mood Boards":{},"Constraint-based Creativity":{},"Exporting Goodreads to Obsidian":{},"Migrating from Mailchimp to Listmonk":{},"December 2021 In Review":{},"Woke in Class":{},"Academic Lineage":{},"Fighting Webmention And Pingback Spam":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{},"True Backlink Support in Hugo":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["attend",{"_index":136,"title":{},"content":{"Ending your day with happy thoughts":{},"The Productive Programmer on Mac":{},"Exploring the Go programming language":{},"Dear Student":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["attent",{"_index":1711,"title":{},"content":{"Integration Testing with SQLite":{},"Development principles in cooking":{},"Nuts about local nuts":{},"I'm jealous of my dog":{},"Reverse engineering a curriculum":{},"Project Warlock: About Perseverance":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"486 Upgrade 1: Sound Blaster 16":{},"The Internet Killed Secrets in Games":{},"The Productive Programmer on Mac":{},"My Retro Desk/Gaming Setup in 2021":{},"The IndieWeb Mixed Bag":{},"Emotional Magic":{},"20 Years of Personal Cellphone History":{},"Favorite Game Meme":{},"Collective Creativity":{},"Dear Student":{},"Questionable Game Publishing Methods":{},"A Treatise on Leavened Waffles":{},"Exporting Goodreads to Obsidian":{},"2021 Donations":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Technical Knowledge Brews Creativity":{},"Woke in Class":{},"2021 Year In Review":{},"Academic Lineage":{},"Creativity Equals Messy Code?":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["attic",{"_index":10975,"title":{},"content":{"What a Night Cam Is Good For":{}},"tags":{}}],["attract",{"_index":5537,"title":{},"content":{"ITiCSE 2020: A Report":{},"On Selling a Self-published Book":{},"Collective Creativity":{},"Dear Student":{},"Creative Critical Thinking":{},"Exporting Goodreads to Obsidian":{}},"tags":{}}],["attribut",{"_index":1907,"title":{},"content":{"Custom Webdriver Page Factories":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Creativity Self-Assessment Is Nonsense":{},"Collective Creativity":{},"Creative Critical Thinking":{},"Generating a Blogroll With OPML in Hugo":{},"2021 Year In Review":{},"My Retrocomputing Projects For 2022":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["attribute.getcustomattributes(field",{"_index":1917,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["atx",{"_index":6156,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["atyp",{"_index":11417,"title":{},"content":{"Equality in Game Credits":{}},"tags":{}}],["aub",{"_index":828,"title":{},"content":{"undefined":{}},"tags":{}}],["audibl",{"_index":11395,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["audienc",{"_index":5551,"title":{},"content":{"ITiCSE 2020: A Report":{},"Academese Gems":{},"Creative Critical Thinking":{},"Woke in Class":{}},"tags":{}}],["audigi",{"_index":6303,"title":{"Win98 Upgrade: Sound Blaster Audigy":{}},"content":{"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["audigy.jpg",{"_index":6351,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["audio",{"_index":6316,"title":{"Choosing an Audio Codec":{}},"content":{"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"A 5.25\" Gobliins 2 Surprise":{},"Three Little GameCube Mods":{},"How To Enjoy Your Own Digital Music":{},"Once Upon a Time in Shaolin":{},"Choosing an Audio Codec":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["audiopci",{"_index":6313,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["audiopci](https://en.wikipedia.org/wiki/sound_blaster#ensoniq_audiopci",{"_index":6307,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["audiophil",{"_index":6850,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["augment",{"_index":6952,"title":{},"content":{"Exploring the AlterNet":{}},"tags":{}}],["august",{"_index":2692,"title":{},"content":{"Healing creative scars":{},"On Manuscript Review Procedures":{},"Book Number Fourteen":{}},"tags":{}}],["aureliu",{"_index":8410,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{},"The Creative Techniques Toolbox":{},"Expiry Dates On Journals":{}},"tags":{}}],["aurelius](https://www.goodreads.com/book/show/50484473",{"_index":10759,"title":{},"content":{"January 2022 In Review":{}},"tags":{}}],["austin",{"_index":2498,"title":{},"content":{"How to teach kids to program":{}},"tags":{}}],["australia",{"_index":305,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["auteur",{"_index":4886,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["authent",{"_index":6188,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{},"Rules of a Creator's Life":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["authentiek",{"_index":4555,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["author",{"_index":3528,"title":{},"content":{"Computer Science learning pathways":{},"A Ph.D. Thesis: Iteration 2":{},"Using Pandoc to publish a book":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"The IndieWeb Mixed Bag":{},"A Note About Footnotes":{},"A Creative State of Mind":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Re: Writing A Book Is Nonesense":{},"Equality in Game Credits":{}},"tags":{}}],["auto",{"_index":1476,"title":{},"content":{"undefined":{},"486 Upgrade 2: The SD Card HDD":{},"Reviving an old 80486 PC":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"Reducing Workflow Load Facilitates Writing":{},"How Not To Do A Remaster":{},"Generating a Blogroll With OPML in Hugo":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["auto'",{"_index":3376,"title":{},"content":{"Over entropie":{}},"tags":{}}],["auto_",{"_index":10594,"title":{},"content":{"Why I Play Games (And So Should You)":{}},"tags":{}}],["auto_ptrn",{"_index":625,"title":{},"content":{"undefined":{}},"tags":{}}],["br/>patienc",{"_index":11637,"title":{},"content":{"Freshly Baked Thoughts":{}},"tags":{}}],["br/>r",{"_index":1443,"title":{},"content":{"undefined":{}},"tags":{}}],["br/>teach",{"_index":2330,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["brabant",{"_index":8710,"title":{},"content":{"Thirty-Six":{}},"tags":{}}],["bracket",{"_index":3500,"title":{},"content":{"Teaching by philosophy":{},"486 Upgrade 2: The SD Card HDD":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["bradley'",{"_index":2305,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["brag",{"_index":10997,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{},"Equality in Game Credits":{}},"tags":{}}],["brain",{"_index":2463,"title":{},"content":{"How to teach kids to program":{},"I'm jealous of my dog":{},"2017 in books":{},"Take your time.":{},"Hugo Extended: More static site processing power!":{},"Combining async with generators in Node 11":{},"Designing websites with accessibility in mind":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"Thirty-Six":{},"Are Digital Gardens Blogs?":{},"Power Usage Effectiveness":{},"Exporting Goodreads to Obsidian":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Generating a Blogroll With OPML in Hugo":{},"Winnie Lim on Rebuilding Oneself":{},"2021 Year In Review":{},"Cool Things People Do With Their Blogs":{},"March 2022 In Review":{},"True Backlink Support in Hugo":{},"Wax Seals And Snail Mail":{},"Freshly Baked Thoughts":{}},"tags":{}}],["brainbaking.com",{"_index":10735,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["braindump",{"_index":336,"title":{},"content":{"Journaling in practice":{}},"tags":{"On finding your inner zen in big cities":{},"Learning to become a baker":{},"What a Night Cam Is Good For":{}}}],["branch",{"_index":5117,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Programming on the Apple M1 Silicon":{},"Are Digital Gardens Blogs?":{}},"tags":{}}],["brand",{"_index":2874,"title":{},"content":{"Nuts about local nuts":{},"DIY: Hosting stuff on your own VPS":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Nineties collecting nostalgia":{},"Double-dipping and Market Prices":{},"On Tea Prices":{},"Favorite Game Meme":{},"A 5.25\" Gobliins 2 Surprise":{},"Dark Age of Camelot in 2022":{}},"tags":{}}],["braqu",{"_index":9098,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["braque'",{"_index":9460,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["brave",{"_index":10557,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["brawler",{"_index":11404,"title":{},"content":{"Equality in Game Credits":{}},"tags":{}}],["brazil",{"_index":7554,"title":{},"content":{"Re: Is collecting physical games worth it?":{}},"tags":{}}],["brazilian",{"_index":7679,"title":{},"content":{"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["breach",{"_index":6142,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["bread",{"_index":915,"title":{},"content":{"Learning to become a baker":{},"Domain Driven Design in C":{},"Using Pandoc to publish a book":{},"Lousy Wordpress Hacking Attempts detected":{},"The Fridge, Your Inoculation Room":{},"On Selling a Self-published Book":{},"Very Old and Somewhat Old Mood Boards":{},"Creative Critical Thinking":{},"The Emperor of Lists":{},"Where Does It Stop?":{},"March 2022 In Review":{},"Wax Seals And Snail Mail":{}},"tags":{"Learning to become a baker":{},"The Fridge, Your Inoculation Room":{}}}],["bread](/post/2021/08/on",{"_index":8785,"title":{},"content":{"A Note About Footnotes":{}},"tags":{}}],["bread](http://www.redzuurdesem.b",{"_index":250,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["break",{"_index":1658,"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":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"Social Debt in Development Teams":{},"Flea Market Season":{},"Why I like Pawn Stars":{},"Reducing Workflow Load Facilitates Writing":{},"Rules of a Creator's Life":{},"Cheese cheese cheese cheese cheese":{},"A Triumph For Blogging":{},"A Creative State of Mind":{},"Three Little GameCube Mods":{},"What a Night Cam Is Good For":{},"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["breakdown",{"_index":6504,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["breaker",{"_index":10032,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["breakfast",{"_index":3051,"title":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"content":{"2017 in books":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["breakpoint",{"_index":1574,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["breath",{"_index":5134,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Project Warlock: About Perseverance":{},"The Lost Art of Being Lost":{},"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["brengen",{"_index":3642,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["brengt",{"_index":3733,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["bresenham",{"_index":5671,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["brethren",{"_index":11342,"title":{},"content":{"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["breviti",{"_index":10870,"title":{},"content":{"Thoughts On Home NAS Systems":{}},"tags":{}}],["brew",{"_index":6456,"title":{"Technical Knowledge Brews Creativity":{}},"content":{"Programming on the Apple M1 Silicon":{}},"tags":{}}],["brexit",{"_index":9319,"title":{},"content":{"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["brian",{"_index":10853,"title":{},"content":{"My Retrocomputing Projects For 2022":{}},"tags":{}}],["brick",{"_index":2399,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"The Decline of Battery Life":{},"20 Years of Personal Cellphone History":{}},"tags":{}}],["brick_",{"_index":8731,"title":{},"content":{"20 Years of Personal Cellphone History":{}},"tags":{}}],["bridg",{"_index":4941,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Water Levels As Public Data":{},"March 2022 In Review":{}},"tags":{}}],["bridge](https://developer.android.com/studio/command",{"_index":7028,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["bridger](https://www.strifestreams.com",{"_index":8988,"title":{},"content":{"A Triumph For Blogging":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["brief",{"_index":4395,"title":{},"content":{"A Decade in the Software Engineering industry":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["briefli",{"_index":5539,"title":{},"content":{"ITiCSE 2020: A Report":{},"20 Years of Personal Cellphone History":{}},"tags":{}}],["bright",{"_index":2652,"title":{},"content":{"Healing creative scars":{},"The Decline of Battery Life":{},"Three Little GameCube Mods":{}},"tags":{}}],["brighten",{"_index":9034,"title":{},"content":{"Are Digital Gardens Blogs?":{}},"tags":{}}],["brillianc",{"_index":4966,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["brilliant",{"_index":6044,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["brim",{"_index":8353,"title":{},"content":{"Water Levels As Public Data":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["bring",{"_index":1502,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"How to teach kids to program":{},"Inventing - for the worse?":{},"Concentrating on serendipitous creativity":{},"Teaching Object-Oriented design using the GBA":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"Are You In The System Yet, Sir?":{},"Are Digital Gardens Blogs?":{},"November 2021 Meta Post":{},"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["brioch",{"_index":9844,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["brit",{"_index":7116,"title":{},"content":{"Teaching students about coding trends":{},"From Curiosity To Creativity":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["british",{"_index":10669,"title":{},"content":{"2021 Year In Review":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["brittl",{"_index":9355,"title":{},"content":{"A 5.25\" Gobliins 2 Surprise":{},"The Emperor of Lists":{}},"tags":{}}],["brizi",{"_index":5231,"title":{"Page Building with Brizy in Wordpress":{}},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{"Page Building with Brizy in Wordpress":{}}}],["brizy'",{"_index":5261,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["broad",{"_index":2743,"title":{},"content":{"A quick look at 6 fountain pens":{},"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["broaden",{"_index":2656,"title":{},"content":{"Healing creative scars":{},"2021 Year In Review":{}},"tags":{}}],["broader",{"_index":3860,"title":{},"content":{"Reverse engineering a curriculum":{},"ITiCSE 2020: A Report":{},"Academic Lineage":{}},"tags":{}}],["broadsword",{"_index":10299,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["broke",{"_index":112,"title":{"My Kotlin Rose-Tinted Glasses Broke":{}},"content":{"Ending your day with happy thoughts":{},"486 Upgrade 2: The SD Card HDD":{},"Why I like Pawn Stars":{},"My Kotlin Rose-Tinted Glasses Broke":{},"The HP Sprocket Mini Printer":{},"Very Old and Somewhat Old Mood Boards":{},"Winnie Lim on Rebuilding Oneself":{},"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["broken",{"_index":3007,"title":{},"content":{"Inventing - for the worse?":{},"Hugo Extended: More static site processing power!":{},"486 Upgrade 2: The SD Card HDD":{},"Flea Market Season":{},"On Tea Prices":{},"Minimalism and Tidying Up":{},"Why I Play Games (And So Should You)":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["bron",{"_index":1195,"title":{},"content":{"undefined":{}},"tags":{}}],["bron](http://nixcraft.com/shel",{"_index":1446,"title":{},"content":{"undefined":{}},"tags":{}}],["bron_",{"_index":5004,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["bronson",{"_index":8262,"title":{},"content":{"Rules of a Creator's Life":{}},"tags":{}}],["bronzen",{"_index":4014,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["brother",{"_index":6402,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{},"The insanity of collecting retro games":{},"Where Does It Stop?":{},"A Personal Intro To Gentle Hip-Hop":{},"Expiry Dates On Journals":{}},"tags":{}}],["brought",{"_index":4714,"title":{},"content":{"IT Competences and Certificates":{},"Thoughts on collaboration in education":{},"Building an Athlon Windows 98 Retro PC":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Belgium - Portugal: 5 - 2":{},"Reducing Workflow Load Facilitates Writing":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Are You In The System Yet, Sir?":{},"2021 Donations":{},"The Creative Techniques Toolbox":{},"Academic Lineage":{},"Equality in Game Credits":{}},"tags":{}}],["brown",{"_index":3321,"title":{},"content":{"Thinking in terms of objects":{},"Allspice Is Not All Spice":{}},"tags":{}}],["brows",{"_index":2162,"title":{},"content":{"Webdriver Exception Handling":{},"2017 in books":{},"Death to pseudocode?":{},"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{},"A journey through the history of webdesign":{},"You Shouldn't Use Spotify":{},"The Monthly Retro Screenshot Guessing Quiz":{},"My Retrocomputing Projects For 2022":{},"Freshly Baked Thoughts":{}},"tags":{}}],["browser",{"_index":3257,"title":{"Stop limiting yourself to JS in browsers":{}},"content":{"Death to pseudocode?":{},"Productivity Tools on all platforms":{},"Hugo Extended: More static site processing power!":{},"Designing websites with accessibility in mind":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Exploring the AlterNet":{},"Discord killed support for WinXP":{},"Stop limiting yourself to JS in browsers":{},"Generating a Blogroll With OPML in Hugo":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["browser.org",{"_index":7186,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["browser/cli",{"_index":7353,"title":{},"content":{"Using Hugo to Launch a Gemini Capsule":{}},"tags":{}}],["browser](https://rtfreesoft.blogspot.com/2021/04/weekli",{"_index":7193,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["browserifi",{"_index":2187,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["bruce",{"_index":11129,"title":{},"content":{"Academic Lineage":{}},"tags":{}}],["brush",{"_index":9438,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["brussel",{"_index":204,"title":{},"content":{"On finding your inner zen in big cities":{},"A 5.25\" Gobliins 2 Surprise":{},"A Treatise on Leavened Waffles":{}},"tags":{}}],["brute",{"_index":7042,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{},"Moon Logic":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["bryntum",{"_index":2075,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["bsd",{"_index":6240,"title":{},"content":{"Personal Desktop Screenshots of Olde":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["bu",{"_index":5656,"title":{},"content":{"3D Software Rendering on the GBA":{},"486 Upgrade 2: The SD Card HDD":{},"Reviving an old 80486 PC":{},"A Creative State of Mind":{}},"tags":{}}],["bubbel",{"_index":4123,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["bubbl",{"_index":944,"title":{},"content":{"Learning to become a baker":{},"November 2021 Meta Post":{},"The Creative Techniques Toolbox":{},"2021 Year In Review":{}},"tags":{}}],["buckley",{"_index":10749,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["buddhism",{"_index":2944,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["buddhist",{"_index":2936,"title":{},"content":{"I'm jealous of my dog":{},"Where Does It Stop?":{}},"tags":{}}],["budget",{"_index":4861,"title":{},"content":{"De zin en onzin van conferenties":{},"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["buffalo",{"_index":2627,"title":{},"content":{"Development principles in cooking":{},"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["buffer",{"_index":1217,"title":{},"content":{"undefined":{}},"tags":{}}],["buffoon",{"_index":7446,"title":{},"content":{"Moon Logic":{}},"tags":{}}],["buffoon_",{"_index":8916,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["bug",{"_index":2060,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"3D Software Rendering on the GBA":{},"Re: Is collecting physical games worth it?":{},"Favorite Game Meme":{},"How Not To Do A Remaster":{},"November 2021 Meta Post":{}},"tags":{}}],["buggi",{"_index":9718,"title":{},"content":{"How Not To Do A Remaster":{}},"tags":{}}],["buikpijn",{"_index":3388,"title":{},"content":{"Over entropie":{}},"tags":{}}],["build",{"_index":1623,"title":{"Page Building with Brizy in Wordpress":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{}},"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":{},"Thoughts on collaboration in education":{},"An am486 Performance Analysis":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"The Internet Killed Secrets in Games":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Programming on the Apple M1 Silicon":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"How to write academic papers in Markdown":{},"Getting rid of trackers using LineageOS":{},"Stop limiting yourself to JS in browsers":{},"Using Hugo to Launch a Gemini Capsule":{},"Emotional Magic":{},"Pinball Machines in a Jenever Museum":{},"Dear Student":{},"Power Usage Effectiveness":{},"The Lost Art of Being Lost":{},"Exporting Goodreads to Obsidian":{},"How Not To Do A Remaster":{},"A Creative State of Mind":{},"Technical Knowledge Brews Creativity":{},"Why Mastodon Isn't Great For Serendipity":{},"Thoughts On Home NAS Systems":{},"Academic Lineage":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["build ecosystem",{"_index":1867,"title":{},"content":{},"tags":{"Bye autotools hello Scons":{}}}],["build(funcbrain",{"_index":5497,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='fa",{"_index":4809,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["class='icon",{"_index":11640,"title":{},"content":{"Freshly Baked Thoughts":{}},"tags":{}}],["class='link",{"_index":5488,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='meta'>mor",{"_index":5495,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='sect1'>bla",{"_index":5490,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='topbar",{"_index":5487,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='txt",{"_index":5492,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class=\\\"lazylo",{"_index":6577,"title":{},"content":{"RSS Feeds, Hugo, and Lazy Image Loading":{}},"tags":{}}],["class](https://www.vrt.be/vrtnws/nl/2022/01/05/lector",{"_index":10638,"title":{},"content":{"Woke in Class":{}},"tags":{}}],["classes.html",{"_index":1034,"title":{},"content":{"undefined":{}},"tags":{}}],["classes](http://python",{"_index":1032,"title":{},"content":{"undefined":{}},"tags":{}}],["classes](https://www.darkageofcamelot.com/content/class",{"_index":10276,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["classic",{"_index":1608,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Faking domain logic":{},"A Ph.D. Thesis Proposal":{},"The Startup of a Lean Doctorate":{},"Over analoog en digitaal":{},"A Ph.D. Thesis: Iteration 2":{},"486 Upgrade 1: Sound Blaster 16":{},"A journey through the history of webdesign":{},"Building a Core2Duo Windows XP Retro PC":{},"The Internet Killed Secrets in Games":{},"Belgium - Portugal: 5 - 2":{},"Misconceptions about retro gamers":{},"Double-dipping and Market Prices":{},"Kotlin Is Java 2.0, But It's Still Java":{},"Favorite Game Meme":{},"Collective Creativity":{},"A Treatise on Leavened Waffles":{},"The Creative Techniques Toolbox":{},"How To Enjoy Your Own Digital Music":{},"January 2022 In Review":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"February 2022 In Review":{},"March 2022 In Review":{}},"tags":{}}],["classic/)[^3",{"_index":4578,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["classic/mini](https://www.nintendo.com/sup",{"_index":7742,"title":{},"content":{"Misconceptions about retro gamers":{}},"tags":{}}],["classic/vanilla",{"_index":9380,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["classic](https://www.nintendo.com/sup",{"_index":4525,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["classic](https://www.youtube.com/watch?v=onvrovuoxxi",{"_index":11051,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["classroom",{"_index":9118,"title":{},"content":{"Dear Student":{}},"tags":{}}],["classwork",{"_index":3506,"title":{},"content":{"Teaching by philosophy":{}},"tags":{}}],["claud",{"_index":9099,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["claudiu",{"_index":10143,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["claus",{"_index":2128,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["claw'",{"_index":8906,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["claw_",{"_index":8901,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["clay",{"_index":9428,"title":{},"content":{"Constraint-based Creativity":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["clean",{"_index":1827,"title":{},"content":{"Bye autotools hello Scons":{},"Are you handing over enough when inspiring someone?":{},"Death to pseudocode?":{},"Computer Science learning pathways":{},"Reviving an old 80486 PC":{},"Digitizing journals using DEVONthink":{},"Social Debt in Development Teams":{},"The Pilot Capless: a stellar stealth pen":{},"Minimalism and Tidying Up":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["cleaner",{"_index":6500,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["cleanup",{"_index":4331,"title":{},"content":{"Domain Driven Design in C":{},"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["clear",{"_index":1741,"title":{},"content":{"Metaprogramming instead of duplication":{},"A samurai learning mindset":{},"Take your time.":{},"Death to pseudocode?":{},"The Startup of a Lean Doctorate":{},"Thoughts on collaboration in education":{},"Building an Athlon Windows 98 Retro PC":{},"Thoughts on Bullshit Jobs":{},"My Retro Desk/Gaming Setup in 2021":{},"Social Debt in Development Teams":{},"Academese Gems":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"A Note About Footnotes":{},"Why Mastodon Isn't Great For Serendipity":{},"On Trying To Sell A Laptop":{},"Once Upon a Time in Shaolin":{},"Water Usage and Prices":{},"Academic Lineage":{}},"tags":{}}],["clear[^chal",{"_index":9929,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["clearli",{"_index":2511,"title":{},"content":{"A samurai learning mindset":{},"Thinking in terms of objects":{},"The Startup of a Lean Doctorate":{},"Building an Athlon Windows 98 Retro PC":{},"Always have a Diaster Recovery Plan":{},"Academese Gems":{},"Emotional Magic":{},"Thirty-Six":{},"Seneca on How to Live":{},"Winnie Lim on Rebuilding Oneself":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["clearurl",{"_index":6943,"title":{},"content":{"Exploring the AlterNet":{}},"tags":{}}],["clerk",{"_index":8796,"title":{},"content":{"Are You In The System Yet, Sir?":{}},"tags":{}}],["clever",{"_index":2450,"title":{},"content":{"How to teach kids to program":{},"Death to pseudocode?":{},"How Much Should I Spend On Magic The Gathering":{},"Kotlin Is Java 2.0, But It's Still Java":{},"2021 Donations":{},"Choosing an Audio Codec":{}},"tags":{}}],["cleverli",{"_index":5908,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"How Not To Do A Remaster":{}},"tags":{}}],["cli",{"_index":5228,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["cli/ma",{"_index":7977,"title":{},"content":{"Apple's App Store Design Mistake":{}},"tags":{}}],["cli/mas](https://github.com/ma",{"_index":7976,"title":{},"content":{"Apple's App Store Design Mistake":{}},"tags":{}}],["clic",{"_index":8254,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["clich",{"_index":143,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["click",{"_index":459,"title":{},"content":{"No, vegetarians do not eat fish!":{},"undefined":{},"Custom Webdriver Page Factories":{},"Unit Testing Extjs UI with Siesta":{},"Webdriver Exception Handling":{},"Teaching yourself to draw":{},"Designing websites with accessibility in mind":{},"The Internet Killed Secrets in Games":{},"Exploring the AlterNet":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Re: Is collecting physical games worth it?":{},"YouTube Play Image Links in Hugo":{},"A Triumph For Blogging":{},"Ever-increasing Work Email Spam":{},"November 2021 Meta Post":{},"Why Mastodon Isn't Great For Serendipity":{},"Generating a Blogroll With OPML in Hugo":{},"Woke in Class":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["clicked(",{"_index":2236,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["client",{"_index":1306,"title":{},"content":{"Unit Testing Stored Procedures":{},".NET Memory management VS JVM Memory management":{},"Digitizing journals using DEVONthink":{},"Lousy Wordpress Hacking Attempts detected":{},"Power Usage Effectiveness":{},"Where Does It Stop?":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["client/serv",{"_index":2050,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["clifftop",{"_index":10066,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["climat",{"_index":9221,"title":{},"content":{"Power Usage Effectiveness":{}},"tags":{}}],["climb",{"_index":8321,"title":{},"content":{"Water Levels As Public Data":{},"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["cling",{"_index":8306,"title":{},"content":{"The Decline of Battery Life":{},"Collective Creativity":{},"Ditch Scrum, Organize As You See Fit":{},"Expiry Dates On Journals":{}},"tags":{}}],["clion",{"_index":4345,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["clip",{"_index":7310,"title":{},"content":{"The first Dutch Obsidian meetup":{},"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["clipboard",{"_index":6611,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["clo",{"_index":712,"title":{},"content":{"undefined":{}},"tags":{}}],["clock",{"_index":6144,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The Decline of Battery Life":{}},"tags":{}}],["clock](https://www.redbubble.com/i/clock/password",{"_index":10100,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["clockspeed.png",{"_index":6143,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["clone",{"_index":4550,"title":{},"content":{"Over analoog en digitaal":{},"Belgium - Portugal: 5 - 2":{},"Why I Play Games (And So Should You)":{},"February 2022 In Review":{}},"tags":{}}],["close",{"_index":1719,"title":{},"content":{"Integration Testing with SQLite":{},"Faking domain logic":{},"A samurai learning mindset":{},"I'm jealous of my dog":{},"Take your time.":{},"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":{},"ITiCSE 2020: A Report":{},"486 Upgrade 1: Sound Blaster 16":{},"Digitizing journals using DEVONthink":{},"The Fridge, Your Inoculation Room":{},"Rules of a Creator's Life":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Thirty-Six":{},"Power Usage Effectiveness":{},"Dark Age of Camelot in 2022":{},"Generating a Blogroll With OPML in Hugo":{},"Winnie Lim on Rebuilding Oneself":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["closer",{"_index":1660,"title":{},"content":{"Integration Testing with SQLite":{},"Nuts about local nuts":{},"Computer Science learning pathways":{},"IT Competences and Certificates":{},"3D Software Rendering on the GBA":{},"486 Upgrade 2: The SD Card HDD":{},"My Retro Desk/Gaming Setup in 2021":{},"Stop limiting yourself to JS in browsers":{},"Why I like Pawn Stars":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"On Selling a Self-published Book":{},"Parking Machines Design Mistakes":{}},"tags":{}}],["closet",{"_index":6114,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["closur",{"_index":726,"title":{"Enhancing the builder pattern with closures":{}},"content":{"undefined":{}},"tags":{"Enhancing the builder pattern with closures":{}}}],["cloth",{"_index":2985,"title":{},"content":{"Inventing - for the worse?":{},"The Emperor of Lists":{},"From Curiosity To Creativity":{},"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["cloud",{"_index":4936,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Digitizing journals using DEVONthink":{},"Getting rid of trackers using LineageOS":{},"February 2022 In Review":{}},"tags":{}}],["cloud_",{"_index":9246,"title":{},"content":{"Power Usage Effectiveness":{}},"tags":{}}],["cloudflare'",{"_index":5166,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["cloudi",{"_index":10309,"title":{},"content":{"December 2021 In Review":{}},"tags":{}}],["clove",{"_index":9881,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["clr",{"_index":2005,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Exploring the Go programming language":{}},"tags":{".NET Memory management VS JVM Memory management":{}}}],["club",{"_index":232,"title":{},"content":{"On finding your inner zen in big cities":{},"The Productive Programmer on Mac":{},"A Triumph For Blogging":{},"Collective Creativity":{},"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["club_",{"_index":10995,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["clue",{"_index":2521,"title":{},"content":{"A samurai learning mindset":{},"A Decade in the Software Engineering industry":{},"Very Old and Somewhat Old Mood Boards":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["clumsi",{"_index":1851,"title":{},"content":{"Bye autotools hello Scons":{},"Academese Gems":{}},"tags":{}}],["clunk",{"_index":9513,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["clutter",{"_index":2055,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"My Retro Desk/Gaming Setup in 2021":{},"Are Digital Gardens Blogs?":{},"Ever-increasing Work Email Spam":{},"Minimalism and Tidying Up":{}},"tags":{}}],["cm",{"_index":7937,"title":{},"content":{"YouTube Play Image Links in Hugo":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["cmake",{"_index":1863,"title":{},"content":{"Bye autotools hello Scons":{},"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["cmd",{"_index":1368,"title":{},"content":{"undefined":{},"Productivity Tools on all platforms":{},"The Productive Programmer on Mac":{}},"tags":{}}],["cmd+space",{"_index":4362,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["cmdline",{"_index":6452,"title":{},"content":{"Programming on the Apple M1 Silicon":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["cmo",{"_index":5967,"title":{},"content":{"Reviving an old 80486 PC":{}},"tags":{}}],["cname",{"_index":5115,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["co",{"_index":1724,"title":{},"content":{"Integration Testing with SQLite":{},"Once Upon a Time in Shaolin":{},"Academic Lineage":{}},"tags":{}}],["co2",{"_index":9243,"title":{},"content":{"Power Usage Effectiveness":{}},"tags":{}}],["coach",{"_index":3728,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"A Decade in the Software Engineering industry":{}},"tags":{}}],["coachen",{"_index":3731,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["coast",{"_index":8126,"title":{},"content":{"How Much Should I Spend On Magic The Gathering":{},"Emotional Magic":{},"From Curiosity To Creativity":{},"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["coastlin",{"_index":9677,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["coat",{"_index":11388,"title":{},"content":{"Cool Things People Do With Their Blogs":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["cobbl",{"_index":7934,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["cockburn",{"_index":2562,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["code",{"_index":897,"title":{"Hiding Code Complexity":{},"Teaching students about coding trends":{},"Creativity Equals Messy Code?":{}},"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":{},"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"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":{},"Combining async with generators in Node 11":{},"ITiCSE 2020: A Report":{},"3D Software Rendering on the GBA":{},"486 Upgrade 1: Sound Blaster 16":{},"A journey through the history of webdesign":{},"The Productive Programmer on Mac":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Stop limiting yourself to JS in browsers":{},"On Manuscript Review Procedures":{},"Host your own webmention receiver":{},"Social Debt in Development Teams":{},"Software Engineering Is Not Engineering":{},"YouTube Play Image Links in Hugo":{},"Kotlin Is Java 2.0, But It's Still Java":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Creativity Self-Assessment Is Nonsense":{},"The HP Sprocket Mini Printer":{},"Dear Student":{},"Very Old and Somewhat Old Mood Boards":{},"Why Mastodon Isn't Great For Serendipity":{},"December 2021 In Review":{},"Winnie Lim on Rebuilding Oneself":{},"An Ad Leaflet QR Design Mistake":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"How To Stream Your Own Music: Reprise":{},"True Backlink Support in Hugo":{}},"tags":{}}],["code smel",{"_index":1981,"title":{},"content":{},"tags":{"Faking domain logic":{}}}],["code.
a",{"_index":8531,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["control](https://blog.feld.me/posts/2018/01/git",{"_index":11266,"title":{},"content":{"February 2022 In Review":{}},"tags":{}}],["controleert",{"_index":1148,"title":{},"content":{"undefined":{}},"tags":{}}],["controversi",{"_index":10209,"title":{},"content":{"Three Little GameCube Mods":{},"Once Upon a Time in Shaolin":{},"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["convalesc",{"_index":10153,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["conveni",{"_index":6730,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Stop limiting yourself to JS in browsers":{},"Allspice Is Not All Spice":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["convent",{"_index":1647,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Metaprogramming instead of duplication":{},"Journaling in practice":{},"A Ph.D. Thesis: Iteration 2":{},"Five reasons why agile and academia don't go together":{},"Designing websites with accessibility in mind":{},"486 Upgrade 2: The SD Card HDD":{},"What a Night Cam Is Good For":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["converg",{"_index":2730,"title":{},"content":{"A quick look at 6 fountain pens":{},"Five reasons why agile and academia don't go together":{}},"tags":{}}],["convers",{"_index":359,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Are you handing over enough when inspiring someone?":{},"Development principles in cooking":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"How to write academic papers in Markdown":{},"Nineties collecting nostalgia":{},"Are You In The System Yet, Sir?":{},"A Triumph For Blogging":{},"From Curiosity To Creativity":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["conversati",{"_index":3880,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["conversation](https://theconversation.com/th",{"_index":10832,"title":{},"content":{"Once Upon a Time in Shaolin":{}},"tags":{}}],["convert",{"_index":622,"title":{},"content":{"undefined":{},"Unit testing in Legacy Projects: VB6":{},"Thinking in terms of objects":{},"Combining async with generators in Node 11":{},"486 Upgrade 2: The SD Card HDD":{},"The Productive Programmer on Mac":{},"How to write academic papers in Markdown":{},"YouTube Play Image Links in Hugo":{},"The Fridge, Your Inoculation Room":{},"Emotional Magic":{},"My Kotlin Rose-Tinted Glasses Broke":{},"A Treatise on Leavened Waffles":{},"Constraint-based Creativity":{},"From Analog Notebook to Digital Vault":{},"Where Does It Stop?":{},"November 2021 Meta Post":{},"Three Little GameCube Mods":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["convinc",{"_index":124,"title":{},"content":{"Ending your day with happy thoughts":{},"How to teach kids to program":{},"2017 in books":{},"Take your time.":{},"Thoughts on Bullshit Jobs":{},"Exploring the Go programming language":{},"How Much Should I Spend On Magic The Gathering":{},"Cheese cheese cheese cheese cheese":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Technical Knowledge Brews Creativity":{},"A Personal Intro To Gentle Hip-Hop":{},"None Of My Best Friends Are Content Creators":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["convolut",{"_index":7618,"title":{},"content":{"Academese Gems":{},"Belgium - Portugal: 5 - 2":{},"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["conway](https://www.susannahconway.com",{"_index":11235,"title":{},"content":{"Expiry Dates On Journals":{}},"tags":{}}],["cook",{"_index":139,"title":{"Development principles in cooking":{}},"content":{"Ending your day with happy thoughts":{},"Learning to become a baker":{},"A samurai learning mindset":{},"Development principles in cooking":{},"Using Pandoc to publish a book":{},"Cheese cheese cheese cheese cheese":{},"What a Night Cam Is Good For":{}},"tags":{"Development principles in cooking":{},"Nuts about local nuts":{},"The Fridge, Your Inoculation Room":{},"Cheese cheese cheese cheese cheese":{}}}],["cookbook",{"_index":387,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Development principles in cooking":{},"The Fridge, Your Inoculation Room":{}},"tags":{}}],["cooki",{"_index":5587,"title":{},"content":{"Tracking and privacy concerns on websites":{},"A journey through the history of webdesign":{},"Exploring the AlterNet":{},"YouTube Play Image Links in Hugo":{},"Allspice Is Not All Spice":{}},"tags":{}}],["cookson",{"_index":5729,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["cool",{"_index":881,"title":{"Cool Things People Do With Their Blogs":{}},"content":{"undefined":{},"Enhancing the builder pattern with closures":{},"Nuts about local nuts":{},"Page Building with Brizy in Wordpress":{},"A journey through the history of webdesign":{},"Personal Desktop Screenshots of Olde":{},"Win98 Upgrade: Sound Blaster Audigy":{},"My Retro Desk/Gaming Setup in 2021":{},"How to write academic papers in Markdown":{},"Always have a Diaster Recovery Plan":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Flea Market Season":{},"The Fridge, Your Inoculation Room":{},"Dear Student":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Three Little GameCube Mods":{},"Woke in Class":{},"How To Enjoy Your Own Digital Music":{},"Academic Lineage":{},"An Ad Leaflet QR Design Mistake":{},"Creativity Equals Messy Code?":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["cooler",{"_index":2593,"title":{},"content":{"Development principles in cooking":{},"A Decade in the Software Engineering industry":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["coolio'",{"_index":11061,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["cooper",{"_index":5708,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["cope",{"_index":10093,"title":{},"content":{"November 2021 Meta Post":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"2021 Year In Review":{},"Expiry Dates On Journals":{}},"tags":{}}],["copi",{"_index":1451,"title":{},"content":{"undefined":{},"Death to pseudocode?":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Lousy Wordpress Hacking Attempts detected":{},"The first Dutch Obsidian meetup":{},"Belgium - Portugal: 5 - 2":{},"YouTube Play Image Links in Hugo":{},"Double-dipping and Market Prices":{},"Kotlin Is Java 2.0, But It's Still Java":{},"On Selling a Self-published Book":{},"Dear Student":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"The Emperor of Lists":{},"2021 Donations":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["copies](/post/2021/05/r",{"_index":7880,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["copy/upload",{"_index":11281,"title":{},"content":{"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["copypast",{"_index":1308,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["copyright",{"_index":1412,"title":{},"content":{"undefined":{},"I'm jealous of my dog":{},"Computer Science learning pathways":{}},"tags":{}}],["core",{"_index":3821,"title":{},"content":{"Reverse engineering a curriculum":{},"Hugo Extended: More static site processing power!":{},"Building a Core2Duo Windows XP Retro PC":{},"Programming on the Apple M1 Silicon":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["core2duo",{"_index":6055,"title":{"Building a Core2Duo Windows XP Retro PC":{}},"content":{"Building a Core2Duo Windows XP Retro PC":{},"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["coresend",{"_index":9987,"title":{},"content":{"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["corey",{"_index":7913,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["coriand",{"_index":9882,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["corner",{"_index":6728,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Ditch Scrum, Organize As You See Fit":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["cornmeal",{"_index":9374,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["corpor",{"_index":4724,"title":{},"content":{"IT Competences and Certificates":{},"Thoughts on Bullshit Jobs":{},"Exploring the AlterNet":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["corps",{"_index":10549,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["correct",{"_index":768,"title":{},"content":{"undefined":{},"Integration Testing with SQLite":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"On Manuscript Review Procedures":{},"A Note About Footnotes":{},"How to setup Pi-Hole on a Synology NAS":{},"Fighting Webmention And Pingback Spam":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"True Backlink Support in Hugo":{}},"tags":{}}],["correctli",{"_index":6214,"title":{},"content":{"Personal Desktop Screenshots of Olde":{},"The Monthly Retro Screenshot Guessing Quiz":{},"True Backlink Support in Hugo":{}},"tags":{}}],["correl",{"_index":6498,"title":{},"content":{"Thoughts on Bullshit Jobs":{},"A Factor Analysis For Dummies in R":{},"Natural Gas Prices and The Energy Market":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["correspond",{"_index":8344,"title":{},"content":{"Water Levels As Public Data":{}},"tags":{}}],["corrod",{"_index":5972,"title":{},"content":{"Reviving an old 80486 PC":{}},"tags":{}}],["corrupt",{"_index":1690,"title":{},"content":{"Integration Testing with SQLite":{},"Collective Creativity":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["corsica",{"_index":10144,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["corsican",{"_index":10141,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["cosmo",{"_index":3453,"title":{},"content":{"Over entropie":{}},"tags":{}}],["cost",{"_index":2346,"title":{},"content":{"Teaching yourself to draw":{},"Programming: a Creative Cognitive Process":{},"DIY: Hosting stuff on your own VPS":{},"Tracking and privacy concerns on websites":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Digitizing journals using DEVONthink":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"Social Debt in Development Teams":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"Questionable Game Publishing Methods":{},"Constraint-based Creativity":{},"How To Enjoy Your Own Digital Music":{},"Thoughts On Home NAS Systems":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["costli",{"_index":8121,"title":{},"content":{"How Much Should I Spend On Magic The Gathering":{},"Allspice Is Not All Spice":{}},"tags":{}}],["cou",{"_index":2438,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["couch",{"_index":9269,"title":{},"content":{"Questionable Game Publishing Methods":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Why I Play Games (And So Should You)":{},"What a Night Cam Is Good For":{}},"tags":{}}],["couk\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\thttps://brainbaking.com/post/2022/03/an",{"_index":11457,"title":{},"content":{"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["coulage_",{"_index":8076,"title":{},"content":{"The Fridge, Your Inoculation Room":{}},"tags":{}}],["couldn't",{"_index":2610,"title":{},"content":{"Development principles in cooking":{},"Healing creative scars":{},"Building a Core2Duo Windows XP Retro PC":{},"Personal Desktop Screenshots of Olde":{},"Programming on the Apple M1 Silicon":{},"Book Number Fourteen":{},"A 5.25\" Gobliins 2 Surprise":{},"Exporting Goodreads to Obsidian":{},"How Not To Do A Remaster":{},"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["couldn’t",{"_index":5391,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["count",{"_index":2427,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Tracking and privacy concerns on websites":{},"Exploring the AlterNet":{},"Double-dipping and Market Prices":{},"Collective Creativity":{},"The Emperor of Lists":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Minimalism and Tidying Up":{}},"tags":{}}],["counter",{"_index":394,"title":{},"content":{"No, vegetarians do not eat fish!":{},"DIY: Hosting stuff on your own VPS":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The Emperor of Lists":{},"Water Usage and Prices":{}},"tags":{}}],["counterfeit",{"_index":7724,"title":{},"content":{"Flea Market Season":{}},"tags":{}}],["counterintuit",{"_index":2807,"title":{},"content":{"Journaling in practice":{}},"tags":{}}],["counterpart",{"_index":4342,"title":{},"content":{"Productivity Tools on all platforms":{},"Social Debt in Development Teams":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["counters_",{"_index":6053,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["countless",{"_index":5121,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Personal Desktop Screenshots of Olde":{},"Stop limiting yourself to JS in browsers":{},"Pinball Machines in a Jenever Museum":{},"Favorite Game Meme":{},"The Lost Art of Being Lost":{},"Creative Critical Thinking":{},"Re: Writing A Book Is Nonesense":{},"Woke in Class":{}},"tags":{}}],["countri",{"_index":194,"title":{},"content":{"On finding your inner zen in big cities":{},"Belgium - Portugal: 5 - 2":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"Parking Machines Design Mistakes":{}},"tags":{}}],["coupl",{"_index":1334,"title":{},"content":{"Unit Testing Stored Procedures":{},"Unit Testing Extjs UI with Siesta":{},"A quick look at 6 fountain pens":{},"Domain Driven Design in C":{},"IT Competences and Certificates":{},"The Internet Killed Secrets in Games":{},"My Retro Desk/Gaming Setup in 2021":{},"How to write academic papers in Markdown":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"Moon Logic":{},"Re: Is collecting physical games worth it?":{},"Social Debt in Development Teams":{},"Flea Market Season":{},"How Much Should I Spend On Magic The Gathering":{},"Emotional Magic":{},"On Selling a Self-published Book":{},"Are You In The System Yet, Sir?":{},"From Analog Notebook to Digital Vault":{},"Generating a Blogroll With OPML in Hugo":{},"How To Enjoy Your Own Digital Music":{},"Once Upon a Time in Shaolin":{},"Thoughts On Home NAS Systems":{},"Leuchtturm Notebook Paper Quality":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["courag",{"_index":10624,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["cours",{"_index":203,"title":{},"content":{"On finding your inner zen in big cities":{},"Learning to become a baker":{},"undefined":{},"Teaching yourself to draw":{},"Development principles in cooking":{},"A quick look at 6 fountain pens":{},"I'm jealous of my dog":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"Domain Driven Design in C":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"A Ph.D. Thesis: Iteration 2":{},"Teaching Object-Oriented design using the GBA":{},"Programming: a Creative Cognitive Process":{},"Page Building with Brizy in Wordpress":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"Thoughts on collaboration in education":{},"486 Upgrade 2: The SD Card HDD":{},"A journey through the history of webdesign":{},"Personal Desktop Screenshots of Olde":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"My Retro Desk/Gaming Setup in 2021":{},"Always have a Diaster Recovery Plan":{},"Getting rid of trackers using LineageOS":{},"Teaching students about coding trends":{},"The IndieWeb Mixed Bag":{},"Stop limiting yourself to JS in browsers":{},"The first Dutch Obsidian meetup":{},"On Manuscript Review Procedures":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Misconceptions about retro gamers":{},"Why I like Pawn Stars":{},"YouTube Play Image Links in Hugo":{},"Book Number Fourteen":{},"The Decline of Battery Life":{},"Cheese cheese cheese cheese cheese":{},"Emotional Magic":{},"Kotlin Is Java 2.0, But It's Still Java":{},"Pinball Machines in a Jenever Museum":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Thirty-Six":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{},"Are Digital Gardens Blogs?":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{},"Very Old and Somewhat Old Mood Boards":{},"Power Usage Effectiveness":{},"A 5.25\" Gobliins 2 Surprise":{},"From Analog Notebook to Digital Vault":{},"Allspice Is Not All Spice":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Migrating from Mailchimp to Listmonk":{},"Dark Age of Camelot in 2022":{},"A Factor Analysis For Dummies in R":{},"Natural Gas Prices and The Energy Market":{},"Woke in Class":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"Water Usage and Prices":{},"An Ad Leaflet QR Design Mistake":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{},"Leuchtturm Notebook Paper Quality":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Equality in Game Credits":{},"None Of My Best Friends Are Content Creators":{},"True Backlink Support in Hugo":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["course](https://kuleuven",{"_index":7272,"title":{},"content":{"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["courtesi",{"_index":7499,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["cousin",{"_index":8905,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["cout",{"_index":558,"title":{},"content":{"undefined":{}},"tags":{}}],["coutanc",{"_index":9824,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["cover",{"_index":1860,"title":{},"content":{"Bye autotools hello Scons":{},"Teaching yourself to draw":{},"Using Pandoc to publish a book":{},"Digitizing journals using DEVONthink":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"The Emperor of Lists":{},"Generating a Blogroll With OPML in Hugo":{},"Minimalism and Tidying Up":{},"2021 Year In Review":{},"Once Upon a Time in Shaolin":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["covid",{"_index":5531,"title":{},"content":{"ITiCSE 2020: A Report":{},"My Retro Desk/Gaming Setup in 2021":{},"The insanity of collecting retro games":{},"Flea Market Season":{},"Water Levels As Public Data":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Dear Student":{},"December 2021 In Review":{},"An Ad Leaflet QR Design Mistake":{},"March 2022 In Review":{}},"tags":{}}],["cow",{"_index":6268,"title":{},"content":{"The Internet Killed Secrets in Games":{},"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["cow'",{"_index":8504,"title":{},"content":{"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["cpp",{"_index":7277,"title":{},"content":{"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["cppflag",{"_index":1815,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["cpu",{"_index":4552,"title":{},"content":{"Over analoog en digitaal":{},"3D Software Rendering on the GBA":{},"An am486 Performance Analysis":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Personal Desktop Screenshots of Olde":{},"Programming on the Apple M1 Silicon":{},"The Decline of Battery Life":{},"Thoughts On Home NAS Systems":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["cpu.jpg",{"_index":5997,"title":{},"content":{"Reviving an old 80486 PC":{}},"tags":{}}],["cpu/memori",{"_index":6205,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["cqm",{"_index":5897,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["crack",{"_index":4804,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{},"Moon Logic":{}},"tags":{}}],["craft",{"_index":32,"title":{},"content":{"Ending your day with happy thoughts":{},"A samurai learning mindset":{},"Inventing - for the worse?":{},"Creative Critical Thinking":{},"Re: Writing A Book Is Nonesense":{},"March 2022 In Review":{}},"tags":{}}],["craftsman",{"_index":3011,"title":{},"content":{"Inventing - for the worse?":{},"Constraint-based Creativity":{}},"tags":{}}],["craftsmanship",{"_index":3022,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{"Inventing - for the worse?":{},"A Decade in the Software Engineering industry":{}}}],["craigslist",{"_index":10783,"title":{},"content":{"On Trying To Sell A Laptop":{}},"tags":{}}],["cram",{"_index":7311,"title":{},"content":{"The first Dutch Obsidian meetup":{}},"tags":{}}],["cramp",{"_index":7374,"title":{},"content":{"On Manuscript Review Procedures":{},"Minimalism and Tidying Up":{}},"tags":{}}],["cranni",{"_index":6260,"title":{},"content":{"The Internet Killed Secrets in Games":{},"Favorite Game Meme":{}},"tags":{}}],["crappi",{"_index":8071,"title":{},"content":{"Double-dipping and Market Prices":{},"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["crash",{"_index":1018,"title":{},"content":{"undefined":{},"486 Upgrade 2: The SD Card HDD":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Apple's App Store Design Mistake":{},"The Lost Art of Being Lost":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["crave",{"_index":8045,"title":{},"content":{"Double-dipping and Market Prices":{},"What a Night Cam Is Good For":{}},"tags":{}}],["crawl",{"_index":5510,"title":{},"content":{"Designing websites with accessibility in mind":{},"Where Does It Stop?":{},"What a Night Cam Is Good For":{}},"tags":{}}],["crawler",{"_index":5349,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["craze",{"_index":7659,"title":{},"content":{"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["crazi",{"_index":2260,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{},"Moon Logic":{},"Re: Is collecting physical games worth it?":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Favorite Game Meme":{},"November 2021 Meta Post":{},"December 2021 In Review":{},"My Retrocomputing Projects For 2022":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["crazy_",{"_index":11518,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["creak",{"_index":9668,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["cream",{"_index":9399,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["creat",{"_index":621,"title":{},"content":{"undefined":{},"Learning to become a baker":{},"Unit Testing Stored Procedures":{},"Visual Studio 2012 for Eclipse users":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Custom Webdriver Page Factories":{},"Unit Testing Extjs UI with Siesta":{},"Webdriver Exception Handling":{},"Unit testing in Legacy Projects: VB6":{},"How to teach kids to program":{},"Development principles in cooking":{},"Inventing - for the worse?":{},"Hiding Code Complexity":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"Reverse engineering a curriculum":{},"A Decade in the Software Engineering industry":{},"Unit Testing PicoBlaze Assembly files":{},"A Ph.D. Thesis: Iteration 2":{},"IT Competences and Certificates":{},"Teaching Object-Oriented design using the GBA":{},"Programming: a Creative Cognitive Process":{},"DIY: Hosting stuff on your own VPS":{},"Page Building with Brizy in Wordpress":{},"Project Warlock: About Perseverance":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"Thoughts on collaboration in education":{},"486 Upgrade 2: The SD Card HDD":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"How to write academic papers in Markdown":{},"Getting rid of trackers using LineageOS":{},"The first Dutch Obsidian meetup":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"Reducing Workflow Load Facilitates Writing":{},"Rules of a Creator's Life":{},"Emotional Magic":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Favorite Game Meme":{},"Are Digital Gardens Blogs?":{},"Very Old and Somewhat Old Mood Boards":{},"Constraint-based Creativity":{},"From Analog Notebook to Digital Vault":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"Dark Age of Camelot in 2022":{},"On Trying To Sell A Laptop":{},"Thoughts On Home NAS Systems":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{},"March 2022 In Review":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["createmocksbasedonnamingconvent",{"_index":1767,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["creation",{"_index":1809,"title":{},"content":{"Bye autotools hello Scons":{},"Domain Driven Design in C":{},"Very Old and Somewhat Old Mood Boards":{},"A Creative State of Mind":{},"Once Upon a Time in Shaolin":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["creativ",{"_index":2318,"title":{"Healing creative scars":{},"Concentrating on serendipitous creativity":{},"Programming: a Creative Cognitive Process":{},"What is Creativity in Software Engineering?":{},"Creativity Self-Assessment Is Nonsense":{},"Collective Creativity":{},"Constraint-based Creativity":{},"Creative Critical Thinking":{},"From Curiosity To Creativity":{},"A Creative State of Mind":{},"Technical Knowledge Brews Creativity":{},"The Creative Techniques Toolbox":{},"Creativity Equals Messy Code?":{}},"content":{"Teaching yourself to draw":{},"Healing creative scars":{},"Journaling in practice":{},"Inventing - for the worse?":{},"2017 in books":{},"Reverse engineering a curriculum":{},"A Decade in the Software Engineering industry":{},"Programming: a Creative Cognitive Process":{},"ITiCSE 2020: A Report":{},"486 Upgrade 1: Sound Blaster 16":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"What is Creativity in Software Engineering?":{},"You Shouldn't Use Spotify":{},"20 Years of Personal Cellphone History":{},"Creativity Self-Assessment Is Nonsense":{},"A Creative State of Mind":{},"Allspice Is Not All Spice":{},"December 2021 In Review":{},"A Factor Analysis For Dummies in R":{},"January 2022 In Review":{},"Creativity Equals Messy Code?":{}},"tags":{"Programming: a Creative Cognitive Process":{},"What is Creativity in Software Engineering?":{},"Creativity Self-Assessment Is Nonsense":{},"Collective Creativity":{},"Constraint-based Creativity":{},"Creative Critical Thinking":{},"From Curiosity To Creativity":{},"A Creative State of Mind":{},"Technical Knowledge Brews Creativity":{},"The Creative Techniques Toolbox":{},"Creativity Equals Messy Code?":{}}}],["creative'",{"_index":5896,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["creativesomething.net](https://creativesomething.net",{"_index":8258,"title":{},"content":{"Rules of a Creator's Life":{}},"tags":{}}],["creativit",{"_index":4957,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["creativity[^ama",{"_index":4952,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["creativu",{"_index":2965,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["creator",{"_index":8552,"title":{"None Of My Best Friends Are Content Creators":{}},"content":{"Kotlin Is Java 2.0, But It's Still Java":{},"2021 Donations":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["creator'",{"_index":8255,"title":{"Rules of a Creator's Life":{}},"content":{},"tags":{}}],["creatur",{"_index":2371,"title":{},"content":{"Teaching yourself to draw":{},"Emotional Magic":{}},"tags":{}}],["credit",{"_index":11402,"title":{"Equality in Game Credits":{}},"content":{"Equality in Game Credits":{}},"tags":{}}],["credits.jpg",{"_index":11411,"title":{},"content":{"Equality in Game Credits":{}},"tags":{}}],["creep",{"_index":10596,"title":{},"content":{"Why I Play Games (And So Should You)":{}},"tags":{}}],["crew",{"_index":9680,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["creëren",{"_index":4124,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["cri",{"_index":9727,"title":{},"content":{"How Not To Do A Remaster":{},"A Creative State of Mind":{},"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["cricket",{"_index":7817,"title":{},"content":{"The Pilot Capless: a stellar stealth pen":{}},"tags":{}}],["crimin",{"_index":11064,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["crisi",{"_index":8693,"title":{},"content":{"Thirty-Six":{},"The Creative Techniques Toolbox":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["crisp",{"_index":9397,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["critchlow'",{"_index":11506,"title":{},"content":{"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["critic",{"_index":5396,"title":{"Creative Critical Thinking":{}},"content":{"Project Warlock: About Perseverance":{},"An am486 Performance Analysis":{},"Programming on the Apple M1 Silicon":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"On Manuscript Review Procedures":{},"Creativity Self-Assessment Is Nonsense":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["critiqu",{"_index":5087,"title":{},"content":{"Five reasons why agile and academia don't go together":{}},"tags":{}}],["crockford",{"_index":888,"title":{},"content":{"undefined":{}},"tags":{}}],["crombez",{"_index":11487,"title":{},"content":{"March 2022 In Review":{}},"tags":{}}],["crontab",{"_index":10889,"title":{},"content":{"Thoughts On Home NAS Systems":{}},"tags":{}}],["cross",{"_index":2748,"title":{},"content":{"A quick look at 6 fountain pens":{},"Productivity Tools on all platforms":{},"Unit Testing PicoBlaze Assembly files":{},"Teaching students about coding trends":{},"Kotlin Is Java 2.0, But It's Still Java":{},"Are You In The System Yet, Sir?":{},"Favorite Game Meme":{},"Parking Machines Design Mistakes":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Academic Lineage":{}},"tags":{}}],["crossing_",{"_index":11500,"title":{},"content":{"March 2022 In Review":{}},"tags":{}}],["crow",{"_index":10139,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["crowd",{"_index":5382,"title":{},"content":{"Project Warlock: About Perseverance":{},"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["crown",{"_index":9791,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["crt",{"_index":4605,"title":{},"content":{"Over analoog en digitaal":{},"My Retro Desk/Gaming Setup in 2021":{},"Misconceptions about retro gamers":{},"Three Little GameCube Mods":{}},"tags":{}}],["crucial",{"_index":3027,"title":{},"content":{"Inventing - for the worse?":{},"On Manuscript Review Procedures":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["crud",{"_index":3126,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["crumb",{"_index":9394,"title":{},"content":{"A Treatise on Leavened Waffles":{},"Allspice Is Not All Spice":{}},"tags":{}}],["crumbl",{"_index":8181,"title":{},"content":{"On Tea Prices":{},"Water Levels As Public Data":{},"Constraint-based Creativity":{}},"tags":{}}],["crush",{"_index":7736,"title":{},"content":{"Flea Market Season":{}},"tags":{}}],["crust",{"_index":9395,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["crusti",{"_index":8113,"title":{},"content":{"The Fridge, Your Inoculation Room":{}},"tags":{}}],["crutcher",{"_index":8534,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["cry](https://www.youtube.com/watch?v=og4rozg78bo",{"_index":11090,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["crystal",{"_index":3293,"title":{},"content":{"Death to pseudocode?":{},"The Internet Killed Secrets in Games":{},"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["cs",{"_index":3532,"title":{},"content":{"Computer Science learning pathways":{},"Academic Lineage":{}},"tags":{}}],["cs1",{"_index":11212,"title":{},"content":{"Creativity Equals Messy Code?":{}},"tags":{}}],["csharp",{"_index":1649,"title":{},"content":{},"tags":{"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Metaprogramming instead of duplication":{},"Custom Webdriver Page Factories":{},"Faking domain logic":{},"Webdriver Exception Handling":{}}}],["csikszentmihalyi",{"_index":8832,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{}},"tags":{}}],["csikszentmihalyi'",{"_index":8828,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{}},"tags":{}}],["css",{"_index":5189,"title":{},"content":{"Hugo Extended: More static site processing power!":{},"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{},"Digitizing journals using DEVONthink":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"How to write academic papers in Markdown":{},"Exploring the AlterNet":{},"Teaching students about coding trends":{},"December 2021 In Review":{}},"tags":{}}],["css/html",{"_index":5245,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["css/styles.css",{"_index":5200,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["css2",{"_index":6970,"title":{},"content":{"Exploring the AlterNet":{}},"tags":{}}],["css3",{"_index":6974,"title":{},"content":{"Exploring the AlterNet":{}},"tags":{}}],["css](https://tailwindcss.com",{"_index":6976,"title":{},"content":{"Exploring the AlterNet":{}},"tags":{}}],["csv",{"_index":8367,"title":{},"content":{"Water Levels As Public Data":{},"Exporting Goodreads to Obsidian":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["csv['titl",{"_index":9589,"title":{},"content":{"Exporting Goodreads to Obsidian":{}},"tags":{}}],["csvpars",{"_index":9584,"title":{},"content":{"Exporting Goodreads to Obsidian":{}},"tags":{}}],["csvparse(readfilesync(csvfil",{"_index":9586,"title":{},"content":{"Exporting Goodreads to Obsidian":{}},"tags":{}}],["ct",{"_index":5880,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["ct1747",{"_index":5899,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["ct2290",{"_index":5898,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["ct4830",{"_index":6328,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["ctr",{"_index":1558,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl)+space",{"_index":4368,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["ctrl+alt",{"_index":1529,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+alt+left/right",{"_index":1526,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+d",{"_index":1515,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+e",{"_index":1539,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+enter",{"_index":1521,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+f11",{"_index":1543,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+l",{"_index":1516,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+m",{"_index":1575,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+o",{"_index":1546,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+r",{"_index":1561,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift",{"_index":1528,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift+1",{"_index":1531,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift+alt+f12",{"_index":1550,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift+alt+up/down",{"_index":1536,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift+b",{"_index":1571,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift+g",{"_index":1549,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift+o",{"_index":1538,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+space",{"_index":1520,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Faking domain logic":{},"Productivity Tools on all platforms":{}},"tags":{}}],["ctrl+u",{"_index":1544,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["cube",{"_index":6277,"title":{},"content":{"The Internet Killed Secrets in Games":{}},"tags":{}}],["cube_",{"_index":9464,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["cubic",{"_index":10924,"title":{},"content":{"Water Usage and Prices":{}},"tags":{}}],["cubism",{"_index":9090,"title":{},"content":{"Collective Creativity":{},"Constraint-based Creativity":{}},"tags":{}}],["cuddl",{"_index":10673,"title":{},"content":{"2021 Year In Review":{}},"tags":{}}],["cuisin",{"_index":9383,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["culinari",{"_index":8608,"title":{},"content":{"On Selling a Self-published Book":{}},"tags":{}}],["cull",{"_index":5693,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["cultur",{"_index":3563,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"Reverse engineering a curriculum":{},"Thoughts on collaboration in education":{},"Thoughts on Bullshit Jobs":{},"What if Seneca wasn't Nero's advisor?":{},"Creativity Self-Assessment Is Nonsense":{},"The Emperor of Lists":{},"From Curiosity To Creativity":{},"Equality in Game Credits":{}},"tags":{}}],["cultures](https://techbeacon.com/lesson",{"_index":3562,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["cultuur",{"_index":3572,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["cumbersom",{"_index":1616,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Domain Driven Design in C":{}},"tags":{}}],["cup",{"_index":7642,"title":{},"content":{"Belgium - Portugal: 5 - 2":{},"Creative Critical Thinking":{}},"tags":{}}],["cupboard",{"_index":10474,"title":{},"content":{"Minimalism and Tidying Up":{}},"tags":{}}],["cupboard/draw",{"_index":8199,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["curat",{"_index":9086,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["curio",{"_index":10106,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["curios",{"_index":7292,"title":{"From Curiosity To Creativity":{}},"content":{"The first Dutch Obsidian meetup":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"From Curiosity To Creativity":{}},"tags":{}}],["curiosities](https://en.wikipedia.org/wiki/cabinet_of_curios",{"_index":9213,"title":{},"content":{"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["curiou",{"_index":302,"title":{},"content":{"On finding your inner zen in big cities":{},"Ditch Scrum, Organize As You See Fit":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["curl",{"_index":8704,"title":{},"content":{"Thirty-Six":{}},"tags":{}}],["currcont",{"_index":11604,"title":{},"content":{"True Backlink Support in Hugo":{}},"tags":{}}],["current",{"_index":304,"title":{},"content":{"On finding your inner zen in big cities":{},"undefined":{},"Unit Testing Extjs UI with Siesta":{},"Journaling in practice":{},"Concentrating on serendipitous creativity":{},"Death to pseudocode?":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"Unit Testing PicoBlaze Assembly files":{},"Programming: a Creative Cognitive Process":{},"The Internet Killed Secrets in Games":{},"What is Creativity in Software Engineering?":{},"Book Number Fourteen":{},"How Much Should I Spend On Magic The Gathering":{},"The Decline of Battery Life":{},"Water Levels As Public Data":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Creativity Self-Assessment Is Nonsense":{},"The Emperor of Lists":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Natural Gas Prices and The Energy Market":{},"Expiry Dates On Journals":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{},"True Backlink Support in Hugo":{}},"tags":{}}],["curri",{"_index":2599,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["curriculum",{"_index":3482,"title":{"Reverse engineering a curriculum":{}},"content":{"Teaching by philosophy":{},"Computer Science learning pathways":{},"Reverse engineering a curriculum":{},"ITiCSE 2020: A Report":{},"Ever-increasing Work Email Spam":{}},"tags":{}}],["curriculum](/post/revers",{"_index":3481,"title":{},"content":{"Teaching by philosophy":{},"Computer Science learning pathways":{}},"tags":{}}],["curriculum](https://dl.acm.org/doi/pdf/10.1145/3341525.3387405",{"_index":5544,"title":{},"content":{"ITiCSE 2020: A Report":{}},"tags":{}}],["currrellink",{"_index":11602,"title":{},"content":{"True Backlink Support in Hugo":{}},"tags":{}}],["curs",{"_index":2935,"title":{},"content":{"I'm jealous of my dog":{},"Teaching Object-Oriented design using the GBA":{},"Discord killed support for WinXP":{},"Thirty-Six":{},"Creative Critical Thinking":{},"December 2021 In Review":{}},"tags":{}}],["cursor",{"_index":1351,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["cursor_el",{"_index":1361,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["curtain",{"_index":10073,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["curv",{"_index":6732,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Exploring the Go programming language":{}},"tags":{}}],["custom",{"_index":1662,"title":{"Custom Webdriver Page Factories":{}},"content":{"Integration Testing with SQLite":{},"Custom Webdriver Page Factories":{},"Faking domain logic":{},"Unit Testing Extjs UI with Siesta":{},"Migrating from Extjs to React gradually":{},"A quick look at 6 fountain pens":{},"DIY: Hosting stuff on your own VPS":{},"Page Building with Brizy in Wordpress":{},"486 Upgrade 2: The SD Card HDD":{},"Digitizing journals using DEVONthink":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Belgium - Portugal: 5 - 2":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"On Selling a Self-published Book":{},"20 Years of Personal Cellphone History":{},"The Emperor of Lists":{},"How to setup Pi-Hole on a Synology NAS":{},"Cool Things People Do With Their Blogs":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["customev",{"_index":2247,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["customiz",{"_index":4367,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["cut",{"_index":957,"title":{},"content":{"Learning to become a baker":{},"Computer Science learning pathways":{},"A Decade in the Software Engineering industry":{},"DIY: Hosting stuff on your own VPS":{},"Teaching students about coding trends":{},"20 Years of Personal Cellphone History":{},"Favorite Game Meme":{},"Are Digital Gardens Blogs?":{},"How Not To Do A Remaster":{},"On Trying To Sell A Laptop":{},"Academic Lineage":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["cut](https://jefklakscodex.com/games/kathi",{"_index":10065,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["cuub",{"_index":10944,"title":{},"content":{"Water Usage and Prices":{}},"tags":{}}],["cv",{"_index":4405,"title":{},"content":{"A Decade in the Software Engineering industry":{}},"tags":{}}],["cxx",{"_index":1837,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["cxxflag",{"_index":1818,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["cyberpunk",{"_index":9716,"title":{},"content":{"How Not To Do A Remaster":{}},"tags":{}}],["cycl",{"_index":3168,"title":{},"content":{"Take your time.":{},"IT Competences and Certificates":{},"Flea Market Season":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["cyclette](https://www.kaffeecyclette.b",{"_index":9944,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["cycling](/post/2021/08/accident",{"_index":9307,"title":{},"content":{"The Lost Art of Being Lost":{}},"tags":{}}],["cyclist",{"_index":8443,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["cylind",{"_index":5834,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{}},"tags":{}}],["cynefin",{"_index":7804,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["cynic",{"_index":8413,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["cyren",{"_index":9565,"title":{},"content":{"The Emperor of Lists":{}},"tags":{}}],["cézann",{"_index":9097,"title":{},"content":{"Collective Creativity":{},"Constraint-based Creativity":{}},"tags":{}}],["cézanne'",{"_index":9444,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["c€/kwh",{"_index":10482,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["d",{"_index":3351,"title":{},"content":{"Over entropie":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["d'avella",{"_index":10456,"title":{},"content":{"Minimalism and Tidying Up":{}},"tags":{}}],["d2",{"_index":7180,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["da",{"_index":10994,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["daar",{"_index":856,"title":{},"content":{"undefined":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Over analoog en digitaal":{},"De zin en onzin van conferenties":{}},"tags":{}}],["daarna",{"_index":1387,"title":{},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"Over tijdsbesef":{}},"tags":{}}],["daarvan",{"_index":4190,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["dabbl",{"_index":2261,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{},"What if Seneca wasn't Nero's advisor?":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["dac",{"_index":6337,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["dad",{"_index":5363,"title":{},"content":{"Project Warlock: About Perseverance":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Favorite Game Meme":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["dadaism",{"_index":9091,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["daddy'",{"_index":11057,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["dadelijk",{"_index":4983,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["daemon",{"_index":1464,"title":{},"content":{"undefined":{}},"tags":{}}],["dag",{"_index":4835,"title":{},"content":{"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["dagboeken",{"_index":4294,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["dagelijk",{"_index":3358,"title":{},"content":{"Over entropie":{}},"tags":{}}],["dagelijks",{"_index":4831,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["dagen",{"_index":4828,"title":{},"content":{"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["dahlberg",{"_index":5699,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["daili",{"_index":213,"title":{},"content":{"On finding your inner zen in big cities":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"I'm jealous of my dog":{},"The Startup of a Lean Doctorate":{},"Thoughts on collaboration in education":{},"The Pilot Capless: a stellar stealth pen":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Emotional Magic":{},"Ever-increasing Work Email Spam":{},"Constraint-based Creativity":{},"Creative Critical Thinking":{},"2021 Donations":{},"Why Mastodon Isn't Great For Serendipity":{},"Dark Age of Camelot in 2022":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["daisi",{"_index":9556,"title":{},"content":{"The Emperor of Lists":{}},"tags":{}}],["damag",{"_index":4404,"title":{},"content":{"A Decade in the Software Engineering industry":{},"My Kotlin Rose-Tinted Glasses Broke":{},"A Creative State of Mind":{}},"tags":{}}],["damage_",{"_index":11085,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["damian",{"_index":7591,"title":{},"content":{"Social Debt in Development Teams":{}},"tags":{}}],["damn",{"_index":2893,"title":{},"content":{"Nuts about local nuts":{},"Exploring the AlterNet":{},"Apple's App Store Design Mistake":{},"A 5.25\" Gobliins 2 Surprise":{},"Woke in Class":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["dan",{"_index":602,"title":{},"content":{"undefined":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{},"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["dandara",{"_index":10023,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["danger",{"_index":6939,"title":{},"content":{"Exploring the AlterNet":{},"Why I Play Games (And So Should You)":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["daniel](https://ineed.coffe",{"_index":6998,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["danni",{"_index":3052,"title":{},"content":{"2017 in books":{},"Academic Lineage":{}},"tags":{}}],["danny'",{"_index":3074,"title":{},"content":{"2017 in books":{}},"tags":{}}],["daoc",{"_index":10256,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["daoc'",{"_index":10288,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["dare",{"_index":4749,"title":{},"content":{"IT Competences and Certificates":{},"Stop limiting yourself to JS in browsers":{},"Are You In The System Yet, Sir?":{},"Are Digital Gardens Blogs?":{},"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["daredevil",{"_index":10125,"title":{},"content":{"Seneca on How to Live":{}},"tags":{}}],["daringli",{"_index":7076,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["darjeel",{"_index":8192,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["darjeeling](https://www.mariagefreres.com/fr/2",{"_index":8205,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["dark",{"_index":4716,"title":{"Dark Age of Camelot in 2022":{}},"content":{"IT Competences and Certificates":{},"Software Engineering Is Not Engineering":{},"December 2021 In Review":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["darker",{"_index":7232,"title":{},"content":{"Exploring the Go programming language":{}},"tags":{}}],["darl",{"_index":11089,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["darmstadt",{"_index":10902,"title":{},"content":{"Visualizing Personal Data Takeouts":{}},"tags":{}}],["darwin",{"_index":9018,"title":{},"content":{"Are Digital Gardens Blogs?":{},"From Curiosity To Creativity":{}},"tags":{}}],["darwin'",{"_index":9685,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["daryl",{"_index":10035,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["dash",{"_index":4366,"title":{},"content":{"Productivity Tools on all platforms":{},"Generating a Blogroll With OPML in Hugo":{},"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["dat",{"_index":510,"title":{},"content":{"undefined":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["data",{"_index":1346,"title":{"Water Levels As Public Data":{},"Visualizing Personal Data Takeouts":{}},"content":{"Unit Testing Stored Procedures":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Faking domain logic":{},"Unit Testing Extjs UI with Siesta":{},"Webdriver Exception Handling":{},"Migrating from Extjs to React gradually":{},"Teaching by philosophy":{},"Five reasons why agile and academia don't go together":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"An am486 Performance Analysis":{},"Reviving an old 80486 PC":{},"Personal Desktop Screenshots of Olde":{},"Digitizing journals using DEVONthink":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Always have a Diaster Recovery Plan":{},"Getting rid of trackers using LineageOS":{},"Teaching students about coding trends":{},"Host your own webmention receiver":{},"Flea Market Season":{},"YouTube Play Image Links in Hugo":{},"Water Levels As Public Data":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Are You In The System Yet, Sir?":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{},"Ever-increasing Work Email Spam":{},"Power Usage Effectiveness":{},"Exporting Goodreads to Obsidian":{},"Migrating from Mailchimp to Listmonk":{},"Why Mastodon Isn't Great For Serendipity":{},"December 2021 In Review":{},"Generating a Blogroll With OPML in Hugo":{},"A Factor Analysis For Dummies in R":{},"Natural Gas Prices and The Energy Market":{},"Winnie Lim on Rebuilding Oneself":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{},"An Ad Leaflet QR Design Mistake":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"February 2022 In Review":{},"Cool Things People Do With Their Blogs":{},"Fighting Webmention And Pingback Spam":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["data!_",{"_index":10897,"title":{},"content":{"Visualizing Personal Data Takeouts":{}},"tags":{}}],["data('bfi",{"_index":10404,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["data/webmentions.json",{"_index":7438,"title":{},"content":{"Host your own webmention receiver":{}},"tags":{}}],["data](/post/2021/01/digit",{"_index":6996,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["data](/post/2021/07/waterlevel",{"_index":10492,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["data](https://medium.com/th",{"_index":10613,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["data_",{"_index":7151,"title":{},"content":{"The IndieWeb Mixed Bag":{}},"tags":{}}],["databas",{"_index":1609,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Metaprogramming instead of duplication":{},"Hiding Code Complexity":{},"Digitizing journals using DEVONthink":{},"Always have a Diaster Recovery Plan":{},"Water Levels As Public Data":{},"Emotional Magic":{},"Academic Lineage":{},"Expiry Dates On Journals":{}},"tags":{}}],["dataset](https://www.rdocumentation.org/packages/psych/versions/2.1.9/topics/bfi",{"_index":10401,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["datatypes.html#tupl",{"_index":1028,"title":{},"content":{"undefined":{}},"tags":{}}],["datatypes](http://www.diveintopython3.net/n",{"_index":1027,"title":{},"content":{"undefined":{}},"tags":{}}],["datavi",{"_index":10522,"title":{},"content":{},"tags":{"Natural Gas Prices and The Energy Market":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{}}}],["date",{"_index":482,"title":{"Expiry Dates On Journals":{}},"content":{"undefined":{},"Integration Testing with SQLite":{},"Journaling in practice":{},"Productivity Tools on all platforms":{},"Five reasons why agile and academia don't go together":{},"Programming on the Apple M1 Silicon":{},"Teaching students about coding trends":{},"Re: Is collecting physical games worth it?":{},"Book Number Fourteen":{},"Exporting Goodreads to Obsidian":{},"Freshly Baked Thoughts":{}},"tags":{}}],["datetim",{"_index":1717,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["datetimeformat",{"_index":1712,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["daughter",{"_index":5933,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["daughterboard",{"_index":5904,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["daunt",{"_index":2482,"title":{},"content":{"How to teach kids to program":{},"A Ph.D. Thesis: Iteration 2":{},"Minimalism and Tidying Up":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["david",{"_index":2814,"title":{},"content":{"Journaling in practice":{},"Nuts about local nuts":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Using Pandoc to publish a book":{},"Thoughts on Bullshit Jobs":{},"Re: Is collecting physical games worth it?":{},"Rules of a Creator's Life":{},"On Selling a Self-published Book":{},"Thirty-Six":{}},"tags":{}}],["dawn",{"_index":6769,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["day",{"_index":1,"title":{"Ending your day with happy thoughts":{}},"content":{"Ending your day with happy thoughts":{},"On finding your inner zen in big cities":{},"Learning to become a baker":{},"Bye autotools hello Scons":{},"Faking domain logic":{},"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"How to teach kids to program":{},"A samurai learning mindset":{},"Healing creative scars":{},"Inventing - for the worse?":{},"Hiding Code Complexity":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"Death to pseudocode?":{},"Teaching Object-Oriented design using the GBA":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Tracking and privacy concerns on websites":{},"An am486 Performance Analysis":{},"486 Upgrade 1: Sound Blaster 16":{},"Personal Desktop Screenshots of Olde":{},"Programming on the Apple M1 Silicon":{},"The Productive Programmer on Mac":{},"You Shouldn't Use Spotify":{},"Getting rid of trackers using LineageOS":{},"Discord killed support for WinXP":{},"Exploring the Go programming language":{},"Stop limiting yourself to JS in browsers":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Social Debt in Development Teams":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"Software Engineering Is Not Engineering":{},"Book Number Fourteen":{},"The Decline of Battery Life":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Are You In The System Yet, Sir?":{},"Favorite Game Meme":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{},"Ditch Scrum, Organize As You See Fit":{},"The Lost Art of Being Lost":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"How Not To Do A Remaster":{},"Where Does It Stop?":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Technical Knowledge Brews Creativity":{},"December 2021 In Review":{},"Why I Play Games (And So Should You)":{},"Woke in Class":{},"On Trying To Sell A Laptop":{},"My Retrocomputing Projects For 2022":{},"What a Night Cam Is Good For":{},"Cool Things People Do With Their Blogs":{},"March 2022 In Review":{}},"tags":{}}],["day\"_",{"_index":8877,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["day/galleri",{"_index":8643,"title":{},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["dayz_",{"_index":10837,"title":{},"content":{"Once Upon a Time in Shaolin":{}},"tags":{}}],["db",{"_index":1653,"title":{},"content":{"Integration Testing with SQLite":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["db](https://docs.google.com/spreadsheets/d/1lvf9noamklecphr_saa48m7suxitwii72ghrcw0wpnu/edit#gid=0",{"_index":5769,"title":{},"content":{"An am486 Performance Analysis":{}},"tags":{}}],["dbconfigurationmock",{"_index":1729,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["dc00",{"_index":11550,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["ddd",{"_index":4303,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["ddl",{"_index":1722,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["ddr",{"_index":6084,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["ddr2",{"_index":6087,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{}},"tags":{}}],["ddr3",{"_index":6120,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"The Decline of Battery Life":{}},"tags":{}}],["de",{"_index":606,"title":{"Over de inflatie van intellect":{},"De zin en onzin van conferenties":{}},"content":{"undefined":{},"2017 in books":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{},"The first Dutch Obsidian meetup":{},"The Fridge, Your Inoculation Room":{},"A Triumph For Blogging":{},"Constraint-based Creativity":{},"Migrating from Mailchimp to Listmonk":{},"Seneca on How to Live":{},"December 2021 In Review":{},"Water Usage and Prices":{},"Academic Lineage":{},"February 2022 In Review":{},"March 2022 In Review":{}},"tags":{}}],["de'bardi",{"_index":9074,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["dead",{"_index":3174,"title":{},"content":{"Take your time.":{},"Building an Athlon Windows 98 Retro PC":{},"Reducing Workflow Load Facilitates Writing":{},"On Selling a Self-published Book":{},"A 5.25\" Gobliins 2 Surprise":{},"Migrating from Mailchimp to Listmonk":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["dead[^dead",{"_index":6171,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["deadli",{"_index":2663,"title":{},"content":{"Healing creative scars":{}},"tags":{}}],["deadlin",{"_index":9162,"title":{},"content":{"Ever-increasing Work Email Spam":{}},"tags":{}}],["deal",{"_index":6554,"title":{},"content":{"RSS Feeds, Hugo, and Lazy Image Loading":{},"The Fridge, Your Inoculation Room":{},"Ever-increasing Work Email Spam":{},"Questionable Game Publishing Methods":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["dealer",{"_index":9085,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["deals](/post/2021/06/whi",{"_index":7716,"title":{},"content":{"Flea Market Season":{}},"tags":{}}],["death",{"_index":3251,"title":{"Death to pseudocode?":{},"The Death Of The Nike+ SportWatch":{}},"content":{"Belgium - Portugal: 5 - 2":{},"What if Seneca wasn't Nero's advisor?":{},"Thirty-Six":{},"The Emperor of Lists":{},"November 2021 Meta Post":{},"Technical Knowledge Brews Creativity":{},"Winnie Lim on Rebuilding Oneself":{},"A Personal Intro To Gentle Hip-Hop":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["death'",{"_index":10024,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["death](https://jefklakscodex.com/games/flip",{"_index":10068,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["deb",{"_index":2102,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["debacl",{"_index":7086,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["debat",{"_index":7085,"title":{},"content":{"Teaching students about coding trends":{},"Collective Creativity":{},"Creative Critical Thinking":{},"Technical Knowledge Brews Creativity":{},"Once Upon a Time in Shaolin":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["debates[^rm",{"_index":7252,"title":{},"content":{"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["deborah",{"_index":7615,"title":{},"content":{"Academese Gems":{}},"tags":{}}],["debt",{"_index":7564,"title":{"Social Debt in Development Teams":{}},"content":{"Social Debt in Development Teams":{},"Academese Gems":{}},"tags":{}}],["debt_",{"_index":7567,"title":{},"content":{"Social Debt in Development Teams":{}},"tags":{}}],["debug",{"_index":1215,"title":{},"content":{"undefined":{},"Unit testing in Legacy Projects: VB6":{},"A Decade in the Software Engineering industry":{},"Teaching Object-Oriented design using the GBA":{},"Hugo Extended: More static site processing power!":{},"Getting rid of trackers using LineageOS":{},"Apple's App Store Design Mistake":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["debug.writeline(george.isold",{"_index":4311,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["debugg",{"_index":11561,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["debunk",{"_index":5721,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["decad",{"_index":4387,"title":{"A Decade in the Software Engineering industry":{}},"content":{"Misconceptions about retro gamers":{},"Collective Creativity":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["deceit",{"_index":9501,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["decemb",{"_index":8191,"title":{"December 2021 In Review":{}},"content":{"On Tea Prices":{},"Allspice Is Not All Spice":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"December 2021 In Review":{},"Natural Gas Prices and The Energy Market":{},"January 2022 In Review":{}},"tags":{}}],["decennium",{"_index":3720,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["decent",{"_index":428,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Development principles in cooking":{},"An am486 Performance Analysis":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"My Retro Desk/Gaming Setup in 2021":{},"Exploring the Go programming language":{},"Host your own webmention receiver":{},"Why I Play Games (And So Should You)":{},"Thoughts On Home NAS Systems":{},"How To Stream Your Own Music: Reprise":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["decentr",{"_index":6517,"title":{},"content":{"Digitizing journals using DEVONthink":{},"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["decept",{"_index":4959,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["decibel",{"_index":3157,"title":{},"content":{"Take your time.":{}},"tags":{}}],["decid",{"_index":1011,"title":{},"content":{"Learning to become a baker":{},"Unit Testing Extjs UI with Siesta":{},"Unit testing in Legacy Projects: VB6":{},"Are you handing over enough when inspiring someone?":{},"Hiding Code Complexity":{},"Computer Science learning pathways":{},"Unit Testing PicoBlaze Assembly files":{},"Teaching Object-Oriented design using the GBA":{},"Page Building with Brizy in Wordpress":{},"Using Pandoc to publish a book":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Building a Core2Duo Windows XP Retro PC":{},"Personal Desktop Screenshots of Olde":{},"The Productive Programmer on Mac":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Teaching students about coding trends":{},"Discord killed support for WinXP":{},"Using Hugo to Launch a Gemini Capsule":{},"A Note About Footnotes":{},"Collective Creativity":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Very Old and Somewhat Old Mood Boards":{},"How Not To Do A Remaster":{},"Migrating from Mailchimp to Listmonk":{},"Dark Age of Camelot in 2022":{},"Natural Gas Prices and The Energy Market":{},"Woke in Class":{},"How to setup Pi-Hole on a Synology NAS":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"Thoughts On Home NAS Systems":{},"Visualizing Personal Data Takeouts":{},"A Personal Intro To Rough Hip-Hop":{},"March 2022 In Review":{},"The Death Of The Nike+ SportWatch":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["deciph",{"_index":11151,"title":{},"content":{"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["decis",{"_index":1941,"title":{},"content":{"Faking domain logic":{},"Are you handing over enough when inspiring someone?":{},"Computer Science learning pathways":{},"Thoughts on collaboration in education":{},"486 Upgrade 2: The SD Card HDD":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Software Engineering Is Not Engineering":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Ditch Scrum, Organize As You See Fit":{},"How Not To Do A Remaster":{},"2021 Donations":{},"Dark Age of Camelot in 2022":{},"The Creative Techniques Toolbox":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["deck",{"_index":8532,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["declar",{"_index":646,"title":{},"content":{"undefined":{},"Unit Testing Stored Procedures":{},"On Manuscript Review Procedures":{},"Software Engineering Is Not Engineering":{},"Creativity Self-Assessment Is Nonsense":{},"The HP Sprocket Mini Printer":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["declareert",{"_index":637,"title":{},"content":{"undefined":{}},"tags":{}}],["declareren",{"_index":1103,"title":{},"content":{"undefined":{}},"tags":{}}],["declin",{"_index":8271,"title":{"The Decline of Battery Life":{}},"content":{},"tags":{}}],["declining](https://mmo",{"_index":10284,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["decod",{"_index":10183,"title":{},"content":{"Three Little GameCube Mods":{},"How to setup Pi-Hole on a Synology NAS":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["decoder.charsetread",{"_index":11459,"title":{},"content":{"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["decomposit",{"_index":9526,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["decor",{"_index":436,"title":{},"content":{"No, vegetarians do not eat fish!":{},"undefined":{},"Custom Webdriver Page Factories":{},"Designing websites with accessibility in mind":{},"Very Old and Somewhat Old Mood Boards":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Dark Age of Camelot in 2022":{},"Minimalism and Tidying Up":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["decoreren",{"_index":780,"title":{},"content":{"undefined":{}},"tags":{}}],["decreas",{"_index":9111,"title":{},"content":{"Dear Student":{},"Constraint-based Creativity":{}},"tags":{}}],["decronstruct",{"_index":3306,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["decyph",{"_index":9187,"title":{},"content":{"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["dedic",{"_index":3271,"title":{},"content":{"Death to pseudocode?":{},"Project Warlock: About Perseverance":{},"The Internet Killed Secrets in Games":{},"Academese Gems":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"20 Years of Personal Cellphone History":{},"Favorite Game Meme":{},"Ditch Scrum, Organize As You See Fit":{},"Three Little GameCube Mods":{}},"tags":{}}],["deduc",{"_index":11587,"title":{},"content":{"True Backlink Support in Hugo":{}},"tags":{}}],["deduct",{"_index":3309,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["deed",{"_index":10148,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["deel",{"_index":1143,"title":{},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["deem",{"_index":9185,"title":{},"content":{"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["deep",{"_index":1852,"title":{},"content":{"Bye autotools hello Scons":{},"Development principles in cooking":{},"Hiding Code Complexity":{},"Concentrating on serendipitous creativity":{},"The Internet Killed Secrets in Games":{},"My Retro Desk/Gaming Setup in 2021":{},"Exploring the Go programming language":{},"Academese Gems":{},"Software Engineering Is Not Engineering":{},"Emotional Magic":{},"Pinball Machines in a Jenever Museum":{},"A Triumph For Blogging":{},"The Lost Art of Being Lost":{},"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["deeper",{"_index":8547,"title":{},"content":{"Kotlin Is Java 2.0, But It's Still Java":{},"Favorite Game Meme":{},"Winnie Lim on Rebuilding Oneself":{},"Choosing an Audio Codec":{},"Expiry Dates On Journals":{}},"tags":{}}],["deepli",{"_index":1935,"title":{},"content":{"Faking domain logic":{},"Re: Writing A Book Is Nonesense":{},"Winnie Lim on Rebuilding Oneself":{},"February 2022 In Review":{}},"tags":{}}],["def",{"_index":1039,"title":{},"content":{"undefined":{},"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["default",{"_index":569,"title":{},"content":{"undefined":{},"Visual Studio 2012 for Eclipse users":{},"Enhancing the builder pattern with closures":{},"Migrating from Extjs to React gradually":{},"DIY: Hosting stuff on your own VPS":{},"Reviving an old 80486 PC":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"YouTube Play Image Links in Hugo":{},"Reducing Workflow Load Facilitates Writing":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["default.aspxbrain",{"_index":5508,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["footnot",{"_index":8771,"title":{"A Note About Footnotes":{}},"content":{"A Note About Footnotes":{},"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["footnote_",{"_index":8776,"title":{},"content":{"A Note About Footnotes":{}},"tags":{}}],["for(int",{"_index":515,"title":{},"content":{"undefined":{},"Death to pseudocode?":{}},"tags":{}}],["for(var",{"_index":863,"title":{},"content":{"undefined":{}},"tags":{}}],["for](https://www.jenevermuseum.b",{"_index":8622,"title":{},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["foray",{"_index":4628,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["forbid",{"_index":9497,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["forbidden",{"_index":3156,"title":{},"content":{"Take your time.":{}},"tags":{}}],["forc",{"_index":3125,"title":{},"content":{"Hiding Code Complexity":{},"An am486 Performance Analysis":{},"Digitizing journals using DEVONthink":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Lousy Wordpress Hacking Attempts detected":{},"Moon Logic":{},"What if Seneca wasn't Nero's advisor?":{},"Technical Knowledge Brews Creativity":{},"The Creative Techniques Toolbox":{},"On Trying To Sell A Laptop":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["forcefulli",{"_index":9752,"title":{},"content":{"Where Does It Stop?":{}},"tags":{}}],["forceren",{"_index":1390,"title":{},"content":{"undefined":{}},"tags":{}}],["ford",{"_index":6579,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["ford'",{"_index":4334,"title":{},"content":{"Productivity Tools on all platforms":{},"The Productive Programmer on Mac":{}},"tags":{}}],["ford gba",{"_index":4811,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["github](https://github.com/wgroeneveld/jam",{"_index":7954,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["github](https://githut.info",{"_index":7104,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["githut'",{"_index":7103,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["gitlab",{"_index":3568,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["give",{"_index":70,"title":{},"content":{"Ending your day with happy thoughts":{},"No, vegetarians do not eat fish!":{},"Unit testing in Legacy Projects: VB6":{},"Are you handing over enough when inspiring someone?":{},"A samurai learning mindset":{},"I'm jealous of my dog":{},"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!":{},"Project Warlock: About Perseverance":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"486 Upgrade 2: The SD Card HDD":{},"The Internet Killed Secrets in Games":{},"Teaching students about coding trends":{},"Discord killed support for WinXP":{},"Software Engineering Is Not Engineering":{},"Apple's App Store Design Mistake":{},"The Fridge, Your Inoculation Room":{},"Pinball Machines in a Jenever Museum":{},"Collective Creativity":{},"Dear Student":{},"Power Usage Effectiveness":{},"2021 Donations":{},"Migrating from Mailchimp to Listmonk":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"Why Mastodon Isn't Great For Serendipity":{},"Generating a Blogroll With OPML in Hugo":{},"Woke in Class":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Academic Lineage":{},"Expiry Dates On Journals":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Fighting Webmention And Pingback Spam":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"The Death Of The Nike+ SportWatch":{}},"tags":{"Are you handing over enough when inspiring someone?":{}}}],["given",{"_index":1431,"title":{},"content":{"undefined":{},"Enhancing the builder pattern with closures":{},"Are you handing over enough when inspiring someone?":{},"Death to pseudocode?":{},"Programming: a Creative Cognitive Process":{},"ITiCSE 2020: A Report":{},"The Pilot Capless: a stellar stealth pen":{},"What if Seneca wasn't Nero's advisor?":{},"Emotional Magic":{},"2021 Donations":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Why I Play Games (And So Should You)":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["giver",{"_index":9483,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["giving](/img/sharing.png",{"_index":2411,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["glad",{"_index":265,"title":{},"content":{"On finding your inner zen in big cities":{},"3D Software Rendering on the GBA":{},"The first Dutch Obsidian meetup":{},"Flea Market Season":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["glanc",{"_index":7226,"title":{},"content":{"Exploring the Go programming language":{},"A Note About Footnotes":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["glancaebl",{"_index":9562,"title":{},"content":{"The Emperor of Lists":{}},"tags":{}}],["glasheld",{"_index":5038,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["glass",{"_index":7777,"title":{"My Kotlin Rose-Tinted Glasses Broke":{}},"content":{"Misconceptions about retro gamers":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["glide",{"_index":6692,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["global",{"_index":3021,"title":{},"content":{"Inventing - for the worse?":{},"Hugo Extended: More static site processing power!":{},"The insanity of collecting retro games":{},"Power Usage Effectiveness":{},"The Creative Techniques Toolbox":{},"Creativity Equals Messy Code?":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["global.asaxbla",{"_index":5502,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["headland",{"_index":10030,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["headlin",{"_index":9734,"title":{},"content":{"How Not To Do A Remaster":{},"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["heal",{"_index":2637,"title":{"Healing creative scars":{}},"content":{"Journaling in practice":{}},"tags":{}}],["health",{"_index":8436,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{},"The Creative Techniques Toolbox":{},"Why I Play Games (And So Should You)":{},"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["healthi",{"_index":8964,"title":{},"content":{"Parking Machines Design Mistakes":{},"A Treatise on Leavened Waffles":{},"Why I Play Games (And So Should You)":{}},"tags":{}}],["heap",{"_index":2009,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["hear",{"_index":350,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Teaching yourself to draw":{},"How to teach kids to program":{},"Favorite Game Meme":{},"Dear Student":{},"Minimalism and Tidying Up":{},"Choosing an Audio Codec":{}},"tags":{}}],["heard",{"_index":1310,"title":{},"content":{"Unit Testing Stored Procedures":{},"Digitizing journals using DEVONthink":{},"You Shouldn't Use Spotify":{},"The Pilot Capless: a stellar stealth pen":{}},"tags":{}}],["heart",{"_index":8187,"title":{},"content":{"On Tea Prices":{},"Rules of a Creator's Life":{},"Favorite Game Meme":{},"Questionable Game Publishing Methods":{}},"tags":{}}],["heat",{"_index":6104,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"The Fridge, Your Inoculation Room":{},"Power Usage Effectiveness":{},"Constraint-based Creativity":{},"Natural Gas Prices and The Energy Market":{},"Water Usage and Prices":{}},"tags":{}}],["heaven",{"_index":1513,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["heavi",{"_index":1995,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Unit Testing Extjs UI with Siesta":{},"Computer Science learning pathways":{},"Programming: a Creative Cognitive Process":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"Water Levels As Public Data":{},"20 Years of Personal Cellphone History":{},"Dear Student":{},"Power Usage Effectiveness":{},"Creative Critical Thinking":{},"Technical Knowledge Brews Creativity":{},"January 2022 In Review":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["heavier",{"_index":7505,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["heavili",{"_index":1364,"title":{},"content":{"undefined":{},"Productivity Tools on all platforms":{},"How Much Should I Spend On Magic The Gathering":{},"The Decline of Battery Life":{},"What if Seneca wasn't Nero's advisor?":{},"A Treatise on Leavened Waffles":{},"How To Enjoy Your Own Digital Music":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["heavyweight",{"_index":2047,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"Teaching by philosophy":{},"Programming on the Apple M1 Silicon":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{}},"tags":{}}],["heb",{"_index":643,"title":{},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hebben",{"_index":3477,"title":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"content":{"Over entropie":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hebt",{"_index":4147,"title":{},"content":{"Over tijdsbesef":{},"Over analoog en digitaal":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["heck",{"_index":6426,"title":{},"content":{"Programming on the Apple M1 Silicon":{},"How to write academic papers in Markdown":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["hector",{"_index":11553,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["heden",{"_index":4292,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["hedendaags",{"_index":3962,"title":{},"content":{"Over de inflatie van intellect":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hedgehog",{"_index":68,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["heeft",{"_index":489,"title":{},"content":{"undefined":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{}},"tags":{}}],["heel",{"_index":1073,"title":{},"content":{"undefined":{},"Over het introduceren van bedrijfsethiek":{},"Over tijdsbesef":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["heelal",{"_index":3479,"title":{},"content":{"Over entropie":{}},"tags":{}}],["heen",{"_index":1227,"title":{},"content":{"undefined":{},"Over de inflatie van intellect":{}},"tags":{}}],["hefti",{"_index":5567,"title":{},"content":{"ITiCSE 2020: A Report":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["hegel",{"_index":8392,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["heiddeg",{"_index":8393,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["height",{"_index":2706,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["height='16'>fe",{"_index":11642,"title":{},"content":{"Freshly Baked Thoughts":{}},"tags":{}}],["heijn",{"_index":8818,"title":{},"content":{"Are You In The System Yet, Sir?":{}},"tags":{}}],["hel",{"_index":4297,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["helaa",{"_index":3960,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["held",{"_index":6181,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{},"Water Levels As Public Data":{},"What if Seneca wasn't Nero's advisor?":{},"Collective Creativity":{}},"tags":{}}],["hele",{"_index":1151,"title":{},"content":{"undefined":{},"Over tijdsbesef":{}},"tags":{}}],["helema",{"_index":4539,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["helft",{"_index":3871,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["helicopt",{"_index":9721,"title":{},"content":{"How Not To Do A Remaster":{}},"tags":{}}],["hell",{"_index":1957,"title":{},"content":{"Faking domain logic":{},"Digitizing journals using DEVONthink":{},"Teaching students about coding trends":{},"Pinball Machines in a Jenever Museum":{},"A Treatise on Leavened Waffles":{}},"tags":{}}],["hell_",{"_index":4775,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["hellen",{"_index":9425,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["hello",{"_index":1130,"title":{"Bye autotools hello Scons":{}},"content":{"undefined":{},"How to write academic papers in Markdown":{},"Exploring the Go programming language":{},"Cheese cheese cheese cheese cheese":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["help",{"_index":149,"title":{},"content":{"Ending your day with happy thoughts":{},"Unit Testing Stored Procedures":{},"Bye autotools hello Scons":{},"Unit Testing Extjs UI with Siesta":{},"Teaching yourself to draw":{},"Healing creative scars":{},"Nuts about local nuts":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"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":{},"Project Warlock: About Perseverance":{},"3D Software Rendering on the GBA":{},"Thoughts on collaboration in education":{},"Personal Desktop Screenshots of Olde":{},"The Internet Killed Secrets in Games":{},"How to write academic papers in Markdown":{},"The IndieWeb Mixed Bag":{},"Academese Gems":{},"Water Levels As Public Data":{},"Cheese cheese cheese cheese cheese":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Parking Machines Design Mistakes":{},"A Triumph For Blogging":{},"Dear Student":{},"2021 Donations":{},"Seneca on How to Live":{},"Natural Gas Prices and The Energy Market":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"2021 Year In Review":{},"How To Enjoy Your Own Digital Music":{},"A Personal Intro To Gentle Hip-Hop":{},"Academic Lineage":{},"Choosing an Audio Codec":{},"Expiry Dates On Journals":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["hem",{"_index":4490,"title":{},"content":{"Over analoog en digitaal":{},"De zin en onzin van conferenties":{}},"tags":{}}],["henc",{"_index":3710,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"Five reasons why agile and academia don't go together":{},"What is Creativity in Software Engineering?":{},"Discord killed support for WinXP":{},"The Fridge, Your Inoculation Room":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["henri",{"_index":9822,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["henriqu",{"_index":11375,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["heraldri",{"_index":11391,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["herb",{"_index":2612,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["herbruikt",{"_index":1059,"title":{},"content":{"undefined":{}},"tags":{}}],["here",{"_index":182,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"undefined":{},"Visual Studio 2012 for Eclipse users":{},"Enhancing the builder pattern with closures":{},".NET Memory management VS JVM Memory management":{},"Development principles in cooking":{},"Nuts about local nuts":{},"Inventing - for the worse?":{},"2017 in books":{},"Take your time.":{},"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":{},"ITiCSE 2020: A Report":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"A journey through the history of webdesign":{},"The Internet Killed Secrets in Games":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Programming on the Apple M1 Silicon":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"My Retro Desk/Gaming Setup in 2021":{},"You Shouldn't Use Spotify":{},"Exploring the AlterNet":{},"Getting rid of trackers using LineageOS":{},"Nineties collecting nostalgia":{},"Re: Is collecting physical games worth it?":{},"Academese Gems":{},"Misconceptions about retro gamers":{},"Apple's App Store Design Mistake":{},"Double-dipping and Market Prices":{},"The Fridge, Your Inoculation Room":{},"The Decline of Battery Life":{},"Water Levels As Public Data":{},"What if Seneca wasn't Nero's advisor?":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"Favorite Game Meme":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{},"A Treatise on Leavened Waffles":{},"How Not To Do A Remaster":{},"Where Does It Stop?":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Why Mastodon Isn't Great For Serendipity":{},"Generating a Blogroll With OPML in Hugo":{},"A Factor Analysis For Dummies in R":{},"Natural Gas Prices and The Energy Market":{},"Re: Writing A Book Is Nonesense":{},"The Creative Techniques Toolbox":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"How to setup Pi-Hole on a Synology NAS":{},"Once Upon a Time in Shaolin":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"What a Night Cam Is Good For":{},"How To Stream Your Own Music: Reprise":{},"Leuchtturm Notebook Paper Quality":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{},"Fighting Webmention And Pingback Spam":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["here'",{"_index":1938,"title":{},"content":{"Faking domain logic":{},"Productivity Tools on all platforms":{},"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{},"How to write academic papers in Markdown":{},"Stop limiting yourself to JS in browsers":{},"The first Dutch Obsidian meetup":{},"YouTube Play Image Links in Hugo":{},"Apple's App Store Design Mistake":{},"Favorite Game Meme":{},"Very Old and Somewhat Old Mood Boards":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"Allspice Is Not All Spice":{},"Natural Gas Prices and The Energy Market":{},"Water Usage and Prices":{},"Academic Lineage":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["here](/museum/1998",{"_index":6022,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["here](/museum/2000",{"_index":6048,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["here](/post/2020/09/reviv",{"_index":5764,"title":{},"content":{"An am486 Performance Analysis":{}},"tags":{}}],["here](/post/a",{"_index":2679,"title":{},"content":{"Healing creative scars":{}},"tags":{}}],["here](https://arxiv.org/abs/2101.00837",{"_index":6632,"title":{},"content":{"What is Creativity in Software Engineering?":{}},"tags":{}}],["here](https://blog.joelbuckley.com.au/2019/01/pi",{"_index":10750,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["here](https://gohugo.io/hugo",{"_index":5196,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["here](https://lirias.kuleuven.be/retrieve/633305",{"_index":11208,"title":{},"content":{"Creativity Equals Messy Code?":{}},"tags":{}}],["here](https://web.archive.org/web/20010705221029/http://www.awhilesoft.f2s.com",{"_index":6050,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["here](https://www.gabriel",{"_index":11597,"title":{},"content":{"True Backlink Support in Hugo":{}},"tags":{}}],["herein",{"_index":11444,"title":{},"content":{"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["here’",{"_index":161,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["herhaalbaar",{"_index":3649,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["herhal",{"_index":3631,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{}},"tags":{}}],["herinn",{"_index":4285,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["herinneren",{"_index":4200,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["herinneringen",{"_index":5063,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["heritag",{"_index":7828,"title":{},"content":{"The Pilot Capless: a stellar stealth pen":{},"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["herkenbaar",{"_index":3898,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["herkurken",{"_index":4128,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["herleven",{"_index":4537,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["hero",{"_index":10606,"title":{},"content":{"Why I Play Games (And So Should You)":{},"February 2022 In Review":{}},"tags":{}}],["herodotu",{"_index":9653,"title":{},"content":{"From Curiosity To Creativity":{},"January 2022 In Review":{}},"tags":{}}],["heroes_",{"_index":11491,"title":{},"content":{"March 2022 In Review":{}},"tags":{}}],["heropsommen",{"_index":594,"title":{},"content":{"undefined":{}},"tags":{}}],["herself",{"_index":5097,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"Page Building with Brizy in Wordpress":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["heruitgav",{"_index":4522,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["hesit",{"_index":2383,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Development principles in cooking":{},"From Curiosity To Creativity":{}},"tags":{}}],["het",{"_index":495,"title":{"Over het introduceren van bedrijfsethiek":{}},"content":{"undefined":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{},"Tracking and privacy concerns on websites":{},"December 2021 In Review":{}},"tags":{}}],["heterogen",{"_index":10235,"title":{},"content":{"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["hetzelfd",{"_index":4829,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["hex",{"_index":4661,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["hexen",{"_index":5366,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["hey",{"_index":438,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Learning to become a baker":{},"Building a Core2Duo Windows XP Retro PC":{},"Programming on the Apple M1 Silicon":{},"Exploring the AlterNet":{},"Flea Market Season":{},"Why I like Pawn Stars":{},"Emotional Magic":{},"20 Years of Personal Cellphone History":{},"The Emperor of Lists":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["hi",{"_index":8664,"title":{},"content":{"Pinball Machines in a Jenever Museum":{},"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["hibern",{"_index":1998,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Exploring the Go programming language":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["hibernia",{"_index":10263,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["hick",{"_index":7382,"title":{},"content":{"On Manuscript Review Procedures":{}},"tags":{}}],["hid",{"_index":9724,"title":{},"content":{"How Not To Do A Remaster":{}},"tags":{}}],["hidden",{"_index":3122,"title":{},"content":{"Hiding Code Complexity":{},"Thinking in terms of objects":{},"Designing websites with accessibility in mind":{},"The Internet Killed Secrets in Games":{},"Software Engineering Is Not Engineering":{},"Thirty-Six":{},"Ditch Scrum, Organize As You See Fit":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"Re: Writing A Book Is Nonesense":{},"Thoughts On Home NAS Systems":{},"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["hide",{"_index":2623,"title":{"Hiding Code Complexity":{}},"content":{"Development principles in cooking":{},"Hiding Code Complexity":{},"Death to pseudocode?":{},"My Retro Desk/Gaming Setup in 2021":{},"Very Old and Somewhat Old Mood Boards":{},"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["hideou",{"_index":6828,"title":{},"content":{"How to write academic papers in Markdown":{}},"tags":{}}],["hieggelk",{"_index":10078,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["hier",{"_index":597,"title":{},"content":{"undefined":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{}},"tags":{}}],["hieraan",{"_index":642,"title":{},"content":{"undefined":{}},"tags":{}}],["hiero",{"_index":9787,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["hiero'",{"_index":9790,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["hieroglyph",{"_index":11050,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["hierond",{"_index":669,"title":{},"content":{"undefined":{}},"tags":{}}],["hierop",{"_index":833,"title":{},"content":{"undefined":{}},"tags":{}}],["hierrond",{"_index":741,"title":{},"content":{"undefined":{}},"tags":{}}],["high",{"_index":5361,"title":{},"content":{"Project Warlock: About Perseverance":{},"3D Software Rendering on the GBA":{},"An am486 Performance Analysis":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Water Levels As Public Data":{},"20 Years of Personal Cellphone History":{},"Dear Student":{},"Ever-increasing Work Email Spam":{},"Very Old and Somewhat Old Mood Boards":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"Natural Gas Prices and The Energy Market":{},"January 2022 In Review":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["higher",{"_index":3178,"title":{},"content":{"Take your time.":{},"Reverse engineering a curriculum":{},"Programming: a Creative Cognitive Process":{},"Thoughts on collaboration in education":{},"What is Creativity in Software Engineering?":{},"Discord killed support for WinXP":{},"Thirty-Six":{},"Where Does It Stop?":{},"A Factor Analysis For Dummies in R":{},"Natural Gas Prices and The Energy Market":{},"On Trying To Sell A Laptop":{},"Choosing an Audio Codec":{}},"tags":{}}],["highli",{"_index":2759,"title":{},"content":{"A quick look at 6 fountain pens":{},"Inventing - for the worse?":{},"Over het introduceren van bedrijfsethiek":{},"Programming: a Creative Cognitive Process":{},"Thoughts on Bullshit Jobs":{},"Creativity Self-Assessment Is Nonsense":{},"Favorite Game Meme":{},"Very Old and Somewhat Old Mood Boards":{},"Constraint-based Creativity":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"Dark Age of Camelot in 2022":{},"2021 Year In Review":{},"How To Enjoy Your Own Digital Music":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["highlight",{"_index":5318,"title":{},"content":{"Using Pandoc to publish a book":{},"Programming on the Apple M1 Silicon":{},"Moon Logic":{},"How Much Should I Spend On Magic The Gathering":{},"2021 Year In Review":{},"A Personal Intro To Gentle Hip-Hop":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["hij",{"_index":4175,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{}},"tags":{}}],["hike",{"_index":298,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["hilari",{"_index":11447,"title":{},"content":{"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["hill",{"_index":3132,"title":{},"content":{"Take your time.":{}},"tags":{}}],["him/her",{"_index":5150,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["him/herself",{"_index":6493,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["himself",{"_index":7605,"title":{},"content":{"Academese Gems":{},"Belgium - Portugal: 5 - 2":{},"A Triumph For Blogging":{},"Seneca on How to Live":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["hindsight",{"_index":7314,"title":{},"content":{"The first Dutch Obsidian meetup":{},"Natural Gas Prices and The Energy Market":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["hint",{"_index":6302,"title":{},"content":{"The Internet Killed Secrets in Games":{},"Moon Logic":{},"A Creative State of Mind":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["hip",{"_index":6853,"title":{"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{}},"content":{"You Shouldn't Use Spotify":{},"The HP Sprocket Mini Printer":{},"Generating a Blogroll With OPML in Hugo":{},"How To Enjoy Your Own Digital Music":{},"What a Night Cam Is Good For":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"March 2022 In Review":{}},"tags":{}}],["hire",{"_index":3843,"title":{},"content":{"Reverse engineering a curriculum":{},"Project Warlock: About Perseverance":{},"Questionable Game Publishing Methods":{}},"tags":{}}],["his/her",{"_index":6495,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["histor",{"_index":6678,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"From Curiosity To Creativity":{},"Natural Gas Prices and The Energy Market":{},"January 2022 In Review":{},"Academic Lineage":{}},"tags":{}}],["histori",{"_index":4396,"title":{"A journey through the history of webdesign":{},"20 Years of Personal Cellphone History":{}},"content":{"A Decade in the Software Engineering industry":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"The Productive Programmer on Mac":{},"The insanity of collecting retro games":{},"Software Engineering Is Not Engineering":{},"Cheese cheese cheese cheese cheese":{},"From Curiosity To Creativity":{},"Natural Gas Prices and The Energy Market":{},"Visualizing Personal Data Takeouts":{},"Academic Lineage":{},"February 2022 In Review":{},"March 2022 In Review":{}},"tags":{"Collective Creativity":{},"Constraint-based Creativity":{},"Creative Critical Thinking":{},"The Emperor of Lists":{},"From Curiosity To Creativity":{},"A Creative State of Mind":{},"Technical Knowledge Brews Creativity":{},"The Creative Techniques Toolbox":{}}}],["historian",{"_index":9057,"title":{},"content":{"Collective Creativity":{},"From Curiosity To Creativity":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["historie_",{"_index":11240,"title":{},"content":{"February 2022 In Review":{}},"tags":{}}],["history'",{"_index":7872,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["history.blogspot.be/2010/06/insid",{"_index":1033,"title":{},"content":{"undefined":{}},"tags":{}}],["history](https://www.196flavors.com/belgium",{"_index":9404,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["history_",{"_index":6610,"title":{},"content":{"The Productive Programmer on Mac":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["hit",{"_index":1974,"title":{},"content":{"Faking domain logic":{},"Are you handing over enough when inspiring someone?":{},"Development principles in cooking":{},"Death to pseudocode?":{},"Project Warlock: About Perseverance":{},"Programming on the Apple M1 Silicon":{},"You Shouldn't Use Spotify":{},"Thirty-Six":{},"Allspice Is Not All Spice":{},"Migrating from Mailchimp to Listmonk":{},"The Creative Techniques Toolbox":{},"On Trying To Sell A Laptop":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["hitch",{"_index":7403,"title":{},"content":{"On Manuscript Review Procedures":{}},"tags":{}}],["hlm9vzwv1gm",{"_index":7938,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["hln",{"_index":5596,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["hln.be",{"_index":5592,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["hln.jpg",{"_index":5598,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["hm",{"_index":2393,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["hmaqi",{"_index":6917,"title":{},"content":{"Always have a Diaster Recovery Plan":{}},"tags":{}}],["hmm",{"_index":2394,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["hmmm",{"_index":2284,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["hoard",{"_index":8052,"title":{},"content":{"Double-dipping and Market Prices":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["hobb",{"_index":4272,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["hobb'",{"_index":3046,"title":{},"content":{"2017 in books":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["hobbi",{"_index":2644,"title":{},"content":{"Healing creative scars":{},"Re: Is collecting physical games worth it?":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Very Old and Somewhat Old Mood Boards":{},"Why I Play Games (And So Should You)":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["hobbyisten",{"_index":4619,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["hoc",{"_index":5105,"title":{},"content":{"Five reasons why agile and academia don't go together":{}},"tags":{}}],["hoe",{"_index":694,"title":{},"content":{"undefined":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hoeft",{"_index":598,"title":{},"content":{"undefined":{}},"tags":{}}],["hoek",{"_index":3795,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["hoeveelheid",{"_index":3415,"title":{},"content":{"Over entropie":{},"De zin en onzin van conferenties":{}},"tags":{}}],["hog",{"_index":1992,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Journaling in practice":{}},"tags":{}}],["hoge",{"_index":3136,"title":{},"content":{"Take your time.":{}},"tags":{}}],["hogeschool",{"_index":10639,"title":{},"content":{"Woke in Class":{}},"tags":{}}],["hold",{"_index":913,"title":{},"content":{"Learning to become a baker":{},"A quick look at 6 fountain pens":{},"Reverse engineering a curriculum":{},"Domain Driven Design in C":{},"Programming on the Apple M1 Silicon":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Stop limiting yourself to JS in browsers":{},"Re: Is collecting physical games worth it?":{},"Pinball Machines in a Jenever Museum":{},"Ever-increasing Work Email Spam":{},"Very Old and Somewhat Old Mood Boards":{},"A 5.25\" Gobliins 2 Surprise":{},"A Treatise on Leavened Waffles":{},"Dark Age of Camelot in 2022":{},"Natural Gas Prices and The Energy Market":{},"How To Enjoy Your Own Digital Music":{},"A Personal Intro To Rough Hip-Hop":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["hole",{"_index":1013,"title":{"How to setup Pi-Hole on a Synology NAS":{}},"content":{"Learning to become a baker":{},"The Creative Techniques Toolbox":{},"How to setup Pi-Hole on a Synology NAS":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["hole](/post/2022/02/how",{"_index":10864,"title":{},"content":{"Thoughts On Home NAS Systems":{}},"tags":{}}],["holi",{"_index":2731,"title":{},"content":{"A quick look at 6 fountain pens":{},"Ditch Scrum, Organize As You See Fit":{},"The Emperor of Lists":{}},"tags":{}}],["holiday",{"_index":10112,"title":{},"content":{"Seneca on How to Live":{},"January 2022 In Review":{}},"tags":{}}],["holl",{"_index":3910,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["holland",{"_index":8619,"title":{},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["hollow",{"_index":7763,"title":{},"content":{"Misconceptions about retro gamers":{},"Favorite Game Meme":{},"Creative Critical Thinking":{}},"tags":{}}],["holograph",{"_index":7526,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["homag",{"_index":6263,"title":{},"content":{"The Internet Killed Secrets in Games":{}},"tags":{}}],["home",{"_index":266,"title":{"Thoughts On Home NAS Systems":{}},"content":{"On finding your inner zen in big cities":{},"How to teach kids to program":{},"Take your time.":{},"Productivity Tools on all platforms":{},"Project Warlock: About Perseverance":{},"Building a Core2Duo Windows XP Retro PC":{},"My Retro Desk/Gaming Setup in 2021":{},"Social Debt in Development Teams":{},"Flea Market Season":{},"Software Engineering Is Not Engineering":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Very Old and Somewhat Old Mood Boards":{},"The Lost Art of Being Lost":{},"Creative Critical Thinking":{},"From Curiosity To Creativity":{},"A Creative State of Mind":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Why Mastodon Isn't Great For Serendipity":{},"2021 Year In Review":{},"Thoughts On Home NAS Systems":{},"Water Usage and Prices":{},"What a Night Cam Is Good For":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["homebrew",{"_index":6453,"title":{},"content":{"Programming on the Apple M1 Silicon":{}},"tags":{}}],["homebrews](https://soffes.blog/homebrew",{"_index":6454,"title":{},"content":{"Programming on the Apple M1 Silicon":{}},"tags":{}}],["homemad",{"_index":963,"title":{},"content":{"Learning to become a baker":{},"How to teach kids to program":{}},"tags":{}}],["homepage](https://aaronparecki.com",{"_index":11360,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["hometown",{"_index":9830,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["homo",{"_index":2964,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["homophili",{"_index":10247,"title":{},"content":{"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["homosapien",{"_index":11042,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["honderden",{"_index":4041,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["hondje.jpg",{"_index":10967,"title":{},"content":{"What a Night Cam Is Good For":{}},"tags":{}}],["honest",{"_index":6854,"title":{},"content":{"You Shouldn't Use Spotify":{},"Getting rid of trackers using LineageOS":{},"How Not To Do A Remaster":{},"Thoughts On Home NAS Systems":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["honesti",{"_index":9145,"title":{},"content":{"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["honestli",{"_index":2779,"title":{},"content":{"A quick look at 6 fountain pens":{},"You Shouldn't Use Spotify":{},"Exploring the AlterNet":{},"Stop limiting yourself to JS in browsers":{},"Double-dipping and Market Prices":{},"Favorite Game Meme":{},"How Not To Do A Remaster":{}},"tags":{}}],["honey",{"_index":2906,"title":{},"content":{"I'm jealous of my dog":{},"Hiding Code Complexity":{},"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["honeycomb",{"_index":6719,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{}},"tags":{}}],["hood",{"_index":3237,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["hoofd",{"_index":3448,"title":{},"content":{"Over entropie":{},"A Ph.D. Thesis Proposal":{}},"tags":{}}],["hoogt",{"_index":4185,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["hook",{"_index":1753,"title":{},"content":{"Metaprogramming instead of duplication":{},"Webdriver Exception Handling":{},"Programming: a Creative Cognitive Process":{},"Personal Desktop Screenshots of Olde":{},"Three Little GameCube Mods":{}},"tags":{}}],["hooligans](https://ruk.ca/content/midnight",{"_index":10085,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["hoop",{"_index":1478,"title":{},"content":{"undefined":{}},"tags":{}}],["hooray",{"_index":4780,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{},"Software Engineering Is Not Engineering":{}},"tags":{}}],["hoort",{"_index":3385,"title":{},"content":{"Over entropie":{}},"tags":{}}],["hop",{"_index":2994,"title":{"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{}},"content":{"Inventing - for the worse?":{},"A Decade in the Software Engineering industry":{},"You Shouldn't Use Spotify":{},"Generating a Blogroll With OPML in Hugo":{},"How To Enjoy Your Own Digital Music":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"March 2022 In Review":{}},"tags":{}}],["hop_",{"_index":11016,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["hope",{"_index":5376,"title":{},"content":{"Project Warlock: About Perseverance":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"The Productive Programmer on Mac":{},"Exploring the AlterNet":{},"Using Hugo to Launch a Gemini Capsule":{},"The Pilot Capless: a stellar stealth pen":{},"Thirty-Six":{},"A 5.25\" Gobliins 2 Surprise":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Why Mastodon Isn't Great For Serendipity":{},"January 2022 In Review":{},"Once Upon a Time in Shaolin":{},"My Retrocomputing Projects For 2022":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{}},"tags":{}}],["hopefulli",{"_index":4945,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Hugo Extended: More static site processing power!":{},"486 Upgrade 1: Sound Blaster 16":{},"The Productive Programmer on Mac":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"My Retro Desk/Gaming Setup in 2021":{},"The IndieWeb Mixed Bag":{},"Social Debt in Development Teams":{},"Book Number Fourteen":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["hopelijk",{"_index":4500,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["hoppi",{"_index":7478,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["hoppies.jpg",{"_index":7497,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["horadr",{"_index":6276,"title":{},"content":{"The Internet Killed Secrets in Games":{}},"tags":{}}],["horen",{"_index":3374,"title":{},"content":{"Over entropie":{},"Over analoog en digitaal":{}},"tags":{}}],["horizon",{"_index":10661,"title":{},"content":{"2021 Year In Review":{}},"tags":{}}],["horizont",{"_index":5673,"title":{},"content":{"3D Software Rendering on the GBA":{},"Building a Core2Duo Windows XP Retro PC":{},"My Retro Desk/Gaming Setup in 2021":{}},"tags":{}}],["horray",{"_index":229,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["horribl",{"_index":3538,"title":{},"content":{"Computer Science learning pathways":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Cheese cheese cheese cheese cheese":{},"Allspice Is Not All Spice":{},"An Ad Leaflet QR Design Mistake":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["horrifi",{"_index":2437,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Domain Driven Design in C":{}},"tags":{}}],["hors",{"_index":9959,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["horsemen",{"_index":10268,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["hospit",{"_index":6499,"title":{},"content":{"Thoughts on Bullshit Jobs":{},"Misconceptions about retro gamers":{}},"tags":{}}],["hoss",{"_index":7878,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["host",{"_index":2012,"title":{"DIY: Hosting stuff on your own VPS":{},"Host your own webmention receiver":{}},"content":{".NET Memory management VS JVM Memory management":{},"DIY: Hosting stuff on your own VPS":{},"Page Building with Brizy in Wordpress":{},"A journey through the history of webdesign":{},"What is Creativity in Software Engineering?":{},"Always have a Diaster Recovery Plan":{},"Lousy Wordpress Hacking Attempts detected":{},"Using Hugo to Launch a Gemini Capsule":{},"Host your own webmention receiver":{},"Power Usage Effectiveness":{},"Migrating from Mailchimp to Listmonk":{},"Minimalism and Tidying Up":{},"How to setup Pi-Hole on a Synology NAS":{},"My Retrocomputing Projects For 2022":{},"How To Stream Your Own Music: Reprise":{},"March 2022 In Review":{}},"tags":{}}],["hostna",{"_index":11293,"title":{},"content":{"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["hostnam",{"_index":1407,"title":{},"content":{"undefined":{},"Using Hugo to Launch a Gemini Capsule":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["hot",{"_index":140,"title":{},"content":{"Ending your day with happy thoughts":{},"Development principles in cooking":{},"Teaching by philosophy":{},"On Tea Prices":{},"A Treatise on Leavened Waffles":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["hotel",{"_index":286,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"Faking domain logic":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["hotkey",{"_index":6620,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["hou",{"_index":4055,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["hour",{"_index":200,"title":{},"content":{"On finding your inner zen in big cities":{},"Learning to become a baker":{},"Bye autotools hello Scons":{},"Unit Testing Extjs UI with Siesta":{},"Teaching yourself to draw":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"Productivity Tools on all platforms":{},"Project Warlock: About Perseverance":{},"486 Upgrade 2: The SD Card HDD":{},"The Productive Programmer on Mac":{},"The first Dutch Obsidian meetup":{},"Host your own webmention receiver":{},"The Fridge, Your Inoculation Room":{},"How Much Should I Spend On Magic The Gathering":{},"The Decline of Battery Life":{},"Water Levels As Public Data":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Pinball Machines in a Jenever Museum":{},"Ever-increasing Work Email Spam":{},"Where Does It Stop?":{},"November 2021 Meta Post":{},"Dark Age of Camelot in 2022":{},"Why I Play Games (And So Should You)":{},"On Trying To Sell A Laptop":{},"Once Upon a Time in Shaolin":{},"March 2022 In Review":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["hous",{"_index":4410,"title":{},"content":{"A Decade in the Software Engineering industry":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"The Fridge, Your Inoculation Room":{},"Water Levels As Public Data":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Collective Creativity":{},"The Emperor of Lists":{}},"tags":{}}],["hover",{"_index":6225,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["how",{"_index":8548,"title":{},"content":{"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{}}],["how.cssselector",{"_index":1883,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["howto",{"_index":5476,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["hp",{"_index":8923,"title":{"The HP Sprocket Mini Printer":{}},"content":{"The HP Sprocket Mini Printer":{}},"tags":{}}],["hq45",{"_index":6154,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["hql",{"_index":2000,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["hr",{"_index":923,"title":{},"content":{"Learning to become a baker":{},"Thoughts on Bullshit Jobs":{}},"tags":{}}],["href",{"_index":5212,"title":{},"content":{"Hugo Extended: More static site processing power!":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["href=\"https://webmention.io/someth",{"_index":7417,"title":{},"content":{"Host your own webmention receiver":{}},"tags":{}}],["href=\"https://www.youtube.com/watch?v",{"_index":7965,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["hristo",{"_index":11574,"title":{},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["html",{"_index":1878,"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":{},"A journey through the history of webdesign":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"How to write academic papers in Markdown":{},"The IndieWeb Mixed Bag":{},"Stop limiting yourself to JS in browsers":{},"Host your own webmention receiver":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["html5",{"_index":5479,"title":{},"content":{"Designing websites with accessibility in mind":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["htmlinputbox",{"_index":1891,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["htmlsubmitbutton",{"_index":1890,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["htmlurl=\"https://brainbaking.com",{"_index":10374,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["http",{"_index":5163,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Exploring the AlterNet":{},"Teaching students about coding trends":{},"Exploring the Go programming language":{},"Using Hugo to Launch a Gemini Capsule":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["http(",{"_index":7361,"title":{},"content":{"Using Hugo to Launch a Gemini Capsule":{}},"tags":{}}],["http/1.1",{"_index":7058,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["http://bash.cyberciti.biz",{"_index":1424,"title":{},"content":{"undefined":{}},"tags":{}}],["http://cyberciti.biz/fb",{"_index":1416,"title":{},"content":{"undefined":{}},"tags":{}}],["http://groovy.codehaus.org/p",{"_index":770,"title":{},"content":{"undefined":{}},"tags":{}}],["http://racket",{"_index":1252,"title":{},"content":{"undefined":{}},"tags":{}}],["http://web.mit.edu/~axch/www/test",{"_index":1257,"title":{},"content":{"undefined":{}},"tags":{}}],["http://www.cs.utexas.edu/ftp/garbage/cs345/schintro",{"_index":1196,"title":{},"content":{"undefined":{}},"tags":{}}],["http://www.gnu.org/s/mit",{"_index":1248,"title":{},"content":{"undefined":{}},"tags":{}}],["http://www.retrogamequiz.com",{"_index":9998,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["https://developer.nike.com/servic",{"_index":11571,"title":{},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["https://github.com/miloyip/gam",{"_index":3520,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["https://github.com/sponsor",{"_index":9909,"title":{},"content":{"2021 Donations":{}},"tags":{}}],["https://github.com/wgroeneveld/gba",{"_index":5658,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["https://jam.yourdomain.com/webment",{"_index":7432,"title":{},"content":{"Host your own webmention receiver":{}},"tags":{}}],["https://jp.mercari.com",{"_index":10344,"title":{},"content":{"December 2021 In Review":{}},"tags":{}}],["https://opencollective.com",{"_index":9910,"title":{},"content":{"2021 Donations":{}},"tags":{}}],["https://s3.eu",{"_index":6637,"title":{},"content":{"What is Creativity in Software Engineering?":{}},"tags":{}}],["https://takeout.google.com",{"_index":10903,"title":{},"content":{"Visualizing Personal Data Takeouts":{}},"tags":{}}],["https://www.youtube.com/watch?v=sjdmwsbasd8",{"_index":7939,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["hub",{"_index":10863,"title":{},"content":{"My Retrocomputing Projects For 2022":{}},"tags":{}}],["hub.st/10.1109/ms.2016.144",{"_index":7570,"title":{},"content":{"Social Debt in Development Teams":{}},"tags":{}}],["huderl",{"_index":10082,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["huderle'",{"_index":11516,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["huge",{"_index":1613,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Nuts about local nuts":{},"Take your time.":{},"A Decade in the Software Engineering industry":{},"A Ph.D. Thesis: Iteration 2":{},"Re: Is collecting physical games worth it?":{},"The Decline of Battery Life":{},"Water Levels As Public Data":{},"Cheese cheese cheese cheese cheese":{},"Thirty-Six":{},"Power Usage Effectiveness":{},"The Lost Art of Being Lost":{},"From Analog Notebook to Digital Vault":{},"Technical Knowledge Brews Creativity":{},"Dark Age of Camelot in 2022":{},"Why I Play Games (And So Should You)":{},"Choosing an Audio Codec":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["hugo",{"_index":2409,"title":{"Hugo Extended: More static site processing power!":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Using Hugo to Launch a Gemini Capsule":{},"YouTube Play Image Links in Hugo":{},"Generating a Blogroll With OPML in Hugo":{},"True Backlink Support in Hugo":{}},"content":{"Are you handing over enough when inspiring someone?":{},"Hugo Extended: More static site processing power!":{},"Combining async with generators in Node 11":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Lousy Wordpress Hacking Attempts detected":{},"Using Hugo to Launch a Gemini Capsule":{},"Host your own webmention receiver":{},"YouTube Play Image Links in Hugo":{},"Generating a Blogroll With OPML in Hugo":{},"Cool Things People Do With Their Blogs":{},"True Backlink Support in Hugo":{}},"tags":{"Hugo Extended: More static site processing power!":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Host your own webmention receiver":{},"YouTube Play Image Links in Hugo":{},"Reducing Workflow Load Facilitates Writing":{},"Generating a Blogroll With OPML in Hugo":{},"True Backlink Support in Hugo":{}}}],["hugo'",{"_index":5236,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["hugo.environ",{"_index":5230,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["hugo.io",{"_index":5232,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["hugo](/post/2020/05/hugo",{"_index":6548,"title":{},"content":{"RSS Feeds, Hugo, and Lazy Image Loading":{}},"tags":{}}],["hugo](/tags/hugo",{"_index":7936,"title":{},"content":{"YouTube Play Image Links in Hugo":{},"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["hugo](https://gohugo.io",{"_index":2386,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["huh",{"_index":6901,"title":{},"content":{"Always have a Diaster Recovery Plan":{}},"tags":{}}],["hui",{"_index":4974,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["huiselijk",{"_index":4981,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["human",{"_index":2914,"title":{},"content":{"I'm jealous of my dog":{},"Death to pseudocode?":{},"Computer Science learning pathways":{},"ITiCSE 2020: A Report":{},"Flea Market Season":{},"Cheese cheese cheese cheese cheese":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"Choosing an Audio Codec":{}},"tags":{}}],["humanist",{"_index":9071,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["humanity'",{"_index":10623,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["humbl",{"_index":9755,"title":{},"content":{"Where Does It Stop?":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"The Creative Techniques Toolbox":{},"2021 Year In Review":{}},"tags":{}}],["humid",{"_index":8088,"title":{},"content":{"The Fridge, Your Inoculation Room":{}},"tags":{}}],["humor",{"_index":3904,"title":{},"content":{"Over de inflatie van intellect":{},"Woke in Class":{}},"tags":{}}],["hun",{"_index":831,"title":{},"content":{"undefined":{},"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hunch",{"_index":7372,"title":{},"content":{"On Manuscript Review Procedures":{}},"tags":{}}],["hundr",{"_index":2788,"title":{},"content":{"Journaling in practice":{},"Why I like Pawn Stars":{},"Double-dipping and Market Prices":{},"From Curiosity To Creativity":{},"Why I Play Games (And So Should You)":{},"On Trying To Sell A Laptop":{},"Water Usage and Prices":{},"Choosing an Audio Codec":{}},"tags":{}}],["hunger",{"_index":9427,"title":{},"content":{"Constraint-based Creativity":{},"Where Does It Stop?":{},"November 2021 Meta Post":{}},"tags":{}}],["hunt",{"_index":5869,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Why I like Pawn Stars":{},"Questionable Game Publishing Methods":{},"December 2021 In Review":{},"The Creative Techniques Toolbox":{},"My Retrocomputing Projects For 2022":{},"Equality in Game Credits":{}},"tags":{}}],["hunter",{"_index":6880,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["hunting_",{"_index":7465,"title":{},"content":{"Moon Logic":{}},"tags":{}}],["hurdl",{"_index":8185,"title":{},"content":{"On Tea Prices":{},"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["hurri",{"_index":9302,"title":{},"content":{"The Lost Art of Being Lost":{}},"tags":{}}],["hurt",{"_index":4330,"title":{},"content":{"Domain Driven Design in C":{},"Thoughts on Bullshit Jobs":{},"Pinball Machines in a Jenever Museum":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Thirty-Six":{},"The HP Sprocket Mini Printer":{},"Expiry Dates On Journals":{}},"tags":{}}],["hybrid",{"_index":4582,"title":{},"content":{"Over analoog en digitaal":{},"Using Hugo to Launch a Gemini Capsule":{},"The Decline of Battery Life":{}},"tags":{}}],["hygien",{"_index":11167,"title":{},"content":{"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["hyperkin",{"_index":6798,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["hét",{"_index":5005,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["héél",{"_index":4990,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["i$(gtest_dir",{"_index":1838,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["i$(gtest_dir)/includ",{"_index":7276,"title":{},"content":{"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["i'd",{"_index":1962,"title":{},"content":{"Faking domain logic":{},"Teaching yourself to draw":{},"Healing creative scars":{},"A quick look at 6 fountain pens":{},"2017 in books":{},"Death to pseudocode?":{},"A Ph.D. Thesis: Iteration 2":{},"ITiCSE 2020: A Report":{},"Thoughts on collaboration in education":{},"Digitizing journals using DEVONthink":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"What is Creativity in Software Engineering?":{},"Exploring the Go programming language":{},"Host your own webmention receiver":{},"Re: Is collecting physical games worth it?":{},"On Tea Prices":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Cheese cheese cheese cheese cheese":{},"On Selling a Self-published Book":{},"Thirty-Six":{},"A Triumph For Blogging":{},"Very Old and Somewhat Old Mood Boards":{},"Where Does It Stop?":{},"November 2021 Meta Post":{},"Three Little GameCube Mods":{},"Dark Age of Camelot in 2022":{},"Generating a Blogroll With OPML in Hugo":{},"How to setup Pi-Hole on a Synology NAS":{},"On Trying To Sell A Laptop":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"Academic Lineage":{},"Expiry Dates On Journals":{},"February 2022 In Review":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["i'll",{"_index":2034,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Healing creative scars":{},"Nuts about local nuts":{},"A Ph.D. Thesis: Iteration 2":{},"DIY: Hosting stuff on your own VPS":{},"Digitizing journals using DEVONthink":{},"The insanity of collecting retro games":{},"Getting rid of trackers using LineageOS":{},"Discord killed support for WinXP":{},"On Manuscript Review Procedures":{},"The Pilot Capless: a stellar stealth pen":{},"Book Number Fourteen":{},"Thirty-Six":{},"Are You In The System Yet, Sir?":{},"Favorite Game Meme":{},"Very Old and Somewhat Old Mood Boards":{},"A Treatise on Leavened Waffles":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"A Factor Analysis For Dummies in R":{},"Minimalism and Tidying Up":{},"Woke in Class":{},"Thoughts On Home NAS Systems":{},"Creativity Equals Messy Code?":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{},"March 2022 In Review":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["i'm",{"_index":1969,"title":{"I'm jealous of my dog":{},"I'm Joining the Coffeeneuring Challenge of 2021":{}},"content":{"Faking domain logic":{},"Are you handing over enough when inspiring someone?":{},"How to teach kids to program":{},"A samurai learning mindset":{},"Development principles in cooking":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"Nuts about local nuts":{},"I'm jealous of my dog":{},"Inventing - for the worse?":{},"2017 in books":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"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":{},"3D Software Rendering on the GBA":{},"Thoughts on collaboration in education":{},"An am486 Performance Analysis":{},"Personal Desktop Screenshots of Olde":{},"The Internet Killed Secrets in Games":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Thoughts on Bullshit Jobs":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"How to write academic papers in Markdown":{},"You Shouldn't Use Spotify":{},"Exploring the AlterNet":{},"The IndieWeb Mixed Bag":{},"Discord killed support for WinXP":{},"The first Dutch Obsidian meetup":{},"Moon Logic":{},"Re: Is collecting physical games worth it?":{},"Academese Gems":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"Software Engineering Is Not Engineering":{},"Why I like Pawn Stars":{},"Apple's App Store Design Mistake":{},"Double-dipping and Market Prices":{},"On Tea Prices":{},"Rules of a Creator's Life":{},"The Decline of Battery Life":{},"What if Seneca wasn't Nero's advisor?":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Kotlin Is Java 2.0, But It's Still Java":{},"On Selling a Self-published Book":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Thirty-Six":{},"A Note About Footnotes":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"Parking Machines Design Mistakes":{},"Ever-increasing Work Email Spam":{},"Questionable Game Publishing Methods":{},"The Emperor of Lists":{},"How Not To Do A Remaster":{},"Where Does It Stop?":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Migrating from Mailchimp to Listmonk":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"Why Mastodon Isn't Great For Serendipity":{},"December 2021 In Review":{},"Generating a Blogroll With OPML in Hugo":{},"Re: Writing A Book Is Nonesense":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"2021 Year In Review":{},"January 2022 In Review":{},"Once Upon a Time in Shaolin":{},"What a Night Cam Is Good For":{},"Academic Lineage":{},"An Ad Leaflet QR Design Mistake":{},"Expiry Dates On Journals":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"Leuchtturm Notebook Paper Quality":{},"Equality in Game Credits":{},"Fighting Webmention And Pingback Spam":{},"March 2022 In Review":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["i'v",{"_index":1279,"title":{},"content":{"Unit Testing Stored Procedures":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Unit testing in Legacy Projects: VB6":{},"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"2017 in books":{},"Hiding Code Complexity":{},"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":{},"Hugo Extended: More static site processing power!":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Programming on the Apple M1 Silicon":{},"Thoughts on Bullshit Jobs":{},"Digitizing journals using DEVONthink":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"My Retro Desk/Gaming Setup in 2021":{},"You Shouldn't Use Spotify":{},"Exploring the AlterNet":{},"The IndieWeb Mixed Bag":{},"Using Hugo to Launch a Gemini Capsule":{},"On Manuscript Review Procedures":{},"Social Debt in Development Teams":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"Book Number Fourteen":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Cheese cheese cheese cheese cheese":{},"Emotional Magic":{},"On Selling a Self-published Book":{},"20 Years of Personal Cellphone History":{},"Are You In The System Yet, Sir?":{},"Favorite Game Meme":{},"The HP Sprocket Mini Printer":{},"A Triumph For Blogging":{},"Are Digital Gardens Blogs?":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{},"Power Usage Effectiveness":{},"Exporting Goodreads to Obsidian":{},"Where Does It Stop?":{},"A Creative State of Mind":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"December 2021 In Review":{},"Generating a Blogroll With OPML in Hugo":{},"Natural Gas Prices and The Energy Market":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"How To Enjoy Your Own Digital Music":{},"How to setup Pi-Hole on a Synology NAS":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{},"A Personal Intro To Rough Hip-Hop":{},"An Ad Leaflet QR Design Mistake":{},"Creativity Equals Messy Code?":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Fighting Webmention And Pingback Spam":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"True Backlink Support in Hugo":{}},"tags":{}}],["i5",{"_index":6116,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{}},"tags":{}}],["ibm",{"_index":9337,"title":{},"content":{"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["ic",{"_index":2470,"title":{},"content":{"How to teach kids to program":{},"You Shouldn't Use Spotify":{}},"tags":{}}],["icloud",{"_index":7017,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["icon",{"_index":2360,"title":{},"content":{"Teaching yourself to draw":{},"Tracking and privacy concerns on websites":{},"Personal Desktop Screenshots of Olde":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"The Productive Programmer on Mac":{},"Apple's App Store Design Mistake":{},"How Much Should I Spend On Magic The Gathering":{},"Thirty-Six":{},"20 Years of Personal Cellphone History":{},"From Curiosity To Creativity":{},"How Not To Do A Remaster":{},"Freshly Baked Thoughts":{}},"tags":{}}],["icon`",{"_index":6027,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["ign](https://www.ign.com/articles/2019/07/17/nintendo",{"_index":8293,"title":{},"content":{"The Decline of Battery Life":{}},"tags":{}}],["ignit",{"_index":9310,"title":{},"content":{"The Lost Art of Being Lost":{}},"tags":{}}],["ignor",{"_index":2397,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Computer Science learning pathways":{},"A Decade in the Software Engineering industry":{},"IT Competences and Certificates":{},"Programming: a Creative Cognitive Process":{},"Building an Athlon Windows 98 Retro PC":{},"How to write academic papers in Markdown":{},"Social Debt in Development Teams":{},"Cheese cheese cheese cheese cheese":{},"The Lost Art of Being Lost":{},"A Treatise on Leavened Waffles":{}},"tags":{}}],["ii",{"_index":2147,"title":{},"content":{"Webdriver Exception Handling":{},"3D Software Rendering on the GBA":{},"Building an Athlon Windows 98 Retro PC":{},"The Internet Killed Secrets in Games":{},"Discord killed support for WinXP":{},"Moon Logic":{},"Flea Market Season":{},"Favorite Game Meme":{},"A Creative State of Mind":{},"Three Little GameCube Mods":{},"Dark Age of Camelot in 2022":{}},"tags":{}}],["ii'",{"_index":6265,"title":{},"content":{"The Internet Killed Secrets in Games":{}},"tags":{}}],["ii](https://jefklakscodex.com/articles/reviews/simon",{"_index":7463,"title":{},"content":{"Moon Logic":{}},"tags":{}}],["ii](https://www.eongaming.tech/product",{"_index":10195,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["ii_",{"_index":8863,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["iii",{"_index":9288,"title":{},"content":{"Questionable Game Publishing Methods":{},"How Not To Do A Remaster":{}},"tags":{}}],["iii/iv",{"_index":6078,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{}},"tags":{}}],["ik",{"_index":1185,"title":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"content":{"undefined":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["ikea",{"_index":6717,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{}},"tags":{}}],["ill",{"_index":11108,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["illiteraci",{"_index":8416,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["illumin",{"_index":9835,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["illus",{"_index":9455,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["illustr",{"_index":2367,"title":{},"content":{"Teaching yourself to draw":{},"Page Building with Brizy in Wordpress":{}},"tags":{}}],["im",{"_index":7016,"title":{},"content":{"Getting rid of trackers using LineageOS":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["imag",{"_index":2123,"title":{"RSS Feeds, Hugo, and Lazy Image Loading":{},"YouTube Play Image Links in Hugo":{}},"content":{"Webdriver Exception Handling":{},"I'm jealous of my dog":{},"2017 in books":{},"IT Competences and Certificates":{},"Tracking and privacy concerns on websites":{},"A journey through the history of webdesign":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"How to write academic papers in Markdown":{},"Getting rid of trackers using LineageOS":{},"Lousy Wordpress Hacking Attempts detected":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"Reducing Workflow Load Facilitates Writing":{},"From Analog Notebook to Digital Vault":{},"A Creative State of Mind":{},"November 2021 Meta Post":{},"Woke in Class":{},"March 2022 In Review":{}},"tags":{}}],["image.html",{"_index":6564,"title":{},"content":{"RSS Feeds, Hugo, and Lazy Image Loading":{}},"tags":{}}],["image[^pi",{"_index":10722,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["image](https://www.navidrome.org/docs/installation/dock",{"_index":11287,"title":{},"content":{"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["image_",{"_index":8221,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["imageformat.png",{"_index":2131,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["imagemagick",{"_index":6459,"title":{},"content":{"Programming on the Apple M1 Silicon":{},"YouTube Play Image Links in Hugo":{},"From Analog Notebook to Digital Vault":{}},"tags":{}}],["images![^tip",{"_index":6572,"title":{},"content":{"RSS Feeds, Hugo, and Lazy Image Loading":{}},"tags":{}}],["imagin",{"_index":1932,"title":{},"content":{"Faking domain logic":{},"Unit testing in Legacy Projects: VB6":{},"Reverse engineering a curriculum":{},"Programming: a Creative Cognitive Process":{},"Thoughts on Bullshit Jobs":{},"Thirty-Six":{},"The Lost Art of Being Lost":{},"The Emperor of Lists":{},"Why Mastodon Isn't Great For Serendipity":{},"A Personal Intro To Gentle Hip-Hop":{},"February 2022 In Review":{}},"tags":{}}],["imaginari",{"_index":9165,"title":{},"content":{"Ever-increasing Work Email Spam":{},"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["imbu",{"_index":11623,"title":{},"content":{"Wax Seals And Snail Mail":{}},"tags":{}}],["img",{"_index":4153,"title":{},"content":{"Over tijdsbesef":{},"Programming: a Creative Cognitive Process":{},"RSS Feeds, Hugo, and Lazy Image Loading":{}},"tags":{}}],["img/analoguent.jpg",{"_index":4589,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["img/desktopshots/engagebusy_febr2005.jpg",{"_index":6226,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["img/desktopshots/feb2004.jpg",{"_index":6203,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["img/desktopshots/fvwm_aug2004.jpg",{"_index":6208,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["img/desktopshots/fvwm_confnew_20051027_1.jpg",{"_index":6242,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["img/desktopshots/lila_sept2004.jpg",{"_index":6217,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["img/tnmt.jpg",{"_index":5061,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["imhoff'",{"_index":10467,"title":{},"content":{"Minimalism and Tidying Up":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["imit",{"_index":2571,"title":{},"content":{"A samurai learning mindset":{},"Why I like Pawn Stars":{}},"tags":{}}],["immedi",{"_index":2469,"title":{},"content":{"How to teach kids to program":{},"Combining async with generators in Node 11":{},"Reducing Workflow Load Facilitates Writing":{},"Emotional Magic":{},"A Note About Footnotes":{},"Favorite Game Meme":{},"Dear Student":{},"The Emperor of Lists":{},"Seneca on How to Live":{},"How To Stream Your Own Music: Reprise":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["immens",{"_index":10697,"title":{},"content":{"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["immer",{"_index":3364,"title":{},"content":{"Over entropie":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["immin",{"_index":3231,"title":{},"content":{"Concentrating on serendipitous creativity":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["immort",{"_index":7851,"title":{},"content":{"The Pilot Capless: a stellar stealth pen":{}},"tags":{}}],["immut",{"_index":798,"title":{},"content":{"undefined":{}},"tags":{}}],["imp",{"_index":10042,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["impact",{"_index":5550,"title":{},"content":{"ITiCSE 2020: A Report":{},"The first Dutch Obsidian meetup":{},"Favorite Game Meme":{},"Collective Creativity":{},"Why I Play Games (And So Should You)":{},"2021 Year In Review":{},"Once Upon a Time in Shaolin":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["impact_",{"_index":9317,"title":{},"content":{"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["impass",{"_index":3223,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["impatient.hello\\r\\n\\t\\t\\r\\n\\t\\r\\nr",{"_index":1441,"title":{},"content":{"undefined":{}},"tags":{}}],["passwords](https://www.huderlem.com/blog/posts/carrot",{"_index":11517,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["past",{"_index":4,"title":{},"content":{"Ending your day with happy thoughts":{},"Development principles in cooking":{},"I'm jealous of my dog":{},"Inventing - for the worse?":{},"Death to pseudocode?":{},"Building an Athlon Windows 98 Retro PC":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The insanity of collecting retro games":{},"Discord killed support for WinXP":{},"YouTube Play Image Links in Hugo":{},"Water Levels As Public Data":{},"Kotlin Is Java 2.0, But It's Still Java":{},"The HP Sprocket Mini Printer":{},"Are Digital Gardens Blogs?":{},"Questionable Game Publishing Methods":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"Natural Gas Prices and The Energy Market":{},"Woke in Class":{},"2021 Year In Review":{},"January 2022 In Review":{},"Once Upon a Time in Shaolin":{},"My Retrocomputing Projects For 2022":{},"Academic Lineage":{}},"tags":{}}],["past_",{"_index":8065,"title":{},"content":{"Double-dipping and Market Prices":{}},"tags":{}}],["pasta",{"_index":448,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["pasta’",{"_index":440,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["pasteur",{"_index":9517,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["pat",{"_index":11140,"title":{},"content":{"Academic Lineage":{}},"tags":{}}],["patch",{"_index":6200,"title":{},"content":{"Personal Desktop Screenshots of Olde":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"How Not To Do A Remaster":{},"Generating a Blogroll With OPML in Hugo":{},"Why I Play Games (And So Should You)":{},"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["path",{"_index":1409,"title":{},"content":{"undefined":{},"Computer Science learning pathways":{},"A Decade in the Software Engineering industry":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Kotlin Is Java 2.0, But It's Still Java":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Seneca on How to Live":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["pathet",{"_index":3151,"title":{},"content":{"Take your time.":{}},"tags":{}}],["pathway",{"_index":3517,"title":{"Computer Science learning pathways":{}},"content":{"Moon Logic":{},"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["patienc",{"_index":7983,"title":{},"content":{"Apple's App Store Design Mistake":{}},"tags":{}}],["patient",{"_index":9700,"title":{},"content":{"How Not To Do A Remaster":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["patreon",{"_index":9897,"title":{},"content":{"2021 Donations":{}},"tags":{}}],["patrick",{"_index":10338,"title":{},"content":{"December 2021 In Review":{}},"tags":{}}],["patron",{"_index":9062,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["pattern",{"_index":1599,"title":{"Enhancing the builder pattern with closures":{}},"content":{"Enhancing the builder pattern with closures":{},"Metaprogramming instead of duplication":{},"Are you handing over enough when inspiring someone?":{},"Hiding Code Complexity":{},"Computer Science learning pathways":{},"Programming: a Creative Cognitive Process":{},"Digitizing journals using DEVONthink":{},"Getting rid of trackers using LineageOS":{},"Teaching students about coding trends":{},"Social Debt in Development Teams":{},"Software Engineering Is Not Engineering":{},"Collective Creativity":{},"A Creative State of Mind":{},"A Factor Analysis For Dummies in R":{},"Winnie Lim on Rebuilding Oneself":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["patterns](https://sourcemaking.com/design_patterns/singleton",{"_index":7576,"title":{},"content":{"Social Debt in Development Teams":{}},"tags":{}}],["patterson'",{"_index":10847,"title":{},"content":{"My Retrocomputing Projects For 2022":{}},"tags":{}}],["paul",{"_index":8533,"title":{},"content":{"Emotional Magic":{},"Collective Creativity":{},"Constraint-based Creativity":{},"December 2021 In Review":{},"February 2022 In Review":{}},"tags":{}}],["paus",{"_index":8838,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{}},"tags":{}}],["pave",{"_index":9457,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["pawn",{"_index":7717,"title":{"Why I like Pawn Stars":{}},"content":{"Flea Market Season":{},"Why I like Pawn Stars":{}},"tags":{}}],["pay",{"_index":1710,"title":{},"content":{"Integration Testing with SQLite":{},"Nuts about local nuts":{},"I'm jealous of my dog":{},"Domain Driven Design in C":{},"Tracking and privacy concerns on websites":{},"486 Upgrade 1: Sound Blaster 16":{},"Thoughts on Bullshit Jobs":{},"The Productive Programmer on Mac":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"Emotional Magic":{},"Are You In The System Yet, Sir?":{},"Parking Machines Design Mistakes":{},"Are Digital Gardens Blogs?":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"The Emperor of Lists":{},"Natural Gas Prices and The Energy Market":{},"Woke in Class":{},"Thoughts On Home NAS Systems":{},"Water Usage and Prices":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["payconiq",{"_index":8968,"title":{},"content":{"Parking Machines Design Mistakes":{}},"tags":{}}],["payment",{"_index":8967,"title":{},"content":{"Parking Machines Design Mistakes":{}},"tags":{}}],["payoff",{"_index":4301,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["payout",{"_index":6872,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["paz'",{"_index":11111,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["pc",{"_index":1319,"title":{"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{}},"content":{"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{},"Project Warlock: About Perseverance":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"486 Upgrade 1: Sound Blaster 16":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"The Productive Programmer on Mac":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Discord killed support for WinXP":{},"Moon Logic":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"YouTube Play Image Links in Hugo":{},"The HP Sprocket Mini Printer":{},"A 5.25\" Gobliins 2 Surprise":{},"How To Enjoy Your Own Digital Music":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["pc.18845723",{"_index":6163,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["pc](/post/2020/09/reviv",{"_index":5808,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{},"486 Upgrade 1: Sound Blaster 16":{},"Building an Athlon Windows 98 Retro PC":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["pc](/post/2020/10/build",{"_index":6059,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["pc_",{"_index":6159,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["pcb",{"_index":5879,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"Three Little GameCube Mods":{}},"tags":{}}],["pci",{"_index":6090,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Belgium - Portugal: 5 - 2":{},"Three Little GameCube Mods":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["pci128",{"_index":6311,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["pcpbench",{"_index":5796,"title":{},"content":{"An am486 Performance Analysis":{}},"tags":{}}],["pcs](/post/2020/09/486",{"_index":6357,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["pcs](/post/2021/02/mi",{"_index":7183,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["pdf",{"_index":1580,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Using Pandoc to publish a book":{},"From Analog Notebook to Digital Vault":{}},"tags":{}}],["pdflatex",{"_index":5303,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["peac",{"_index":269,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"My Retro Desk/Gaming Setup in 2021":{},"Technical Knowledge Brews Creativity":{},"Minimalism and Tidying Up":{}},"tags":{}}],["peacefulli",{"_index":10578,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["peachi",{"_index":9947,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{},"Woke in Class":{}},"tags":{}}],["peak",{"_index":5549,"title":{},"content":{"ITiCSE 2020: A Report":{},"Building a Core2Duo Windows XP Retro PC":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"A Triumph For Blogging":{}},"tags":{}}],["peanut",{"_index":10984,"title":{},"content":{"What a Night Cam Is Good For":{}},"tags":{}}],["pedal",{"_index":8253,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["pedant",{"_index":11249,"title":{},"content":{"February 2022 In Review":{}},"tags":{}}],["peek",{"_index":6228,"title":{},"content":{"Personal Desktop Screenshots of Olde":{},"Moon Logic":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["peer",{"_index":3229,"title":{},"content":{"Concentrating on serendipitous creativity":{},"Five reasons why agile and academia don't go together":{},"Thoughts on collaboration in education":{},"On Manuscript Review Procedures":{},"Academese Gems":{},"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["peers](https://theconversation.com/academ",{"_index":7621,"title":{},"content":{"Academese Gems":{}},"tags":{}}],["peko",{"_index":8178,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["pen",{"_index":460,"title":{"A quick look at 6 fountain pens":{},"The Pilot Capless: a stellar stealth pen":{}},"content":{"No, vegetarians do not eat fish!":{},"A quick look at 6 fountain pens":{},"Over de inflatie van intellect":{},"The first Dutch Obsidian meetup":{},"Flea Market Season":{},"The Pilot Capless: a stellar stealth pen":{},"Why I like Pawn Stars":{},"Book Number Fourteen":{},"What if Seneca wasn't Nero's advisor?":{},"Are You In The System Yet, Sir?":{},"A Triumph For Blogging":{},"Very Old and Somewhat Old Mood Boards":{},"The Emperor of Lists":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"Why Mastodon Isn't Great For Serendipity":{},"Winnie Lim on Rebuilding Oneself":{},"Leuchtturm Notebook Paper Quality":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["penandpencil.jpg",{"_index":8986,"title":{},"content":{"A Triumph For Blogging":{}},"tags":{}}],["pencil",{"_index":58,"title":{},"content":{"Ending your day with happy thoughts":{},"A Triumph For Blogging":{}},"tags":{}}],["pencil.that",{"_index":164,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["penetr",{"_index":11012,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["pens.jpg",{"_index":7854,"title":{},"content":{"The Pilot Capless: a stellar stealth pen":{}},"tags":{}}],["pens](/img/6pen",{"_index":2761,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["pens](/post/2017/07/fountain",{"_index":7816,"title":{},"content":{"The Pilot Capless: a stellar stealth pen":{}},"tags":{}}],["pentium",{"_index":6077,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["penz",{"_index":2722,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["peopl",{"_index":277,"title":{"Cool Things People Do With Their Blogs":{}},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"Learning to become a baker":{},"Unit Testing Stored Procedures":{},"Faking domain logic":{},"Teaching yourself to draw":{},"How to teach kids to program":{},"Development principles in cooking":{},"Journaling in practice":{},"Nuts about local nuts":{},"Inventing - for the worse?":{},"Hiding Code Complexity":{},"Take your time.":{},"Reverse engineering a curriculum":{},"A Decade in the Software Engineering industry":{},"A Ph.D. Thesis: Iteration 2":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Project Warlock: About Perseverance":{},"Designing websites with accessibility in mind":{},"Thoughts on Bullshit Jobs":{},"The Productive Programmer on Mac":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Exploring the AlterNet":{},"Discord killed support for WinXP":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"Host your own webmention receiver":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"Double-dipping and Market Prices":{},"On Tea Prices":{},"Rules of a Creator's Life":{},"Water Levels As Public Data":{},"What if Seneca wasn't Nero's advisor?":{},"On Selling a Self-published Book":{},"Creativity Self-Assessment Is Nonsense":{},"A Triumph For Blogging":{},"Are Digital Gardens Blogs?":{},"Ditch Scrum, Organize As You See Fit":{},"Power Usage Effectiveness":{},"The Lost Art of Being Lost":{},"Creative Critical Thinking":{},"How Not To Do A Remaster":{},"A Creative State of Mind":{},"Migrating from Mailchimp to Listmonk":{},"Why Mastodon Isn't Great For Serendipity":{},"Re: Writing A Book Is Nonesense":{},"The Creative Techniques Toolbox":{},"Why I Play Games (And So Should You)":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Academic Lineage":{},"Expiry Dates On Journals":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Cool Things People Do With Their Blogs":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["people'",{"_index":3103,"title":{},"content":{"Hiding Code Complexity":{},"The Emperor of Lists":{}},"tags":{}}],["peplin",{"_index":4476,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{}}],["pepper",{"_index":2603,"title":{},"content":{"Development principles in cooking":{},"Allspice Is Not All Spice":{}},"tags":{}}],["per",{"_index":2392,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"I'm jealous of my dog":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"Building a Core2Duo Windows XP Retro PC":{},"The Internet Killed Secrets in Games":{},"You Shouldn't Use Spotify":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"Water Levels As Public Data":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["perceiv",{"_index":4927,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Thoughts on Bullshit Jobs":{}},"tags":{}}],["percent",{"_index":9858,"title":{},"content":{"Allspice Is Not All Spice":{},"The Creative Techniques Toolbox":{},"Woke in Class":{},"Water Usage and Prices":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["percentag",{"_index":6491,"title":{},"content":{"Thoughts on Bullshit Jobs":{},"Discord killed support for WinXP":{}},"tags":{}}],["percentages_",{"_index":9387,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["perfect",{"_index":1990,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"IT Competences and Certificates":{},"486 Upgrade 2: The SD Card HDD":{},"Exploring the Go programming language":{},"Rules of a Creator's Life":{},"Constraint-based Creativity":{},"From Curiosity To Creativity":{},"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["perfectli",{"_index":3082,"title":{},"content":{"2017 in books":{},"Social Debt in Development Teams":{},"Re: Writing A Book Is Nonesense":{},"Expiry Dates On Journals":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["perform",{"_index":2078,"title":{"An am486 Performance Analysis":{}},"content":{"Unit Testing Extjs UI with Siesta":{},"ITiCSE 2020: A Report":{},"An am486 Performance Analysis":{},"Reviving an old 80486 PC":{},"Programming on the Apple M1 Silicon":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Social Debt in Development Teams":{},"The Pilot Capless: a stellar stealth pen":{},"Creativity Self-Assessment Is Nonsense":{},"Ditch Scrum, Organize As You See Fit":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["pergamon",{"_index":9421,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["perhap",{"_index":5085,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"ITiCSE 2020: A Report":{},"486 Upgrade 1: Sound Blaster 16":{},"The insanity of collecting retro games":{},"Teaching students about coding trends":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Re: Is collecting physical games worth it?":{},"Social Debt in Development Teams":{},"Academese Gems":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"The Pilot Capless: a stellar stealth pen":{},"Reducing Workflow Load Facilitates Writing":{},"What if Seneca wasn't Nero's advisor?":{},"On Selling a Self-published Book":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Thirty-Six":{},"Creativity Self-Assessment Is Nonsense":{},"Favorite Game Meme":{},"Parking Machines Design Mistakes":{},"Collective Creativity":{},"Very Old and Somewhat Old Mood Boards":{},"The Lost Art of Being Lost":{},"Where Does It Stop?":{},"Migrating from Mailchimp to Listmonk":{},"Three Little GameCube Mods":{},"A Factor Analysis For Dummies in R":{},"Re: Writing A Book Is Nonesense":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"On Trying To Sell A Laptop":{},"My Retrocomputing Projects For 2022":{},"What a Night Cam Is Good For":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Academic Lineage":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{},"Equality in Game Credits":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["period",{"_index":946,"title":{},"content":{"Learning to become a baker":{},"Concentrating on serendipitous creativity":{},"Over tijdsbesef":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Water Levels As Public Data":{},"From Curiosity To Creativity":{},"A Creative State of Mind":{},"What a Night Cam Is Good For":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["perish_",{"_index":7378,"title":{},"content":{"On Manuscript Review Procedures":{},"Equality in Game Credits":{}},"tags":{}}],["perl",{"_index":714,"title":{},"content":{"undefined":{},"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["permalink",{"_index":8245,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{},"True Backlink Support in Hugo":{}},"tags":{}}],["perman",{"_index":9571,"title":{},"content":{"Exporting Goodreads to Obsidian":{},"Dark Age of Camelot in 2022":{},"December 2021 In Review":{}},"tags":{}}],["permiss",{"_index":6711,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Exploring the Go programming language":{},"Woke in Class":{}},"tags":{}}],["permitrootlogin",{"_index":5149,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["pernici",{"_index":6478,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["persever",{"_index":5340,"title":{"Project Warlock: About Perseverance":{}},"content":{"The Internet Killed Secrets in Games":{}},"tags":{}}],["persian",{"_index":9657,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["persist",{"_index":3101,"title":{},"content":{"Hiding Code Complexity":{},"DIY: Hosting stuff on your own VPS":{},"Misconceptions about retro gamers":{},"Water Levels As Public Data":{},"Collective Creativity":{},"2021 Year In Review":{}},"tags":{}}],["person",{"_index":368,"title":{"Personal Desktop Screenshots of Olde":{},"20 Years of Personal Cellphone History":{},"Visualizing Personal Data Takeouts":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{}},"content":{"No, vegetarians do not eat fish!":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"I'm jealous of my dog":{},"Domain Driven Design in C":{},"A Ph.D. Thesis: Iteration 2":{},"Project Warlock: About Perseverance":{},"ITiCSE 2020: A Report":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Digitizing journals using DEVONthink":{},"What is Creativity in Software Engineering?":{},"Discord killed support for WinXP":{},"Using Hugo to Launch a Gemini Capsule":{},"Moon Logic":{},"Re: Is collecting physical games worth it?":{},"Academese Gems":{},"On Selling a Self-published Book":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"Favorite Game Meme":{},"Parking Machines Design Mistakes":{},"Are Digital Gardens Blogs?":{},"Collective Creativity":{},"Dear Student":{},"A 5.25\" Gobliins 2 Surprise":{},"Exporting Goodreads to Obsidian":{},"From Analog Notebook to Digital Vault":{},"Technical Knowledge Brews Creativity":{},"A Factor Analysis For Dummies in R":{},"Re: Writing A Book Is Nonesense":{},"2021 Year In Review":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"Thoughts On Home NAS Systems":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Expiry Dates On Journals":{},"How To Stream Your Own Music: Reprise":{},"Equality in Game Credits":{},"None Of My Best Friends Are Content Creators":{},"Freshly Baked Thoughts":{}},"tags":{}}],["person(65",{"_index":4310,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["person(int",{"_index":4305,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["person_is_old",{"_index":4329,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["person_is_old(person",{"_index":4328,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["personag",{"_index":3917,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["personalti",{"_index":10394,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["personen",{"_index":3698,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["persoon",{"_index":3398,"title":{},"content":{"Over entropie":{},"De zin en onzin van conferenties":{}},"tags":{}}],["persoonlijk",{"_index":3777,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["perspect",{"_index":323,"title":{},"content":{"On finding your inner zen in big cities":{},"Programming on the Apple M1 Silicon":{},"Re: Is collecting physical games worth it?":{},"Constraint-based Creativity":{},"Dark Age of Camelot in 2022":{}},"tags":{}}],["perspectief",{"_index":4256,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["persuad",{"_index":9500,"title":{},"content":{"Creative Critical Thinking":{},"From Curiosity To Creativity":{}},"tags":{}}],["pescatarian",{"_index":354,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["peso",{"_index":7157,"title":{},"content":{"The IndieWeb Mixed Bag":{}},"tags":{}}],["pesos](/post/2021/03/th",{"_index":9574,"title":{},"content":{"Exporting Goodreads to Obsidian":{}},"tags":{}}],["pet",{"_index":3191,"title":{},"content":{"Take your time.":{}},"tags":{}}],["peter",{"_index":8049,"title":{},"content":{"Double-dipping and Market Prices":{},"Thirty-Six":{},"A Triumph For Blogging":{},"A 5.25\" Gobliins 2 Surprise":{},"November 2021 Meta Post":{},"December 2021 In Review":{}},"tags":{}}],["peter'",{"_index":8989,"title":{},"content":{"A Triumph For Blogging":{},"A 5.25\" Gobliins 2 Surprise":{},"A Treatise on Leavened Waffles":{}},"tags":{}}],["petit",{"_index":5932,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["petri",{"_index":3587,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["pexels](https://pexels.com",{"_index":4723,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["ph.d",{"_index":3708,"title":{"A Ph.D. Thesis Proposal":{},"A Ph.D. Thesis: Iteration 2":{}},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["pharaoh",{"_index":10033,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["phase",{"_index":1338,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["phd",{"_index":3559,"title":{},"content":{"The Startup of a Lean Doctorate":{},"Thoughts on collaboration in education":{},"What is Creativity in Software Engineering?":{},"On Manuscript Review Procedures":{},"Ever-increasing Work Email Spam":{},"Academic Lineage":{}},"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":{},"What is Creativity in Software Engineering?":{},"A Factor Analysis For Dummies in R":{},"Creativity Equals Messy Code?":{}}}],["phenomena",{"_index":9528,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["phenomenon",{"_index":3841,"title":{},"content":{"Reverse engineering a curriculum":{},"Thoughts on Bullshit Jobs":{}},"tags":{}}],["phil",{"_index":5850,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{}},"tags":{}}],["phil'",{"_index":5767,"title":{},"content":{"An am486 Performance Analysis":{},"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["philosoph",{"_index":8384,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{},"Emotional Magic":{},"Collective Creativity":{},"The Lost Art of Being Lost":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"December 2021 In Review":{},"Winnie Lim on Rebuilding Oneself":{},"February 2022 In Review":{},"March 2022 In Review":{}},"tags":{}}],["philosophi",{"_index":2948,"title":{"Teaching by philosophy":{}},"content":{"I'm jealous of my dog":{},"Inventing - for the worse?":{},"2017 in books":{},"Reverse engineering a curriculum":{},"What if Seneca wasn't Nero's advisor?":{},"Creative Critical Thinking":{},"Minimalism and Tidying Up":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{"Teaching by philosophy":{},"What if Seneca wasn't Nero's advisor?":{},"Seneca on How to Live":{}}}],["philosophy](/post/teach",{"_index":3808,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["phish",{"_index":11160,"title":{},"content":{"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["phixion",{"_index":11105,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["phixion_",{"_index":10683,"title":{},"content":{"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["phone",{"_index":7019,"title":{},"content":{"Getting rid of trackers using LineageOS":{},"20 Years of Personal Cellphone History":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["photo",{"_index":5901,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"My Retro Desk/Gaming Setup in 2021":{},"The insanity of collecting retro games":{},"Flea Market Season":{},"The Fridge, Your Inoculation Room":{},"Water Levels As Public Data":{},"Pinball Machines in a Jenever Museum":{},"20 Years of Personal Cellphone History":{},"The HP Sprocket Mini Printer":{},"Are Digital Gardens Blogs?":{},"Questionable Game Publishing Methods":{},"Three Little GameCube Mods":{},"How To Enjoy Your Own Digital Music":{},"Visualizing Personal Data Takeouts":{},"March 2022 In Review":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["photograph",{"_index":5532,"title":{},"content":{"ITiCSE 2020: A Report":{},"486 Upgrade 1: Sound Blaster 16":{},"Very Old and Somewhat Old Mood Boards":{},"March 2022 In Review":{}},"tags":{}}],["photographi",{"_index":8759,"title":{},"content":{"20 Years of Personal Cellphone History":{}},"tags":{}}],["php",{"_index":5266,"title":{},"content":{"Page Building with Brizy in Wordpress":{},"Very Old and Somewhat Old Mood Boards":{}},"tags":{"Page Building with Brizy in Wordpress":{}}}],["physic",{"_index":1589,"title":{"Re: Is collecting physical games worth it?":{}},"content":{"Visual Studio 2012 for Eclipse users":{},"Teaching yourself to draw":{},"Computer Science learning pathways":{},"Programming: a Creative Cognitive Process":{},"Using Pandoc to publish a book":{},"The insanity of collecting retro games":{},"Nineties collecting nostalgia":{},"Re: Is collecting physical games worth it?":{},"Misconceptions about retro gamers":{},"Why I like Pawn Stars":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"On Selling a Self-published Book":{},"Ever-increasing Work Email Spam":{},"Power Usage Effectiveness":{},"Questionable Game Publishing Methods":{},"Migrating from Mailchimp to Listmonk":{},"Technical Knowledge Brews Creativity":{},"Minimalism and Tidying Up":{},"Once Upon a Time in Shaolin":{},"An Ad Leaflet QR Design Mistake":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["pi",{"_index":4580,"title":{"How to setup Pi-Hole on a Synology NAS":{}},"content":{"Over analoog en digitaal":{},"How to setup Pi-Hole on a Synology NAS":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["picasso",{"_index":9104,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["picasso'",{"_index":9459,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["pick",{"_index":3485,"title":{},"content":{"Teaching by philosophy":{},"Building an Athlon Windows 98 Retro PC":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Exploring the Go programming language":{},"Moon Logic":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"A Note About Footnotes":{},"Favorite Game Meme":{},"Questionable Game Publishing Methods":{},"November 2021 Meta Post":{},"Dark Age of Camelot in 2022":{},"A Factor Analysis For Dummies in R":{},"The Creative Techniques Toolbox":{},"Woke in Class":{},"2021 Year In Review":{},"January 2022 In Review":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["picki",{"_index":2621,"title":{},"content":{"Development principles in cooking":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Exploring the Go programming language":{}},"tags":{}}],["pickl",{"_index":9972,"title":{},"content":{"Migrating from Mailchimp to Listmonk":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["picoblaz",{"_index":4623,"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":4631,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["pictur",{"_index":2760,"title":{},"content":{"A quick look at 6 fountain pens":{},"Journaling in practice":{},"Take your time.":{},"Nineties collecting nostalgia":{},"Water Levels As Public Data":{},"On Selling a Self-published Book":{},"20 Years of Personal Cellphone History":{},"The HP Sprocket Mini Printer":{},"Questionable Game Publishing Methods":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Monthly Retro Screenshot Guessing Quiz":{},"The Creative Techniques Toolbox":{},"Winnie Lim on Rebuilding Oneself":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["piec",{"_index":1062,"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":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Programming on the Apple M1 Silicon":{},"The Productive Programmer on Mac":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"My Retro Desk/Gaming Setup in 2021":{},"Using Hugo to Launch a Gemini Capsule":{},"Flea Market Season":{},"On Tea Prices":{},"The Decline of Battery Life":{},"Emotional Magic":{},"Collective Creativity":{},"Dear Student":{},"Very Old and Somewhat Old Mood Boards":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"The Emperor of Lists":{},"2021 Donations":{},"Technical Knowledge Brews Creativity":{},"Why Mastodon Isn't Great For Serendipity":{},"The Creative Techniques Toolbox":{},"Leuchtturm Notebook Paper Quality":{},"True Backlink Support in Hugo":{}},"tags":{}}],["piet",{"_index":4827,"title":{},"content":{"De zin en onzin van conferenties":{},"Collective Creativity":{}},"tags":{}}],["pig",{"_index":3182,"title":{},"content":{"Take your time.":{}},"tags":{}}],["piholesetup1.jpg",{"_index":10742,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["pijn",{"_index":3384,"title":{},"content":{"Over entropie":{}},"tags":{}}],["pike",{"_index":6968,"title":{},"content":{"Exploring the AlterNet":{},"From Curiosity To Creativity":{}},"tags":{}}],["piketti",{"_index":4747,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["piketty'",{"_index":9757,"title":{},"content":{"Where Does It Stop?":{}},"tags":{}}],["pile",{"_index":5481,"title":{},"content":{"Designing websites with accessibility in mind":{},"Minimalism and Tidying Up":{}},"tags":{}}],["pilot",{"_index":2734,"title":{"The Pilot Capless: a stellar stealth pen":{}},"content":{"A quick look at 6 fountain pens":{},"The Pilot Capless: a stellar stealth pen":{},"Water Levels As Public Data":{}},"tags":{}}],["pin",{"_index":2357,"title":{},"content":{"Teaching yourself to draw":{},"A Ph.D. Thesis: Iteration 2":{},"Reviving an old 80486 PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["pinbal",{"_index":8614,"title":{"Pinball Machines in a Jenever Museum":{}},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["pine",{"_index":2821,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["ping",{"_index":7436,"title":{},"content":{"Host your own webmention receiver":{}},"tags":{}}],["pingback",{"_index":6950,"title":{"Fighting Webmention And Pingback Spam":{}},"content":{"Exploring the AlterNet":{},"The IndieWeb Mixed Bag":{},"Host your own webmention receiver":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["pink",{"_index":10915,"title":{},"content":{"Visualizing Personal Data Takeouts":{}},"tags":{}}],["pinker",{"_index":7603,"title":{},"content":{"Academese Gems":{}},"tags":{}}],["pinki",{"_index":6988,"title":{},"content":{"Exploring the AlterNet":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["pinnacl",{"_index":10185,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["pinterest",{"_index":2354,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["pinto",{"_index":7640,"title":{},"content":{"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["pipe",{"_index":5194,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["pipelin",{"_index":5177,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["pipes/scss",{"_index":5197,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["piqu",{"_index":10619,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["piraci",{"_index":10808,"title":{},"content":{"Once Upon a Time in Shaolin":{}},"tags":{}}],["piranha",{"_index":8005,"title":{},"content":{"Book Number Fourteen":{}},"tags":{}}],["pirat",{"_index":10099,"title":{},"content":{"November 2021 Meta Post":{},"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["piss",{"_index":7124,"title":{},"content":{"The IndieWeb Mixed Bag":{}},"tags":{}}],["pit",{"_index":7678,"title":{},"content":{"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["pitch",{"_index":6410,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["pitfal",{"_index":740,"title":{},"content":{"undefined":{}},"tags":{}}],["piti",{"_index":8770,"title":{},"content":{"20 Years of Personal Cellphone History":{}},"tags":{}}],["pixea",{"_index":10104,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["pixel",{"_index":5612,"title":{},"content":{"Tracking and privacy concerns on websites":{},"3D Software Rendering on the GBA":{},"Moon Logic":{},"Favorite Game Meme":{}},"tags":{}}],["pizza",{"_index":962,"title":{},"content":{"Learning to become a baker":{},"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["pizza’",{"_index":439,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["pkm",{"_index":9569,"title":{},"content":{"Exporting Goodreads to Obsidian":{}},"tags":{}}],["plaat",{"_index":3395,"title":{},"content":{"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["plaats1",{"_index":1459,"title":{},"content":{"undefined":{}},"tags":{}}],["plaats2",{"_index":1460,"title":{},"content":{"undefined":{}},"tags":{}}],["place",{"_index":188,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"Faking domain logic":{},"Journaling in practice":{},"Nuts about local nuts":{},"IT Competences and Certificates":{},"Five reasons why agile and academia don't go together":{},"ITiCSE 2020: A Report":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Teaching students about coding trends":{},"The IndieWeb Mixed Bag":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Flea Market Season":{},"Software Engineering Is Not Engineering":{},"How Much Should I Spend On Magic The Gathering":{},"Reducing Workflow Load Facilitates Writing":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Pinball Machines in a Jenever Museum":{},"Are You In The System Yet, Sir?":{},"Dear Student":{},"Ever-increasing Work Email Spam":{},"The Lost Art of Being Lost":{},"The Emperor of Lists":{},"From Analog Notebook to Digital Vault":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Dark Age of Camelot in 2022":{},"Re: Writing A Book Is Nonesense":{},"2021 Year In Review":{},"On Trying To Sell A Laptop":{},"Expiry Dates On Journals":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["placehold",{"_index":5515,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["placement",{"_index":6412,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{},"Pinball Machines in a Jenever Museum":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["plagu",{"_index":10551,"title":{},"content":{"The Creative Techniques Toolbox":{},"What a Night Cam Is Good For":{}},"tags":{}}],["plain",{"_index":5336,"title":{},"content":{"Using Pandoc to publish a book":{},"My Kotlin Rose-Tinted Glasses Broke":{}},"tags":{}}],["plainli",{"_index":10649,"title":{},"content":{"Woke in Class":{}},"tags":{}}],["plan",{"_index":2806,"title":{"Always have a Diaster Recovery Plan":{}},"content":{"Journaling in practice":{},"IT Competences and Certificates":{},"DIY: Hosting stuff on your own VPS":{},"Using Pandoc to publish a book":{},"Combining async with generators in Node 11":{},"Thoughts on collaboration in education":{},"The Internet Killed Secrets in Games":{},"Always have a Diaster Recovery Plan":{},"Exploring the Go programming language":{},"Host your own webmention receiver":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Pinball Machines in a Jenever Museum":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Technical Knowledge Brews Creativity":{},"How to setup Pi-Hole on a Synology NAS":{},"January 2022 In Review":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["plan\"_",{"_index":6920,"title":{},"content":{"Always have a Diaster Recovery Plan":{}},"tags":{}}],["plane",{"_index":8444,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{},"The Lost Art of Being Lost":{}},"tags":{}}],["planeswalk",{"_index":8143,"title":{},"content":{"How Much Should I Spend On Magic The Gathering":{}},"tags":{}}],["plann",{"_index":8426,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["plannen",{"_index":3579,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["plant",{"_index":2421,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Book Number Fourteen":{},"Cheese cheese cheese cheese cheese":{},"Are Digital Gardens Blogs?":{},"Constraint-based Creativity":{}},"tags":{}}],["plant](https://en.wikipedia.org/wiki/allspic",{"_index":9868,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["plaqu",{"_index":8446,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["plasma](https://web.archive.org/web/20050323094702/http://www.musicplasma.com",{"_index":10693,"title":{},"content":{"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["plastic",{"_index":2989,"title":{},"content":{"Inventing - for the worse?":{},"Nineties collecting nostalgia":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"Three Little GameCube Mods":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["plastieken",{"_index":5022,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["plateau",{"_index":2831,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["platform",{"_index":1505,"title":{"Productivity Tools on all platforms":{}},"content":{"Visual Studio 2012 for Eclipse users":{},"Productivity Tools on all platforms":{},"Unit Testing PicoBlaze Assembly files":{},"Project Warlock: About Perseverance":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Using Hugo to Launch a Gemini Capsule":{},"Double-dipping and Market Prices":{},"Reducing Workflow Load Facilitates Writing":{},"Questionable Game Publishing Methods":{},"Re: Writing A Book Is Nonesense":{},"Woke in Class":{},"Expiry Dates On Journals":{},"None Of My Best Friends Are Content Creators":{},"True Backlink Support in Hugo":{}},"tags":{}}],["platformi",{"_index":10765,"title":{},"content":{"January 2022 In Review":{}},"tags":{}}],["platgeklopt",{"_index":3916,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["platinum",{"_index":2736,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["plato",{"_index":9509,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["plato'",{"_index":8408,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["play",{"_index":2645,"title":{"YouTube Play Image Links in Hugo":{},"Why I Play Games (And So Should You)":{}},"content":{"Healing creative scars":{},"I'm jealous of my dog":{},"Project Warlock: About Perseverance":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"486 Upgrade 1: Sound Blaster 16":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"Personal Desktop Screenshots of Olde":{},"The Internet Killed Secrets in Games":{},"You Shouldn't Use Spotify":{},"Discord killed support for WinXP":{},"On Manuscript Review Procedures":{},"Nineties collecting nostalgia":{},"Belgium - Portugal: 5 - 2":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"Double-dipping and Market Prices":{},"How Much Should I Spend On Magic The Gathering":{},"Rules of a Creator's Life":{},"The Decline of Battery Life":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Emotional Magic":{},"Pinball Machines in a Jenever Museum":{},"Thirty-Six":{},"20 Years of Personal Cellphone History":{},"Favorite Game Meme":{},"The HP Sprocket Mini Printer":{},"A 5.25\" Gobliins 2 Surprise":{},"The Emperor of Lists":{},"November 2021 Meta Post":{},"Three Little GameCube Mods":{},"Dark Age of Camelot in 2022":{},"December 2021 In Review":{},"Generating a Blogroll With OPML in Hugo":{},"Why I Play Games (And So Should You)":{},"How to setup Pi-Hole on a Synology NAS":{},"January 2022 In Review":{},"Once Upon a Time in Shaolin":{},"What a Night Cam Is Good For":{},"Choosing an Audio Codec":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"March 2022 In Review":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["playabl",{"_index":8069,"title":{},"content":{"Double-dipping and Market Prices":{}},"tags":{}}],["playback",{"_index":11285,"title":{},"content":{"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["player",{"_index":6271,"title":{},"content":{"The Internet Killed Secrets in Games":{},"You Shouldn't Use Spotify":{},"The first Dutch Obsidian meetup":{},"Belgium - Portugal: 5 - 2":{},"How Much Should I Spend On Magic The Gathering":{},"Emotional Magic":{},"20 Years of Personal Cellphone History":{},"How Not To Do A Remaster":{},"Dark Age of Camelot in 2022":{},"How To Enjoy Your Own Digital Music":{},"Choosing an Audio Codec":{}},"tags":{}}],["player'",{"_index":10289,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["playfield",{"_index":8652,"title":{},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["playground",{"_index":7513,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["playground](https://play.kotlinlang.org",{"_index":8580,"title":{},"content":{"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{}}],["playlist",{"_index":9710,"title":{},"content":{"How Not To Do A Remaster":{}},"tags":{}}],["playtest",{"_index":8654,"title":{},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["playthrough",{"_index":8289,"title":{},"content":{"The Decline of Battery Life":{}},"tags":{}}],["playtim",{"_index":8275,"title":{},"content":{"The Decline of Battery Life":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["pleas",{"_index":7996,"title":{},"content":{"Apple's App Store Design Mistake":{},"Are You In The System Yet, Sir?":{},"Dear Student":{},"Questionable Game Publishing Methods":{},"Allspice Is Not All Spice":{},"On Trying To Sell A Laptop":{},"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["pleasant",{"_index":5184,"title":{},"content":{"Hugo Extended: More static site processing power!":{},"What is Creativity in Software Engineering?":{},"Discord killed support for WinXP":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["pleasur",{"_index":5889,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"Flea Market Season":{},"Reducing Workflow Load Facilitates Writing":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["pleasures](https://nerdlypleasures.blogspot.com/2012/07/sound",{"_index":5873,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["pleasures](https://nerdlypleasures.blogspot.com/2014/10/batteri",{"_index":8290,"title":{},"content":{"The Decline of Battery Life":{}},"tags":{}}],["plenti",{"_index":1314,"title":{},"content":{"Unit Testing Stored Procedures":{},"A Ph.D. Thesis: Iteration 2":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["plenty?ac=1&from_search=tru",{"_index":2609,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["plenty](https://www.goodreads.com/book/show/8086216",{"_index":2608,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["plethora",{"_index":4394,"title":{},"content":{"A Decade in the Software Engineering industry":{},"Programming: a Creative Cognitive Process":{},"Technical Knowledge Brews Creativity":{}},"tags":{}}],["plichtbewust",{"_index":4218,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["pling",{"_index":4517,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["plod",{"_index":8671,"title":{},"content":{"My Kotlin Rose-Tinted Glasses Broke":{}},"tags":{}}],["plot",{"_index":3940,"title":{},"content":{"Over de inflatie van intellect":{},"Technical Knowledge Brews Creativity":{},"Natural Gas Prices and The Energy Market":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{}},"tags":{}}],["plots",{"_index":4972,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["plow",{"_index":2300,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{},"What is Creativity in Software Engineering?":{}},"tags":{}}],["plu",{"_index":1201,"title":{},"content":{"undefined":{},"Thinking in terms of objects":{},"Reviving an old 80486 PC":{},"How to write academic papers in Markdown":{},"Exploring the AlterNet":{}},"tags":{}}],["plug",{"_index":1754,"title":{},"content":{"Metaprogramming instead of duplication":{},"486 Upgrade 2: The SD Card HDD":{},"The Productive Programmer on Mac":{},"Getting rid of trackers using LineageOS":{},"The Fridge, Your Inoculation Room":{},"Three Little GameCube Mods":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["plugin",{"_index":1499,"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":{},"From Analog Notebook to Digital Vault":{},"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["plumb",{"_index":4300,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["plunder",{"_index":10565,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["plus(numb",{"_index":3310,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["plymouth",{"_index":9694,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["pm",{"_index":268,"title":{},"content":{"On finding your inner zen in big cities":{},"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["pm2.jpg",{"_index":10186,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["png",{"_index":2130,"title":{},"content":{"Webdriver Exception Handling":{},"YouTube Play Image Links in Hugo":{}},"tags":{}}],["pnp.html",{"_index":10215,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["po",{"_index":8261,"title":{},"content":{"Rules of a Creator's Life":{}},"tags":{}}],["pocket",{"_index":6857,"title":{"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"content":{"You Shouldn't Use Spotify":{},"Book Number Fourteen":{},"How Much Should I Spend On Magic The Gathering":{},"The Decline of Battery Life":{},"Questionable Game Publishing Methods":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["pocket](https://www.analogue.co/pocket",{"_index":7747,"title":{},"content":{"Misconceptions about retro gamers":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["pod",{"_index":3176,"title":{},"content":{"Take your time.":{}},"tags":{}}],["podcast",{"_index":9899,"title":{},"content":{"2021 Donations":{},"Minimalism and Tidying Up":{}},"tags":{}}],["podcast](https://retronauts.com",{"_index":11529,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["poet",{"_index":9072,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["poetri",{"_index":10360,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["pog",{"_index":7484,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["poge",{"_index":659,"title":{},"content":{"undefined":{},"Over entropie":{}},"tags":{}}],["pogingen",{"_index":3355,"title":{},"content":{"Over entropie":{}},"tags":{}}],["pogo",{"_index":8926,"title":{},"content":{"The HP Sprocket Mini Printer":{}},"tags":{}}],["pogs.html#slammingtechniqu",{"_index":7510,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["poi",{"_index":3558,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["poincar",{"_index":9823,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["poincaré'",{"_index":9826,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["point",{"_index":1965,"title":{},"content":{"Faking domain logic":{},"Are you handing over enough when inspiring someone?":{},"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":{},"ITiCSE 2020: A Report":{},"3D Software Rendering on the GBA":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"The Internet Killed Secrets in Games":{},"On Manuscript Review Procedures":{},"Host your own webmention receiver":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"Double-dipping and Market Prices":{},"The Fridge, Your Inoculation Room":{},"Water Levels As Public Data":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Cheese cheese cheese cheese cheese":{},"Kotlin Is Java 2.0, But It's Still Java":{},"Creativity Self-Assessment Is Nonsense":{},"A Triumph For Blogging":{},"Are Digital Gardens Blogs?":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{},"A 5.25\" Gobliins 2 Surprise":{},"Constraint-based Creativity":{},"Creative Critical Thinking":{},"How Not To Do A Remaster":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"Natural Gas Prices and The Energy Market":{},"Why I Play Games (And So Should You)":{},"Woke in Class":{},"An Ad Leaflet QR Design Mistake":{},"Creativity Equals Messy Code?":{},"True Backlink Support in Hugo":{}},"tags":{}}],["pointcut",{"_index":2124,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["pointer",{"_index":520,"title":{},"content":{"undefined":{},"Domain Driven Design in C":{},"Teaching Object-Oriented design using the GBA":{},"3D Software Rendering on the GBA":{},"Dear Student":{}},"tags":{}}],["pointil",{"_index":9089,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["pointless",{"_index":6476,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["points_",{"_index":8451,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["poison",{"_index":2950,"title":{},"content":{"I'm jealous of my dog":{},"What a Night Cam Is Good For":{}},"tags":{}}],["poke",{"_index":8522,"title":{},"content":{"Emotional Magic":{},"Are Digital Gardens Blogs?":{},"Natural Gas Prices and The Energy Market":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["polaroid",{"_index":8925,"title":{},"content":{"The HP Sprocket Mini Printer":{}},"tags":{}}],["polici",{"_index":10747,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["polish",{"_index":5342,"title":{},"content":{"Project Warlock: About Perseverance":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["polit",{"_index":8385,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{},"Favorite Game Meme":{},"Constraint-based Creativity":{},"Seneca on How to Live":{},"How To Enjoy Your Own Digital Music":{},"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["politician",{"_index":7699,"title":{},"content":{"Flea Market Season":{},"Collective Creativity":{},"Creative Critical Thinking":{}},"tags":{}}],["pollan",{"_index":8610,"title":{},"content":{"On Selling a Self-published Book":{}},"tags":{}}],["pollan'",{"_index":5294,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["pollin",{"_index":8856,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["pollut",{"_index":10129,"title":{},"content":{"Seneca on How to Live":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["polybiu",{"_index":9056,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["polyfil",{"_index":5468,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["polyglot",{"_index":7216,"title":{},"content":{"Exploring the Go programming language":{},"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{}}],["pommes_",{"_index":9453,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["ponder",{"_index":2919,"title":{},"content":{"I'm jealous of my dog":{},"What if Seneca wasn't Nero's advisor?":{},"A Creative State of Mind":{},"Seneca on How to Live":{}},"tags":{}}],["poof",{"_index":3844,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["pool",{"_index":228,"title":{},"content":{"On finding your inner zen in big cities":{},"Exploring the Go programming language":{},"How Much Should I Spend On Magic The Gathering":{}},"tags":{}}],["poor",{"_index":6923,"title":{},"content":{"Always have a Diaster Recovery Plan":{},"A Factor Analysis For Dummies in R":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["pop",{"_index":2323,"title":{},"content":{"Teaching yourself to draw":{},"Hiding Code Complexity":{},"A journey through the history of webdesign":{},"Using Hugo to Launch a Gemini Capsule":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Are You In The System Yet, Sir?":{},"How Not To Do A Remaster":{},"A Personal Intro To Rough Hip-Hop":{},"February 2022 In Review":{}},"tags":{}}],["popliedj",{"_index":5051,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["popul",{"_index":10554,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["populair",{"_index":3889,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["popular",{"_index":1312,"title":{},"content":{"Unit Testing Stored Procedures":{},"Are you handing over enough when inspiring someone?":{},"I'm jealous of my dog":{},"486 Upgrade 2: The SD Card HDD":{},"A journey through the history of webdesign":{},"Building a Core2Duo Windows XP Retro PC":{},"Personal Desktop Screenshots of Olde":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The insanity of collecting retro games":{},"Teaching students about coding trends":{},"Stop limiting yourself to JS in browsers":{},"Social Debt in Development Teams":{},"The HP Sprocket Mini Printer":{},"Seneca on How to Live":{},"Why Mastodon Isn't Great For Serendipity":{},"Re: Writing A Book Is Nonesense":{},"Why I Play Games (And So Should You)":{},"How To Enjoy Your Own Digital Music":{},"February 2022 In Review":{},"Fighting Webmention And Pingback Spam":{},"The Death Of The Nike+ SportWatch":{},"True Backlink Support in Hugo":{}},"tags":{}}],["population.com/r/daoc",{"_index":10285,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["popup",{"_index":9001,"title":{},"content":{"Are Digital Gardens Blogs?":{}},"tags":{}}],["port",{"_index":5147,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"3D Software Rendering on the GBA":{},"486 Upgrade 1: Sound Blaster 16":{},"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Exploring the Go programming language":{},"Using Hugo to Launch a Gemini Capsule":{},"A Creative State of Mind":{},"Three Little GameCube Mods":{},"December 2021 In Review":{},"How to setup Pi-Hole on a Synology NAS":{},"My Retrocomputing Projects For 2022":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["portabl",{"_index":11183,"title":{},"content":{"Choosing an Audio Codec":{}},"tags":{}}],["portal",{"_index":6273,"title":{},"content":{"The Internet Killed Secrets in Games":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["portion",{"_index":5243,"title":{},"content":{"Page Building with Brizy in Wordpress":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Thoughts on Bullshit Jobs":{},"You Shouldn't Use Spotify":{},"Always have a Diaster Recovery Plan":{},"Questionable Game Publishing Methods":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["portrait",{"_index":9810,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["portray",{"_index":9134,"title":{},"content":{"Ditch Scrum, Organize As You See Fit":{},"A Creative State of Mind":{},"Seneca on How to Live":{},"Why I Play Games (And So Should You)":{}},"tags":{}}],["portug",{"_index":7632,"title":{"Belgium - Portugal: 5 - 2":{}},"content":{},"tags":{}}],["pose",{"_index":2709,"title":{},"content":{"A quick look at 6 fountain pens":{},"Ditch Scrum, Organize As You See Fit":{},"Creative Critical Thinking":{},"Where Does It Stop?":{}},"tags":{}}],["posh",{"_index":434,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["posit",{"_index":3265,"title":{},"content":{"Death to pseudocode?":{},"Using Pandoc to publish a book":{},"Project Warlock: About Perseverance":{},"My Retro Desk/Gaming Setup in 2021":{},"Stop limiting yourself to JS in browsers":{},"Thirty-Six":{},"Very Old and Somewhat Old Mood Boards":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Why I Play Games (And So Should You)":{},"Equality in Game Credits":{}},"tags":{}}],["positive/neg",{"_index":9176,"title":{},"content":{"Ever-increasing Work Email Spam":{}},"tags":{}}],["positives](https://obsolete29.com/posts/2021/10/19/on",{"_index":9918,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["positivisten",{"_index":3446,"title":{},"content":{"Over entropie":{}},"tags":{}}],["poss",{"_index":7160,"title":{},"content":{"The IndieWeb Mixed Bag":{},"Exporting Goodreads to Obsidian":{}},"tags":{}}],["posse](https://indieweb.org/poss",{"_index":7154,"title":{},"content":{"The IndieWeb Mixed Bag":{}},"tags":{}}],["possess",{"_index":3010,"title":{},"content":{"Inventing - for the worse?":{},"Water Levels As Public Data":{},"Minimalism and Tidying Up":{}},"tags":{}}],["possibl",{"_index":455,"title":{},"content":{"No, vegetarians do not eat fish!":{},"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":{},"Teaching yourself to draw":{},"Inventing - for the worse?":{},"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":{},"3D Software Rendering on the GBA":{},"The Internet Killed Secrets in Games":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"My Retro Desk/Gaming Setup in 2021":{},"Stop limiting yourself to JS in browsers":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"Nineties collecting nostalgia":{},"Academese Gems":{},"The Fridge, Your Inoculation Room":{},"On Selling a Self-published Book":{},"Ever-increasing Work Email Spam":{},"The Lost Art of Being Lost":{},"Where Does It Stop?":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"A Factor Analysis For Dummies in R":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{}},"tags":{}}],["post",{"_index":168,"title":{"November 2021 Meta Post":{}},"content":{"Ending your day with happy thoughts":{},"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"Enhancing the builder pattern with closures":{},"Bye autotools hello Scons":{},"Webdriver Exception Handling":{},"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"Take your time.":{},"Over Onmiddellijke Voldoening":{},"Five reasons why agile and academia don't go together":{},"Page Building with Brizy in Wordpress":{},"Combining async with generators in Node 11":{},"Designing websites with accessibility in mind":{},"486 Upgrade 1: Sound Blaster 16":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"What is Creativity in Software Engineering?":{},"My Retro Desk/Gaming Setup in 2021":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"Always have a Diaster Recovery Plan":{},"Exploring the AlterNet":{},"Lousy Wordpress Hacking Attempts detected":{},"The IndieWeb Mixed Bag":{},"Host your own webmention receiver":{},"Nineties collecting nostalgia":{},"Social Debt in Development Teams":{},"Reducing Workflow Load Facilitates Writing":{},"What if Seneca wasn't Nero's advisor?":{},"Cheese cheese cheese cheese cheese":{},"Thirty-Six":{},"20 Years of Personal Cellphone History":{},"Favorite Game Meme":{},"A Triumph For Blogging":{},"Are Digital Gardens Blogs?":{},"A Treatise on Leavened Waffles":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"From Analog Notebook to Digital Vault":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"Why Mastodon Isn't Great For Serendipity":{},"December 2021 In Review":{},"A Factor Analysis For Dummies in R":{},"Natural Gas Prices and The Energy Market":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"2021 Year In Review":{},"How To Enjoy Your Own Digital Music":{},"How to setup Pi-Hole on a Synology NAS":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"Water Usage and Prices":{},"A Personal Intro To Rough Hip-Hop":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{},"Fighting Webmention And Pingback Spam":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"True Backlink Support in Hugo":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["post/2020/06/combin",{"_index":5424,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["post](/post/2020/09/reviv",{"_index":5756,"title":{},"content":{"An am486 Performance Analysis":{}},"tags":{}}],["post](https://chasingmailboxes.com/2021/10/05/coffeeneur",{"_index":9927,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["post](https://jefklakscodex.com/articles/features/e3",{"_index":7945,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["post](https://rubenerd.com/favourit",{"_index":8850,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["post](https://rubenerd.com/inlin",{"_index":7932,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["post](https://stackoverflow.com/questions/5827612/nod",{"_index":5428,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["postbod",{"_index":3402,"title":{},"content":{"Over entropie":{}},"tags":{}}],["poster",{"_index":9891,"title":{},"content":{"2021 Donations":{},"November 2021 Meta Post":{}},"tags":{}}],["posteriori",{"_index":3303,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["postfix",{"_index":9989,"title":{},"content":{"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["postgr",{"_index":5125,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["posthum",{"_index":11222,"title":{},"content":{"Expiry Dates On Journals":{}},"tags":{}}],["postmodern",{"_index":2249,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["postprocess",{"_index":1900,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["posts](/post/2020/11/win98",{"_index":8223,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["posts](/post/2021",{"_index":10659,"title":{},"content":{"2021 Year In Review":{}},"tags":{}}],["posts](/post/2022/#mar",{"_index":11469,"title":{},"content":{"March 2022 In Review":{}},"tags":{}}],["postscript",{"_index":11250,"title":{},"content":{"February 2022 In Review":{}},"tags":{}}],["postsharp",{"_index":2126,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["postur",{"_index":7894,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["pot",{"_index":9949,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["potato",{"_index":7482,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["potato](https://www.economist.com/leaders/2022/01/01/video",{"_index":10593,"title":{},"content":{"Why I Play Games (And So Should You)":{}},"tags":{}}],["potenti",{"_index":5733,"title":{},"content":{"Thoughts on collaboration in education":{},"On Manuscript Review Procedures":{},"Creativity Self-Assessment Is Nonsense":{},"The Lost Art of Being Lost":{},"On Trying To Sell A Laptop":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["potj",{"_index":4894,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["pour",{"_index":8345,"title":{},"content":{"Water Levels As Public Data":{},"How Not To Do A Remaster":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["powder",{"_index":9393,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["power",{"_index":728,"title":{"Hugo Extended: More static site processing power!":{},"Power Usage Effectiveness":{}},"content":{"undefined":{},"How to teach kids to program":{},"Productivity Tools on all platforms":{},"Page Building with Brizy in Wordpress":{},"Thoughts on collaboration in education":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"The Internet Killed Secrets in Games":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The Productive Programmer on Mac":{},"My Retro Desk/Gaming Setup in 2021":{},"The first Dutch Obsidian meetup":{},"Academese Gems":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"How Much Should I Spend On Magic The Gathering":{},"The HP Sprocket Mini Printer":{},"Collective Creativity":{},"Dear Student":{},"Power Usage Effectiveness":{},"The Lost Art of Being Lost":{},"A Treatise on Leavened Waffles":{},"Constraint-based Creativity":{},"Three Little GameCube Mods":{},"Minimalism and Tidying Up":{},"Re: Writing A Book Is Nonesense":{},"Thoughts On Home NAS Systems":{},"Choosing an Audio Codec":{},"Fighting Webmention And Pingback Spam":{},"True Backlink Support in Hugo":{}},"tags":{}}],["power.jpg",{"_index":5982,"title":{},"content":{"Reviving an old 80486 PC":{}},"tags":{}}],["powerhous",{"_index":2781,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["pr",{"_index":6245,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["prachtig",{"_index":3348,"title":{},"content":{"Over entropie":{}},"tags":{}}],["practic",{"_index":88,"title":{"Journaling in practice":{}},"content":{"Ending your day with happy thoughts":{},"Unit Testing Stored Procedures":{},"Teaching yourself to draw":{},"Development principles in cooking":{},"Healing creative scars":{},"I'm jealous of my dog":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"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":{},"An am486 Performance Analysis":{},"Digitizing journals using DEVONthink":{},"What is Creativity in Software Engineering?":{},"You Shouldn't Use Spotify":{},"The first Dutch Obsidian meetup":{},"Software Engineering Is Not Engineering":{},"The Pilot Capless: a stellar stealth pen":{},"Book Number Fourteen":{},"Creativity Self-Assessment Is Nonsense":{},"The HP Sprocket Mini Printer":{},"Dear Student":{},"Ever-increasing Work Email Spam":{},"A Treatise on Leavened Waffles":{},"Where Does It Stop?":{},"Academic Lineage":{}},"tags":{}}],["practice_",{"_index":7808,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["practician",{"_index":2519,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["practicum",{"_index":3847,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["practition",{"_index":4679,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{},"IT Competences and Certificates":{},"Software Engineering Is Not Engineering":{}},"tags":{}}],["practitioner.html",{"_index":7390,"title":{},"content":{"On Manuscript Review Procedures":{}},"tags":{}}],["practitioner](https://www.goodreads.com/book/show/134454",{"_index":7785,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["practitioner_",{"_index":7789,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["pragmat",{"_index":10130,"title":{},"content":{"Seneca on How to Live":{}},"tags":{}}],["praktijk",{"_index":4883,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["praktisch",{"_index":3637,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"De zin en onzin van conferenties":{}},"tags":{}}],["pray",{"_index":7034,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["pre",{"_index":786,"title":{},"content":{"undefined":{},"A journey through the history of webdesign":{},"What is Creativity in Software Engineering?":{},"Discord killed support for WinXP":{},"Stop limiting yourself to JS in browsers":{},"On Manuscript Review Procedures":{},"Re: Is collecting physical games worth it?":{},"On Tea Prices":{},"Questionable Game Publishing Methods":{},"February 2022 In Review":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["preambl",{"_index":5299,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["precaut",{"_index":7732,"title":{},"content":{"Flea Market Season":{}},"tags":{}}],["preciou",{"_index":7915,"title":{},"content":{"Why I like Pawn Stars":{},"The Emperor of Lists":{},"How Not To Do A Remaster":{},"A Creative State of Mind":{}},"tags":{}}],["precipit",{"_index":8341,"title":{},"content":{"Water Levels As Public Data":{}},"tags":{}}],["precis",{"_index":8687,"title":{},"content":{"My Kotlin Rose-Tinted Glasses Broke":{},"Constraint-based Creativity":{},"From Curiosity To Creativity":{}},"tags":{}}],["predecessor",{"_index":6330,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{},"Double-dipping and Market Prices":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["predefin",{"_index":1347,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["predic",{"_index":1214,"title":{},"content":{"undefined":{}},"tags":{}}],["predict",{"_index":7663,"title":{},"content":{"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["predomin",{"_index":9048,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["prefer",{"_index":5128,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Building an Athlon Windows 98 Retro PC":{},"Stop limiting yourself to JS in browsers":{},"On Tea Prices":{},"A Note About Footnotes":{},"Questionable Game Publishing Methods":{},"A Factor Analysis For Dummies in R":{},"Thoughts On Home NAS Systems":{},"A Personal Intro To Gentle Hip-Hop":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["prefix",{"_index":1328,"title":{},"content":{"Unit Testing Stored Procedures":{},"A Decade in the Software Engineering industry":{}},"tags":{}}],["pregnant",{"_index":8505,"title":{},"content":{"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["prejudic",{"_index":11018,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["preload",{"_index":2097,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["preloaders](https://icons8.com/preload",{"_index":7981,"title":{},"content":{"Apple's App Store Design Mistake":{}},"tags":{}}],["prematur",{"_index":1245,"title":{},"content":{"undefined":{},"February 2022 In Review":{}},"tags":{}}],["premis",{"_index":6590,"title":{},"content":{"The Productive Programmer on Mac":{},"Academese Gems":{},"Pinball Machines in a Jenever Museum":{},"Collective Creativity":{},"Academic Lineage":{}},"tags":{}}],["premium",{"_index":5256,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["preoccupi",{"_index":3158,"title":{},"content":{"Take your time.":{},"Creative Critical Thinking":{}},"tags":{}}],["prepar",{"_index":2596,"title":{},"content":{"Development principles in cooking":{},"Computer Science learning pathways":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Getting rid of trackers using LineageOS":{},"Cheese cheese cheese cheese cheese":{},"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{}}],["prepend",{"_index":10376,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["presenc",{"_index":3073,"title":{},"content":{"2017 in books":{},"Dear Student":{},"Creative Critical Thinking":{},"2021 Year In Review":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["present",{"_index":2434,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"A samurai learning mindset":{},"I'm jealous of my dog":{},"2017 in books":{},"Death to pseudocode?":{},"ITiCSE 2020: A Report":{},"Thoughts on collaboration in education":{},"Reviving an old 80486 PC":{},"Thoughts on Bullshit Jobs":{},"What is Creativity in Software Engineering?":{},"Software Engineering Is Not Engineering":{},"Emotional Magic":{},"Pinball Machines in a Jenever Museum":{},"Thirty-Six":{},"Collective Creativity":{},"Power Usage Effectiveness":{},"Creative Critical Thinking":{},"Where Does It Stop?":{},"A Creative State of Mind":{},"2021 Year In Review":{},"Visualizing Personal Data Takeouts":{},"Creativity Equals Messy Code?":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["presentati",{"_index":4900,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["presentation](https://docs.google.com/document/d/1re3lyaalscz49189xigquvjqlmpe9uofleyz8y7mjue/edit#heading=h.ygj23kjvy5z",{"_index":9615,"title":{},"content":{"From Analog Notebook to Digital Vault":{}},"tags":{}}],["presenteert",{"_index":4887,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["presenteren",{"_index":3668,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{},"De zin en onzin van conferenties":{}},"tags":{}}],["preserv",{"_index":1485,"title":{},"content":{"undefined":{},"Lousy Wordpress Hacking Attempts detected":{},"Academese Gems":{},"What if Seneca wasn't Nero's advisor?":{},"The Emperor of Lists":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["preset",{"_index":5227,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["press",{"_index":2853,"title":{},"content":{"Nuts about local nuts":{},"Tracking and privacy concerns on websites":{},"486 Upgrade 2: The SD Card HDD":{},"Teaching students about coding trends":{},"On Manuscript Review Procedures":{},"The Pilot Capless: a stellar stealth pen":{},"Apple's App Store Design Mistake":{},"What if Seneca wasn't Nero's advisor?":{},"On Selling a Self-published Book":{},"The HP Sprocket Mini Printer":{},"A Triumph For Blogging":{},"Questionable Game Publishing Methods":{},"The Lost Art of Being Lost":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"Expiry Dates On Journals":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["pressur",{"_index":3230,"title":{},"content":{"Concentrating on serendipitous creativity":{},"Water Levels As Public Data":{},"Why I Play Games (And So Should You)":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["presum",{"_index":10575,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["pretend",{"_index":6481,"title":{},"content":{"Thoughts on Bullshit Jobs":{},"Exploring the Go programming language":{},"On Selling a Self-published Book":{},"Creative Critical Thinking":{}},"tags":{}}],["pretti",{"_index":2043,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"Inventing - for the worse?":{},"Death to pseudocode?":{},"Domain Driven Design in C":{},"Thoughts on Bullshit Jobs":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Moon Logic":{},"Apple's App Store Design Mistake":{},"Are You In The System Yet, Sir?":{},"Power Usage Effectiveness":{},"The Emperor of Lists":{},"From Curiosity To Creativity":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Dark Age of Camelot in 2022":{},"Why I Play Games (And So Should You)":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["preval",{"_index":8553,"title":{},"content":{"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{}}],["prevent",{"_index":6738,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Very Old and Somewhat Old Mood Boards":{},"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["preview",{"_index":5262,"title":{},"content":{"Page Building with Brizy in Wordpress":{},"Reducing Workflow Load Facilitates Writing":{},"November 2021 Meta Post":{}},"tags":{}}],["preview.mp4",{"_index":6646,"title":{},"content":{"What is Creativity in Software Engineering?":{}},"tags":{}}],["previou",{"_index":152,"title":{},"content":{"Ending your day with happy thoughts":{},"Visual Studio 2012 for Eclipse users":{},"Integration Testing with SQLite":{},"Webdriver Exception Handling":{},"Building an Athlon Windows 98 Retro PC":{},"What is Creativity in Software Engineering?":{},"Flea Market Season":{},"The Fridge, Your Inoculation Room":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"December 2021 In Review":{},"2021 Year In Review":{},"January 2022 In Review":{},"Academic Lineage":{},"February 2022 In Review":{},"Leuchtturm Notebook Paper Quality":{},"Cool Things People Do With Their Blogs":{},"March 2022 In Review":{}},"tags":{}}],["previous",{"_index":9124,"title":{},"content":{"Dear Student":{},"The Lost Art of Being Lost":{}},"tags":{}}],["previous](https://people.cs.kuleuven.be/~wouter.groeneveld/slr",{"_index":4924,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["pri",{"_index":7957,"title":{},"content":{"YouTube Play Image Links in Hugo":{},"The HP Sprocket Mini Printer":{},"Three Little GameCube Mods":{},"Dark Age of Camelot in 2022":{},"Expiry Dates On Journals":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["price",{"_index":2756,"title":{"Double-dipping and Market Prices":{},"On Tea Prices":{},"Natural Gas Prices and The Energy Market":{},"Water Usage and Prices":{}},"content":{"A quick look at 6 fountain pens":{},"Domain Driven Design in C":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Digitizing journals using DEVONthink":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The insanity of collecting retro games":{},"Re: Is collecting physical games worth it?":{},"Flea Market Season":{},"The Pilot Capless: a stellar stealth pen":{},"Double-dipping and Market Prices":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"Very Old and Somewhat Old Mood Boards":{},"Questionable Game Publishing Methods":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Natural Gas Prices and The Energy Market":{},"On Trying To Sell A Laptop":{},"Thoughts On Home NAS Systems":{},"Water Usage and Prices":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["prices.com",{"_index":7550,"title":{},"content":{"Re: Is collecting physical games worth it?":{}},"tags":{}}],["prices.com](https://eshop",{"_index":7549,"title":{},"content":{"Re: Is collecting physical games worth it?":{}},"tags":{}}],["prices](https://www.reddit.com/r/gamecollecting/comments/8jmiwi/how_metal_jesus_rocks_affects_retro_video_gam",{"_index":6797,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["pricetag",{"_index":9280,"title":{},"content":{"Questionable Game Publishing Methods":{}},"tags":{}}],["pricey",{"_index":10216,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["prij",{"_index":4074,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["primari",{"_index":6512,"title":{},"content":{"Digitizing journals using DEVONthink":{},"Re: Is collecting physical games worth it?":{}},"tags":{}}],["primarili",{"_index":6855,"title":{},"content":{"You Shouldn't Use Spotify":{},"On Manuscript Review Procedures":{},"Re: Is collecting physical games worth it?":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["prime",{"_index":8944,"title":{},"content":{"The HP Sprocket Mini Printer":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["primit",{"_index":790,"title":{},"content":{"undefined":{}},"tags":{}}],["princ",{"_index":7445,"title":{},"content":{"Moon Logic":{},"Favorite Game Meme":{},"A Triumph For Blogging":{}},"tags":{}}],["princip",{"_index":3664,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["principl",{"_index":2458,"title":{"Development principles in cooking":{}},"content":{"How to teach kids to program":{},"Development principles in cooking":{},"Healing creative scars":{},"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":{},"Academese Gems":{},"Emotional Magic":{},"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{"Development principles in cooking":{}}}],["prinf(\"%d",{"_index":4318,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["print",{"_index":561,"title":{},"content":{"undefined":{},"What is Creativity in Software Engineering?":{},"Emotional Magic":{},"The HP Sprocket Mini Printer":{},"Are Digital Gardens Blogs?":{},"Questionable Game Publishing Methods":{},"The Emperor of Lists":{},"Allspice Is Not All Spice":{},"Seneca on How to Live":{},"Generating a Blogroll With OPML in Hugo":{},"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["printer",{"_index":2991,"title":{"The HP Sprocket Mini Printer":{}},"content":{"Inventing - for the worse?":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{}},"tags":{}}],["printf",{"_index":8242,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["println(\"hi\".last",{"_index":8576,"title":{},"content":{"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{}}],["priori",{"_index":3302,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["prioriti",{"_index":6735,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Always have a Diaster Recovery Plan":{}},"tags":{}}],["privaci",{"_index":5471,"title":{"Tracking and privacy concerns on websites":{}},"content":{"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{},"Digitizing journals using DEVONthink":{},"Exploring the AlterNet":{},"Getting rid of trackers using LineageOS":{},"Are You In The System Yet, Sir?":{},"A Triumph For Blogging":{},"Migrating from Mailchimp to Listmonk":{},"Why Mastodon Isn't Great For Serendipity":{},"Visualizing Personal Data Takeouts":{}},"tags":{"Tracking and privacy concerns on websites":{},"Digitizing journals using DEVONthink":{},"Getting rid of trackers using LineageOS":{},"The IndieWeb Mixed Bag":{},"Are You In The System Yet, Sir?":{},"Migrating from Mailchimp to Listmonk":{},"Visualizing Personal Data Takeouts":{}}}],["privacy](/tags/privaci",{"_index":6992,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["privat",{"_index":1619,"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":{},"The IndieWeb Mixed Bag":{},"The first Dutch Obsidian meetup":{},"Pinball Machines in a Jenever Museum":{},"Are Digital Gardens Blogs?":{},"Collective Creativity":{},"Woke in Class":{},"On Trying To Sell A Laptop":{},"Expiry Dates On Journals":{},"March 2022 In Review":{}},"tags":{}}],["privileg",{"_index":8394,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["privéwereld",{"_index":4854,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["pro",{"_index":162,"title":{},"content":{"Ending your day with happy thoughts":{},"486 Upgrade 1: Sound Blaster 16":{},"Personal Desktop Screenshots of Olde":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Programming on the Apple M1 Silicon":{},"Digitizing journals using DEVONthink":{},"You Shouldn't Use Spotify":{},"Stop limiting yourself to JS in browsers":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["probabl",{"_index":1292,"title":{},"content":{"Unit Testing Stored Procedures":{},"Death to pseudocode?":{},"Teaching by philosophy":{},"Using Pandoc to publish a book":{},"3D Software Rendering on the GBA":{},"The Internet Killed Secrets in Games":{},"You Shouldn't Use Spotify":{},"Discord killed support for WinXP":{},"Nineties collecting nostalgia":{},"Re: Is collecting physical games worth it?":{},"Social Debt in Development Teams":{},"Why I like Pawn Stars":{},"Book Number Fourteen":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Cheese cheese cheese cheese cheese":{},"Pinball Machines in a Jenever Museum":{},"Thirty-Six":{},"Creativity Self-Assessment Is Nonsense":{},"Collective Creativity":{},"Ever-increasing Work Email Spam":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Seneca on How to Live":{},"Minimalism and Tidying Up":{},"Winnie Lim on Rebuilding Oneself":{},"2021 Year In Review":{},"How To Enjoy Your Own Digital Music":{},"January 2022 In Review":{},"Thoughts On Home NAS Systems":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["probe",{"_index":8085,"title":{},"content":{"The Fridge, Your Inoculation Room":{}},"tags":{}}],["probeert",{"_index":834,"title":{},"content":{"undefined":{}},"tags":{}}],["probleem",{"_index":3592,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["probleem](../sweng_prob.png",{"_index":3744,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["probleemstel",{"_index":3712,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["problem",{"_index":384,"title":{},"content":{"No, vegetarians do not eat fish!":{},"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":{},"Teaching yourself to draw":{},"How to teach kids to program":{},"Healing creative scars":{},"Journaling in practice":{},"Nuts about local nuts":{},"Inventing - for the worse?":{},"Concentrating on serendipitous creativity":{},"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!":{},"486 Upgrade 2: The SD Card HDD":{},"Reviving an old 80486 PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"What is Creativity in Software Engineering?":{},"Always have a Diaster Recovery Plan":{},"Exploring the AlterNet":{},"On Manuscript Review Procedures":{},"Host your own webmention receiver":{},"Moon Logic":{},"Re: Is collecting physical games worth it?":{},"Social Debt in Development Teams":{},"Software Engineering Is Not Engineering":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"Apple's App Store Design Mistake":{},"Double-dipping and Market Prices":{},"The Fridge, Your Inoculation Room":{},"Reducing Workflow Load Facilitates Writing":{},"Cheese cheese cheese cheese cheese":{},"Emotional Magic":{},"My Kotlin Rose-Tinted Glasses Broke":{},"A Note About Footnotes":{},"Creativity Self-Assessment Is Nonsense":{},"Power Usage Effectiveness":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"Exporting Goodreads to Obsidian":{},"A Creative State of Mind":{},"Migrating from Mailchimp to Listmonk":{},"Three Little GameCube Mods":{},"Natural Gas Prices and The Energy Market":{},"The Creative Techniques Toolbox":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"How to setup Pi-Hole on a Synology NAS":{},"Once Upon a Time in Shaolin":{},"Visualizing Personal Data Takeouts":{},"What a Night Cam Is Good For":{},"Academic Lineage":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Equality in Game Credits":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["problem](https://trudymorgancole.wordpress.com/2014/03/02/dog",{"_index":2931,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["problemat",{"_index":4706,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{},"An am486 Performance Analysis":{}},"tags":{}}],["problemen",{"_index":772,"title":{},"content":{"undefined":{},"De zin en onzin van conferenties":{}},"tags":{}}],["proc",{"_index":1126,"title":{},"content":{"undefined":{},"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["proc.cal",{"_index":1154,"title":{},"content":{"undefined":{}},"tags":{}}],["proc.new",{"_index":1133,"title":{},"content":{"undefined":{}},"tags":{}}],["proc_test",{"_index":1153,"title":{},"content":{"undefined":{}},"tags":{}}],["proc`",{"_index":1139,"title":{},"content":{"undefined":{}},"tags":{}}],["procedur",{"_index":1277,"title":{"Unit Testing Stored Procedures":{},"On Manuscript Review Procedures":{}},"content":{"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{},"Unit testing in Legacy Projects: VB6":{},"Unit Testing PicoBlaze Assembly files":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["proceed",{"_index":6626,"title":{},"content":{"What is Creativity in Software Engineering?":{},"The first Dutch Obsidian meetup":{}},"tags":{}}],["proceeding_",{"_index":4882,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["process",{"_index":1008,"title":{"Programming: a Creative Cognitive Process":{},"Hugo Extended: More static site processing power!":{}},"content":{"Learning to become a baker":{},".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!":{},"ITiCSE 2020: A Report":{},"A journey through the history of webdesign":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"How to write academic papers in Markdown":{},"Exploring the Go programming language":{},"The first Dutch Obsidian meetup":{},"On Manuscript Review Procedures":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"A Triumph For Blogging":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Questionable Game Publishing Methods":{},"Creative Critical Thinking":{},"From Analog Notebook to Digital Vault":{},"Where Does It Stop?":{},"Allspice Is Not All Spice":{},"Migrating from Mailchimp to Listmonk":{},"Generating a Blogroll With OPML in Hugo":{},"Re: Writing A Book Is Nonesense":{},"January 2022 In Review":{},"February 2022 In Review":{},"Leuchtturm Notebook Paper Quality":{},"Fighting Webmention And Pingback Spam":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["process](/post/2019/10/cr",{"_index":6659,"title":{},"content":{"What is Creativity in Software Engineering?":{}},"tags":{}}],["process](/post/2020/05/us",{"_index":8589,"title":{},"content":{"On Selling a Self-published Book":{}},"tags":{}}],["process](http://csis.pace.edu/~ctappert/srd2015/2015pdf/d4.pdf",{"_index":4453,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{}}],["processor",{"_index":5278,"title":{},"content":{"Using Pandoc to publish a book":{},"Building an Athlon Windows 98 Retro PC":{},"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["proclaim",{"_index":8836,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{},"Exporting Goodreads to Obsidian":{},"Technical Knowledge Brews Creativity":{}},"tags":{}}],["produc",{"_index":1903,"title":{},"content":{"Custom Webdriver Page Factories":{},"A quick look at 6 fountain pens":{},"Hugo Extended: More static site processing power!":{},"3D Software Rendering on the GBA":{},"Reviving an old 80486 PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Discord killed support for WinXP":{},"Cheese cheese cheese cheese cheese":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"Are Digital Gardens Blogs?":{},"Creative Critical Thinking":{},"Exporting Goodreads to Obsidian":{},"A Creative State of Mind":{},"Once Upon a Time in Shaolin":{},"Equality in Game Credits":{}},"tags":{}}],["produce_",{"_index":8725,"title":{},"content":{"Thirty-Six":{}},"tags":{}}],["produceert",{"_index":3346,"title":{},"content":{"Over entropie":{}},"tags":{}}],["produceren",{"_index":4078,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["product",{"_index":1501,"title":{"Productivity Tools on all platforms":{},"The Productive Programmer on Mac":{}},"content":{"Visual Studio 2012 for Eclipse users":{},"Unit Testing Extjs UI with Siesta":{},"Unit testing in Legacy Projects: VB6":{},"Nuts about local nuts":{},"Inventing - for the worse?":{},"Take your time.":{},"Over de inflatie van intellect":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"De zin en onzin van conferenties":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Hugo Extended: More static site processing power!":{},"Project Warlock: About Perseverance":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Programming on the Apple M1 Silicon":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"What is Creativity in Software Engineering?":{},"Social Debt in Development Teams":{},"Apple's App Store Design Mistake":{},"Cheese cheese cheese cheese cheese":{},"The HP Sprocket Mini Printer":{},"Ditch Scrum, Organize As You See Fit":{},"A Treatise on Leavened Waffles":{},"Constraint-based Creativity":{},"Exporting Goodreads to Obsidian":{},"How Not To Do A Remaster":{},"Where Does It Stop?":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"Technical Knowledge Brews Creativity":{},"2021 Year In Review":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"A Personal Intro To Rough Hip-Hop":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{"Productivity Tools on all platforms":{},"The Productive Programmer on Mac":{}}}],["proeverijen",{"_index":4061,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["prof",{"_index":6066,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{}},"tags":{}}],["profess",{"_index":2515,"title":{},"content":{"A samurai learning mindset":{},"Inventing - for the worse?":{},"IT Competences and Certificates":{},"Thoughts on collaboration in education":{},"Academese Gems":{},"Software Engineering Is Not Engineering":{}},"tags":{}}],["profess_",{"_index":7794,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["profession",{"_index":402,"title":{},"content":{"No, vegetarians do not eat fish!":{},"IT Competences and Certificates":{},"Software Engineering Is Not Engineering":{},"The Fridge, Your Inoculation Room":{},"2021 Year In Review":{},"Freshly Baked Thoughts":{}},"tags":{}}],["professional_",{"_index":7788,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["professionalism](http://ictprofessionalism.eu/th",{"_index":4728,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["professionel",{"_index":3949,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["professor",{"_index":3487,"title":{},"content":{"Teaching by philosophy":{},"A Ph.D. Thesis Proposal":{},"Thoughts on collaboration in education":{},"Thoughts on Bullshit Jobs":{},"Academese Gems":{},"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["professors](https://bloggingheads.tv/videos/1615",{"_index":10224,"title":{},"content":{"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["professorship",{"_index":5720,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["profil",{"_index":2359,"title":{},"content":{"Teaching yourself to draw":{},"IT Competences and Certificates":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["profit",{"_index":7710,"title":{},"content":{"Flea Market Season":{},"Where Does It Stop?":{},"Allspice Is Not All Spice":{}},"tags":{}}],["profound",{"_index":5890,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"Expiry Dates On Journals":{}},"tags":{}}],["program",{"_index":487,"title":{"How to teach kids to program":{},"Programming: a Creative Cognitive Process":{},"Programming on the Apple M1 Silicon":{},"Exploring the Go programming language":{}},"content":{"undefined":{},"Are you handing over enough when inspiring someone?":{},"How to teach kids to program":{},"A samurai learning mindset":{},"2017 in books":{},"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":{},"ITiCSE 2020: A Report":{},"3D Software Rendering on the GBA":{},"Programming on the Apple M1 Silicon":{},"What is Creativity in Software Engineering?":{},"Exploring the AlterNet":{},"Teaching students about coding trends":{},"Exploring the Go programming language":{},"On Manuscript Review Procedures":{},"Host your own webmention receiver":{},"Apple's App Store Design Mistake":{},"The Decline of Battery Life":{},"Kotlin Is Java 2.0, But It's Still Java":{},"My Kotlin Rose-Tinted Glasses Broke":{},"A Triumph For Blogging":{},"Dear Student":{},"Migrating from Mailchimp to Listmonk":{},"Three Little GameCube Mods":{},"Generating a Blogroll With OPML in Hugo":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"2021 Year In Review":{},"My Retrocomputing Projects For 2022":{},"Creativity Equals Messy Code?":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{"Teaching students about coding trends":{}}}],["programm",{"_index":3518,"title":{"The Productive Programmer on Mac":{}},"content":{"Computer Science learning pathways":{},"Domain Driven Design in C":{},"The Productive Programmer on Mac":{},"Constraint-based Creativity":{},"Exporting Goodreads to Obsidian":{},"2021 Donations":{},"December 2021 In Review":{},"January 2022 In Review":{},"Equality in Game Credits":{}},"tags":{}}],["programmeerwerk",{"_index":3800,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["programmer?from_search=tru",{"_index":4336,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["programmer?from_search=true&from_srp=true&qid=jyuzonuvol&rank=1",{"_index":6583,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["programmer](https://github.com/miloyip/gam",{"_index":3521,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["programmer](https://www.goodreads.com/book/show/3411606",{"_index":4335,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["programmer_",{"_index":6589,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["programming!_",{"_index":10378,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["programming\"_",{"_index":6581,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["programming](github.com/wgroeneveld/gba",{"_index":10754,"title":{},"content":{"January 2022 In Review":{}},"tags":{}}],["programming](https://ensembleprogramming.xyz",{"_index":7584,"title":{},"content":{"Social Debt in Development Teams":{}},"tags":{}}],["programming](https://th",{"_index":3827,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["progress",{"_index":3857,"title":{},"content":{"Reverse engineering a curriculum":{},"My Retro Desk/Gaming Setup in 2021":{},"Apple's App Store Design Mistake":{},"A Creative State of Mind":{},"December 2021 In Review":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["project",{"_index":1415,"title":{"Unit testing in Legacy Projects: VB6":{},"Project Warlock: About Perseverance":{},"My Retrocomputing Projects For 2022":{}},"content":{"undefined":{},"Integration Testing with SQLite":{},"Bye autotools hello Scons":{},"Unit Testing Extjs UI with Siesta":{},"Unit testing in Legacy Projects: VB6":{},"Concentrating on serendipitous creativity":{},"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":{},"Project Warlock: About Perseverance":{},"A journey through the history of webdesign":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Stop limiting yourself to JS in browsers":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"Apple's App Store Design Mistake":{},"Water Levels As Public Data":{},"On Selling a Self-published Book":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{},"The Emperor of Lists":{},"Where Does It Stop?":{},"2021 Donations":{},"December 2021 In Review":{},"Re: Writing A Book Is Nonesense":{},"My Retrocomputing Projects For 2022":{},"What a Night Cam Is Good For":{},"Creativity Equals Messy Code?":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["project=program.vbp",{"_index":2293,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["projects?](https://obsolete29.com/posts/2021/12/15/mi",{"_index":10340,"title":{},"content":{"December 2021 In Review":{}},"tags":{}}],["prolif",{"_index":10784,"title":{},"content":{"On Trying To Sell A Laptop":{}},"tags":{}}],["prolifer",{"_index":6960,"title":{},"content":{"Exploring the AlterNet":{},"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["prolong",{"_index":3016,"title":{},"content":{"Inventing - for the worse?":{},"From Curiosity To Creativity":{}},"tags":{}}],["promin",{"_index":3533,"title":{},"content":{"Computer Science learning pathways":{},"A Treatise on Leavened Waffles":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["promis",{"_index":8,"title":{},"content":{"Ending your day with happy thoughts":{},"Combining async with generators in Node 11":{},"Designing websites with accessibility in mind":{},"Dear Student":{},"February 2022 In Review":{},"March 2022 In Review":{}},"tags":{}}],["promise.all(subdirs.map(async",{"_index":5446,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["promise.resolv",{"_index":5458,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["promise.resolve(\"yo",{"_index":5462,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["promisifi",{"_index":5437,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["promisify(fs.readdir",{"_index":5441,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["promisify(fs.stat",{"_index":5443,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["promot",{"_index":3202,"title":{},"content":{"Concentrating on serendipitous creativity":{},"How Much Should I Spend On Magic The Gathering":{},"On Selling a Self-published Book":{},"Why Mastodon Isn't Great For Serendipity":{},"Re: Writing A Book Is Nonesense":{},"An Ad Leaflet QR Design Mistake":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["prompt",{"_index":1437,"title":{},"content":{"undefined":{},"The Productive Programmer on Mac":{}},"tags":{}}],["promptli",{"_index":6702,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Dear Student":{},"Ever-increasing Work Email Spam":{},"The Lost Art of Being Lost":{},"Constraint-based Creativity":{}},"tags":{}}],["prone",{"_index":11297,"title":{},"content":{"Leuchtturm Notebook Paper Quality":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["proof",{"_index":3492,"title":{},"content":{"Teaching by philosophy":{},"The Productive Programmer on Mac":{},"The Fridge, Your Inoculation Room":{},"A Creative State of Mind":{},"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["proper",{"_index":6526,"title":{},"content":{"Digitizing journals using DEVONthink":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Book Number Fourteen":{},"The Monthly Retro Screenshot Guessing Quiz":{},"My Retrocomputing Projects For 2022":{},"Water Usage and Prices":{}},"tags":{}}],["properli",{"_index":2658,"title":{},"content":{"Healing creative scars":{},"The IndieWeb Mixed Bag":{},"On Selling a Self-published Book":{}},"tags":{}}],["properti",{"_index":799,"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":{},"Exploring the Go programming language":{},"Nineties collecting nostalgia":{},"On Selling a Self-published Book":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["property/picoblaze.html",{"_index":4632,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["property=\"og:imag",{"_index":8247,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["proport",{"_index":3269,"title":{},"content":{"Death to pseudocode?":{}},"tags":{}}],["propos",{"_index":2385,"title":{"A Ph.D. Thesis Proposal":{}},"content":{"Are you handing over enough when inspiring someone?":{},"A quick look at 6 fountain pens":{},"A Ph.D. Thesis Proposal":{},"The Startup of a Lean Doctorate":{},"A Ph.D. Thesis: Iteration 2":{},"The Productive Programmer on Mac":{},"Ever-increasing Work Email Spam":{}},"tags":{}}],["proposal](/post/phd",{"_index":4673,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["proposal](/propos",{"_index":3820,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["proprietari",{"_index":8756,"title":{},"content":{"20 Years of Personal Cellphone History":{}},"tags":{}}],["prose",{"_index":6633,"title":{},"content":{"What is Creativity in Software Engineering?":{},"On Manuscript Review Procedures":{},"Academese Gems":{},"Software Engineering Is Not Engineering":{}},"tags":{}}],["prospect",{"_index":8594,"title":{},"content":{"On Selling a Self-published Book":{},"Where Does It Stop?":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["protagonist",{"_index":8861,"title":{},"content":{"Favorite Game Meme":{},"Equality in Game Credits":{}},"tags":{}}],["protect",{"_index":1188,"title":{},"content":{"undefined":{},"Death to pseudocode?":{},"Tracking and privacy concerns on websites":{},"Exploring the AlterNet":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Constraint-based Creativity":{},"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["protein",{"_index":8463,"title":{},"content":{"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["protocol",{"_index":677,"title":{},"content":{"undefined":{},"Exploring the AlterNet":{},"Discord killed support for WinXP":{},"Using Hugo to Launch a Gemini Capsule":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{},"A Triumph For Blogging":{},"2021 Year In Review":{}},"tags":{}}],["proton",{"_index":7004,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["protonmail",{"_index":7003,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["protonmail](https://protonmail.com",{"_index":7002,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["prototyp",{"_index":673,"title":{},"content":{"undefined":{},"Are you handing over enough when inspiring someone?":{},"Programming: a Creative Cognitive Process":{}},"tags":{}}],["protrud",{"_index":11619,"title":{},"content":{"Wax Seals And Snail Mail":{}},"tags":{}}],["proud",{"_index":4797,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{},"Building an Athlon Windows 98 Retro PC":{},"From Analog Notebook to Digital Vault":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"Generating a Blogroll With OPML in Hugo":{},"2021 Year In Review":{},"Expiry Dates On Journals":{}},"tags":{}}],["proudli",{"_index":5754,"title":{},"content":{"An am486 Performance Analysis":{},"The Pilot Capless: a stellar stealth pen":{},"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["prove",{"_index":3181,"title":{},"content":{"Take your time.":{},"Programming: a Creative Cognitive Process":{},"Thoughts on collaboration in education":{},"Getting rid of trackers using LineageOS":{},"Moon Logic":{},"Creative Critical Thinking":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Why I Play Games (And So Should You)":{},"Creativity Equals Messy Code?":{},"February 2022 In Review":{},"Equality in Game Credits":{}},"tags":{}}],["proven",{"_index":2937,"title":{},"content":{"I'm jealous of my dog":{},"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["provenc",{"_index":2862,"title":{},"content":{"Nuts about local nuts":{},"On Tea Prices":{},"Constraint-based Creativity":{}},"tags":{}}],["provence](https://www.mariagefreres.com/fr/2",{"_index":8208,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["provid",{"_index":1633,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Metaprogramming instead of duplication":{},"Thinking in terms of objects":{},"The Startup of a Lean Doctorate":{},"Five reasons why agile and academia don't go together":{},"A journey through the history of webdesign":{},"Programming on the Apple M1 Silicon":{},"Thoughts on Bullshit Jobs":{},"You Shouldn't Use Spotify":{},"Getting rid of trackers using LineageOS":{},"Stop limiting yourself to JS in browsers":{},"Using Hugo to Launch a Gemini Capsule":{},"Academese Gems":{},"The Fridge, Your Inoculation Room":{},"Pinball Machines in a Jenever Museum":{},"A Note About Footnotes":{},"Power Usage Effectiveness":{},"Why Mastodon Isn't Great For Serendipity":{},"Natural Gas Prices and The Energy Market":{},"How To Enjoy Your Own Digital Music":{},"Thoughts On Home NAS Systems":{},"Water Usage and Prices":{},"How To Stream Your Own Music: Reprise":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["provinc",{"_index":8441,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{},"Parking Machines Design Mistakes":{}},"tags":{}}],["provinciano'",{"_index":10854,"title":{},"content":{"My Retrocomputing Projects For 2022":{}},"tags":{}}],["proxi",{"_index":1661,"title":{},"content":{"Integration Testing with SQLite":{},"Custom Webdriver Page Factories":{},"Host your own webmention receiver":{},"The HP Sprocket Mini Printer":{},"How to setup Pi-Hole on a Synology NAS":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["proximus](https://proximus.b",{"_index":10727,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["proza",{"_index":9552,"title":{},"content":{"The Emperor of Lists":{}},"tags":{}}],["pseudocod",{"_index":3252,"title":{"Death to pseudocode?":{}},"content":{"Death to pseudocode?":{}},"tags":{}}],["psm(4",{"_index":4635,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["psm4",{"_index":4645,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["psu",{"_index":5816,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["psych",{"_index":10400,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["psycholog",{"_index":4948,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Re: Is collecting physical games worth it?":{},"Software Engineering Is Not Engineering":{},"Creativity Self-Assessment Is Nonsense":{},"A Factor Analysis For Dummies in R":{},"Why I Play Games (And So Should You)":{},"January 2022 In Review":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["pthread",{"_index":1822,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["ptolemi",{"_index":9418,"title":{},"content":{"Constraint-based Creativity":{},"The Emperor of Lists":{},"A Creative State of Mind":{}},"tags":{}}],["ptolemy'",{"_index":9432,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["public",{"_index":580,"title":{"Water Levels As Public Data":{}},"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":{},"What is Creativity in Software Engineering?":{},"Academese Gems":{},"Water Levels As Public Data":{},"The HP Sprocket Mini Printer":{},"Ditch Scrum, Organize As You See Fit":{},"A Creative State of Mind":{},"Seneca on How to Live":{},"Natural Gas Prices and The Energy Market":{},"Winnie Lim on Rebuilding Oneself":{},"A Personal Intro To Rough Hip-Hop":{},"Expiry Dates On Journals":{},"Equality in Game Credits":{}},"tags":{}}],["publicati",{"_index":4869,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["publiceren",{"_index":4871,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["publicli",{"_index":11361,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["publiek",{"_index":3947,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["publish",{"_index":3519,"title":{"Using Pandoc to publish a book":{},"On Selling a Self-published Book":{},"Questionable Game Publishing Methods":{}},"content":{"Computer Science learning pathways":{},"The Startup of a Lean Doctorate":{},"Using Pandoc to publish a book":{},"Thoughts on Bullshit Jobs":{},"The Productive Programmer on Mac":{},"How to write academic papers in Markdown":{},"Getting rid of trackers using LineageOS":{},"The IndieWeb Mixed Bag":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"On Manuscript Review Procedures":{},"Academese Gems":{},"Software Engineering Is Not Engineering":{},"Rules of a Creator's Life":{},"On Selling a Self-published Book":{},"A Note About Footnotes":{},"Are Digital Gardens Blogs?":{},"Very Old and Somewhat Old Mood Boards":{},"Questionable Game Publishing Methods":{},"Exporting Goodreads to Obsidian":{},"How Not To Do A Remaster":{},"Technical Knowledge Brews Creativity":{},"December 2021 In Review":{},"Re: Writing A Book Is Nonesense":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["publisher'",{"_index":5405,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["publiu",{"_index":9058,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["pue",{"_index":9217,"title":{},"content":{"Power Usage Effectiveness":{}},"tags":{}}],["puff",{"_index":11056,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["puffi",{"_index":3175,"title":{},"content":{"Take your time.":{}},"tags":{}}],["puke",{"_index":227,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["pulcher",{"_index":8889,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["pull",{"_index":2957,"title":{},"content":{"I'm jealous of my dog":{},"Getting rid of trackers using LineageOS":{},"Discord killed support for WinXP":{},"The Pilot Capless: a stellar stealth pen":{},"Why I like Pawn Stars":{},"How Not To Do A Remaster":{},"The Death Of The Nike+ SportWatch":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["pummel",{"_index":9183,"title":{},"content":{"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["pump",{"_index":6704,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"On Manuscript Review Procedures":{}},"tags":{}}],["pumpkin",{"_index":10084,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["pun",{"_index":2999,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["punctuat",{"_index":9561,"title":{},"content":{"The Emperor of Lists":{}},"tags":{}}],["pupil",{"_index":9508,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["puppi",{"_index":10956,"title":{},"content":{"What a Night Cam Is Good For":{}},"tags":{}}],["purcell](https://www.goodreads.com/book/show/7849839",{"_index":3070,"title":{},"content":{"2017 in books":{}},"tags":{}}],["purchas",{"_index":9260,"title":{},"content":{"Questionable Game Publishing Methods":{},"2021 Donations":{},"Once Upon a Time in Shaolin":{},"What a Night Cam Is Good For":{}},"tags":{}}],["pure",{"_index":7791,"title":{},"content":{"Software Engineering Is Not Engineering":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["purpos",{"_index":1216,"title":{},"content":{"undefined":{},"Integration Testing with SQLite":{},"Using Pandoc to publish a book":{},"Designing websites with accessibility in mind":{},"Digitizing journals using DEVONthink":{},"Belgium - Portugal: 5 - 2":{},"Thirty-Six":{},"Are Digital Gardens Blogs?":{},"Dear Student":{},"Very Old and Somewhat Old Mood Boards":{},"The Lost Art of Being Lost":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Generating a Blogroll With OPML in Hugo":{},"Minimalism and Tidying Up":{},"Thoughts On Home NAS Systems":{},"Expiry Dates On Journals":{}},"tags":{}}],["pursuit",{"_index":5695,"title":{},"content":{"Thoughts on collaboration in education":{},"Freshly Baked Thoughts":{}},"tags":{}}],["push",{"_index":987,"title":{},"content":{"Learning to become a baker":{},"Are you handing over enough when inspiring someone?":{},"Concentrating on serendipitous creativity":{},"ITiCSE 2020: A Report":{},"Building a Core2Duo Windows XP Retro PC":{},"Thoughts on Bullshit Jobs":{},"Using Hugo to Launch a Gemini Capsule":{},"The Fridge, Your Inoculation Room":{},"Water Levels As Public Data":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Power Usage Effectiveness":{},"Creative Critical Thinking":{},"Three Little GameCube Mods":{},"On Trying To Sell A Laptop":{},"True Backlink Support in Hugo":{}},"tags":{}}],["pusher",{"_index":2978,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["pushingupros",{"_index":7468,"title":{},"content":{"Moon Logic":{}},"tags":{}}],["put",{"_index":59,"title":{},"content":{"Ending your day with happy thoughts":{},"undefined":{},"Faking domain logic":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"I'm jealous of my dog":{},"Death to pseudocode?":{},"Thinking in terms of objects":{},"Reverse engineering a curriculum":{},"The Startup of a Lean Doctorate":{},"IT Competences and Certificates":{},"Building a Core2Duo Windows XP Retro PC":{},"How to write academic papers in Markdown":{},"Always have a Diaster Recovery Plan":{},"Getting rid of trackers using LineageOS":{},"Academese Gems":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"The Pilot Capless: a stellar stealth pen":{},"Apple's App Store Design Mistake":{},"The Fridge, Your Inoculation Room":{},"How Much Should I Spend On Magic The Gathering":{},"Rules of a Creator's Life":{},"What if Seneca wasn't Nero's advisor?":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Cheese cheese cheese cheese cheese":{},"Kotlin Is Java 2.0, But It's Still Java":{},"On Selling a Self-published Book":{},"A Note About Footnotes":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"Are Digital Gardens Blogs?":{},"Very Old and Somewhat Old Mood Boards":{},"A 5.25\" Gobliins 2 Surprise":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"Migrating from Mailchimp to Listmonk":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Why Mastodon Isn't Great For Serendipity":{},"Re: Writing A Book Is Nonesense":{},"Woke in Class":{},"How to setup Pi-Hole on a Synology NAS":{},"February 2022 In Review":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["putin",{"_index":11475,"title":{},"content":{"March 2022 In Review":{}},"tags":{}}],["puzz",{"_index":10776,"title":{},"content":{"January 2022 In Review":{}},"tags":{}}],["puzzl",{"_index":7439,"title":{},"content":{"Moon Logic":{},"February 2022 In Review":{}},"tags":{}}],["puzzle/adventur",{"_index":11532,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["puzzler",{"_index":8414,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["pve",{"_index":10290,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["pvp",{"_index":10277,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["pxl",{"_index":10640,"title":{},"content":{"Woke in Class":{}},"tags":{}}],["pycap",{"_index":11579,"title":{},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["pycharm",{"_index":4346,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["pypl",{"_index":7098,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["pyramid",{"_index":2329,"title":{},"content":{"Teaching yourself to draw":{},"Healing creative scars":{},"On Tea Prices":{}},"tags":{}}],["pythagora",{"_index":3459,"title":{},"content":{"Over entropie":{}},"tags":{}}],["pythagorean",{"_index":10155,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["python",{"_index":704,"title":{},"content":{"undefined":{},"Unit Testing PicoBlaze Assembly files":{},"Very Old and Somewhat Old Mood Boards":{},"Natural Gas Prices and The Energy Market":{},"Water Usage and Prices":{}},"tags":{"Bye autotools hello Scons":{}}}],["python'",{"_index":4641,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["python3",{"_index":1036,"title":{},"content":{"undefined":{}},"tags":{}}],["python3.9",{"_index":6458,"title":{},"content":{"Programming on the Apple M1 Silicon":{}},"tags":{}}],["python](http://effbot.org/zone/default",{"_index":1080,"title":{},"content":{"undefined":{}},"tags":{}}],["python](http://www.artima.com/weblogs/viewpost.jsp?thread=101605",{"_index":1047,"title":{},"content":{"undefined":{}},"tags":{}}],["python’",{"_index":1084,"title":{},"content":{"undefined":{}},"tags":{}}],["pyusb",{"_index":11580,"title":{},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["q",{"_index":10521,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1",{"_index":10487,"title":{},"content":{"Natural Gas Prices and The Energy Market":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["q1/15",{"_index":10495,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1/16",{"_index":10499,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1/17",{"_index":10503,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1/18",{"_index":10507,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1/19",{"_index":10511,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1/20",{"_index":10515,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1/21",{"_index":10519,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/15",{"_index":10496,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/16",{"_index":10500,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/17",{"_index":10504,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/18",{"_index":10508,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/19",{"_index":10512,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/20",{"_index":10516,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/21",{"_index":10520,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q3/15",{"_index":10497,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q3/16",{"_index":10501,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q3/17",{"_index":10505,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q3/18",{"_index":10509,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q3/19",{"_index":10513,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q3/20",{"_index":10517,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4",{"_index":10486,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4/15",{"_index":10498,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4/16",{"_index":10502,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4/17",{"_index":10506,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4/18",{"_index":10510,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4/19",{"_index":10514,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4/20",{"_index":10518,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["qa",{"_index":11421,"title":{},"content":{"Equality in Game Credits":{}},"tags":{}}],["qfpay",{"_index":8969,"title":{},"content":{"Parking Machines Design Mistakes":{}},"tags":{}}],["qmake",{"_index":1861,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["qr",{"_index":11142,"title":{"An Ad Leaflet QR Design Mistake":{}},"content":{"An Ad Leaflet QR Design Mistake":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["qr.jpg",{"_index":11144,"title":{},"content":{"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["qt",{"_index":3541,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["quadrupl",{"_index":10488,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["quak",{"_index":6060,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Favorite Game Meme":{}},"tags":{}}],["qualif",{"_index":3018,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["qualifi",{"_index":7675,"title":{},"content":{"Belgium - Portugal: 5 - 2":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["qualit",{"_index":6662,"title":{},"content":{"What is Creativity in Software Engineering?":{},"On Tea Prices":{},"A Factor Analysis For Dummies in R":{},"Winnie Lim on Rebuilding Oneself":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["qualiti",{"_index":3023,"title":{"Leuchtturm Notebook Paper Quality":{}},"content":{"Inventing - for the worse?":{},"Five reasons why agile and academia don't go together":{},"Win98 Upgrade: Sound Blaster Audigy":{},"On Tea Prices":{},"The HP Sprocket Mini Printer":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["quality?_",{"_index":11211,"title":{},"content":{"Creativity Equals Messy Code?":{}},"tags":{}}],["quantifi",{"_index":2334,"title":{},"content":{"Teaching yourself to draw":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["quantit",{"_index":10386,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["quantiti",{"_index":9179,"title":{},"content":{"Ever-increasing Work Email Spam":{}},"tags":{}}],["quart",{"_index":9379,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["quart_",{"_index":9381,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["quarter",{"_index":7641,"title":{},"content":{"Belgium - Portugal: 5 - 2":{},"Natural Gas Prices and The Energy Market":{},"Water Usage and Prices":{}},"tags":{}}],["quarterli",{"_index":9753,"title":{},"content":{"Where Does It Stop?":{},"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["quartey'",{"_index":11384,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["quarts_",{"_index":8720,"title":{},"content":{"Thirty-Six":{}},"tags":{}}],["quatr",{"_index":9378,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["queri",{"_index":1341,"title":{},"content":{"Unit Testing Stored Procedures":{},"Exploring the Go programming language":{}},"tags":{}}],["quest",{"_index":6151,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{},"Misconceptions about retro gamers":{},"Software Engineering Is Not Engineering":{},"The Lost Art of Being Lost":{},"December 2021 In Review":{},"February 2022 In Review":{},"March 2022 In Review":{}},"tags":{}}],["question",{"_index":1335,"title":{"Questionable Game Publishing Methods":{}},"content":{"Unit Testing Stored Procedures":{},"Metaprogramming instead of duplication":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"Hiding Code Complexity":{},"Reverse engineering a curriculum":{},"The Startup of a Lean Doctorate":{},"IT Competences and Certificates":{},"Programming: a Creative Cognitive Process":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"Thoughts on collaboration in education":{},"Win98 Upgrade: Sound Blaster Audigy":{},"What is Creativity in Software Engineering?":{},"My Retro Desk/Gaming Setup in 2021":{},"Using Hugo to Launch a Gemini Capsule":{},"Host your own webmention receiver":{},"Academese Gems":{},"Software Engineering Is Not Engineering":{},"Apple's App Store Design Mistake":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Creative Critical Thinking":{},"From Curiosity To Creativity":{},"Where Does It Stop?":{},"2021 Donations":{},"A Factor Analysis For Dummies in R":{},"Winnie Lim on Rebuilding Oneself":{},"Expiry Dates On Journals":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["queue",{"_index":6935,"title":{},"content":{"Always have a Diaster Recovery Plan":{}},"tags":{}}],["quick",{"_index":1533,"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":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Teaching students about coding trends":{},"Discord killed support for WinXP":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"How Much Should I Spend On Magic The Gathering":{},"A Treatise on Leavened Waffles":{},"From Analog Notebook to Digital Vault":{},"November 2021 Meta Post":{},"Re: Writing A Book Is Nonesense":{},"Why I Play Games (And So Should You)":{},"On Trying To Sell A Laptop":{},"Once Upon a Time in Shaolin":{},"Fighting Webmention And Pingback Spam":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["quicker",{"_index":6601,"title":{},"content":{"The Productive Programmer on Mac":{},"On Tea Prices":{}},"tags":{}}],["quicklaunch",{"_index":4361,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["quickli",{"_index":318,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"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":{},"The Productive Programmer on Mac":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"The Pilot Capless: a stellar stealth pen":{},"Why I like Pawn Stars":{},"Parking Machines Design Mistakes":{},"Are Digital Gardens Blogs?":{},"Very Old and Somewhat Old Mood Boards":{},"Constraint-based Creativity":{},"Exporting Goodreads to Obsidian":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Dark Age of Camelot in 2022":{},"December 2021 In Review":{},"Woke in Class":{},"Academic Lineage":{},"March 2022 In Review":{},"The Death Of The Nike+ SportWatch":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["quiet",{"_index":327,"title":{},"content":{"On finding your inner zen in big cities":{},"Always have a Diaster Recovery Plan":{},"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["quintet",{"_index":11025,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["quirk",{"_index":7123,"title":{},"content":{"The IndieWeb Mixed Bag":{},"A Triumph For Blogging":{},"November 2021 Meta Post":{},"Expiry Dates On Journals":{}},"tags":{}}],["quirk'",{"_index":10720,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["quirki",{"_index":7301,"title":{},"content":{"The first Dutch Obsidian meetup":{},"Moon Logic":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["quit",{"_index":317,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"Visual Studio 2012 for Eclipse users":{},"Unit testing in Legacy Projects: VB6":{},"Teaching yourself to draw":{},"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":{},"486 Upgrade 1: Sound Blaster 16":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Digitizing journals using DEVONthink":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Exploring the AlterNet":{},"Getting rid of trackers using LineageOS":{},"Using Hugo to Launch a Gemini Capsule":{},"On Manuscript Review Procedures":{},"Host your own webmention receiver":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Academese Gems":{},"The Pilot Capless: a stellar stealth pen":{},"Apple's App Store Design Mistake":{},"The Fridge, Your Inoculation Room":{},"Rules of a Creator's Life":{},"The Decline of Battery Life":{},"What if Seneca wasn't Nero's advisor?":{},"Where Does It Stop?":{},"2021 Donations":{},"Migrating from Mailchimp to Listmonk":{},"Three Little GameCube Mods":{},"Winnie Lim on Rebuilding Oneself":{},"2021 Year In Review":{},"Once Upon a Time in Shaolin":{},"Water Usage and Prices":{},"Expiry Dates On Journals":{},"Leuchtturm Notebook Paper Quality":{},"Equality in Game Credits":{},"March 2022 In Review":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["quite](/post/2021/02/th",{"_index":7748,"title":{},"content":{"Misconceptions about retro gamers":{}},"tags":{}}],["quiz",{"_index":9992,"title":{"The Monthly Retro Screenshot Guessing Quiz":{}},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["quiz.1272",{"_index":9996,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["quizz",{"_index":9999,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["quot",{"_index":3307,"title":{},"content":{"Thinking in terms of objects":{},"The Productive Programmer on Mac":{},"How to write academic papers in Markdown":{},"Emotional Magic":{},"The Emperor of Lists":{},"November 2021 Meta Post":{},"December 2021 In Review":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["quotat",{"_index":6815,"title":{},"content":{"How to write academic papers in Markdown":{}},"tags":{}}],["r",{"_index":1564,"title":{"A Factor Analysis For Dummies in R":{}},"content":{"Visual Studio 2012 for Eclipse users":{},"2017 in books":{},"Death to pseudocode?":{},"A Factor Analysis For Dummies in R":{},"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["r&b",{"_index":11055,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["race",{"_index":5650,"title":{},"content":{"3D Software Rendering on the GBA":{},"Thirty-Six":{},"Dark Age of Camelot in 2022":{}},"tags":{}}],["raceway",{"_index":6740,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{}},"tags":{}}],["racist",{"_index":10637,"title":{},"content":{"Woke in Class":{}},"tags":{}}],["racistisch",{"_index":10641,"title":{},"content":{"Woke in Class":{}},"tags":{}}],["rack",{"_index":9224,"title":{},"content":{"Power Usage Effectiveness":{}},"tags":{}}],["racket",{"_index":1251,"title":{},"content":{"undefined":{}},"tags":{}}],["rad",{"_index":4263,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["radar](https://www.thoughtworks.com/radar",{"_index":7094,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["radeon",{"_index":6111,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["radermach",{"_index":4686,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["radian",{"_index":5676,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["radic",{"_index":9699,"title":{},"content":{"How Not To Do A Remaster":{}},"tags":{}}],["radio",{"_index":8612,"title":{},"content":{"On Selling a Self-published Book":{},"How Not To Do A Remaster":{}},"tags":{}}],["radish",{"_index":8476,"title":{},"content":{"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["radiu",{"_index":8962,"title":{},"content":{"Parking Machines Design Mistakes":{}},"tags":{}}],["ragdol",{"_index":10668,"title":{},"content":{"2021 Year In Review":{}},"tags":{}}],["rage",{"_index":2263,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{},"Nineties collecting nostalgia":{}},"tags":{}}],["raid",{"_index":8721,"title":{},"content":{"Thirty-Six":{}},"tags":{}}],["rail",{"_index":3294,"title":{},"content":{"Death to pseudocode?":{}},"tags":{}}],["rain",{"_index":7709,"title":{},"content":{"Flea Market Season":{},"Water Levels As Public Data":{},"How Not To Do A Remaster":{},"November 2021 Meta Post":{},"December 2021 In Review":{}},"tags":{}}],["rain_",{"_index":10071,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["raindrop",{"_index":2953,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["rainfal",{"_index":8337,"title":{},"content":{"Water Levels As Public Data":{}},"tags":{}}],["rais",{"_index":8422,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{},"Power Usage Effectiveness":{},"The Creative Techniques Toolbox":{},"Why I Play Games (And So Should You)":{}},"tags":{}}],["ram",{"_index":5131,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"3D Software Rendering on the GBA":{},"An am486 Performance Analysis":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"Personal Desktop Screenshots of Olde":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The Decline of Battery Life":{},"A 5.25\" Gobliins 2 Surprise":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["ramif",{"_index":7159,"title":{},"content":{"The IndieWeb Mixed Bag":{},"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["rammen",{"_index":3991,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["ran",{"_index":5790,"title":{},"content":{"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"Flea Market Season":{},"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["random",{"_index":1949,"title":{},"content":{"Faking domain logic":{},"Nuts about local nuts":{},"Teaching by philosophy":{},"Domain Driven Design in C":{},"A Note About Footnotes":{},"How Not To Do A Remaster":{},"Allspice Is Not All Spice":{},"November 2021 Meta Post":{},"Why Mastodon Isn't Great For Serendipity":{},"December 2021 In Review":{},"2021 Year In Review":{}},"tags":{}}],["randomli",{"_index":7457,"title":{},"content":{"Moon Logic":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["rang",{"_index":2086,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"DIY: Hosting stuff on your own VPS":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"The Pilot Capless: a stellar stealth pen":{},"Why I like Pawn Stars":{},"Reducing Workflow Load Facilitates Writing":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Pinball Machines in a Jenever Museum":{},"Generating a Blogroll With OPML in Hugo":{},"True Backlink Support in Hugo":{}},"tags":{}}],["range(10",{"_index":1086,"title":{},"content":{"undefined":{}},"tags":{}}],["ranger",{"_index":10270,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["rank",{"_index":7111,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["ransack",{"_index":10556,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["rant",{"_index":5088,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"On Manuscript Review Procedures":{},"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["rap",{"_index":10679,"title":{},"content":{"How To Enjoy Your Own Digital Music":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["rapen",{"_index":4543,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["rapid",{"_index":2379,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Favorite Game Meme":{},"Expiry Dates On Journals":{}},"tags":{}}],["rapidli",{"_index":3497,"title":{},"content":{"Teaching by philosophy":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"Exploring the AlterNet":{},"The Fridge, Your Inoculation Room":{},"Pinball Machines in a Jenever Museum":{},"20 Years of Personal Cellphone History":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["rare",{"_index":3218,"title":{},"content":{"Concentrating on serendipitous creativity":{},"Teaching Object-Oriented design using the GBA":{},"How Much Should I Spend On Magic The Gathering":{},"Rules of a Creator's Life":{}},"tags":{}}],["rascal",{"_index":10968,"title":{},"content":{"What a Night Cam Is Good For":{}},"tags":{}}],["raspberri",{"_index":4579,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["raster",{"_index":5668,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["rata",{"_index":6871,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["rate",{"_index":5657,"title":{},"content":{"3D Software Rendering on the GBA":{},"An am486 Performance Analysis":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Thoughts on Bullshit Jobs":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"You Shouldn't Use Spotify":{},"The Decline of Battery Life":{},"Ditch Scrum, Organize As You See Fit":{},"Questionable Game Publishing Methods":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"What a Night Cam Is Good For":{},"Choosing an Audio Codec":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["ratio",{"_index":9884,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["rational",{"_index":8496,"title":{},"content":{"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["rationalist",{"_index":8391,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["rattl",{"_index":8635,"title":{},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["ravag",{"_index":8313,"title":{},"content":{"Water Levels As Public Data":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["raw",{"_index":5787,"title":{},"content":{"An am486 Performance Analysis":{},"How to write academic papers in Markdown":{},"Water Levels As Public Data":{},"The HP Sprocket Mini Printer":{},"Natural Gas Prices and The Energy Market":{},"Water Usage and Prices":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["raw_alpha",{"_index":10417,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["rawcont",{"_index":8238,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["ray",{"_index":5641,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["rayman",{"_index":9257,"title":{},"content":{"Questionable Game Publishing Methods":{},"January 2022 In Review":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["rayman'",{"_index":9259,"title":{},"content":{"Questionable Game Publishing Methods":{}},"tags":{}}],["raymanlegends.jpg",{"_index":9261,"title":{},"content":{"Questionable Game Publishing Methods":{}},"tags":{}}],["re",{"_index":1066,"title":{"Re: Is collecting physical games worth it?":{},"Re: Writing A Book Is Nonesense":{}},"content":{"undefined":{},"Journaling in practice":{},"Teaching Object-Oriented design using the GBA":{},"Combining async with generators in Node 11":{},"Thoughts on collaboration in education":{},"An am486 Performance Analysis":{},"On Manuscript Review Procedures":{},"Re: Is collecting physical games worth it?":{},"Belgium - Portugal: 5 - 2":{},"Double-dipping and Market Prices":{},"Very Old and Somewhat Old Mood Boards":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Expiry Dates On Journals":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"March 2022 In Review":{}},"tags":{}}],["reach",{"_index":2376,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"A quick look at 6 fountain pens":{},"Nuts about local nuts":{},"Concentrating on serendipitous creativity":{},"Computer Science learning pathways":{},"The Startup of a Lean Doctorate":{},"Using Pandoc to publish a book":{},"Re: Is collecting physical games worth it?":{},"How Much Should I Spend On Magic The Gathering":{},"Creativity Self-Assessment Is Nonsense":{},"Where Does It Stop?":{},"A Creative State of Mind":{},"2021 Donations":{},"Re: Writing A Book Is Nonesense":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["react",{"_index":2174,"title":{"Migrating from Extjs to React gradually":{}},"content":{"Migrating from Extjs to React gradually":{}},"tags":{"Migrating from Extjs to React gradually":{}}}],["react.compon",{"_index":2235,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["react/mod/someurl",{"_index":2218,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["react/some/detail/url",{"_index":2242,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["reacti",{"_index":10794,"title":{},"content":{"On Trying To Sell A Laptop":{}},"tags":{}}],["reaction",{"_index":3041,"title":{},"content":{"2017 in books":{},"20 Years of Personal Cellphone History":{},"Woke in Class":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["reactjsaccord",{"_index":5248,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["span>cookson",{"_index":5730,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["span>goethelaura",{"_index":5619,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["span>neal",{"_index":6604,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["span>smyth",{"_index":5709,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["spanish",{"_index":2885,"title":{},"content":{"Nuts about local nuts":{},"Technical Knowledge Brews Creativity":{}},"tags":{}}],["spar",{"_index":5106,"title":{},"content":{"Five reasons why agile and academia don't go together":{}},"tags":{}}],["spare",{"_index":6115,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Re: Is collecting physical games worth it?":{},"The Fridge, Your Inoculation Room":{},"The Decline of Battery Life":{}},"tags":{}}],["sparerib",{"_index":380,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["sparingli",{"_index":10778,"title":{},"content":{"On Trying To Sell A Laptop":{}},"tags":{}}],["spark",{"_index":3159,"title":{},"content":{"Take your time.":{},"The insanity of collecting retro games":{},"A Triumph For Blogging":{},"The Lost Art of Being Lost":{}},"tags":{}}],["sparkl",{"_index":6673,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["spati",{"_index":1117,"title":{},"content":{"undefined":{}},"tags":{}}],["spawn",{"_index":1432,"title":{},"content":{"undefined":{}},"tags":{}}],["speak",{"_index":2483,"title":{},"content":{"How to teach kids to program":{},"Journaling in practice":{},"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":{},"A journey through the history of webdesign":{},"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Software Engineering Is Not Engineering":{},"On Tea Prices":{},"Kotlin Is Java 2.0, But It's Still Java":{},"From Curiosity To Creativity":{},"December 2021 In Review":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["speaker",{"_index":5884,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"Once Upon a Time in Shaolin":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["spec",{"_index":5763,"title":{},"content":{"An am486 Performance Analysis":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Exploring the AlterNet":{}},"tags":{}}],["speciaal",{"_index":633,"title":{},"content":{"undefined":{},"Over analoog en digitaal":{}},"tags":{}}],["special",{"_index":264,"title":{},"content":{"On finding your inner zen in big cities":{},"Learning to become a baker":{},"undefined":{},"A quick look at 6 fountain pens":{},"Inventing - for the worse?":{},"Computer Science learning pathways":{},"Reverse engineering a curriculum":{},"Hugo Extended: More static site processing power!":{},"Using Pandoc to publish a book":{},"Combining async with generators in Node 11":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"486 Upgrade 2: The SD Card HDD":{},"486 Upgrade 1: Sound Blaster 16":{},"Building a Core2Duo Windows XP Retro PC":{},"My Retro Desk/Gaming Setup in 2021":{},"Thirty-Six":{},"Parking Machines Design Mistakes":{},"Creative Critical Thinking":{},"Where Does It Stop?":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Generating a Blogroll With OPML in Hugo":{},"Academic Lineage":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["specialist",{"_index":4763,"title":{},"content":{"IT Competences and Certificates":{},"Software Engineering Is Not Engineering":{}},"tags":{}}],["specialti",{"_index":2739,"title":{},"content":{"A quick look at 6 fountain pens":{},"Academese Gems":{},"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["specif",{"_index":1879,"title":{},"content":{"Custom Webdriver Page Factories":{},".NET Memory management VS JVM Memory management":{},"Programming: a Creative Cognitive Process":{},"Page Building with Brizy in Wordpress":{},"What is Creativity in Software Engineering?":{},"How to write academic papers in Markdown":{},"Exploring the AlterNet":{},"Getting rid of trackers using LineageOS":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Academese Gems":{},"Are You In The System Yet, Sir?":{},"Ever-increasing Work Email Spam":{},"From Analog Notebook to Digital Vault":{},"January 2022 In Review":{},"Expiry Dates On Journals":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["specifi",{"_index":1330,"title":{},"content":{"Unit Testing Stored Procedures":{},"Bye autotools hello Scons":{}},"tags":{}}],["specifiek",{"_index":3589,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["spectacular",{"_index":5356,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["spectrum",{"_index":8995,"title":{},"content":{"A Triumph For Blogging":{}},"tags":{}}],["specul",{"_index":9688,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["speculaasmengel",{"_index":9879,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["sped",{"_index":5687,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["speech",{"_index":7211,"title":{},"content":{"Discord killed support for WinXP":{},"Ever-increasing Work Email Spam":{},"Creative Critical Thinking":{}},"tags":{}}],["speed",{"_index":1504,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Programming: a Creative Cognitive Process":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"Building an Athlon Windows 98 Retro PC":{},"Digitizing journals using DEVONthink":{},"Stop limiting yourself to JS in browsers":{},"On Manuscript Review Procedures":{},"Nineties collecting nostalgia":{},"Apple's App Store Design Mistake":{},"Where Does It Stop?":{}},"tags":{}}],["speedi",{"_index":6408,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{},"On Manuscript Review Procedures":{},"The Pilot Capless: a stellar stealth pen":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["speedili",{"_index":10169,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["speelt",{"_index":4076,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["speeltj",{"_index":5064,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["spel",{"_index":4507,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spelcasett",{"_index":4576,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spelconsol",{"_index":4583,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spelen",{"_index":4614,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spelervar",{"_index":4556,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spellbook](https://commanderspellbook.com/)'",{"_index":8523,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["spellcast",{"_index":5365,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["spellen",{"_index":4536,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spells](https://jefklakscodex.com/articles/bg2",{"_index":8886,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["spend",{"_index":2315,"title":{"How Much Should I Spend On Magic The Gathering":{}},"content":{"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"The Productive Programmer on Mac":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"Exploring the Go programming language":{},"Emotional Magic":{}},"tags":{}}],["spenderen",{"_index":4892,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["spent",{"_index":2344,"title":{},"content":{"Teaching yourself to draw":{},"Five reasons why agile and academia don't go together":{},"On Manuscript Review Procedures":{},"Double-dipping and Market Prices":{},"The Fridge, Your Inoculation Room":{},"Parking Machines Design Mistakes":{},"A Triumph For Blogging":{},"Technical Knowledge Brews Creativity":{},"Winnie Lim on Rebuilding Oneself":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["spew",{"_index":5821,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{},"Stop limiting yourself to JS in browsers":{},"Software Engineering Is Not Engineering":{}},"tags":{}}],["spi",{"_index":9233,"title":{},"content":{"Power Usage Effectiveness":{},"Technical Knowledge Brews Creativity":{}},"tags":{}}],["spice",{"_index":2620,"title":{"Allspice Is Not All Spice":{}},"content":{"Development principles in cooking":{},"Creative Critical Thinking":{},"Allspice Is Not All Spice":{}},"tags":{}}],["spijt",{"_index":5033,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["spike",{"_index":8478,"title":{},"content":{"Cheese cheese cheese cheese cheese":{},"The Lost Art of Being Lost":{},"December 2021 In Review":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["spill",{"_index":6995,"title":{},"content":{"Getting rid of trackers using LineageOS":{},"Flea Market Season":{}},"tags":{}}],["spin",{"_index":5995,"title":{},"content":{"Reviving an old 80486 PC":{},"Thirty-Six":{}},"tags":{}}],["spirit",{"_index":8623,"title":{},"content":{"Pinball Machines in a Jenever Museum":{},"Dark Age of Camelot in 2022":{}},"tags":{}}],["spit",{"_index":7740,"title":{},"content":{"Misconceptions about retro gamers":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["splash",{"_index":5856,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{}},"tags":{}}],["split",{"_index":7405,"title":{},"content":{"On Manuscript Review Procedures":{},"From Analog Notebook to Digital Vault":{}},"tags":{}}],["splitsen",{"_index":1202,"title":{},"content":{"undefined":{}},"tags":{}}],["spoil",{"_index":7739,"title":{},"content":{"Misconceptions about retro gamers":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["spoiler",{"_index":8034,"title":{},"content":{"Double-dipping and Market Prices":{}},"tags":{}}],["sponsor",{"_index":9892,"title":{},"content":{"2021 Donations":{}},"tags":{}}],["spoon",{"_index":9403,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["sporad",{"_index":2255,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["sport",{"_index":7691,"title":{},"content":{"Belgium - Portugal: 5 - 2":{},"How Not To Do A Remaster":{}},"tags":{}}],["sportswatch",{"_index":11584,"title":{},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["sportwatch",{"_index":11563,"title":{"The Death Of The Nike+ SportWatch":{}},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["sportwatch.png",{"_index":11568,"title":{},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["spot",{"_index":3186,"title":{},"content":{"Take your time.":{},"You Shouldn't Use Spotify":{},"Lousy Wordpress Hacking Attempts detected":{},"Why I like Pawn Stars":{},"The Fridge, Your Inoculation Room":{},"On Tea Prices":{},"Water Levels As Public Data":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"Woke in Class":{}},"tags":{}}],["spotifi",{"_index":4347,"title":{"You Shouldn't Use Spotify":{}},"content":{"Productivity Tools on all platforms":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"2021 Donations":{},"How To Enjoy Your Own Digital Music":{},"Once Upon a Time in Shaolin":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["spotify](/2021/02/y",{"_index":6761,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["spotify](/post/2021/02/y",{"_index":10677,"title":{},"content":{"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["spotify](https://rubenerd.com/go",{"_index":6847,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["spotlight",{"_index":8099,"title":{},"content":{"The Fridge, Your Inoculation Room":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["spous",{"_index":7587,"title":{},"content":{"Social Debt in Development Teams":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["spray",{"_index":9201,"title":{},"content":{"Very Old and Somewhat Old Mood Boards":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["spread",{"_index":973,"title":{},"content":{"Learning to become a baker":{},"Migrating from Extjs to React gradually":{},"Reverse engineering a curriculum":{},"IT Competences and Certificates":{},"Combining async with generators in Node 11":{},"A Triumph For Blogging":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["spreadabl",{"_index":2626,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["spreken",{"_index":900,"title":{},"content":{"undefined":{}},"tags":{}}],["spreker",{"_index":4849,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["spring",{"_index":2900,"title":{},"content":{"Nuts about local nuts":{},"Take your time.":{},"Over Onmiddellijke Voldoening":{},"My Kotlin Rose-Tinted Glasses Broke":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["springi",{"_index":2774,"title":{},"content":{"A quick look at 6 fountain pens":{},"A Treatise on Leavened Waffles":{}},"tags":{}}],["sprinkl",{"_index":6760,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["sprint",{"_index":4447,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{}}],["sprite",{"_index":4806,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{},"3D Software Rendering on the GBA":{},"A 5.25\" Gobliins 2 Surprise":{},"January 2022 In Review":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["spritz",{"_index":9200,"title":{},"content":{"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["sprocket",{"_index":8924,"title":{"The HP Sprocket Mini Printer":{}},"content":{"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{}},"tags":{}}],["sprocket](https://sprocketprinters.com",{"_index":8930,"title":{},"content":{"The HP Sprocket Mini Printer":{}},"tags":{}}],["sprout",{"_index":9663,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["sprung",{"_index":7565,"title":{},"content":{"Social Debt in Development Teams":{}},"tags":{}}],["sql",{"_index":1313,"title":{},"content":{"Unit Testing Stored Procedures":{},"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{}}}],["sqlite",{"_index":1652,"title":{"Integration Testing with SQLite":{}},"content":{"Integration Testing with SQLite":{},"Programming on the Apple M1 Silicon":{}},"tags":{"Integration Testing with SQLite":{}}}],["sqlite](http://www.sqlite.org",{"_index":1679,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqlitecommand",{"_index":1703,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqlitecommand.executenonqueri",{"_index":1708,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqliteconnect",{"_index":1692,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqliteconnectionflags.logal",{"_index":1697,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqlitedbconnect",{"_index":1693,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["squabbl",{"_index":10459,"title":{},"content":{"Minimalism and Tidying Up":{}},"tags":{}}],["squad",{"_index":7170,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["squander",{"_index":8054,"title":{},"content":{"Double-dipping and Market Prices":{}},"tags":{}}],["squar",{"_index":2654,"title":{},"content":{"Healing creative scars":{},"Five reasons why agile and academia don't go together":{},"3D Software Rendering on the GBA":{},"Water Levels As Public Data":{}},"tags":{}}],["squeak",{"_index":10577,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["squeez",{"_index":3228,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["src",{"_index":1473,"title":{},"content":{"undefined":{},"Bye autotools hello Scons":{},"Migrating from Extjs to React gradually":{},"Hugo Extended: More static site processing power!":{},"RSS Feeds, Hugo, and Lazy Image Loading":{}},"tags":{}}],["src=\"/img/wine.jpg",{"_index":4154,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["src](https://www.slideshare.net/medikawy_2005/how",{"_index":4953,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["ss",{"_index":866,"title":{},"content":{"undefined":{}},"tags":{}}],["ssd",{"_index":5138,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["ssh",{"_index":1386,"title":{},"content":{"undefined":{},"DIY: Hosting stuff on your own VPS":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["sshd_config",{"_index":5146,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["sshlogin.exp",{"_index":1410,"title":{},"content":{"undefined":{}},"tags":{}}],["ssl",{"_index":5595,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["st",{"_index":335,"title":{},"content":{"On finding your inner zen in big cities":{},"Allspice Is Not All Spice":{}},"tags":{}}],["staan",{"_index":3639,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{},"De zin en onzin van conferenties":{}},"tags":{}}],["staat",{"_index":743,"title":{},"content":{"undefined":{},"Over het introduceren van bedrijfsethiek":{},"Over tijdsbesef":{}},"tags":{}}],["stab",{"_index":10362,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["stabil",{"_index":2106,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["stabl",{"_index":3510,"title":{},"content":{"Teaching by philosophy":{},"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["stack",{"_index":1198,"title":{},"content":{"undefined":{},"Death to pseudocode?":{},"Thoughts on collaboration in education":{},"Teaching students about coding trends":{},"Nineties collecting nostalgia":{},"Academese Gems":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"Dear Student":{},"Technical Knowledge Brews Creativity":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["stack/blob/main/src/youtube/thumbify.j",{"_index":7963,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["stackoverflow",{"_index":3258,"title":{},"content":{"Death to pseudocode?":{},"Combining async with generators in Node 11":{}},"tags":{}}],["stacktrac",{"_index":2119,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["stad",{"_index":4073,"title":{},"content":{"Over tijdsbesef":{},"February 2022 In Review":{}},"tags":{}}],["stad](https://www.goodreads.com/book/show/36402290",{"_index":11244,"title":{},"content":{"February 2022 In Review":{}},"tags":{}}],["staff",{"_index":9173,"title":{},"content":{"Ever-increasing Work Email Spam":{},"January 2022 In Review":{}},"tags":{}}],["stage",{"_index":2529,"title":{},"content":{"A samurai learning mindset":{},"Healing creative scars":{},"A Decade in the Software Engineering industry":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["stagger",{"_index":2611,"title":{},"content":{"Development principles in cooking":{},"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["stagnat",{"_index":4412,"title":{},"content":{"A Decade in the Software Engineering industry":{},"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["stain",{"_index":7899,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["stair",{"_index":8457,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["stake",{"_index":10620,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["staleelementexcept",{"_index":2111,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["stalk",{"_index":11162,"title":{},"content":{"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["stallman",{"_index":7251,"title":{},"content":{"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["stallman](https://rm",{"_index":7260,"title":{},"content":{"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["stamp",{"_index":2799,"title":{},"content":{"Journaling in practice":{}},"tags":{}}],["stanc",{"_index":5583,"title":{},"content":{"Tracking and privacy concerns on websites":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["stand",{"_index":3130,"title":{},"content":{"Take your time.":{},"Concentrating on serendipitous creativity":{},"A Ph.D. Thesis Proposal":{},"The Startup of a Lean Doctorate":{},"Combining async with generators in Node 11":{},"Ditch Scrum, Organize As You See Fit":{},"Very Old and Somewhat Old Mood Boards":{},"December 2021 In Review":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["standaard",{"_index":577,"title":{},"content":{"undefined":{}},"tags":{}}],["standalone=\\\"yes\\\"?>\\r\\n\\r\\n\\tpingback.ping\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\thttps://aylesbur",{"_index":11456,"title":{},"content":{"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["standard",{"_index":5103,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"An am486 Performance Analysis":{},"The IndieWeb Mixed Bag":{},"Host your own webmention receiver":{},"Belgium - Portugal: 5 - 2":{},"How Much Should I Spend On Magic The Gathering":{},"The HP Sprocket Mini Printer":{},"A Triumph For Blogging":{},"Three Little GameCube Mods":{},"A Factor Analysis For Dummies in R":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["stapelt",{"_index":4195,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["stapl",{"_index":9140,"title":{},"content":{"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["star",{"_index":2892,"title":{"Why I like Pawn Stars":{}},"content":{"Nuts about local nuts":{},"Reverse engineering a curriculum":{},"An am486 Performance Analysis":{},"Flea Market Season":{},"Why I like Pawn Stars":{},"Pinball Machines in a Jenever Museum":{},"Exporting Goodreads to Obsidian":{}},"tags":{}}],["stare",{"_index":2364,"title":{},"content":{"Teaching yourself to draw":{},"Take your time.":{},"Where Does It Stop?":{},"November 2021 Meta Post":{},"2021 Year In Review":{}},"tags":{}}],["stark",{"_index":10559,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["starri",{"_index":7471,"title":{},"content":{"Moon Logic":{}},"tags":{}}],["start",{"_index":74,"title":{},"content":{"Ending your day with happy thoughts":{},"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"Learning to become a baker":{},"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":{},"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"A samurai learning mindset":{},"Development principles in cooking":{},"Healing creative scars":{},"Journaling in practice":{},"Nuts about local nuts":{},"I'm jealous of my dog":{},"Inventing - for the worse?":{},"2017 in books":{},"Take your time.":{},"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":{},"Project Warlock: About Perseverance":{},"Designing websites with accessibility in mind":{},"3D Software Rendering on the GBA":{},"486 Upgrade 2: The SD Card HDD":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"Personal Desktop Screenshots of Olde":{},"Programming on the Apple M1 Silicon":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"Exploring the AlterNet":{},"Getting rid of trackers using LineageOS":{},"Teaching students about coding trends":{},"The IndieWeb Mixed Bag":{},"Discord killed support for WinXP":{},"Exploring the Go programming language":{},"The first Dutch Obsidian meetup":{},"On Manuscript Review Procedures":{},"Academese Gems":{},"Software Engineering Is Not Engineering":{},"The Pilot Capless: a stellar stealth pen":{},"Apple's App Store Design Mistake":{},"Book Number Fourteen":{},"Water Levels As Public Data":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Emotional Magic":{},"On Selling a Self-published Book":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Thirty-Six":{},"20 Years of Personal Cellphone History":{},"A Note About Footnotes":{},"A Triumph For Blogging":{},"Are Digital Gardens Blogs?":{},"Questionable Game Publishing Methods":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"From Curiosity To Creativity":{},"How Not To Do A Remaster":{},"Where Does It Stop?":{},"Migrating from Mailchimp to Listmonk":{},"Technical Knowledge Brews Creativity":{},"Why Mastodon Isn't Great For Serendipity":{},"Why I Play Games (And So Should You)":{},"2021 Year In Review":{},"How To Enjoy Your Own Digital Music":{},"On Trying To Sell A Laptop":{},"Once Upon a Time in Shaolin":{},"What a Night Cam Is Good For":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Creativity Equals Messy Code?":{},"Leuchtturm Notebook Paper Quality":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["startbutton",{"_index":1887,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["starten",{"_index":4585,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["starter",{"_index":2018,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Three Little GameCube Mods":{}},"tags":{}}],["startl",{"_index":9409,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["startup",{"_index":1994,"title":{"The Startup of a Lean Doctorate":{}},"content":{".NET Memory management VS JVM Memory management":{},"Unit testing in Legacy Projects: VB6":{},"486 Upgrade 2: The SD Card HDD":{},"2021 Donations":{}},"tags":{}}],["startupproject=unittests\\unittests.vbp",{"_index":2294,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["stash",{"_index":8218,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{},"March 2022 In Review":{}},"tags":{}}],["stat",{"_index":5442,"title":{},"content":{"Combining async with generators in Node 11":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Cool Things People Do With Their Blogs":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["stat(res)).isdirectori",{"_index":5448,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["state",{"_index":2077,"title":{"A Creative State of Mind":{}},"content":{"Unit Testing Extjs UI with Siesta":{},"Teaching yourself to draw":{},"A samurai learning mindset":{},"I'm jealous of my dog":{},"Take your time.":{},"Over analoog en digitaal":{},"Unit Testing PicoBlaze Assembly files":{},"My Retro Desk/Gaming Setup in 2021":{},"Teaching students about coding trends":{},"Discord killed support for WinXP":{},"Stop limiting yourself to JS in browsers":{},"Flea Market Season":{},"Apple's App Store Design Mistake":{},"Emotional Magic":{},"Parking Machines Design Mistakes":{},"How Not To Do A Remaster":{},"A Creative State of Mind":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Re: Writing A Book Is Nonesense":{},"The Creative Techniques Toolbox":{},"Expiry Dates On Journals":{}},"tags":{}}],["statement",{"_index":1060,"title":{},"content":{"undefined":{},"Integration Testing with SQLite":{},"Productivity Tools on all platforms":{},"20 Years of Personal Cellphone History":{},"A Note About Footnotes":{},"The Creative Techniques Toolbox":{},"Woke in Class":{},"Water Usage and Prices":{},"Expiry Dates On Journals":{}},"tags":{}}],["static",{"_index":1612,"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":{},"A journey through the history of webdesign":{},"Always have a Diaster Recovery Plan":{},"Lousy Wordpress Hacking Attempts detected":{},"Stop limiting yourself to JS in browsers":{},"Using Hugo to Launch a Gemini Capsule":{},"Host your own webmention receiver":{},"Social Debt in Development Teams":{},"Apple's App Store Design Mistake":{},"My Kotlin Rose-Tinted Glasses Broke":{}},"tags":{}}],["static_method",{"_index":1167,"title":{},"content":{"undefined":{}},"tags":{}}],["station",{"_index":222,"title":{},"content":{"On finding your inner zen in big cities":{},"Bye autotools hello Scons":{},"Concentrating on serendipitous creativity":{},"How Not To Do A Remaster":{}},"tags":{}}],["statist",{"_index":3034,"title":{},"content":{"2017 in books":{},"ITiCSE 2020: A Report":{},"Thoughts on collaboration in education":{},"Belgium - Portugal: 5 - 2":{},"Ever-increasing Work Email Spam":{},"A Factor Analysis For Dummies in R":{},"Winnie Lim on Rebuilding Oneself":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["statista",{"_index":8162,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["statista.com",{"_index":10238,"title":{},"content":{"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["stats](https://roytang.net/page/stats/awstat",{"_index":11366,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["statu",{"_index":3098,"title":{},"content":{"Hiding Code Complexity":{},"Thoughts on collaboration in education":{},"Personal Desktop Screenshots of Olde":{},"Collective Creativity":{},"Ditch Scrum, Organize As You See Fit":{},"A Creative State of Mind":{}},"tags":{}}],["status",{"_index":3104,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["stay",{"_index":3160,"title":{},"content":{"Take your time.":{},"A Decade in the Software Engineering industry":{},"Designing websites with accessibility in mind":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The first Dutch Obsidian meetup":{},"Reducing Workflow Load Facilitates Writing":{},"The Monthly Retro Screenshot Guessing Quiz":{},"The Creative Techniques Toolbox":{},"Winnie Lim on Rebuilding Oneself":{},"Freshly Baked Thoughts":{}},"tags":{}}],["std",{"_index":551,"title":{},"content":{"undefined":{}},"tags":{}}],["std.alpha",{"_index":10418,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["std::cout",{"_index":608,"title":{},"content":{"undefined":{}},"tags":{}}],["std::shared_ptrat",{"_index":5503,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["time_",{"_index":6541,"title":{},"content":{"Digitizing journals using DEVONthink":{},"Are You In The System Yet, Sir?":{}},"tags":{}}],["timelin",{"_index":6135,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["timeout",{"_index":1429,"title":{},"content":{"undefined":{},"Always have a Diaster Recovery Plan":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["times](/post/2021/05/r",{"_index":7749,"title":{},"content":{"Misconceptions about retro gamers":{}},"tags":{}}],["timestamp",{"_index":1479,"title":{},"content":{"undefined":{},"The first Dutch Obsidian meetup":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["tini",{"_index":56,"title":{},"content":{"Ending your day with happy thoughts":{},"Reducing Workflow Load Facilitates Writing":{},"The HP Sprocket Mini Printer":{},"Questionable Game Publishing Methods":{},"The Emperor of Lists":{},"2021 Year In Review":{},"What a Night Cam Is Good For":{}},"tags":{}}],["tinker",{"_index":7223,"title":{},"content":{"Exploring the Go programming language":{},"A 5.25\" Gobliins 2 Surprise":{},"Thoughts On Home NAS Systems":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["tint",{"_index":8665,"title":{"My Kotlin Rose-Tinted Glasses Broke":{}},"content":{"My Kotlin Rose-Tinted Glasses Broke":{}},"tags":{}}],["tiob",{"_index":7108,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["tip",{"_index":163,"title":{},"content":{"Ending your day with happy thoughts":{},"undefined":{},"How to teach kids to program":{},"The Internet Killed Secrets in Games":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The Productive Programmer on Mac":{},"Belgium - Portugal: 5 - 2":{},"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["tire",{"_index":4408,"title":{},"content":{"A Decade in the Software Engineering industry":{},"Personal Desktop Screenshots of Olde":{},"Are You In The System Yet, Sir?":{},"Collective Creativity":{},"March 2022 In Review":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["tiresom",{"_index":6812,"title":{},"content":{"How to write academic papers in Markdown":{}},"tags":{}}],["titan",{"_index":8707,"title":{},"content":{"Thirty-Six":{}},"tags":{}}],["titanium",{"_index":2765,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["titel",{"_index":3782,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["titl",{"_index":471,"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":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Social Debt in Development Teams":{},"Apple's App Store Design Mistake":{},"Ditch Scrum, Organize As You See Fit":{},"Constraint-based Creativity":{},"Exporting Goodreads to Obsidian":{},"Generating a Blogroll With OPML in Hugo":{},"My Retrocomputing Projects For 2022":{},"Equality in Game Credits":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["title/author/publish",{"_index":9563,"title":{},"content":{"The Emperor of Lists":{}},"tags":{}}],["title=\"brain",{"_index":10371,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["title>supblog",{"_index":11644,"title":{},"content":{"Freshly Baked Thoughts":{}},"tags":{}}],["xm",{"_index":1988,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["xmb/sec",{"_index":7990,"title":{},"content":{"Apple's App Store Design Mistake":{}},"tags":{}}],["xml",{"_index":6958,"title":{},"content":{"Exploring the AlterNet":{},"The IndieWeb Mixed Bag":{},"Generating a Blogroll With OPML in Hugo":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["xmlrpc",{"_index":11453,"title":{},"content":{"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["xmlurl=\"http://brainbaking.com/index.xml",{"_index":10375,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["xmx",{"_index":1987,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["xp",{"_index":1288,"title":{"Building a Core2Duo Windows XP Retro PC":{}},"content":{"Unit Testing Stored Procedures":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Discord killed support for WinXP":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["xperia",{"_index":7026,"title":{},"content":{"Getting rid of trackers using LineageOS":{},"The Decline of Battery Life":{}},"tags":{}}],["xs1",{"_index":10203,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["xtreme",{"_index":6390,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["xul",{"_index":7188,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["xxl",{"_index":5648,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["xz1",{"_index":7021,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["y",{"_index":128,"title":{},"content":{"Ending your day with happy thoughts":{},"undefined":{},"Healing creative scars":{},"IT Competences and Certificates":{},"The insanity of collecting retro games":{},"Creativity Self-Assessment Is Nonsense":{},"Dark Age of Camelot in 2022":{},"Natural Gas Prices and The Energy Market":{},"Equality in Game Credits":{}},"tags":{}}],["y.get",{"_index":563,"title":{},"content":{"undefined":{}},"tags":{}}],["y_",{"_index":8823,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{}},"tags":{}}],["ya!\"_",{"_index":7923,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["yadda",{"_index":7198,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["yagi",{"_index":2539,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["yagni](/img/yagni1.p",{"_index":2636,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["yagyu",{"_index":2508,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["yagyū'",{"_index":2524,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["yahoo",{"_index":10233,"title":{},"content":{"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["yama",{"_index":8212,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["yamaha",{"_index":5886,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["yank",{"_index":10698,"title":{},"content":{"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["yarn",{"_index":7078,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["yay",{"_index":1345,"title":{},"content":{"Unit Testing Stored Procedures":{},"3D Software Rendering on the GBA":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Ever-increasing Work Email Spam":{},"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["ye",{"_index":142,"title":{},"content":{"Ending your day with happy thoughts":{},"Enhancing the builder pattern with closures":{},"Journaling in practice":{},"I'm jealous of my dog":{},"2017 in books":{},"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":{},"Combining async with generators in Node 11":{},"Building an Athlon Windows 98 Retro PC":{},"Why I like Pawn Stars":{},"Double-dipping and Market Prices":{},"How Much Should I Spend On Magic The Gathering":{},"Dear Student":{},"A Treatise on Leavened Waffles":{},"Minimalism and Tidying Up":{},"How to setup Pi-Hole on a Synology NAS":{},"Creativity Equals Messy Code?":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["yeah",{"_index":6821,"title":{},"content":{"How to write academic papers in Markdown":{},"You Shouldn't Use Spotify":{},"Always have a Diaster Recovery Plan":{},"Moon Logic":{},"A Note About Footnotes":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{},"Questionable Game Publishing Methods":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["year",{"_index":6,"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":{},"20 Years of Personal Cellphone History":{},"Archive by year: 2021":{},"2021 Year In Review":{},"Archive by year: 2022":{}},"content":{"Ending your day with happy thoughts":{},"Learning to become a baker":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Teaching yourself to draw":{},"How to teach kids to program":{},"A samurai learning mindset":{},"Development principles in cooking":{},"Healing creative scars":{},"Inventing - for the worse?":{},"2017 in books":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"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":{},"Project Warlock: About Perseverance":{},"ITiCSE 2020: A Report":{},"3D Software Rendering on the GBA":{},"Thoughts on collaboration in education":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"Personal Desktop Screenshots of Olde":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"Getting rid of trackers using LineageOS":{},"Lousy Wordpress Hacking Attempts detected":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Using Hugo to Launch a Gemini Capsule":{},"On Manuscript Review Procedures":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Academese Gems":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"Software Engineering Is Not Engineering":{},"The Pilot Capless: a stellar stealth pen":{},"Double-dipping and Market Prices":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"Reducing Workflow Load Facilitates Writing":{},"The Decline of Battery Life":{},"Water Levels As Public Data":{},"What if Seneca wasn't Nero's advisor?":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Emotional Magic":{},"On Selling a Self-published Book":{},"Thirty-Six":{},"Are You In The System Yet, Sir?":{},"Parking Machines Design Mistakes":{},"A Triumph For Blogging":{},"Very Old and Somewhat Old Mood Boards":{},"Power Usage Effectiveness":{},"A 5.25\" Gobliins 2 Surprise":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"From Curiosity To Creativity":{},"How Not To Do A Remaster":{},"Where Does It Stop?":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"Three Little GameCube Mods":{},"Dark Age of Camelot in 2022":{},"Generating a Blogroll With OPML in Hugo":{},"Minimalism and Tidying Up":{},"Natural Gas Prices and The Energy Market":{},"The Creative Techniques Toolbox":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"2021 Year In Review":{},"How To Enjoy Your Own Digital Music":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"Once Upon a Time in Shaolin":{},"Thoughts On Home NAS Systems":{},"Water Usage and Prices":{},"What a Night Cam Is Good For":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{},"February 2022 In Review":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{},"Fighting Webmention And Pingback Spam":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["year/th",{"_index":10614,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["year](/post/2020/04/vp",{"_index":6922,"title":{},"content":{"Always have a Diaster Recovery Plan":{}},"tags":{}}],["yearli",{"_index":6542,"title":{},"content":{"Digitizing journals using DEVONthink":{},"My Retro Desk/Gaming Setup in 2021":{},"Teaching students about coding trends":{},"How Much Should I Spend On Magic The Gathering":{},"Favorite Game Meme":{},"Water Usage and Prices":{}},"tags":{}}],["yearlong",{"_index":10612,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["yearnot",{"_index":10674,"title":{},"content":{},"tags":{"2021 Year In Review":{}}}],["years](/post/2017/07/journ",{"_index":8927,"title":{},"content":{"The HP Sprocket Mini Printer":{}},"tags":{}}],["years](/post/2022/01/natur",{"_index":10922,"title":{},"content":{"Water Usage and Prices":{}},"tags":{}}],["yeast",{"_index":941,"title":{},"content":{"Learning to become a baker":{},"The Fridge, Your Inoculation Room":{},"On Selling a Self-published Book":{},"A Note About Footnotes":{},"Are Digital Gardens Blogs?":{},"A Treatise on Leavened Waffles":{},"Creative Critical Thinking":{}},"tags":{}}],["yeast](https://www.goodreads.com/book/show/34757361",{"_index":8784,"title":{},"content":{"A Note About Footnotes":{}},"tags":{}}],["yell",{"_index":3129,"title":{},"content":{"Take your time.":{},"Exploring the AlterNet":{},"Rules of a Creator's Life":{},"Are You In The System Yet, Sir?":{},"Creative Critical Thinking":{},"From Curiosity To Creativity":{},"Woke in Class":{}},"tags":{}}],["yellow",{"_index":6177,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{},"How Much Should I Spend On Magic The Gathering":{},"A 5.25\" Gobliins 2 Surprise":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["yesterday",{"_index":6618,"title":{},"content":{"The Productive Programmer on Mac":{},"The first Dutch Obsidian meetup":{},"Apple's App Store Design Mistake":{},"Are You In The System Yet, Sir?":{},"A 5.25\" Gobliins 2 Surprise":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Why I Play Games (And So Should You)":{},"Woke in Class":{},"March 2022 In Review":{}},"tags":{}}],["yesterday'",{"_index":7406,"title":{},"content":{"Host your own webmention receiver":{},"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["yesteryear",{"_index":5984,"title":{},"content":{"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Using Hugo to Launch a Gemini Capsule":{}},"tags":{}}],["yield",{"_index":11127,"title":{},"content":{"Academic Lineage":{}},"tags":{}}],["yip",{"_index":3531,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["ymf262",{"_index":5900,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["yo",{"_index":5461,"title":{},"content":{"Combining async with generators in Node 11":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["yogi",{"_index":11336,"title":{},"content":{"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["yokoi",{"_index":8281,"title":{},"content":{"The Decline of Battery Life":{}},"tags":{}}],["yoku",{"_index":10022,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["yolk",{"_index":9385,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["yore",{"_index":10253,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["yottam",{"_index":2606,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["you'd",{"_index":1332,"title":{},"content":{"Unit Testing Stored Procedures":{},"Custom Webdriver Page Factories":{},"Healing creative scars":{},"Thinking in terms of objects":{},"Teaching by philosophy":{},"Reverse engineering a curriculum":{},"Using Pandoc to publish a book":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Host your own webmention receiver":{},"Moon Logic":{},"Kotlin Is Java 2.0, But It's Still Java":{},"Pinball Machines in a Jenever Museum":{},"My Kotlin Rose-Tinted Glasses Broke":{},"A Note About Footnotes":{},"The HP Sprocket Mini Printer":{},"Ever-increasing Work Email Spam":{},"From Analog Notebook to Digital Vault":{},"How Not To Do A Remaster":{},"Allspice Is Not All Spice":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Natural Gas Prices and The Energy Market":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{}},"tags":{}}],["you'gr",{"_index":6019,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["you'll",{"_index":1512,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Integration Testing with SQLite":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"Journaling in practice":{},"I'm jealous of my dog":{},"Concentrating on serendipitous creativity":{},"A Decade in the Software Engineering industry":{},"The IndieWeb Mixed Bag":{},"Host your own webmention receiver":{},"Flea Market Season":{},"How Much Should I Spend On Magic The Gathering":{},"On Selling a Self-published Book":{},"Parking Machines Design Mistakes":{},"Questionable Game Publishing Methods":{},"A Treatise on Leavened Waffles":{},"How Not To Do A Remaster":{},"On Trying To Sell A Laptop":{},"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["you'r",{"_index":1291,"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":{},"Teaching yourself to draw":{},"A samurai learning mindset":{},"Development principles in cooking":{},"Healing creative scars":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"Inventing - for the worse?":{},"Concentrating on serendipitous creativity":{},"Death to pseudocode?":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"Over Onmiddellijke Voldoening":{},"DIY: Hosting stuff on your own VPS":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"The Internet Killed Secrets in Games":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Thoughts on Bullshit Jobs":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Discord killed support for WinXP":{},"Host your own webmention receiver":{},"Moon Logic":{},"Re: Is collecting physical games worth it?":{},"Flea Market Season":{},"The Pilot Capless: a stellar stealth pen":{},"Double-dipping and Market Prices":{},"The Fridge, Your Inoculation Room":{},"On Tea Prices":{},"Rules of a Creator's Life":{},"20 Years of Personal Cellphone History":{},"A Note About Footnotes":{},"Are You In The System Yet, Sir?":{},"The HP Sprocket Mini Printer":{},"Dear Student":{},"Questionable Game Publishing Methods":{},"The Lost Art of Being Lost":{},"A Treatise on Leavened Waffles":{},"Allspice Is Not All Spice":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Why Mastodon Isn't Great For Serendipity":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"On Trying To Sell A Laptop":{},"My Retrocomputing Projects For 2022":{},"What a Night Cam Is Good For":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Fighting Webmention And Pingback Spam":{},"The Death Of The Nike+ SportWatch":{},"Freshly Baked Thoughts":{}},"tags":{}}],["you'v",{"_index":2480,"title":{},"content":{"How to teach kids to program":{},"Journaling in practice":{},"A Decade in the Software Engineering industry":{},"Five reasons why agile and academia don't go together":{},"The Internet Killed Secrets in Games":{},"Digitizing journals using DEVONthink":{},"The IndieWeb Mixed Bag":{},"Moon Logic":{},"On Selling a Self-published Book":{},"A Note About Footnotes":{},"Dear Student":{},"The Lost Art of Being Lost":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["you?](https://www.kellogg.northwestern.edu/faculty/uzzi/ftp/page176.html",{"_index":8821,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{}},"tags":{}}],["you_",{"_index":8802,"title":{},"content":{"Are You In The System Yet, Sir?":{}},"tags":{}}],["young",{"_index":936,"title":{},"content":{"Learning to become a baker":{},"Take your time.":{},"Thirty-Six":{},"Collective Creativity":{},"From Curiosity To Creativity":{}},"tags":{}}],["younger",{"_index":5546,"title":{},"content":{"ITiCSE 2020: A Report":{},"Misconceptions about retro gamers":{},"Thirty-Six":{},"Technical Knowledge Brews Creativity":{},"Dark Age of Camelot in 2022":{}},"tags":{}}],["your",{"_index":3092,"title":{},"content":{"2017 in books":{},"Rules of a Creator's Life":{}},"tags":{}}],["yourself",{"_index":242,"title":{"Teaching yourself to draw":{},"Stop limiting yourself to JS in browsers":{}},"content":{"On finding your inner zen in big cities":{},"Learning to become a baker":{},"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{},"Bye autotools hello Scons":{},".NET Memory management VS JVM Memory management":{},"Teaching yourself to draw":{},"Journaling in practice":{},"Concentrating on serendipitous creativity":{},"Teaching Object-Oriented design using the GBA":{},"Page Building with Brizy in Wordpress":{},"3D Software Rendering on the GBA":{},"Reviving an old 80486 PC":{},"Personal Desktop Screenshots of Olde":{},"The Internet Killed Secrets in Games":{},"Programming on the Apple M1 Silicon":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The Productive Programmer on Mac":{},"Stop limiting yourself to JS in browsers":{},"Host your own webmention receiver":{},"Nineties collecting nostalgia":{},"Re: Is collecting physical games worth it?":{},"What if Seneca wasn't Nero's advisor?":{},"Kotlin Is Java 2.0, But It's Still Java":{},"On Selling a Self-published Book":{},"Favorite Game Meme":{},"Dear Student":{},"Very Old and Somewhat Old Mood Boards":{},"The Lost Art of Being Lost":{},"Allspice Is Not All Spice":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Winnie Lim on Rebuilding Oneself":{},"Academic Lineage":{},"Expiry Dates On Journals":{}},"tags":{}}],["yourself!”die(@md5(hellothinkcmf))hellomor",{"_index":5506,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["article](/post/2020/05/us",{"_index":6830,"title":{},"content":{"How to write academic papers in Markdown":{}},"tags":{}}],["article](https://www.nintendolife.com/news/2021/02/soapbox_retro_nintendo_games_cost_too_much_but_nostalgia_is_expens",{"_index":6782,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["articlecalcul",{"_index":1758,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["articledatabas",{"_index":1760,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["articlemanag",{"_index":1762,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["articlemanagertest",{"_index":1757,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["artifact",{"_index":6051,"title":{},"content":{"A journey through the history of webdesign":{},"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["artifici",{"_index":3525,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["artikel",{"_index":3977,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["artist",{"_index":3071,"title":{},"content":{"2017 in books":{},"Project Warlock: About Perseverance":{},"You Shouldn't Use Spotify":{},"Rules of a Creator's Life":{},"Emotional Magic":{},"Creativity Self-Assessment Is Nonsense":{},"Constraint-based Creativity":{},"How To Enjoy Your Own Digital Music":{},"A Personal Intro To Gentle Hip-Hop":{},"Equality in Game Credits":{}},"tags":{}}],["artist'",{"_index":3068,"title":{},"content":{"2017 in books":{}},"tags":{}}],["artist.jpg",{"_index":8526,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["artist_](https://scryfall.com/card/jmp/206/blood",{"_index":8525,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["artista_",{"_index":11437,"title":{},"content":{"Equality in Game Credits":{}},"tags":{}}],["artistri",{"_index":3025,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["artwork",{"_index":2356,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["as",{"_index":10422,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["ascii",{"_index":7355,"title":{},"content":{"Using Hugo to Launch a Gemini Capsule":{}},"tags":{}}],["asham",{"_index":10590,"title":{},"content":{"Why I Play Games (And So Should You)":{}},"tags":{}}],["ashor",{"_index":9684,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["asia",{"_index":2864,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["asian",{"_index":2604,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["asid",{"_index":8059,"title":{},"content":{"Double-dipping and Market Prices":{},"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["asimov",{"_index":4287,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["ask",{"_index":367,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Unit Testing Stored Procedures":{},"Unit testing in Legacy Projects: VB6":{},"Are you handing over enough when inspiring someone?":{},"A quick look at 6 fountain pens":{},"Inventing - for the worse?":{},"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":{},"Thoughts on Bullshit Jobs":{},"The Productive Programmer on Mac":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"How to write academic papers in Markdown":{},"The first Dutch Obsidian meetup":{},"Re: Is collecting physical games worth it?":{},"Software Engineering Is Not Engineering":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"Double-dipping and Market Prices":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Are You In The System Yet, Sir?":{},"Parking Machines Design Mistakes":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Power Usage Effectiveness":{},"Questionable Game Publishing Methods":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Technical Knowledge Brews Creativity":{},"A Factor Analysis For Dummies in R":{},"Re: Writing A Book Is Nonesense":{},"Woke in Class":{},"A Personal Intro To Gentle Hip-Hop":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["asleep",{"_index":7248,"title":{},"content":{"Stop limiting yourself to JS in browsers":{},"What a Night Cam Is Good For":{}},"tags":{}}],["aspect",{"_index":3556,"title":{},"content":{"Computer Science learning pathways":{},"Five reasons why agile and academia don't go together":{},"On Manuscript Review Procedures":{},"The Pilot Capless: a stellar stealth pen":{},"The Creative Techniques Toolbox":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["aspx",{"_index":2046,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["ass",{"_index":3235,"title":{},"content":{"Concentrating on serendipitous creativity":{},"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["assassin'",{"_index":3047,"title":{},"content":{"2017 in books":{}},"tags":{}}],["assembl",{"_index":4624,"title":{"Unit Testing PicoBlaze Assembly files":{}},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{"Unit Testing PicoBlaze Assembly files":{}}}],["assert",{"_index":1239,"title":{},"content":{"undefined":{},"Unit Testing Extjs UI with Siesta":{},"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["assert.that",{"_index":2265,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["assert_that",{"_index":4666,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["assert_that.reg(\"s5\").contains(3",{"_index":4670,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["assess",{"_index":4626,"title":{"Creativity Self-Assessment Is Nonsense":{}},"content":{"Unit Testing PicoBlaze Assembly files":{},"Thoughts on collaboration in education":{},"Why I like Pawn Stars":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["asset",{"_index":10038,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["assign",{"_index":1068,"title":{},"content":{"undefined":{},"Enhancing the builder pattern with closures":{},"Death to pseudocode?":{},"ITiCSE 2020: A Report":{},"Very Old and Somewhat Old Mood Boards":{},"Academic Lineage":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["assimil",{"_index":2572,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["assist",{"_index":5740,"title":{},"content":{"Thoughts on collaboration in education":{},"Seneca on How to Live":{},"Academic Lineage":{},"Equality in Game Credits":{}},"tags":{}}],["associ",{"_index":2915,"title":{},"content":{"I'm jealous of my dog":{},"Reverse engineering a curriculum":{}},"tags":{}}],["assum",{"_index":2659,"title":{},"content":{"Healing creative scars":{},"How Much Should I Spend On Magic The Gathering":{},"Constraint-based Creativity":{}},"tags":{}}],["assumpt",{"_index":2384,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["assur",{"_index":9503,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["assword",{"_index":1438,"title":{},"content":{"undefined":{}},"tags":{}}],["asterix",{"_index":5646,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["astonish",{"_index":4401,"title":{},"content":{"A Decade in the Software Engineering industry":{},"Reviving an old 80486 PC":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["async",{"_index":2044,"title":{"Combining async with generators in Node 11":{}},"content":{"Unit Testing Extjs UI with Siesta":{},"Are you handing over enough when inspiring someone?":{},"Combining async with generators in Node 11":{}},"tags":{}}],["asynchron",{"_index":5435,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["at",{"_index":961,"title":{},"content":{"Learning to become a baker":{}},"tags":{}}],["at](https://www.goodreads.com/user/year_in_books/2017/5451893",{"_index":3032,"title":{},"content":{"2017 in books":{}},"tags":{}}],["athen",{"_index":8407,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{},"Creative Critical Thinking":{}},"tags":{}}],["athenian",{"_index":9472,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["athlon",{"_index":6057,"title":{"Building an Athlon Windows 98 Retro PC":{}},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["ati",{"_index":6677,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["atlantic](https://www.theatlantic.com/education/archive/2015/10/complex",{"_index":7613,"title":{},"content":{"Academese Gems":{}},"tags":{}}],["atmospher",{"_index":8867,"title":{},"content":{"Favorite Game Meme":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Seneca on How to Live":{},"Equality in Game Credits":{}},"tags":{}}],["attach",{"_index":1496,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"486 Upgrade 1: Sound Blaster 16":{},"Flea Market Season":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"How To Enjoy Your Own Digital Music":{},"How to setup Pi-Hole on a Synology NAS":{},"Equality in Game Credits":{}},"tags":{}}],["attack",{"_index":5154,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Lousy Wordpress Hacking Attempts detected":{},"Nineties collecting nostalgia":{},"A Treatise on Leavened Waffles":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["attempt",{"_index":2025,"title":{"Lousy Wordpress Hacking Attempts detected":{}},"content":{".NET Memory management VS JVM Memory management":{},"How to teach kids to program":{},"Take your time.":{},"Using Pandoc to publish a book":{},"3D Software Rendering on the GBA":{},"Thoughts on collaboration in education":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Always have a Diaster Recovery Plan":{},"Discord killed support for WinXP":{},"20 Years of Personal Cellphone History":{},"The HP Sprocket Mini Printer":{},"Very Old and Somewhat Old Mood Boards":{},"Constraint-based Creativity":{},"Exporting Goodreads to Obsidian":{},"Migrating from Mailchimp to Listmonk":{},"December 2021 In Review":{},"Woke in Class":{},"Academic Lineage":{},"Fighting Webmention And Pingback Spam":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{},"True Backlink Support in Hugo":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["attend",{"_index":136,"title":{},"content":{"Ending your day with happy thoughts":{},"The Productive Programmer on Mac":{},"Exploring the Go programming language":{},"Dear Student":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["attent",{"_index":1711,"title":{},"content":{"Integration Testing with SQLite":{},"Development principles in cooking":{},"Nuts about local nuts":{},"I'm jealous of my dog":{},"Reverse engineering a curriculum":{},"Project Warlock: About Perseverance":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"486 Upgrade 1: Sound Blaster 16":{},"The Internet Killed Secrets in Games":{},"The Productive Programmer on Mac":{},"My Retro Desk/Gaming Setup in 2021":{},"The IndieWeb Mixed Bag":{},"Emotional Magic":{},"20 Years of Personal Cellphone History":{},"Favorite Game Meme":{},"Collective Creativity":{},"Dear Student":{},"Questionable Game Publishing Methods":{},"A Treatise on Leavened Waffles":{},"Exporting Goodreads to Obsidian":{},"2021 Donations":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Technical Knowledge Brews Creativity":{},"Woke in Class":{},"2021 Year In Review":{},"Academic Lineage":{},"Creativity Equals Messy Code?":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["attic",{"_index":10975,"title":{},"content":{"What a Night Cam Is Good For":{}},"tags":{}}],["attract",{"_index":5537,"title":{},"content":{"ITiCSE 2020: A Report":{},"On Selling a Self-published Book":{},"Collective Creativity":{},"Dear Student":{},"Creative Critical Thinking":{},"Exporting Goodreads to Obsidian":{}},"tags":{}}],["attribut",{"_index":1907,"title":{},"content":{"Custom Webdriver Page Factories":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Creativity Self-Assessment Is Nonsense":{},"Collective Creativity":{},"Creative Critical Thinking":{},"Generating a Blogroll With OPML in Hugo":{},"2021 Year In Review":{},"My Retrocomputing Projects For 2022":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["attribute.getcustomattributes(field",{"_index":1917,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["atx",{"_index":6156,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["atyp",{"_index":11416,"title":{},"content":{"Equality in Game Credits":{}},"tags":{}}],["aub",{"_index":828,"title":{},"content":{"undefined":{}},"tags":{}}],["audibl",{"_index":11394,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["audienc",{"_index":5551,"title":{},"content":{"ITiCSE 2020: A Report":{},"Academese Gems":{},"Creative Critical Thinking":{},"Woke in Class":{}},"tags":{}}],["audigi",{"_index":6303,"title":{"Win98 Upgrade: Sound Blaster Audigy":{}},"content":{"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["audigy.jpg",{"_index":6351,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["audio",{"_index":6316,"title":{"Choosing an Audio Codec":{}},"content":{"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"A 5.25\" Gobliins 2 Surprise":{},"Three Little GameCube Mods":{},"How To Enjoy Your Own Digital Music":{},"Once Upon a Time in Shaolin":{},"Choosing an Audio Codec":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["audiopci",{"_index":6313,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["audiopci](https://en.wikipedia.org/wiki/sound_blaster#ensoniq_audiopci",{"_index":6307,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["audiophil",{"_index":6850,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["augment",{"_index":6952,"title":{},"content":{"Exploring the AlterNet":{}},"tags":{}}],["august",{"_index":2692,"title":{},"content":{"Healing creative scars":{},"On Manuscript Review Procedures":{},"Book Number Fourteen":{}},"tags":{}}],["aureliu",{"_index":8410,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{},"The Creative Techniques Toolbox":{},"Expiry Dates On Journals":{}},"tags":{}}],["aurelius](https://www.goodreads.com/book/show/50484473",{"_index":10759,"title":{},"content":{"January 2022 In Review":{}},"tags":{}}],["austin",{"_index":2498,"title":{},"content":{"How to teach kids to program":{}},"tags":{}}],["australia",{"_index":305,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["auteur",{"_index":4886,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["authent",{"_index":6188,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{},"Rules of a Creator's Life":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["authentiek",{"_index":4555,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["author",{"_index":3528,"title":{},"content":{"Computer Science learning pathways":{},"A Ph.D. Thesis: Iteration 2":{},"Using Pandoc to publish a book":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"The IndieWeb Mixed Bag":{},"A Note About Footnotes":{},"A Creative State of Mind":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Re: Writing A Book Is Nonesense":{},"Equality in Game Credits":{}},"tags":{}}],["auto",{"_index":1476,"title":{},"content":{"undefined":{},"486 Upgrade 2: The SD Card HDD":{},"Reviving an old 80486 PC":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"Reducing Workflow Load Facilitates Writing":{},"How Not To Do A Remaster":{},"Generating a Blogroll With OPML in Hugo":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["auto'",{"_index":3376,"title":{},"content":{"Over entropie":{}},"tags":{}}],["auto_",{"_index":10594,"title":{},"content":{"Why I Play Games (And So Should You)":{}},"tags":{}}],["auto_ptrn",{"_index":625,"title":{},"content":{"undefined":{}},"tags":{}}],["br/>patienc",{"_index":11636,"title":{},"content":{"Freshly Baked Thoughts":{}},"tags":{}}],["br/>r",{"_index":1443,"title":{},"content":{"undefined":{}},"tags":{}}],["br/>teach",{"_index":2330,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["brabant",{"_index":8710,"title":{},"content":{"Thirty-Six":{}},"tags":{}}],["bracket",{"_index":3500,"title":{},"content":{"Teaching by philosophy":{},"486 Upgrade 2: The SD Card HDD":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["bradley'",{"_index":2305,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["brag",{"_index":10997,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{},"Equality in Game Credits":{}},"tags":{}}],["brain",{"_index":2463,"title":{},"content":{"How to teach kids to program":{},"I'm jealous of my dog":{},"2017 in books":{},"Take your time.":{},"Hugo Extended: More static site processing power!":{},"Combining async with generators in Node 11":{},"Designing websites with accessibility in mind":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"Thirty-Six":{},"Are Digital Gardens Blogs?":{},"Power Usage Effectiveness":{},"Exporting Goodreads to Obsidian":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Generating a Blogroll With OPML in Hugo":{},"Winnie Lim on Rebuilding Oneself":{},"2021 Year In Review":{},"Cool Things People Do With Their Blogs":{},"March 2022 In Review":{},"True Backlink Support in Hugo":{},"Wax Seals And Snail Mail":{},"Freshly Baked Thoughts":{}},"tags":{}}],["brainbaking.com",{"_index":10735,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["braindump",{"_index":336,"title":{},"content":{"Journaling in practice":{}},"tags":{"On finding your inner zen in big cities":{},"Learning to become a baker":{},"What a Night Cam Is Good For":{}}}],["branch",{"_index":5117,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Programming on the Apple M1 Silicon":{},"Are Digital Gardens Blogs?":{}},"tags":{}}],["brand",{"_index":2874,"title":{},"content":{"Nuts about local nuts":{},"DIY: Hosting stuff on your own VPS":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Nineties collecting nostalgia":{},"Double-dipping and Market Prices":{},"On Tea Prices":{},"Favorite Game Meme":{},"A 5.25\" Gobliins 2 Surprise":{},"Dark Age of Camelot in 2022":{}},"tags":{}}],["braqu",{"_index":9098,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["braque'",{"_index":9460,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["brave",{"_index":10557,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["brawler",{"_index":11403,"title":{},"content":{"Equality in Game Credits":{}},"tags":{}}],["brazil",{"_index":7554,"title":{},"content":{"Re: Is collecting physical games worth it?":{}},"tags":{}}],["brazilian",{"_index":7679,"title":{},"content":{"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["breach",{"_index":6142,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["bread",{"_index":915,"title":{},"content":{"Learning to become a baker":{},"Domain Driven Design in C":{},"Using Pandoc to publish a book":{},"Lousy Wordpress Hacking Attempts detected":{},"The Fridge, Your Inoculation Room":{},"On Selling a Self-published Book":{},"Very Old and Somewhat Old Mood Boards":{},"Creative Critical Thinking":{},"The Emperor of Lists":{},"Where Does It Stop?":{},"March 2022 In Review":{},"Wax Seals And Snail Mail":{}},"tags":{"Learning to become a baker":{},"The Fridge, Your Inoculation Room":{}}}],["bread](/post/2021/08/on",{"_index":8785,"title":{},"content":{"A Note About Footnotes":{}},"tags":{}}],["bread](http://www.redzuurdesem.b",{"_index":250,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["break",{"_index":1658,"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":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"Social Debt in Development Teams":{},"Flea Market Season":{},"Why I like Pawn Stars":{},"Reducing Workflow Load Facilitates Writing":{},"Rules of a Creator's Life":{},"Cheese cheese cheese cheese cheese":{},"A Triumph For Blogging":{},"A Creative State of Mind":{},"Three Little GameCube Mods":{},"What a Night Cam Is Good For":{},"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["breakdown",{"_index":6504,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["breaker",{"_index":10032,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["breakfast",{"_index":3051,"title":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"content":{"2017 in books":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["breakpoint",{"_index":1574,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["breath",{"_index":5134,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Project Warlock: About Perseverance":{},"The Lost Art of Being Lost":{},"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["brengen",{"_index":3642,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["brengt",{"_index":3733,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["bresenham",{"_index":5671,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["brethren",{"_index":11342,"title":{},"content":{"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["breviti",{"_index":10870,"title":{},"content":{"Thoughts On Home NAS Systems":{}},"tags":{}}],["brew",{"_index":6456,"title":{"Technical Knowledge Brews Creativity":{}},"content":{"Programming on the Apple M1 Silicon":{}},"tags":{}}],["brexit",{"_index":9319,"title":{},"content":{"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["brian",{"_index":10853,"title":{},"content":{"My Retrocomputing Projects For 2022":{}},"tags":{}}],["brick",{"_index":2399,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"The Decline of Battery Life":{},"20 Years of Personal Cellphone History":{}},"tags":{}}],["brick_",{"_index":8731,"title":{},"content":{"20 Years of Personal Cellphone History":{}},"tags":{}}],["bridg",{"_index":4941,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Water Levels As Public Data":{},"March 2022 In Review":{}},"tags":{}}],["bridge](https://developer.android.com/studio/command",{"_index":7028,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["bridger](https://www.strifestreams.com",{"_index":8988,"title":{},"content":{"A Triumph For Blogging":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["brief",{"_index":4395,"title":{},"content":{"A Decade in the Software Engineering industry":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["briefli",{"_index":5539,"title":{},"content":{"ITiCSE 2020: A Report":{},"20 Years of Personal Cellphone History":{}},"tags":{}}],["bright",{"_index":2652,"title":{},"content":{"Healing creative scars":{},"The Decline of Battery Life":{},"Three Little GameCube Mods":{}},"tags":{}}],["brighten",{"_index":9034,"title":{},"content":{"Are Digital Gardens Blogs?":{}},"tags":{}}],["brillianc",{"_index":4966,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["brilliant",{"_index":6044,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["brim",{"_index":8353,"title":{},"content":{"Water Levels As Public Data":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["bring",{"_index":1502,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"How to teach kids to program":{},"Inventing - for the worse?":{},"Concentrating on serendipitous creativity":{},"Teaching Object-Oriented design using the GBA":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"Are You In The System Yet, Sir?":{},"Are Digital Gardens Blogs?":{},"November 2021 Meta Post":{},"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["brioch",{"_index":9844,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["brit",{"_index":7116,"title":{},"content":{"Teaching students about coding trends":{},"From Curiosity To Creativity":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["british",{"_index":10669,"title":{},"content":{"2021 Year In Review":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["brittl",{"_index":9355,"title":{},"content":{"A 5.25\" Gobliins 2 Surprise":{},"The Emperor of Lists":{}},"tags":{}}],["brizi",{"_index":5231,"title":{"Page Building with Brizy in Wordpress":{}},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{"Page Building with Brizy in Wordpress":{}}}],["brizy'",{"_index":5261,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["broad",{"_index":2743,"title":{},"content":{"A quick look at 6 fountain pens":{},"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["broaden",{"_index":2656,"title":{},"content":{"Healing creative scars":{},"2021 Year In Review":{}},"tags":{}}],["broader",{"_index":3860,"title":{},"content":{"Reverse engineering a curriculum":{},"ITiCSE 2020: A Report":{},"Academic Lineage":{}},"tags":{}}],["broadsword",{"_index":10299,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["broke",{"_index":112,"title":{"My Kotlin Rose-Tinted Glasses Broke":{}},"content":{"Ending your day with happy thoughts":{},"486 Upgrade 2: The SD Card HDD":{},"Why I like Pawn Stars":{},"My Kotlin Rose-Tinted Glasses Broke":{},"The HP Sprocket Mini Printer":{},"Very Old and Somewhat Old Mood Boards":{},"Winnie Lim on Rebuilding Oneself":{},"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["broken",{"_index":3007,"title":{},"content":{"Inventing - for the worse?":{},"Hugo Extended: More static site processing power!":{},"486 Upgrade 2: The SD Card HDD":{},"Flea Market Season":{},"On Tea Prices":{},"Minimalism and Tidying Up":{},"Why I Play Games (And So Should You)":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["bron",{"_index":1195,"title":{},"content":{"undefined":{}},"tags":{}}],["bron](http://nixcraft.com/shel",{"_index":1446,"title":{},"content":{"undefined":{}},"tags":{}}],["bron_",{"_index":5004,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["bronson",{"_index":8262,"title":{},"content":{"Rules of a Creator's Life":{}},"tags":{}}],["bronzen",{"_index":4014,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["brother",{"_index":6402,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{},"The insanity of collecting retro games":{},"Where Does It Stop?":{},"A Personal Intro To Gentle Hip-Hop":{},"Expiry Dates On Journals":{}},"tags":{}}],["brought",{"_index":4714,"title":{},"content":{"IT Competences and Certificates":{},"Thoughts on collaboration in education":{},"Building an Athlon Windows 98 Retro PC":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Belgium - Portugal: 5 - 2":{},"Reducing Workflow Load Facilitates Writing":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Are You In The System Yet, Sir?":{},"2021 Donations":{},"The Creative Techniques Toolbox":{},"Academic Lineage":{},"Equality in Game Credits":{}},"tags":{}}],["brown",{"_index":3321,"title":{},"content":{"Thinking in terms of objects":{},"Allspice Is Not All Spice":{}},"tags":{}}],["brows",{"_index":2162,"title":{},"content":{"Webdriver Exception Handling":{},"2017 in books":{},"Death to pseudocode?":{},"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{},"A journey through the history of webdesign":{},"You Shouldn't Use Spotify":{},"The Monthly Retro Screenshot Guessing Quiz":{},"My Retrocomputing Projects For 2022":{},"Freshly Baked Thoughts":{}},"tags":{}}],["browser",{"_index":3257,"title":{"Stop limiting yourself to JS in browsers":{}},"content":{"Death to pseudocode?":{},"Productivity Tools on all platforms":{},"Hugo Extended: More static site processing power!":{},"Designing websites with accessibility in mind":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Exploring the AlterNet":{},"Discord killed support for WinXP":{},"Stop limiting yourself to JS in browsers":{},"Generating a Blogroll With OPML in Hugo":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["browser.org",{"_index":7186,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["browser/cli",{"_index":7353,"title":{},"content":{"Using Hugo to Launch a Gemini Capsule":{}},"tags":{}}],["browser](https://rtfreesoft.blogspot.com/2021/04/weekli",{"_index":7193,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["browserifi",{"_index":2187,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["bruce",{"_index":11129,"title":{},"content":{"Academic Lineage":{}},"tags":{}}],["brush",{"_index":9438,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["brussel",{"_index":204,"title":{},"content":{"On finding your inner zen in big cities":{},"A 5.25\" Gobliins 2 Surprise":{},"A Treatise on Leavened Waffles":{}},"tags":{}}],["brute",{"_index":7042,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{},"Moon Logic":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["bryntum",{"_index":2075,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["bsd",{"_index":6240,"title":{},"content":{"Personal Desktop Screenshots of Olde":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["bu",{"_index":5656,"title":{},"content":{"3D Software Rendering on the GBA":{},"486 Upgrade 2: The SD Card HDD":{},"Reviving an old 80486 PC":{},"A Creative State of Mind":{}},"tags":{}}],["bubbel",{"_index":4123,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["bubbl",{"_index":944,"title":{},"content":{"Learning to become a baker":{},"November 2021 Meta Post":{},"The Creative Techniques Toolbox":{},"2021 Year In Review":{}},"tags":{}}],["buckley",{"_index":10749,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["buddhism",{"_index":2944,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["buddhist",{"_index":2936,"title":{},"content":{"I'm jealous of my dog":{},"Where Does It Stop?":{}},"tags":{}}],["budget",{"_index":4861,"title":{},"content":{"De zin en onzin van conferenties":{},"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["buffalo",{"_index":2627,"title":{},"content":{"Development principles in cooking":{},"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["buffer",{"_index":1217,"title":{},"content":{"undefined":{}},"tags":{}}],["buffoon",{"_index":7446,"title":{},"content":{"Moon Logic":{}},"tags":{}}],["buffoon_",{"_index":8916,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["bug",{"_index":2060,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"3D Software Rendering on the GBA":{},"Re: Is collecting physical games worth it?":{},"Favorite Game Meme":{},"How Not To Do A Remaster":{},"November 2021 Meta Post":{}},"tags":{}}],["buggi",{"_index":9718,"title":{},"content":{"How Not To Do A Remaster":{}},"tags":{}}],["buikpijn",{"_index":3388,"title":{},"content":{"Over entropie":{}},"tags":{}}],["build",{"_index":1623,"title":{"Page Building with Brizy in Wordpress":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{}},"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":{},"Thoughts on collaboration in education":{},"An am486 Performance Analysis":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"The Internet Killed Secrets in Games":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Programming on the Apple M1 Silicon":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"How to write academic papers in Markdown":{},"Getting rid of trackers using LineageOS":{},"Stop limiting yourself to JS in browsers":{},"Using Hugo to Launch a Gemini Capsule":{},"Emotional Magic":{},"Pinball Machines in a Jenever Museum":{},"Dear Student":{},"Power Usage Effectiveness":{},"The Lost Art of Being Lost":{},"Exporting Goodreads to Obsidian":{},"How Not To Do A Remaster":{},"A Creative State of Mind":{},"Technical Knowledge Brews Creativity":{},"Why Mastodon Isn't Great For Serendipity":{},"Thoughts On Home NAS Systems":{},"Academic Lineage":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["build ecosystem",{"_index":1867,"title":{},"content":{},"tags":{"Bye autotools hello Scons":{}}}],["build(funcbrain",{"_index":5497,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='fa",{"_index":4809,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["class='icon",{"_index":11639,"title":{},"content":{"Freshly Baked Thoughts":{}},"tags":{}}],["class='link",{"_index":5488,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='meta'>mor",{"_index":5495,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='sect1'>bla",{"_index":5490,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='topbar",{"_index":5487,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class='txt",{"_index":5492,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["class=\\\"lazylo",{"_index":6577,"title":{},"content":{"RSS Feeds, Hugo, and Lazy Image Loading":{}},"tags":{}}],["class](https://www.vrt.be/vrtnws/nl/2022/01/05/lector",{"_index":10638,"title":{},"content":{"Woke in Class":{}},"tags":{}}],["classes.html",{"_index":1034,"title":{},"content":{"undefined":{}},"tags":{}}],["classes](http://python",{"_index":1032,"title":{},"content":{"undefined":{}},"tags":{}}],["classes](https://www.darkageofcamelot.com/content/class",{"_index":10276,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["classic",{"_index":1608,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Faking domain logic":{},"A Ph.D. Thesis Proposal":{},"The Startup of a Lean Doctorate":{},"Over analoog en digitaal":{},"A Ph.D. Thesis: Iteration 2":{},"486 Upgrade 1: Sound Blaster 16":{},"A journey through the history of webdesign":{},"Building a Core2Duo Windows XP Retro PC":{},"The Internet Killed Secrets in Games":{},"Belgium - Portugal: 5 - 2":{},"Misconceptions about retro gamers":{},"Double-dipping and Market Prices":{},"Kotlin Is Java 2.0, But It's Still Java":{},"Favorite Game Meme":{},"Collective Creativity":{},"A Treatise on Leavened Waffles":{},"The Creative Techniques Toolbox":{},"How To Enjoy Your Own Digital Music":{},"January 2022 In Review":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"February 2022 In Review":{},"March 2022 In Review":{}},"tags":{}}],["classic/)[^3",{"_index":4578,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["classic/mini](https://www.nintendo.com/sup",{"_index":7742,"title":{},"content":{"Misconceptions about retro gamers":{}},"tags":{}}],["classic/vanilla",{"_index":9380,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["classic](https://www.nintendo.com/sup",{"_index":4525,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["classic](https://www.youtube.com/watch?v=onvrovuoxxi",{"_index":11051,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["classroom",{"_index":9118,"title":{},"content":{"Dear Student":{}},"tags":{}}],["classwork",{"_index":3506,"title":{},"content":{"Teaching by philosophy":{}},"tags":{}}],["claud",{"_index":9099,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["claudiu",{"_index":10143,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["claus",{"_index":2128,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["claw'",{"_index":8906,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["claw_",{"_index":8901,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["clay",{"_index":9428,"title":{},"content":{"Constraint-based Creativity":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["clean",{"_index":1827,"title":{},"content":{"Bye autotools hello Scons":{},"Are you handing over enough when inspiring someone?":{},"Death to pseudocode?":{},"Computer Science learning pathways":{},"Reviving an old 80486 PC":{},"Digitizing journals using DEVONthink":{},"Social Debt in Development Teams":{},"The Pilot Capless: a stellar stealth pen":{},"Minimalism and Tidying Up":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["cleaner",{"_index":6500,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["cleanup",{"_index":4331,"title":{},"content":{"Domain Driven Design in C":{},"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["clear",{"_index":1741,"title":{},"content":{"Metaprogramming instead of duplication":{},"A samurai learning mindset":{},"Take your time.":{},"Death to pseudocode?":{},"The Startup of a Lean Doctorate":{},"Thoughts on collaboration in education":{},"Building an Athlon Windows 98 Retro PC":{},"Thoughts on Bullshit Jobs":{},"My Retro Desk/Gaming Setup in 2021":{},"Social Debt in Development Teams":{},"Academese Gems":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"A Note About Footnotes":{},"Why Mastodon Isn't Great For Serendipity":{},"On Trying To Sell A Laptop":{},"Once Upon a Time in Shaolin":{},"Water Usage and Prices":{},"Academic Lineage":{}},"tags":{}}],["clear[^chal",{"_index":9929,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["clearli",{"_index":2511,"title":{},"content":{"A samurai learning mindset":{},"Thinking in terms of objects":{},"The Startup of a Lean Doctorate":{},"Building an Athlon Windows 98 Retro PC":{},"Always have a Diaster Recovery Plan":{},"Academese Gems":{},"Emotional Magic":{},"Thirty-Six":{},"Seneca on How to Live":{},"Winnie Lim on Rebuilding Oneself":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["clearurl",{"_index":6943,"title":{},"content":{"Exploring the AlterNet":{}},"tags":{}}],["clerk",{"_index":8796,"title":{},"content":{"Are You In The System Yet, Sir?":{}},"tags":{}}],["clever",{"_index":2450,"title":{},"content":{"How to teach kids to program":{},"Death to pseudocode?":{},"How Much Should I Spend On Magic The Gathering":{},"Kotlin Is Java 2.0, But It's Still Java":{},"2021 Donations":{},"Choosing an Audio Codec":{}},"tags":{}}],["cleverli",{"_index":5908,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"How Not To Do A Remaster":{}},"tags":{}}],["cli",{"_index":5228,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["cli/ma",{"_index":7977,"title":{},"content":{"Apple's App Store Design Mistake":{}},"tags":{}}],["cli/mas](https://github.com/ma",{"_index":7976,"title":{},"content":{"Apple's App Store Design Mistake":{}},"tags":{}}],["clic",{"_index":8254,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["clich",{"_index":143,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["click",{"_index":459,"title":{},"content":{"No, vegetarians do not eat fish!":{},"undefined":{},"Custom Webdriver Page Factories":{},"Unit Testing Extjs UI with Siesta":{},"Webdriver Exception Handling":{},"Teaching yourself to draw":{},"Designing websites with accessibility in mind":{},"The Internet Killed Secrets in Games":{},"Exploring the AlterNet":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Re: Is collecting physical games worth it?":{},"YouTube Play Image Links in Hugo":{},"A Triumph For Blogging":{},"Ever-increasing Work Email Spam":{},"November 2021 Meta Post":{},"Why Mastodon Isn't Great For Serendipity":{},"Generating a Blogroll With OPML in Hugo":{},"Woke in Class":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["clicked(",{"_index":2236,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["client",{"_index":1306,"title":{},"content":{"Unit Testing Stored Procedures":{},".NET Memory management VS JVM Memory management":{},"Digitizing journals using DEVONthink":{},"Lousy Wordpress Hacking Attempts detected":{},"Power Usage Effectiveness":{},"Where Does It Stop?":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["client/serv",{"_index":2050,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["clifftop",{"_index":10066,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["climat",{"_index":9221,"title":{},"content":{"Power Usage Effectiveness":{}},"tags":{}}],["climb",{"_index":8321,"title":{},"content":{"Water Levels As Public Data":{},"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["cling",{"_index":8306,"title":{},"content":{"The Decline of Battery Life":{},"Collective Creativity":{},"Ditch Scrum, Organize As You See Fit":{},"Expiry Dates On Journals":{}},"tags":{}}],["clion",{"_index":4345,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["clip",{"_index":7310,"title":{},"content":{"The first Dutch Obsidian meetup":{},"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["clipboard",{"_index":6611,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["clo",{"_index":712,"title":{},"content":{"undefined":{}},"tags":{}}],["clock",{"_index":6144,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The Decline of Battery Life":{}},"tags":{}}],["clock](https://www.redbubble.com/i/clock/password",{"_index":10100,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["clockspeed.png",{"_index":6143,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["clone",{"_index":4550,"title":{},"content":{"Over analoog en digitaal":{},"Belgium - Portugal: 5 - 2":{},"Why I Play Games (And So Should You)":{},"February 2022 In Review":{}},"tags":{}}],["close",{"_index":1719,"title":{},"content":{"Integration Testing with SQLite":{},"Faking domain logic":{},"A samurai learning mindset":{},"I'm jealous of my dog":{},"Take your time.":{},"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":{},"ITiCSE 2020: A Report":{},"486 Upgrade 1: Sound Blaster 16":{},"Digitizing journals using DEVONthink":{},"The Fridge, Your Inoculation Room":{},"Rules of a Creator's Life":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Thirty-Six":{},"Power Usage Effectiveness":{},"Dark Age of Camelot in 2022":{},"Generating a Blogroll With OPML in Hugo":{},"Winnie Lim on Rebuilding Oneself":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["closer",{"_index":1660,"title":{},"content":{"Integration Testing with SQLite":{},"Nuts about local nuts":{},"Computer Science learning pathways":{},"IT Competences and Certificates":{},"3D Software Rendering on the GBA":{},"486 Upgrade 2: The SD Card HDD":{},"My Retro Desk/Gaming Setup in 2021":{},"Stop limiting yourself to JS in browsers":{},"Why I like Pawn Stars":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"On Selling a Self-published Book":{},"Parking Machines Design Mistakes":{}},"tags":{}}],["closet",{"_index":6114,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["closur",{"_index":726,"title":{"Enhancing the builder pattern with closures":{}},"content":{"undefined":{}},"tags":{"Enhancing the builder pattern with closures":{}}}],["cloth",{"_index":2985,"title":{},"content":{"Inventing - for the worse?":{},"The Emperor of Lists":{},"From Curiosity To Creativity":{},"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["cloud",{"_index":4936,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Digitizing journals using DEVONthink":{},"Getting rid of trackers using LineageOS":{},"February 2022 In Review":{}},"tags":{}}],["cloud_",{"_index":9246,"title":{},"content":{"Power Usage Effectiveness":{}},"tags":{}}],["cloudflare'",{"_index":5166,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["cloudi",{"_index":10309,"title":{},"content":{"December 2021 In Review":{}},"tags":{}}],["clove",{"_index":9881,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["clr",{"_index":2005,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Exploring the Go programming language":{}},"tags":{".NET Memory management VS JVM Memory management":{}}}],["club",{"_index":232,"title":{},"content":{"On finding your inner zen in big cities":{},"The Productive Programmer on Mac":{},"A Triumph For Blogging":{},"Collective Creativity":{},"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["club_",{"_index":10995,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["clue",{"_index":2521,"title":{},"content":{"A samurai learning mindset":{},"A Decade in the Software Engineering industry":{},"Very Old and Somewhat Old Mood Boards":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["clumsi",{"_index":1851,"title":{},"content":{"Bye autotools hello Scons":{},"Academese Gems":{}},"tags":{}}],["clunk",{"_index":9513,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["clutter",{"_index":2055,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"My Retro Desk/Gaming Setup in 2021":{},"Are Digital Gardens Blogs?":{},"Ever-increasing Work Email Spam":{},"Minimalism and Tidying Up":{}},"tags":{}}],["cm",{"_index":7937,"title":{},"content":{"YouTube Play Image Links in Hugo":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["cmake",{"_index":1863,"title":{},"content":{"Bye autotools hello Scons":{},"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["cmd",{"_index":1368,"title":{},"content":{"undefined":{},"Productivity Tools on all platforms":{},"The Productive Programmer on Mac":{}},"tags":{}}],["cmd+space",{"_index":4362,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["cmdline",{"_index":6452,"title":{},"content":{"Programming on the Apple M1 Silicon":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["cmo",{"_index":5967,"title":{},"content":{"Reviving an old 80486 PC":{}},"tags":{}}],["cname",{"_index":5115,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["co",{"_index":1724,"title":{},"content":{"Integration Testing with SQLite":{},"Once Upon a Time in Shaolin":{},"Academic Lineage":{}},"tags":{}}],["co2",{"_index":9243,"title":{},"content":{"Power Usage Effectiveness":{}},"tags":{}}],["coach",{"_index":3728,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"A Decade in the Software Engineering industry":{}},"tags":{}}],["coachen",{"_index":3731,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["coast",{"_index":8126,"title":{},"content":{"How Much Should I Spend On Magic The Gathering":{},"Emotional Magic":{},"From Curiosity To Creativity":{},"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["coastlin",{"_index":9677,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["coat",{"_index":11387,"title":{},"content":{"Cool Things People Do With Their Blogs":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["cobbl",{"_index":7934,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["cockburn",{"_index":2562,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["code",{"_index":897,"title":{"Hiding Code Complexity":{},"Teaching students about coding trends":{},"Creativity Equals Messy Code?":{}},"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":{},"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"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":{},"Combining async with generators in Node 11":{},"ITiCSE 2020: A Report":{},"3D Software Rendering on the GBA":{},"486 Upgrade 1: Sound Blaster 16":{},"A journey through the history of webdesign":{},"The Productive Programmer on Mac":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Stop limiting yourself to JS in browsers":{},"On Manuscript Review Procedures":{},"Host your own webmention receiver":{},"Social Debt in Development Teams":{},"Software Engineering Is Not Engineering":{},"YouTube Play Image Links in Hugo":{},"Kotlin Is Java 2.0, But It's Still Java":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Creativity Self-Assessment Is Nonsense":{},"The HP Sprocket Mini Printer":{},"Dear Student":{},"Very Old and Somewhat Old Mood Boards":{},"Why Mastodon Isn't Great For Serendipity":{},"December 2021 In Review":{},"Winnie Lim on Rebuilding Oneself":{},"An Ad Leaflet QR Design Mistake":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"How To Stream Your Own Music: Reprise":{},"True Backlink Support in Hugo":{}},"tags":{}}],["code smel",{"_index":1981,"title":{},"content":{},"tags":{"Faking domain logic":{}}}],["code.
a",{"_index":8531,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["control](https://blog.feld.me/posts/2018/01/git",{"_index":11266,"title":{},"content":{"February 2022 In Review":{}},"tags":{}}],["controleert",{"_index":1148,"title":{},"content":{"undefined":{}},"tags":{}}],["controversi",{"_index":10209,"title":{},"content":{"Three Little GameCube Mods":{},"Once Upon a Time in Shaolin":{},"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["convalesc",{"_index":10153,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["conveni",{"_index":6730,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Stop limiting yourself to JS in browsers":{},"Allspice Is Not All Spice":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["convent",{"_index":1647,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Metaprogramming instead of duplication":{},"Journaling in practice":{},"A Ph.D. Thesis: Iteration 2":{},"Five reasons why agile and academia don't go together":{},"Designing websites with accessibility in mind":{},"486 Upgrade 2: The SD Card HDD":{},"What a Night Cam Is Good For":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["converg",{"_index":2730,"title":{},"content":{"A quick look at 6 fountain pens":{},"Five reasons why agile and academia don't go together":{}},"tags":{}}],["convers",{"_index":359,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Are you handing over enough when inspiring someone?":{},"Development principles in cooking":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"How to write academic papers in Markdown":{},"Nineties collecting nostalgia":{},"Are You In The System Yet, Sir?":{},"A Triumph For Blogging":{},"From Curiosity To Creativity":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["conversati",{"_index":3880,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["conversation](https://theconversation.com/th",{"_index":10832,"title":{},"content":{"Once Upon a Time in Shaolin":{}},"tags":{}}],["convert",{"_index":622,"title":{},"content":{"undefined":{},"Unit testing in Legacy Projects: VB6":{},"Thinking in terms of objects":{},"Combining async with generators in Node 11":{},"486 Upgrade 2: The SD Card HDD":{},"The Productive Programmer on Mac":{},"How to write academic papers in Markdown":{},"YouTube Play Image Links in Hugo":{},"The Fridge, Your Inoculation Room":{},"Emotional Magic":{},"My Kotlin Rose-Tinted Glasses Broke":{},"A Treatise on Leavened Waffles":{},"Constraint-based Creativity":{},"From Analog Notebook to Digital Vault":{},"Where Does It Stop?":{},"November 2021 Meta Post":{},"Three Little GameCube Mods":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["convinc",{"_index":124,"title":{},"content":{"Ending your day with happy thoughts":{},"How to teach kids to program":{},"2017 in books":{},"Take your time.":{},"Thoughts on Bullshit Jobs":{},"Exploring the Go programming language":{},"How Much Should I Spend On Magic The Gathering":{},"Cheese cheese cheese cheese cheese":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Technical Knowledge Brews Creativity":{},"A Personal Intro To Gentle Hip-Hop":{},"None Of My Best Friends Are Content Creators":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["convolut",{"_index":7618,"title":{},"content":{"Academese Gems":{},"Belgium - Portugal: 5 - 2":{},"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["conway](https://www.susannahconway.com",{"_index":11235,"title":{},"content":{"Expiry Dates On Journals":{}},"tags":{}}],["cook",{"_index":139,"title":{"Development principles in cooking":{}},"content":{"Ending your day with happy thoughts":{},"Learning to become a baker":{},"A samurai learning mindset":{},"Development principles in cooking":{},"Using Pandoc to publish a book":{},"Cheese cheese cheese cheese cheese":{},"What a Night Cam Is Good For":{}},"tags":{"Development principles in cooking":{},"Nuts about local nuts":{},"The Fridge, Your Inoculation Room":{},"Cheese cheese cheese cheese cheese":{}}}],["cookbook",{"_index":387,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Development principles in cooking":{},"The Fridge, Your Inoculation Room":{}},"tags":{}}],["cooki",{"_index":5587,"title":{},"content":{"Tracking and privacy concerns on websites":{},"A journey through the history of webdesign":{},"Exploring the AlterNet":{},"YouTube Play Image Links in Hugo":{},"Allspice Is Not All Spice":{}},"tags":{}}],["cookson",{"_index":5729,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["cool",{"_index":881,"title":{"Cool Things People Do With Their Blogs":{}},"content":{"undefined":{},"Enhancing the builder pattern with closures":{},"Nuts about local nuts":{},"Page Building with Brizy in Wordpress":{},"A journey through the history of webdesign":{},"Personal Desktop Screenshots of Olde":{},"Win98 Upgrade: Sound Blaster Audigy":{},"My Retro Desk/Gaming Setup in 2021":{},"How to write academic papers in Markdown":{},"Always have a Diaster Recovery Plan":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Flea Market Season":{},"The Fridge, Your Inoculation Room":{},"Dear Student":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Three Little GameCube Mods":{},"Woke in Class":{},"How To Enjoy Your Own Digital Music":{},"Academic Lineage":{},"An Ad Leaflet QR Design Mistake":{},"Creativity Equals Messy Code?":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["cooler",{"_index":2593,"title":{},"content":{"Development principles in cooking":{},"A Decade in the Software Engineering industry":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["coolio'",{"_index":11061,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["cooper",{"_index":5708,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["cope",{"_index":10093,"title":{},"content":{"November 2021 Meta Post":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"2021 Year In Review":{},"Expiry Dates On Journals":{}},"tags":{}}],["copi",{"_index":1451,"title":{},"content":{"undefined":{},"Death to pseudocode?":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Lousy Wordpress Hacking Attempts detected":{},"The first Dutch Obsidian meetup":{},"Belgium - Portugal: 5 - 2":{},"YouTube Play Image Links in Hugo":{},"Double-dipping and Market Prices":{},"Kotlin Is Java 2.0, But It's Still Java":{},"On Selling a Self-published Book":{},"Dear Student":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"The Emperor of Lists":{},"2021 Donations":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["copies](/post/2021/05/r",{"_index":7880,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["copy/upload",{"_index":11281,"title":{},"content":{"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["copypast",{"_index":1308,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["copyright",{"_index":1412,"title":{},"content":{"undefined":{},"I'm jealous of my dog":{},"Computer Science learning pathways":{}},"tags":{}}],["core",{"_index":3821,"title":{},"content":{"Reverse engineering a curriculum":{},"Hugo Extended: More static site processing power!":{},"Building a Core2Duo Windows XP Retro PC":{},"Programming on the Apple M1 Silicon":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["core2duo",{"_index":6055,"title":{"Building a Core2Duo Windows XP Retro PC":{}},"content":{"Building a Core2Duo Windows XP Retro PC":{},"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["coresend",{"_index":9987,"title":{},"content":{"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["corey",{"_index":7913,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["coriand",{"_index":9882,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["corner",{"_index":6728,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Ditch Scrum, Organize As You See Fit":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["cornmeal",{"_index":9374,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["corpor",{"_index":4724,"title":{},"content":{"IT Competences and Certificates":{},"Thoughts on Bullshit Jobs":{},"Exploring the AlterNet":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["corps",{"_index":10549,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["correct",{"_index":768,"title":{},"content":{"undefined":{},"Integration Testing with SQLite":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"On Manuscript Review Procedures":{},"A Note About Footnotes":{},"How to setup Pi-Hole on a Synology NAS":{},"Fighting Webmention And Pingback Spam":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"True Backlink Support in Hugo":{}},"tags":{}}],["correctli",{"_index":6214,"title":{},"content":{"Personal Desktop Screenshots of Olde":{},"The Monthly Retro Screenshot Guessing Quiz":{},"True Backlink Support in Hugo":{}},"tags":{}}],["correl",{"_index":6498,"title":{},"content":{"Thoughts on Bullshit Jobs":{},"A Factor Analysis For Dummies in R":{},"Natural Gas Prices and The Energy Market":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["correspond",{"_index":8344,"title":{},"content":{"Water Levels As Public Data":{}},"tags":{}}],["corrod",{"_index":5972,"title":{},"content":{"Reviving an old 80486 PC":{}},"tags":{}}],["corrupt",{"_index":1690,"title":{},"content":{"Integration Testing with SQLite":{},"Collective Creativity":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["corsica",{"_index":10144,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["corsican",{"_index":10141,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["cosmo",{"_index":3453,"title":{},"content":{"Over entropie":{}},"tags":{}}],["cost",{"_index":2346,"title":{},"content":{"Teaching yourself to draw":{},"Programming: a Creative Cognitive Process":{},"DIY: Hosting stuff on your own VPS":{},"Tracking and privacy concerns on websites":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Digitizing journals using DEVONthink":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"Social Debt in Development Teams":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"Questionable Game Publishing Methods":{},"Constraint-based Creativity":{},"How To Enjoy Your Own Digital Music":{},"Thoughts On Home NAS Systems":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["costli",{"_index":8121,"title":{},"content":{"How Much Should I Spend On Magic The Gathering":{},"Allspice Is Not All Spice":{}},"tags":{}}],["cou",{"_index":2438,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["couch",{"_index":9269,"title":{},"content":{"Questionable Game Publishing Methods":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Why I Play Games (And So Should You)":{},"What a Night Cam Is Good For":{}},"tags":{}}],["couk
\\r\\n\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\thttps://brainbaking.com/post/2022/03/an",{"_index":11456,"title":{},"content":{"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["coulage_",{"_index":8076,"title":{},"content":{"The Fridge, Your Inoculation Room":{}},"tags":{}}],["couldn't",{"_index":2610,"title":{},"content":{"Development principles in cooking":{},"Healing creative scars":{},"Building a Core2Duo Windows XP Retro PC":{},"Personal Desktop Screenshots of Olde":{},"Programming on the Apple M1 Silicon":{},"Book Number Fourteen":{},"A 5.25\" Gobliins 2 Surprise":{},"Exporting Goodreads to Obsidian":{},"How Not To Do A Remaster":{},"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["couldn’t",{"_index":5391,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["count",{"_index":2427,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Tracking and privacy concerns on websites":{},"Exploring the AlterNet":{},"Double-dipping and Market Prices":{},"Collective Creativity":{},"The Emperor of Lists":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Minimalism and Tidying Up":{}},"tags":{}}],["counter",{"_index":394,"title":{},"content":{"No, vegetarians do not eat fish!":{},"DIY: Hosting stuff on your own VPS":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The Emperor of Lists":{},"Water Usage and Prices":{}},"tags":{}}],["counterfeit",{"_index":7724,"title":{},"content":{"Flea Market Season":{}},"tags":{}}],["counterintuit",{"_index":2807,"title":{},"content":{"Journaling in practice":{}},"tags":{}}],["counterpart",{"_index":4342,"title":{},"content":{"Productivity Tools on all platforms":{},"Social Debt in Development Teams":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["counters_",{"_index":6053,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["countless",{"_index":5121,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Personal Desktop Screenshots of Olde":{},"Stop limiting yourself to JS in browsers":{},"Pinball Machines in a Jenever Museum":{},"Favorite Game Meme":{},"The Lost Art of Being Lost":{},"Creative Critical Thinking":{},"Re: Writing A Book Is Nonesense":{},"Woke in Class":{}},"tags":{}}],["countri",{"_index":194,"title":{},"content":{"On finding your inner zen in big cities":{},"Belgium - Portugal: 5 - 2":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"Parking Machines Design Mistakes":{}},"tags":{}}],["coupl",{"_index":1334,"title":{},"content":{"Unit Testing Stored Procedures":{},"Unit Testing Extjs UI with Siesta":{},"A quick look at 6 fountain pens":{},"Domain Driven Design in C":{},"IT Competences and Certificates":{},"The Internet Killed Secrets in Games":{},"My Retro Desk/Gaming Setup in 2021":{},"How to write academic papers in Markdown":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"Moon Logic":{},"Re: Is collecting physical games worth it?":{},"Social Debt in Development Teams":{},"Flea Market Season":{},"How Much Should I Spend On Magic The Gathering":{},"Emotional Magic":{},"On Selling a Self-published Book":{},"Are You In The System Yet, Sir?":{},"From Analog Notebook to Digital Vault":{},"Generating a Blogroll With OPML in Hugo":{},"How To Enjoy Your Own Digital Music":{},"Once Upon a Time in Shaolin":{},"Thoughts On Home NAS Systems":{},"Leuchtturm Notebook Paper Quality":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["courag",{"_index":10624,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["cours",{"_index":203,"title":{},"content":{"On finding your inner zen in big cities":{},"Learning to become a baker":{},"undefined":{},"Teaching yourself to draw":{},"Development principles in cooking":{},"A quick look at 6 fountain pens":{},"I'm jealous of my dog":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"Domain Driven Design in C":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"A Ph.D. Thesis: Iteration 2":{},"Teaching Object-Oriented design using the GBA":{},"Programming: a Creative Cognitive Process":{},"Page Building with Brizy in Wordpress":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"Thoughts on collaboration in education":{},"486 Upgrade 2: The SD Card HDD":{},"A journey through the history of webdesign":{},"Personal Desktop Screenshots of Olde":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"My Retro Desk/Gaming Setup in 2021":{},"Always have a Diaster Recovery Plan":{},"Getting rid of trackers using LineageOS":{},"Teaching students about coding trends":{},"The IndieWeb Mixed Bag":{},"Stop limiting yourself to JS in browsers":{},"The first Dutch Obsidian meetup":{},"On Manuscript Review Procedures":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Misconceptions about retro gamers":{},"Why I like Pawn Stars":{},"YouTube Play Image Links in Hugo":{},"Book Number Fourteen":{},"The Decline of Battery Life":{},"Cheese cheese cheese cheese cheese":{},"Emotional Magic":{},"Kotlin Is Java 2.0, But It's Still Java":{},"Pinball Machines in a Jenever Museum":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Thirty-Six":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{},"Are Digital Gardens Blogs?":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{},"Very Old and Somewhat Old Mood Boards":{},"Power Usage Effectiveness":{},"A 5.25\" Gobliins 2 Surprise":{},"From Analog Notebook to Digital Vault":{},"Allspice Is Not All Spice":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Migrating from Mailchimp to Listmonk":{},"Dark Age of Camelot in 2022":{},"A Factor Analysis For Dummies in R":{},"Natural Gas Prices and The Energy Market":{},"Woke in Class":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"Water Usage and Prices":{},"An Ad Leaflet QR Design Mistake":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{},"Leuchtturm Notebook Paper Quality":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Equality in Game Credits":{},"None Of My Best Friends Are Content Creators":{},"True Backlink Support in Hugo":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["course](https://kuleuven",{"_index":7272,"title":{},"content":{"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["courtesi",{"_index":7499,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["cousin",{"_index":8905,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["cout",{"_index":558,"title":{},"content":{"undefined":{}},"tags":{}}],["coutanc",{"_index":9824,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["cover",{"_index":1860,"title":{},"content":{"Bye autotools hello Scons":{},"Teaching yourself to draw":{},"Using Pandoc to publish a book":{},"Digitizing journals using DEVONthink":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"The Emperor of Lists":{},"Generating a Blogroll With OPML in Hugo":{},"Minimalism and Tidying Up":{},"2021 Year In Review":{},"Once Upon a Time in Shaolin":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["covid",{"_index":5531,"title":{},"content":{"ITiCSE 2020: A Report":{},"My Retro Desk/Gaming Setup in 2021":{},"The insanity of collecting retro games":{},"Flea Market Season":{},"Water Levels As Public Data":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Dear Student":{},"December 2021 In Review":{},"An Ad Leaflet QR Design Mistake":{},"March 2022 In Review":{}},"tags":{}}],["cow",{"_index":6268,"title":{},"content":{"The Internet Killed Secrets in Games":{},"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["cow'",{"_index":8504,"title":{},"content":{"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["cpp",{"_index":7277,"title":{},"content":{"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["cppflag",{"_index":1815,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["cpu",{"_index":4552,"title":{},"content":{"Over analoog en digitaal":{},"3D Software Rendering on the GBA":{},"An am486 Performance Analysis":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Personal Desktop Screenshots of Olde":{},"Programming on the Apple M1 Silicon":{},"The Decline of Battery Life":{},"Thoughts On Home NAS Systems":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["cpu.jpg",{"_index":5997,"title":{},"content":{"Reviving an old 80486 PC":{}},"tags":{}}],["cpu/memori",{"_index":6205,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["cqm",{"_index":5897,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["crack",{"_index":4804,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{},"Moon Logic":{}},"tags":{}}],["craft",{"_index":32,"title":{},"content":{"Ending your day with happy thoughts":{},"A samurai learning mindset":{},"Inventing - for the worse?":{},"Creative Critical Thinking":{},"Re: Writing A Book Is Nonesense":{},"March 2022 In Review":{}},"tags":{}}],["craftsman",{"_index":3011,"title":{},"content":{"Inventing - for the worse?":{},"Constraint-based Creativity":{}},"tags":{}}],["craftsmanship",{"_index":3022,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{"Inventing - for the worse?":{},"A Decade in the Software Engineering industry":{}}}],["craigslist",{"_index":10783,"title":{},"content":{"On Trying To Sell A Laptop":{}},"tags":{}}],["cram",{"_index":7311,"title":{},"content":{"The first Dutch Obsidian meetup":{}},"tags":{}}],["cramp",{"_index":7374,"title":{},"content":{"On Manuscript Review Procedures":{},"Minimalism and Tidying Up":{}},"tags":{}}],["cranni",{"_index":6260,"title":{},"content":{"The Internet Killed Secrets in Games":{},"Favorite Game Meme":{}},"tags":{}}],["crappi",{"_index":8071,"title":{},"content":{"Double-dipping and Market Prices":{},"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["crash",{"_index":1018,"title":{},"content":{"undefined":{},"486 Upgrade 2: The SD Card HDD":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Apple's App Store Design Mistake":{},"The Lost Art of Being Lost":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["crave",{"_index":8045,"title":{},"content":{"Double-dipping and Market Prices":{},"What a Night Cam Is Good For":{}},"tags":{}}],["crawl",{"_index":5510,"title":{},"content":{"Designing websites with accessibility in mind":{},"Where Does It Stop?":{},"What a Night Cam Is Good For":{}},"tags":{}}],["crawler",{"_index":5349,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["craze",{"_index":7659,"title":{},"content":{"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["crazi",{"_index":2260,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{},"Moon Logic":{},"Re: Is collecting physical games worth it?":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Favorite Game Meme":{},"November 2021 Meta Post":{},"December 2021 In Review":{},"My Retrocomputing Projects For 2022":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["crazy_",{"_index":11517,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["creak",{"_index":9668,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["cream",{"_index":9399,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["creat",{"_index":621,"title":{},"content":{"undefined":{},"Learning to become a baker":{},"Unit Testing Stored Procedures":{},"Visual Studio 2012 for Eclipse users":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Custom Webdriver Page Factories":{},"Unit Testing Extjs UI with Siesta":{},"Webdriver Exception Handling":{},"Unit testing in Legacy Projects: VB6":{},"How to teach kids to program":{},"Development principles in cooking":{},"Inventing - for the worse?":{},"Hiding Code Complexity":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"Reverse engineering a curriculum":{},"A Decade in the Software Engineering industry":{},"Unit Testing PicoBlaze Assembly files":{},"A Ph.D. Thesis: Iteration 2":{},"IT Competences and Certificates":{},"Teaching Object-Oriented design using the GBA":{},"Programming: a Creative Cognitive Process":{},"DIY: Hosting stuff on your own VPS":{},"Page Building with Brizy in Wordpress":{},"Project Warlock: About Perseverance":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"Thoughts on collaboration in education":{},"486 Upgrade 2: The SD Card HDD":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"How to write academic papers in Markdown":{},"Getting rid of trackers using LineageOS":{},"The first Dutch Obsidian meetup":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"Reducing Workflow Load Facilitates Writing":{},"Rules of a Creator's Life":{},"Emotional Magic":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Favorite Game Meme":{},"Are Digital Gardens Blogs?":{},"Very Old and Somewhat Old Mood Boards":{},"Constraint-based Creativity":{},"From Analog Notebook to Digital Vault":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"Dark Age of Camelot in 2022":{},"On Trying To Sell A Laptop":{},"Thoughts On Home NAS Systems":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{},"March 2022 In Review":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["createmocksbasedonnamingconvent",{"_index":1767,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["creation",{"_index":1809,"title":{},"content":{"Bye autotools hello Scons":{},"Domain Driven Design in C":{},"Very Old and Somewhat Old Mood Boards":{},"A Creative State of Mind":{},"Once Upon a Time in Shaolin":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["creativ",{"_index":2318,"title":{"Healing creative scars":{},"Concentrating on serendipitous creativity":{},"Programming: a Creative Cognitive Process":{},"What is Creativity in Software Engineering?":{},"Creativity Self-Assessment Is Nonsense":{},"Collective Creativity":{},"Constraint-based Creativity":{},"Creative Critical Thinking":{},"From Curiosity To Creativity":{},"A Creative State of Mind":{},"Technical Knowledge Brews Creativity":{},"The Creative Techniques Toolbox":{},"Creativity Equals Messy Code?":{}},"content":{"Teaching yourself to draw":{},"Healing creative scars":{},"Journaling in practice":{},"Inventing - for the worse?":{},"2017 in books":{},"Reverse engineering a curriculum":{},"A Decade in the Software Engineering industry":{},"Programming: a Creative Cognitive Process":{},"ITiCSE 2020: A Report":{},"486 Upgrade 1: Sound Blaster 16":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"What is Creativity in Software Engineering?":{},"You Shouldn't Use Spotify":{},"20 Years of Personal Cellphone History":{},"Creativity Self-Assessment Is Nonsense":{},"A Creative State of Mind":{},"Allspice Is Not All Spice":{},"December 2021 In Review":{},"A Factor Analysis For Dummies in R":{},"January 2022 In Review":{},"Creativity Equals Messy Code?":{}},"tags":{"Programming: a Creative Cognitive Process":{},"What is Creativity in Software Engineering?":{},"Creativity Self-Assessment Is Nonsense":{},"Collective Creativity":{},"Constraint-based Creativity":{},"Creative Critical Thinking":{},"From Curiosity To Creativity":{},"A Creative State of Mind":{},"Technical Knowledge Brews Creativity":{},"The Creative Techniques Toolbox":{},"Creativity Equals Messy Code?":{}}}],["creative'",{"_index":5896,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["creativesomething.net](https://creativesomething.net",{"_index":8258,"title":{},"content":{"Rules of a Creator's Life":{}},"tags":{}}],["creativit",{"_index":4957,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["creativity[^ama",{"_index":4952,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["creativu",{"_index":2965,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["creator",{"_index":8552,"title":{"None Of My Best Friends Are Content Creators":{}},"content":{"Kotlin Is Java 2.0, But It's Still Java":{},"2021 Donations":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["creator'",{"_index":8255,"title":{"Rules of a Creator's Life":{}},"content":{},"tags":{}}],["creatur",{"_index":2371,"title":{},"content":{"Teaching yourself to draw":{},"Emotional Magic":{}},"tags":{}}],["credit",{"_index":11401,"title":{"Equality in Game Credits":{}},"content":{"Equality in Game Credits":{}},"tags":{}}],["credits.jpg",{"_index":11410,"title":{},"content":{"Equality in Game Credits":{}},"tags":{}}],["creep",{"_index":10596,"title":{},"content":{"Why I Play Games (And So Should You)":{}},"tags":{}}],["crew",{"_index":9680,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["creëren",{"_index":4124,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["cri",{"_index":9727,"title":{},"content":{"How Not To Do A Remaster":{},"A Creative State of Mind":{},"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["cricket",{"_index":7817,"title":{},"content":{"The Pilot Capless: a stellar stealth pen":{}},"tags":{}}],["crimin",{"_index":11064,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["crisi",{"_index":8693,"title":{},"content":{"Thirty-Six":{},"The Creative Techniques Toolbox":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["crisp",{"_index":9397,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["critchlow'",{"_index":11505,"title":{},"content":{"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["critic",{"_index":5396,"title":{"Creative Critical Thinking":{}},"content":{"Project Warlock: About Perseverance":{},"An am486 Performance Analysis":{},"Programming on the Apple M1 Silicon":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"On Manuscript Review Procedures":{},"Creativity Self-Assessment Is Nonsense":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["critiqu",{"_index":5087,"title":{},"content":{"Five reasons why agile and academia don't go together":{}},"tags":{}}],["crockford",{"_index":888,"title":{},"content":{"undefined":{}},"tags":{}}],["crombez",{"_index":11486,"title":{},"content":{"March 2022 In Review":{}},"tags":{}}],["crontab",{"_index":10889,"title":{},"content":{"Thoughts On Home NAS Systems":{}},"tags":{}}],["cross",{"_index":2748,"title":{},"content":{"A quick look at 6 fountain pens":{},"Productivity Tools on all platforms":{},"Unit Testing PicoBlaze Assembly files":{},"Teaching students about coding trends":{},"Kotlin Is Java 2.0, But It's Still Java":{},"Are You In The System Yet, Sir?":{},"Favorite Game Meme":{},"Parking Machines Design Mistakes":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Academic Lineage":{}},"tags":{}}],["crossing_",{"_index":11499,"title":{},"content":{"March 2022 In Review":{}},"tags":{}}],["crow",{"_index":10139,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["crowd",{"_index":5382,"title":{},"content":{"Project Warlock: About Perseverance":{},"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["crown",{"_index":9791,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["crt",{"_index":4605,"title":{},"content":{"Over analoog en digitaal":{},"My Retro Desk/Gaming Setup in 2021":{},"Misconceptions about retro gamers":{},"Three Little GameCube Mods":{}},"tags":{}}],["crucial",{"_index":3027,"title":{},"content":{"Inventing - for the worse?":{},"On Manuscript Review Procedures":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["crud",{"_index":3126,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["crumb",{"_index":9394,"title":{},"content":{"A Treatise on Leavened Waffles":{},"Allspice Is Not All Spice":{}},"tags":{}}],["crumbl",{"_index":8181,"title":{},"content":{"On Tea Prices":{},"Water Levels As Public Data":{},"Constraint-based Creativity":{}},"tags":{}}],["crush",{"_index":7736,"title":{},"content":{"Flea Market Season":{}},"tags":{}}],["crust",{"_index":9395,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["crusti",{"_index":8113,"title":{},"content":{"The Fridge, Your Inoculation Room":{}},"tags":{}}],["crutcher",{"_index":8534,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["cry](https://www.youtube.com/watch?v=og4rozg78bo",{"_index":11090,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["crystal",{"_index":3293,"title":{},"content":{"Death to pseudocode?":{},"The Internet Killed Secrets in Games":{},"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["cs",{"_index":3532,"title":{},"content":{"Computer Science learning pathways":{},"Academic Lineage":{}},"tags":{}}],["cs1",{"_index":11212,"title":{},"content":{"Creativity Equals Messy Code?":{}},"tags":{}}],["csharp",{"_index":1649,"title":{},"content":{},"tags":{"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Metaprogramming instead of duplication":{},"Custom Webdriver Page Factories":{},"Faking domain logic":{},"Webdriver Exception Handling":{}}}],["csikszentmihalyi",{"_index":8832,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{}},"tags":{}}],["csikszentmihalyi'",{"_index":8828,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{}},"tags":{}}],["css",{"_index":5189,"title":{},"content":{"Hugo Extended: More static site processing power!":{},"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{},"Digitizing journals using DEVONthink":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"How to write academic papers in Markdown":{},"Exploring the AlterNet":{},"Teaching students about coding trends":{},"December 2021 In Review":{}},"tags":{}}],["css/html",{"_index":5245,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["css/styles.css",{"_index":5200,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["css2",{"_index":6970,"title":{},"content":{"Exploring the AlterNet":{}},"tags":{}}],["css3",{"_index":6974,"title":{},"content":{"Exploring the AlterNet":{}},"tags":{}}],["css](https://tailwindcss.com",{"_index":6976,"title":{},"content":{"Exploring the AlterNet":{}},"tags":{}}],["csv",{"_index":8367,"title":{},"content":{"Water Levels As Public Data":{},"Exporting Goodreads to Obsidian":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["csv['titl",{"_index":9589,"title":{},"content":{"Exporting Goodreads to Obsidian":{}},"tags":{}}],["csvpars",{"_index":9584,"title":{},"content":{"Exporting Goodreads to Obsidian":{}},"tags":{}}],["csvparse(readfilesync(csvfil",{"_index":9586,"title":{},"content":{"Exporting Goodreads to Obsidian":{}},"tags":{}}],["ct",{"_index":5880,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["ct1747",{"_index":5899,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["ct2290",{"_index":5898,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["ct4830",{"_index":6328,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["ctr",{"_index":1558,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl)+space",{"_index":4368,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["ctrl+alt",{"_index":1529,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+alt+left/right",{"_index":1526,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+d",{"_index":1515,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+e",{"_index":1539,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+enter",{"_index":1521,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+f11",{"_index":1543,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+l",{"_index":1516,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+m",{"_index":1575,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+o",{"_index":1546,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+r",{"_index":1561,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift",{"_index":1528,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift+1",{"_index":1531,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift+alt+f12",{"_index":1550,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift+alt+up/down",{"_index":1536,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift+b",{"_index":1571,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift+g",{"_index":1549,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+shift+o",{"_index":1538,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["ctrl+space",{"_index":1520,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Faking domain logic":{},"Productivity Tools on all platforms":{}},"tags":{}}],["ctrl+u",{"_index":1544,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["cube",{"_index":6277,"title":{},"content":{"The Internet Killed Secrets in Games":{}},"tags":{}}],["cube_",{"_index":9464,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["cubic",{"_index":10924,"title":{},"content":{"Water Usage and Prices":{}},"tags":{}}],["cubism",{"_index":9090,"title":{},"content":{"Collective Creativity":{},"Constraint-based Creativity":{}},"tags":{}}],["cuddl",{"_index":10673,"title":{},"content":{"2021 Year In Review":{}},"tags":{}}],["cuisin",{"_index":9383,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["culinari",{"_index":8608,"title":{},"content":{"On Selling a Self-published Book":{}},"tags":{}}],["cull",{"_index":5693,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["cultur",{"_index":3563,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"Reverse engineering a curriculum":{},"Thoughts on collaboration in education":{},"Thoughts on Bullshit Jobs":{},"What if Seneca wasn't Nero's advisor?":{},"Creativity Self-Assessment Is Nonsense":{},"The Emperor of Lists":{},"From Curiosity To Creativity":{},"Equality in Game Credits":{}},"tags":{}}],["cultures](https://techbeacon.com/lesson",{"_index":3562,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["cultuur",{"_index":3572,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["cumbersom",{"_index":1616,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Domain Driven Design in C":{}},"tags":{}}],["cup",{"_index":7642,"title":{},"content":{"Belgium - Portugal: 5 - 2":{},"Creative Critical Thinking":{}},"tags":{}}],["cupboard",{"_index":10474,"title":{},"content":{"Minimalism and Tidying Up":{}},"tags":{}}],["cupboard/draw",{"_index":8199,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["curat",{"_index":9086,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["curio",{"_index":10106,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["curios",{"_index":7292,"title":{"From Curiosity To Creativity":{}},"content":{"The first Dutch Obsidian meetup":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"From Curiosity To Creativity":{}},"tags":{}}],["curiosities](https://en.wikipedia.org/wiki/cabinet_of_curios",{"_index":9213,"title":{},"content":{"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["curiou",{"_index":302,"title":{},"content":{"On finding your inner zen in big cities":{},"Ditch Scrum, Organize As You See Fit":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["curl",{"_index":8704,"title":{},"content":{"Thirty-Six":{}},"tags":{}}],["currcont",{"_index":11603,"title":{},"content":{"True Backlink Support in Hugo":{}},"tags":{}}],["current",{"_index":304,"title":{},"content":{"On finding your inner zen in big cities":{},"undefined":{},"Unit Testing Extjs UI with Siesta":{},"Journaling in practice":{},"Concentrating on serendipitous creativity":{},"Death to pseudocode?":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"Unit Testing PicoBlaze Assembly files":{},"Programming: a Creative Cognitive Process":{},"The Internet Killed Secrets in Games":{},"What is Creativity in Software Engineering?":{},"Book Number Fourteen":{},"How Much Should I Spend On Magic The Gathering":{},"The Decline of Battery Life":{},"Water Levels As Public Data":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Creativity Self-Assessment Is Nonsense":{},"The Emperor of Lists":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Natural Gas Prices and The Energy Market":{},"Expiry Dates On Journals":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{},"True Backlink Support in Hugo":{}},"tags":{}}],["curri",{"_index":2599,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["curriculum",{"_index":3482,"title":{"Reverse engineering a curriculum":{}},"content":{"Teaching by philosophy":{},"Computer Science learning pathways":{},"Reverse engineering a curriculum":{},"ITiCSE 2020: A Report":{},"Ever-increasing Work Email Spam":{}},"tags":{}}],["curriculum](/post/revers",{"_index":3481,"title":{},"content":{"Teaching by philosophy":{},"Computer Science learning pathways":{}},"tags":{}}],["curriculum](https://dl.acm.org/doi/pdf/10.1145/3341525.3387405",{"_index":5544,"title":{},"content":{"ITiCSE 2020: A Report":{}},"tags":{}}],["currrellink",{"_index":11601,"title":{},"content":{"True Backlink Support in Hugo":{}},"tags":{}}],["curs",{"_index":2935,"title":{},"content":{"I'm jealous of my dog":{},"Teaching Object-Oriented design using the GBA":{},"Discord killed support for WinXP":{},"Thirty-Six":{},"Creative Critical Thinking":{},"December 2021 In Review":{}},"tags":{}}],["cursor",{"_index":1351,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["cursor_el",{"_index":1361,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["curtain",{"_index":10073,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["curv",{"_index":6732,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Exploring the Go programming language":{}},"tags":{}}],["custom",{"_index":1662,"title":{"Custom Webdriver Page Factories":{}},"content":{"Integration Testing with SQLite":{},"Custom Webdriver Page Factories":{},"Faking domain logic":{},"Unit Testing Extjs UI with Siesta":{},"Migrating from Extjs to React gradually":{},"A quick look at 6 fountain pens":{},"DIY: Hosting stuff on your own VPS":{},"Page Building with Brizy in Wordpress":{},"486 Upgrade 2: The SD Card HDD":{},"Digitizing journals using DEVONthink":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Belgium - Portugal: 5 - 2":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"On Selling a Self-published Book":{},"20 Years of Personal Cellphone History":{},"The Emperor of Lists":{},"How to setup Pi-Hole on a Synology NAS":{},"Cool Things People Do With Their Blogs":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["customev",{"_index":2247,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["customiz",{"_index":4367,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["cut",{"_index":957,"title":{},"content":{"Learning to become a baker":{},"Computer Science learning pathways":{},"A Decade in the Software Engineering industry":{},"DIY: Hosting stuff on your own VPS":{},"Teaching students about coding trends":{},"20 Years of Personal Cellphone History":{},"Favorite Game Meme":{},"Are Digital Gardens Blogs?":{},"How Not To Do A Remaster":{},"On Trying To Sell A Laptop":{},"Academic Lineage":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["cut](https://jefklakscodex.com/games/kathi",{"_index":10065,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["cuub",{"_index":10944,"title":{},"content":{"Water Usage and Prices":{}},"tags":{}}],["cv",{"_index":4405,"title":{},"content":{"A Decade in the Software Engineering industry":{}},"tags":{}}],["cxx",{"_index":1837,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["cxxflag",{"_index":1818,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["cyberpunk",{"_index":9716,"title":{},"content":{"How Not To Do A Remaster":{}},"tags":{}}],["cycl",{"_index":3168,"title":{},"content":{"Take your time.":{},"IT Competences and Certificates":{},"Flea Market Season":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["cyclette](https://www.kaffeecyclette.b",{"_index":9944,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["cycling](/post/2021/08/accident",{"_index":9307,"title":{},"content":{"The Lost Art of Being Lost":{}},"tags":{}}],["cyclist",{"_index":8443,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["cylind",{"_index":5834,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{}},"tags":{}}],["cynefin",{"_index":7804,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["cynic",{"_index":8413,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["cyren",{"_index":9565,"title":{},"content":{"The Emperor of Lists":{}},"tags":{}}],["cézann",{"_index":9097,"title":{},"content":{"Collective Creativity":{},"Constraint-based Creativity":{}},"tags":{}}],["cézanne'",{"_index":9444,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["c€/kwh",{"_index":10482,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["d",{"_index":3351,"title":{},"content":{"Over entropie":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["d'avella",{"_index":10456,"title":{},"content":{"Minimalism and Tidying Up":{}},"tags":{}}],["d2",{"_index":7180,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["da",{"_index":10994,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["daar",{"_index":856,"title":{},"content":{"undefined":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Over analoog en digitaal":{},"De zin en onzin van conferenties":{}},"tags":{}}],["daarna",{"_index":1387,"title":{},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"Over tijdsbesef":{}},"tags":{}}],["daarvan",{"_index":4190,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["dabbl",{"_index":2261,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{},"What if Seneca wasn't Nero's advisor?":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["dac",{"_index":6337,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["dad",{"_index":5363,"title":{},"content":{"Project Warlock: About Perseverance":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Favorite Game Meme":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["dadaism",{"_index":9091,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["daddy'",{"_index":11057,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["dadelijk",{"_index":4983,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["daemon",{"_index":1464,"title":{},"content":{"undefined":{}},"tags":{}}],["dag",{"_index":4835,"title":{},"content":{"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["dagboeken",{"_index":4294,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["dagelijk",{"_index":3358,"title":{},"content":{"Over entropie":{}},"tags":{}}],["dagelijks",{"_index":4831,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["dagen",{"_index":4828,"title":{},"content":{"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["dahlberg",{"_index":5699,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["daili",{"_index":213,"title":{},"content":{"On finding your inner zen in big cities":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"I'm jealous of my dog":{},"The Startup of a Lean Doctorate":{},"Thoughts on collaboration in education":{},"The Pilot Capless: a stellar stealth pen":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Emotional Magic":{},"Ever-increasing Work Email Spam":{},"Constraint-based Creativity":{},"Creative Critical Thinking":{},"2021 Donations":{},"Why Mastodon Isn't Great For Serendipity":{},"Dark Age of Camelot in 2022":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["daisi",{"_index":9556,"title":{},"content":{"The Emperor of Lists":{}},"tags":{}}],["damag",{"_index":4404,"title":{},"content":{"A Decade in the Software Engineering industry":{},"My Kotlin Rose-Tinted Glasses Broke":{},"A Creative State of Mind":{}},"tags":{}}],["damage_",{"_index":11085,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["damian",{"_index":7591,"title":{},"content":{"Social Debt in Development Teams":{}},"tags":{}}],["damn",{"_index":2893,"title":{},"content":{"Nuts about local nuts":{},"Exploring the AlterNet":{},"Apple's App Store Design Mistake":{},"A 5.25\" Gobliins 2 Surprise":{},"Woke in Class":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["dan",{"_index":602,"title":{},"content":{"undefined":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{},"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["dandara",{"_index":10023,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["danger",{"_index":6939,"title":{},"content":{"Exploring the AlterNet":{},"Why I Play Games (And So Should You)":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["daniel](https://ineed.coffe",{"_index":6998,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["danni",{"_index":3052,"title":{},"content":{"2017 in books":{},"Academic Lineage":{}},"tags":{}}],["danny'",{"_index":3074,"title":{},"content":{"2017 in books":{}},"tags":{}}],["daoc",{"_index":10256,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["daoc'",{"_index":10288,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["dare",{"_index":4749,"title":{},"content":{"IT Competences and Certificates":{},"Stop limiting yourself to JS in browsers":{},"Are You In The System Yet, Sir?":{},"Are Digital Gardens Blogs?":{},"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["daredevil",{"_index":10125,"title":{},"content":{"Seneca on How to Live":{}},"tags":{}}],["daringli",{"_index":7076,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["darjeel",{"_index":8192,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["darjeeling](https://www.mariagefreres.com/fr/2",{"_index":8205,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["dark",{"_index":4716,"title":{"Dark Age of Camelot in 2022":{}},"content":{"IT Competences and Certificates":{},"Software Engineering Is Not Engineering":{},"December 2021 In Review":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["darker",{"_index":7232,"title":{},"content":{"Exploring the Go programming language":{}},"tags":{}}],["darl",{"_index":11089,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["darmstadt",{"_index":10902,"title":{},"content":{"Visualizing Personal Data Takeouts":{}},"tags":{}}],["darwin",{"_index":9018,"title":{},"content":{"Are Digital Gardens Blogs?":{},"From Curiosity To Creativity":{}},"tags":{}}],["darwin'",{"_index":9685,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["daryl",{"_index":10035,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["dash",{"_index":4366,"title":{},"content":{"Productivity Tools on all platforms":{},"Generating a Blogroll With OPML in Hugo":{},"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["dat",{"_index":510,"title":{},"content":{"undefined":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["data",{"_index":1346,"title":{"Water Levels As Public Data":{},"Visualizing Personal Data Takeouts":{}},"content":{"Unit Testing Stored Procedures":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Faking domain logic":{},"Unit Testing Extjs UI with Siesta":{},"Webdriver Exception Handling":{},"Migrating from Extjs to React gradually":{},"Teaching by philosophy":{},"Five reasons why agile and academia don't go together":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"An am486 Performance Analysis":{},"Reviving an old 80486 PC":{},"Personal Desktop Screenshots of Olde":{},"Digitizing journals using DEVONthink":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Always have a Diaster Recovery Plan":{},"Getting rid of trackers using LineageOS":{},"Teaching students about coding trends":{},"Host your own webmention receiver":{},"Flea Market Season":{},"YouTube Play Image Links in Hugo":{},"Water Levels As Public Data":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Are You In The System Yet, Sir?":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{},"Ever-increasing Work Email Spam":{},"Power Usage Effectiveness":{},"Exporting Goodreads to Obsidian":{},"Migrating from Mailchimp to Listmonk":{},"Why Mastodon Isn't Great For Serendipity":{},"December 2021 In Review":{},"Generating a Blogroll With OPML in Hugo":{},"A Factor Analysis For Dummies in R":{},"Natural Gas Prices and The Energy Market":{},"Winnie Lim on Rebuilding Oneself":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{},"An Ad Leaflet QR Design Mistake":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"February 2022 In Review":{},"Cool Things People Do With Their Blogs":{},"Fighting Webmention And Pingback Spam":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["data!_",{"_index":10897,"title":{},"content":{"Visualizing Personal Data Takeouts":{}},"tags":{}}],["data('bfi",{"_index":10404,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["data/webmentions.json",{"_index":7438,"title":{},"content":{"Host your own webmention receiver":{}},"tags":{}}],["data](/post/2021/01/digit",{"_index":6996,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["data](/post/2021/07/waterlevel",{"_index":10492,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["data](https://medium.com/th",{"_index":10613,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["data_",{"_index":7151,"title":{},"content":{"The IndieWeb Mixed Bag":{}},"tags":{}}],["databas",{"_index":1609,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Metaprogramming instead of duplication":{},"Hiding Code Complexity":{},"Digitizing journals using DEVONthink":{},"Always have a Diaster Recovery Plan":{},"Water Levels As Public Data":{},"Emotional Magic":{},"Academic Lineage":{},"Expiry Dates On Journals":{}},"tags":{}}],["dataset](https://www.rdocumentation.org/packages/psych/versions/2.1.9/topics/bfi",{"_index":10401,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["datatypes.html#tupl",{"_index":1028,"title":{},"content":{"undefined":{}},"tags":{}}],["datatypes](http://www.diveintopython3.net/n",{"_index":1027,"title":{},"content":{"undefined":{}},"tags":{}}],["datavi",{"_index":10522,"title":{},"content":{},"tags":{"Natural Gas Prices and The Energy Market":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{}}}],["date",{"_index":482,"title":{"Expiry Dates On Journals":{}},"content":{"undefined":{},"Integration Testing with SQLite":{},"Journaling in practice":{},"Productivity Tools on all platforms":{},"Five reasons why agile and academia don't go together":{},"Programming on the Apple M1 Silicon":{},"Teaching students about coding trends":{},"Re: Is collecting physical games worth it?":{},"Book Number Fourteen":{},"Exporting Goodreads to Obsidian":{},"Freshly Baked Thoughts":{}},"tags":{}}],["datetim",{"_index":1717,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["datetimeformat",{"_index":1712,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["daughter",{"_index":5933,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["daughterboard",{"_index":5904,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["daunt",{"_index":2482,"title":{},"content":{"How to teach kids to program":{},"A Ph.D. Thesis: Iteration 2":{},"Minimalism and Tidying Up":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["david",{"_index":2814,"title":{},"content":{"Journaling in practice":{},"Nuts about local nuts":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Using Pandoc to publish a book":{},"Thoughts on Bullshit Jobs":{},"Re: Is collecting physical games worth it?":{},"Rules of a Creator's Life":{},"On Selling a Self-published Book":{},"Thirty-Six":{}},"tags":{}}],["dawn",{"_index":6769,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["day",{"_index":1,"title":{"Ending your day with happy thoughts":{}},"content":{"Ending your day with happy thoughts":{},"On finding your inner zen in big cities":{},"Learning to become a baker":{},"Bye autotools hello Scons":{},"Faking domain logic":{},"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"How to teach kids to program":{},"A samurai learning mindset":{},"Healing creative scars":{},"Inventing - for the worse?":{},"Hiding Code Complexity":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"Death to pseudocode?":{},"Teaching Object-Oriented design using the GBA":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Tracking and privacy concerns on websites":{},"An am486 Performance Analysis":{},"486 Upgrade 1: Sound Blaster 16":{},"Personal Desktop Screenshots of Olde":{},"Programming on the Apple M1 Silicon":{},"The Productive Programmer on Mac":{},"You Shouldn't Use Spotify":{},"Getting rid of trackers using LineageOS":{},"Discord killed support for WinXP":{},"Exploring the Go programming language":{},"Stop limiting yourself to JS in browsers":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Social Debt in Development Teams":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"Software Engineering Is Not Engineering":{},"Book Number Fourteen":{},"The Decline of Battery Life":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Are You In The System Yet, Sir?":{},"Favorite Game Meme":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{},"Ditch Scrum, Organize As You See Fit":{},"The Lost Art of Being Lost":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"How Not To Do A Remaster":{},"Where Does It Stop?":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Technical Knowledge Brews Creativity":{},"December 2021 In Review":{},"Why I Play Games (And So Should You)":{},"Woke in Class":{},"On Trying To Sell A Laptop":{},"My Retrocomputing Projects For 2022":{},"What a Night Cam Is Good For":{},"Cool Things People Do With Their Blogs":{},"March 2022 In Review":{}},"tags":{}}],["day\"_",{"_index":8877,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["day/galleri",{"_index":8643,"title":{},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["dayz_",{"_index":10837,"title":{},"content":{"Once Upon a Time in Shaolin":{}},"tags":{}}],["db",{"_index":1653,"title":{},"content":{"Integration Testing with SQLite":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["db](https://docs.google.com/spreadsheets/d/1lvf9noamklecphr_saa48m7suxitwii72ghrcw0wpnu/edit#gid=0",{"_index":5769,"title":{},"content":{"An am486 Performance Analysis":{}},"tags":{}}],["dbconfigurationmock",{"_index":1729,"title":{},"content":{"Metaprogramming instead of duplication":{}},"tags":{}}],["dc00",{"_index":11549,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["ddd",{"_index":4303,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["ddl",{"_index":1722,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["ddr",{"_index":6084,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["ddr2",{"_index":6087,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{}},"tags":{}}],["ddr3",{"_index":6120,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"The Decline of Battery Life":{}},"tags":{}}],["de",{"_index":606,"title":{"Over de inflatie van intellect":{},"De zin en onzin van conferenties":{}},"content":{"undefined":{},"2017 in books":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{},"The first Dutch Obsidian meetup":{},"The Fridge, Your Inoculation Room":{},"A Triumph For Blogging":{},"Constraint-based Creativity":{},"Migrating from Mailchimp to Listmonk":{},"Seneca on How to Live":{},"December 2021 In Review":{},"Water Usage and Prices":{},"Academic Lineage":{},"February 2022 In Review":{},"March 2022 In Review":{}},"tags":{}}],["de'bardi",{"_index":9074,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["dead",{"_index":3174,"title":{},"content":{"Take your time.":{},"Building an Athlon Windows 98 Retro PC":{},"Reducing Workflow Load Facilitates Writing":{},"On Selling a Self-published Book":{},"A 5.25\" Gobliins 2 Surprise":{},"Migrating from Mailchimp to Listmonk":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["dead[^dead",{"_index":6171,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["deadli",{"_index":2663,"title":{},"content":{"Healing creative scars":{}},"tags":{}}],["deadlin",{"_index":9162,"title":{},"content":{"Ever-increasing Work Email Spam":{}},"tags":{}}],["deal",{"_index":6554,"title":{},"content":{"RSS Feeds, Hugo, and Lazy Image Loading":{},"The Fridge, Your Inoculation Room":{},"Ever-increasing Work Email Spam":{},"Questionable Game Publishing Methods":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["dealer",{"_index":9085,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["deals](/post/2021/06/whi",{"_index":7716,"title":{},"content":{"Flea Market Season":{}},"tags":{}}],["death",{"_index":3251,"title":{"Death to pseudocode?":{},"The Death Of The Nike+ SportWatch":{}},"content":{"Belgium - Portugal: 5 - 2":{},"What if Seneca wasn't Nero's advisor?":{},"Thirty-Six":{},"The Emperor of Lists":{},"November 2021 Meta Post":{},"Technical Knowledge Brews Creativity":{},"Winnie Lim on Rebuilding Oneself":{},"A Personal Intro To Gentle Hip-Hop":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["death'",{"_index":10024,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["death](https://jefklakscodex.com/games/flip",{"_index":10068,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["deb",{"_index":2102,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["debacl",{"_index":7086,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["debat",{"_index":7085,"title":{},"content":{"Teaching students about coding trends":{},"Collective Creativity":{},"Creative Critical Thinking":{},"Technical Knowledge Brews Creativity":{},"Once Upon a Time in Shaolin":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["debates[^rm",{"_index":7252,"title":{},"content":{"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["deborah",{"_index":7615,"title":{},"content":{"Academese Gems":{}},"tags":{}}],["debt",{"_index":7564,"title":{"Social Debt in Development Teams":{}},"content":{"Social Debt in Development Teams":{},"Academese Gems":{}},"tags":{}}],["debt_",{"_index":7567,"title":{},"content":{"Social Debt in Development Teams":{}},"tags":{}}],["debug",{"_index":1215,"title":{},"content":{"undefined":{},"Unit testing in Legacy Projects: VB6":{},"A Decade in the Software Engineering industry":{},"Teaching Object-Oriented design using the GBA":{},"Hugo Extended: More static site processing power!":{},"Getting rid of trackers using LineageOS":{},"Apple's App Store Design Mistake":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["debug.writeline(george.isold",{"_index":4311,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["debugg",{"_index":11560,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["debunk",{"_index":5721,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["decad",{"_index":4387,"title":{"A Decade in the Software Engineering industry":{}},"content":{"Misconceptions about retro gamers":{},"Collective Creativity":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["deceit",{"_index":9501,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["decemb",{"_index":8191,"title":{"December 2021 In Review":{}},"content":{"On Tea Prices":{},"Allspice Is Not All Spice":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"December 2021 In Review":{},"Natural Gas Prices and The Energy Market":{},"January 2022 In Review":{}},"tags":{}}],["decennium",{"_index":3720,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["decent",{"_index":428,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Development principles in cooking":{},"An am486 Performance Analysis":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"My Retro Desk/Gaming Setup in 2021":{},"Exploring the Go programming language":{},"Host your own webmention receiver":{},"Why I Play Games (And So Should You)":{},"Thoughts On Home NAS Systems":{},"How To Stream Your Own Music: Reprise":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["decentr",{"_index":6517,"title":{},"content":{"Digitizing journals using DEVONthink":{},"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["decept",{"_index":4959,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["decibel",{"_index":3157,"title":{},"content":{"Take your time.":{}},"tags":{}}],["decid",{"_index":1011,"title":{},"content":{"Learning to become a baker":{},"Unit Testing Extjs UI with Siesta":{},"Unit testing in Legacy Projects: VB6":{},"Are you handing over enough when inspiring someone?":{},"Hiding Code Complexity":{},"Computer Science learning pathways":{},"Unit Testing PicoBlaze Assembly files":{},"Teaching Object-Oriented design using the GBA":{},"Page Building with Brizy in Wordpress":{},"Using Pandoc to publish a book":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Building a Core2Duo Windows XP Retro PC":{},"Personal Desktop Screenshots of Olde":{},"The Productive Programmer on Mac":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Teaching students about coding trends":{},"Discord killed support for WinXP":{},"Using Hugo to Launch a Gemini Capsule":{},"A Note About Footnotes":{},"Collective Creativity":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Very Old and Somewhat Old Mood Boards":{},"How Not To Do A Remaster":{},"Migrating from Mailchimp to Listmonk":{},"Dark Age of Camelot in 2022":{},"Natural Gas Prices and The Energy Market":{},"Woke in Class":{},"How to setup Pi-Hole on a Synology NAS":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"Thoughts On Home NAS Systems":{},"Visualizing Personal Data Takeouts":{},"A Personal Intro To Rough Hip-Hop":{},"March 2022 In Review":{},"The Death Of The Nike+ SportWatch":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["deciph",{"_index":11151,"title":{},"content":{"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["decis",{"_index":1941,"title":{},"content":{"Faking domain logic":{},"Are you handing over enough when inspiring someone?":{},"Computer Science learning pathways":{},"Thoughts on collaboration in education":{},"486 Upgrade 2: The SD Card HDD":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Software Engineering Is Not Engineering":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Ditch Scrum, Organize As You See Fit":{},"How Not To Do A Remaster":{},"2021 Donations":{},"Dark Age of Camelot in 2022":{},"The Creative Techniques Toolbox":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["deck",{"_index":8532,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["declar",{"_index":646,"title":{},"content":{"undefined":{},"Unit Testing Stored Procedures":{},"On Manuscript Review Procedures":{},"Software Engineering Is Not Engineering":{},"Creativity Self-Assessment Is Nonsense":{},"The HP Sprocket Mini Printer":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["declareert",{"_index":637,"title":{},"content":{"undefined":{}},"tags":{}}],["declareren",{"_index":1103,"title":{},"content":{"undefined":{}},"tags":{}}],["declin",{"_index":8271,"title":{"The Decline of Battery Life":{}},"content":{},"tags":{}}],["declining](https://mmo",{"_index":10284,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["decod",{"_index":10183,"title":{},"content":{"Three Little GameCube Mods":{},"How to setup Pi-Hole on a Synology NAS":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["decoder.charsetread",{"_index":11458,"title":{},"content":{"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["decomposit",{"_index":9526,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["decor",{"_index":436,"title":{},"content":{"No, vegetarians do not eat fish!":{},"undefined":{},"Custom Webdriver Page Factories":{},"Designing websites with accessibility in mind":{},"Very Old and Somewhat Old Mood Boards":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Dark Age of Camelot in 2022":{},"Minimalism and Tidying Up":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["decoreren",{"_index":780,"title":{},"content":{"undefined":{}},"tags":{}}],["decreas",{"_index":9111,"title":{},"content":{"Dear Student":{},"Constraint-based Creativity":{}},"tags":{}}],["decronstruct",{"_index":3306,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["decyph",{"_index":9187,"title":{},"content":{"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["dedic",{"_index":3271,"title":{},"content":{"Death to pseudocode?":{},"Project Warlock: About Perseverance":{},"The Internet Killed Secrets in Games":{},"Academese Gems":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"20 Years of Personal Cellphone History":{},"Favorite Game Meme":{},"Ditch Scrum, Organize As You See Fit":{},"Three Little GameCube Mods":{}},"tags":{}}],["deduc",{"_index":11586,"title":{},"content":{"True Backlink Support in Hugo":{}},"tags":{}}],["deduct",{"_index":3309,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["deed",{"_index":10148,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["deel",{"_index":1143,"title":{},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["deem",{"_index":9185,"title":{},"content":{"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["deep",{"_index":1852,"title":{},"content":{"Bye autotools hello Scons":{},"Development principles in cooking":{},"Hiding Code Complexity":{},"Concentrating on serendipitous creativity":{},"The Internet Killed Secrets in Games":{},"My Retro Desk/Gaming Setup in 2021":{},"Exploring the Go programming language":{},"Academese Gems":{},"Software Engineering Is Not Engineering":{},"Emotional Magic":{},"Pinball Machines in a Jenever Museum":{},"A Triumph For Blogging":{},"The Lost Art of Being Lost":{},"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["deeper",{"_index":8547,"title":{},"content":{"Kotlin Is Java 2.0, But It's Still Java":{},"Favorite Game Meme":{},"Winnie Lim on Rebuilding Oneself":{},"Choosing an Audio Codec":{},"Expiry Dates On Journals":{}},"tags":{}}],["deepli",{"_index":1935,"title":{},"content":{"Faking domain logic":{},"Re: Writing A Book Is Nonesense":{},"Winnie Lim on Rebuilding Oneself":{},"February 2022 In Review":{}},"tags":{}}],["def",{"_index":1039,"title":{},"content":{"undefined":{},"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["default",{"_index":569,"title":{},"content":{"undefined":{},"Visual Studio 2012 for Eclipse users":{},"Enhancing the builder pattern with closures":{},"Migrating from Extjs to React gradually":{},"DIY: Hosting stuff on your own VPS":{},"Reviving an old 80486 PC":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"YouTube Play Image Links in Hugo":{},"Reducing Workflow Load Facilitates Writing":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["default.aspxbrain",{"_index":5508,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["footnot",{"_index":8771,"title":{"A Note About Footnotes":{}},"content":{"A Note About Footnotes":{},"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["footnote_",{"_index":8776,"title":{},"content":{"A Note About Footnotes":{}},"tags":{}}],["for(int",{"_index":515,"title":{},"content":{"undefined":{},"Death to pseudocode?":{}},"tags":{}}],["for(var",{"_index":863,"title":{},"content":{"undefined":{}},"tags":{}}],["for](https://www.jenevermuseum.b",{"_index":8622,"title":{},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["foray",{"_index":4628,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["forbid",{"_index":9497,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["forbidden",{"_index":3156,"title":{},"content":{"Take your time.":{}},"tags":{}}],["forc",{"_index":3125,"title":{},"content":{"Hiding Code Complexity":{},"An am486 Performance Analysis":{},"Digitizing journals using DEVONthink":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Lousy Wordpress Hacking Attempts detected":{},"Moon Logic":{},"What if Seneca wasn't Nero's advisor?":{},"Technical Knowledge Brews Creativity":{},"The Creative Techniques Toolbox":{},"On Trying To Sell A Laptop":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["forcefulli",{"_index":9752,"title":{},"content":{"Where Does It Stop?":{}},"tags":{}}],["forceren",{"_index":1390,"title":{},"content":{"undefined":{}},"tags":{}}],["ford",{"_index":6579,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["ford'",{"_index":4334,"title":{},"content":{"Productivity Tools on all platforms":{},"The Productive Programmer on Mac":{}},"tags":{}}],["ford gba",{"_index":4811,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["github](https://github.com/wgroeneveld/jam",{"_index":7954,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["github](https://githut.info",{"_index":7104,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["githut'",{"_index":7103,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["gitlab",{"_index":3568,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["give",{"_index":70,"title":{},"content":{"Ending your day with happy thoughts":{},"No, vegetarians do not eat fish!":{},"Unit testing in Legacy Projects: VB6":{},"Are you handing over enough when inspiring someone?":{},"A samurai learning mindset":{},"I'm jealous of my dog":{},"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!":{},"Project Warlock: About Perseverance":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"486 Upgrade 2: The SD Card HDD":{},"The Internet Killed Secrets in Games":{},"Teaching students about coding trends":{},"Discord killed support for WinXP":{},"Software Engineering Is Not Engineering":{},"Apple's App Store Design Mistake":{},"The Fridge, Your Inoculation Room":{},"Pinball Machines in a Jenever Museum":{},"Collective Creativity":{},"Dear Student":{},"Power Usage Effectiveness":{},"2021 Donations":{},"Migrating from Mailchimp to Listmonk":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"Why Mastodon Isn't Great For Serendipity":{},"Generating a Blogroll With OPML in Hugo":{},"Woke in Class":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Academic Lineage":{},"Expiry Dates On Journals":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Fighting Webmention And Pingback Spam":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"The Death Of The Nike+ SportWatch":{}},"tags":{"Are you handing over enough when inspiring someone?":{}}}],["given",{"_index":1431,"title":{},"content":{"undefined":{},"Enhancing the builder pattern with closures":{},"Are you handing over enough when inspiring someone?":{},"Death to pseudocode?":{},"Programming: a Creative Cognitive Process":{},"ITiCSE 2020: A Report":{},"The Pilot Capless: a stellar stealth pen":{},"What if Seneca wasn't Nero's advisor?":{},"Emotional Magic":{},"2021 Donations":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Why I Play Games (And So Should You)":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["giver",{"_index":9483,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["giving](/img/sharing.png",{"_index":2411,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["glad",{"_index":265,"title":{},"content":{"On finding your inner zen in big cities":{},"3D Software Rendering on the GBA":{},"The first Dutch Obsidian meetup":{},"Flea Market Season":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["glanc",{"_index":7226,"title":{},"content":{"Exploring the Go programming language":{},"A Note About Footnotes":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["glancaebl",{"_index":9562,"title":{},"content":{"The Emperor of Lists":{}},"tags":{}}],["glasheld",{"_index":5038,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["glass",{"_index":7777,"title":{"My Kotlin Rose-Tinted Glasses Broke":{}},"content":{"Misconceptions about retro gamers":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["glide",{"_index":6692,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["global",{"_index":3021,"title":{},"content":{"Inventing - for the worse?":{},"Hugo Extended: More static site processing power!":{},"The insanity of collecting retro games":{},"Power Usage Effectiveness":{},"The Creative Techniques Toolbox":{},"Creativity Equals Messy Code?":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["global.asaxbla",{"_index":5502,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["headland",{"_index":10030,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["headlin",{"_index":9734,"title":{},"content":{"How Not To Do A Remaster":{},"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["heal",{"_index":2637,"title":{"Healing creative scars":{}},"content":{"Journaling in practice":{}},"tags":{}}],["health",{"_index":8436,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{},"The Creative Techniques Toolbox":{},"Why I Play Games (And So Should You)":{},"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["healthi",{"_index":8964,"title":{},"content":{"Parking Machines Design Mistakes":{},"A Treatise on Leavened Waffles":{},"Why I Play Games (And So Should You)":{}},"tags":{}}],["heap",{"_index":2009,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["hear",{"_index":350,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Teaching yourself to draw":{},"How to teach kids to program":{},"Favorite Game Meme":{},"Dear Student":{},"Minimalism and Tidying Up":{},"Choosing an Audio Codec":{}},"tags":{}}],["heard",{"_index":1310,"title":{},"content":{"Unit Testing Stored Procedures":{},"Digitizing journals using DEVONthink":{},"You Shouldn't Use Spotify":{},"The Pilot Capless: a stellar stealth pen":{}},"tags":{}}],["heart",{"_index":8187,"title":{},"content":{"On Tea Prices":{},"Rules of a Creator's Life":{},"Favorite Game Meme":{},"Questionable Game Publishing Methods":{}},"tags":{}}],["heat",{"_index":6104,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"The Fridge, Your Inoculation Room":{},"Power Usage Effectiveness":{},"Constraint-based Creativity":{},"Natural Gas Prices and The Energy Market":{},"Water Usage and Prices":{}},"tags":{}}],["heaven",{"_index":1513,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{}},"tags":{}}],["heavi",{"_index":1995,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Unit Testing Extjs UI with Siesta":{},"Computer Science learning pathways":{},"Programming: a Creative Cognitive Process":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"Water Levels As Public Data":{},"20 Years of Personal Cellphone History":{},"Dear Student":{},"Power Usage Effectiveness":{},"Creative Critical Thinking":{},"Technical Knowledge Brews Creativity":{},"January 2022 In Review":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["heavier",{"_index":7505,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["heavili",{"_index":1364,"title":{},"content":{"undefined":{},"Productivity Tools on all platforms":{},"How Much Should I Spend On Magic The Gathering":{},"The Decline of Battery Life":{},"What if Seneca wasn't Nero's advisor?":{},"A Treatise on Leavened Waffles":{},"How To Enjoy Your Own Digital Music":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["heavyweight",{"_index":2047,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"Teaching by philosophy":{},"Programming on the Apple M1 Silicon":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{}},"tags":{}}],["heb",{"_index":643,"title":{},"content":{"undefined":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hebben",{"_index":3477,"title":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"content":{"Over entropie":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hebt",{"_index":4147,"title":{},"content":{"Over tijdsbesef":{},"Over analoog en digitaal":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["heck",{"_index":6426,"title":{},"content":{"Programming on the Apple M1 Silicon":{},"How to write academic papers in Markdown":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["hector",{"_index":11552,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["heden",{"_index":4292,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["hedendaags",{"_index":3962,"title":{},"content":{"Over de inflatie van intellect":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hedgehog",{"_index":68,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["heeft",{"_index":489,"title":{},"content":{"undefined":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{}},"tags":{}}],["heel",{"_index":1073,"title":{},"content":{"undefined":{},"Over het introduceren van bedrijfsethiek":{},"Over tijdsbesef":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["heelal",{"_index":3479,"title":{},"content":{"Over entropie":{}},"tags":{}}],["heen",{"_index":1227,"title":{},"content":{"undefined":{},"Over de inflatie van intellect":{}},"tags":{}}],["hefti",{"_index":5567,"title":{},"content":{"ITiCSE 2020: A Report":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["hegel",{"_index":8392,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["heiddeg",{"_index":8393,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["height",{"_index":2706,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["height='16'>fe",{"_index":11641,"title":{},"content":{"Freshly Baked Thoughts":{}},"tags":{}}],["heijn",{"_index":8818,"title":{},"content":{"Are You In The System Yet, Sir?":{}},"tags":{}}],["hel",{"_index":4297,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["helaa",{"_index":3960,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["held",{"_index":6181,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{},"Water Levels As Public Data":{},"What if Seneca wasn't Nero's advisor?":{},"Collective Creativity":{}},"tags":{}}],["hele",{"_index":1151,"title":{},"content":{"undefined":{},"Over tijdsbesef":{}},"tags":{}}],["helema",{"_index":4539,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["helft",{"_index":3871,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["helicopt",{"_index":9721,"title":{},"content":{"How Not To Do A Remaster":{}},"tags":{}}],["hell",{"_index":1957,"title":{},"content":{"Faking domain logic":{},"Digitizing journals using DEVONthink":{},"Teaching students about coding trends":{},"Pinball Machines in a Jenever Museum":{},"A Treatise on Leavened Waffles":{}},"tags":{}}],["hell_",{"_index":4775,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{}},"tags":{}}],["hellen",{"_index":9425,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["hello",{"_index":1130,"title":{"Bye autotools hello Scons":{}},"content":{"undefined":{},"How to write academic papers in Markdown":{},"Exploring the Go programming language":{},"Cheese cheese cheese cheese cheese":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["help",{"_index":149,"title":{},"content":{"Ending your day with happy thoughts":{},"Unit Testing Stored Procedures":{},"Bye autotools hello Scons":{},"Unit Testing Extjs UI with Siesta":{},"Teaching yourself to draw":{},"Healing creative scars":{},"Nuts about local nuts":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"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":{},"Project Warlock: About Perseverance":{},"3D Software Rendering on the GBA":{},"Thoughts on collaboration in education":{},"Personal Desktop Screenshots of Olde":{},"The Internet Killed Secrets in Games":{},"How to write academic papers in Markdown":{},"The IndieWeb Mixed Bag":{},"Academese Gems":{},"Water Levels As Public Data":{},"Cheese cheese cheese cheese cheese":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Parking Machines Design Mistakes":{},"A Triumph For Blogging":{},"Dear Student":{},"2021 Donations":{},"Seneca on How to Live":{},"Natural Gas Prices and The Energy Market":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"2021 Year In Review":{},"How To Enjoy Your Own Digital Music":{},"A Personal Intro To Gentle Hip-Hop":{},"Academic Lineage":{},"Choosing an Audio Codec":{},"Expiry Dates On Journals":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["hem",{"_index":4490,"title":{},"content":{"Over analoog en digitaal":{},"De zin en onzin van conferenties":{}},"tags":{}}],["henc",{"_index":3710,"title":{},"content":{"A Ph.D. Thesis Proposal":{},"Five reasons why agile and academia don't go together":{},"What is Creativity in Software Engineering?":{},"Discord killed support for WinXP":{},"The Fridge, Your Inoculation Room":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["henri",{"_index":9822,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["henriqu",{"_index":11374,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["heraldri",{"_index":11390,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["herb",{"_index":2612,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["herbruikt",{"_index":1059,"title":{},"content":{"undefined":{}},"tags":{}}],["here",{"_index":182,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"undefined":{},"Visual Studio 2012 for Eclipse users":{},"Enhancing the builder pattern with closures":{},".NET Memory management VS JVM Memory management":{},"Development principles in cooking":{},"Nuts about local nuts":{},"Inventing - for the worse?":{},"2017 in books":{},"Take your time.":{},"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":{},"ITiCSE 2020: A Report":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"A journey through the history of webdesign":{},"The Internet Killed Secrets in Games":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Programming on the Apple M1 Silicon":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"My Retro Desk/Gaming Setup in 2021":{},"You Shouldn't Use Spotify":{},"Exploring the AlterNet":{},"Getting rid of trackers using LineageOS":{},"Nineties collecting nostalgia":{},"Re: Is collecting physical games worth it?":{},"Academese Gems":{},"Misconceptions about retro gamers":{},"Apple's App Store Design Mistake":{},"Double-dipping and Market Prices":{},"The Fridge, Your Inoculation Room":{},"The Decline of Battery Life":{},"Water Levels As Public Data":{},"What if Seneca wasn't Nero's advisor?":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"Favorite Game Meme":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{},"A Treatise on Leavened Waffles":{},"How Not To Do A Remaster":{},"Where Does It Stop?":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Why Mastodon Isn't Great For Serendipity":{},"Generating a Blogroll With OPML in Hugo":{},"A Factor Analysis For Dummies in R":{},"Natural Gas Prices and The Energy Market":{},"Re: Writing A Book Is Nonesense":{},"The Creative Techniques Toolbox":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"How to setup Pi-Hole on a Synology NAS":{},"Once Upon a Time in Shaolin":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"What a Night Cam Is Good For":{},"How To Stream Your Own Music: Reprise":{},"Leuchtturm Notebook Paper Quality":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{},"Fighting Webmention And Pingback Spam":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["here'",{"_index":1938,"title":{},"content":{"Faking domain logic":{},"Productivity Tools on all platforms":{},"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{},"How to write academic papers in Markdown":{},"Stop limiting yourself to JS in browsers":{},"The first Dutch Obsidian meetup":{},"YouTube Play Image Links in Hugo":{},"Apple's App Store Design Mistake":{},"Favorite Game Meme":{},"Very Old and Somewhat Old Mood Boards":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"Allspice Is Not All Spice":{},"Natural Gas Prices and The Energy Market":{},"Water Usage and Prices":{},"Academic Lineage":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["here](/museum/1998",{"_index":6022,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["here](/museum/2000",{"_index":6048,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["here](/post/2020/09/reviv",{"_index":5764,"title":{},"content":{"An am486 Performance Analysis":{}},"tags":{}}],["here](/post/a",{"_index":2679,"title":{},"content":{"Healing creative scars":{}},"tags":{}}],["here](https://arxiv.org/abs/2101.00837",{"_index":6632,"title":{},"content":{"What is Creativity in Software Engineering?":{}},"tags":{}}],["here](https://blog.joelbuckley.com.au/2019/01/pi",{"_index":10750,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["here](https://gohugo.io/hugo",{"_index":5196,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["here](https://lirias.kuleuven.be/retrieve/633305",{"_index":11208,"title":{},"content":{"Creativity Equals Messy Code?":{}},"tags":{}}],["here](https://web.archive.org/web/20010705221029/http://www.awhilesoft.f2s.com",{"_index":6050,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["here](https://www.gabriel",{"_index":11596,"title":{},"content":{"True Backlink Support in Hugo":{}},"tags":{}}],["herein",{"_index":11443,"title":{},"content":{"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["here’",{"_index":161,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["herhaalbaar",{"_index":3649,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["herhal",{"_index":3631,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{}},"tags":{}}],["herinn",{"_index":4285,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["herinneren",{"_index":4200,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["herinneringen",{"_index":5063,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["heritag",{"_index":7828,"title":{},"content":{"The Pilot Capless: a stellar stealth pen":{},"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["herkenbaar",{"_index":3898,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["herkurken",{"_index":4128,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["herleven",{"_index":4537,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["hero",{"_index":10606,"title":{},"content":{"Why I Play Games (And So Should You)":{},"February 2022 In Review":{}},"tags":{}}],["herodotu",{"_index":9653,"title":{},"content":{"From Curiosity To Creativity":{},"January 2022 In Review":{}},"tags":{}}],["heroes_",{"_index":11490,"title":{},"content":{"March 2022 In Review":{}},"tags":{}}],["heropsommen",{"_index":594,"title":{},"content":{"undefined":{}},"tags":{}}],["herself",{"_index":5097,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"Page Building with Brizy in Wordpress":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["heruitgav",{"_index":4522,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["hesit",{"_index":2383,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Development principles in cooking":{},"From Curiosity To Creativity":{}},"tags":{}}],["het",{"_index":495,"title":{"Over het introduceren van bedrijfsethiek":{}},"content":{"undefined":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{},"Tracking and privacy concerns on websites":{},"December 2021 In Review":{}},"tags":{}}],["heterogen",{"_index":10235,"title":{},"content":{"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["hetzelfd",{"_index":4829,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["hex",{"_index":4661,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["hexen",{"_index":5366,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["hey",{"_index":438,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Learning to become a baker":{},"Building a Core2Duo Windows XP Retro PC":{},"Programming on the Apple M1 Silicon":{},"Exploring the AlterNet":{},"Flea Market Season":{},"Why I like Pawn Stars":{},"Emotional Magic":{},"20 Years of Personal Cellphone History":{},"The Emperor of Lists":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["hi",{"_index":8664,"title":{},"content":{"Pinball Machines in a Jenever Museum":{},"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["hibern",{"_index":1998,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Exploring the Go programming language":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["hibernia",{"_index":10263,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["hick",{"_index":7382,"title":{},"content":{"On Manuscript Review Procedures":{}},"tags":{}}],["hid",{"_index":9724,"title":{},"content":{"How Not To Do A Remaster":{}},"tags":{}}],["hidden",{"_index":3122,"title":{},"content":{"Hiding Code Complexity":{},"Thinking in terms of objects":{},"Designing websites with accessibility in mind":{},"The Internet Killed Secrets in Games":{},"Software Engineering Is Not Engineering":{},"Thirty-Six":{},"Ditch Scrum, Organize As You See Fit":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"Re: Writing A Book Is Nonesense":{},"Thoughts On Home NAS Systems":{},"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["hide",{"_index":2623,"title":{"Hiding Code Complexity":{}},"content":{"Development principles in cooking":{},"Hiding Code Complexity":{},"Death to pseudocode?":{},"My Retro Desk/Gaming Setup in 2021":{},"Very Old and Somewhat Old Mood Boards":{},"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["hideou",{"_index":6828,"title":{},"content":{"How to write academic papers in Markdown":{}},"tags":{}}],["hieggelk",{"_index":10078,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["hier",{"_index":597,"title":{},"content":{"undefined":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{}},"tags":{}}],["hieraan",{"_index":642,"title":{},"content":{"undefined":{}},"tags":{}}],["hiero",{"_index":9787,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["hiero'",{"_index":9790,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["hieroglyph",{"_index":11050,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["hierond",{"_index":669,"title":{},"content":{"undefined":{}},"tags":{}}],["hierop",{"_index":833,"title":{},"content":{"undefined":{}},"tags":{}}],["hierrond",{"_index":741,"title":{},"content":{"undefined":{}},"tags":{}}],["high",{"_index":5361,"title":{},"content":{"Project Warlock: About Perseverance":{},"3D Software Rendering on the GBA":{},"An am486 Performance Analysis":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Water Levels As Public Data":{},"20 Years of Personal Cellphone History":{},"Dear Student":{},"Ever-increasing Work Email Spam":{},"Very Old and Somewhat Old Mood Boards":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"Natural Gas Prices and The Energy Market":{},"January 2022 In Review":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["higher",{"_index":3178,"title":{},"content":{"Take your time.":{},"Reverse engineering a curriculum":{},"Programming: a Creative Cognitive Process":{},"Thoughts on collaboration in education":{},"What is Creativity in Software Engineering?":{},"Discord killed support for WinXP":{},"Thirty-Six":{},"Where Does It Stop?":{},"A Factor Analysis For Dummies in R":{},"Natural Gas Prices and The Energy Market":{},"On Trying To Sell A Laptop":{},"Choosing an Audio Codec":{}},"tags":{}}],["highli",{"_index":2759,"title":{},"content":{"A quick look at 6 fountain pens":{},"Inventing - for the worse?":{},"Over het introduceren van bedrijfsethiek":{},"Programming: a Creative Cognitive Process":{},"Thoughts on Bullshit Jobs":{},"Creativity Self-Assessment Is Nonsense":{},"Favorite Game Meme":{},"Very Old and Somewhat Old Mood Boards":{},"Constraint-based Creativity":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"Dark Age of Camelot in 2022":{},"2021 Year In Review":{},"How To Enjoy Your Own Digital Music":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["highlight",{"_index":5318,"title":{},"content":{"Using Pandoc to publish a book":{},"Programming on the Apple M1 Silicon":{},"Moon Logic":{},"How Much Should I Spend On Magic The Gathering":{},"2021 Year In Review":{},"A Personal Intro To Gentle Hip-Hop":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["hij",{"_index":4175,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{}},"tags":{}}],["hike",{"_index":298,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["hilari",{"_index":11446,"title":{},"content":{"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["hill",{"_index":3132,"title":{},"content":{"Take your time.":{}},"tags":{}}],["him/her",{"_index":5150,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["him/herself",{"_index":6493,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["himself",{"_index":7605,"title":{},"content":{"Academese Gems":{},"Belgium - Portugal: 5 - 2":{},"A Triumph For Blogging":{},"Seneca on How to Live":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["hindsight",{"_index":7314,"title":{},"content":{"The first Dutch Obsidian meetup":{},"Natural Gas Prices and The Energy Market":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["hint",{"_index":6302,"title":{},"content":{"The Internet Killed Secrets in Games":{},"Moon Logic":{},"A Creative State of Mind":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["hip",{"_index":6853,"title":{"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{}},"content":{"You Shouldn't Use Spotify":{},"The HP Sprocket Mini Printer":{},"Generating a Blogroll With OPML in Hugo":{},"How To Enjoy Your Own Digital Music":{},"What a Night Cam Is Good For":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"March 2022 In Review":{}},"tags":{}}],["hire",{"_index":3843,"title":{},"content":{"Reverse engineering a curriculum":{},"Project Warlock: About Perseverance":{},"Questionable Game Publishing Methods":{}},"tags":{}}],["his/her",{"_index":6495,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["histor",{"_index":6678,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"From Curiosity To Creativity":{},"Natural Gas Prices and The Energy Market":{},"January 2022 In Review":{},"Academic Lineage":{}},"tags":{}}],["histori",{"_index":4396,"title":{"A journey through the history of webdesign":{},"20 Years of Personal Cellphone History":{}},"content":{"A Decade in the Software Engineering industry":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"The Productive Programmer on Mac":{},"The insanity of collecting retro games":{},"Software Engineering Is Not Engineering":{},"Cheese cheese cheese cheese cheese":{},"From Curiosity To Creativity":{},"Natural Gas Prices and The Energy Market":{},"Visualizing Personal Data Takeouts":{},"Academic Lineage":{},"February 2022 In Review":{},"March 2022 In Review":{}},"tags":{"Collective Creativity":{},"Constraint-based Creativity":{},"Creative Critical Thinking":{},"The Emperor of Lists":{},"From Curiosity To Creativity":{},"A Creative State of Mind":{},"Technical Knowledge Brews Creativity":{},"The Creative Techniques Toolbox":{}}}],["historian",{"_index":9057,"title":{},"content":{"Collective Creativity":{},"From Curiosity To Creativity":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["historie_",{"_index":11240,"title":{},"content":{"February 2022 In Review":{}},"tags":{}}],["history'",{"_index":7872,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["history.blogspot.be/2010/06/insid",{"_index":1033,"title":{},"content":{"undefined":{}},"tags":{}}],["history](https://www.196flavors.com/belgium",{"_index":9404,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["history_",{"_index":6610,"title":{},"content":{"The Productive Programmer on Mac":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["hit",{"_index":1974,"title":{},"content":{"Faking domain logic":{},"Are you handing over enough when inspiring someone?":{},"Development principles in cooking":{},"Death to pseudocode?":{},"Project Warlock: About Perseverance":{},"Programming on the Apple M1 Silicon":{},"You Shouldn't Use Spotify":{},"Thirty-Six":{},"Allspice Is Not All Spice":{},"Migrating from Mailchimp to Listmonk":{},"The Creative Techniques Toolbox":{},"On Trying To Sell A Laptop":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["hitch",{"_index":7403,"title":{},"content":{"On Manuscript Review Procedures":{}},"tags":{}}],["hlm9vzwv1gm",{"_index":7938,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["hln",{"_index":5596,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["hln.be",{"_index":5592,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["hln.jpg",{"_index":5598,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["hm",{"_index":2393,"title":{},"content":{"Are you handing over enough when inspiring someone?":{}},"tags":{}}],["hmaqi",{"_index":6917,"title":{},"content":{"Always have a Diaster Recovery Plan":{}},"tags":{}}],["hmm",{"_index":2394,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["hmmm",{"_index":2284,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["hoard",{"_index":8052,"title":{},"content":{"Double-dipping and Market Prices":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["hobb",{"_index":4272,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["hobb'",{"_index":3046,"title":{},"content":{"2017 in books":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["hobbi",{"_index":2644,"title":{},"content":{"Healing creative scars":{},"Re: Is collecting physical games worth it?":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Very Old and Somewhat Old Mood Boards":{},"Why I Play Games (And So Should You)":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["hobbyisten",{"_index":4619,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["hoc",{"_index":5105,"title":{},"content":{"Five reasons why agile and academia don't go together":{}},"tags":{}}],["hoe",{"_index":694,"title":{},"content":{"undefined":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hoeft",{"_index":598,"title":{},"content":{"undefined":{}},"tags":{}}],["hoek",{"_index":3795,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["hoeveelheid",{"_index":3415,"title":{},"content":{"Over entropie":{},"De zin en onzin van conferenties":{}},"tags":{}}],["hog",{"_index":1992,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Journaling in practice":{}},"tags":{}}],["hoge",{"_index":3136,"title":{},"content":{"Take your time.":{}},"tags":{}}],["hogeschool",{"_index":10639,"title":{},"content":{"Woke in Class":{}},"tags":{}}],["hold",{"_index":913,"title":{},"content":{"Learning to become a baker":{},"A quick look at 6 fountain pens":{},"Reverse engineering a curriculum":{},"Domain Driven Design in C":{},"Programming on the Apple M1 Silicon":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Stop limiting yourself to JS in browsers":{},"Re: Is collecting physical games worth it?":{},"Pinball Machines in a Jenever Museum":{},"Ever-increasing Work Email Spam":{},"Very Old and Somewhat Old Mood Boards":{},"A 5.25\" Gobliins 2 Surprise":{},"A Treatise on Leavened Waffles":{},"Dark Age of Camelot in 2022":{},"Natural Gas Prices and The Energy Market":{},"How To Enjoy Your Own Digital Music":{},"A Personal Intro To Rough Hip-Hop":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["hole",{"_index":1013,"title":{"How to setup Pi-Hole on a Synology NAS":{}},"content":{"Learning to become a baker":{},"The Creative Techniques Toolbox":{},"How to setup Pi-Hole on a Synology NAS":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["hole](/post/2022/02/how",{"_index":10864,"title":{},"content":{"Thoughts On Home NAS Systems":{}},"tags":{}}],["holi",{"_index":2731,"title":{},"content":{"A quick look at 6 fountain pens":{},"Ditch Scrum, Organize As You See Fit":{},"The Emperor of Lists":{}},"tags":{}}],["holiday",{"_index":10112,"title":{},"content":{"Seneca on How to Live":{},"January 2022 In Review":{}},"tags":{}}],["holl",{"_index":3910,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["holland",{"_index":8619,"title":{},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["hollow",{"_index":7763,"title":{},"content":{"Misconceptions about retro gamers":{},"Favorite Game Meme":{},"Creative Critical Thinking":{}},"tags":{}}],["holograph",{"_index":7526,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["homag",{"_index":6263,"title":{},"content":{"The Internet Killed Secrets in Games":{}},"tags":{}}],["home",{"_index":266,"title":{"Thoughts On Home NAS Systems":{}},"content":{"On finding your inner zen in big cities":{},"How to teach kids to program":{},"Take your time.":{},"Productivity Tools on all platforms":{},"Project Warlock: About Perseverance":{},"Building a Core2Duo Windows XP Retro PC":{},"My Retro Desk/Gaming Setup in 2021":{},"Social Debt in Development Teams":{},"Flea Market Season":{},"Software Engineering Is Not Engineering":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Very Old and Somewhat Old Mood Boards":{},"The Lost Art of Being Lost":{},"Creative Critical Thinking":{},"From Curiosity To Creativity":{},"A Creative State of Mind":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Why Mastodon Isn't Great For Serendipity":{},"2021 Year In Review":{},"Thoughts On Home NAS Systems":{},"Water Usage and Prices":{},"What a Night Cam Is Good For":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["homebrew",{"_index":6453,"title":{},"content":{"Programming on the Apple M1 Silicon":{}},"tags":{}}],["homebrews](https://soffes.blog/homebrew",{"_index":6454,"title":{},"content":{"Programming on the Apple M1 Silicon":{}},"tags":{}}],["homemad",{"_index":963,"title":{},"content":{"Learning to become a baker":{},"How to teach kids to program":{}},"tags":{}}],["homepage](https://aaronparecki.com",{"_index":11359,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["hometown",{"_index":9830,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["homo",{"_index":2964,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["homophili",{"_index":10247,"title":{},"content":{"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["homosapien",{"_index":11042,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["honderden",{"_index":4041,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["hondje.jpg",{"_index":10967,"title":{},"content":{"What a Night Cam Is Good For":{}},"tags":{}}],["honest",{"_index":6854,"title":{},"content":{"You Shouldn't Use Spotify":{},"Getting rid of trackers using LineageOS":{},"How Not To Do A Remaster":{},"Thoughts On Home NAS Systems":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["honesti",{"_index":9145,"title":{},"content":{"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["honestli",{"_index":2779,"title":{},"content":{"A quick look at 6 fountain pens":{},"You Shouldn't Use Spotify":{},"Exploring the AlterNet":{},"Stop limiting yourself to JS in browsers":{},"Double-dipping and Market Prices":{},"Favorite Game Meme":{},"How Not To Do A Remaster":{}},"tags":{}}],["honey",{"_index":2906,"title":{},"content":{"I'm jealous of my dog":{},"Hiding Code Complexity":{},"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["honeycomb",{"_index":6719,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{}},"tags":{}}],["hood",{"_index":3237,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["hoofd",{"_index":3448,"title":{},"content":{"Over entropie":{},"A Ph.D. Thesis Proposal":{}},"tags":{}}],["hoogt",{"_index":4185,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["hook",{"_index":1753,"title":{},"content":{"Metaprogramming instead of duplication":{},"Webdriver Exception Handling":{},"Programming: a Creative Cognitive Process":{},"Personal Desktop Screenshots of Olde":{},"Three Little GameCube Mods":{}},"tags":{}}],["hooligans](https://ruk.ca/content/midnight",{"_index":10085,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["hoop",{"_index":1478,"title":{},"content":{"undefined":{}},"tags":{}}],["hooray",{"_index":4780,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{},"Software Engineering Is Not Engineering":{}},"tags":{}}],["hoort",{"_index":3385,"title":{},"content":{"Over entropie":{}},"tags":{}}],["hop",{"_index":2994,"title":{"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{}},"content":{"Inventing - for the worse?":{},"A Decade in the Software Engineering industry":{},"You Shouldn't Use Spotify":{},"Generating a Blogroll With OPML in Hugo":{},"How To Enjoy Your Own Digital Music":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"March 2022 In Review":{}},"tags":{}}],["hop_",{"_index":11016,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["hope",{"_index":5376,"title":{},"content":{"Project Warlock: About Perseverance":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"The Productive Programmer on Mac":{},"Exploring the AlterNet":{},"Using Hugo to Launch a Gemini Capsule":{},"The Pilot Capless: a stellar stealth pen":{},"Thirty-Six":{},"A 5.25\" Gobliins 2 Surprise":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Why Mastodon Isn't Great For Serendipity":{},"January 2022 In Review":{},"Once Upon a Time in Shaolin":{},"My Retrocomputing Projects For 2022":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{}},"tags":{}}],["hopefulli",{"_index":4945,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Hugo Extended: More static site processing power!":{},"486 Upgrade 1: Sound Blaster 16":{},"The Productive Programmer on Mac":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"My Retro Desk/Gaming Setup in 2021":{},"The IndieWeb Mixed Bag":{},"Social Debt in Development Teams":{},"Book Number Fourteen":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["hopelijk",{"_index":4500,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["hoppi",{"_index":7478,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["hoppies.jpg",{"_index":7497,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["horadr",{"_index":6276,"title":{},"content":{"The Internet Killed Secrets in Games":{}},"tags":{}}],["horen",{"_index":3374,"title":{},"content":{"Over entropie":{},"Over analoog en digitaal":{}},"tags":{}}],["horizon",{"_index":10661,"title":{},"content":{"2021 Year In Review":{}},"tags":{}}],["horizont",{"_index":5673,"title":{},"content":{"3D Software Rendering on the GBA":{},"Building a Core2Duo Windows XP Retro PC":{},"My Retro Desk/Gaming Setup in 2021":{}},"tags":{}}],["horray",{"_index":229,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["horribl",{"_index":3538,"title":{},"content":{"Computer Science learning pathways":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Cheese cheese cheese cheese cheese":{},"Allspice Is Not All Spice":{},"An Ad Leaflet QR Design Mistake":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["horrifi",{"_index":2437,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Domain Driven Design in C":{}},"tags":{}}],["hors",{"_index":9959,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["horsemen",{"_index":10268,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["hospit",{"_index":6499,"title":{},"content":{"Thoughts on Bullshit Jobs":{},"Misconceptions about retro gamers":{}},"tags":{}}],["hoss",{"_index":7878,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["host",{"_index":2012,"title":{"DIY: Hosting stuff on your own VPS":{},"Host your own webmention receiver":{}},"content":{".NET Memory management VS JVM Memory management":{},"DIY: Hosting stuff on your own VPS":{},"Page Building with Brizy in Wordpress":{},"A journey through the history of webdesign":{},"What is Creativity in Software Engineering?":{},"Always have a Diaster Recovery Plan":{},"Lousy Wordpress Hacking Attempts detected":{},"Using Hugo to Launch a Gemini Capsule":{},"Host your own webmention receiver":{},"Power Usage Effectiveness":{},"Migrating from Mailchimp to Listmonk":{},"Minimalism and Tidying Up":{},"How to setup Pi-Hole on a Synology NAS":{},"My Retrocomputing Projects For 2022":{},"How To Stream Your Own Music: Reprise":{},"March 2022 In Review":{}},"tags":{}}],["hostna",{"_index":11293,"title":{},"content":{"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["hostnam",{"_index":1407,"title":{},"content":{"undefined":{},"Using Hugo to Launch a Gemini Capsule":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["hot",{"_index":140,"title":{},"content":{"Ending your day with happy thoughts":{},"Development principles in cooking":{},"Teaching by philosophy":{},"On Tea Prices":{},"A Treatise on Leavened Waffles":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["hotel",{"_index":286,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"Faking domain logic":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["hotkey",{"_index":6620,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["hou",{"_index":4055,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["hour",{"_index":200,"title":{},"content":{"On finding your inner zen in big cities":{},"Learning to become a baker":{},"Bye autotools hello Scons":{},"Unit Testing Extjs UI with Siesta":{},"Teaching yourself to draw":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"Productivity Tools on all platforms":{},"Project Warlock: About Perseverance":{},"486 Upgrade 2: The SD Card HDD":{},"The Productive Programmer on Mac":{},"The first Dutch Obsidian meetup":{},"Host your own webmention receiver":{},"The Fridge, Your Inoculation Room":{},"How Much Should I Spend On Magic The Gathering":{},"The Decline of Battery Life":{},"Water Levels As Public Data":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Pinball Machines in a Jenever Museum":{},"Ever-increasing Work Email Spam":{},"Where Does It Stop?":{},"November 2021 Meta Post":{},"Dark Age of Camelot in 2022":{},"Why I Play Games (And So Should You)":{},"On Trying To Sell A Laptop":{},"Once Upon a Time in Shaolin":{},"March 2022 In Review":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["hous",{"_index":4410,"title":{},"content":{"A Decade in the Software Engineering industry":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"The Fridge, Your Inoculation Room":{},"Water Levels As Public Data":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Collective Creativity":{},"The Emperor of Lists":{}},"tags":{}}],["hover",{"_index":6225,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["how",{"_index":8548,"title":{},"content":{"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{}}],["how.cssselector",{"_index":1883,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["howto",{"_index":5476,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["hp",{"_index":8923,"title":{"The HP Sprocket Mini Printer":{}},"content":{"The HP Sprocket Mini Printer":{}},"tags":{}}],["hq45",{"_index":6154,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["hql",{"_index":2000,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["hr",{"_index":923,"title":{},"content":{"Learning to become a baker":{},"Thoughts on Bullshit Jobs":{}},"tags":{}}],["href",{"_index":5212,"title":{},"content":{"Hugo Extended: More static site processing power!":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["href=\"https://webmention.io/someth",{"_index":7417,"title":{},"content":{"Host your own webmention receiver":{}},"tags":{}}],["href=\"https://www.youtube.com/watch?v",{"_index":7965,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["hristo",{"_index":11573,"title":{},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["html",{"_index":1878,"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":{},"A journey through the history of webdesign":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"How to write academic papers in Markdown":{},"The IndieWeb Mixed Bag":{},"Stop limiting yourself to JS in browsers":{},"Host your own webmention receiver":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["html5",{"_index":5479,"title":{},"content":{"Designing websites with accessibility in mind":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["htmlinputbox",{"_index":1891,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["htmlsubmitbutton",{"_index":1890,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["htmlurl=\"https://brainbaking.com",{"_index":10374,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["http",{"_index":5163,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Exploring the AlterNet":{},"Teaching students about coding trends":{},"Exploring the Go programming language":{},"Using Hugo to Launch a Gemini Capsule":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["http(",{"_index":7361,"title":{},"content":{"Using Hugo to Launch a Gemini Capsule":{}},"tags":{}}],["http/1.1",{"_index":7058,"title":{},"content":{"Lousy Wordpress Hacking Attempts detected":{}},"tags":{}}],["http://bash.cyberciti.biz",{"_index":1424,"title":{},"content":{"undefined":{}},"tags":{}}],["http://cyberciti.biz/fb",{"_index":1416,"title":{},"content":{"undefined":{}},"tags":{}}],["http://groovy.codehaus.org/p",{"_index":770,"title":{},"content":{"undefined":{}},"tags":{}}],["http://racket",{"_index":1252,"title":{},"content":{"undefined":{}},"tags":{}}],["http://web.mit.edu/~axch/www/test",{"_index":1257,"title":{},"content":{"undefined":{}},"tags":{}}],["http://www.cs.utexas.edu/ftp/garbage/cs345/schintro",{"_index":1196,"title":{},"content":{"undefined":{}},"tags":{}}],["http://www.gnu.org/s/mit",{"_index":1248,"title":{},"content":{"undefined":{}},"tags":{}}],["http://www.retrogamequiz.com",{"_index":9998,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["https://developer.nike.com/servic",{"_index":11570,"title":{},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["https://github.com/miloyip/gam",{"_index":3520,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["https://github.com/sponsor",{"_index":9909,"title":{},"content":{"2021 Donations":{}},"tags":{}}],["https://github.com/wgroeneveld/gba",{"_index":5658,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["https://jam.yourdomain.com/webment",{"_index":7432,"title":{},"content":{"Host your own webmention receiver":{}},"tags":{}}],["https://jp.mercari.com",{"_index":10344,"title":{},"content":{"December 2021 In Review":{}},"tags":{}}],["https://opencollective.com",{"_index":9910,"title":{},"content":{"2021 Donations":{}},"tags":{}}],["https://s3.eu",{"_index":6637,"title":{},"content":{"What is Creativity in Software Engineering?":{}},"tags":{}}],["https://takeout.google.com",{"_index":10903,"title":{},"content":{"Visualizing Personal Data Takeouts":{}},"tags":{}}],["https://www.youtube.com/watch?v=sjdmwsbasd8",{"_index":7939,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["hub",{"_index":10863,"title":{},"content":{"My Retrocomputing Projects For 2022":{}},"tags":{}}],["hub.st/10.1109/ms.2016.144",{"_index":7570,"title":{},"content":{"Social Debt in Development Teams":{}},"tags":{}}],["huderl",{"_index":10082,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["huderle'",{"_index":11515,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["huge",{"_index":1613,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Nuts about local nuts":{},"Take your time.":{},"A Decade in the Software Engineering industry":{},"A Ph.D. Thesis: Iteration 2":{},"Re: Is collecting physical games worth it?":{},"The Decline of Battery Life":{},"Water Levels As Public Data":{},"Cheese cheese cheese cheese cheese":{},"Thirty-Six":{},"Power Usage Effectiveness":{},"The Lost Art of Being Lost":{},"From Analog Notebook to Digital Vault":{},"Technical Knowledge Brews Creativity":{},"Dark Age of Camelot in 2022":{},"Why I Play Games (And So Should You)":{},"Choosing an Audio Codec":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["hugo",{"_index":2409,"title":{"Hugo Extended: More static site processing power!":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Using Hugo to Launch a Gemini Capsule":{},"YouTube Play Image Links in Hugo":{},"Generating a Blogroll With OPML in Hugo":{},"True Backlink Support in Hugo":{}},"content":{"Are you handing over enough when inspiring someone?":{},"Hugo Extended: More static site processing power!":{},"Combining async with generators in Node 11":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Lousy Wordpress Hacking Attempts detected":{},"Using Hugo to Launch a Gemini Capsule":{},"Host your own webmention receiver":{},"YouTube Play Image Links in Hugo":{},"Generating a Blogroll With OPML in Hugo":{},"Cool Things People Do With Their Blogs":{},"True Backlink Support in Hugo":{}},"tags":{"Hugo Extended: More static site processing power!":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Host your own webmention receiver":{},"YouTube Play Image Links in Hugo":{},"Reducing Workflow Load Facilitates Writing":{},"Generating a Blogroll With OPML in Hugo":{},"True Backlink Support in Hugo":{}}}],["hugo'",{"_index":5236,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["hugo.environ",{"_index":5230,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["hugo.io",{"_index":5232,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["hugo](/post/2020/05/hugo",{"_index":6548,"title":{},"content":{"RSS Feeds, Hugo, and Lazy Image Loading":{}},"tags":{}}],["hugo](/tags/hugo",{"_index":7936,"title":{},"content":{"YouTube Play Image Links in Hugo":{},"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["hugo](https://gohugo.io",{"_index":2386,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["huh",{"_index":6901,"title":{},"content":{"Always have a Diaster Recovery Plan":{}},"tags":{}}],["hui",{"_index":4974,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["huiselijk",{"_index":4981,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["human",{"_index":2914,"title":{},"content":{"I'm jealous of my dog":{},"Death to pseudocode?":{},"Computer Science learning pathways":{},"ITiCSE 2020: A Report":{},"Flea Market Season":{},"Cheese cheese cheese cheese cheese":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"Choosing an Audio Codec":{}},"tags":{}}],["humanist",{"_index":9071,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["humanity'",{"_index":10623,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["humbl",{"_index":9755,"title":{},"content":{"Where Does It Stop?":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"The Creative Techniques Toolbox":{},"2021 Year In Review":{}},"tags":{}}],["humid",{"_index":8088,"title":{},"content":{"The Fridge, Your Inoculation Room":{}},"tags":{}}],["humor",{"_index":3904,"title":{},"content":{"Over de inflatie van intellect":{},"Woke in Class":{}},"tags":{}}],["hun",{"_index":831,"title":{},"content":{"undefined":{},"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["hunch",{"_index":7372,"title":{},"content":{"On Manuscript Review Procedures":{}},"tags":{}}],["hundr",{"_index":2788,"title":{},"content":{"Journaling in practice":{},"Why I like Pawn Stars":{},"Double-dipping and Market Prices":{},"From Curiosity To Creativity":{},"Why I Play Games (And So Should You)":{},"On Trying To Sell A Laptop":{},"Water Usage and Prices":{},"Choosing an Audio Codec":{}},"tags":{}}],["hunger",{"_index":9427,"title":{},"content":{"Constraint-based Creativity":{},"Where Does It Stop?":{},"November 2021 Meta Post":{}},"tags":{}}],["hunt",{"_index":5869,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Why I like Pawn Stars":{},"Questionable Game Publishing Methods":{},"December 2021 In Review":{},"The Creative Techniques Toolbox":{},"My Retrocomputing Projects For 2022":{},"Equality in Game Credits":{}},"tags":{}}],["hunter",{"_index":6880,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["hunting_",{"_index":7465,"title":{},"content":{"Moon Logic":{}},"tags":{}}],["hurdl",{"_index":8185,"title":{},"content":{"On Tea Prices":{},"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["hurri",{"_index":9302,"title":{},"content":{"The Lost Art of Being Lost":{}},"tags":{}}],["hurt",{"_index":4330,"title":{},"content":{"Domain Driven Design in C":{},"Thoughts on Bullshit Jobs":{},"Pinball Machines in a Jenever Museum":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Thirty-Six":{},"The HP Sprocket Mini Printer":{},"Expiry Dates On Journals":{}},"tags":{}}],["hybrid",{"_index":4582,"title":{},"content":{"Over analoog en digitaal":{},"Using Hugo to Launch a Gemini Capsule":{},"The Decline of Battery Life":{}},"tags":{}}],["hygien",{"_index":11167,"title":{},"content":{"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["hyperkin",{"_index":6798,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["hét",{"_index":5005,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["héél",{"_index":4990,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["i$(gtest_dir",{"_index":1838,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["i$(gtest_dir)/includ",{"_index":7276,"title":{},"content":{"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["i'd",{"_index":1962,"title":{},"content":{"Faking domain logic":{},"Teaching yourself to draw":{},"Healing creative scars":{},"A quick look at 6 fountain pens":{},"2017 in books":{},"Death to pseudocode?":{},"A Ph.D. Thesis: Iteration 2":{},"ITiCSE 2020: A Report":{},"Thoughts on collaboration in education":{},"Digitizing journals using DEVONthink":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"What is Creativity in Software Engineering?":{},"Exploring the Go programming language":{},"Host your own webmention receiver":{},"Re: Is collecting physical games worth it?":{},"On Tea Prices":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Cheese cheese cheese cheese cheese":{},"On Selling a Self-published Book":{},"Thirty-Six":{},"A Triumph For Blogging":{},"Very Old and Somewhat Old Mood Boards":{},"Where Does It Stop?":{},"November 2021 Meta Post":{},"Three Little GameCube Mods":{},"Dark Age of Camelot in 2022":{},"Generating a Blogroll With OPML in Hugo":{},"How to setup Pi-Hole on a Synology NAS":{},"On Trying To Sell A Laptop":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"Academic Lineage":{},"Expiry Dates On Journals":{},"February 2022 In Review":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["i'll",{"_index":2034,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Healing creative scars":{},"Nuts about local nuts":{},"A Ph.D. Thesis: Iteration 2":{},"DIY: Hosting stuff on your own VPS":{},"Digitizing journals using DEVONthink":{},"The insanity of collecting retro games":{},"Getting rid of trackers using LineageOS":{},"Discord killed support for WinXP":{},"On Manuscript Review Procedures":{},"The Pilot Capless: a stellar stealth pen":{},"Book Number Fourteen":{},"Thirty-Six":{},"Are You In The System Yet, Sir?":{},"Favorite Game Meme":{},"Very Old and Somewhat Old Mood Boards":{},"A Treatise on Leavened Waffles":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"A Factor Analysis For Dummies in R":{},"Minimalism and Tidying Up":{},"Woke in Class":{},"Thoughts On Home NAS Systems":{},"Creativity Equals Messy Code?":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{},"March 2022 In Review":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["i'm",{"_index":1969,"title":{"I'm jealous of my dog":{},"I'm Joining the Coffeeneuring Challenge of 2021":{}},"content":{"Faking domain logic":{},"Are you handing over enough when inspiring someone?":{},"How to teach kids to program":{},"A samurai learning mindset":{},"Development principles in cooking":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"Nuts about local nuts":{},"I'm jealous of my dog":{},"Inventing - for the worse?":{},"2017 in books":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"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":{},"3D Software Rendering on the GBA":{},"Thoughts on collaboration in education":{},"An am486 Performance Analysis":{},"Personal Desktop Screenshots of Olde":{},"The Internet Killed Secrets in Games":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Thoughts on Bullshit Jobs":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"How to write academic papers in Markdown":{},"You Shouldn't Use Spotify":{},"Exploring the AlterNet":{},"The IndieWeb Mixed Bag":{},"Discord killed support for WinXP":{},"The first Dutch Obsidian meetup":{},"Moon Logic":{},"Re: Is collecting physical games worth it?":{},"Academese Gems":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"Software Engineering Is Not Engineering":{},"Why I like Pawn Stars":{},"Apple's App Store Design Mistake":{},"Double-dipping and Market Prices":{},"On Tea Prices":{},"Rules of a Creator's Life":{},"The Decline of Battery Life":{},"What if Seneca wasn't Nero's advisor?":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Kotlin Is Java 2.0, But It's Still Java":{},"On Selling a Self-published Book":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Thirty-Six":{},"A Note About Footnotes":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"Parking Machines Design Mistakes":{},"Ever-increasing Work Email Spam":{},"Questionable Game Publishing Methods":{},"The Emperor of Lists":{},"How Not To Do A Remaster":{},"Where Does It Stop?":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Migrating from Mailchimp to Listmonk":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"Why Mastodon Isn't Great For Serendipity":{},"December 2021 In Review":{},"Generating a Blogroll With OPML in Hugo":{},"Re: Writing A Book Is Nonesense":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"2021 Year In Review":{},"January 2022 In Review":{},"Once Upon a Time in Shaolin":{},"What a Night Cam Is Good For":{},"Academic Lineage":{},"An Ad Leaflet QR Design Mistake":{},"Expiry Dates On Journals":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"Leuchtturm Notebook Paper Quality":{},"Equality in Game Credits":{},"Fighting Webmention And Pingback Spam":{},"March 2022 In Review":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["i'v",{"_index":1279,"title":{},"content":{"Unit Testing Stored Procedures":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Unit testing in Legacy Projects: VB6":{},"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"2017 in books":{},"Hiding Code Complexity":{},"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":{},"Hugo Extended: More static site processing power!":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Programming on the Apple M1 Silicon":{},"Thoughts on Bullshit Jobs":{},"Digitizing journals using DEVONthink":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"My Retro Desk/Gaming Setup in 2021":{},"You Shouldn't Use Spotify":{},"Exploring the AlterNet":{},"The IndieWeb Mixed Bag":{},"Using Hugo to Launch a Gemini Capsule":{},"On Manuscript Review Procedures":{},"Social Debt in Development Teams":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"Book Number Fourteen":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Cheese cheese cheese cheese cheese":{},"Emotional Magic":{},"On Selling a Self-published Book":{},"20 Years of Personal Cellphone History":{},"Are You In The System Yet, Sir?":{},"Favorite Game Meme":{},"The HP Sprocket Mini Printer":{},"A Triumph For Blogging":{},"Are Digital Gardens Blogs?":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{},"Power Usage Effectiveness":{},"Exporting Goodreads to Obsidian":{},"Where Does It Stop?":{},"A Creative State of Mind":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"December 2021 In Review":{},"Generating a Blogroll With OPML in Hugo":{},"Natural Gas Prices and The Energy Market":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"How To Enjoy Your Own Digital Music":{},"How to setup Pi-Hole on a Synology NAS":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{},"A Personal Intro To Rough Hip-Hop":{},"An Ad Leaflet QR Design Mistake":{},"Creativity Equals Messy Code?":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Fighting Webmention And Pingback Spam":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"True Backlink Support in Hugo":{}},"tags":{}}],["i5",{"_index":6116,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{}},"tags":{}}],["ibm",{"_index":9337,"title":{},"content":{"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["ic",{"_index":2470,"title":{},"content":{"How to teach kids to program":{},"You Shouldn't Use Spotify":{}},"tags":{}}],["icloud",{"_index":7017,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["icon",{"_index":2360,"title":{},"content":{"Teaching yourself to draw":{},"Tracking and privacy concerns on websites":{},"Personal Desktop Screenshots of Olde":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"The Productive Programmer on Mac":{},"Apple's App Store Design Mistake":{},"How Much Should I Spend On Magic The Gathering":{},"Thirty-Six":{},"20 Years of Personal Cellphone History":{},"From Curiosity To Creativity":{},"How Not To Do A Remaster":{},"Freshly Baked Thoughts":{}},"tags":{}}],["icon`",{"_index":6027,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["ign](https://www.ign.com/articles/2019/07/17/nintendo",{"_index":8293,"title":{},"content":{"The Decline of Battery Life":{}},"tags":{}}],["ignit",{"_index":9310,"title":{},"content":{"The Lost Art of Being Lost":{}},"tags":{}}],["ignor",{"_index":2397,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Computer Science learning pathways":{},"A Decade in the Software Engineering industry":{},"IT Competences and Certificates":{},"Programming: a Creative Cognitive Process":{},"Building an Athlon Windows 98 Retro PC":{},"How to write academic papers in Markdown":{},"Social Debt in Development Teams":{},"Cheese cheese cheese cheese cheese":{},"The Lost Art of Being Lost":{},"A Treatise on Leavened Waffles":{}},"tags":{}}],["ii",{"_index":2147,"title":{},"content":{"Webdriver Exception Handling":{},"3D Software Rendering on the GBA":{},"Building an Athlon Windows 98 Retro PC":{},"The Internet Killed Secrets in Games":{},"Discord killed support for WinXP":{},"Moon Logic":{},"Flea Market Season":{},"Favorite Game Meme":{},"A Creative State of Mind":{},"Three Little GameCube Mods":{},"Dark Age of Camelot in 2022":{}},"tags":{}}],["ii'",{"_index":6265,"title":{},"content":{"The Internet Killed Secrets in Games":{}},"tags":{}}],["ii](https://jefklakscodex.com/articles/reviews/simon",{"_index":7463,"title":{},"content":{"Moon Logic":{}},"tags":{}}],["ii](https://www.eongaming.tech/product",{"_index":10195,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["ii_",{"_index":8863,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["iii",{"_index":9288,"title":{},"content":{"Questionable Game Publishing Methods":{},"How Not To Do A Remaster":{}},"tags":{}}],["iii/iv",{"_index":6078,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{}},"tags":{}}],["ik",{"_index":1185,"title":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"content":{"undefined":{},"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over analoog en digitaal":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["ikea",{"_index":6717,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{}},"tags":{}}],["ill",{"_index":11108,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["illiteraci",{"_index":8416,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["illumin",{"_index":9835,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["illus",{"_index":9455,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["illustr",{"_index":2367,"title":{},"content":{"Teaching yourself to draw":{},"Page Building with Brizy in Wordpress":{}},"tags":{}}],["im",{"_index":7016,"title":{},"content":{"Getting rid of trackers using LineageOS":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["imag",{"_index":2123,"title":{"RSS Feeds, Hugo, and Lazy Image Loading":{},"YouTube Play Image Links in Hugo":{}},"content":{"Webdriver Exception Handling":{},"I'm jealous of my dog":{},"2017 in books":{},"IT Competences and Certificates":{},"Tracking and privacy concerns on websites":{},"A journey through the history of webdesign":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"How to write academic papers in Markdown":{},"Getting rid of trackers using LineageOS":{},"Lousy Wordpress Hacking Attempts detected":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"Reducing Workflow Load Facilitates Writing":{},"From Analog Notebook to Digital Vault":{},"A Creative State of Mind":{},"November 2021 Meta Post":{},"Woke in Class":{},"March 2022 In Review":{}},"tags":{}}],["image.html",{"_index":6564,"title":{},"content":{"RSS Feeds, Hugo, and Lazy Image Loading":{}},"tags":{}}],["image[^pi",{"_index":10722,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["image](https://www.navidrome.org/docs/installation/dock",{"_index":11287,"title":{},"content":{"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["image_",{"_index":8221,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["imageformat.png",{"_index":2131,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["imagemagick",{"_index":6459,"title":{},"content":{"Programming on the Apple M1 Silicon":{},"YouTube Play Image Links in Hugo":{},"From Analog Notebook to Digital Vault":{}},"tags":{}}],["images![^tip",{"_index":6572,"title":{},"content":{"RSS Feeds, Hugo, and Lazy Image Loading":{}},"tags":{}}],["imagin",{"_index":1932,"title":{},"content":{"Faking domain logic":{},"Unit testing in Legacy Projects: VB6":{},"Reverse engineering a curriculum":{},"Programming: a Creative Cognitive Process":{},"Thoughts on Bullshit Jobs":{},"Thirty-Six":{},"The Lost Art of Being Lost":{},"The Emperor of Lists":{},"Why Mastodon Isn't Great For Serendipity":{},"A Personal Intro To Gentle Hip-Hop":{},"February 2022 In Review":{}},"tags":{}}],["imaginari",{"_index":9165,"title":{},"content":{"Ever-increasing Work Email Spam":{},"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["imbu",{"_index":11622,"title":{},"content":{"Wax Seals And Snail Mail":{}},"tags":{}}],["img",{"_index":4153,"title":{},"content":{"Over tijdsbesef":{},"Programming: a Creative Cognitive Process":{},"RSS Feeds, Hugo, and Lazy Image Loading":{}},"tags":{}}],["img/analoguent.jpg",{"_index":4589,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["img/desktopshots/engagebusy_febr2005.jpg",{"_index":6226,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["img/desktopshots/feb2004.jpg",{"_index":6203,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["img/desktopshots/fvwm_aug2004.jpg",{"_index":6208,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["img/desktopshots/fvwm_confnew_20051027_1.jpg",{"_index":6242,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["img/desktopshots/lila_sept2004.jpg",{"_index":6217,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["img/tnmt.jpg",{"_index":5061,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["imhoff'",{"_index":10467,"title":{},"content":{"Minimalism and Tidying Up":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["imit",{"_index":2571,"title":{},"content":{"A samurai learning mindset":{},"Why I like Pawn Stars":{}},"tags":{}}],["immedi",{"_index":2469,"title":{},"content":{"How to teach kids to program":{},"Combining async with generators in Node 11":{},"Reducing Workflow Load Facilitates Writing":{},"Emotional Magic":{},"A Note About Footnotes":{},"Favorite Game Meme":{},"Dear Student":{},"The Emperor of Lists":{},"Seneca on How to Live":{},"How To Stream Your Own Music: Reprise":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["immens",{"_index":10697,"title":{},"content":{"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["immer",{"_index":3364,"title":{},"content":{"Over entropie":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["immin",{"_index":3231,"title":{},"content":{"Concentrating on serendipitous creativity":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["immort",{"_index":7851,"title":{},"content":{"The Pilot Capless: a stellar stealth pen":{}},"tags":{}}],["immut",{"_index":798,"title":{},"content":{"undefined":{}},"tags":{}}],["imp",{"_index":10042,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["impact",{"_index":5550,"title":{},"content":{"ITiCSE 2020: A Report":{},"The first Dutch Obsidian meetup":{},"Favorite Game Meme":{},"Collective Creativity":{},"Why I Play Games (And So Should You)":{},"2021 Year In Review":{},"Once Upon a Time in Shaolin":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["impact_",{"_index":9317,"title":{},"content":{"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["impass",{"_index":3223,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["impatient.hello
\\r\\n\\t\\t\\r\\n\\t\\r\\nr",{"_index":1441,"title":{},"content":{"undefined":{}},"tags":{}}],["passwords](https://www.huderlem.com/blog/posts/carrot",{"_index":11516,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["past",{"_index":4,"title":{},"content":{"Ending your day with happy thoughts":{},"Development principles in cooking":{},"I'm jealous of my dog":{},"Inventing - for the worse?":{},"Death to pseudocode?":{},"Building an Athlon Windows 98 Retro PC":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The insanity of collecting retro games":{},"Discord killed support for WinXP":{},"YouTube Play Image Links in Hugo":{},"Water Levels As Public Data":{},"Kotlin Is Java 2.0, But It's Still Java":{},"The HP Sprocket Mini Printer":{},"Are Digital Gardens Blogs?":{},"Questionable Game Publishing Methods":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"Natural Gas Prices and The Energy Market":{},"Woke in Class":{},"2021 Year In Review":{},"January 2022 In Review":{},"Once Upon a Time in Shaolin":{},"My Retrocomputing Projects For 2022":{},"Academic Lineage":{}},"tags":{}}],["past_",{"_index":8065,"title":{},"content":{"Double-dipping and Market Prices":{}},"tags":{}}],["pasta",{"_index":448,"title":{},"content":{"No, vegetarians do not eat fish!":{},"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["pasta’",{"_index":440,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["pasteur",{"_index":9517,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["pat",{"_index":11140,"title":{},"content":{"Academic Lineage":{}},"tags":{}}],["patch",{"_index":6200,"title":{},"content":{"Personal Desktop Screenshots of Olde":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"How Not To Do A Remaster":{},"Generating a Blogroll With OPML in Hugo":{},"Why I Play Games (And So Should You)":{},"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["path",{"_index":1409,"title":{},"content":{"undefined":{},"Computer Science learning pathways":{},"A Decade in the Software Engineering industry":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Kotlin Is Java 2.0, But It's Still Java":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Seneca on How to Live":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["pathet",{"_index":3151,"title":{},"content":{"Take your time.":{}},"tags":{}}],["pathway",{"_index":3517,"title":{"Computer Science learning pathways":{}},"content":{"Moon Logic":{},"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["patienc",{"_index":7983,"title":{},"content":{"Apple's App Store Design Mistake":{}},"tags":{}}],["patient",{"_index":9700,"title":{},"content":{"How Not To Do A Remaster":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["patreon",{"_index":9897,"title":{},"content":{"2021 Donations":{}},"tags":{}}],["patrick",{"_index":10338,"title":{},"content":{"December 2021 In Review":{}},"tags":{}}],["patron",{"_index":9062,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["pattern",{"_index":1599,"title":{"Enhancing the builder pattern with closures":{}},"content":{"Enhancing the builder pattern with closures":{},"Metaprogramming instead of duplication":{},"Are you handing over enough when inspiring someone?":{},"Hiding Code Complexity":{},"Computer Science learning pathways":{},"Programming: a Creative Cognitive Process":{},"Digitizing journals using DEVONthink":{},"Getting rid of trackers using LineageOS":{},"Teaching students about coding trends":{},"Social Debt in Development Teams":{},"Software Engineering Is Not Engineering":{},"Collective Creativity":{},"A Creative State of Mind":{},"A Factor Analysis For Dummies in R":{},"Winnie Lim on Rebuilding Oneself":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["patterns](https://sourcemaking.com/design_patterns/singleton",{"_index":7576,"title":{},"content":{"Social Debt in Development Teams":{}},"tags":{}}],["patterson'",{"_index":10847,"title":{},"content":{"My Retrocomputing Projects For 2022":{}},"tags":{}}],["paul",{"_index":8533,"title":{},"content":{"Emotional Magic":{},"Collective Creativity":{},"Constraint-based Creativity":{},"December 2021 In Review":{},"February 2022 In Review":{}},"tags":{}}],["paus",{"_index":8838,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{}},"tags":{}}],["pave",{"_index":9457,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["pawn",{"_index":7717,"title":{"Why I like Pawn Stars":{}},"content":{"Flea Market Season":{},"Why I like Pawn Stars":{}},"tags":{}}],["pay",{"_index":1710,"title":{},"content":{"Integration Testing with SQLite":{},"Nuts about local nuts":{},"I'm jealous of my dog":{},"Domain Driven Design in C":{},"Tracking and privacy concerns on websites":{},"486 Upgrade 1: Sound Blaster 16":{},"Thoughts on Bullshit Jobs":{},"The Productive Programmer on Mac":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"Emotional Magic":{},"Are You In The System Yet, Sir?":{},"Parking Machines Design Mistakes":{},"Are Digital Gardens Blogs?":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"The Emperor of Lists":{},"Natural Gas Prices and The Energy Market":{},"Woke in Class":{},"Thoughts On Home NAS Systems":{},"Water Usage and Prices":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["payconiq",{"_index":8968,"title":{},"content":{"Parking Machines Design Mistakes":{}},"tags":{}}],["payment",{"_index":8967,"title":{},"content":{"Parking Machines Design Mistakes":{}},"tags":{}}],["payoff",{"_index":4301,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["payout",{"_index":6872,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["paz'",{"_index":11111,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["pc",{"_index":1319,"title":{"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{}},"content":{"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{},"Project Warlock: About Perseverance":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"486 Upgrade 1: Sound Blaster 16":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"The Productive Programmer on Mac":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Discord killed support for WinXP":{},"Moon Logic":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"YouTube Play Image Links in Hugo":{},"The HP Sprocket Mini Printer":{},"A 5.25\" Gobliins 2 Surprise":{},"How To Enjoy Your Own Digital Music":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["pc.18845723",{"_index":6163,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["pc](/post/2020/09/reviv",{"_index":5808,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{},"486 Upgrade 1: Sound Blaster 16":{},"Building an Athlon Windows 98 Retro PC":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["pc](/post/2020/10/build",{"_index":6059,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["pc_",{"_index":6159,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["pcb",{"_index":5879,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"Three Little GameCube Mods":{}},"tags":{}}],["pci",{"_index":6090,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Belgium - Portugal: 5 - 2":{},"Three Little GameCube Mods":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["pci128",{"_index":6311,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{}},"tags":{}}],["pcpbench",{"_index":5796,"title":{},"content":{"An am486 Performance Analysis":{}},"tags":{}}],["pcs](/post/2020/09/486",{"_index":6357,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["pcs](/post/2021/02/mi",{"_index":7183,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["pdf",{"_index":1580,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Using Pandoc to publish a book":{},"From Analog Notebook to Digital Vault":{}},"tags":{}}],["pdflatex",{"_index":5303,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["peac",{"_index":269,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"My Retro Desk/Gaming Setup in 2021":{},"Technical Knowledge Brews Creativity":{},"Minimalism and Tidying Up":{}},"tags":{}}],["peacefulli",{"_index":10578,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["peachi",{"_index":9947,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{},"Woke in Class":{}},"tags":{}}],["peak",{"_index":5549,"title":{},"content":{"ITiCSE 2020: A Report":{},"Building a Core2Duo Windows XP Retro PC":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"A Triumph For Blogging":{}},"tags":{}}],["peanut",{"_index":10984,"title":{},"content":{"What a Night Cam Is Good For":{}},"tags":{}}],["pedal",{"_index":8253,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["pedant",{"_index":11249,"title":{},"content":{"February 2022 In Review":{}},"tags":{}}],["peek",{"_index":6228,"title":{},"content":{"Personal Desktop Screenshots of Olde":{},"Moon Logic":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["peer",{"_index":3229,"title":{},"content":{"Concentrating on serendipitous creativity":{},"Five reasons why agile and academia don't go together":{},"Thoughts on collaboration in education":{},"On Manuscript Review Procedures":{},"Academese Gems":{},"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["peers](https://theconversation.com/academ",{"_index":7621,"title":{},"content":{"Academese Gems":{}},"tags":{}}],["peko",{"_index":8178,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["pen",{"_index":460,"title":{"A quick look at 6 fountain pens":{},"The Pilot Capless: a stellar stealth pen":{}},"content":{"No, vegetarians do not eat fish!":{},"A quick look at 6 fountain pens":{},"Over de inflatie van intellect":{},"The first Dutch Obsidian meetup":{},"Flea Market Season":{},"The Pilot Capless: a stellar stealth pen":{},"Why I like Pawn Stars":{},"Book Number Fourteen":{},"What if Seneca wasn't Nero's advisor?":{},"Are You In The System Yet, Sir?":{},"A Triumph For Blogging":{},"Very Old and Somewhat Old Mood Boards":{},"The Emperor of Lists":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"Why Mastodon Isn't Great For Serendipity":{},"Winnie Lim on Rebuilding Oneself":{},"Leuchtturm Notebook Paper Quality":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["penandpencil.jpg",{"_index":8986,"title":{},"content":{"A Triumph For Blogging":{}},"tags":{}}],["pencil",{"_index":58,"title":{},"content":{"Ending your day with happy thoughts":{},"A Triumph For Blogging":{}},"tags":{}}],["pencil.that",{"_index":164,"title":{},"content":{"Ending your day with happy thoughts":{}},"tags":{}}],["penetr",{"_index":11012,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["pens.jpg",{"_index":7854,"title":{},"content":{"The Pilot Capless: a stellar stealth pen":{}},"tags":{}}],["pens](/img/6pen",{"_index":2761,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["pens](/post/2017/07/fountain",{"_index":7816,"title":{},"content":{"The Pilot Capless: a stellar stealth pen":{}},"tags":{}}],["pentium",{"_index":6077,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["penz",{"_index":2722,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["peopl",{"_index":277,"title":{"Cool Things People Do With Their Blogs":{}},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"Learning to become a baker":{},"Unit Testing Stored Procedures":{},"Faking domain logic":{},"Teaching yourself to draw":{},"How to teach kids to program":{},"Development principles in cooking":{},"Journaling in practice":{},"Nuts about local nuts":{},"Inventing - for the worse?":{},"Hiding Code Complexity":{},"Take your time.":{},"Reverse engineering a curriculum":{},"A Decade in the Software Engineering industry":{},"A Ph.D. Thesis: Iteration 2":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Project Warlock: About Perseverance":{},"Designing websites with accessibility in mind":{},"Thoughts on Bullshit Jobs":{},"The Productive Programmer on Mac":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Exploring the AlterNet":{},"Discord killed support for WinXP":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"Host your own webmention receiver":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"Double-dipping and Market Prices":{},"On Tea Prices":{},"Rules of a Creator's Life":{},"Water Levels As Public Data":{},"What if Seneca wasn't Nero's advisor?":{},"On Selling a Self-published Book":{},"Creativity Self-Assessment Is Nonsense":{},"A Triumph For Blogging":{},"Are Digital Gardens Blogs?":{},"Ditch Scrum, Organize As You See Fit":{},"Power Usage Effectiveness":{},"The Lost Art of Being Lost":{},"Creative Critical Thinking":{},"How Not To Do A Remaster":{},"A Creative State of Mind":{},"Migrating from Mailchimp to Listmonk":{},"Why Mastodon Isn't Great For Serendipity":{},"Re: Writing A Book Is Nonesense":{},"The Creative Techniques Toolbox":{},"Why I Play Games (And So Should You)":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Academic Lineage":{},"Expiry Dates On Journals":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Cool Things People Do With Their Blogs":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["people'",{"_index":3103,"title":{},"content":{"Hiding Code Complexity":{},"The Emperor of Lists":{}},"tags":{}}],["peplin",{"_index":4476,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{}}],["pepper",{"_index":2603,"title":{},"content":{"Development principles in cooking":{},"Allspice Is Not All Spice":{}},"tags":{}}],["per",{"_index":2392,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"I'm jealous of my dog":{},"Over de inflatie van intellect":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{},"De zin en onzin van conferenties":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"Building a Core2Duo Windows XP Retro PC":{},"The Internet Killed Secrets in Games":{},"You Shouldn't Use Spotify":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"Water Levels As Public Data":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["perceiv",{"_index":4927,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Thoughts on Bullshit Jobs":{}},"tags":{}}],["percent",{"_index":9858,"title":{},"content":{"Allspice Is Not All Spice":{},"The Creative Techniques Toolbox":{},"Woke in Class":{},"Water Usage and Prices":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["percentag",{"_index":6491,"title":{},"content":{"Thoughts on Bullshit Jobs":{},"Discord killed support for WinXP":{}},"tags":{}}],["percentages_",{"_index":9387,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["perfect",{"_index":1990,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"IT Competences and Certificates":{},"486 Upgrade 2: The SD Card HDD":{},"Exploring the Go programming language":{},"Rules of a Creator's Life":{},"Constraint-based Creativity":{},"From Curiosity To Creativity":{},"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["perfectli",{"_index":3082,"title":{},"content":{"2017 in books":{},"Social Debt in Development Teams":{},"Re: Writing A Book Is Nonesense":{},"Expiry Dates On Journals":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["perform",{"_index":2078,"title":{"An am486 Performance Analysis":{}},"content":{"Unit Testing Extjs UI with Siesta":{},"ITiCSE 2020: A Report":{},"An am486 Performance Analysis":{},"Reviving an old 80486 PC":{},"Programming on the Apple M1 Silicon":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Social Debt in Development Teams":{},"The Pilot Capless: a stellar stealth pen":{},"Creativity Self-Assessment Is Nonsense":{},"Ditch Scrum, Organize As You See Fit":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["pergamon",{"_index":9421,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["perhap",{"_index":5085,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"ITiCSE 2020: A Report":{},"486 Upgrade 1: Sound Blaster 16":{},"The insanity of collecting retro games":{},"Teaching students about coding trends":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Re: Is collecting physical games worth it?":{},"Social Debt in Development Teams":{},"Academese Gems":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"The Pilot Capless: a stellar stealth pen":{},"Reducing Workflow Load Facilitates Writing":{},"What if Seneca wasn't Nero's advisor?":{},"On Selling a Self-published Book":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Thirty-Six":{},"Creativity Self-Assessment Is Nonsense":{},"Favorite Game Meme":{},"Parking Machines Design Mistakes":{},"Collective Creativity":{},"Very Old and Somewhat Old Mood Boards":{},"The Lost Art of Being Lost":{},"Where Does It Stop?":{},"Migrating from Mailchimp to Listmonk":{},"Three Little GameCube Mods":{},"A Factor Analysis For Dummies in R":{},"Re: Writing A Book Is Nonesense":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"On Trying To Sell A Laptop":{},"My Retrocomputing Projects For 2022":{},"What a Night Cam Is Good For":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Academic Lineage":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{},"Equality in Game Credits":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["period",{"_index":946,"title":{},"content":{"Learning to become a baker":{},"Concentrating on serendipitous creativity":{},"Over tijdsbesef":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Water Levels As Public Data":{},"From Curiosity To Creativity":{},"A Creative State of Mind":{},"What a Night Cam Is Good For":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["perish_",{"_index":7378,"title":{},"content":{"On Manuscript Review Procedures":{},"Equality in Game Credits":{}},"tags":{}}],["perl",{"_index":714,"title":{},"content":{"undefined":{},"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["permalink",{"_index":8245,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{},"True Backlink Support in Hugo":{}},"tags":{}}],["perman",{"_index":9571,"title":{},"content":{"Exporting Goodreads to Obsidian":{},"Dark Age of Camelot in 2022":{},"December 2021 In Review":{}},"tags":{}}],["permiss",{"_index":6711,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Exploring the Go programming language":{},"Woke in Class":{}},"tags":{}}],["permitrootlogin",{"_index":5149,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["pernici",{"_index":6478,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["persever",{"_index":5340,"title":{"Project Warlock: About Perseverance":{}},"content":{"The Internet Killed Secrets in Games":{}},"tags":{}}],["persian",{"_index":9657,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["persist",{"_index":3101,"title":{},"content":{"Hiding Code Complexity":{},"DIY: Hosting stuff on your own VPS":{},"Misconceptions about retro gamers":{},"Water Levels As Public Data":{},"Collective Creativity":{},"2021 Year In Review":{}},"tags":{}}],["person",{"_index":368,"title":{"Personal Desktop Screenshots of Olde":{},"20 Years of Personal Cellphone History":{},"Visualizing Personal Data Takeouts":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{}},"content":{"No, vegetarians do not eat fish!":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"I'm jealous of my dog":{},"Domain Driven Design in C":{},"A Ph.D. Thesis: Iteration 2":{},"Project Warlock: About Perseverance":{},"ITiCSE 2020: A Report":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Digitizing journals using DEVONthink":{},"What is Creativity in Software Engineering?":{},"Discord killed support for WinXP":{},"Using Hugo to Launch a Gemini Capsule":{},"Moon Logic":{},"Re: Is collecting physical games worth it?":{},"Academese Gems":{},"On Selling a Self-published Book":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"Favorite Game Meme":{},"Parking Machines Design Mistakes":{},"Are Digital Gardens Blogs?":{},"Collective Creativity":{},"Dear Student":{},"A 5.25\" Gobliins 2 Surprise":{},"Exporting Goodreads to Obsidian":{},"From Analog Notebook to Digital Vault":{},"Technical Knowledge Brews Creativity":{},"A Factor Analysis For Dummies in R":{},"Re: Writing A Book Is Nonesense":{},"2021 Year In Review":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"Thoughts On Home NAS Systems":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Expiry Dates On Journals":{},"How To Stream Your Own Music: Reprise":{},"Equality in Game Credits":{},"None Of My Best Friends Are Content Creators":{},"Freshly Baked Thoughts":{}},"tags":{}}],["person(65",{"_index":4310,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["person(int",{"_index":4305,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["person_is_old",{"_index":4329,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["person_is_old(person",{"_index":4328,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["personag",{"_index":3917,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["personalti",{"_index":10394,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["personen",{"_index":3698,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["persoon",{"_index":3398,"title":{},"content":{"Over entropie":{},"De zin en onzin van conferenties":{}},"tags":{}}],["persoonlijk",{"_index":3777,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["perspect",{"_index":323,"title":{},"content":{"On finding your inner zen in big cities":{},"Programming on the Apple M1 Silicon":{},"Re: Is collecting physical games worth it?":{},"Constraint-based Creativity":{},"Dark Age of Camelot in 2022":{}},"tags":{}}],["perspectief",{"_index":4256,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["persuad",{"_index":9500,"title":{},"content":{"Creative Critical Thinking":{},"From Curiosity To Creativity":{}},"tags":{}}],["pescatarian",{"_index":354,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["peso",{"_index":7157,"title":{},"content":{"The IndieWeb Mixed Bag":{}},"tags":{}}],["pesos](/post/2021/03/th",{"_index":9574,"title":{},"content":{"Exporting Goodreads to Obsidian":{}},"tags":{}}],["pet",{"_index":3191,"title":{},"content":{"Take your time.":{}},"tags":{}}],["peter",{"_index":8049,"title":{},"content":{"Double-dipping and Market Prices":{},"Thirty-Six":{},"A Triumph For Blogging":{},"A 5.25\" Gobliins 2 Surprise":{},"November 2021 Meta Post":{},"December 2021 In Review":{}},"tags":{}}],["peter'",{"_index":8989,"title":{},"content":{"A Triumph For Blogging":{},"A 5.25\" Gobliins 2 Surprise":{},"A Treatise on Leavened Waffles":{}},"tags":{}}],["petit",{"_index":5932,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["petri",{"_index":3587,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["pexels](https://pexels.com",{"_index":4723,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["ph.d",{"_index":3708,"title":{"A Ph.D. Thesis Proposal":{},"A Ph.D. Thesis: Iteration 2":{}},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["pharaoh",{"_index":10033,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["phase",{"_index":1338,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["phd",{"_index":3559,"title":{},"content":{"The Startup of a Lean Doctorate":{},"Thoughts on collaboration in education":{},"What is Creativity in Software Engineering?":{},"On Manuscript Review Procedures":{},"Ever-increasing Work Email Spam":{},"Academic Lineage":{}},"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":{},"What is Creativity in Software Engineering?":{},"A Factor Analysis For Dummies in R":{},"Creativity Equals Messy Code?":{}}}],["phenomena",{"_index":9528,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["phenomenon",{"_index":3841,"title":{},"content":{"Reverse engineering a curriculum":{},"Thoughts on Bullshit Jobs":{}},"tags":{}}],["phil",{"_index":5850,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{}},"tags":{}}],["phil'",{"_index":5767,"title":{},"content":{"An am486 Performance Analysis":{},"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["philosoph",{"_index":8384,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{},"Emotional Magic":{},"Collective Creativity":{},"The Lost Art of Being Lost":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"December 2021 In Review":{},"Winnie Lim on Rebuilding Oneself":{},"February 2022 In Review":{},"March 2022 In Review":{}},"tags":{}}],["philosophi",{"_index":2948,"title":{"Teaching by philosophy":{}},"content":{"I'm jealous of my dog":{},"Inventing - for the worse?":{},"2017 in books":{},"Reverse engineering a curriculum":{},"What if Seneca wasn't Nero's advisor?":{},"Creative Critical Thinking":{},"Minimalism and Tidying Up":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{"Teaching by philosophy":{},"What if Seneca wasn't Nero's advisor?":{},"Seneca on How to Live":{}}}],["philosophy](/post/teach",{"_index":3808,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["phish",{"_index":11160,"title":{},"content":{"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["phixion",{"_index":11105,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["phixion_",{"_index":10683,"title":{},"content":{"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["phone",{"_index":7019,"title":{},"content":{"Getting rid of trackers using LineageOS":{},"20 Years of Personal Cellphone History":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["photo",{"_index":5901,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"My Retro Desk/Gaming Setup in 2021":{},"The insanity of collecting retro games":{},"Flea Market Season":{},"The Fridge, Your Inoculation Room":{},"Water Levels As Public Data":{},"Pinball Machines in a Jenever Museum":{},"20 Years of Personal Cellphone History":{},"The HP Sprocket Mini Printer":{},"Are Digital Gardens Blogs?":{},"Questionable Game Publishing Methods":{},"Three Little GameCube Mods":{},"How To Enjoy Your Own Digital Music":{},"Visualizing Personal Data Takeouts":{},"March 2022 In Review":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["photograph",{"_index":5532,"title":{},"content":{"ITiCSE 2020: A Report":{},"486 Upgrade 1: Sound Blaster 16":{},"Very Old and Somewhat Old Mood Boards":{},"March 2022 In Review":{}},"tags":{}}],["photographi",{"_index":8759,"title":{},"content":{"20 Years of Personal Cellphone History":{}},"tags":{}}],["php",{"_index":5266,"title":{},"content":{"Page Building with Brizy in Wordpress":{},"Very Old and Somewhat Old Mood Boards":{}},"tags":{"Page Building with Brizy in Wordpress":{}}}],["physic",{"_index":1589,"title":{"Re: Is collecting physical games worth it?":{}},"content":{"Visual Studio 2012 for Eclipse users":{},"Teaching yourself to draw":{},"Computer Science learning pathways":{},"Programming: a Creative Cognitive Process":{},"Using Pandoc to publish a book":{},"The insanity of collecting retro games":{},"Nineties collecting nostalgia":{},"Re: Is collecting physical games worth it?":{},"Misconceptions about retro gamers":{},"Why I like Pawn Stars":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"On Selling a Self-published Book":{},"Ever-increasing Work Email Spam":{},"Power Usage Effectiveness":{},"Questionable Game Publishing Methods":{},"Migrating from Mailchimp to Listmonk":{},"Technical Knowledge Brews Creativity":{},"Minimalism and Tidying Up":{},"Once Upon a Time in Shaolin":{},"An Ad Leaflet QR Design Mistake":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["pi",{"_index":4580,"title":{"How to setup Pi-Hole on a Synology NAS":{}},"content":{"Over analoog en digitaal":{},"How to setup Pi-Hole on a Synology NAS":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["picasso",{"_index":9104,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["picasso'",{"_index":9459,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["pick",{"_index":3485,"title":{},"content":{"Teaching by philosophy":{},"Building an Athlon Windows 98 Retro PC":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Exploring the Go programming language":{},"Moon Logic":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"A Note About Footnotes":{},"Favorite Game Meme":{},"Questionable Game Publishing Methods":{},"November 2021 Meta Post":{},"Dark Age of Camelot in 2022":{},"A Factor Analysis For Dummies in R":{},"The Creative Techniques Toolbox":{},"Woke in Class":{},"2021 Year In Review":{},"January 2022 In Review":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["picki",{"_index":2621,"title":{},"content":{"Development principles in cooking":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Exploring the Go programming language":{}},"tags":{}}],["pickl",{"_index":9972,"title":{},"content":{"Migrating from Mailchimp to Listmonk":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["picoblaz",{"_index":4623,"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":4631,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["pictur",{"_index":2760,"title":{},"content":{"A quick look at 6 fountain pens":{},"Journaling in practice":{},"Take your time.":{},"Nineties collecting nostalgia":{},"Water Levels As Public Data":{},"On Selling a Self-published Book":{},"20 Years of Personal Cellphone History":{},"The HP Sprocket Mini Printer":{},"Questionable Game Publishing Methods":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Monthly Retro Screenshot Guessing Quiz":{},"The Creative Techniques Toolbox":{},"Winnie Lim on Rebuilding Oneself":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["piec",{"_index":1062,"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":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Programming on the Apple M1 Silicon":{},"The Productive Programmer on Mac":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"My Retro Desk/Gaming Setup in 2021":{},"Using Hugo to Launch a Gemini Capsule":{},"Flea Market Season":{},"On Tea Prices":{},"The Decline of Battery Life":{},"Emotional Magic":{},"Collective Creativity":{},"Dear Student":{},"Very Old and Somewhat Old Mood Boards":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"The Emperor of Lists":{},"2021 Donations":{},"Technical Knowledge Brews Creativity":{},"Why Mastodon Isn't Great For Serendipity":{},"The Creative Techniques Toolbox":{},"Leuchtturm Notebook Paper Quality":{},"True Backlink Support in Hugo":{}},"tags":{}}],["piet",{"_index":4827,"title":{},"content":{"De zin en onzin van conferenties":{},"Collective Creativity":{}},"tags":{}}],["pig",{"_index":3182,"title":{},"content":{"Take your time.":{}},"tags":{}}],["piholesetup1.jpg",{"_index":10742,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["pijn",{"_index":3384,"title":{},"content":{"Over entropie":{}},"tags":{}}],["pike",{"_index":6968,"title":{},"content":{"Exploring the AlterNet":{},"From Curiosity To Creativity":{}},"tags":{}}],["piketti",{"_index":4747,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["piketty'",{"_index":9757,"title":{},"content":{"Where Does It Stop?":{}},"tags":{}}],["pile",{"_index":5481,"title":{},"content":{"Designing websites with accessibility in mind":{},"Minimalism and Tidying Up":{}},"tags":{}}],["pilot",{"_index":2734,"title":{"The Pilot Capless: a stellar stealth pen":{}},"content":{"A quick look at 6 fountain pens":{},"The Pilot Capless: a stellar stealth pen":{},"Water Levels As Public Data":{}},"tags":{}}],["pin",{"_index":2357,"title":{},"content":{"Teaching yourself to draw":{},"A Ph.D. Thesis: Iteration 2":{},"Reviving an old 80486 PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["pinbal",{"_index":8614,"title":{"Pinball Machines in a Jenever Museum":{}},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["pine",{"_index":2821,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["ping",{"_index":7436,"title":{},"content":{"Host your own webmention receiver":{}},"tags":{}}],["pingback",{"_index":6950,"title":{"Fighting Webmention And Pingback Spam":{}},"content":{"Exploring the AlterNet":{},"The IndieWeb Mixed Bag":{},"Host your own webmention receiver":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["pink",{"_index":10915,"title":{},"content":{"Visualizing Personal Data Takeouts":{}},"tags":{}}],["pinker",{"_index":7603,"title":{},"content":{"Academese Gems":{}},"tags":{}}],["pinki",{"_index":6988,"title":{},"content":{"Exploring the AlterNet":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["pinnacl",{"_index":10185,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["pinterest",{"_index":2354,"title":{},"content":{"Teaching yourself to draw":{}},"tags":{}}],["pinto",{"_index":7640,"title":{},"content":{"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["pipe",{"_index":5194,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["pipelin",{"_index":5177,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["pipes/scss",{"_index":5197,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["piqu",{"_index":10619,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["piraci",{"_index":10808,"title":{},"content":{"Once Upon a Time in Shaolin":{}},"tags":{}}],["piranha",{"_index":8005,"title":{},"content":{"Book Number Fourteen":{}},"tags":{}}],["pirat",{"_index":10099,"title":{},"content":{"November 2021 Meta Post":{},"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["piss",{"_index":7124,"title":{},"content":{"The IndieWeb Mixed Bag":{}},"tags":{}}],["pit",{"_index":7678,"title":{},"content":{"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["pitch",{"_index":6410,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["pitfal",{"_index":740,"title":{},"content":{"undefined":{}},"tags":{}}],["piti",{"_index":8770,"title":{},"content":{"20 Years of Personal Cellphone History":{}},"tags":{}}],["pixea",{"_index":10104,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["pixel",{"_index":5612,"title":{},"content":{"Tracking and privacy concerns on websites":{},"3D Software Rendering on the GBA":{},"Moon Logic":{},"Favorite Game Meme":{}},"tags":{}}],["pizza",{"_index":962,"title":{},"content":{"Learning to become a baker":{},"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["pizza’",{"_index":439,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["pkm",{"_index":9569,"title":{},"content":{"Exporting Goodreads to Obsidian":{}},"tags":{}}],["plaat",{"_index":3395,"title":{},"content":{"Over entropie":{},"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"Over tijdsbesef":{},"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["plaats1",{"_index":1459,"title":{},"content":{"undefined":{}},"tags":{}}],["plaats2",{"_index":1460,"title":{},"content":{"undefined":{}},"tags":{}}],["place",{"_index":188,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"Faking domain logic":{},"Journaling in practice":{},"Nuts about local nuts":{},"IT Competences and Certificates":{},"Five reasons why agile and academia don't go together":{},"ITiCSE 2020: A Report":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Teaching students about coding trends":{},"The IndieWeb Mixed Bag":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Flea Market Season":{},"Software Engineering Is Not Engineering":{},"How Much Should I Spend On Magic The Gathering":{},"Reducing Workflow Load Facilitates Writing":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Pinball Machines in a Jenever Museum":{},"Are You In The System Yet, Sir?":{},"Dear Student":{},"Ever-increasing Work Email Spam":{},"The Lost Art of Being Lost":{},"The Emperor of Lists":{},"From Analog Notebook to Digital Vault":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Dark Age of Camelot in 2022":{},"Re: Writing A Book Is Nonesense":{},"2021 Year In Review":{},"On Trying To Sell A Laptop":{},"Expiry Dates On Journals":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["placehold",{"_index":5515,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["placement",{"_index":6412,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{},"Pinball Machines in a Jenever Museum":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["plagu",{"_index":10551,"title":{},"content":{"The Creative Techniques Toolbox":{},"What a Night Cam Is Good For":{}},"tags":{}}],["plain",{"_index":5336,"title":{},"content":{"Using Pandoc to publish a book":{},"My Kotlin Rose-Tinted Glasses Broke":{}},"tags":{}}],["plainli",{"_index":10649,"title":{},"content":{"Woke in Class":{}},"tags":{}}],["plan",{"_index":2806,"title":{"Always have a Diaster Recovery Plan":{}},"content":{"Journaling in practice":{},"IT Competences and Certificates":{},"DIY: Hosting stuff on your own VPS":{},"Using Pandoc to publish a book":{},"Combining async with generators in Node 11":{},"Thoughts on collaboration in education":{},"The Internet Killed Secrets in Games":{},"Always have a Diaster Recovery Plan":{},"Exploring the Go programming language":{},"Host your own webmention receiver":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Pinball Machines in a Jenever Museum":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Technical Knowledge Brews Creativity":{},"How to setup Pi-Hole on a Synology NAS":{},"January 2022 In Review":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["plan\"_",{"_index":6920,"title":{},"content":{"Always have a Diaster Recovery Plan":{}},"tags":{}}],["plane",{"_index":8444,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{},"The Lost Art of Being Lost":{}},"tags":{}}],["planeswalk",{"_index":8143,"title":{},"content":{"How Much Should I Spend On Magic The Gathering":{}},"tags":{}}],["plann",{"_index":8426,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["plannen",{"_index":3579,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["plant",{"_index":2421,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Book Number Fourteen":{},"Cheese cheese cheese cheese cheese":{},"Are Digital Gardens Blogs?":{},"Constraint-based Creativity":{}},"tags":{}}],["plant](https://en.wikipedia.org/wiki/allspic",{"_index":9868,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["plaqu",{"_index":8446,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["plasma](https://web.archive.org/web/20050323094702/http://www.musicplasma.com",{"_index":10693,"title":{},"content":{"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["plastic",{"_index":2989,"title":{},"content":{"Inventing - for the worse?":{},"Nineties collecting nostalgia":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"Three Little GameCube Mods":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["plastieken",{"_index":5022,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["plateau",{"_index":2831,"title":{},"content":{"Nuts about local nuts":{}},"tags":{}}],["platform",{"_index":1505,"title":{"Productivity Tools on all platforms":{}},"content":{"Visual Studio 2012 for Eclipse users":{},"Productivity Tools on all platforms":{},"Unit Testing PicoBlaze Assembly files":{},"Project Warlock: About Perseverance":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Using Hugo to Launch a Gemini Capsule":{},"Double-dipping and Market Prices":{},"Reducing Workflow Load Facilitates Writing":{},"Questionable Game Publishing Methods":{},"Re: Writing A Book Is Nonesense":{},"Woke in Class":{},"Expiry Dates On Journals":{},"None Of My Best Friends Are Content Creators":{},"True Backlink Support in Hugo":{}},"tags":{}}],["platformi",{"_index":10765,"title":{},"content":{"January 2022 In Review":{}},"tags":{}}],["platgeklopt",{"_index":3916,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["platinum",{"_index":2736,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["plato",{"_index":9509,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["plato'",{"_index":8408,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["play",{"_index":2645,"title":{"YouTube Play Image Links in Hugo":{},"Why I Play Games (And So Should You)":{}},"content":{"Healing creative scars":{},"I'm jealous of my dog":{},"Project Warlock: About Perseverance":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"486 Upgrade 1: Sound Blaster 16":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"Personal Desktop Screenshots of Olde":{},"The Internet Killed Secrets in Games":{},"You Shouldn't Use Spotify":{},"Discord killed support for WinXP":{},"On Manuscript Review Procedures":{},"Nineties collecting nostalgia":{},"Belgium - Portugal: 5 - 2":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"Double-dipping and Market Prices":{},"How Much Should I Spend On Magic The Gathering":{},"Rules of a Creator's Life":{},"The Decline of Battery Life":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Emotional Magic":{},"Pinball Machines in a Jenever Museum":{},"Thirty-Six":{},"20 Years of Personal Cellphone History":{},"Favorite Game Meme":{},"The HP Sprocket Mini Printer":{},"A 5.25\" Gobliins 2 Surprise":{},"The Emperor of Lists":{},"November 2021 Meta Post":{},"Three Little GameCube Mods":{},"Dark Age of Camelot in 2022":{},"December 2021 In Review":{},"Generating a Blogroll With OPML in Hugo":{},"Why I Play Games (And So Should You)":{},"How to setup Pi-Hole on a Synology NAS":{},"January 2022 In Review":{},"Once Upon a Time in Shaolin":{},"What a Night Cam Is Good For":{},"Choosing an Audio Codec":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"March 2022 In Review":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["playabl",{"_index":8069,"title":{},"content":{"Double-dipping and Market Prices":{}},"tags":{}}],["playback",{"_index":11285,"title":{},"content":{"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["player",{"_index":6271,"title":{},"content":{"The Internet Killed Secrets in Games":{},"You Shouldn't Use Spotify":{},"The first Dutch Obsidian meetup":{},"Belgium - Portugal: 5 - 2":{},"How Much Should I Spend On Magic The Gathering":{},"Emotional Magic":{},"20 Years of Personal Cellphone History":{},"How Not To Do A Remaster":{},"Dark Age of Camelot in 2022":{},"How To Enjoy Your Own Digital Music":{},"Choosing an Audio Codec":{}},"tags":{}}],["player'",{"_index":10289,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["playfield",{"_index":8652,"title":{},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["playground",{"_index":7513,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["playground](https://play.kotlinlang.org",{"_index":8580,"title":{},"content":{"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{}}],["playlist",{"_index":9710,"title":{},"content":{"How Not To Do A Remaster":{}},"tags":{}}],["playtest",{"_index":8654,"title":{},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["playthrough",{"_index":8289,"title":{},"content":{"The Decline of Battery Life":{}},"tags":{}}],["playtim",{"_index":8275,"title":{},"content":{"The Decline of Battery Life":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["pleas",{"_index":7996,"title":{},"content":{"Apple's App Store Design Mistake":{},"Are You In The System Yet, Sir?":{},"Dear Student":{},"Questionable Game Publishing Methods":{},"Allspice Is Not All Spice":{},"On Trying To Sell A Laptop":{},"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["pleasant",{"_index":5184,"title":{},"content":{"Hugo Extended: More static site processing power!":{},"What is Creativity in Software Engineering?":{},"Discord killed support for WinXP":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["pleasur",{"_index":5889,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"Flea Market Season":{},"Reducing Workflow Load Facilitates Writing":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["pleasures](https://nerdlypleasures.blogspot.com/2012/07/sound",{"_index":5873,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["pleasures](https://nerdlypleasures.blogspot.com/2014/10/batteri",{"_index":8290,"title":{},"content":{"The Decline of Battery Life":{}},"tags":{}}],["plenti",{"_index":1314,"title":{},"content":{"Unit Testing Stored Procedures":{},"A Ph.D. Thesis: Iteration 2":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["plenty?ac=1&from_search=tru",{"_index":2609,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["plenty](https://www.goodreads.com/book/show/8086216",{"_index":2608,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["plethora",{"_index":4394,"title":{},"content":{"A Decade in the Software Engineering industry":{},"Programming: a Creative Cognitive Process":{},"Technical Knowledge Brews Creativity":{}},"tags":{}}],["plichtbewust",{"_index":4218,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["pling",{"_index":4517,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["plod",{"_index":8671,"title":{},"content":{"My Kotlin Rose-Tinted Glasses Broke":{}},"tags":{}}],["plot",{"_index":3940,"title":{},"content":{"Over de inflatie van intellect":{},"Technical Knowledge Brews Creativity":{},"Natural Gas Prices and The Energy Market":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{}},"tags":{}}],["plots",{"_index":4972,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["plow",{"_index":2300,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{},"What is Creativity in Software Engineering?":{}},"tags":{}}],["plu",{"_index":1201,"title":{},"content":{"undefined":{},"Thinking in terms of objects":{},"Reviving an old 80486 PC":{},"How to write academic papers in Markdown":{},"Exploring the AlterNet":{}},"tags":{}}],["plug",{"_index":1754,"title":{},"content":{"Metaprogramming instead of duplication":{},"486 Upgrade 2: The SD Card HDD":{},"The Productive Programmer on Mac":{},"Getting rid of trackers using LineageOS":{},"The Fridge, Your Inoculation Room":{},"Three Little GameCube Mods":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["plugin",{"_index":1499,"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":{},"From Analog Notebook to Digital Vault":{},"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["plumb",{"_index":4300,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["plunder",{"_index":10565,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["plus(numb",{"_index":3310,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["plymouth",{"_index":9694,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["pm",{"_index":268,"title":{},"content":{"On finding your inner zen in big cities":{},"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["pm2.jpg",{"_index":10186,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["png",{"_index":2130,"title":{},"content":{"Webdriver Exception Handling":{},"YouTube Play Image Links in Hugo":{}},"tags":{}}],["pnp.html",{"_index":10215,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["po",{"_index":8261,"title":{},"content":{"Rules of a Creator's Life":{}},"tags":{}}],["pocket",{"_index":6857,"title":{"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"content":{"You Shouldn't Use Spotify":{},"Book Number Fourteen":{},"How Much Should I Spend On Magic The Gathering":{},"The Decline of Battery Life":{},"Questionable Game Publishing Methods":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["pocket](https://www.analogue.co/pocket",{"_index":7747,"title":{},"content":{"Misconceptions about retro gamers":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["pod",{"_index":3176,"title":{},"content":{"Take your time.":{}},"tags":{}}],["podcast",{"_index":9899,"title":{},"content":{"2021 Donations":{},"Minimalism and Tidying Up":{}},"tags":{}}],["podcast](https://retronauts.com",{"_index":11528,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["poet",{"_index":9072,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["poetri",{"_index":10360,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["pog",{"_index":7484,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["poge",{"_index":659,"title":{},"content":{"undefined":{},"Over entropie":{}},"tags":{}}],["pogingen",{"_index":3355,"title":{},"content":{"Over entropie":{}},"tags":{}}],["pogo",{"_index":8926,"title":{},"content":{"The HP Sprocket Mini Printer":{}},"tags":{}}],["pogs.html#slammingtechniqu",{"_index":7510,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["poi",{"_index":3558,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["poincar",{"_index":9823,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["poincaré'",{"_index":9826,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["point",{"_index":1965,"title":{},"content":{"Faking domain logic":{},"Are you handing over enough when inspiring someone?":{},"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":{},"ITiCSE 2020: A Report":{},"3D Software Rendering on the GBA":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"The Internet Killed Secrets in Games":{},"On Manuscript Review Procedures":{},"Host your own webmention receiver":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"Double-dipping and Market Prices":{},"The Fridge, Your Inoculation Room":{},"Water Levels As Public Data":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Cheese cheese cheese cheese cheese":{},"Kotlin Is Java 2.0, But It's Still Java":{},"Creativity Self-Assessment Is Nonsense":{},"A Triumph For Blogging":{},"Are Digital Gardens Blogs?":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{},"A 5.25\" Gobliins 2 Surprise":{},"Constraint-based Creativity":{},"Creative Critical Thinking":{},"How Not To Do A Remaster":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"Natural Gas Prices and The Energy Market":{},"Why I Play Games (And So Should You)":{},"Woke in Class":{},"An Ad Leaflet QR Design Mistake":{},"Creativity Equals Messy Code?":{},"True Backlink Support in Hugo":{}},"tags":{}}],["pointcut",{"_index":2124,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["pointer",{"_index":520,"title":{},"content":{"undefined":{},"Domain Driven Design in C":{},"Teaching Object-Oriented design using the GBA":{},"3D Software Rendering on the GBA":{},"Dear Student":{}},"tags":{}}],["pointil",{"_index":9089,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["pointless",{"_index":6476,"title":{},"content":{"Thoughts on Bullshit Jobs":{}},"tags":{}}],["points_",{"_index":8451,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["poison",{"_index":2950,"title":{},"content":{"I'm jealous of my dog":{},"What a Night Cam Is Good For":{}},"tags":{}}],["poke",{"_index":8522,"title":{},"content":{"Emotional Magic":{},"Are Digital Gardens Blogs?":{},"Natural Gas Prices and The Energy Market":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["polaroid",{"_index":8925,"title":{},"content":{"The HP Sprocket Mini Printer":{}},"tags":{}}],["polici",{"_index":10747,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["polish",{"_index":5342,"title":{},"content":{"Project Warlock: About Perseverance":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["polit",{"_index":8385,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{},"Favorite Game Meme":{},"Constraint-based Creativity":{},"Seneca on How to Live":{},"How To Enjoy Your Own Digital Music":{},"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["politician",{"_index":7699,"title":{},"content":{"Flea Market Season":{},"Collective Creativity":{},"Creative Critical Thinking":{}},"tags":{}}],["pollan",{"_index":8610,"title":{},"content":{"On Selling a Self-published Book":{}},"tags":{}}],["pollan'",{"_index":5294,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["pollin",{"_index":8856,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["pollut",{"_index":10129,"title":{},"content":{"Seneca on How to Live":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["polybiu",{"_index":9056,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["polyfil",{"_index":5468,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["polyglot",{"_index":7216,"title":{},"content":{"Exploring the Go programming language":{},"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{}}],["pommes_",{"_index":9453,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["ponder",{"_index":2919,"title":{},"content":{"I'm jealous of my dog":{},"What if Seneca wasn't Nero's advisor?":{},"A Creative State of Mind":{},"Seneca on How to Live":{}},"tags":{}}],["poof",{"_index":3844,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["pool",{"_index":228,"title":{},"content":{"On finding your inner zen in big cities":{},"Exploring the Go programming language":{},"How Much Should I Spend On Magic The Gathering":{}},"tags":{}}],["poor",{"_index":6923,"title":{},"content":{"Always have a Diaster Recovery Plan":{},"A Factor Analysis For Dummies in R":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["pop",{"_index":2323,"title":{},"content":{"Teaching yourself to draw":{},"Hiding Code Complexity":{},"A journey through the history of webdesign":{},"Using Hugo to Launch a Gemini Capsule":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Are You In The System Yet, Sir?":{},"How Not To Do A Remaster":{},"A Personal Intro To Rough Hip-Hop":{},"February 2022 In Review":{}},"tags":{}}],["popliedj",{"_index":5051,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["popul",{"_index":10554,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["populair",{"_index":3889,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["popular",{"_index":1312,"title":{},"content":{"Unit Testing Stored Procedures":{},"Are you handing over enough when inspiring someone?":{},"I'm jealous of my dog":{},"486 Upgrade 2: The SD Card HDD":{},"A journey through the history of webdesign":{},"Building a Core2Duo Windows XP Retro PC":{},"Personal Desktop Screenshots of Olde":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The insanity of collecting retro games":{},"Teaching students about coding trends":{},"Stop limiting yourself to JS in browsers":{},"Social Debt in Development Teams":{},"The HP Sprocket Mini Printer":{},"Seneca on How to Live":{},"Why Mastodon Isn't Great For Serendipity":{},"Re: Writing A Book Is Nonesense":{},"Why I Play Games (And So Should You)":{},"How To Enjoy Your Own Digital Music":{},"February 2022 In Review":{},"Fighting Webmention And Pingback Spam":{},"The Death Of The Nike+ SportWatch":{},"True Backlink Support in Hugo":{}},"tags":{}}],["population.com/r/daoc",{"_index":10285,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["popup",{"_index":9001,"title":{},"content":{"Are Digital Gardens Blogs?":{}},"tags":{}}],["port",{"_index":5147,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"3D Software Rendering on the GBA":{},"486 Upgrade 1: Sound Blaster 16":{},"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Exploring the Go programming language":{},"Using Hugo to Launch a Gemini Capsule":{},"A Creative State of Mind":{},"Three Little GameCube Mods":{},"December 2021 In Review":{},"How to setup Pi-Hole on a Synology NAS":{},"My Retrocomputing Projects For 2022":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["portabl",{"_index":11183,"title":{},"content":{"Choosing an Audio Codec":{}},"tags":{}}],["portal",{"_index":6273,"title":{},"content":{"The Internet Killed Secrets in Games":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["portion",{"_index":5243,"title":{},"content":{"Page Building with Brizy in Wordpress":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Thoughts on Bullshit Jobs":{},"You Shouldn't Use Spotify":{},"Always have a Diaster Recovery Plan":{},"Questionable Game Publishing Methods":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["portrait",{"_index":9810,"title":{},"content":{"A Creative State of Mind":{}},"tags":{}}],["portray",{"_index":9134,"title":{},"content":{"Ditch Scrum, Organize As You See Fit":{},"A Creative State of Mind":{},"Seneca on How to Live":{},"Why I Play Games (And So Should You)":{}},"tags":{}}],["portug",{"_index":7632,"title":{"Belgium - Portugal: 5 - 2":{}},"content":{},"tags":{}}],["pose",{"_index":2709,"title":{},"content":{"A quick look at 6 fountain pens":{},"Ditch Scrum, Organize As You See Fit":{},"Creative Critical Thinking":{},"Where Does It Stop?":{}},"tags":{}}],["posh",{"_index":434,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["posit",{"_index":3265,"title":{},"content":{"Death to pseudocode?":{},"Using Pandoc to publish a book":{},"Project Warlock: About Perseverance":{},"My Retro Desk/Gaming Setup in 2021":{},"Stop limiting yourself to JS in browsers":{},"Thirty-Six":{},"Very Old and Somewhat Old Mood Boards":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Why I Play Games (And So Should You)":{},"Equality in Game Credits":{}},"tags":{}}],["positive/neg",{"_index":9176,"title":{},"content":{"Ever-increasing Work Email Spam":{}},"tags":{}}],["positives](https://obsolete29.com/posts/2021/10/19/on",{"_index":9918,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["positivisten",{"_index":3446,"title":{},"content":{"Over entropie":{}},"tags":{}}],["poss",{"_index":7160,"title":{},"content":{"The IndieWeb Mixed Bag":{},"Exporting Goodreads to Obsidian":{}},"tags":{}}],["posse](https://indieweb.org/poss",{"_index":7154,"title":{},"content":{"The IndieWeb Mixed Bag":{}},"tags":{}}],["possess",{"_index":3010,"title":{},"content":{"Inventing - for the worse?":{},"Water Levels As Public Data":{},"Minimalism and Tidying Up":{}},"tags":{}}],["possibl",{"_index":455,"title":{},"content":{"No, vegetarians do not eat fish!":{},"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":{},"Teaching yourself to draw":{},"Inventing - for the worse?":{},"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":{},"3D Software Rendering on the GBA":{},"The Internet Killed Secrets in Games":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"My Retro Desk/Gaming Setup in 2021":{},"Stop limiting yourself to JS in browsers":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"Nineties collecting nostalgia":{},"Academese Gems":{},"The Fridge, Your Inoculation Room":{},"On Selling a Self-published Book":{},"Ever-increasing Work Email Spam":{},"The Lost Art of Being Lost":{},"Where Does It Stop?":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"A Factor Analysis For Dummies in R":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{}},"tags":{}}],["post",{"_index":168,"title":{"November 2021 Meta Post":{}},"content":{"Ending your day with happy thoughts":{},"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"Enhancing the builder pattern with closures":{},"Bye autotools hello Scons":{},"Webdriver Exception Handling":{},"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"Take your time.":{},"Over Onmiddellijke Voldoening":{},"Five reasons why agile and academia don't go together":{},"Page Building with Brizy in Wordpress":{},"Combining async with generators in Node 11":{},"Designing websites with accessibility in mind":{},"486 Upgrade 1: Sound Blaster 16":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"What is Creativity in Software Engineering?":{},"My Retro Desk/Gaming Setup in 2021":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"Always have a Diaster Recovery Plan":{},"Exploring the AlterNet":{},"Lousy Wordpress Hacking Attempts detected":{},"The IndieWeb Mixed Bag":{},"Host your own webmention receiver":{},"Nineties collecting nostalgia":{},"Social Debt in Development Teams":{},"Reducing Workflow Load Facilitates Writing":{},"What if Seneca wasn't Nero's advisor?":{},"Cheese cheese cheese cheese cheese":{},"Thirty-Six":{},"20 Years of Personal Cellphone History":{},"Favorite Game Meme":{},"A Triumph For Blogging":{},"Are Digital Gardens Blogs?":{},"A Treatise on Leavened Waffles":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"From Analog Notebook to Digital Vault":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"Why Mastodon Isn't Great For Serendipity":{},"December 2021 In Review":{},"A Factor Analysis For Dummies in R":{},"Natural Gas Prices and The Energy Market":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"2021 Year In Review":{},"How To Enjoy Your Own Digital Music":{},"How to setup Pi-Hole on a Synology NAS":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"Water Usage and Prices":{},"A Personal Intro To Rough Hip-Hop":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"Cool Things People Do With Their Blogs":{},"Fighting Webmention And Pingback Spam":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"True Backlink Support in Hugo":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["post/2020/06/combin",{"_index":5424,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["post](/post/2020/09/reviv",{"_index":5756,"title":{},"content":{"An am486 Performance Analysis":{}},"tags":{}}],["post](https://chasingmailboxes.com/2021/10/05/coffeeneur",{"_index":9927,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["post](https://jefklakscodex.com/articles/features/e3",{"_index":7945,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["post](https://rubenerd.com/favourit",{"_index":8850,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["post](https://rubenerd.com/inlin",{"_index":7932,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["post](https://stackoverflow.com/questions/5827612/nod",{"_index":5428,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["postbod",{"_index":3402,"title":{},"content":{"Over entropie":{}},"tags":{}}],["poster",{"_index":9891,"title":{},"content":{"2021 Donations":{},"November 2021 Meta Post":{}},"tags":{}}],["posteriori",{"_index":3303,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["postfix",{"_index":9989,"title":{},"content":{"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["postgr",{"_index":5125,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["posthum",{"_index":11222,"title":{},"content":{"Expiry Dates On Journals":{}},"tags":{}}],["postmodern",{"_index":2249,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["postprocess",{"_index":1900,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["posts](/post/2020/11/win98",{"_index":8223,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["posts](/post/2021",{"_index":10659,"title":{},"content":{"2021 Year In Review":{}},"tags":{}}],["posts](/post/2022/#mar",{"_index":11468,"title":{},"content":{"March 2022 In Review":{}},"tags":{}}],["postscript",{"_index":11250,"title":{},"content":{"February 2022 In Review":{}},"tags":{}}],["postsharp",{"_index":2126,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["postur",{"_index":7894,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["pot",{"_index":9949,"title":{},"content":{"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["potato",{"_index":7482,"title":{},"content":{"Nineties collecting nostalgia":{}},"tags":{}}],["potato](https://www.economist.com/leaders/2022/01/01/video",{"_index":10593,"title":{},"content":{"Why I Play Games (And So Should You)":{}},"tags":{}}],["potenti",{"_index":5733,"title":{},"content":{"Thoughts on collaboration in education":{},"On Manuscript Review Procedures":{},"Creativity Self-Assessment Is Nonsense":{},"The Lost Art of Being Lost":{},"On Trying To Sell A Laptop":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["potj",{"_index":4894,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["pour",{"_index":8345,"title":{},"content":{"Water Levels As Public Data":{},"How Not To Do A Remaster":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["powder",{"_index":9393,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["power",{"_index":728,"title":{"Hugo Extended: More static site processing power!":{},"Power Usage Effectiveness":{}},"content":{"undefined":{},"How to teach kids to program":{},"Productivity Tools on all platforms":{},"Page Building with Brizy in Wordpress":{},"Thoughts on collaboration in education":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"The Internet Killed Secrets in Games":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The Productive Programmer on Mac":{},"My Retro Desk/Gaming Setup in 2021":{},"The first Dutch Obsidian meetup":{},"Academese Gems":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"How Much Should I Spend On Magic The Gathering":{},"The HP Sprocket Mini Printer":{},"Collective Creativity":{},"Dear Student":{},"Power Usage Effectiveness":{},"The Lost Art of Being Lost":{},"A Treatise on Leavened Waffles":{},"Constraint-based Creativity":{},"Three Little GameCube Mods":{},"Minimalism and Tidying Up":{},"Re: Writing A Book Is Nonesense":{},"Thoughts On Home NAS Systems":{},"Choosing an Audio Codec":{},"Fighting Webmention And Pingback Spam":{},"True Backlink Support in Hugo":{}},"tags":{}}],["power.jpg",{"_index":5982,"title":{},"content":{"Reviving an old 80486 PC":{}},"tags":{}}],["powerhous",{"_index":2781,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["pr",{"_index":6245,"title":{},"content":{"Personal Desktop Screenshots of Olde":{}},"tags":{}}],["prachtig",{"_index":3348,"title":{},"content":{"Over entropie":{}},"tags":{}}],["practic",{"_index":88,"title":{"Journaling in practice":{}},"content":{"Ending your day with happy thoughts":{},"Unit Testing Stored Procedures":{},"Teaching yourself to draw":{},"Development principles in cooking":{},"Healing creative scars":{},"I'm jealous of my dog":{},"Take your time.":{},"Concentrating on serendipitous creativity":{},"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":{},"An am486 Performance Analysis":{},"Digitizing journals using DEVONthink":{},"What is Creativity in Software Engineering?":{},"You Shouldn't Use Spotify":{},"The first Dutch Obsidian meetup":{},"Software Engineering Is Not Engineering":{},"The Pilot Capless: a stellar stealth pen":{},"Book Number Fourteen":{},"Creativity Self-Assessment Is Nonsense":{},"The HP Sprocket Mini Printer":{},"Dear Student":{},"Ever-increasing Work Email Spam":{},"A Treatise on Leavened Waffles":{},"Where Does It Stop?":{},"Academic Lineage":{}},"tags":{}}],["practice_",{"_index":7808,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["practician",{"_index":2519,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["practicum",{"_index":3847,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["practition",{"_index":4679,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{},"IT Competences and Certificates":{},"Software Engineering Is Not Engineering":{}},"tags":{}}],["practitioner.html",{"_index":7390,"title":{},"content":{"On Manuscript Review Procedures":{}},"tags":{}}],["practitioner](https://www.goodreads.com/book/show/134454",{"_index":7785,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["practitioner_",{"_index":7789,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["pragmat",{"_index":10130,"title":{},"content":{"Seneca on How to Live":{}},"tags":{}}],["praktijk",{"_index":4883,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["praktisch",{"_index":3637,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"De zin en onzin van conferenties":{}},"tags":{}}],["pray",{"_index":7034,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["pre",{"_index":786,"title":{},"content":{"undefined":{},"A journey through the history of webdesign":{},"What is Creativity in Software Engineering?":{},"Discord killed support for WinXP":{},"Stop limiting yourself to JS in browsers":{},"On Manuscript Review Procedures":{},"Re: Is collecting physical games worth it?":{},"On Tea Prices":{},"Questionable Game Publishing Methods":{},"February 2022 In Review":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["preambl",{"_index":5299,"title":{},"content":{"Using Pandoc to publish a book":{}},"tags":{}}],["precaut",{"_index":7732,"title":{},"content":{"Flea Market Season":{}},"tags":{}}],["preciou",{"_index":7915,"title":{},"content":{"Why I like Pawn Stars":{},"The Emperor of Lists":{},"How Not To Do A Remaster":{},"A Creative State of Mind":{}},"tags":{}}],["precipit",{"_index":8341,"title":{},"content":{"Water Levels As Public Data":{}},"tags":{}}],["precis",{"_index":8687,"title":{},"content":{"My Kotlin Rose-Tinted Glasses Broke":{},"Constraint-based Creativity":{},"From Curiosity To Creativity":{}},"tags":{}}],["predecessor",{"_index":6330,"title":{},"content":{"Win98 Upgrade: Sound Blaster Audigy":{},"Double-dipping and Market Prices":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["predefin",{"_index":1347,"title":{},"content":{"Unit Testing Stored Procedures":{}},"tags":{}}],["predic",{"_index":1214,"title":{},"content":{"undefined":{}},"tags":{}}],["predict",{"_index":7663,"title":{},"content":{"Belgium - Portugal: 5 - 2":{}},"tags":{}}],["predomin",{"_index":9048,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["prefer",{"_index":5128,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"Building an Athlon Windows 98 Retro PC":{},"Stop limiting yourself to JS in browsers":{},"On Tea Prices":{},"A Note About Footnotes":{},"Questionable Game Publishing Methods":{},"A Factor Analysis For Dummies in R":{},"Thoughts On Home NAS Systems":{},"A Personal Intro To Gentle Hip-Hop":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["prefix",{"_index":1328,"title":{},"content":{"Unit Testing Stored Procedures":{},"A Decade in the Software Engineering industry":{}},"tags":{}}],["pregnant",{"_index":8505,"title":{},"content":{"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["prejudic",{"_index":11018,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["preload",{"_index":2097,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{}},"tags":{}}],["preloaders](https://icons8.com/preload",{"_index":7981,"title":{},"content":{"Apple's App Store Design Mistake":{}},"tags":{}}],["prematur",{"_index":1245,"title":{},"content":{"undefined":{},"February 2022 In Review":{}},"tags":{}}],["premis",{"_index":6590,"title":{},"content":{"The Productive Programmer on Mac":{},"Academese Gems":{},"Pinball Machines in a Jenever Museum":{},"Collective Creativity":{},"Academic Lineage":{}},"tags":{}}],["premium",{"_index":5256,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["preoccupi",{"_index":3158,"title":{},"content":{"Take your time.":{},"Creative Critical Thinking":{}},"tags":{}}],["prepar",{"_index":2596,"title":{},"content":{"Development principles in cooking":{},"Computer Science learning pathways":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Getting rid of trackers using LineageOS":{},"Cheese cheese cheese cheese cheese":{},"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{}}],["prepend",{"_index":10376,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["presenc",{"_index":3073,"title":{},"content":{"2017 in books":{},"Dear Student":{},"Creative Critical Thinking":{},"2021 Year In Review":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["present",{"_index":2434,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"A samurai learning mindset":{},"I'm jealous of my dog":{},"2017 in books":{},"Death to pseudocode?":{},"ITiCSE 2020: A Report":{},"Thoughts on collaboration in education":{},"Reviving an old 80486 PC":{},"Thoughts on Bullshit Jobs":{},"What is Creativity in Software Engineering?":{},"Software Engineering Is Not Engineering":{},"Emotional Magic":{},"Pinball Machines in a Jenever Museum":{},"Thirty-Six":{},"Collective Creativity":{},"Power Usage Effectiveness":{},"Creative Critical Thinking":{},"Where Does It Stop?":{},"A Creative State of Mind":{},"2021 Year In Review":{},"Visualizing Personal Data Takeouts":{},"Creativity Equals Messy Code?":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["presentati",{"_index":4900,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["presentation](https://docs.google.com/document/d/1re3lyaalscz49189xigquvjqlmpe9uofleyz8y7mjue/edit#heading=h.ygj23kjvy5z",{"_index":9615,"title":{},"content":{"From Analog Notebook to Digital Vault":{}},"tags":{}}],["presenteert",{"_index":4887,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["presenteren",{"_index":3668,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{},"De zin en onzin van conferenties":{}},"tags":{}}],["preserv",{"_index":1485,"title":{},"content":{"undefined":{},"Lousy Wordpress Hacking Attempts detected":{},"Academese Gems":{},"What if Seneca wasn't Nero's advisor?":{},"The Emperor of Lists":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["preset",{"_index":5227,"title":{},"content":{"Hugo Extended: More static site processing power!":{}},"tags":{}}],["press",{"_index":2853,"title":{},"content":{"Nuts about local nuts":{},"Tracking and privacy concerns on websites":{},"486 Upgrade 2: The SD Card HDD":{},"Teaching students about coding trends":{},"On Manuscript Review Procedures":{},"The Pilot Capless: a stellar stealth pen":{},"Apple's App Store Design Mistake":{},"What if Seneca wasn't Nero's advisor?":{},"On Selling a Self-published Book":{},"The HP Sprocket Mini Printer":{},"A Triumph For Blogging":{},"Questionable Game Publishing Methods":{},"The Lost Art of Being Lost":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"Expiry Dates On Journals":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["pressur",{"_index":3230,"title":{},"content":{"Concentrating on serendipitous creativity":{},"Water Levels As Public Data":{},"Why I Play Games (And So Should You)":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["presum",{"_index":10575,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["pretend",{"_index":6481,"title":{},"content":{"Thoughts on Bullshit Jobs":{},"Exploring the Go programming language":{},"On Selling a Self-published Book":{},"Creative Critical Thinking":{}},"tags":{}}],["pretti",{"_index":2043,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"Inventing - for the worse?":{},"Death to pseudocode?":{},"Domain Driven Design in C":{},"Thoughts on Bullshit Jobs":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Moon Logic":{},"Apple's App Store Design Mistake":{},"Are You In The System Yet, Sir?":{},"Power Usage Effectiveness":{},"The Emperor of Lists":{},"From Curiosity To Creativity":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Dark Age of Camelot in 2022":{},"Why I Play Games (And So Should You)":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["preval",{"_index":8553,"title":{},"content":{"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{}}],["prevent",{"_index":6738,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Very Old and Somewhat Old Mood Boards":{},"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["preview",{"_index":5262,"title":{},"content":{"Page Building with Brizy in Wordpress":{},"Reducing Workflow Load Facilitates Writing":{},"November 2021 Meta Post":{}},"tags":{}}],["preview.mp4",{"_index":6646,"title":{},"content":{"What is Creativity in Software Engineering?":{}},"tags":{}}],["previou",{"_index":152,"title":{},"content":{"Ending your day with happy thoughts":{},"Visual Studio 2012 for Eclipse users":{},"Integration Testing with SQLite":{},"Webdriver Exception Handling":{},"Building an Athlon Windows 98 Retro PC":{},"What is Creativity in Software Engineering?":{},"Flea Market Season":{},"The Fridge, Your Inoculation Room":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"December 2021 In Review":{},"2021 Year In Review":{},"January 2022 In Review":{},"Academic Lineage":{},"February 2022 In Review":{},"Leuchtturm Notebook Paper Quality":{},"Cool Things People Do With Their Blogs":{},"March 2022 In Review":{}},"tags":{}}],["previous",{"_index":9124,"title":{},"content":{"Dear Student":{},"The Lost Art of Being Lost":{}},"tags":{}}],["previous](https://people.cs.kuleuven.be/~wouter.groeneveld/slr",{"_index":4924,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["pri",{"_index":7957,"title":{},"content":{"YouTube Play Image Links in Hugo":{},"The HP Sprocket Mini Printer":{},"Three Little GameCube Mods":{},"Dark Age of Camelot in 2022":{},"Expiry Dates On Journals":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["price",{"_index":2756,"title":{"Double-dipping and Market Prices":{},"On Tea Prices":{},"Natural Gas Prices and The Energy Market":{},"Water Usage and Prices":{}},"content":{"A quick look at 6 fountain pens":{},"Domain Driven Design in C":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Digitizing journals using DEVONthink":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The insanity of collecting retro games":{},"Re: Is collecting physical games worth it?":{},"Flea Market Season":{},"The Pilot Capless: a stellar stealth pen":{},"Double-dipping and Market Prices":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"Very Old and Somewhat Old Mood Boards":{},"Questionable Game Publishing Methods":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Natural Gas Prices and The Energy Market":{},"On Trying To Sell A Laptop":{},"Thoughts On Home NAS Systems":{},"Water Usage and Prices":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["prices.com",{"_index":7550,"title":{},"content":{"Re: Is collecting physical games worth it?":{}},"tags":{}}],["prices.com](https://eshop",{"_index":7549,"title":{},"content":{"Re: Is collecting physical games worth it?":{}},"tags":{}}],["prices](https://www.reddit.com/r/gamecollecting/comments/8jmiwi/how_metal_jesus_rocks_affects_retro_video_gam",{"_index":6797,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["pricetag",{"_index":9280,"title":{},"content":{"Questionable Game Publishing Methods":{}},"tags":{}}],["pricey",{"_index":10216,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["prij",{"_index":4074,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["primari",{"_index":6512,"title":{},"content":{"Digitizing journals using DEVONthink":{},"Re: Is collecting physical games worth it?":{}},"tags":{}}],["primarili",{"_index":6855,"title":{},"content":{"You Shouldn't Use Spotify":{},"On Manuscript Review Procedures":{},"Re: Is collecting physical games worth it?":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["prime",{"_index":8944,"title":{},"content":{"The HP Sprocket Mini Printer":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["primit",{"_index":790,"title":{},"content":{"undefined":{}},"tags":{}}],["princ",{"_index":7445,"title":{},"content":{"Moon Logic":{},"Favorite Game Meme":{},"A Triumph For Blogging":{}},"tags":{}}],["princip",{"_index":3664,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["principl",{"_index":2458,"title":{"Development principles in cooking":{}},"content":{"How to teach kids to program":{},"Development principles in cooking":{},"Healing creative scars":{},"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":{},"Academese Gems":{},"Emotional Magic":{},"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{"Development principles in cooking":{}}}],["prinf(\"%d",{"_index":4318,"title":{},"content":{"Domain Driven Design in C":{}},"tags":{}}],["print",{"_index":561,"title":{},"content":{"undefined":{},"What is Creativity in Software Engineering?":{},"Emotional Magic":{},"The HP Sprocket Mini Printer":{},"Are Digital Gardens Blogs?":{},"Questionable Game Publishing Methods":{},"The Emperor of Lists":{},"Allspice Is Not All Spice":{},"Seneca on How to Live":{},"Generating a Blogroll With OPML in Hugo":{},"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["printer",{"_index":2991,"title":{"The HP Sprocket Mini Printer":{}},"content":{"Inventing - for the worse?":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{}},"tags":{}}],["printf",{"_index":8242,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["println(\"hi\".last",{"_index":8576,"title":{},"content":{"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{}}],["priori",{"_index":3302,"title":{},"content":{"Thinking in terms of objects":{}},"tags":{}}],["prioriti",{"_index":6735,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{},"Always have a Diaster Recovery Plan":{}},"tags":{}}],["privaci",{"_index":5471,"title":{"Tracking and privacy concerns on websites":{}},"content":{"Designing websites with accessibility in mind":{},"Tracking and privacy concerns on websites":{},"Digitizing journals using DEVONthink":{},"Exploring the AlterNet":{},"Getting rid of trackers using LineageOS":{},"Are You In The System Yet, Sir?":{},"A Triumph For Blogging":{},"Migrating from Mailchimp to Listmonk":{},"Why Mastodon Isn't Great For Serendipity":{},"Visualizing Personal Data Takeouts":{}},"tags":{"Tracking and privacy concerns on websites":{},"Digitizing journals using DEVONthink":{},"Getting rid of trackers using LineageOS":{},"The IndieWeb Mixed Bag":{},"Are You In The System Yet, Sir?":{},"Migrating from Mailchimp to Listmonk":{},"Visualizing Personal Data Takeouts":{}}}],["privacy](/tags/privaci",{"_index":6992,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["privat",{"_index":1619,"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":{},"The IndieWeb Mixed Bag":{},"The first Dutch Obsidian meetup":{},"Pinball Machines in a Jenever Museum":{},"Are Digital Gardens Blogs?":{},"Collective Creativity":{},"Woke in Class":{},"On Trying To Sell A Laptop":{},"Expiry Dates On Journals":{},"March 2022 In Review":{}},"tags":{}}],["privileg",{"_index":8394,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["privéwereld",{"_index":4854,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["pro",{"_index":162,"title":{},"content":{"Ending your day with happy thoughts":{},"486 Upgrade 1: Sound Blaster 16":{},"Personal Desktop Screenshots of Olde":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Programming on the Apple M1 Silicon":{},"Digitizing journals using DEVONthink":{},"You Shouldn't Use Spotify":{},"Stop limiting yourself to JS in browsers":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["probabl",{"_index":1292,"title":{},"content":{"Unit Testing Stored Procedures":{},"Death to pseudocode?":{},"Teaching by philosophy":{},"Using Pandoc to publish a book":{},"3D Software Rendering on the GBA":{},"The Internet Killed Secrets in Games":{},"You Shouldn't Use Spotify":{},"Discord killed support for WinXP":{},"Nineties collecting nostalgia":{},"Re: Is collecting physical games worth it?":{},"Social Debt in Development Teams":{},"Why I like Pawn Stars":{},"Book Number Fourteen":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Cheese cheese cheese cheese cheese":{},"Pinball Machines in a Jenever Museum":{},"Thirty-Six":{},"Creativity Self-Assessment Is Nonsense":{},"Collective Creativity":{},"Ever-increasing Work Email Spam":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Seneca on How to Live":{},"Minimalism and Tidying Up":{},"Winnie Lim on Rebuilding Oneself":{},"2021 Year In Review":{},"How To Enjoy Your Own Digital Music":{},"January 2022 In Review":{},"Thoughts On Home NAS Systems":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["probe",{"_index":8085,"title":{},"content":{"The Fridge, Your Inoculation Room":{}},"tags":{}}],["probeert",{"_index":834,"title":{},"content":{"undefined":{}},"tags":{}}],["probleem",{"_index":3592,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"A Ph.D. Thesis Proposal":{},"De zin en onzin van conferenties":{},"Over Onmiddellijke Voldoening":{}},"tags":{}}],["probleem](../sweng_prob.png",{"_index":3744,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["probleemstel",{"_index":3712,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["problem",{"_index":384,"title":{},"content":{"No, vegetarians do not eat fish!":{},"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":{},"Teaching yourself to draw":{},"How to teach kids to program":{},"Healing creative scars":{},"Journaling in practice":{},"Nuts about local nuts":{},"Inventing - for the worse?":{},"Concentrating on serendipitous creativity":{},"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!":{},"486 Upgrade 2: The SD Card HDD":{},"Reviving an old 80486 PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"What is Creativity in Software Engineering?":{},"Always have a Diaster Recovery Plan":{},"Exploring the AlterNet":{},"On Manuscript Review Procedures":{},"Host your own webmention receiver":{},"Moon Logic":{},"Re: Is collecting physical games worth it?":{},"Social Debt in Development Teams":{},"Software Engineering Is Not Engineering":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"Apple's App Store Design Mistake":{},"Double-dipping and Market Prices":{},"The Fridge, Your Inoculation Room":{},"Reducing Workflow Load Facilitates Writing":{},"Cheese cheese cheese cheese cheese":{},"Emotional Magic":{},"My Kotlin Rose-Tinted Glasses Broke":{},"A Note About Footnotes":{},"Creativity Self-Assessment Is Nonsense":{},"Power Usage Effectiveness":{},"Questionable Game Publishing Methods":{},"A 5.25\" Gobliins 2 Surprise":{},"Exporting Goodreads to Obsidian":{},"A Creative State of Mind":{},"Migrating from Mailchimp to Listmonk":{},"Three Little GameCube Mods":{},"Natural Gas Prices and The Energy Market":{},"The Creative Techniques Toolbox":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"How to setup Pi-Hole on a Synology NAS":{},"Once Upon a Time in Shaolin":{},"Visualizing Personal Data Takeouts":{},"What a Night Cam Is Good For":{},"Academic Lineage":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Equality in Game Credits":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["problem](https://trudymorgancole.wordpress.com/2014/03/02/dog",{"_index":2931,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["problemat",{"_index":4706,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{},"An am486 Performance Analysis":{}},"tags":{}}],["problemen",{"_index":772,"title":{},"content":{"undefined":{},"De zin en onzin van conferenties":{}},"tags":{}}],["proc",{"_index":1126,"title":{},"content":{"undefined":{},"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["proc.cal",{"_index":1154,"title":{},"content":{"undefined":{}},"tags":{}}],["proc.new",{"_index":1133,"title":{},"content":{"undefined":{}},"tags":{}}],["proc_test",{"_index":1153,"title":{},"content":{"undefined":{}},"tags":{}}],["proc`",{"_index":1139,"title":{},"content":{"undefined":{}},"tags":{}}],["procedur",{"_index":1277,"title":{"Unit Testing Stored Procedures":{},"On Manuscript Review Procedures":{}},"content":{"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{},"Unit testing in Legacy Projects: VB6":{},"Unit Testing PicoBlaze Assembly files":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["proceed",{"_index":6626,"title":{},"content":{"What is Creativity in Software Engineering?":{},"The first Dutch Obsidian meetup":{}},"tags":{}}],["proceeding_",{"_index":4882,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["process",{"_index":1008,"title":{"Programming: a Creative Cognitive Process":{},"Hugo Extended: More static site processing power!":{}},"content":{"Learning to become a baker":{},".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!":{},"ITiCSE 2020: A Report":{},"A journey through the history of webdesign":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"How to write academic papers in Markdown":{},"Exploring the Go programming language":{},"The first Dutch Obsidian meetup":{},"On Manuscript Review Procedures":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"A Triumph For Blogging":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Questionable Game Publishing Methods":{},"Creative Critical Thinking":{},"From Analog Notebook to Digital Vault":{},"Where Does It Stop?":{},"Allspice Is Not All Spice":{},"Migrating from Mailchimp to Listmonk":{},"Generating a Blogroll With OPML in Hugo":{},"Re: Writing A Book Is Nonesense":{},"January 2022 In Review":{},"February 2022 In Review":{},"Leuchtturm Notebook Paper Quality":{},"Fighting Webmention And Pingback Spam":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["process](/post/2019/10/cr",{"_index":6659,"title":{},"content":{"What is Creativity in Software Engineering?":{}},"tags":{}}],["process](/post/2020/05/us",{"_index":8589,"title":{},"content":{"On Selling a Self-published Book":{}},"tags":{}}],["process](http://csis.pace.edu/~ctappert/srd2015/2015pdf/d4.pdf",{"_index":4453,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{}}],["processor",{"_index":5278,"title":{},"content":{"Using Pandoc to publish a book":{},"Building an Athlon Windows 98 Retro PC":{},"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["proclaim",{"_index":8836,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{},"Exporting Goodreads to Obsidian":{},"Technical Knowledge Brews Creativity":{}},"tags":{}}],["produc",{"_index":1903,"title":{},"content":{"Custom Webdriver Page Factories":{},"A quick look at 6 fountain pens":{},"Hugo Extended: More static site processing power!":{},"3D Software Rendering on the GBA":{},"Reviving an old 80486 PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Discord killed support for WinXP":{},"Cheese cheese cheese cheese cheese":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"Are Digital Gardens Blogs?":{},"Creative Critical Thinking":{},"Exporting Goodreads to Obsidian":{},"A Creative State of Mind":{},"Once Upon a Time in Shaolin":{},"Equality in Game Credits":{}},"tags":{}}],["produce_",{"_index":8725,"title":{},"content":{"Thirty-Six":{}},"tags":{}}],["produceert",{"_index":3346,"title":{},"content":{"Over entropie":{}},"tags":{}}],["produceren",{"_index":4078,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["product",{"_index":1501,"title":{"Productivity Tools on all platforms":{},"The Productive Programmer on Mac":{}},"content":{"Visual Studio 2012 for Eclipse users":{},"Unit Testing Extjs UI with Siesta":{},"Unit testing in Legacy Projects: VB6":{},"Nuts about local nuts":{},"Inventing - for the worse?":{},"Take your time.":{},"Over de inflatie van intellect":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"De zin en onzin van conferenties":{},"Programming: a Creative Cognitive Process":{},"Five reasons why agile and academia don't go together":{},"Hugo Extended: More static site processing power!":{},"Project Warlock: About Perseverance":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Programming on the Apple M1 Silicon":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"What is Creativity in Software Engineering?":{},"Social Debt in Development Teams":{},"Apple's App Store Design Mistake":{},"Cheese cheese cheese cheese cheese":{},"The HP Sprocket Mini Printer":{},"Ditch Scrum, Organize As You See Fit":{},"A Treatise on Leavened Waffles":{},"Constraint-based Creativity":{},"Exporting Goodreads to Obsidian":{},"How Not To Do A Remaster":{},"Where Does It Stop?":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"Technical Knowledge Brews Creativity":{},"2021 Year In Review":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"A Personal Intro To Rough Hip-Hop":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{"Productivity Tools on all platforms":{},"The Productive Programmer on Mac":{}}}],["proeverijen",{"_index":4061,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["prof",{"_index":6066,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{}},"tags":{}}],["profess",{"_index":2515,"title":{},"content":{"A samurai learning mindset":{},"Inventing - for the worse?":{},"IT Competences and Certificates":{},"Thoughts on collaboration in education":{},"Academese Gems":{},"Software Engineering Is Not Engineering":{}},"tags":{}}],["profess_",{"_index":7794,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["profession",{"_index":402,"title":{},"content":{"No, vegetarians do not eat fish!":{},"IT Competences and Certificates":{},"Software Engineering Is Not Engineering":{},"The Fridge, Your Inoculation Room":{},"2021 Year In Review":{},"Freshly Baked Thoughts":{}},"tags":{}}],["professional_",{"_index":7788,"title":{},"content":{"Software Engineering Is Not Engineering":{}},"tags":{}}],["professionalism](http://ictprofessionalism.eu/th",{"_index":4728,"title":{},"content":{"IT Competences and Certificates":{}},"tags":{}}],["professionel",{"_index":3949,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["professor",{"_index":3487,"title":{},"content":{"Teaching by philosophy":{},"A Ph.D. Thesis Proposal":{},"Thoughts on collaboration in education":{},"Thoughts on Bullshit Jobs":{},"Academese Gems":{},"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["professors](https://bloggingheads.tv/videos/1615",{"_index":10224,"title":{},"content":{"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["professorship",{"_index":5720,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["profil",{"_index":2359,"title":{},"content":{"Teaching yourself to draw":{},"IT Competences and Certificates":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["profit",{"_index":7710,"title":{},"content":{"Flea Market Season":{},"Where Does It Stop?":{},"Allspice Is Not All Spice":{}},"tags":{}}],["profound",{"_index":5890,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"Expiry Dates On Journals":{}},"tags":{}}],["program",{"_index":487,"title":{"How to teach kids to program":{},"Programming: a Creative Cognitive Process":{},"Programming on the Apple M1 Silicon":{},"Exploring the Go programming language":{}},"content":{"undefined":{},"Are you handing over enough when inspiring someone?":{},"How to teach kids to program":{},"A samurai learning mindset":{},"2017 in books":{},"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":{},"ITiCSE 2020: A Report":{},"3D Software Rendering on the GBA":{},"Programming on the Apple M1 Silicon":{},"What is Creativity in Software Engineering?":{},"Exploring the AlterNet":{},"Teaching students about coding trends":{},"Exploring the Go programming language":{},"On Manuscript Review Procedures":{},"Host your own webmention receiver":{},"Apple's App Store Design Mistake":{},"The Decline of Battery Life":{},"Kotlin Is Java 2.0, But It's Still Java":{},"My Kotlin Rose-Tinted Glasses Broke":{},"A Triumph For Blogging":{},"Dear Student":{},"Migrating from Mailchimp to Listmonk":{},"Three Little GameCube Mods":{},"Generating a Blogroll With OPML in Hugo":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"2021 Year In Review":{},"My Retrocomputing Projects For 2022":{},"Creativity Equals Messy Code?":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{"Teaching students about coding trends":{}}}],["programm",{"_index":3518,"title":{"The Productive Programmer on Mac":{}},"content":{"Computer Science learning pathways":{},"Domain Driven Design in C":{},"The Productive Programmer on Mac":{},"Constraint-based Creativity":{},"Exporting Goodreads to Obsidian":{},"2021 Donations":{},"December 2021 In Review":{},"January 2022 In Review":{},"Equality in Game Credits":{}},"tags":{}}],["programmeerwerk",{"_index":3800,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["programmer?from_search=tru",{"_index":4336,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["programmer?from_search=true&from_srp=true&qid=jyuzonuvol&rank=1",{"_index":6583,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["programmer](https://github.com/miloyip/gam",{"_index":3521,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["programmer](https://www.goodreads.com/book/show/3411606",{"_index":4335,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["programmer_",{"_index":6589,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["programming!_",{"_index":10378,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["programming\"_",{"_index":6581,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["programming](github.com/wgroeneveld/gba",{"_index":10754,"title":{},"content":{"January 2022 In Review":{}},"tags":{}}],["programming](https://ensembleprogramming.xyz",{"_index":7584,"title":{},"content":{"Social Debt in Development Teams":{}},"tags":{}}],["programming](https://th",{"_index":3827,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["progress",{"_index":3857,"title":{},"content":{"Reverse engineering a curriculum":{},"My Retro Desk/Gaming Setup in 2021":{},"Apple's App Store Design Mistake":{},"A Creative State of Mind":{},"December 2021 In Review":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["project",{"_index":1415,"title":{"Unit testing in Legacy Projects: VB6":{},"Project Warlock: About Perseverance":{},"My Retrocomputing Projects For 2022":{}},"content":{"undefined":{},"Integration Testing with SQLite":{},"Bye autotools hello Scons":{},"Unit Testing Extjs UI with Siesta":{},"Unit testing in Legacy Projects: VB6":{},"Concentrating on serendipitous creativity":{},"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":{},"Project Warlock: About Perseverance":{},"A journey through the history of webdesign":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Stop limiting yourself to JS in browsers":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"Apple's App Store Design Mistake":{},"Water Levels As Public Data":{},"On Selling a Self-published Book":{},"Ditch Scrum, Organize As You See Fit":{},"Ever-increasing Work Email Spam":{},"The Emperor of Lists":{},"Where Does It Stop?":{},"2021 Donations":{},"December 2021 In Review":{},"Re: Writing A Book Is Nonesense":{},"My Retrocomputing Projects For 2022":{},"What a Night Cam Is Good For":{},"Creativity Equals Messy Code?":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["project=program.vbp",{"_index":2293,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["projects?](https://obsolete29.com/posts/2021/12/15/mi",{"_index":10340,"title":{},"content":{"December 2021 In Review":{}},"tags":{}}],["prolif",{"_index":10784,"title":{},"content":{"On Trying To Sell A Laptop":{}},"tags":{}}],["prolifer",{"_index":6960,"title":{},"content":{"Exploring the AlterNet":{},"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["prolong",{"_index":3016,"title":{},"content":{"Inventing - for the worse?":{},"From Curiosity To Creativity":{}},"tags":{}}],["promin",{"_index":3533,"title":{},"content":{"Computer Science learning pathways":{},"A Treatise on Leavened Waffles":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["promis",{"_index":8,"title":{},"content":{"Ending your day with happy thoughts":{},"Combining async with generators in Node 11":{},"Designing websites with accessibility in mind":{},"Dear Student":{},"February 2022 In Review":{},"March 2022 In Review":{}},"tags":{}}],["promise.all(subdirs.map(async",{"_index":5446,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["promise.resolv",{"_index":5458,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["promise.resolve(\"yo",{"_index":5462,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["promisifi",{"_index":5437,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["promisify(fs.readdir",{"_index":5441,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["promisify(fs.stat",{"_index":5443,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["promot",{"_index":3202,"title":{},"content":{"Concentrating on serendipitous creativity":{},"How Much Should I Spend On Magic The Gathering":{},"On Selling a Self-published Book":{},"Why Mastodon Isn't Great For Serendipity":{},"Re: Writing A Book Is Nonesense":{},"An Ad Leaflet QR Design Mistake":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["prompt",{"_index":1437,"title":{},"content":{"undefined":{},"The Productive Programmer on Mac":{}},"tags":{}}],["promptli",{"_index":6702,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Dear Student":{},"Ever-increasing Work Email Spam":{},"The Lost Art of Being Lost":{},"Constraint-based Creativity":{}},"tags":{}}],["prone",{"_index":11297,"title":{},"content":{"Leuchtturm Notebook Paper Quality":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["proof",{"_index":3492,"title":{},"content":{"Teaching by philosophy":{},"The Productive Programmer on Mac":{},"The Fridge, Your Inoculation Room":{},"A Creative State of Mind":{},"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["proper",{"_index":6526,"title":{},"content":{"Digitizing journals using DEVONthink":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Book Number Fourteen":{},"The Monthly Retro Screenshot Guessing Quiz":{},"My Retrocomputing Projects For 2022":{},"Water Usage and Prices":{}},"tags":{}}],["properli",{"_index":2658,"title":{},"content":{"Healing creative scars":{},"The IndieWeb Mixed Bag":{},"On Selling a Self-published Book":{}},"tags":{}}],["properti",{"_index":799,"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":{},"Exploring the Go programming language":{},"Nineties collecting nostalgia":{},"On Selling a Self-published Book":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["property/picoblaze.html",{"_index":4632,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["property=\"og:imag",{"_index":8247,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["proport",{"_index":3269,"title":{},"content":{"Death to pseudocode?":{}},"tags":{}}],["propos",{"_index":2385,"title":{"A Ph.D. Thesis Proposal":{}},"content":{"Are you handing over enough when inspiring someone?":{},"A quick look at 6 fountain pens":{},"A Ph.D. Thesis Proposal":{},"The Startup of a Lean Doctorate":{},"A Ph.D. Thesis: Iteration 2":{},"The Productive Programmer on Mac":{},"Ever-increasing Work Email Spam":{}},"tags":{}}],["proposal](/post/phd",{"_index":4673,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["proposal](/propos",{"_index":3820,"title":{},"content":{"Reverse engineering a curriculum":{}},"tags":{}}],["proprietari",{"_index":8756,"title":{},"content":{"20 Years of Personal Cellphone History":{}},"tags":{}}],["prose",{"_index":6633,"title":{},"content":{"What is Creativity in Software Engineering?":{},"On Manuscript Review Procedures":{},"Academese Gems":{},"Software Engineering Is Not Engineering":{}},"tags":{}}],["prospect",{"_index":8594,"title":{},"content":{"On Selling a Self-published Book":{},"Where Does It Stop?":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["protagonist",{"_index":8861,"title":{},"content":{"Favorite Game Meme":{},"Equality in Game Credits":{}},"tags":{}}],["protect",{"_index":1188,"title":{},"content":{"undefined":{},"Death to pseudocode?":{},"Tracking and privacy concerns on websites":{},"Exploring the AlterNet":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Constraint-based Creativity":{},"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["protein",{"_index":8463,"title":{},"content":{"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["protocol",{"_index":677,"title":{},"content":{"undefined":{},"Exploring the AlterNet":{},"Discord killed support for WinXP":{},"Using Hugo to Launch a Gemini Capsule":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{},"A Triumph For Blogging":{},"2021 Year In Review":{}},"tags":{}}],["proton",{"_index":7004,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["protonmail",{"_index":7003,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["protonmail](https://protonmail.com",{"_index":7002,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["prototyp",{"_index":673,"title":{},"content":{"undefined":{},"Are you handing over enough when inspiring someone?":{},"Programming: a Creative Cognitive Process":{}},"tags":{}}],["protrud",{"_index":11618,"title":{},"content":{"Wax Seals And Snail Mail":{}},"tags":{}}],["proud",{"_index":4797,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{},"Building an Athlon Windows 98 Retro PC":{},"From Analog Notebook to Digital Vault":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"Generating a Blogroll With OPML in Hugo":{},"2021 Year In Review":{},"Expiry Dates On Journals":{}},"tags":{}}],["proudli",{"_index":5754,"title":{},"content":{"An am486 Performance Analysis":{},"The Pilot Capless: a stellar stealth pen":{},"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["prove",{"_index":3181,"title":{},"content":{"Take your time.":{},"Programming: a Creative Cognitive Process":{},"Thoughts on collaboration in education":{},"Getting rid of trackers using LineageOS":{},"Moon Logic":{},"Creative Critical Thinking":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Why I Play Games (And So Should You)":{},"Creativity Equals Messy Code?":{},"February 2022 In Review":{},"Equality in Game Credits":{}},"tags":{}}],["proven",{"_index":2937,"title":{},"content":{"I'm jealous of my dog":{},"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["provenc",{"_index":2862,"title":{},"content":{"Nuts about local nuts":{},"On Tea Prices":{},"Constraint-based Creativity":{}},"tags":{}}],["provence](https://www.mariagefreres.com/fr/2",{"_index":8208,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["provid",{"_index":1633,"title":{},"content":{"Enhancing the builder pattern with closures":{},"Metaprogramming instead of duplication":{},"Thinking in terms of objects":{},"The Startup of a Lean Doctorate":{},"Five reasons why agile and academia don't go together":{},"A journey through the history of webdesign":{},"Programming on the Apple M1 Silicon":{},"Thoughts on Bullshit Jobs":{},"You Shouldn't Use Spotify":{},"Getting rid of trackers using LineageOS":{},"Stop limiting yourself to JS in browsers":{},"Using Hugo to Launch a Gemini Capsule":{},"Academese Gems":{},"The Fridge, Your Inoculation Room":{},"Pinball Machines in a Jenever Museum":{},"A Note About Footnotes":{},"Power Usage Effectiveness":{},"Why Mastodon Isn't Great For Serendipity":{},"Natural Gas Prices and The Energy Market":{},"How To Enjoy Your Own Digital Music":{},"Thoughts On Home NAS Systems":{},"Water Usage and Prices":{},"How To Stream Your Own Music: Reprise":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["provinc",{"_index":8441,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{},"Parking Machines Design Mistakes":{}},"tags":{}}],["provinciano'",{"_index":10854,"title":{},"content":{"My Retrocomputing Projects For 2022":{}},"tags":{}}],["proxi",{"_index":1661,"title":{},"content":{"Integration Testing with SQLite":{},"Custom Webdriver Page Factories":{},"Host your own webmention receiver":{},"The HP Sprocket Mini Printer":{},"How to setup Pi-Hole on a Synology NAS":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["proximus](https://proximus.b",{"_index":10727,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["proza",{"_index":9552,"title":{},"content":{"The Emperor of Lists":{}},"tags":{}}],["pseudocod",{"_index":3252,"title":{"Death to pseudocode?":{}},"content":{"Death to pseudocode?":{}},"tags":{}}],["psm(4",{"_index":4635,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["psm4",{"_index":4645,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["psu",{"_index":5816,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["psych",{"_index":10400,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["psycholog",{"_index":4948,"title":{},"content":{"Programming: a Creative Cognitive Process":{},"Re: Is collecting physical games worth it?":{},"Software Engineering Is Not Engineering":{},"Creativity Self-Assessment Is Nonsense":{},"A Factor Analysis For Dummies in R":{},"Why I Play Games (And So Should You)":{},"January 2022 In Review":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["pthread",{"_index":1822,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["ptolemi",{"_index":9418,"title":{},"content":{"Constraint-based Creativity":{},"The Emperor of Lists":{},"A Creative State of Mind":{}},"tags":{}}],["ptolemy'",{"_index":9432,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["public",{"_index":580,"title":{"Water Levels As Public Data":{}},"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":{},"What is Creativity in Software Engineering?":{},"Academese Gems":{},"Water Levels As Public Data":{},"The HP Sprocket Mini Printer":{},"Ditch Scrum, Organize As You See Fit":{},"A Creative State of Mind":{},"Seneca on How to Live":{},"Natural Gas Prices and The Energy Market":{},"Winnie Lim on Rebuilding Oneself":{},"A Personal Intro To Rough Hip-Hop":{},"Expiry Dates On Journals":{},"Equality in Game Credits":{}},"tags":{}}],["publicati",{"_index":4869,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["publiceren",{"_index":4871,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["publicli",{"_index":11360,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["publiek",{"_index":3947,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["publish",{"_index":3519,"title":{"Using Pandoc to publish a book":{},"On Selling a Self-published Book":{},"Questionable Game Publishing Methods":{}},"content":{"Computer Science learning pathways":{},"The Startup of a Lean Doctorate":{},"Using Pandoc to publish a book":{},"Thoughts on Bullshit Jobs":{},"The Productive Programmer on Mac":{},"How to write academic papers in Markdown":{},"Getting rid of trackers using LineageOS":{},"The IndieWeb Mixed Bag":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"On Manuscript Review Procedures":{},"Academese Gems":{},"Software Engineering Is Not Engineering":{},"Rules of a Creator's Life":{},"On Selling a Self-published Book":{},"A Note About Footnotes":{},"Are Digital Gardens Blogs?":{},"Very Old and Somewhat Old Mood Boards":{},"Questionable Game Publishing Methods":{},"Exporting Goodreads to Obsidian":{},"How Not To Do A Remaster":{},"Technical Knowledge Brews Creativity":{},"December 2021 In Review":{},"Re: Writing A Book Is Nonesense":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["publisher'",{"_index":5405,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["publiu",{"_index":9058,"title":{},"content":{"Collective Creativity":{}},"tags":{}}],["pue",{"_index":9217,"title":{},"content":{"Power Usage Effectiveness":{}},"tags":{}}],["puff",{"_index":11056,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["puffi",{"_index":3175,"title":{},"content":{"Take your time.":{}},"tags":{}}],["puke",{"_index":227,"title":{},"content":{"On finding your inner zen in big cities":{}},"tags":{}}],["pulcher",{"_index":8889,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["pull",{"_index":2957,"title":{},"content":{"I'm jealous of my dog":{},"Getting rid of trackers using LineageOS":{},"Discord killed support for WinXP":{},"The Pilot Capless: a stellar stealth pen":{},"Why I like Pawn Stars":{},"How Not To Do A Remaster":{},"The Death Of The Nike+ SportWatch":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["pummel",{"_index":9183,"title":{},"content":{"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["pump",{"_index":6704,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"On Manuscript Review Procedures":{}},"tags":{}}],["pumpkin",{"_index":10084,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["pun",{"_index":2999,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["punctuat",{"_index":9561,"title":{},"content":{"The Emperor of Lists":{}},"tags":{}}],["pupil",{"_index":9508,"title":{},"content":{"Creative Critical Thinking":{}},"tags":{}}],["puppi",{"_index":10956,"title":{},"content":{"What a Night Cam Is Good For":{}},"tags":{}}],["purcell](https://www.goodreads.com/book/show/7849839",{"_index":3070,"title":{},"content":{"2017 in books":{}},"tags":{}}],["purchas",{"_index":9260,"title":{},"content":{"Questionable Game Publishing Methods":{},"2021 Donations":{},"Once Upon a Time in Shaolin":{},"What a Night Cam Is Good For":{}},"tags":{}}],["pure",{"_index":7791,"title":{},"content":{"Software Engineering Is Not Engineering":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["purpos",{"_index":1216,"title":{},"content":{"undefined":{},"Integration Testing with SQLite":{},"Using Pandoc to publish a book":{},"Designing websites with accessibility in mind":{},"Digitizing journals using DEVONthink":{},"Belgium - Portugal: 5 - 2":{},"Thirty-Six":{},"Are Digital Gardens Blogs?":{},"Dear Student":{},"Very Old and Somewhat Old Mood Boards":{},"The Lost Art of Being Lost":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Generating a Blogroll With OPML in Hugo":{},"Minimalism and Tidying Up":{},"Thoughts On Home NAS Systems":{},"Expiry Dates On Journals":{}},"tags":{}}],["pursuit",{"_index":5695,"title":{},"content":{"Thoughts on collaboration in education":{},"Freshly Baked Thoughts":{}},"tags":{}}],["push",{"_index":987,"title":{},"content":{"Learning to become a baker":{},"Are you handing over enough when inspiring someone?":{},"Concentrating on serendipitous creativity":{},"ITiCSE 2020: A Report":{},"Building a Core2Duo Windows XP Retro PC":{},"Thoughts on Bullshit Jobs":{},"Using Hugo to Launch a Gemini Capsule":{},"The Fridge, Your Inoculation Room":{},"Water Levels As Public Data":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Power Usage Effectiveness":{},"Creative Critical Thinking":{},"Three Little GameCube Mods":{},"On Trying To Sell A Laptop":{},"True Backlink Support in Hugo":{}},"tags":{}}],["pusher",{"_index":2978,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["pushingupros",{"_index":7468,"title":{},"content":{"Moon Logic":{}},"tags":{}}],["put",{"_index":59,"title":{},"content":{"Ending your day with happy thoughts":{},"undefined":{},"Faking domain logic":{},"How to teach kids to program":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"I'm jealous of my dog":{},"Death to pseudocode?":{},"Thinking in terms of objects":{},"Reverse engineering a curriculum":{},"The Startup of a Lean Doctorate":{},"IT Competences and Certificates":{},"Building a Core2Duo Windows XP Retro PC":{},"How to write academic papers in Markdown":{},"Always have a Diaster Recovery Plan":{},"Getting rid of trackers using LineageOS":{},"Academese Gems":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"The Pilot Capless: a stellar stealth pen":{},"Apple's App Store Design Mistake":{},"The Fridge, Your Inoculation Room":{},"How Much Should I Spend On Magic The Gathering":{},"Rules of a Creator's Life":{},"What if Seneca wasn't Nero's advisor?":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Cheese cheese cheese cheese cheese":{},"Kotlin Is Java 2.0, But It's Still Java":{},"On Selling a Self-published Book":{},"A Note About Footnotes":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"Are Digital Gardens Blogs?":{},"Very Old and Somewhat Old Mood Boards":{},"A 5.25\" Gobliins 2 Surprise":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"Migrating from Mailchimp to Listmonk":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Why Mastodon Isn't Great For Serendipity":{},"Re: Writing A Book Is Nonesense":{},"Woke in Class":{},"How to setup Pi-Hole on a Synology NAS":{},"February 2022 In Review":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["putin",{"_index":11474,"title":{},"content":{"March 2022 In Review":{}},"tags":{}}],["puzz",{"_index":10776,"title":{},"content":{"January 2022 In Review":{}},"tags":{}}],["puzzl",{"_index":7439,"title":{},"content":{"Moon Logic":{},"February 2022 In Review":{}},"tags":{}}],["puzzle/adventur",{"_index":11531,"title":{},"content":{"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["puzzler",{"_index":8414,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["pve",{"_index":10290,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["pvp",{"_index":10277,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["pxl",{"_index":10640,"title":{},"content":{"Woke in Class":{}},"tags":{}}],["pycap",{"_index":11578,"title":{},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["pycharm",{"_index":4346,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["pypl",{"_index":7098,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["pyramid",{"_index":2329,"title":{},"content":{"Teaching yourself to draw":{},"Healing creative scars":{},"On Tea Prices":{}},"tags":{}}],["pythagora",{"_index":3459,"title":{},"content":{"Over entropie":{}},"tags":{}}],["pythagorean",{"_index":10155,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["python",{"_index":704,"title":{},"content":{"undefined":{},"Unit Testing PicoBlaze Assembly files":{},"Very Old and Somewhat Old Mood Boards":{},"Natural Gas Prices and The Energy Market":{},"Water Usage and Prices":{}},"tags":{"Bye autotools hello Scons":{}}}],["python'",{"_index":4641,"title":{},"content":{"Unit Testing PicoBlaze Assembly files":{}},"tags":{}}],["python3",{"_index":1036,"title":{},"content":{"undefined":{}},"tags":{}}],["python3.9",{"_index":6458,"title":{},"content":{"Programming on the Apple M1 Silicon":{}},"tags":{}}],["python](http://effbot.org/zone/default",{"_index":1080,"title":{},"content":{"undefined":{}},"tags":{}}],["python](http://www.artima.com/weblogs/viewpost.jsp?thread=101605",{"_index":1047,"title":{},"content":{"undefined":{}},"tags":{}}],["python’",{"_index":1084,"title":{},"content":{"undefined":{}},"tags":{}}],["pyusb",{"_index":11579,"title":{},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["q",{"_index":10521,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1",{"_index":10487,"title":{},"content":{"Natural Gas Prices and The Energy Market":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["q1/15",{"_index":10495,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1/16",{"_index":10499,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1/17",{"_index":10503,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1/18",{"_index":10507,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1/19",{"_index":10511,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1/20",{"_index":10515,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q1/21",{"_index":10519,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/15",{"_index":10496,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/16",{"_index":10500,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/17",{"_index":10504,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/18",{"_index":10508,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/19",{"_index":10512,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/20",{"_index":10516,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q2/21",{"_index":10520,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q3/15",{"_index":10497,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q3/16",{"_index":10501,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q3/17",{"_index":10505,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q3/18",{"_index":10509,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q3/19",{"_index":10513,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q3/20",{"_index":10517,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4",{"_index":10486,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4/15",{"_index":10498,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4/16",{"_index":10502,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4/17",{"_index":10506,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4/18",{"_index":10510,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4/19",{"_index":10514,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["q4/20",{"_index":10518,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["qa",{"_index":11420,"title":{},"content":{"Equality in Game Credits":{}},"tags":{}}],["qfpay",{"_index":8969,"title":{},"content":{"Parking Machines Design Mistakes":{}},"tags":{}}],["qmake",{"_index":1861,"title":{},"content":{"Bye autotools hello Scons":{}},"tags":{}}],["qr",{"_index":11142,"title":{"An Ad Leaflet QR Design Mistake":{}},"content":{"An Ad Leaflet QR Design Mistake":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["qr.jpg",{"_index":11144,"title":{},"content":{"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["qt",{"_index":3541,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["quadrupl",{"_index":10488,"title":{},"content":{"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["quak",{"_index":6060,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Favorite Game Meme":{}},"tags":{}}],["qualif",{"_index":3018,"title":{},"content":{"Inventing - for the worse?":{}},"tags":{}}],["qualifi",{"_index":7675,"title":{},"content":{"Belgium - Portugal: 5 - 2":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["qualit",{"_index":6662,"title":{},"content":{"What is Creativity in Software Engineering?":{},"On Tea Prices":{},"A Factor Analysis For Dummies in R":{},"Winnie Lim on Rebuilding Oneself":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["qualiti",{"_index":3023,"title":{"Leuchtturm Notebook Paper Quality":{}},"content":{"Inventing - for the worse?":{},"Five reasons why agile and academia don't go together":{},"Win98 Upgrade: Sound Blaster Audigy":{},"On Tea Prices":{},"The HP Sprocket Mini Printer":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"Leuchtturm Notebook Paper Quality":{}},"tags":{}}],["quality?_",{"_index":11211,"title":{},"content":{"Creativity Equals Messy Code?":{}},"tags":{}}],["quantifi",{"_index":2334,"title":{},"content":{"Teaching yourself to draw":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["quantit",{"_index":10386,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["quantiti",{"_index":9179,"title":{},"content":{"Ever-increasing Work Email Spam":{}},"tags":{}}],["quart",{"_index":9379,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["quart_",{"_index":9381,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["quarter",{"_index":7641,"title":{},"content":{"Belgium - Portugal: 5 - 2":{},"Natural Gas Prices and The Energy Market":{},"Water Usage and Prices":{}},"tags":{}}],["quarterli",{"_index":9753,"title":{},"content":{"Where Does It Stop?":{},"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["quartey'",{"_index":11383,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["quarts_",{"_index":8720,"title":{},"content":{"Thirty-Six":{}},"tags":{}}],["quatr",{"_index":9378,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["queri",{"_index":1341,"title":{},"content":{"Unit Testing Stored Procedures":{},"Exploring the Go programming language":{}},"tags":{}}],["quest",{"_index":6151,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{},"Misconceptions about retro gamers":{},"Software Engineering Is Not Engineering":{},"The Lost Art of Being Lost":{},"December 2021 In Review":{},"February 2022 In Review":{},"March 2022 In Review":{}},"tags":{}}],["question",{"_index":1335,"title":{"Questionable Game Publishing Methods":{}},"content":{"Unit Testing Stored Procedures":{},"Metaprogramming instead of duplication":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"Hiding Code Complexity":{},"Reverse engineering a curriculum":{},"The Startup of a Lean Doctorate":{},"IT Competences and Certificates":{},"Programming: a Creative Cognitive Process":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"Thoughts on collaboration in education":{},"Win98 Upgrade: Sound Blaster Audigy":{},"What is Creativity in Software Engineering?":{},"My Retro Desk/Gaming Setup in 2021":{},"Using Hugo to Launch a Gemini Capsule":{},"Host your own webmention receiver":{},"Academese Gems":{},"Software Engineering Is Not Engineering":{},"Apple's App Store Design Mistake":{},"Are You In The System Yet, Sir?":{},"Creativity Self-Assessment Is Nonsense":{},"Dear Student":{},"Ditch Scrum, Organize As You See Fit":{},"Creative Critical Thinking":{},"From Curiosity To Creativity":{},"Where Does It Stop?":{},"2021 Donations":{},"A Factor Analysis For Dummies in R":{},"Winnie Lim on Rebuilding Oneself":{},"Expiry Dates On Journals":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["queue",{"_index":6935,"title":{},"content":{"Always have a Diaster Recovery Plan":{}},"tags":{}}],["quick",{"_index":1533,"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":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Teaching students about coding trends":{},"Discord killed support for WinXP":{},"The Pilot Capless: a stellar stealth pen":{},"YouTube Play Image Links in Hugo":{},"How Much Should I Spend On Magic The Gathering":{},"A Treatise on Leavened Waffles":{},"From Analog Notebook to Digital Vault":{},"November 2021 Meta Post":{},"Re: Writing A Book Is Nonesense":{},"Why I Play Games (And So Should You)":{},"On Trying To Sell A Laptop":{},"Once Upon a Time in Shaolin":{},"Fighting Webmention And Pingback Spam":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["quicker",{"_index":6601,"title":{},"content":{"The Productive Programmer on Mac":{},"On Tea Prices":{}},"tags":{}}],["quicklaunch",{"_index":4361,"title":{},"content":{"Productivity Tools on all platforms":{}},"tags":{}}],["quickli",{"_index":318,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"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":{},"The Productive Programmer on Mac":{},"The first Dutch Obsidian meetup":{},"Using Hugo to Launch a Gemini Capsule":{},"The Pilot Capless: a stellar stealth pen":{},"Why I like Pawn Stars":{},"Parking Machines Design Mistakes":{},"Are Digital Gardens Blogs?":{},"Very Old and Somewhat Old Mood Boards":{},"Constraint-based Creativity":{},"Exporting Goodreads to Obsidian":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Dark Age of Camelot in 2022":{},"December 2021 In Review":{},"Woke in Class":{},"Academic Lineage":{},"March 2022 In Review":{},"The Death Of The Nike+ SportWatch":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["quiet",{"_index":327,"title":{},"content":{"On finding your inner zen in big cities":{},"Always have a Diaster Recovery Plan":{},"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["quintet",{"_index":11025,"title":{},"content":{"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["quirk",{"_index":7123,"title":{},"content":{"The IndieWeb Mixed Bag":{},"A Triumph For Blogging":{},"November 2021 Meta Post":{},"Expiry Dates On Journals":{}},"tags":{}}],["quirk'",{"_index":10720,"title":{},"content":{"How to setup Pi-Hole on a Synology NAS":{}},"tags":{}}],["quirki",{"_index":7301,"title":{},"content":{"The first Dutch Obsidian meetup":{},"Moon Logic":{},"A 5.25\" Gobliins 2 Surprise":{}},"tags":{}}],["quit",{"_index":317,"title":{},"content":{"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"Visual Studio 2012 for Eclipse users":{},"Unit testing in Legacy Projects: VB6":{},"Teaching yourself to draw":{},"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":{},"486 Upgrade 1: Sound Blaster 16":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Digitizing journals using DEVONthink":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Exploring the AlterNet":{},"Getting rid of trackers using LineageOS":{},"Using Hugo to Launch a Gemini Capsule":{},"On Manuscript Review Procedures":{},"Host your own webmention receiver":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Academese Gems":{},"The Pilot Capless: a stellar stealth pen":{},"Apple's App Store Design Mistake":{},"The Fridge, Your Inoculation Room":{},"Rules of a Creator's Life":{},"The Decline of Battery Life":{},"What if Seneca wasn't Nero's advisor?":{},"Where Does It Stop?":{},"2021 Donations":{},"Migrating from Mailchimp to Listmonk":{},"Three Little GameCube Mods":{},"Winnie Lim on Rebuilding Oneself":{},"2021 Year In Review":{},"Once Upon a Time in Shaolin":{},"Water Usage and Prices":{},"Expiry Dates On Journals":{},"Leuchtturm Notebook Paper Quality":{},"Equality in Game Credits":{},"March 2022 In Review":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["quite](/post/2021/02/th",{"_index":7748,"title":{},"content":{"Misconceptions about retro gamers":{}},"tags":{}}],["quiz",{"_index":9992,"title":{"The Monthly Retro Screenshot Guessing Quiz":{}},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["quiz.1272",{"_index":9996,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["quizz",{"_index":9999,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["quot",{"_index":3307,"title":{},"content":{"Thinking in terms of objects":{},"The Productive Programmer on Mac":{},"How to write academic papers in Markdown":{},"Emotional Magic":{},"The Emperor of Lists":{},"November 2021 Meta Post":{},"December 2021 In Review":{},"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["quotat",{"_index":6815,"title":{},"content":{"How to write academic papers in Markdown":{}},"tags":{}}],["r",{"_index":1564,"title":{"A Factor Analysis For Dummies in R":{}},"content":{"Visual Studio 2012 for Eclipse users":{},"2017 in books":{},"Death to pseudocode?":{},"A Factor Analysis For Dummies in R":{},"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["r&b",{"_index":11055,"title":{},"content":{"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["race",{"_index":5650,"title":{},"content":{"3D Software Rendering on the GBA":{},"Thirty-Six":{},"Dark Age of Camelot in 2022":{}},"tags":{}}],["raceway",{"_index":6740,"title":{},"content":{"My Retro Desk/Gaming Setup in 2021":{}},"tags":{}}],["racist",{"_index":10637,"title":{},"content":{"Woke in Class":{}},"tags":{}}],["racistisch",{"_index":10641,"title":{},"content":{"Woke in Class":{}},"tags":{}}],["rack",{"_index":9224,"title":{},"content":{"Power Usage Effectiveness":{}},"tags":{}}],["racket",{"_index":1251,"title":{},"content":{"undefined":{}},"tags":{}}],["rad",{"_index":4263,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["radar](https://www.thoughtworks.com/radar",{"_index":7094,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["radeon",{"_index":6111,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["radermach",{"_index":4686,"title":{},"content":{"A Ph.D. Thesis: Iteration 2":{}},"tags":{}}],["radian",{"_index":5676,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["radic",{"_index":9699,"title":{},"content":{"How Not To Do A Remaster":{}},"tags":{}}],["radio",{"_index":8612,"title":{},"content":{"On Selling a Self-published Book":{},"How Not To Do A Remaster":{}},"tags":{}}],["radish",{"_index":8476,"title":{},"content":{"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["radiu",{"_index":8962,"title":{},"content":{"Parking Machines Design Mistakes":{}},"tags":{}}],["ragdol",{"_index":10668,"title":{},"content":{"2021 Year In Review":{}},"tags":{}}],["rage",{"_index":2263,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{},"Nineties collecting nostalgia":{}},"tags":{}}],["raid",{"_index":8721,"title":{},"content":{"Thirty-Six":{}},"tags":{}}],["rail",{"_index":3294,"title":{},"content":{"Death to pseudocode?":{}},"tags":{}}],["rain",{"_index":7709,"title":{},"content":{"Flea Market Season":{},"Water Levels As Public Data":{},"How Not To Do A Remaster":{},"November 2021 Meta Post":{},"December 2021 In Review":{}},"tags":{}}],["rain_",{"_index":10071,"title":{},"content":{"November 2021 Meta Post":{}},"tags":{}}],["raindrop",{"_index":2953,"title":{},"content":{"I'm jealous of my dog":{}},"tags":{}}],["rainfal",{"_index":8337,"title":{},"content":{"Water Levels As Public Data":{}},"tags":{}}],["rais",{"_index":8422,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{},"Power Usage Effectiveness":{},"The Creative Techniques Toolbox":{},"Why I Play Games (And So Should You)":{}},"tags":{}}],["ram",{"_index":5131,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{},"3D Software Rendering on the GBA":{},"An am486 Performance Analysis":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"Personal Desktop Screenshots of Olde":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The Decline of Battery Life":{},"A 5.25\" Gobliins 2 Surprise":{},"My Retrocomputing Projects For 2022":{},"Thoughts On Home NAS Systems":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["ramif",{"_index":7159,"title":{},"content":{"The IndieWeb Mixed Bag":{},"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["rammen",{"_index":3991,"title":{},"content":{"Over de inflatie van intellect":{}},"tags":{}}],["ran",{"_index":5790,"title":{},"content":{"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"Flea Market Season":{},"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["random",{"_index":1949,"title":{},"content":{"Faking domain logic":{},"Nuts about local nuts":{},"Teaching by philosophy":{},"Domain Driven Design in C":{},"A Note About Footnotes":{},"How Not To Do A Remaster":{},"Allspice Is Not All Spice":{},"November 2021 Meta Post":{},"Why Mastodon Isn't Great For Serendipity":{},"December 2021 In Review":{},"2021 Year In Review":{}},"tags":{}}],["randomli",{"_index":7457,"title":{},"content":{"Moon Logic":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["rang",{"_index":2086,"title":{},"content":{"Unit Testing Extjs UI with Siesta":{},"DIY: Hosting stuff on your own VPS":{},"Win98 Upgrade: Sound Blaster Audigy":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"The Pilot Capless: a stellar stealth pen":{},"Why I like Pawn Stars":{},"Reducing Workflow Load Facilitates Writing":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Pinball Machines in a Jenever Museum":{},"Generating a Blogroll With OPML in Hugo":{},"True Backlink Support in Hugo":{}},"tags":{}}],["range(10",{"_index":1086,"title":{},"content":{"undefined":{}},"tags":{}}],["ranger",{"_index":10270,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["rank",{"_index":7111,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["ransack",{"_index":10556,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["rant",{"_index":5088,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"On Manuscript Review Procedures":{},"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["rap",{"_index":10679,"title":{},"content":{"How To Enjoy Your Own Digital Music":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["rapen",{"_index":4543,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["rapid",{"_index":2379,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"Favorite Game Meme":{},"Expiry Dates On Journals":{}},"tags":{}}],["rapidli",{"_index":3497,"title":{},"content":{"Teaching by philosophy":{},"Reviving an old 80486 PC":{},"Building a Core2Duo Windows XP Retro PC":{},"Exploring the AlterNet":{},"The Fridge, Your Inoculation Room":{},"Pinball Machines in a Jenever Museum":{},"20 Years of Personal Cellphone History":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["rare",{"_index":3218,"title":{},"content":{"Concentrating on serendipitous creativity":{},"Teaching Object-Oriented design using the GBA":{},"How Much Should I Spend On Magic The Gathering":{},"Rules of a Creator's Life":{}},"tags":{}}],["rascal",{"_index":10968,"title":{},"content":{"What a Night Cam Is Good For":{}},"tags":{}}],["raspberri",{"_index":4579,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["raster",{"_index":5668,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["rata",{"_index":6871,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["rate",{"_index":5657,"title":{},"content":{"3D Software Rendering on the GBA":{},"An am486 Performance Analysis":{},"WinXP Upgrade: Sound Blaster X-Fi":{},"Thoughts on Bullshit Jobs":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"You Shouldn't Use Spotify":{},"The Decline of Battery Life":{},"Ditch Scrum, Organize As You See Fit":{},"Questionable Game Publishing Methods":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"What a Night Cam Is Good For":{},"Choosing an Audio Codec":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["ratio",{"_index":9884,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["rational",{"_index":8496,"title":{},"content":{"Cheese cheese cheese cheese cheese":{}},"tags":{}}],["rationalist",{"_index":8391,"title":{},"content":{"What if Seneca wasn't Nero's advisor?":{}},"tags":{}}],["rattl",{"_index":8635,"title":{},"content":{"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["ravag",{"_index":8313,"title":{},"content":{"Water Levels As Public Data":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["raw",{"_index":5787,"title":{},"content":{"An am486 Performance Analysis":{},"How to write academic papers in Markdown":{},"Water Levels As Public Data":{},"The HP Sprocket Mini Printer":{},"Natural Gas Prices and The Energy Market":{},"Water Usage and Prices":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["raw_alpha",{"_index":10417,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["rawcont",{"_index":8238,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{}},"tags":{}}],["ray",{"_index":5641,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["rayman",{"_index":9257,"title":{},"content":{"Questionable Game Publishing Methods":{},"January 2022 In Review":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["rayman'",{"_index":9259,"title":{},"content":{"Questionable Game Publishing Methods":{}},"tags":{}}],["raymanlegends.jpg",{"_index":9261,"title":{},"content":{"Questionable Game Publishing Methods":{}},"tags":{}}],["re",{"_index":1066,"title":{"Re: Is collecting physical games worth it?":{},"Re: Writing A Book Is Nonesense":{}},"content":{"undefined":{},"Journaling in practice":{},"Teaching Object-Oriented design using the GBA":{},"Combining async with generators in Node 11":{},"Thoughts on collaboration in education":{},"An am486 Performance Analysis":{},"On Manuscript Review Procedures":{},"Re: Is collecting physical games worth it?":{},"Belgium - Portugal: 5 - 2":{},"Double-dipping and Market Prices":{},"Very Old and Somewhat Old Mood Boards":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Expiry Dates On Journals":{},"February 2022 In Review":{},"How To Stream Your Own Music: Reprise":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"March 2022 In Review":{}},"tags":{}}],["reach",{"_index":2376,"title":{},"content":{"Are you handing over enough when inspiring someone?":{},"A quick look at 6 fountain pens":{},"Nuts about local nuts":{},"Concentrating on serendipitous creativity":{},"Computer Science learning pathways":{},"The Startup of a Lean Doctorate":{},"Using Pandoc to publish a book":{},"Re: Is collecting physical games worth it?":{},"How Much Should I Spend On Magic The Gathering":{},"Creativity Self-Assessment Is Nonsense":{},"Where Does It Stop?":{},"A Creative State of Mind":{},"2021 Donations":{},"Re: Writing A Book Is Nonesense":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["react",{"_index":2174,"title":{"Migrating from Extjs to React gradually":{}},"content":{"Migrating from Extjs to React gradually":{}},"tags":{"Migrating from Extjs to React gradually":{}}}],["react.compon",{"_index":2235,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["react/mod/someurl",{"_index":2218,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["react/some/detail/url",{"_index":2242,"title":{},"content":{"Migrating from Extjs to React gradually":{}},"tags":{}}],["reacti",{"_index":10794,"title":{},"content":{"On Trying To Sell A Laptop":{}},"tags":{}}],["reaction",{"_index":3041,"title":{},"content":{"2017 in books":{},"20 Years of Personal Cellphone History":{},"Woke in Class":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["reactjsaccord",{"_index":5248,"title":{},"content":{"Page Building with Brizy in Wordpress":{}},"tags":{}}],["span>cookson",{"_index":5730,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["span>goethelaura",{"_index":5619,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["span>neal",{"_index":6604,"title":{},"content":{"The Productive Programmer on Mac":{}},"tags":{}}],["span>smyth",{"_index":5709,"title":{},"content":{"Thoughts on collaboration in education":{}},"tags":{}}],["spanish",{"_index":2885,"title":{},"content":{"Nuts about local nuts":{},"Technical Knowledge Brews Creativity":{}},"tags":{}}],["spar",{"_index":5106,"title":{},"content":{"Five reasons why agile and academia don't go together":{}},"tags":{}}],["spare",{"_index":6115,"title":{},"content":{"Building a Core2Duo Windows XP Retro PC":{},"Re: Is collecting physical games worth it?":{},"The Fridge, Your Inoculation Room":{},"The Decline of Battery Life":{}},"tags":{}}],["sparerib",{"_index":380,"title":{},"content":{"No, vegetarians do not eat fish!":{}},"tags":{}}],["sparingli",{"_index":10778,"title":{},"content":{"On Trying To Sell A Laptop":{}},"tags":{}}],["spark",{"_index":3159,"title":{},"content":{"Take your time.":{},"The insanity of collecting retro games":{},"A Triumph For Blogging":{},"The Lost Art of Being Lost":{}},"tags":{}}],["sparkl",{"_index":6673,"title":{},"content":{"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{}},"tags":{}}],["spati",{"_index":1117,"title":{},"content":{"undefined":{}},"tags":{}}],["spawn",{"_index":1432,"title":{},"content":{"undefined":{}},"tags":{}}],["speak",{"_index":2483,"title":{},"content":{"How to teach kids to program":{},"Journaling in practice":{},"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":{},"A journey through the history of webdesign":{},"Building a Core2Duo Windows XP Retro PC":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Software Engineering Is Not Engineering":{},"On Tea Prices":{},"Kotlin Is Java 2.0, But It's Still Java":{},"From Curiosity To Creativity":{},"December 2021 In Review":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["speaker",{"_index":5884,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{},"Once Upon a Time in Shaolin":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["spec",{"_index":5763,"title":{},"content":{"An am486 Performance Analysis":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Exploring the AlterNet":{}},"tags":{}}],["speciaal",{"_index":633,"title":{},"content":{"undefined":{},"Over analoog en digitaal":{}},"tags":{}}],["special",{"_index":264,"title":{},"content":{"On finding your inner zen in big cities":{},"Learning to become a baker":{},"undefined":{},"A quick look at 6 fountain pens":{},"Inventing - for the worse?":{},"Computer Science learning pathways":{},"Reverse engineering a curriculum":{},"Hugo Extended: More static site processing power!":{},"Using Pandoc to publish a book":{},"Combining async with generators in Node 11":{},"ITiCSE 2020: A Report":{},"Tracking and privacy concerns on websites":{},"486 Upgrade 2: The SD Card HDD":{},"486 Upgrade 1: Sound Blaster 16":{},"Building a Core2Duo Windows XP Retro PC":{},"My Retro Desk/Gaming Setup in 2021":{},"Thirty-Six":{},"Parking Machines Design Mistakes":{},"Creative Critical Thinking":{},"Where Does It Stop?":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Generating a Blogroll With OPML in Hugo":{},"Academic Lineage":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["specialist",{"_index":4763,"title":{},"content":{"IT Competences and Certificates":{},"Software Engineering Is Not Engineering":{}},"tags":{}}],["specialti",{"_index":2739,"title":{},"content":{"A quick look at 6 fountain pens":{},"Academese Gems":{},"Pinball Machines in a Jenever Museum":{}},"tags":{}}],["specif",{"_index":1879,"title":{},"content":{"Custom Webdriver Page Factories":{},".NET Memory management VS JVM Memory management":{},"Programming: a Creative Cognitive Process":{},"Page Building with Brizy in Wordpress":{},"What is Creativity in Software Engineering?":{},"How to write academic papers in Markdown":{},"Exploring the AlterNet":{},"Getting rid of trackers using LineageOS":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Academese Gems":{},"Are You In The System Yet, Sir?":{},"Ever-increasing Work Email Spam":{},"From Analog Notebook to Digital Vault":{},"January 2022 In Review":{},"Expiry Dates On Journals":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["specifi",{"_index":1330,"title":{},"content":{"Unit Testing Stored Procedures":{},"Bye autotools hello Scons":{}},"tags":{}}],["specifiek",{"_index":3589,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{}},"tags":{}}],["spectacular",{"_index":5356,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["spectrum",{"_index":8995,"title":{},"content":{"A Triumph For Blogging":{}},"tags":{}}],["specul",{"_index":9688,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["speculaasmengel",{"_index":9879,"title":{},"content":{"Allspice Is Not All Spice":{}},"tags":{}}],["sped",{"_index":5687,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["speech",{"_index":7211,"title":{},"content":{"Discord killed support for WinXP":{},"Ever-increasing Work Email Spam":{},"Creative Critical Thinking":{}},"tags":{}}],["speed",{"_index":1504,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Programming: a Creative Cognitive Process":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"Building an Athlon Windows 98 Retro PC":{},"Digitizing journals using DEVONthink":{},"Stop limiting yourself to JS in browsers":{},"On Manuscript Review Procedures":{},"Nineties collecting nostalgia":{},"Apple's App Store Design Mistake":{},"Where Does It Stop?":{}},"tags":{}}],["speedi",{"_index":6408,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{},"On Manuscript Review Procedures":{},"The Pilot Capless: a stellar stealth pen":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["speedili",{"_index":10169,"title":{},"content":{"Technical Knowledge Brews Creativity":{}},"tags":{}}],["speelt",{"_index":4076,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["speeltj",{"_index":5064,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["spel",{"_index":4507,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spelcasett",{"_index":4576,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spelconsol",{"_index":4583,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spelen",{"_index":4614,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spelervar",{"_index":4556,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spellbook](https://commanderspellbook.com/)'",{"_index":8523,"title":{},"content":{"Emotional Magic":{}},"tags":{}}],["spellcast",{"_index":5365,"title":{},"content":{"Project Warlock: About Perseverance":{}},"tags":{}}],["spellen",{"_index":4536,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["spells](https://jefklakscodex.com/articles/bg2",{"_index":8886,"title":{},"content":{"Favorite Game Meme":{}},"tags":{}}],["spend",{"_index":2315,"title":{"How Much Should I Spend On Magic The Gathering":{}},"content":{"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"The Productive Programmer on Mac":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"Exploring the Go programming language":{},"Emotional Magic":{}},"tags":{}}],["spenderen",{"_index":4892,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["spent",{"_index":2344,"title":{},"content":{"Teaching yourself to draw":{},"Five reasons why agile and academia don't go together":{},"On Manuscript Review Procedures":{},"Double-dipping and Market Prices":{},"The Fridge, Your Inoculation Room":{},"Parking Machines Design Mistakes":{},"A Triumph For Blogging":{},"Technical Knowledge Brews Creativity":{},"Winnie Lim on Rebuilding Oneself":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["spew",{"_index":5821,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{},"Stop limiting yourself to JS in browsers":{},"Software Engineering Is Not Engineering":{}},"tags":{}}],["spi",{"_index":9233,"title":{},"content":{"Power Usage Effectiveness":{},"Technical Knowledge Brews Creativity":{}},"tags":{}}],["spice",{"_index":2620,"title":{"Allspice Is Not All Spice":{}},"content":{"Development principles in cooking":{},"Creative Critical Thinking":{},"Allspice Is Not All Spice":{}},"tags":{}}],["spijt",{"_index":5033,"title":{},"content":{"Over Onmiddellijke Voldoening":{}},"tags":{}}],["spike",{"_index":8478,"title":{},"content":{"Cheese cheese cheese cheese cheese":{},"The Lost Art of Being Lost":{},"December 2021 In Review":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["spill",{"_index":6995,"title":{},"content":{"Getting rid of trackers using LineageOS":{},"Flea Market Season":{}},"tags":{}}],["spin",{"_index":5995,"title":{},"content":{"Reviving an old 80486 PC":{},"Thirty-Six":{}},"tags":{}}],["spirit",{"_index":8623,"title":{},"content":{"Pinball Machines in a Jenever Museum":{},"Dark Age of Camelot in 2022":{}},"tags":{}}],["spit",{"_index":7740,"title":{},"content":{"Misconceptions about retro gamers":{},"On Trying To Sell A Laptop":{}},"tags":{}}],["splash",{"_index":5856,"title":{},"content":{"486 Upgrade 2: The SD Card HDD":{}},"tags":{}}],["split",{"_index":7405,"title":{},"content":{"On Manuscript Review Procedures":{},"From Analog Notebook to Digital Vault":{}},"tags":{}}],["splitsen",{"_index":1202,"title":{},"content":{"undefined":{}},"tags":{}}],["spoil",{"_index":7739,"title":{},"content":{"Misconceptions about retro gamers":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["spoiler",{"_index":8034,"title":{},"content":{"Double-dipping and Market Prices":{}},"tags":{}}],["sponsor",{"_index":9892,"title":{},"content":{"2021 Donations":{}},"tags":{}}],["spoon",{"_index":9403,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["sporad",{"_index":2255,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["sport",{"_index":7691,"title":{},"content":{"Belgium - Portugal: 5 - 2":{},"How Not To Do A Remaster":{}},"tags":{}}],["sportswatch",{"_index":11583,"title":{},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["sportwatch",{"_index":11562,"title":{"The Death Of The Nike+ SportWatch":{}},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["sportwatch.png",{"_index":11567,"title":{},"content":{"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["spot",{"_index":3186,"title":{},"content":{"Take your time.":{},"You Shouldn't Use Spotify":{},"Lousy Wordpress Hacking Attempts detected":{},"Why I like Pawn Stars":{},"The Fridge, Your Inoculation Room":{},"On Tea Prices":{},"Water Levels As Public Data":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"Woke in Class":{}},"tags":{}}],["spotifi",{"_index":4347,"title":{"You Shouldn't Use Spotify":{}},"content":{"Productivity Tools on all platforms":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"2021 Donations":{},"How To Enjoy Your Own Digital Music":{},"Once Upon a Time in Shaolin":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["spotify](/2021/02/y",{"_index":6761,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["spotify](/post/2021/02/y",{"_index":10677,"title":{},"content":{"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["spotify](https://rubenerd.com/go",{"_index":6847,"title":{},"content":{"You Shouldn't Use Spotify":{}},"tags":{}}],["spotlight",{"_index":8099,"title":{},"content":{"The Fridge, Your Inoculation Room":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["spous",{"_index":7587,"title":{},"content":{"Social Debt in Development Teams":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["spray",{"_index":9201,"title":{},"content":{"Very Old and Somewhat Old Mood Boards":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["spread",{"_index":973,"title":{},"content":{"Learning to become a baker":{},"Migrating from Extjs to React gradually":{},"Reverse engineering a curriculum":{},"IT Competences and Certificates":{},"Combining async with generators in Node 11":{},"A Triumph For Blogging":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["spreadabl",{"_index":2626,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["spreken",{"_index":900,"title":{},"content":{"undefined":{}},"tags":{}}],["spreker",{"_index":4849,"title":{},"content":{"De zin en onzin van conferenties":{}},"tags":{}}],["spring",{"_index":2900,"title":{},"content":{"Nuts about local nuts":{},"Take your time.":{},"Over Onmiddellijke Voldoening":{},"My Kotlin Rose-Tinted Glasses Broke":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["springi",{"_index":2774,"title":{},"content":{"A quick look at 6 fountain pens":{},"A Treatise on Leavened Waffles":{}},"tags":{}}],["sprinkl",{"_index":6760,"title":{},"content":{"The insanity of collecting retro games":{}},"tags":{}}],["sprint",{"_index":4447,"title":{},"content":{"The Startup of a Lean Doctorate":{}},"tags":{}}],["sprite",{"_index":4806,"title":{},"content":{"Teaching Object-Oriented design using the GBA":{},"3D Software Rendering on the GBA":{},"A 5.25\" Gobliins 2 Surprise":{},"January 2022 In Review":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{}},"tags":{}}],["spritz",{"_index":9200,"title":{},"content":{"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["sprocket",{"_index":8924,"title":{"The HP Sprocket Mini Printer":{}},"content":{"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{}},"tags":{}}],["sprocket](https://sprocketprinters.com",{"_index":8930,"title":{},"content":{"The HP Sprocket Mini Printer":{}},"tags":{}}],["sprout",{"_index":9663,"title":{},"content":{"From Curiosity To Creativity":{}},"tags":{}}],["sprung",{"_index":7565,"title":{},"content":{"Social Debt in Development Teams":{}},"tags":{}}],["sql",{"_index":1313,"title":{},"content":{"Unit Testing Stored Procedures":{},"Kotlin Is Java 2.0, But It's Still Java":{}},"tags":{"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{}}}],["sqlite",{"_index":1652,"title":{"Integration Testing with SQLite":{}},"content":{"Integration Testing with SQLite":{},"Programming on the Apple M1 Silicon":{}},"tags":{"Integration Testing with SQLite":{}}}],["sqlite](http://www.sqlite.org",{"_index":1679,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqlitecommand",{"_index":1703,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqlitecommand.executenonqueri",{"_index":1708,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqliteconnect",{"_index":1692,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqliteconnectionflags.logal",{"_index":1697,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["sqlitedbconnect",{"_index":1693,"title":{},"content":{"Integration Testing with SQLite":{}},"tags":{}}],["squabbl",{"_index":10459,"title":{},"content":{"Minimalism and Tidying Up":{}},"tags":{}}],["squad",{"_index":7170,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["squander",{"_index":8054,"title":{},"content":{"Double-dipping and Market Prices":{}},"tags":{}}],["squar",{"_index":2654,"title":{},"content":{"Healing creative scars":{},"Five reasons why agile and academia don't go together":{},"3D Software Rendering on the GBA":{},"Water Levels As Public Data":{}},"tags":{}}],["squeak",{"_index":10577,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["squeez",{"_index":3228,"title":{},"content":{"Concentrating on serendipitous creativity":{}},"tags":{}}],["src",{"_index":1473,"title":{},"content":{"undefined":{},"Bye autotools hello Scons":{},"Migrating from Extjs to React gradually":{},"Hugo Extended: More static site processing power!":{},"RSS Feeds, Hugo, and Lazy Image Loading":{}},"tags":{}}],["src=\"/img/wine.jpg",{"_index":4154,"title":{},"content":{"Over tijdsbesef":{}},"tags":{}}],["src](https://www.slideshare.net/medikawy_2005/how",{"_index":4953,"title":{},"content":{"Programming: a Creative Cognitive Process":{}},"tags":{}}],["ss",{"_index":866,"title":{},"content":{"undefined":{}},"tags":{}}],["ssd",{"_index":5138,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["ssh",{"_index":1386,"title":{},"content":{"undefined":{},"DIY: Hosting stuff on your own VPS":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["sshd_config",{"_index":5146,"title":{},"content":{"DIY: Hosting stuff on your own VPS":{}},"tags":{}}],["sshlogin.exp",{"_index":1410,"title":{},"content":{"undefined":{}},"tags":{}}],["ssl",{"_index":5595,"title":{},"content":{"Tracking and privacy concerns on websites":{}},"tags":{}}],["st",{"_index":335,"title":{},"content":{"On finding your inner zen in big cities":{},"Allspice Is Not All Spice":{}},"tags":{}}],["staan",{"_index":3639,"title":{},"content":{"Over het introduceren van bedrijfsethiek":{},"Over de inflatie van intellect":{},"De zin en onzin van conferenties":{}},"tags":{}}],["staat",{"_index":743,"title":{},"content":{"undefined":{},"Over het introduceren van bedrijfsethiek":{},"Over tijdsbesef":{}},"tags":{}}],["stab",{"_index":10362,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["stabil",{"_index":2106,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["stabl",{"_index":3510,"title":{},"content":{"Teaching by philosophy":{},"Natural Gas Prices and The Energy Market":{}},"tags":{}}],["stack",{"_index":1198,"title":{},"content":{"undefined":{},"Death to pseudocode?":{},"Thoughts on collaboration in education":{},"Teaching students about coding trends":{},"Nineties collecting nostalgia":{},"Academese Gems":{},"Misconceptions about retro gamers":{},"YouTube Play Image Links in Hugo":{},"Dear Student":{},"Technical Knowledge Brews Creativity":{},"The Creative Techniques Toolbox":{}},"tags":{}}],["stack/blob/main/src/youtube/thumbify.j",{"_index":7963,"title":{},"content":{"YouTube Play Image Links in Hugo":{}},"tags":{}}],["stackoverflow",{"_index":3258,"title":{},"content":{"Death to pseudocode?":{},"Combining async with generators in Node 11":{}},"tags":{}}],["stacktrac",{"_index":2119,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["stad",{"_index":4073,"title":{},"content":{"Over tijdsbesef":{},"February 2022 In Review":{}},"tags":{}}],["stad](https://www.goodreads.com/book/show/36402290",{"_index":11244,"title":{},"content":{"February 2022 In Review":{}},"tags":{}}],["staff",{"_index":9173,"title":{},"content":{"Ever-increasing Work Email Spam":{},"January 2022 In Review":{}},"tags":{}}],["stage",{"_index":2529,"title":{},"content":{"A samurai learning mindset":{},"Healing creative scars":{},"A Decade in the Software Engineering industry":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["stagger",{"_index":2611,"title":{},"content":{"Development principles in cooking":{},"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["stagnat",{"_index":4412,"title":{},"content":{"A Decade in the Software Engineering industry":{},"I'm Joining the Coffeeneuring Challenge of 2021":{}},"tags":{}}],["stain",{"_index":7899,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["stair",{"_index":8457,"title":{},"content":{"Accidental Discovery By Bike: Fietsknooppunten":{}},"tags":{}}],["stake",{"_index":10620,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["staleelementexcept",{"_index":2111,"title":{},"content":{"Webdriver Exception Handling":{}},"tags":{}}],["stalk",{"_index":11162,"title":{},"content":{"An Ad Leaflet QR Design Mistake":{}},"tags":{}}],["stallman",{"_index":7251,"title":{},"content":{"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["stallman](https://rm",{"_index":7260,"title":{},"content":{"Stop limiting yourself to JS in browsers":{}},"tags":{}}],["stamp",{"_index":2799,"title":{},"content":{"Journaling in practice":{}},"tags":{}}],["stanc",{"_index":5583,"title":{},"content":{"Tracking and privacy concerns on websites":{},"Re: Writing A Book Is Nonesense":{}},"tags":{}}],["stand",{"_index":3130,"title":{},"content":{"Take your time.":{},"Concentrating on serendipitous creativity":{},"A Ph.D. Thesis Proposal":{},"The Startup of a Lean Doctorate":{},"Combining async with generators in Node 11":{},"Ditch Scrum, Organize As You See Fit":{},"Very Old and Somewhat Old Mood Boards":{},"December 2021 In Review":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["standaard",{"_index":577,"title":{},"content":{"undefined":{}},"tags":{}}],["standalone=\\\"yes\\\"?>\\r\\n\\r\\n\\tpingback.ping\\r\\n\\t\\r\\n\\t\\t\\r\\n\\t\\t\\thttps://aylesbur",{"_index":11455,"title":{},"content":{"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["standard",{"_index":5103,"title":{},"content":{"Five reasons why agile and academia don't go together":{},"An am486 Performance Analysis":{},"The IndieWeb Mixed Bag":{},"Host your own webmention receiver":{},"Belgium - Portugal: 5 - 2":{},"How Much Should I Spend On Magic The Gathering":{},"The HP Sprocket Mini Printer":{},"A Triumph For Blogging":{},"Three Little GameCube Mods":{},"A Factor Analysis For Dummies in R":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{}},"tags":{}}],["stapelt",{"_index":4195,"title":{},"content":{"Boeken die mij gevormd hebben tot wie ik ben":{}},"tags":{}}],["stapl",{"_index":9140,"title":{},"content":{"Ditch Scrum, Organize As You See Fit":{}},"tags":{}}],["star",{"_index":2892,"title":{"Why I like Pawn Stars":{}},"content":{"Nuts about local nuts":{},"Reverse engineering a curriculum":{},"An am486 Performance Analysis":{},"Flea Market Season":{},"Why I like Pawn Stars":{},"Pinball Machines in a Jenever Museum":{},"Exporting Goodreads to Obsidian":{}},"tags":{}}],["stare",{"_index":2364,"title":{},"content":{"Teaching yourself to draw":{},"Take your time.":{},"Where Does It Stop?":{},"November 2021 Meta Post":{},"2021 Year In Review":{}},"tags":{}}],["stark",{"_index":10559,"title":{},"content":{"The Creative Techniques Toolbox":{}},"tags":{}}],["starri",{"_index":7471,"title":{},"content":{"Moon Logic":{}},"tags":{}}],["start",{"_index":74,"title":{},"content":{"Ending your day with happy thoughts":{},"On finding your inner zen in big cities":{},"No, vegetarians do not eat fish!":{},"Learning to become a baker":{},"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":{},"Teaching yourself to draw":{},"Are you handing over enough when inspiring someone?":{},"A samurai learning mindset":{},"Development principles in cooking":{},"Healing creative scars":{},"Journaling in practice":{},"Nuts about local nuts":{},"I'm jealous of my dog":{},"Inventing - for the worse?":{},"2017 in books":{},"Take your time.":{},"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":{},"Project Warlock: About Perseverance":{},"Designing websites with accessibility in mind":{},"3D Software Rendering on the GBA":{},"486 Upgrade 2: The SD Card HDD":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"Personal Desktop Screenshots of Olde":{},"Programming on the Apple M1 Silicon":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"Exploring the AlterNet":{},"Getting rid of trackers using LineageOS":{},"Teaching students about coding trends":{},"The IndieWeb Mixed Bag":{},"Discord killed support for WinXP":{},"Exploring the Go programming language":{},"The first Dutch Obsidian meetup":{},"On Manuscript Review Procedures":{},"Academese Gems":{},"Software Engineering Is Not Engineering":{},"The Pilot Capless: a stellar stealth pen":{},"Apple's App Store Design Mistake":{},"Book Number Fourteen":{},"Water Levels As Public Data":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Emotional Magic":{},"On Selling a Self-published Book":{},"My Kotlin Rose-Tinted Glasses Broke":{},"Thirty-Six":{},"20 Years of Personal Cellphone History":{},"A Note About Footnotes":{},"A Triumph For Blogging":{},"Are Digital Gardens Blogs?":{},"Questionable Game Publishing Methods":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"From Curiosity To Creativity":{},"How Not To Do A Remaster":{},"Where Does It Stop?":{},"Migrating from Mailchimp to Listmonk":{},"Technical Knowledge Brews Creativity":{},"Why Mastodon Isn't Great For Serendipity":{},"Why I Play Games (And So Should You)":{},"2021 Year In Review":{},"How To Enjoy Your Own Digital Music":{},"On Trying To Sell A Laptop":{},"Once Upon a Time in Shaolin":{},"What a Night Cam Is Good For":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Creativity Equals Messy Code?":{},"Leuchtturm Notebook Paper Quality":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{},"March 2022 In Review":{},"None Of My Best Friends Are Content Creators":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["startbutton",{"_index":1887,"title":{},"content":{"Custom Webdriver Page Factories":{}},"tags":{}}],["starten",{"_index":4585,"title":{},"content":{"Over analoog en digitaal":{}},"tags":{}}],["starter",{"_index":2018,"title":{},"content":{".NET Memory management VS JVM Memory management":{},"Three Little GameCube Mods":{}},"tags":{}}],["startl",{"_index":9409,"title":{},"content":{"Constraint-based Creativity":{}},"tags":{}}],["startup",{"_index":1994,"title":{"The Startup of a Lean Doctorate":{}},"content":{".NET Memory management VS JVM Memory management":{},"Unit testing in Legacy Projects: VB6":{},"486 Upgrade 2: The SD Card HDD":{},"2021 Donations":{}},"tags":{}}],["startupproject=unittests\\unittests.vbp",{"_index":2294,"title":{},"content":{"Unit testing in Legacy Projects: VB6":{}},"tags":{}}],["stash",{"_index":8218,"title":{},"content":{"Reducing Workflow Load Facilitates Writing":{},"March 2022 In Review":{}},"tags":{}}],["stat",{"_index":5442,"title":{},"content":{"Combining async with generators in Node 11":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Cool Things People Do With Their Blogs":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["stat(res)).isdirectori",{"_index":5448,"title":{},"content":{"Combining async with generators in Node 11":{}},"tags":{}}],["state",{"_index":2077,"title":{"A Creative State of Mind":{}},"content":{"Unit Testing Extjs UI with Siesta":{},"Teaching yourself to draw":{},"A samurai learning mindset":{},"I'm jealous of my dog":{},"Take your time.":{},"Over analoog en digitaal":{},"Unit Testing PicoBlaze Assembly files":{},"My Retro Desk/Gaming Setup in 2021":{},"Teaching students about coding trends":{},"Discord killed support for WinXP":{},"Stop limiting yourself to JS in browsers":{},"Flea Market Season":{},"Apple's App Store Design Mistake":{},"Emotional Magic":{},"Parking Machines Design Mistakes":{},"How Not To Do A Remaster":{},"A Creative State of Mind":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Re: Writing A Book Is Nonesense":{},"The Creative Techniques Toolbox":{},"Expiry Dates On Journals":{}},"tags":{}}],["statement",{"_index":1060,"title":{},"content":{"undefined":{},"Integration Testing with SQLite":{},"Productivity Tools on all platforms":{},"20 Years of Personal Cellphone History":{},"A Note About Footnotes":{},"The Creative Techniques Toolbox":{},"Woke in Class":{},"Water Usage and Prices":{},"Expiry Dates On Journals":{}},"tags":{}}],["static",{"_index":1612,"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":{},"A journey through the history of webdesign":{},"Always have a Diaster Recovery Plan":{},"Lousy Wordpress Hacking Attempts detected":{},"Stop limiting yourself to JS in browsers":{},"Using Hugo to Launch a Gemini Capsule":{},"Host your own webmention receiver":{},"Social Debt in Development Teams":{},"Apple's App Store Design Mistake":{},"My Kotlin Rose-Tinted Glasses Broke":{}},"tags":{}}],["static_method",{"_index":1167,"title":{},"content":{"undefined":{}},"tags":{}}],["station",{"_index":222,"title":{},"content":{"On finding your inner zen in big cities":{},"Bye autotools hello Scons":{},"Concentrating on serendipitous creativity":{},"How Not To Do A Remaster":{}},"tags":{}}],["statist",{"_index":3034,"title":{},"content":{"2017 in books":{},"ITiCSE 2020: A Report":{},"Thoughts on collaboration in education":{},"Belgium - Portugal: 5 - 2":{},"Ever-increasing Work Email Spam":{},"A Factor Analysis For Dummies in R":{},"Winnie Lim on Rebuilding Oneself":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["statista",{"_index":8162,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["statista.com",{"_index":10238,"title":{},"content":{"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["stats](https://roytang.net/page/stats/awstat",{"_index":11365,"title":{},"content":{"Cool Things People Do With Their Blogs":{}},"tags":{}}],["statu",{"_index":3098,"title":{},"content":{"Hiding Code Complexity":{},"Thoughts on collaboration in education":{},"Personal Desktop Screenshots of Olde":{},"Collective Creativity":{},"Ditch Scrum, Organize As You See Fit":{},"A Creative State of Mind":{}},"tags":{}}],["status",{"_index":3104,"title":{},"content":{"Hiding Code Complexity":{}},"tags":{}}],["stay",{"_index":3160,"title":{},"content":{"Take your time.":{},"A Decade in the Software Engineering industry":{},"Designing websites with accessibility in mind":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The first Dutch Obsidian meetup":{},"Reducing Workflow Load Facilitates Writing":{},"The Monthly Retro Screenshot Guessing Quiz":{},"The Creative Techniques Toolbox":{},"Winnie Lim on Rebuilding Oneself":{},"Freshly Baked Thoughts":{}},"tags":{}}],["std",{"_index":551,"title":{},"content":{"undefined":{}},"tags":{}}],["std.alpha",{"_index":10418,"title":{},"content":{"A Factor Analysis For Dummies in R":{}},"tags":{}}],["std::cout",{"_index":608,"title":{},"content":{"undefined":{}},"tags":{}}],["std::shared_ptrat",{"_index":5503,"title":{},"content":{"Designing websites with accessibility in mind":{}},"tags":{}}],["time_",{"_index":6541,"title":{},"content":{"Digitizing journals using DEVONthink":{},"Are You In The System Yet, Sir?":{}},"tags":{}}],["timelin",{"_index":6135,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{}},"tags":{}}],["timeout",{"_index":1429,"title":{},"content":{"undefined":{},"Always have a Diaster Recovery Plan":{},"The Death Of The Nike+ SportWatch":{}},"tags":{}}],["times](/post/2021/05/r",{"_index":7749,"title":{},"content":{"Misconceptions about retro gamers":{}},"tags":{}}],["timestamp",{"_index":1479,"title":{},"content":{"undefined":{},"The first Dutch Obsidian meetup":{},"Visualizing Personal Data Takeouts":{}},"tags":{}}],["tini",{"_index":56,"title":{},"content":{"Ending your day with happy thoughts":{},"Reducing Workflow Load Facilitates Writing":{},"The HP Sprocket Mini Printer":{},"Questionable Game Publishing Methods":{},"The Emperor of Lists":{},"2021 Year In Review":{},"What a Night Cam Is Good For":{}},"tags":{}}],["tinker",{"_index":7223,"title":{},"content":{"Exploring the Go programming language":{},"A 5.25\" Gobliins 2 Surprise":{},"Thoughts On Home NAS Systems":{},"Cool Things People Do With Their Blogs":{}},"tags":{}}],["tint",{"_index":8665,"title":{"My Kotlin Rose-Tinted Glasses Broke":{}},"content":{"My Kotlin Rose-Tinted Glasses Broke":{}},"tags":{}}],["tiob",{"_index":7108,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["tip",{"_index":163,"title":{},"content":{"Ending your day with happy thoughts":{},"undefined":{},"How to teach kids to program":{},"The Internet Killed Secrets in Games":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The Productive Programmer on Mac":{},"Belgium - Portugal: 5 - 2":{},"Very Old and Somewhat Old Mood Boards":{}},"tags":{}}],["tire",{"_index":4408,"title":{},"content":{"A Decade in the Software Engineering industry":{},"Personal Desktop Screenshots of Olde":{},"Are You In The System Yet, Sir?":{},"Collective Creativity":{},"March 2022 In Review":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["tiresom",{"_index":6812,"title":{},"content":{"How to write academic papers in Markdown":{}},"tags":{}}],["titan",{"_index":8707,"title":{},"content":{"Thirty-Six":{}},"tags":{}}],["titanium",{"_index":2765,"title":{},"content":{"A quick look at 6 fountain pens":{}},"tags":{}}],["titel",{"_index":3782,"title":{},"content":{"A Ph.D. Thesis Proposal":{}},"tags":{}}],["titl",{"_index":471,"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":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Social Debt in Development Teams":{},"Apple's App Store Design Mistake":{},"Ditch Scrum, Organize As You See Fit":{},"Constraint-based Creativity":{},"Exporting Goodreads to Obsidian":{},"Generating a Blogroll With OPML in Hugo":{},"My Retrocomputing Projects For 2022":{},"Equality in Game Credits":{},"None Of My Best Friends Are Content Creators":{}},"tags":{}}],["title/author/publish",{"_index":9563,"title":{},"content":{"The Emperor of Lists":{}},"tags":{}}],["title=\"brain",{"_index":10371,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["title>supblog",{"_index":11643,"title":{},"content":{"Freshly Baked Thoughts":{}},"tags":{}}],["xm",{"_index":1988,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["xmb/sec",{"_index":7990,"title":{},"content":{"Apple's App Store Design Mistake":{}},"tags":{}}],["xml",{"_index":6958,"title":{},"content":{"Exploring the AlterNet":{},"The IndieWeb Mixed Bag":{},"Generating a Blogroll With OPML in Hugo":{},"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["xmlrpc",{"_index":11452,"title":{},"content":{"Fighting Webmention And Pingback Spam":{}},"tags":{}}],["xmlurl=\"http://brainbaking.com/index.xml",{"_index":10375,"title":{},"content":{"Generating a Blogroll With OPML in Hugo":{}},"tags":{}}],["xmx",{"_index":1987,"title":{},"content":{".NET Memory management VS JVM Memory management":{}},"tags":{}}],["xp",{"_index":1288,"title":{"Building a Core2Duo Windows XP Retro PC":{}},"content":{"Unit Testing Stored Procedures":{},"Building a Core2Duo Windows XP Retro PC":{},"Building an Athlon Windows 98 Retro PC":{},"Discord killed support for WinXP":{},"My Retrocomputing Projects For 2022":{}},"tags":{}}],["xperia",{"_index":7026,"title":{},"content":{"Getting rid of trackers using LineageOS":{},"The Decline of Battery Life":{}},"tags":{}}],["xs1",{"_index":10203,"title":{},"content":{"Three Little GameCube Mods":{}},"tags":{}}],["xtreme",{"_index":6390,"title":{},"content":{"WinXP Upgrade: Sound Blaster X-Fi":{}},"tags":{}}],["xul",{"_index":7188,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["xxl",{"_index":5648,"title":{},"content":{"3D Software Rendering on the GBA":{}},"tags":{}}],["xz1",{"_index":7021,"title":{},"content":{"Getting rid of trackers using LineageOS":{}},"tags":{}}],["y",{"_index":128,"title":{},"content":{"Ending your day with happy thoughts":{},"undefined":{},"Healing creative scars":{},"IT Competences and Certificates":{},"The insanity of collecting retro games":{},"Creativity Self-Assessment Is Nonsense":{},"Dark Age of Camelot in 2022":{},"Natural Gas Prices and The Energy Market":{},"Equality in Game Credits":{}},"tags":{}}],["y.get",{"_index":563,"title":{},"content":{"undefined":{}},"tags":{}}],["y_",{"_index":8823,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{}},"tags":{}}],["ya!\"_",{"_index":7923,"title":{},"content":{"Why I like Pawn Stars":{}},"tags":{}}],["yadda",{"_index":7198,"title":{},"content":{"Discord killed support for WinXP":{}},"tags":{}}],["yagi",{"_index":2539,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["yagni](/img/yagni1.p",{"_index":2636,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["yagyu",{"_index":2508,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["yagyū'",{"_index":2524,"title":{},"content":{"A samurai learning mindset":{}},"tags":{}}],["yahoo",{"_index":10233,"title":{},"content":{"Why Mastodon Isn't Great For Serendipity":{}},"tags":{}}],["yama",{"_index":8212,"title":{},"content":{"On Tea Prices":{}},"tags":{}}],["yamaha",{"_index":5886,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["yank",{"_index":10698,"title":{},"content":{"How To Enjoy Your Own Digital Music":{}},"tags":{}}],["yarn",{"_index":7078,"title":{},"content":{"Teaching students about coding trends":{}},"tags":{}}],["yay",{"_index":1345,"title":{},"content":{"Unit Testing Stored Procedures":{},"3D Software Rendering on the GBA":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"Ever-increasing Work Email Spam":{},"Migrating from Mailchimp to Listmonk":{}},"tags":{}}],["ye",{"_index":142,"title":{},"content":{"Ending your day with happy thoughts":{},"Enhancing the builder pattern with closures":{},"Journaling in practice":{},"I'm jealous of my dog":{},"2017 in books":{},"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":{},"Combining async with generators in Node 11":{},"Building an Athlon Windows 98 Retro PC":{},"Why I like Pawn Stars":{},"Double-dipping and Market Prices":{},"How Much Should I Spend On Magic The Gathering":{},"Dear Student":{},"A Treatise on Leavened Waffles":{},"Minimalism and Tidying Up":{},"How to setup Pi-Hole on a Synology NAS":{},"Creativity Equals Messy Code?":{},"How To Stream Your Own Music: Reprise":{}},"tags":{}}],["yeah",{"_index":6821,"title":{},"content":{"How to write academic papers in Markdown":{},"You Shouldn't Use Spotify":{},"Always have a Diaster Recovery Plan":{},"Moon Logic":{},"A Note About Footnotes":{},"The HP Sprocket Mini Printer":{},"Parking Machines Design Mistakes":{},"Questionable Game Publishing Methods":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["year",{"_index":6,"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":{},"20 Years of Personal Cellphone History":{},"Archive by year: 2021":{},"2021 Year In Review":{},"Archive by year: 2022":{}},"content":{"Ending your day with happy thoughts":{},"Learning to become a baker":{},"Enhancing the builder pattern with closures":{},"Integration Testing with SQLite":{},"Teaching yourself to draw":{},"How to teach kids to program":{},"A samurai learning mindset":{},"Development principles in cooking":{},"Healing creative scars":{},"Inventing - for the worse?":{},"2017 in books":{},"Teaching by philosophy":{},"Computer Science learning pathways":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"The Startup of a Lean Doctorate":{},"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":{},"Project Warlock: About Perseverance":{},"ITiCSE 2020: A Report":{},"3D Software Rendering on the GBA":{},"Thoughts on collaboration in education":{},"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Building an Athlon Windows 98 Retro PC":{},"Personal Desktop Screenshots of Olde":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"What is Creativity in Software Engineering?":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"The insanity of collecting retro games":{},"You Shouldn't Use Spotify":{},"Getting rid of trackers using LineageOS":{},"Lousy Wordpress Hacking Attempts detected":{},"The IndieWeb Mixed Bag":{},"Exploring the Go programming language":{},"Using Hugo to Launch a Gemini Capsule":{},"On Manuscript Review Procedures":{},"Moon Logic":{},"Nineties collecting nostalgia":{},"Academese Gems":{},"Belgium - Portugal: 5 - 2":{},"Flea Market Season":{},"Misconceptions about retro gamers":{},"Software Engineering Is Not Engineering":{},"The Pilot Capless: a stellar stealth pen":{},"Double-dipping and Market Prices":{},"How Much Should I Spend On Magic The Gathering":{},"On Tea Prices":{},"Reducing Workflow Load Facilitates Writing":{},"The Decline of Battery Life":{},"Water Levels As Public Data":{},"What if Seneca wasn't Nero's advisor?":{},"Accidental Discovery By Bike: Fietsknooppunten":{},"Emotional Magic":{},"On Selling a Self-published Book":{},"Thirty-Six":{},"Are You In The System Yet, Sir?":{},"Parking Machines Design Mistakes":{},"A Triumph For Blogging":{},"Very Old and Somewhat Old Mood Boards":{},"Power Usage Effectiveness":{},"A 5.25\" Gobliins 2 Surprise":{},"The Emperor of Lists":{},"Exporting Goodreads to Obsidian":{},"From Curiosity To Creativity":{},"How Not To Do A Remaster":{},"Where Does It Stop?":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Monthly Retro Screenshot Guessing Quiz":{},"November 2021 Meta Post":{},"Seneca on How to Live":{},"Technical Knowledge Brews Creativity":{},"Three Little GameCube Mods":{},"Dark Age of Camelot in 2022":{},"Generating a Blogroll With OPML in Hugo":{},"Minimalism and Tidying Up":{},"Natural Gas Prices and The Energy Market":{},"The Creative Techniques Toolbox":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"2021 Year In Review":{},"How To Enjoy Your Own Digital Music":{},"January 2022 In Review":{},"On Trying To Sell A Laptop":{},"Once Upon a Time in Shaolin":{},"Thoughts On Home NAS Systems":{},"Water Usage and Prices":{},"What a Night Cam Is Good For":{},"Choosing an Audio Codec":{},"Creativity Equals Messy Code?":{},"Expiry Dates On Journals":{},"February 2022 In Review":{},"The Analogue Pocket: The Definitive Game Boy Handheld?":{},"Cool Things People Do With Their Blogs":{},"Equality in Game Credits":{},"Fighting Webmention And Pingback Spam":{},"Password Hacking Sylvester & Tweety: Breakfast on the Run":{},"The Death Of The Nike+ SportWatch":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["year/th",{"_index":10614,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["year](/post/2020/04/vp",{"_index":6922,"title":{},"content":{"Always have a Diaster Recovery Plan":{}},"tags":{}}],["yearli",{"_index":6542,"title":{},"content":{"Digitizing journals using DEVONthink":{},"My Retro Desk/Gaming Setup in 2021":{},"Teaching students about coding trends":{},"How Much Should I Spend On Magic The Gathering":{},"Favorite Game Meme":{},"Water Usage and Prices":{}},"tags":{}}],["yearlong",{"_index":10612,"title":{},"content":{"Winnie Lim on Rebuilding Oneself":{}},"tags":{}}],["yearnot",{"_index":10674,"title":{},"content":{},"tags":{"2021 Year In Review":{}}}],["years](/post/2017/07/journ",{"_index":8927,"title":{},"content":{"The HP Sprocket Mini Printer":{}},"tags":{}}],["years](/post/2022/01/natur",{"_index":10922,"title":{},"content":{"Water Usage and Prices":{}},"tags":{}}],["yeast",{"_index":941,"title":{},"content":{"Learning to become a baker":{},"The Fridge, Your Inoculation Room":{},"On Selling a Self-published Book":{},"A Note About Footnotes":{},"Are Digital Gardens Blogs?":{},"A Treatise on Leavened Waffles":{},"Creative Critical Thinking":{}},"tags":{}}],["yeast](https://www.goodreads.com/book/show/34757361",{"_index":8784,"title":{},"content":{"A Note About Footnotes":{}},"tags":{}}],["yell",{"_index":3129,"title":{},"content":{"Take your time.":{},"Exploring the AlterNet":{},"Rules of a Creator's Life":{},"Are You In The System Yet, Sir?":{},"Creative Critical Thinking":{},"From Curiosity To Creativity":{},"Woke in Class":{}},"tags":{}}],["yellow",{"_index":6177,"title":{},"content":{"Building an Athlon Windows 98 Retro PC":{},"How Much Should I Spend On Magic The Gathering":{},"A 5.25\" Gobliins 2 Surprise":{},"Wax Seals And Snail Mail":{}},"tags":{}}],["yesterday",{"_index":6618,"title":{},"content":{"The Productive Programmer on Mac":{},"The first Dutch Obsidian meetup":{},"Apple's App Store Design Mistake":{},"Are You In The System Yet, Sir?":{},"A 5.25\" Gobliins 2 Surprise":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Why I Play Games (And So Should You)":{},"Woke in Class":{},"March 2022 In Review":{}},"tags":{}}],["yesterday'",{"_index":7406,"title":{},"content":{"Host your own webmention receiver":{},"A Personal Intro To Gentle Hip-Hop":{}},"tags":{}}],["yesteryear",{"_index":5984,"title":{},"content":{"Reviving an old 80486 PC":{},"A journey through the history of webdesign":{},"Using Hugo to Launch a Gemini Capsule":{}},"tags":{}}],["yield",{"_index":11127,"title":{},"content":{"Academic Lineage":{}},"tags":{}}],["yip",{"_index":3531,"title":{},"content":{"Computer Science learning pathways":{}},"tags":{}}],["ymf262",{"_index":5900,"title":{},"content":{"486 Upgrade 1: Sound Blaster 16":{}},"tags":{}}],["yo",{"_index":5461,"title":{},"content":{"Combining async with generators in Node 11":{},"Once Upon a Time in Shaolin":{}},"tags":{}}],["yogi",{"_index":11336,"title":{},"content":{"The Analogue Pocket: The Definitive Game Boy Handheld?":{}},"tags":{}}],["yokoi",{"_index":8281,"title":{},"content":{"The Decline of Battery Life":{}},"tags":{}}],["yoku",{"_index":10022,"title":{},"content":{"The Monthly Retro Screenshot Guessing Quiz":{}},"tags":{}}],["yolk",{"_index":9385,"title":{},"content":{"A Treatise on Leavened Waffles":{}},"tags":{}}],["yore",{"_index":10253,"title":{},"content":{"Dark Age of Camelot in 2022":{}},"tags":{}}],["yottam",{"_index":2606,"title":{},"content":{"Development principles in cooking":{}},"tags":{}}],["you'd",{"_index":1332,"title":{},"content":{"Unit Testing Stored Procedures":{},"Custom Webdriver Page Factories":{},"Healing creative scars":{},"Thinking in terms of objects":{},"Teaching by philosophy":{},"Reverse engineering a curriculum":{},"Using Pandoc to publish a book":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Host your own webmention receiver":{},"Moon Logic":{},"Kotlin Is Java 2.0, But It's Still Java":{},"Pinball Machines in a Jenever Museum":{},"My Kotlin Rose-Tinted Glasses Broke":{},"A Note About Footnotes":{},"The HP Sprocket Mini Printer":{},"Ever-increasing Work Email Spam":{},"From Analog Notebook to Digital Vault":{},"How Not To Do A Remaster":{},"Allspice Is Not All Spice":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Natural Gas Prices and The Energy Market":{},"Visualizing Personal Data Takeouts":{},"Water Usage and Prices":{}},"tags":{}}],["you'gr",{"_index":6019,"title":{},"content":{"A journey through the history of webdesign":{}},"tags":{}}],["you'll",{"_index":1512,"title":{},"content":{"Visual Studio 2012 for Eclipse users":{},"Integration Testing with SQLite":{},"Are you handing over enough when inspiring someone?":{},"Healing creative scars":{},"Journaling in practice":{},"I'm jealous of my dog":{},"Concentrating on serendipitous creativity":{},"A Decade in the Software Engineering industry":{},"The IndieWeb Mixed Bag":{},"Host your own webmention receiver":{},"Flea Market Season":{},"How Much Should I Spend On Magic The Gathering":{},"On Selling a Self-published Book":{},"Parking Machines Design Mistakes":{},"Questionable Game Publishing Methods":{},"A Treatise on Leavened Waffles":{},"How Not To Do A Remaster":{},"On Trying To Sell A Laptop":{},"A Personal Intro To Rough Hip-Hop":{}},"tags":{}}],["you'r",{"_index":1291,"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":{},"Teaching yourself to draw":{},"A samurai learning mindset":{},"Development principles in cooking":{},"Healing creative scars":{},"A quick look at 6 fountain pens":{},"Journaling in practice":{},"Inventing - for the worse?":{},"Concentrating on serendipitous creativity":{},"Death to pseudocode?":{},"Productivity Tools on all platforms":{},"A Decade in the Software Engineering industry":{},"Over Onmiddellijke Voldoening":{},"DIY: Hosting stuff on your own VPS":{},"An am486 Performance Analysis":{},"486 Upgrade 2: The SD Card HDD":{},"The Internet Killed Secrets in Games":{},"Win98 Upgrade: Sound Blaster Audigy":{},"Thoughts on Bullshit Jobs":{},"Digitizing journals using DEVONthink":{},"The Productive Programmer on Mac":{},"Win98 Upgrade: GeForce 3 Ti200 vs Riva TNT2":{},"Discord killed support for WinXP":{},"Host your own webmention receiver":{},"Moon Logic":{},"Re: Is collecting physical games worth it?":{},"Flea Market Season":{},"The Pilot Capless: a stellar stealth pen":{},"Double-dipping and Market Prices":{},"The Fridge, Your Inoculation Room":{},"On Tea Prices":{},"Rules of a Creator's Life":{},"20 Years of Personal Cellphone History":{},"A Note About Footnotes":{},"Are You In The System Yet, Sir?":{},"The HP Sprocket Mini Printer":{},"Dear Student":{},"Questionable Game Publishing Methods":{},"The Lost Art of Being Lost":{},"A Treatise on Leavened Waffles":{},"Allspice Is Not All Spice":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"The Monthly Retro Screenshot Guessing Quiz":{},"Why Mastodon Isn't Great For Serendipity":{},"Why I Play Games (And So Should You)":{},"Winnie Lim on Rebuilding Oneself":{},"Woke in Class":{},"On Trying To Sell A Laptop":{},"My Retrocomputing Projects For 2022":{},"What a Night Cam Is Good For":{},"A Personal Intro To Gentle Hip-Hop":{},"A Personal Intro To Rough Hip-Hop":{},"Fighting Webmention And Pingback Spam":{},"The Death Of The Nike+ SportWatch":{},"Freshly Baked Thoughts":{}},"tags":{}}],["you'v",{"_index":2480,"title":{},"content":{"How to teach kids to program":{},"Journaling in practice":{},"A Decade in the Software Engineering industry":{},"Five reasons why agile and academia don't go together":{},"The Internet Killed Secrets in Games":{},"Digitizing journals using DEVONthink":{},"The IndieWeb Mixed Bag":{},"Moon Logic":{},"On Selling a Self-published Book":{},"A Note About Footnotes":{},"Dear Student":{},"The Lost Art of Being Lost":{},"Allspice Is Not All Spice":{},"2021 Donations":{},"Thoughts On Home NAS Systems":{}},"tags":{}}],["you?](https://www.kellogg.northwestern.edu/faculty/uzzi/ftp/page176.html",{"_index":8821,"title":{},"content":{"Creativity Self-Assessment Is Nonsense":{}},"tags":{}}],["you_",{"_index":8802,"title":{},"content":{"Are You In The System Yet, Sir?":{}},"tags":{}}],["young",{"_index":936,"title":{},"content":{"Learning to become a baker":{},"Take your time.":{},"Thirty-Six":{},"Collective Creativity":{},"From Curiosity To Creativity":{}},"tags":{}}],["younger",{"_index":5546,"title":{},"content":{"ITiCSE 2020: A Report":{},"Misconceptions about retro gamers":{},"Thirty-Six":{},"Technical Knowledge Brews Creativity":{},"Dark Age of Camelot in 2022":{}},"tags":{}}],["your",{"_index":3092,"title":{},"content":{"2017 in books":{},"Rules of a Creator's Life":{}},"tags":{}}],["yourself",{"_index":242,"title":{"Teaching yourself to draw":{},"Stop limiting yourself to JS in browsers":{}},"content":{"On finding your inner zen in big cities":{},"Learning to become a baker":{},"Unit Testing Stored Procedures":{},"Integration Testing with SQLite":{},"Bye autotools hello Scons":{},".NET Memory management VS JVM Memory management":{},"Teaching yourself to draw":{},"Journaling in practice":{},"Concentrating on serendipitous creativity":{},"Teaching Object-Oriented design using the GBA":{},"Page Building with Brizy in Wordpress":{},"3D Software Rendering on the GBA":{},"Reviving an old 80486 PC":{},"Personal Desktop Screenshots of Olde":{},"The Internet Killed Secrets in Games":{},"Programming on the Apple M1 Silicon":{},"RSS Feeds, Hugo, and Lazy Image Loading":{},"The Productive Programmer on Mac":{},"Stop limiting yourself to JS in browsers":{},"Host your own webmention receiver":{},"Nineties collecting nostalgia":{},"Re: Is collecting physical games worth it?":{},"What if Seneca wasn't Nero's advisor?":{},"Kotlin Is Java 2.0, But It's Still Java":{},"On Selling a Self-published Book":{},"Favorite Game Meme":{},"Dear Student":{},"Very Old and Somewhat Old Mood Boards":{},"The Lost Art of Being Lost":{},"Allspice Is Not All Spice":{},"I'm Joining the Coffeeneuring Challenge of 2021":{},"Winnie Lim on Rebuilding Oneself":{},"Academic Lineage":{},"Expiry Dates On Journals":{}},"tags":{}}],["yourself!” - - + + diff --git a/themes/brainbaking-minimal/layouts/partials/single-webmentions.html b/themes/brainbaking-minimal/layouts/partials/single-webmentions.html index 8d941d99..9b792c4f 100644 --- a/themes/brainbaking-minimal/layouts/partials/single-webmentions.html +++ b/themes/brainbaking-minimal/layouts/partials/single-webmentions.html @@ -1,4 +1,5 @@ {{ $mentions := (where .Site.Data.webmentions "relativeTarget" "==" $.RelPermalink) }} +{{ $wmServer := .Site.Params.webmentionServer }} {{ if $mentions }}