<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Kabads</title><link>https://kabads.monkeez.org/index.html</link><description>Recent content on Kabads</description><generator>Hugo</generator><language>en-gb</language><lastBuildDate>Thu, 08 Jan 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://kabads.monkeez.org/index.xml" rel="self" type="application/rss+xml"/><item><title>GitHub Actions Multi-line Output Variable</title><link>https://kabads.monkeez.org/devops/2026-01-08-github-actions-multi-line-output.html</link><pubDate>Thu, 08 Jan 2026 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/devops/2026-01-08-github-actions-multi-line-output.html</guid><description>&lt;p&gt;When building GitHub Actions it&amp;rsquo;s common to want to output multi-line text from a composite action or step. GitHub Actions provides the &lt;code&gt;$GITHUB_OUTPUT&lt;/code&gt; &lt;a href="https://docs.github.com/en/actions/how-tos/write-workflows/choose-what-workflows-do/pass-job-outputs"&gt;environment file&lt;/a&gt; mechanism to pass outputs between steps. The syntax is simple, if you are familiar with a Linux shell: &lt;code&gt;echo &amp;quot;test=hello&amp;quot; &amp;gt;&amp;gt; &amp;quot;$GITHUB_OUTPUT&amp;quot;&lt;/code&gt;. This will set a variable from that job-step called &lt;code&gt;test&lt;/code&gt; with the value &lt;code&gt;hello&lt;/code&gt; and can be called from another step using the syntax &lt;code&gt;${{ steps.&amp;lt;jobid&amp;gt;.outputs.test }}&lt;/code&gt;. This deals with single line outputs well, but what about multis-line outputs? That can be more complex.&lt;/p&gt;</description></item><item><title>Film - Maudie (2016)</title><link>https://kabads.monkeez.org/films/2025-11-23-Maudie-2016.html</link><pubDate>Sun, 23 Nov 2025 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/films/2025-11-23-Maudie-2016.html</guid><description>&lt;p&gt;Maudie is a quirky and unforgiving film. You will find yourself presented with mid 20th century Nova Scotia as the setting. A harsh setting for anyone to live in, even without a disability. But Maude is also disabled and finds herself reliant on her wealthy (relatively) brother. Her aunt is also unforgiving, and Maude knows that to stay in this situation, her life will have to be full of compromises. She wants freedom and independence, and so she sets out to find it.&lt;/p&gt;</description></item><item><title>Updating KFMon after Kobo Firmware Update</title><link>https://kabads.monkeez.org/reading/2025-10-19-update-kobo-koreader-after-firmware.html</link><pubDate>Sun, 19 Oct 2025 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/reading/2025-10-19-update-kobo-koreader-after-firmware.html</guid><description>&lt;p&gt;After a firmware update on a kobo device, to launch KOReader, you will need to update KFMon. Here are the steps to do so:&lt;/p&gt;
&lt;p&gt;Plugin your Kobo device via USB and mount the filesystem.&lt;/p&gt;
&lt;p&gt;Download the latest OCP (One Click Install Package) for KFMon.
&lt;a href="https://www.mobileread.com/forums/showthread.php?t=314220"&gt;https://www.mobileread.com/forums/showthread.php?t=314220&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This will have a filename such as kfm_nix_install.zip.&lt;/p&gt;
&lt;p&gt;Extract this file to another directory.&lt;/p&gt;
&lt;p&gt;Download the OCP file for KFMon - it will have a filename such as OCP-KFMon-1.4.6-151-gac587d3.zip. Only this file should be used after a firmware update.&lt;/p&gt;</description></item><item><title>The Blade Itself by Joe Abercrombie</title><link>https://kabads.monkeez.org/reading/2025-07-08-the-blade-itself-joe-abercrombie.html</link><pubDate>Sun, 29 Jun 2025 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/reading/2025-07-08-the-blade-itself-joe-abercrombie.html</guid><description>&lt;p&gt;So, let me start off by saying that I enjoyed the first few series of Game of Thrones. Things waned as the series progressed, but I stuck with it. I wanted something manageable in the same vein. I need to be honest when I say I&amp;rsquo;d never heard heard of the genre grimdark. I thought I might enjoy it, and it turns out I do. The characters form the main backbone of the plot - they have their own backstories and aims coming from that, and this often conflicts with other characters&amp;rsquo; objectives. Watching this unfold is, to say the least, very interesting. Watching characters try to undermine each others foibles. And you&amp;rsquo;re never quite sure who is on top at any given point.&lt;/p&gt;</description></item><item><title>The Crow Road by Iain Banks</title><link>https://kabads.monkeez.org/reading/2025-06-06-crow-road-iain-banks.html</link><pubDate>Fri, 06 Jun 2025 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/reading/2025-06-06-crow-road-iain-banks.html</guid><description>&lt;p&gt;This book leads you in - it won&amp;rsquo;t grab you. You&amp;rsquo;ll be drawn in and given the perspective of Prentice, a young man who is trying to decide who he is, and what form his relationships will hold. This means he&amp;rsquo;s not an immediately likeable person. In fact, there are parts where you think he&amp;rsquo;s selfish, holds immature grudges and not fully aware of all his feelings. But this makes him real, like any other young person his age.&lt;/p&gt;</description></item><item><title>Django custom users</title><link>https://kabads.monkeez.org/python/2024-10-16-django-custom-users.html</link><pubDate>Wed, 16 Oct 2024 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/python/2024-10-16-django-custom-users.html</guid><description>&lt;p&gt;I&amp;rsquo;ve been looking at &lt;a href="https://www.djangoproject.com/"&gt;Django&lt;/a&gt; recently and I wanted to share some notes on how to create custom users. Django comes with a built-in user model, but sometimes you need to extend it or create a new one. Here&amp;rsquo;s how you can do it.&lt;/p&gt;
&lt;p&gt;Basically there will be several steps to follow:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Create a custom user model&lt;/li&gt;
&lt;li&gt;Update the myproject/settings.py file&lt;/li&gt;
&lt;li&gt;Create a view for the custom user model&lt;/li&gt;
&lt;li&gt;Update the admin confiruration&lt;/li&gt;
&lt;li&gt;Create the migration and apply&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The files for this blog post can be found here: &lt;a href="https://github.com/kabads/django-custom-user-example"&gt;https://github.com/kabads/django-custom-user-example&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Recursion in Python</title><link>https://kabads.monkeez.org/python/2024-05-26-recursion-in-python.html</link><pubDate>Sun, 26 May 2024 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/python/2024-05-26-recursion-in-python.html</guid><description>&lt;p&gt;So, I&amp;rsquo;ve started the &lt;a href="https://www.100daysofcode.com"&gt;100 days of code&lt;/a&gt; again. This is an attempt to keep the brain ticking over and keep coding fun. There are certain things I do at work, that really aren&amp;rsquo;t always that taxing. But they are necessary.&lt;/p&gt;
&lt;p&gt;This is to explore other areas that I typically wouldn&amp;rsquo;t use. I think I haven&amp;rsquo;t used recursion before at work. This is probably unusual for developers, but it&amp;rsquo;s not really in what I do.&lt;/p&gt;</description></item><item><title>Working on the ICL 2900</title><link>https://kabads.monkeez.org/sysadmin/2024-05-25-icl-2900.html</link><pubDate>Sat, 25 May 2024 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/sysadmin/2024-05-25-icl-2900.html</guid><description>&lt;figure&gt;&lt;img src="https://kabads-github-io.s3.eu-west-1.amazonaws.com/sysadmin/icl-2900.jpg"
 alt="ICL 2900 in situ" width="300"&gt;
&lt;/figure&gt;

&lt;p&gt;Back in the late 80&amp;rsquo;s I worked on the &lt;a href="https://en.wikipedia.org/wiki/ICL_2900_Series"&gt;ICL 2900&lt;/a&gt;. This was a cluster of machines that made up a mainframe. The retro orange panels and the air-lock that we had to pass to get to the resources, made it feel like something from a sci-fi movie.&lt;/p&gt;
&lt;p&gt;We were in a purpose built building. I dread to think how much it cost, which was a waste of money in the long term because in about 3-4 years, desktops will be making an appearance and the mainframe will be a thing of the past.&lt;/p&gt;</description></item><item><title>Managing Azure Resources with Azure DevOps and Terraform - pt. 1</title><link>https://kabads.monkeez.org/tech/2023-01-18-manage-azure-resources-with-azure-devops-and-terraform-pt1.html</link><pubDate>Wed, 18 Jan 2023 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/tech/2023-01-18-manage-azure-resources-with-azure-devops-and-terraform-pt1.html</guid><description>&lt;p&gt;This post will show you how to create a simple Azure DevOps pipeline that can use the Azure CLI command within a Microsoft hosted agents on Azure DevOps.&lt;/p&gt;</description></item><item><title>Using Mastodon Instead of Twitter</title><link>https://kabads.monkeez.org/tech/2022-11-12-using-mastodon-instead-of-twitter.html</link><pubDate>Sat, 12 Nov 2022 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/tech/2022-11-12-using-mastodon-instead-of-twitter.html</guid><description>&lt;p&gt;So, Twitter is currently a &lt;a href="https://www.editorji.com/world-news/global-pharma-company-eli-lily-lost-15-billion-due-of-one-tweet-here-s-how-1668241019712"&gt;problem&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>AWS CI/CD Pipelines</title><link>https://kabads.monkeez.org/devops/2022-07-06-aws-ci-cd-pipelines.html</link><pubDate>Wed, 06 Jul 2022 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/devops/2022-07-06-aws-ci-cd-pipelines.html</guid><description>&lt;p&gt;This document will outline how to use an Amazon Web Services (AWS) CodePipeline to push a static html website from a code repository to an S3 bucket.&lt;/p&gt;</description></item><item><title>Python - split a list in to smaller lists</title><link>https://kabads.monkeez.org/devops/2022-03-29-python-split-list.html</link><pubDate>Tue, 29 Mar 2022 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/devops/2022-03-29-python-split-list.html</guid><description>&lt;p&gt;So, you end up with a big list, that has a lot of entries, and you want to split them in to smaller lists.&lt;/p&gt;</description></item><item><title>Azure DevOps Variables</title><link>https://kabads.monkeez.org/devops/2022-02-16-azuredevops-variables.html</link><pubDate>Mon, 14 Feb 2022 15:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/devops/2022-02-16-azuredevops-variables.html</guid><description>&lt;p&gt;Azure DevOps has a funny kind of virtualization. When you run your pipelines, the jobs can be on different hosts. This creates a head-scratching moment for people like me who have been working on linux bare-metal for quite a while and thinking that variables are just inherited.&lt;/p&gt;</description></item><item><title>Gilbert White's Zig-Zag Walk</title><link>https://kabads.monkeez.org/walking/2021-09-11-gilberts-zig-zag-walk.html</link><pubDate>Sat, 11 Sep 2021 16:44:00 +0000</pubDate><guid>https://kabads.monkeez.org/walking/2021-09-11-gilberts-zig-zag-walk.html</guid><description>&lt;p&gt;We went for a walk around Selborne, the home of &lt;a href="https://en.wikipedia.org/wiki/Gilbert_White"&gt;Gilbert White&lt;/a&gt;, who some claim was the first English Naturalist.&lt;/p&gt;


&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/51446188147/in/dateposted/" title="map"&gt;&lt;img src="https://live.staticflickr.com/65535/51446188147_5b50625350_z.jpg" width="640" height="371" alt="map"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;


&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/51447664568/in/photostream/" title="IMG_20210911_120236_3"&gt;&lt;img src="https://live.staticflickr.com/65535/51447664568_b3e99daf0e_z.jpg" width="640" height="360" alt="IMG_20210911_120236_3"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;

&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/51447425216/in/photostream/" title="IMG_20210911_133113_0"&gt;&lt;img src="https://live.staticflickr.com/65535/51447425216_7f4bbfd319_z.jpg" width="640" height="360" alt="IMG_20210911_133113_0"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;</description></item><item><title>Test Driven Development</title><link>https://kabads.monkeez.org/devops/2021-08-20-test-driven-development.html</link><pubDate>Fri, 20 Aug 2021 08:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/devops/2021-08-20-test-driven-development.html</guid><description>&lt;p&gt;So, I started learning &lt;a href="https://golang.org"&gt;Golang&lt;/a&gt; recently, and decided that &lt;a href="https://quii.gitbook.io/learn-go-with-tests/"&gt;Learn Go with Tests&lt;/a&gt; was a good way to go.&lt;/p&gt;</description></item><item><title>JWT Authentication with Salesforce</title><link>https://kabads.monkeez.org/sysadmin/2021-03-28-salesforce-auth-jwt.html</link><pubDate>Sun, 28 Mar 2021 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/sysadmin/2021-03-28-salesforce-auth-jwt.html</guid><description>&lt;img src='https://jwt.io/img/pic_logo.svg' alt='JWT Logo'&gt;

&lt;p&gt;&lt;a href="https://www.saleforce.com"&gt;Salesforce&lt;/a&gt;, for those of you who might have been living under a rock, is a customer relationship management tool. I work with developers who develop code for salesforce.&lt;/p&gt;</description></item><item><title>Tiny Tiny RSS</title><link>https://kabads.monkeez.org/reading/2021-01-30-tiny-tiny-rss.html</link><pubDate>Sat, 30 Jan 2021 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/reading/2021-01-30-tiny-tiny-rss.html</guid><description>&lt;p&gt;&lt;a href="https://tt-rss.org"&gt;Tiny Tiny RSS&lt;/a&gt; is a simple syndication application. I&amp;rsquo;ve been using RSS syndication readers for a long time.&lt;/p&gt;</description></item><item><title>Verify Azure Blob Storage Automatically</title><link>https://kabads.monkeez.org/devops/2020-12-22-verify-azure-storage-blob-automatically.html</link><pubDate>Tue, 22 Dec 2020 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/devops/2020-12-22-verify-azure-storage-blob-automatically.html</guid><description>&lt;p&gt;This blog post outlines a problem I had whereby there were lots of files in Azure storage and I wanted to check that they had been uploaded correctly.&lt;/p&gt;</description></item><item><title>Apache Rewrite Mod</title><link>https://kabads.monkeez.org/sysadmin/2020-04-21-apache-rewrite-mod.html</link><pubDate>Tue, 21 Apr 2020 14:05:00 +0000</pubDate><guid>https://kabads.monkeez.org/sysadmin/2020-04-21-apache-rewrite-mod.html</guid><description>&lt;p&gt;&lt;code&gt;mod_rewrite&lt;/code&gt; is a powerful module that Apache can utilize.&lt;/p&gt;</description></item><item><title>Bike-packing preparation</title><link>https://kabads.monkeez.org/cycling/2020-03-30-bikepacking-prep.html</link><pubDate>Mon, 30 Mar 2020 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/cycling/2020-03-30-bikepacking-prep.html</guid><description>&lt;p&gt;Due to covid-19, we are all currently in lock-down.&lt;/p&gt;</description></item><item><title>Rsyslog configured to monitor journald /run/systemd/journal/syslog socket</title><link>https://kabads.monkeez.org/sysadmin/2020-03-19-rsyslog-listening-to-socket.html</link><pubDate>Thu, 19 Mar 2020 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/sysadmin/2020-03-19-rsyslog-listening-to-socket.html</guid><description>&lt;p&gt;Rsyslog (aka syslog) can pull in logs from journald, via the socket (using imuxsock module) or a specific module that taps in to a socket that journald runs (&lt;code&gt;imjournal&lt;/code&gt;) with very little config.&lt;/p&gt;</description></item><item><title>SELinux Users, Roles, and Types</title><link>https://kabads.monkeez.org/sysadmin/2020-01-03-selinux-users-roles-types.html</link><pubDate>Fri, 03 Jan 2020 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/sysadmin/2020-01-03-selinux-users-roles-types.html</guid><description>&lt;p&gt;SELinux contexts follow the SELinux user:role:type:level syntax.&lt;/p&gt;</description></item><item><title>SELinux Permissions</title><link>https://kabads.monkeez.org/draft/2019-12-30-selinux.html</link><pubDate>Mon, 30 Dec 2019 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/draft/2019-12-30-selinux.html</guid><description>&lt;p&gt;SELinux (Security Enhanced Linux) is a linux kernel security module that provides a mechanism for supporting access control policies.&lt;/p&gt;</description></item><item><title>Setting Filesystem ACLs on Linux</title><link>https://kabads.monkeez.org/sysadmin/2019-12-30-setting-acl-linux-filesystem.html</link><pubDate>Mon, 30 Dec 2019 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/sysadmin/2019-12-30-setting-acl-linux-filesystem.html</guid><description>&lt;p&gt;ACLs are a method for defining access to files and directories on a system.&lt;/p&gt;</description></item><item><title>How to Create Virtual Machines With Qemu</title><link>https://kabads.monkeez.org/draft/2019-11-11-how-to-create-virtual-machines-qemu.html</link><pubDate>Mon, 11 Nov 2019 13:52:22 +0000</pubDate><guid>https://kabads.monkeez.org/draft/2019-11-11-how-to-create-virtual-machines-qemu.html</guid><description>&lt;p&gt;This post outlines the steps needed to create a qemu environment within a machine and install virtual machines in that environment.&lt;/p&gt;</description></item><item><title>Terraform and Loops - creating multiple resources</title><link>https://kabads.monkeez.org/devops/2019-08-30-terraforming-loops.html</link><pubDate>Fri, 30 Aug 2019 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/devops/2019-08-30-terraforming-loops.html</guid><description>&lt;p&gt;Terraform is a great tool for creating infrastructure.&lt;/p&gt;</description></item><item><title>Ruby Arrays</title><link>https://kabads.monkeez.org/draft/2019-07-29-arrays-with-ruby.html</link><pubDate>Mon, 29 Jul 2019 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/draft/2019-07-29-arrays-with-ruby.html</guid><description>&lt;p&gt;Ruby has extensive coverage for arrays (sometimes called lists if you are coming from a Python background).&lt;/p&gt;</description></item><item><title>Case Statements in Ruby - Learning Ruby 3</title><link>https://kabads.monkeez.org/ruby/2019-07-18-learning-ruby-case-statements.html</link><pubDate>Thu, 18 Jul 2019 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/ruby/2019-07-18-learning-ruby-case-statements.html</guid><description>&lt;p&gt;If you are coming from using python, then you will be used to using a lot of &lt;code&gt;if...elif...else&lt;/code&gt; statements to catch conditions in variables.&lt;/p&gt;</description></item><item><title>Strings in Ruby - Learning Ruby 2</title><link>https://kabads.monkeez.org/ruby/2019-07-12-learning-ruby-part2.html</link><pubDate>Fri, 12 Jul 2019 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/ruby/2019-07-12-learning-ruby-part2.html</guid><description>&lt;p&gt;Ruby has great string support. This post summarises the functions that are available.&lt;/p&gt;</description></item><item><title>Learning Ruby - First Impressions</title><link>https://kabads.monkeez.org/ruby/2019-06-21-learning-ruby-part-1.html</link><pubDate>Fri, 21 Jun 2019 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/ruby/2019-06-21-learning-ruby-part-1.html</guid><description>&lt;p&gt;Chef is used in my place of work, and so as a result I started learning &lt;a href="https://www.ruby-lang.org"&gt;Ruby programming language&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Chernobyl - A Review</title><link>https://kabads.monkeez.org/blog/2019-06-10-chernobyl-a-review.html</link><pubDate>Mon, 10 Jun 2019 18:52:22 +0000</pubDate><guid>https://kabads.monkeez.org/blog/2019-06-10-chernobyl-a-review.html</guid><description>&lt;p&gt;Chernobyl has screened on Sky Atlantic over the last few weeks. It represents a dramatic representation of the disaster back in 1986, which for a lot of people, is still in living memory.&lt;/p&gt;</description></item><item><title>Setting Up Fujitsu Snapscan S1300i on Arch Linux</title><link>https://kabads.monkeez.org/tech/2019-03-10-using-fujitsu-snapscan-s1300i-on-arch.html</link><pubDate>Sun, 10 Mar 2019 18:15:30 +0000</pubDate><guid>https://kabads.monkeez.org/tech/2019-03-10-using-fujitsu-snapscan-s1300i-on-arch.html</guid><description>&lt;p&gt;I have bought a Fujitsu Snapscan S1301i scanner - mainly because it is duplex - it saves a lot of time and will scan directly to Evernote.&lt;/p&gt;</description></item><item><title>Setting Up MySQL Replication as a back-up solution</title><link>https://kabads.monkeez.org/sysadmin/2018-08-27-setting-up-mysql-replication.html</link><pubDate>Mon, 27 Aug 2018 12:32:30 +0000</pubDate><guid>https://kabads.monkeez.org/sysadmin/2018-08-27-setting-up-mysql-replication.html</guid><description>&lt;p&gt;MySQL replication is a good thing to have. It provides greater resilience and removes a single point of failure. By following these steps, you will create a replica of a master server, acting as a permanent backup in the case of a DR scenario.&lt;/p&gt;</description></item><item><title>Configure Autofs on Arch Linux</title><link>https://kabads.monkeez.org/sysadmin/2018-08-11-configure-autofs.html</link><pubDate>Sat, 11 Aug 2018 10:07:00 +0000</pubDate><guid>https://kabads.monkeez.org/sysadmin/2018-08-11-configure-autofs.html</guid><description>&lt;p&gt;Autofs is a way of auto-mounting devices to a running system. Theses steps will walk through enabling it on an Archlinux system.&lt;/p&gt;</description></item><item><title>Working with Terraform</title><link>https://kabads.monkeez.org/2018/08/</link><pubDate>Sat, 04 Aug 2018 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2018/08/</guid><description>&lt;p&gt;Terraform is a cloud orchestration scripting language. This allows the capturing of cloud infrastructure.&lt;/p&gt;</description></item><item><title>Sync Google Calendar With Org Agenda</title><link>https://kabads.monkeez.org/tech/2018-03-18-sync-google-calendar-with-org-agenda.html</link><pubDate>Sun, 18 Mar 2018 13:02:55 +0000</pubDate><guid>https://kabads.monkeez.org/tech/2018-03-18-sync-google-calendar-with-org-agenda.html</guid><description>&lt;p&gt;I use &lt;a href="https://orgmode.org"&gt;org-mode&lt;/a&gt; an awful lot - it helps me manage my tasks and code all in one place.&lt;/p&gt;</description></item><item><title>Moving Boot Partition (EFI/EPS partition)</title><link>https://kabads.monkeez.org/sysadmin/2018-03-13-moving-boot-partition.html</link><pubDate>Tue, 13 Mar 2018 19:42:17 +0000</pubDate><guid>https://kabads.monkeez.org/sysadmin/2018-03-13-moving-boot-partition.html</guid><description>&lt;p&gt;If you&amp;rsquo;ve been using Linux for a few years, you&amp;rsquo;ll probably remember that 100MB for a /boot partition was no problem.&lt;/p&gt;</description></item><item><title>Cycle Jaunt Around Bath</title><link>https://kabads.monkeez.org/cycling/2018-02-11-cycle-jaunt-around-bath.html</link><pubDate>Sun, 11 Feb 2018 19:20:30 +0000</pubDate><guid>https://kabads.monkeez.org/cycling/2018-02-11-cycle-jaunt-around-bath.html</guid><description>&lt;p&gt;Sunday involved a train ride to bath with a Brompton in fold, and then cycling around the Two Tunnels circular route. A quick stop at &lt;a href="http://hopeandanchormidford.co.uk"&gt;The Hope and Anchor&lt;/a&gt; pub to avoid the sleet and get a quick half-way coffee, is highly recommended.&lt;/p&gt;</description></item><item><title>How to create an instance that pulls your website content automatically</title><link>https://kabads.monkeez.org/2017/10/03/AWS-how-to-automatically-launch-apache-with-your-site-content/</link><pubDate>Tue, 03 Oct 2017 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2017/10/03/AWS-how-to-automatically-launch-apache-with-your-site-content/</guid><description>&lt;p&gt;Amazon Web Services allows you to spin up instances very quickly. This how to will show you how to upload your content to a S3 bucket and then launch an instance that pulls that content in and starts Apache to serve that content.&lt;/p&gt;</description></item><item><title>AWS - How to Create A VPC</title><link>https://kabads.monkeez.org/2017/09/20/how-to-create-a-vpc/</link><pubDate>Wed, 20 Sep 2017 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2017/09/20/how-to-create-a-vpc/</guid><description>&lt;p&gt;AWS allows you to create your own virtual private cloud (or &lt;a href="https://en.wikipedia.org/wiki/Virtual_private_cloud"&gt;VPC&lt;/a&gt;).&lt;/p&gt;</description></item><item><title>AWS - How to Serve Traffic from a Load Balancer</title><link>https://kabads.monkeez.org/2017/09/20/AWS-how-to-serve-traffic-from-load-balancer/</link><pubDate>Wed, 20 Sep 2017 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2017/09/20/AWS-how-to-serve-traffic-from-load-balancer/</guid><description>&lt;p&gt;&lt;a href="http://aws.amazon.com"&gt;Amazon Web Services&lt;/a&gt; (AWS) allows you to serve private network traffic from behind a public load balancer. This offers extra security benefits as it detects DDOS traffic and other exploits and offers a layer of protection.&lt;/p&gt;</description></item><item><title>TADS walk Swindon to Goring</title><link>https://kabads.monkeez.org/2017/07/02/Swindon-to-Goring-Walk/</link><pubDate>Sun, 02 Jul 2017 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2017/07/02/Swindon-to-Goring-Walk/</guid><description>&lt;p&gt;TADS - Teresa, Adam, Dave and Shep walking. We have been walking for about 2 years now, all around the South East. This was our longest walk by far in two days. Swindon to Goring.&lt;/p&gt;</description></item><item><title>How to install LineageOS on Wileyfox Swift</title><link>https://kabads.monkeez.org/2017/06/10/how-to-install-lineageos-wileyfox-swift/</link><pubDate>Sat, 10 Jun 2017 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2017/06/10/how-to-install-lineageos-wileyfox-swift/</guid><description>&lt;p&gt;With the demise of Cyanogenmod and CyanogenOS people who like to keep a cheaper phone up to date will have to familiarise themselves with &lt;a href="http://lineageos.org"&gt;LineageOS&lt;/a&gt;. This is the fork of the latest version where CyanogenMod left off.&lt;/p&gt;</description></item><item><title>A Cartoon About File Permissions</title><link>https://kabads.monkeez.org/2017/05/06/A-cartoon-about-file-permissions/</link><pubDate>Sat, 06 May 2017 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2017/05/06/A-cartoon-about-file-permissions/</guid><description>&lt;p&gt;I am root.&lt;/p&gt;</description></item><item><title>Running EC2 Instance</title><link>https://kabads.monkeez.org/2016/12/10/running-ec2-instance/</link><pubDate>Sat, 10 Dec 2016 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2016/12/10/running-ec2-instance/</guid><description>&lt;p&gt;Amazon have provided a pretty neat infrastructure with Amazon Web Services (AWS). By using this as a platform, you can quickly scale up and down provisioned resources.&lt;/p&gt;</description></item><item><title>Finding large files in a directory</title><link>https://kabads.monkeez.org/2016/11/20/finding-large-files-in-a-directory/</link><pubDate>Sun, 20 Nov 2016 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2016/11/20/finding-large-files-in-a-directory/</guid><description>&lt;p&gt;I have directories that &lt;a href="http://www.chiark.greenend.org.uk/~sgtatham/agedu/"&gt;agedu&lt;/a&gt; shows as having large files. However, agedu doesn&amp;rsquo;t tell me what the names of the files are.&lt;/p&gt;</description></item><item><title>How to download newspapers with Calibre and deliver to your Kindle</title><link>https://kabads.monkeez.org/2016/08/25/downloading-newspaper-using-calibre/</link><pubDate>Thu, 25 Aug 2016 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2016/08/25/downloading-newspaper-using-calibre/</guid><description>&lt;p&gt;So, I have read a few pages which outline how to do this, but none seem to sum all of it. I&amp;rsquo;ve set up my Raspberry to download a newspaper and then deliver it daily to my Kindle.&lt;/p&gt;</description></item><item><title>Cuba</title><link>https://kabads.monkeez.org/2016/08/12/cuba/</link><pubDate>Fri, 12 Aug 2016 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2016/08/12/cuba/</guid><description>&lt;p&gt;Having gone to one of the best destinations I&amp;rsquo;ve probably ever been to, I felt the need to document it in a more formal way. I was inspired by the Cuban culture and vibrant life to record some of the sights I&amp;rsquo;d seen.&lt;/p&gt;</description></item><item><title>Trying a climb</title><link>https://kabads.monkeez.org/2016/07/03/cycling-trying-a-climb/</link><pubDate>Sun, 03 Jul 2016 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2016/07/03/cycling-trying-a-climb/</guid><description>&lt;p&gt;This afternoon, I met up with a few friends at a local pub. It was great catching up with everyone, but what also great was that afterwards, I planned to cycle some 15km to one of the largest hills around.&lt;/p&gt;</description></item><item><title>Using sed</title><link>https://kabads.monkeez.org/2016/02/20/using-sed/</link><pubDate>Sat, 20 Feb 2016 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2016/02/20/using-sed/</guid><description>&lt;p&gt;&lt;em&gt;sed&lt;/em&gt; is a quick command line utility to change text within a file, or input stream. Typically, it is used within a pipe situation&lt;/p&gt;</description></item><item><title>Bash find command</title><link>https://kabads.monkeez.org/2016/01/24/bash-find-command/</link><pubDate>Sun, 24 Jan 2016 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2016/01/24/bash-find-command/</guid><description>&lt;p&gt;I&amp;rsquo;ve been using the find command simply since I can remember, but I&amp;rsquo;ve never really got to see the true power of this command.&lt;/p&gt;</description></item><item><title>Setting up a firewall on Linux Ubuntu 14.04</title><link>https://kabads.monkeez.org/2015/12/24/setting-up-firewall/</link><pubDate>Thu, 24 Dec 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/12/24/setting-up-firewall/</guid><description>&lt;p&gt;This post walks throug the steps needed to set up a firewall on Ubuntu 14.04. Note that 14.04 is now end of life.&lt;/p&gt;</description></item><item><title>How to enable disk quotas for users</title><link>https://kabads.monkeez.org/2015/12/22/how-to-enable-disk-quotas-linux/</link><pubDate>Tue, 22 Dec 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/12/22/how-to-enable-disk-quotas-linux/</guid><description>&lt;p&gt;Linux allows setting quotas on a filesystem. This will prevent users from using more diskspace than they are allowed.&lt;/p&gt;</description></item><item><title>Encrypt a partition on Linux</title><link>https://kabads.monkeez.org/2015/12/05/encrypt-a-partition/</link><pubDate>Sat, 05 Dec 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/12/05/encrypt-a-partition/</guid><description>&lt;p&gt;An encrypted partition can add a layer of security to your system. When initialized, it will ask for the passphrase which, if unavailable, will not allow proper mounting.&lt;/p&gt;</description></item><item><title>How and why you should be using 2 factor authentication</title><link>https://kabads.monkeez.org/2015/10/31/how-and-why-2-factor-authentication/</link><pubDate>Sat, 31 Oct 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/10/31/how-and-why-2-factor-authentication/</guid><description>&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/Two-factor_authentication"&gt;Two factor authentication&lt;/a&gt; provides another layer of security to any sign in for services you use. By enabling 2 factor authentication, you are using another layer of security when signing in.&lt;/p&gt;</description></item><item><title>Linux group explained</title><link>https://kabads.monkeez.org/2015/10/18/groups-explained/</link><pubDate>Sun, 18 Oct 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/10/18/groups-explained/</guid><description>&lt;p&gt;Users on a linux system belong to at least one group. Groups allow a systems administrator to create parts of the filesystem where a group of users can share files.&lt;/p&gt;</description></item><item><title>Using Git as a content manager system</title><link>https://kabads.monkeez.org/2015/09/10/using-git-as-content-manager/</link><pubDate>Thu, 10 Sep 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/09/10/using-git-as-content-manager/</guid><description>&lt;p&gt;Not familiar with &lt;a href="https://git-scm.com"&gt;git&lt;/a&gt;? Start with an &lt;a href="https://git-scm.com/book/en/v1/Getting-Started"&gt;online book&lt;/a&gt; or &lt;a href="https://git-scm.com/book/en/v1/Getting-Started"&gt;Version Control with Git&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>How to set-up RAID on Linux</title><link>https://kabads.monkeez.org/2015/08/27/how-to-set-up-raid-drives-linux/</link><pubDate>Thu, 27 Aug 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/08/27/how-to-set-up-raid-drives-linux/</guid><description>&lt;p&gt;&lt;a href="https://en.wikipedia.org/wiki/RAID"&gt;RAID&lt;/a&gt; disks offer particular advantages over ordinary single disk set up. Data redundancy is improved (consider it to be a continuous backup) and also significant performance can be seen with the correct configuration.&lt;/p&gt;</description></item><item><title>How to set-up LVM on Linux</title><link>https://kabads.monkeez.org/2015/08/21/how-to-set-up-lvm-linux/</link><pubDate>Fri, 21 Aug 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/08/21/how-to-set-up-lvm-linux/</guid><description>&lt;p&gt;What are the advantages of &lt;a href="https://en.wikipedia.org/wiki/Logical_volume_management"&gt;Logical Volume Management (LVM)&lt;/a&gt;?&lt;/p&gt;</description></item><item><title>Bring your own device or RaspberryPi hardware in education</title><link>https://kabads.monkeez.org/2015/08/14/bring-your-own-device/</link><pubDate>Fri, 14 Aug 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/08/14/bring-your-own-device/</guid><description>&lt;p&gt;&lt;strong&gt;&lt;em&gt;The problem?&lt;/em&gt;&lt;/strong&gt; School&amp;rsquo;s are facing dwindling education budgets and yet increasing expectations for children&amp;rsquo;s attainment in their knowledge.&lt;/p&gt;</description></item><item><title>TTIP - Nothing to hide, nothing to fear</title><link>https://kabads.monkeez.org/2015/08/08/nothing-hide-nothing-to-fear/</link><pubDate>Sat, 08 Aug 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/08/08/nothing-hide-nothing-to-fear/</guid><description>&lt;p&gt;So, not many people have heard about the &lt;a href="https://en.wikipedia.org/wiki/Transatlantic_Trade_and_Investment_Partnership"&gt;Transatlantic Trade Investment Partnership&lt;/a&gt; agreement -aka TTIP - and it isn&amp;rsquo;t receiving much coverage from the BBC or other news outlets.&lt;/p&gt;</description></item><item><title>Our balcony view</title><link>https://kabads.monkeez.org/2015/07/30/balcony-view/</link><pubDate>Thu, 30 Jul 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/07/30/balcony-view/</guid><description>&lt;p&gt;Our balcony view.&lt;/p&gt;


&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/19963599668/in/datetaken-public/" title="P1040766"&gt;&lt;img src="https://farm1.staticflickr.com/388/19963599668_a62bc7f8bd_k.jpg" width="2048" height="1536" alt="P1040766"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;</description></item><item><title>Amazon Prime Music Review</title><link>https://kabads.monkeez.org/2015/07/29/Amazon-Prime-Music-Review/</link><pubDate>Wed, 29 Jul 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/07/29/Amazon-Prime-Music-Review/</guid><description>&lt;p&gt;Amazon yesterday released the prime music service in the UK. This came at a particularly useful time for me as I&amp;rsquo;m currently not working and so have quite a bit of time to play with it.&lt;/p&gt;</description></item><item><title>Baking bread</title><link>https://kabads.monkeez.org/2015/07/28/bread/</link><pubDate>Tue, 28 Jul 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/07/28/bread/</guid><description>&lt;p&gt;I&amp;rsquo;ve been baking bread for over 6 months now and have experimented with what works well. This is today&amp;rsquo;s effort.&lt;/p&gt;


&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/20085109785/in/datetaken-public/" title="P1040756"&gt;&lt;img src="https://farm1.staticflickr.com/479/20085109785_662a45dc79_z.jpg" width="640" height="480" alt="P1040756"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;</description></item><item><title>Wordpress to Jekyll</title><link>https://kabads.monkeez.org/2015/07/28/jekyll/</link><pubDate>Tue, 28 Jul 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/07/28/jekyll/</guid><description>&lt;p&gt;I&amp;rsquo;ve made the switch from &lt;a href="http://www.wordpress.org"&gt;Wordpress&lt;/a&gt;, which has been a great open source project, to &lt;a href="http://www.jekyllrb.com"&gt;Jekyll&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Ban encryption?</title><link>https://kabads.monkeez.org/2015/07/25/ban-encryption/</link><pubDate>Sat, 25 Jul 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/07/25/ban-encryption/</guid><description>&lt;p&gt;&lt;a href="http://www.independent.co.uk/life-style/gadgets-and-tech/news/whatsapp-and-snapchat-could-be-banned-under-new-surveillance-plans-9973035.html"&gt;David Cameron wants to ban encryption&lt;/a&gt;. He thinks that the government needs to have a copy of all our communications to ensure safety.&lt;/p&gt;</description></item><item><title>Nuclear subsidy</title><link>https://kabads.monkeez.org/2015/07/23/Nuclear-subsidy/</link><pubDate>Thu, 23 Jul 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/07/23/Nuclear-subsidy/</guid><description>&lt;p&gt;I&amp;rsquo;m not sure why the government is so set on stopping the solar subsidy, when they are increasing the nuclear one.&lt;/p&gt;</description></item><item><title>Ran over 600km</title><link>https://kabads.monkeez.org/exercise/2015-07-23-Ran-over-600-km.html</link><pubDate>Thu, 23 Jul 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/exercise/2015-07-23-Ran-over-600-km.html</guid><description>&lt;p&gt;So, I&amp;rsquo;ve set myself a target of running 1000km this year. I realised a couple of months ago that I&amp;rsquo;ve run quite a lot this year.&lt;/p&gt;</description></item><item><title>TADS Walk around Bramley</title><link>https://kabads.monkeez.org/2015/06/30/TADS-walk-around-Bramley/</link><pubDate>Tue, 30 Jun 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/06/30/TADS-walk-around-Bramley/</guid><description>&lt;p&gt;Went for a walk with &lt;strong&gt;T&lt;/strong&gt;eresa, &lt;strong&gt;A&lt;/strong&gt;dam, &lt;strong&gt;D&lt;/strong&gt;ave and &lt;strong&gt;S&lt;/strong&gt;hep (TADS) around the village of Bramley, and Silchester. Saw some deer on the way.&lt;/p&gt;</description></item><item><title>Never punt again</title><link>https://kabads.monkeez.org/2015/04/16/never-punt-again/</link><pubDate>Thu, 16 Apr 2015 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2015/04/16/never-punt-again/</guid><description>We went for a punt in Cambridge.</description></item><item><title>Kayaking - Joe</title><link>https://kabads.monkeez.org/2014/07/15/p1030835/</link><pubDate>Tue, 15 Jul 2014 19:25:33 +0000</pubDate><guid>https://kabads.monkeez.org/2014/07/15/p1030835/</guid><description>&lt;img src="https://live.staticflickr.com/2903/14662943885_45b21150fd_n.jpg" /&gt;</description></item><item><title>Kayaking - Isaac and Trugnug</title><link>https://kabads.monkeez.org/2014/07/15/p1030839/</link><pubDate>Tue, 15 Jul 2014 19:25:11 +0000</pubDate><guid>https://kabads.monkeez.org/2014/07/15/p1030839/</guid><description>&lt;img src="https://live.staticflickr.com/3869/14476251879_1701e6f32a_n.jpg" /&gt;</description></item><item><title>Wasps nest in garden</title><link>https://kabads.monkeez.org/2014/07/06/img_3782/</link><pubDate>Sun, 06 Jul 2014 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/2014/07/06/img_3782/</guid><description>&lt;img src="https://farm1.staticflickr.com/269/19667879094_785b975951_z.jpg" width="640" height="480" alt="wasps"&gt;</description></item><item><title>Arduino blinking light</title><link>https://kabads.monkeez.org/2013/12/30/arduino-blinking-light/</link><pubDate>Mon, 30 Dec 2013 10:55:36 +0000</pubDate><guid>https://kabads.monkeez.org/2013/12/30/arduino-blinking-light/</guid><description>&lt;p&gt;My first arduino project.&lt;/p&gt;</description></item><item><title>Cologne</title><link>https://kabads.monkeez.org/2013/11/02/cologne/</link><pubDate>Sat, 02 Nov 2013 14:28:20 +0000</pubDate><guid>https://kabads.monkeez.org/2013/11/02/cologne/</guid><description>&lt;p&gt;&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/sets/72157637221552075" title="Cologne"&gt;&lt;img src="https://farm3.staticflickr.com/2838/10616047496_88c971f7e5_z.jpg" width="640" height="480" alt="Cologne"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;&lt;/p&gt;</description></item><item><title>Mmm. Apfelstrudel</title><link>https://kabads.monkeez.org/2013/10/29/mmm-apfelstrudel/</link><pubDate>Tue, 29 Oct 2013 14:58:53 +0000</pubDate><guid>https://kabads.monkeez.org/2013/10/29/mmm-apfelstrudel/</guid><description>&lt;p&gt;&lt;a data-flickr-embed="true" data-header="false" data-footer="false" data-context="false" href="https://www.flickr.com/photos/kabads/20143332783/in/datetaken-public/" title="wpid-wp-1383055093905"&gt;&lt;img src="https://farm6.staticflickr.com/5836/20143332783_85ba894a32_z.jpg" width="640" height="480" alt="wpid-wp-1383055093905"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;&lt;/p&gt;</description></item><item><title>My privacy conscious nan</title><link>https://kabads.monkeez.org/2013/08/21/my-privacy-conscious-nan/</link><pubDate>Wed, 21 Aug 2013 12:45:39 +0000</pubDate><guid>https://kabads.monkeez.org/2013/08/21/my-privacy-conscious-nan/</guid><description>&lt;p&gt;&lt;a data-flickr-embed="true" data-header="false" data-footer="false" data-context="false" href="https://www.flickr.com/photos/kabads/20143410083/in/datetaken-public/" title="wpid-IMG_20130821_124404"&gt;&lt;img src="https://farm6.staticflickr.com/5743/20143410083_860bb65b66_z.jpg" width="640" height="480" alt="wpid-IMG_20130821_124404"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;&lt;/p&gt;</description></item><item><title>Isaac's favourite ouya game so far</title><link>https://kabads.monkeez.org/2013/06/27/isaacs-favourite-ouya-game-so-far/</link><pubDate>Thu, 27 Jun 2013 20:41:22 +0000</pubDate><guid>https://kabads.monkeez.org/2013/06/27/isaacs-favourite-ouya-game-so-far/</guid><description>&lt;p&gt;&lt;a data-flickr-embed="true" data-header="false" data-footer="false" data-context="false" href="https://www.flickr.com/photos/kabads/20141849454/in/datetaken-public/" title="wpid-IMG_20130627_204017"&gt;&lt;img src="https://farm1.staticflickr.com/753/20141849454_38ce2bf573.jpg" width="500" height="375" alt="wpid-IMG_20130627_204017"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;&lt;/p&gt;</description></item><item><title>Privacy - why the Govt. wants privacy for themselves</title><link>https://kabads.monkeez.org/2013/06/17/privacy-why-the-govt-wants-privacy-for-themselves-when-it-matters-and-why-you-should-care/</link><pubDate>Mon, 17 Jun 2013 13:53:02 +0000</pubDate><guid>https://kabads.monkeez.org/2013/06/17/privacy-why-the-govt-wants-privacy-for-themselves-when-it-matters-and-why-you-should-care/</guid><description>&lt;p&gt;William Hague claims if you haven't done anything wrong, you shouldn't care about your privacy. So why does the Govt. claim to need to present evidence in a secret court with evidence related to illegal kidnapping?&lt;/p&gt;</description></item><item><title>Caught in a privacy recursion loop with dwarves</title><link>https://kabads.monkeez.org/blog/2013-06-10-caught-in-a-privacy-recursion-loop-with-dwarves.html</link><pubDate>Mon, 10 Jun 2013 00:00:00 +0000</pubDate><guid>https://kabads.monkeez.org/blog/2013-06-10-caught-in-a-privacy-recursion-loop-with-dwarves.html</guid><description>&lt;p&gt;
 &lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/20296750401/in/datetaken-public/" title="dwarf_fortress"&gt;&lt;img src="https://farm1.staticflickr.com/327/20296750401_19e57cbb81_z.jpg" width="285" height="506" alt="dwarf_fortress"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;
&lt;/p&gt;</description></item><item><title>Bath and Longleat</title><link>https://kabads.monkeez.org/2013/06/02/bath-and-longleat/</link><pubDate>Sun, 02 Jun 2013 13:36:40 +0000</pubDate><guid>https://kabads.monkeez.org/2013/06/02/bath-and-longleat/</guid><description>&lt;p&gt;
&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/sets/72157633874654881" title="Bath &amp;amp; Longleat Blog"&gt;&lt;img src="https://farm8.staticflickr.com/7387/8909966764_53981f85fb_z.jpg" width="640" height="480" alt="Bath &amp;amp; Longleat Blog"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;
&lt;/p&gt;</description></item><item><title>Happy birthday Pewter Reilly</title><link>https://kabads.monkeez.org/2013/05/12/happy-birthday-pewter-reilly/</link><pubDate>Sun, 12 May 2013 19:06:03 +0000</pubDate><guid>https://kabads.monkeez.org/2013/05/12/happy-birthday-pewter-reilly/</guid><description>&lt;p&gt;
&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/20130793918/in/datetaken-public/" title="wpid-wp-1368381867198"&gt;&lt;img src="https://farm1.staticflickr.com/438/20130793918_365a129a0e_z.jpg" width="480" height="640" alt="wpid-wp-1368381867198"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;
&lt;/p&gt;</description></item><item><title>@ O2 arena for British Music Experience</title><link>https://kabads.monkeez.org/2013/05/05/o2-arena-for-british-music-experience-3/</link><pubDate>Sun, 05 May 2013 13:08:48 +0000</pubDate><guid>https://kabads.monkeez.org/2013/05/05/o2-arena-for-british-music-experience-3/</guid><description>&lt;p&gt;
&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/20292639656/in/datetaken-public/" title="wpid-wp-13677553580442"&gt;&lt;img src="https://farm1.staticflickr.com/315/20292639656_c51d181546.jpg" width="500" height="375" alt="wpid-wp-13677553580442"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;

&lt;/p&gt;</description></item><item><title>The boys are asking for Bitcoins for pocket money.</title><link>https://kabads.monkeez.org/2013/05/03/the-boys-are-asking-for-bitcoins-for-pocket-money-what-do-you-think-they-are-up-to/</link><pubDate>Fri, 03 May 2013 18:35:11 +0000</pubDate><guid>https://kabads.monkeez.org/2013/05/03/the-boys-are-asking-for-bitcoins-for-pocket-money-what-do-you-think-they-are-up-to/</guid><description>&lt;p&gt;
&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/20324941071/in/datetaken-public/" title="bitcoin"&gt;&lt;img src="https://farm4.staticflickr.com/3797/20324941071_c8b228869c.jpg" width="256" height="256" alt="bitcoin"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;
&lt;/p&gt;</description></item><item><title>Full on day - doctors, worked through lunch...</title><link>https://kabads.monkeez.org/2013/05/02/full-on-day-doctors-worked-through-lunch-for-paper-work-meet-eat-drove-to-rugby-club-worked-watched-mad-men-voted-looked-at-jupiter-in-the-night-sky/</link><pubDate>Thu, 02 May 2013 21:40:59 +0000</pubDate><guid>https://kabads.monkeez.org/2013/05/02/full-on-day-doctors-worked-through-lunch-for-paper-work-meet-eat-drove-to-rugby-club-worked-watched-mad-men-voted-looked-at-jupiter-in-the-night-sky/</guid><description>Full on day - doctors, worked through lunch for paper work, meet, eat, drove to Rugby club,</description></item><item><title>Six thirty in the morning is always the best time for haloumi</title><link>https://kabads.monkeez.org/2013/05/02/six-thirty-in-the-morning-is-always-the-best-time-for-haloumi/</link><pubDate>Thu, 02 May 2013 06:33:44 +0000</pubDate><guid>https://kabads.monkeez.org/2013/05/02/six-thirty-in-the-morning-is-always-the-best-time-for-haloumi/</guid><description>Haloumi breakfast.</description></item><item><title>Paul welcomes me home</title><link>https://kabads.monkeez.org/2013/04/24/paul-welcomes-me-home/</link><pubDate>Wed, 24 Apr 2013 18:00:15 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/24/paul-welcomes-me-home/</guid><description>Paul the peacock.</description></item><item><title>This guy is noisy when he wakes up.</title><link>https://kabads.monkeez.org/2013/04/21/this-guy-is-noisy-when-he-wakes-up/</link><pubDate>Sun, 21 Apr 2013 07:50:50 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/21/this-guy-is-noisy-when-he-wakes-up/</guid><description>&lt;p&gt;
&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/20357412162/in/datetaken-public/" title="wpid-IMG_20130421_074717"&gt;
 &lt;img src="https://farm1.staticflickr.com/484/20357412162_b52549498e.jpg" width="500" height="375" alt="wpid-IMG_20130421_074717"&gt;&lt;/a&gt;
 &lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;
&lt;/p&gt;</description></item><item><title>Happy birthday Anne</title><link>https://kabads.monkeez.org/2013/04/13/happy-birthday-anne/</link><pubDate>Sat, 13 Apr 2013 14:12:02 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/13/happy-birthday-anne/</guid><description>&lt;p&gt;
&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/19745068483/in/datetaken-public/" title="wpid-wp-1365862286638"&gt;&lt;img src="https://farm1.staticflickr.com/426/19745068483_eaab041c34.jpg" width="500" height="375" alt="wpid-wp-1365862286638"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;
&lt;/p&gt;</description></item><item><title>This peacock keeps hanging around our house</title><link>https://kabads.monkeez.org/2013/04/13/this-peacock-keeps-hanging-around-our-house/</link><pubDate>Sat, 13 Apr 2013 11:49:36 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/13/this-peacock-keeps-hanging-around-our-house/</guid><description>&lt;p&gt;People show up in cars and take photos of it. &lt;/p&gt;</description></item><item><title>The castle</title><link>https://kabads.monkeez.org/2013/04/09/the-castle/</link><pubDate>Tue, 09 Apr 2013 11:45:09 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/09/the-castle/</guid><description>&lt;p&gt;
&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/20372149751/in/datetaken-public/" title="wpid-IMG_20130409_124340"&gt;&lt;img src="https://farm1.staticflickr.com/288/20372149751_fb61c33e0d.jpg" width="500" height="375" alt="wpid-IMG_20130409_124340"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;
&lt;/p&gt;</description></item><item><title>This time with the photo</title><link>https://kabads.monkeez.org/2013/04/09/this-time-with-the-photo/</link><pubDate>Tue, 09 Apr 2013 11:30:03 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/09/this-time-with-the-photo/</guid><description>&lt;p&gt;&lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-IMG_20130409_122904.jpg"&gt;&lt;img title="IMG_20130409_122904.jpg" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-IMG_20130409_122904.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Run</title><link>https://kabads.monkeez.org/2013/04/09/run/</link><pubDate>Tue, 09 Apr 2013 08:59:12 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/09/run/</guid><description>A run.</description></item><item><title>Princess Leia or Abba?</title><link>https://kabads.monkeez.org/2013/04/07/princess-leia-or-abba/</link><pubDate>Sun, 07 Apr 2013 00:02:15 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/07/princess-leia-or-abba/</guid><description>&lt;p&gt;&lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-IMG_20130407_010041.jpg"&gt;&lt;img title="" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-IMG_20130407_010041.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Party rockin'</title><link>https://kabads.monkeez.org/2013/04/06/party-rockin/</link><pubDate>Sat, 06 Apr 2013 22:50:46 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/06/party-rockin/</guid><description>&lt;p&gt;&lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-IMG_20130406_234646.jpg"&gt;&lt;img title="IMG_20130406_234646.jpg" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-IMG_20130406_234646.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-IMG_20130406_220531.jpg"&gt;&lt;img title="IMG_20130406_220531.jpg" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-IMG_20130406_220531.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-IMG_20130406_220521.jpg"&gt;&lt;img title="IMG_20130406_220521.jpg" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-IMG_20130406_220521.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Isaac's breakfast</title><link>https://kabads.monkeez.org/2013/04/04/isaacs-breakfast/</link><pubDate>Thu, 04 Apr 2013 08:52:29 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/04/isaacs-breakfast/</guid><description>&lt;p&gt;&lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-wp-1365064268360.jpg"&gt;&lt;img title="wp-1365064268360.jpg" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-wp-1365064268360.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;</description></item><item><title>For Lily</title><link>https://kabads.monkeez.org/2013/04/04/for-lily/</link><pubDate>Thu, 04 Apr 2013 08:47:58 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/04/for-lily/</guid><description>&lt;p&gt;&lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-wp-1365065223794.jpg"&gt;&lt;img title="wp-1365065223794.jpg" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-wp-1365065223794.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Ghost walk.</title><link>https://kabads.monkeez.org/2013/04/03/ghost-walk-2/</link><pubDate>Wed, 03 Apr 2013 20:25:43 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/03/ghost-walk-2/</guid><description>We went on a ghost walk in York.</description></item><item><title>York Minster</title><link>https://kabads.monkeez.org/2013/04/03/york-minster-2/</link><pubDate>Wed, 03 Apr 2013 14:42:06 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/03/york-minster-2/</guid><description>&lt;p&gt;&lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-wp-1365000074042.jpg"&gt;&lt;img title="wp-1365000074042.jpg" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-wp-1365000074042.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-wp-1365000100771.jpg"&gt;&lt;img title="wp-1365000100771.jpg" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-wp-1365000100771.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Joe's breakfast</title><link>https://kabads.monkeez.org/2013/04/03/joes-breakfast/</link><pubDate>Wed, 03 Apr 2013 09:01:47 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/03/joes-breakfast/</guid><description>&lt;p&gt;Plus guy who keeps calling out the time and pointing at his toe telling it off. &lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-wp-1364979675665.jpg"&gt;&lt;img title="wp-1364979675665.jpg" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-wp-1364979675665.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Ask restaurant</title><link>https://kabads.monkeez.org/2013/04/02/ask-restaurant/</link><pubDate>Tue, 02 Apr 2013 17:41:12 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/02/ask-restaurant/</guid><description>&lt;p&gt;&lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-IMG_20130402_183949.jpg"&gt;&lt;img title="IMG_20130402_183949.jpg" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-IMG_20130402_183949.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;</description></item><item><title>York Minster</title><link>https://kabads.monkeez.org/2013/04/02/york-minster/</link><pubDate>Tue, 02 Apr 2013 16:18:15 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/02/york-minster/</guid><description>&lt;p&gt;&lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-wp-1364919427585.jpg"&gt;&lt;img title="wp-1364919427585.jpg" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-wp-1364919427585.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;
tags: []</description></item><item><title>Gate</title><link>https://kabads.monkeez.org/2013/04/02/928/</link><pubDate>Tue, 02 Apr 2013 15:56:10 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/02/928/</guid><description>&lt;p&gt;&lt;a href="http://kabads.monkeez.co.uk/wp-content/uploads/2013/04/wpid-wp-1364918122129.jpg"&gt;&lt;img title="wp-1364918122129.jpg" class="alignnone size-full" alt="image" src="{{ site.baseurl }}/assets/wpid-wp-1364918122129.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Watford gap services</title><link>https://kabads.monkeez.org/2013/04/02/watford-gap-services/</link><pubDate>Tue, 02 Apr 2013 13:18:23 +0000</pubDate><guid>https://kabads.monkeez.org/2013/04/02/watford-gap-services/</guid><description>&lt;p&gt;
&lt;a data-flickr-embed="true" href="https://www.flickr.com/photos/kabads/21269513094/in/datetaken-public/" title="wpid-wp-1364908665527"&gt;&lt;img src="https://farm6.staticflickr.com/5653/21269513094_0e4c709875_o.jpg" width="500" height="375" alt="wpid-wp-1364908665527"&gt;&lt;/a&gt;&lt;script async src="//embedr.flickr.com/assets/client-code.js" charset="utf-8"&gt;&lt;/script&gt;
&lt;/p&gt;</description></item><item><title>Happy New Year Dave - you've got what your class wants</title><link>https://kabads.monkeez.org/2012/12/30/happy-new-year-dave/</link><pubDate>Sun, 30 Dec 2012 12:11:06 +0000</pubDate><guid>https://kabads.monkeez.org/2012/12/30/happy-new-year-dave/</guid><description>&lt;p&gt;Dave's latest message, &lt;a title="http://cur.lv/e3wr" href="http://cur.lv/e3wr" target="_blank"&gt;&lt;b&gt;http://cur.lv/e3wr&lt;/b&gt;&lt;/a&gt; which is frighteningly reassuring, gives us the message that 'we're doing the right thing' - this is a global race, that we must keep up with.&lt;/p&gt;</description></item><item><title>Running with bats tonight</title><link>https://kabads.monkeez.org/2012/11/08/running-with-bats-tonight/</link><pubDate>Thu, 08 Nov 2012 17:51:21 +0000</pubDate><guid>https://kabads.monkeez.org/2012/11/08/running-with-bats-tonight/</guid><description>Running.
&lt;p&gt;&lt;iframe src="http://www.endomondo.com/embed/workouts?w=puVmG1SEPjY&amp;width=580&amp;height=600&amp;width=950&amp;height=600" width="950" height="600" frameborder="0" scrolling="no"&gt;&lt;/iframe&gt;&lt;/p&gt;</description></item><item><title>Another 5km record - 25m 30s</title><link>https://kabads.monkeez.org/2012/10/06/another-5km-record/</link><pubDate>Sat, 06 Oct 2012 09:01:02 +0000</pubDate><guid>https://kabads.monkeez.org/2012/10/06/another-5km-record/</guid><description>&lt;p&gt;Not much taken off, but at least I'm getting faster.&lt;/p&gt;</description></item><item><title>Getting faster</title><link>https://kabads.monkeez.org/2012/09/30/getting-faster/</link><pubDate>Sun, 30 Sep 2012 09:31:02 +0000</pubDate><guid>https://kabads.monkeez.org/2012/09/30/getting-faster/</guid><description>Running</description></item><item><title>Solar electricity</title><link>https://kabads.monkeez.org/2012/09/27/solar-electricity/</link><pubDate>Thu, 27 Sep 2012 20:51:33 +0000</pubDate><guid>https://kabads.monkeez.org/2012/09/27/solar-electricity/</guid><description>Solar graph</description></item><item><title>Happy Birthday to Dad</title><link>https://kabads.monkeez.org/2012/08/16/happy-birthday-to-dad/</link><pubDate>Thu, 16 Aug 2012 08:18:37 +0000</pubDate><guid>https://kabads.monkeez.org/2012/08/16/happy-birthday-to-dad/</guid><description>Happy Birthday from Isaac</description></item><item><title>Endomondo Running Workout</title><link>https://kabads.monkeez.org/2012/08/07/endomondo-running-workout/</link><pubDate>Tue, 07 Aug 2012 11:30:43 +0000</pubDate><guid>https://kabads.monkeez.org/2012/08/07/endomondo-running-workout/</guid><description>&lt;p&gt;was out running 4.71 km in 27m:24s using Endomondo.&lt;/p&gt;</description></item><item><title>Busy first few days of the holiday</title><link>https://kabads.monkeez.org/2012/07/25/busy-first-few-days/</link><pubDate>Wed, 25 Jul 2012 17:36:44 +0000</pubDate><guid>https://kabads.monkeez.org/2012/07/25/busy-first-few-days/</guid><description>&lt;p&gt;Ordered a camera and started using it (or trying to use it).</description></item><item><title>Cassetteboy strikes again...</title><link>https://kabads.monkeez.org/2012/07/24/cassetteboy-strikes-again/</link><pubDate>Tue, 24 Jul 2012 15:15:14 +0000</pubDate><guid>https://kabads.monkeez.org/2012/07/24/cassetteboy-strikes-again/</guid><description>This guy is too clever</description></item><item><title>VPS enlightenment</title><link>https://kabads.monkeez.org/2012/07/18/vps-enlightenment/</link><pubDate>Wed, 18 Jul 2012 09:42:01 +0000</pubDate><guid>https://kabads.monkeez.org/2012/07/18/vps-enlightenment/</guid><description>&lt;p&gt;I've just got the VPS bug. A VPS is a virtual private server, which means you get root access to a server of your choice at a very low cost (as opposed to a dedicated server).&lt;/p&gt;</description></item><item><title>About</title><link>https://kabads.monkeez.org/about/</link><pubDate>Thu, 28 Jun 2012 21:37:55 +0100</pubDate><guid>https://kabads.monkeez.org/about/</guid><description>&lt;p&gt;I had been working in education for some time, always with a focus on technology.&lt;/p&gt;
&lt;p&gt;I now work in Tech, deploying services (mainly databases) in the cloud. This involves work on Terraform) and scripting languages (ruby and python).&lt;/p&gt;
&lt;p&gt;I’m interested in AI code and how this might help with spotting patterns in monitoring and alerting.&lt;/p&gt;
&lt;p&gt;If you want to contact me, please dm me on twitter with my username ‘kabads’.&lt;/p&gt;</description></item><item><title>Damien Hirst Exhibition</title><link>https://kabads.monkeez.org/2012/06/20/damien-hirst-exhibition/</link><pubDate>Wed, 20 Jun 2012 10:57:04 +0000</pubDate><guid>https://kabads.monkeez.org/2012/06/20/damien-hirst-exhibition/</guid><description>&lt;p&gt;[AFG_gallery id='3']&lt;/p&gt;</description></item><item><title>@bristol science museum</title><link>https://kabads.monkeez.org/2012/06/10/bristol-science-museum/</link><pubDate>Sun, 10 Jun 2012 16:15:00 +0000</pubDate><guid>https://kabads.monkeez.org/2012/06/10/bristol-science-museum/</guid><description>We met our friends at the Bristol Science Museum.</description></item><item><title>Endomondo Cycling Workout</title><link>https://kabads.monkeez.org/2012/06/10/endomondo-cycling-workout/</link><pubDate>Sun, 10 Jun 2012 10:30:09 +0000</pubDate><guid>https://kabads.monkeez.org/2012/06/10/endomondo-cycling-workout/</guid><description>&lt;p&gt;was out cycling 13.35 miles in 1h:15m:50s using Endomondo.&lt;/p&gt;</description></item><item><title>Birdbox project</title><link>https://kabads.monkeez.org/2012/05/19/271/</link><pubDate>Sat, 19 May 2012 16:20:02 +0000</pubDate><guid>https://kabads.monkeez.org/2012/05/19/271/</guid><description>&lt;p&gt;One of my projects at work: a birdbox live feed</description></item><item><title/><link>https://kabads.monkeez.org/2012/05/19/266/</link><pubDate>Sat, 19 May 2012 09:43:28 +0000</pubDate><guid>https://kabads.monkeez.org/2012/05/19/266/</guid><description>&lt;p&gt;Having fun with &lt;a href="http://www.bay12games.com/dwarves/"&gt;D&lt;/a&gt;&lt;a href="http://www.bay12games.com/dwarves/"&gt;warf Fortress&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Looking at a fox out there</title><link>https://kabads.monkeez.org/2012/05/06/looking-at-a-fox-out-there/</link><pubDate>Sun, 06 May 2012 15:43:20 +0000</pubDate><guid>https://kabads.monkeez.org/2012/05/06/looking-at-a-fox-out-there/</guid><description>&lt;p&gt;[AFG_gallery id='1']&lt;/p&gt;
&lt;p&gt;The pub dog 'Otto'.&lt;/p&gt;</description></item><item><title>Fairwell ceefax</title><link>https://kabads.monkeez.org/2012/04/19/fairwell-ceefax/</link><pubDate>Thu, 19 Apr 2012 07:19:15 +0000</pubDate><guid>https://kabads.monkeez.org/2012/04/19/fairwell-ceefax/</guid><description>&lt;p&gt;This homage to ceefax is funny and befits the technology at the time. Make sure you read the text.&lt;/p&gt;</description></item><item><title>The coalition's surveillance state problem - monki.biz/2k</title><link>https://kabads.monkeez.org/2012/04/03/the-coalitions-surveillance-state-problem-monki-biz2k/</link><pubDate>Tue, 03 Apr 2012 12:12:25 +0000</pubDate><guid>https://kabads.monkeez.org/2012/04/03/the-coalitions-surveillance-state-problem-monki-biz2k/</guid><description>&lt;p&gt;Over at the New Statesman, they've identified the problem that the current government faces.&lt;/p&gt;</description></item><item><title>A radical manifesto for teaching computing</title><link>https://kabads.monkeez.org/2012/04/02/a-radical-manifesto-for-teaching-computing/</link><pubDate>Mon, 02 Apr 2012 10:37:32 +0000</pubDate><guid>https://kabads.monkeez.org/2012/04/02/a-radical-manifesto-for-teaching-computing/</guid><description>&lt;p&gt;&lt;em&gt;Starting in primary school, children from all backgrounds and every part of the UK should have the opportunity to: learn some of the key ideas of computer science;</description></item><item><title>Racist behaviour is illegal and should be stopped regardless of what state the victim is in.</title><link>https://kabads.monkeez.org/2012/03/31/racist-behaviour-is-illegal-and-should-be-stopped-regardless-of-what-state-the-victim-is-in/</link><pubDate>Sat, 31 Mar 2012 20:48:29 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/31/racist-behaviour-is-illegal-and-should-be-stopped-regardless-of-what-state-the-victim-is-in/</guid><description>&lt;div&gt;When Fabrice Muamba collapsed during a recent match one jerk, named Liam Stacey, started tweeting racist abuse.</description></item><item><title>Solidarity for those on strike today</title><link>https://kabads.monkeez.org/2012/03/28/solidarity-for-those-on-strike-today/</link><pubDate>Wed, 28 Mar 2012 19:41:00 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/28/solidarity-for-those-on-strike-today/</guid><description>&lt;div&gt;Not many people would know it today, as the media has not really picked up on it (apart from the Guardian) - but teachers in London were on strike today.</description></item><item><title>After work refreshments</title><link>https://kabads.monkeez.org/2012/03/28/after-work-refreshments/</link><pubDate>Wed, 28 Mar 2012 16:58:51 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/28/after-work-refreshments/</guid><description>A picture of wine and olives.</description></item><item><title>Christine Blower - "teachers are being taxed"</title><link>https://kabads.monkeez.org/2012/03/28/206/</link><pubDate>Wed, 28 Mar 2012 07:27:59 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/28/206/</guid><description>&lt;blockquote&gt;Teachers will have to contribute 50% more to their pensions over the next three years</description></item><item><title>Cameron and the "massive redistribution of power". Yeah, right.</title><link>https://kabads.monkeez.org/2012/03/26/cameron-and-the-massive-redistribution-of-power-yeah-right/</link><pubDate>Mon, 26 Mar 2012 07:29:47 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/26/cameron-and-the-massive-redistribution-of-power-yeah-right/</guid><description>&lt;p&gt;Back in 2009 Cameron vowed to open government to the masses ("We will begin a massive redistribution of power in our country, from the powerful to the powerless, from the political elite to the man and the woman in the street."</description></item><item><title>Rugby Havant tournament</title><link>https://kabads.monkeez.org/2012/03/25/rugby-hamlet-tournament/</link><pubDate>Sun, 25 Mar 2012 16:34:24 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/25/rugby-hamlet-tournament/</guid><description>A rugby tournament</description></item><item><title>Tried Edmodo - like it</title><link>https://kabads.monkeez.org/2012/03/21/tried-edmodo-like-it/</link><pubDate>Wed, 21 Mar 2012 18:50:34 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/21/tried-edmodo-like-it/</guid><description>&lt;p&gt;I introduced &lt;a title="Edmodo" href="http://www.edmodo.com"&gt;Edmodo&lt;/a&gt;</description></item><item><title>YHA here we come</title><link>https://kabads.monkeez.org/2012/03/16/yha-here-we-come/</link><pubDate>Fri, 16 Mar 2012 14:25:15 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/yha-here-we-come/</guid><description>&lt;div class="posterous_autopost"&gt;We&amp;#39;ve joined the Youth Hostel Association and are planning some trips over the Easter Holiday. We&amp;#39;re off to a Bristol and then off to the Brecons to see some mountains. Pretty cheap accommodation and nice locations - feeling quite excited about it already. &lt;/div&gt;</description></item><item><title>Happy birthday Paula</title><link>https://kabads.monkeez.org/2012/03/16/happy-birthday-paula/</link><pubDate>Fri, 16 Mar 2012 14:24:49 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/happy-birthday-paula/</guid><description>Birthday celebrations</description></item><item><title>Happy birthday Joy</title><link>https://kabads.monkeez.org/2012/03/16/happy-birthday-joy/</link><pubDate>Fri, 16 Mar 2012 14:23:23 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/happy-birthday-joy/</guid><description>Birthday celebrations</description></item><item><title>Visit to Historic Dockyards</title><link>https://kabads.monkeez.org/2012/03/16/visit-to-historic-dockyards/</link><pubDate>Fri, 16 Mar 2012 14:20:47 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/visit-to-historic-dockyards/</guid><description>&lt;p&gt;We visited HMS Warrior (first Ironclad ship in Navy), Action Stations</description></item><item><title>A walk in the icy forest</title><link>https://kabads.monkeez.org/2012/03/16/a-walk-in-the-icy-forest/</link><pubDate>Fri, 16 Mar 2012 14:19:41 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/a-walk-in-the-icy-forest/</guid><description>&lt;div class="posterous_autopost"&gt;
&lt;div&gt;It was really cold this afternoon walking around the forest - the boys really enjoyed skating around on thin ice. &lt;/div&gt;
&lt;p&gt;&lt;iframe src="http://www.youtube.com/embed/NglRekWQTZ0?wmode=transparent" allowfullscreen frameborder="0" height="417" width="500"&gt;&lt;/iframe&gt;&lt;/p&gt;&lt;/p&gt;
&lt;p /&gt;
&lt;div class="p_embed p_image_embed"&gt; &lt;a href="http://getfile4.posterous.com/getfile/files.posterous.com/kabads/WZoqLvjx7qkada3V4jvNHSbX9QTqXFswWthOmyvbhvTWowbsTFltlFxyLXH2/IMG_20120212_145425.jpg.scaled.1000.jpg"&gt;&lt;img alt="Img_20120212_145425" height="375" src="{{ site.baseurl }}/assets/IMG_20120212_145425.jpg.scaled.500.jpg" width="500" /&gt;&lt;/a&gt; &lt;a href="http://getfile0.posterous.com/getfile/files.posterous.com/kabads/cg9jY5v0oaV4BKrol9Aun5zcnMJrC6J97gkPaJWC4AcboPYKBHTWdmgg6PR9/IMG_20120212_145441.jpg.scaled.1000.jpg"&gt;&lt;img alt="Img_20120212_145441" height="375" src="{{ site.baseurl }}/assets/IMG_20120212_145441.jpg.scaled.500.jpg" width="500" /&gt;&lt;/a&gt; &lt;a href="http://getfile7.posterous.com/getfile/files.posterous.com/kabads/MDu1O5Hw2bxxTWvC85iHHdBYVpOOjOqE5avqKpy8RvnDGrny9ZE4YOy5yzg6/IMG_20120212_145456.jpg.scaled.1000.jpg"&gt;&lt;img alt="Img_20120212_145456" height="375" src="{{ site.baseurl }}/assets/IMG_20120212_145456.jpg.scaled.500.jpg" width="500" /&gt;&lt;/a&gt; &lt;a href="http://getfile4.posterous.com/getfile/files.posterous.com/kabads/JLoJUCsYv2XnrNf5lo2WsLWXy2MXQoI79KPu0BvVEgmgI5DmQxpkEusGKnCJ/IMG_20120212_145918.jpg.scaled.1000.jpg"&gt;&lt;img alt="Img_20120212_145918" height="375" src="{{ site.baseurl }}/assets/IMG_20120212_145918.jpg.scaled.500.jpg" width="500" /&gt;&lt;/a&gt; &lt;a href="http://getfile0.posterous.com/getfile/files.posterous.com/kabads/Id5tJ7AnHibj29f7Jat6Bq5EiVYq2YLtgKaWPaJrM01UHVqmQD2sN3okYt4n/IMG_20120212_145947.jpg.scaled.1000.jpg"&gt;&lt;img alt="Img_20120212_145947" height="375" src="{{ site.baseurl }}/assets/IMG_20120212_145947.jpg.scaled.500.jpg" width="500" /&gt;&lt;/a&gt;
&lt;div class="p_see_full_gallery"&gt;&lt;a href="http://kabads.posterous.com/a-walk-in-the-icy-forest"&gt;See the full gallery on Posterous&lt;/a&gt;&lt;/div&gt;
&lt;/p&gt;&lt;/div&gt;
&lt;/p&gt;&lt;/div&gt;</description></item><item><title>Another buyer</title><link>https://kabads.monkeez.org/2012/03/16/another-buyer/</link><pubDate>Fri, 16 Mar 2012 14:17:40 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/another-buyer/</guid><description>&lt;div class="posterous_autopost"&gt;
&lt;p&gt;Report easy has another buyer - who purchased it yesterday.</description></item><item><title>Headspace</title><link>https://kabads.monkeez.org/2012/03/16/headspace/</link><pubDate>Fri, 16 Mar 2012 14:17:15 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/headspace/</guid><description>&lt;div class="posterous_autopost"&gt;I'm on day 3 of the Take10 series&lt;/div&gt;</description></item><item><title>Then this fellow pops up...</title><link>https://kabads.monkeez.org/2012/03/16/then-this-fellow-pops-up/</link><pubDate>Fri, 16 Mar 2012 14:15:22 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/then-this-fellow-pops-up/</guid><description>&lt;div class="posterous_autopost"&gt;and Joe went outside and took a couple.</description></item><item><title>This is more like it...</title><link>https://kabads.monkeez.org/2012/03/16/this-is-more-like-it/</link><pubDate>Fri, 16 Mar 2012 14:14:41 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/this-is-more-like-it/</guid><description>&lt;div class="posterous_autopost"&gt;Taken a bit later, with a fully recharged battery and from where I am sitting!</description></item><item><title>A good article on why e-books are being locked down just to keep the paper industry in business. monki.biz/1r</title><link>https://kabads.monkeez.org/2012/03/16/a-good-article-on-why-e-books-are-being-locked-down-just-to-keep-the-paper-industry-in-business-monki-biz1r/</link><pubDate>Fri, 16 Mar 2012 14:14:04 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/a-good-article-on-why-e-books-are-being-locked-down-just-to-keep-the-paper-industry-in-business-monki-biz1r/</guid><description>&lt;div class="posterous_autopost"&gt;
&lt;h2 class="post-title" style="margin-top: 0px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 5px; padding-left: 0px; font-weight: lighter; font-size: 25px; font-family: Georgia, Times New Roman, Times, serif; vertical-align: baseline; line-height: 28px; color: #333333;"&gt;&lt;span style="font-size: small;"&gt;&lt;a href="http://monki.biz/1r" title="monki.biz/1r"&gt;http://&lt;span style="font-family: inherit;"&gt;&lt;span style="border-color: initial; font-style: inherit;"&gt;monki.biz/1r&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Publishing is a tough industry to be in, no doubt about it. Things are rapidly changing and market forces are being swayed beyond the traditional publisher's influence. Things are now so easy to share and distribute, that these old gate-keepers can no longer steer what people are looking at.&lt;/p&gt;</description></item><item><title>Visitors in our garden</title><link>https://kabads.monkeez.org/2012/03/16/visitors-in-our-garden/</link><pubDate>Fri, 16 Mar 2012 14:13:45 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/visitors-in-our-garden/</guid><description>&lt;div class="posterous_autopost"&gt;Took a couple of shots this frosty morning and then the battery ran out.</description></item><item><title>Facebook == human harvesting.</title><link>https://kabads.monkeez.org/2012/03/16/facebook-human-harvesting/</link><pubDate>Fri, 16 Mar 2012 13:47:46 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/facebook-human-harvesting/</guid><description>&lt;div class="posterous_autopost"&gt;The film soylent green is about people being harvested for food. That&amp;#39;s how I see Facebook. Your details are being harvested for business and advertising. Sure, it can be beneficial to stay in touch with each other, but there&amp;#39;s a bigger price to pay. I&amp;#39;ve come to the decision that the amount of information I&amp;#39;m getting from other people isn&amp;#39;t worth the price I&amp;#39;m paying for that lack of privacy and having my details flogged to advertisers. 
&lt;p /&gt;
&lt;div&gt;So, I&amp;#39;ve made a deal with myself to give up on facebook and see how it goes for a month. I&amp;#39;m not going to log in or check any status updates from facebook. However, I will continue to get stuff from twitter and blogs as they really offer interesting stuff. &lt;/div&gt;
&lt;p /&gt;
&lt;div&gt;So, if you&amp;#39;ve stumbled here instead and we were friends on facebook, please don&amp;#39;t take it personally, I just don&amp;#39;t like being harvested. 
&lt;p /&gt;
&lt;p /&gt;
&lt;div&gt;
&lt;div class="p_embed p_image_embed"&gt; &lt;a href="http://getfile7.posterous.com/getfile/files.posterous.com/kabads/1i5O9JDy5Gjs5KSfxGJYYBSseOSfX87SXCXAFjjxm9jhUUGvsBbazmbOh7b8/0-Anti-Facebook.jpg"&gt;&lt;img alt="0-anti-facebook" height="351" src="{{ site.baseurl }}/assets/0-Anti-Facebook.jpg.scaled.500.jpg" width="500" /&gt;&lt;/a&gt; &lt;/div&gt;
&lt;p&gt; &lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description></item><item><title>I love scenery like this</title><link>https://kabads.monkeez.org/2012/03/16/i-love-scenery-like-this/</link><pubDate>Fri, 16 Mar 2012 13:47:03 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/i-love-scenery-like-this/</guid><description>&lt;div class="posterous_autopost"&gt;
&lt;p /&gt;
&lt;div class="p_embed p_image_embed"&gt; 
&lt;a href="http://getfile0.posterous.com/getfile/files.posterous.com/kabads/FnH0rrYRj9rxNJDpvqOPRLCuT577pjFAhIrKeWvN2vBSjeKSu7kdvigL8SwG/IMG_20120201_171519.jpg.scaled.1000.jpg"&gt;&lt;img alt="Img_20120201_171519" height="375" src="{{ site.baseurl }}/assets/IMG_20120201_171519.jpg.scaled.500.jpg" width="500" /&gt;&lt;/a&gt; &lt;/div&gt;
&lt;p&gt;stopped on my way home to take this shot&lt;/p&gt;
&lt;p&gt;I wish I'd taken longer to take it, but it was on a narrow road. It captures the sense of what I wanted. I'll see if I can get a more please shot another day.&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description></item><item><title>Drinking a toast to dad.</title><link>https://kabads.monkeez.org/2012/03/16/drinking-a-toast-to-dad/</link><pubDate>Fri, 16 Mar 2012 13:45:05 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/drinking-a-toast-to-dad/</guid><description>&lt;div class="posterous_autopost"&gt;
&lt;p&gt;and this beer tastes mighty fine.&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description></item><item><title>Happy birthday Bill</title><link>https://kabads.monkeez.org/2012/03/16/happy-birthday-bill/</link><pubDate>Fri, 16 Mar 2012 13:18:56 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/happy-birthday-bill/</guid><description>Birthday celebrations</description></item><item><title>Report Easy</title><link>https://kabads.monkeez.org/2012/03/16/report-easy/</link><pubDate>Fri, 16 Mar 2012 13:16:50 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/report-easy/</guid><description>&lt;div class="posterous_autopost"&gt;
&lt;p&gt;I've been working on a little side project to learn programming (this is the year of coding apparently).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.reporteasy.co.uk" title="www.reporteasy.co.uk"&gt;http://www.reporteasy.co.uk&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This is a little application that assists with writing pupil reports for teachers - it automates a lot of the text entry that often takes a long time.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.reporteasy.co.uk/wp-content/uploads/2011/12/Report_Easy_1.jpg"&gt;&lt;img src="{{ site.baseurl }}/assets/Report_Easy_1.jpg" height="50%" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;</description></item><item><title>Posterous</title><link>https://kabads.monkeez.org/2012/03/16/posterous/</link><pubDate>Fri, 16 Mar 2012 13:11:37 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/posterous/</guid><description>&lt;div class="posterous_autopost"&gt;Peeps! Who should I be following on posterous?&lt;/div&gt;</description></item><item><title>Enjoying google music</title><link>https://kabads.monkeez.org/2012/03/16/enjoying-google-music-2/</link><pubDate>Fri, 16 Mar 2012 13:10:57 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/enjoying-google-music-2/</guid><description>&lt;div class="posterous_autopost"&gt;
&lt;p&gt;I've signed up to google music - not sure if I like the way spotify is going. I don't like having to have a facebook account (not that I had one when I initially signed up) and I don't like the way spotify are going about publishing details about my music preferences even though I haven't signed up for it.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So, for a while - goodbye spotify and hello google music.&amp;nbsp;&lt;/p&gt;</description></item><item><title>Enjoying google music</title><link>https://kabads.monkeez.org/2012/03/16/enjoying-google-music/</link><pubDate>Fri, 16 Mar 2012 13:10:02 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/16/enjoying-google-music/</guid><description>&lt;div class="posterous_autopost"&gt;
&lt;p&gt;I've signed up to google music - not sure if I like the way spotify is going. I don't like having to have a facebook account (not that I had one when I initially signed up) and I don't like the way spotify are going about publishing details about my music preferences even though I haven't signed up for it.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So, for a while - goodbye spotify and hello google music.&amp;nbsp;&lt;/p&gt;</description></item><item><title>Hello world!</title><link>https://kabads.monkeez.org/2012/03/15/hello-world/</link><pubDate>Thu, 15 Mar 2012 22:01:23 +0000</pubDate><guid>https://kabads.monkeez.org/2012/03/15/hello-world/</guid><description>&lt;p&gt;Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!&lt;/p&gt;</description></item></channel></rss>