<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Neil Moore's page</title>
    <description>Programming and stuff.
</description>
    <link>http://www.cfconline.co.uk/</link>
    <atom:link href="http://www.cfconline.co.uk/feed.xml" rel="self" type="application/rss+xml"/>
    <pubDate>Sat, 08 Jun 2024 18:59:03 +0000</pubDate>
    <lastBuildDate>Sat, 08 Jun 2024 18:59:03 +0000</lastBuildDate>
    <generator>Jekyll v3.9.5</generator>
    
        
          <item>
            <title>Cluedo visual checklist</title>
            <description>&lt;p&gt;Children who cannot read yet may want to play Cluedo. Here is a visual
checklist for the game that has the name and picture of each item on
the checklist.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/cluedo visual.pdf&quot;&gt;PDF&lt;/a&gt;&lt;/p&gt;
</description>
            <pubDate>Sat, 08 Jun 2024 13:22:16 +0000</pubDate>
            <link>http://www.cfconline.co.uk/personal/2024/06/08/cluedo-visual-checklist.html</link>
            <guid isPermaLink="true">http://www.cfconline.co.uk/personal/2024/06/08/cluedo-visual-checklist.html</guid>
            
            
            <category>personal</category>
            
          </item>
        
    
        
          <item>
            <title>Delayed mail in Gmail</title>
            <description>&lt;p&gt;I have implemented a productivity hack so that my email is only delivered twice a day, 
once between 8 and 9am, and later between 5 and 6. That way I don’t check it when I wake up
and I don’t check it during the day. It’s more like the experience when you get home and
the postman has been and you can look at all your mail together.&lt;/p&gt;

&lt;p&gt;I have managed to completely eliminate compulsive checking of emails. I know there will be
nothing new there most of the time.&lt;/p&gt;

&lt;p&gt;I use Gmail as a mail client. The way that I have achieved this is:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;
    &lt;p&gt;To archive all incoming email, but apply a tag calling “snoozing”. That means it doesn’t show in my
Inbox.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;To apply label “snoozing” to all sent email. That means it appears in my inbox later on, and I can
decide if it needs a follow up.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;To write a “Google Apps Script” program that moves all “snoozing” tagged emails to the Inbox and removes
the “snoozing” tag. It runs at 8-9am and 5-6pm.&lt;/p&gt;
  &lt;/li&gt;
&lt;/ol&gt;

&lt;h2 id=&quot;implementation&quot;&gt;Implementation&lt;/h2&gt;

&lt;p&gt;The incoming filter is:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;Matches: larger:1
Do this: Skip Inbox, Apply label &quot;snoozing&quot;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;i.e. it matches all emails whose size is 1 byte or more, and it does “Skip the inbox” and “Apply label snoozing”.&lt;/p&gt;

&lt;p&gt;The outgoing filter is:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;Matches: from:me
Do this: Apply label &quot;snoozing&quot;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;i.e. it just applies the label to emails from me.&lt;/p&gt;

&lt;p&gt;The Google Apps Script is created at https://script.google.com/home/.&lt;/p&gt;

&lt;p&gt;Create a new project and enter the following code:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;function myFunction() {
  GmailApp.moveThreadsToInbox(GmailApp.search('label:snoozing'));
  var label = GmailApp.getUserLabelByName(&quot;snoozing&quot;);
  var threadArray = GmailApp.getInboxThreads();
  for (var i=0; i&amp;lt; threadArray.length; i++) {
    threadArray[i].removeLabel(label);
  }
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Add a “Service” for Gmail API.&lt;/p&gt;

&lt;p&gt;Then go to “Triggers” and choose time based triggers for times that will suit you.&lt;/p&gt;

&lt;p&gt;Save it.&lt;/p&gt;

&lt;p&gt;Do some test runs.&lt;/p&gt;
</description>
            <pubDate>Fri, 07 Jun 2024 13:22:16 +0000</pubDate>
            <link>http://www.cfconline.co.uk/personal/2024/06/07/delayed-mail-in-gmail.html</link>
            <guid isPermaLink="true">http://www.cfconline.co.uk/personal/2024/06/07/delayed-mail-in-gmail.html</guid>
            
            
            <category>personal</category>
            
          </item>
        
    
        
          <item>
            <title>St Andrews EPC prices</title>
            <description>&lt;p&gt;I phoned every surveyor I could find in St Andrews and asked them for the price of an EPC certificate.&lt;/p&gt;

&lt;p&gt;This data is obviously only accurate at the time of writing.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;standrewspropertycentre - £120 incl VAT&lt;/li&gt;
  &lt;li&gt;Allied Surveyors Scotland - £132 incl VAT&lt;/li&gt;
  &lt;li&gt;Shepherd Chartered Surveyors - £125 incl VAT&lt;/li&gt;
  &lt;li&gt;Bradburne Chartered Surveyors - £126 incl VAT&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I also found openrent.co.uk that charged &lt;em&gt;£69 incl VAT&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Their service was excellent and they also offer other fixed prices landlord services like gas safety, etc.&lt;/p&gt;

&lt;p&gt;Hopefully somebody will be searching for the price of an EPC in St Andrews at some point and they will realise that it’s not worth calling the surveyors.&lt;/p&gt;
</description>
            <pubDate>Tue, 14 Mar 2023 13:22:16 +0000</pubDate>
            <link>http://www.cfconline.co.uk/personal/2023/03/14/st-andrews-epc.html</link>
            <guid isPermaLink="true">http://www.cfconline.co.uk/personal/2023/03/14/st-andrews-epc.html</guid>
            
            
            <category>personal</category>
            
          </item>
        
    
        
          <item>
            <title>Guitar</title>
            <description>&lt;p&gt;&lt;img src=&quot;/resources/guitar/IMG_20200518_103715.JPG&quot; alt=&quot;smiley&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Over the last couple of months, I have made an electric guitar for the first time. Actually most of those two months I wasn’t doing anything apart
from waiting for parts to arrive. I was mostly buying parts from China and they were all held up by Covid-19 delays.&lt;/p&gt;

&lt;p&gt;The guitar was based on a Fender Telecaster design, since plans and parts are fairly easy to get hold of and since I like the
look of it. It would have been simple enough to have changed the shape of the body and otherwise used the same hardware and
general layout, but I just did an exact copy.&lt;/p&gt;

&lt;h1 id=&quot;step-1-buy-components-from-aliexpress&quot;&gt;Step 1: Buy components from AliExpress&lt;/h1&gt;

&lt;p&gt;The price of components purchased in the UK can really add up. However they take ages to come, so do this step first probably at least
6 weeks before you want to finish the build. I picked up all the basic components there:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;replacement neck for Stratocaster (compatible with Telecaster, main difference is the shape of the headstock),&lt;/li&gt;
  &lt;li&gt;input jack&lt;/li&gt;
  &lt;li&gt;bridge&lt;/li&gt;
  &lt;li&gt;prewired control plate&lt;/li&gt;
  &lt;li&gt;string tree&lt;/li&gt;
  &lt;li&gt;machine heads&lt;/li&gt;
  &lt;li&gt;neck plate&lt;/li&gt;
  &lt;li&gt;scratch plate&lt;/li&gt;
  &lt;li&gt;string ferrules&lt;/li&gt;
  &lt;li&gt;strap pegs&lt;/li&gt;
  &lt;li&gt;strap&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can build your own neck, but it requires specialised tools and techniques so I skipped that so that I could get a good
result. Maybe try that another time.&lt;/p&gt;

&lt;h1 id=&quot;step-2-body&quot;&gt;Step 2: Body&lt;/h1&gt;

&lt;p&gt;&lt;a href=&quot;/resources/guitar/IMG_20200307_132508.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Body wood&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;I bought the wood for the body from a brilliant wood shop in Glasgow, &lt;a href=&quot;http://www.reidtimber.co.uk/&quot;&gt;Reid Timber&lt;/a&gt;. As far as I know there is
nowhere like this shop or around Edinburgh. It is near Celtic Park so I combined a home game
(I didn’t know at the time it would be the last one of the season) with a visit to the shop.
The shopkeeper doesn’t necessarily recommend visiting the shop for guitar wood, most of which is
not on display, but I wanted to see the different types of possible wood. For example, I don’t really know 
what “swamp ash” or “sapele” looks like. On the day they had 
sapele and I think walnut on display. The walnut was much more expensive and I think I read it is hard to
work with normal tools, so I got the Sapele at £35 (I think). It was a single piece. Not sure if that is
a great wood or not, but certainly many guitar makers are using that and it looks nice.
The body blank was surprisingly cheap I thought, taking into account the quality.&lt;/p&gt;

&lt;p&gt;The shop in general is fantastic, I have never seen anything like this range of wood anywhere. I will definitely
be making all my future wood projects using wood from this shop.&lt;/p&gt;

&lt;p&gt;I think that is definitely good value compared to other suppliers like &lt;a href=&quot;http://www.guitarbuild.co.uk&quot;&gt;guitarbuild.co.uk&lt;/a&gt;
where a mahogany 2 piece blank is £77 whereas I got a 1 piece for less than half that.&lt;/p&gt;

&lt;p&gt;You can also buy pre-cut guitar bodies with the cavities already made for the electronics and component holes drilled.
I wanted to be able to say I built this guitar, rather than assembled it, so that was not for me.
Also it would substantially increase the cost; a premade mahogany Telecaster body would be &lt;a href=&quot;https://www.guitarbuild.co.uk/collections/guitar-bodies/products/tc-body-828741&quot;&gt;around £180&lt;/a&gt;. However if you don’t have tools like a jigsaw, router,
files, drill, etc. then it would definitely be cost effective to go pre-made, since those tools could easily 
cost £250 to buy.&lt;/p&gt;

&lt;p&gt;To figure out where to cut, I used plans from &lt;a href=&quot;https://www.electricherald.com/fender-telecaster-templates/&quot;&gt;Electric Herald&lt;/a&gt; specifically &lt;a href=&quot;https://www.electricherald.com/diagrams/telecaster/Fender-Telecaster.pdf&quot;&gt;this plan&lt;/a&gt;. I have backed up the plans &lt;a href=&quot;/resources/guitar/Fender-Telecaster.zip&quot;&gt;here&lt;/a&gt; in case they disappear from the internet.&lt;/p&gt;

&lt;p&gt;If you have a large format printer then you could print the template out at 1:1, cut round it and then draw round it onto the wood. I don’t so I sellotaped big paper to a big monitor 
and traced it with a pencil at 100% scale. Then I cut it out and traced round it onto the piece of wood (including marking the positions of cavities to
make with the router).&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/guitar/IMG_20200329_144647.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Body marked out for cutting&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;I cut round it with a jigsaw. To cut the body, professional guitar makers will use a router and a template. I didn’t buy a template and I didn’t make one because I am not sure I’ll
make a second guitar. I had to buy special Bosch Hardwood jigsaw blades, after realised the wood was too thick and hard for
the blade I already had.&lt;/p&gt;

&lt;p&gt;Eventually I had a nice body shape which I filed to get it roughly right and with rounded edges.&lt;/p&gt;

&lt;p&gt;Next I routed out the holes for the pickups and control plate. It needs to be quite accurate because it needs to be deep
enough to take the parts but not so deep you accidentally make a hole in the back.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/guitar/IMG_20200413_173239.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Body marked out for cutting&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;This is when I made a frustrating mistake drilling the holes for the strings to go through. I
drilled them squint meaning the
string ferrules on the back don’t line up. But it is only a cosmetic issue, the strings go
through the holes fine and arrive at the bridge as they should.&lt;/p&gt;

&lt;h1 id=&quot;step-3-neck&quot;&gt;Step 3: Neck&lt;/h1&gt;

&lt;p&gt;I was aware from the very beginning that fitting the neck was the difficult part and that was where I could
potentially make a catastrophic mistake. If you put it on squint then it affects ergonomics. If it is too
deep into the body, then the strings will be too far off the fretboard. If it’s too far off the body then 
the strings will be pressed on the the fretboard. If it’s too close to the bridge or too far away then 
the guitar will be out of tune. There is a little bit of tolerance because the bridge is adjustable, but
it’s only a few millimetres in each direction.&lt;/p&gt;

&lt;p&gt;So the next thing to do was the route the neck pocket. I cut it with extreme trepidation, but it eventually fitted
and looked straight.&lt;/p&gt;

&lt;p&gt;I attached the bridge, put on the machine heads and a single string… and to my delight I could play a tune
on one string! I even put the rest of the strings on and played it a bit, I was very happy at this point
because I had assumed that this would require all types of heroics with a chisel to get it to fit and that
I might have to put matchsticks in to get it to work.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/guitar/IMG_20200502_102502.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Neck in place&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/guitar/IMG_20200502_104931.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Machine heads&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;h1 id=&quot;step-4-finish&quot;&gt;Step 4: Finish&lt;/h1&gt;

&lt;p&gt;Then lots of sanding. I started at 100 grit and eventually stopped at 400 grit.&lt;/p&gt;

&lt;p&gt;There were a LOT of options for finish, see &lt;a href=&quot;https://www.manchesterguitartech.co.uk/category/finish/&quot;&gt;Manchester Guitar Tech&lt;/a&gt; for lots of great detailed blog posts with advice on finish. At least:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Just oil&lt;/li&gt;
  &lt;li&gt;Laquer (various kinds)&lt;/li&gt;
  &lt;li&gt;Stain plus laquer&lt;/li&gt;
  &lt;li&gt;Opaque self-coloured laquer&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I didn’t stain it because I wasn’t sure how stain would interact with the reddish wood. I also didn’t want
to cover up the wood grain. I finally went with first applying sanding sealer followed by laquer, both from
a spray can. I think using a spray can was a good move because it make it easier to avoid lumpy bits of
varnish. The stuff I got was from &lt;a href=&quot;https://chestnutproducts.co.uk/&quot;&gt;Chestnut Products&lt;/a&gt;, much cheaper direct
from the company than on Amazon Prime (remember to check direct with the manufacturer or shop around
on the internet, whenever you’re purchasing!)&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/guitar/IMG_20200502_122022.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Before finish&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/guitar/IMG_20200502_122228.JPG&quot; data-lightbox=&quot;montage&quot;&gt;After finish&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;h1 id=&quot;step-5-hardware-and-pickups&quot;&gt;Step 5: Hardware and pickups&lt;/h1&gt;

&lt;p&gt;I got a pre-wired control plate, I felt that my electronics knowledge was no up to picking all these
components individually. A control plate consists of a volume control, tone control and “3 way” switch.&lt;/p&gt;

&lt;p&gt;I was very confused by the switch, because it seemed to have 5 positions. Eventually I found this diagram&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/resources/guitar/Control_Plate_Wiring_Diagram_2.jpg&quot; alt=&quot;smiley&quot; /&gt;&lt;/p&gt;

&lt;p&gt;at &lt;a href=&quot;https://www.northwestguitars.co.uk/telecaster-wiring-diagrams/&quot;&gt;this page&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;That diagram exactly describes the wiring required. I spent half an hour using a multimeter to verify what would happen with the switch in various positions.&lt;/p&gt;

&lt;p&gt;My wiring and soldering was completely shoddy, it took all morning but eventually I got it to work. I am not
going to recommend any resources on soldering, because I can’t tell which ones were good and which are bad.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/guitar/IMG_20200509_114937.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Electronics half done&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;h1 id=&quot;costs&quot;&gt;Costs&lt;/h1&gt;

&lt;p&gt;To put together a guitar using parts from a guitar supplier would be much more expensive, albeit I splurged
on the pickups. I could have bought a Chinese off-brand and it probably would have sounded similar
to my untrained ear.&lt;/p&gt;

&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
      &lt;th&gt;Item&lt;/th&gt;
      &lt;th&gt;Cost&lt;/th&gt;
      &lt;th&gt;Notes&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;Strap&lt;/td&gt;
      &lt;td&gt;£9.69&lt;/td&gt;
      &lt;td&gt;https://www.aliexpress.com/item/4000234714181.html?spm=a2g0s.9042311.0.0.5e554c4doGQo2M&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Output jack&lt;/td&gt;
      &lt;td&gt;£2.60&lt;/td&gt;
      &lt;td&gt;https://www.aliexpress.com/item/New-High-Quality-Metal-Silver-6-35mm-1-4-Jack-Plug-Socket-Output-Plate-For-Electric/32801316568.html?spm=a2g0s.9042311.0.0.5e554c4doGQo2M&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;String ferrules&lt;/td&gt;
      &lt;td&gt;£1.37&lt;/td&gt;
      &lt;td&gt;https://www.aliexpress.com/item/6pcs-Electric-Guitar-Bridge-Guitar-String-Mounting-Ferrules-Bushing-string-retainer-Balck-Gold-Chrome/4000617361684.html?spm=a2g0s.9042311.0.0.5e554c4doGQo2M&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Output jack&lt;/td&gt;
      &lt;td&gt;£2.60&lt;/td&gt;
      &lt;td&gt;https://www.aliexpress.com/item/New-High-Quality-Metal-Silver-6-35mm-1-4-Jack-Plug-Socket-Output-Plate-For-Electric/32801316568.html?spm=a2g0s.9042311.0.0.5e554c4doGQo2M&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;String tree&lt;/td&gt;
      &lt;td&gt;£0.93&lt;/td&gt;
      &lt;td&gt;https://www.aliexpress.com/item/1-set-3-colors-Electric-Guitar-Strings-Retainer-Metal-String-Tree-Guide-Retainer-for-Guitar-Bass/33008743797.html?spm=a2g0s.9042311.0.0.5e554c4doGQo2M&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;String ferrules&lt;/td&gt;
      &lt;td&gt;£1.37&lt;/td&gt;
      &lt;td&gt;https://www.aliexpress.com/item/6pcs-Electric-Guitar-Bridge-Guitar-String-Mounting-Ferrules-Bushing-string-retainer-Balck-Gold-Chrome/4000617361684.html?spm=a2g0s.9042311.0.0.5e554c4doGQo2M&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Bridge and prewired control plate&lt;/td&gt;
      &lt;td&gt;£23.50&lt;/td&gt;
      &lt;td&gt;https://www.aliexpress.com/item/FLEOR-6-String-Electric-Guitar-Tremolo-Bridge-Tele-Pre-wired-Control-Plate-Set-Tele-Prewired-Control/32882668300.html?spm=a2g0s.9042311.0.0.5e554c4doGQo2M&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Strap pegs&lt;/td&gt;
      &lt;td&gt;£0.71&lt;/td&gt;
      &lt;td&gt;https://www.aliexpress.com/item/2Pcs-Guitar-Strap-Lock-Locking-Pegs-Pin-Metal-End-Strap-Button-for-Acoustic-Classical-Electric-Bass/1000005709791.html?spm=a2g0s.9042311.0.0.5e554c4doGQo2M&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Machine heads&lt;/td&gt;
      &lt;td&gt;£6.43&lt;/td&gt;
      &lt;td&gt;https://www.aliexpress.com/item/6-in-Line-Sealed-Guitar-Tuners-2-Pin-Key-Tuning-Pegs-Keys-Machine-Heads-Set-for/32998818890.html?spm=a2g0s.9042311.0.0.5e554c4doGQo2M&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Pick guard&lt;/td&gt;
      &lt;td&gt;£2.74&lt;/td&gt;
      &lt;td&gt;https://www.aliexpress.com/item/3-Ply-Tele-Style-Electric-Guitar-Pick-Guard-Scratch-Plate-Fit-Telecaster-Black-high-quality-Guitar/32950432025.html?spm=a2g0s.9042311.0.0.27424c4dzFBfO6&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Neck plate&lt;/td&gt;
      &lt;td&gt;£2.51&lt;/td&gt;
      &lt;td&gt;https://www.aliexpress.com/item/Chrome-Electric-Guitar-Neck-Plate-Neck-Plate-Fix-Tele-TL-Electric-Guitar-Neck-Joint-Board/4000403151929.html?spm=a2g0s.9042311.0.0.27424c4dzFBfO6&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Seymour Duncan Hot Rails pickups&lt;/td&gt;
      &lt;td&gt;£159.95&lt;/td&gt;
      &lt;td&gt;http://www.hotroxuk.com/seymour-duncan-hot-rails-for-tele-matched-set-sthr-1.html&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Maple Neck&lt;/td&gt;
      &lt;td&gt;£39.84&lt;/td&gt;
      &lt;td&gt;https://www.ebay.co.uk/itm/254315249789&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Sanding sealer and lacquer&lt;/td&gt;
      &lt;td&gt;£20.70&lt;/td&gt;
      &lt;td&gt;http://chestnutproducts.co.uk/&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;TOTAL&lt;/td&gt;
      &lt;td&gt;£274.94&lt;/td&gt;
      &lt;td&gt; &lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;

&lt;p&gt;Let’s not talk about the new tools I bought because that would make the price seem a bit ridiculous. I had to get
a new drill/driver and soldering kit.&lt;/p&gt;

&lt;h1 id=&quot;conclusion&quot;&gt;Conclusion&lt;/h1&gt;

&lt;p&gt;This has been a fantastic hobby for the last couple of months. I think I’ve made something that will
always be special to me. I am very happy with it and it plays
just as well as my Epiphone Les Paul. If anything it is a bit too similar, because with twin humbuckers it
really sounds quite similar. Maybe next time I would make something totally different, e.g. a more standard
single coil twangy Telecaster or a out and out metal guitar with pointy edges and active pickups.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/guitar/IMG_20200518_103715.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Finished guitar&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;
</description>
            <pubDate>Sun, 17 May 2020 13:22:16 +0000</pubDate>
            <link>http://www.cfconline.co.uk/personal/2020/05/17/guitar.html</link>
            <guid isPermaLink="true">http://www.cfconline.co.uk/personal/2020/05/17/guitar.html</guid>
            
            
            <category>personal</category>
            
          </item>
        
    
        
          <item>
            <title>Ukulele</title>
            <description>&lt;p&gt;I got a &lt;a href=&quot;https://www.aliexpress.com/item/21-Inches-DIY-Ukulele-Small-Guitar-Kit-Set-DIY-Ukulele-Musical-Instruments-Packing-With-Ukulele-Accessories/32832521073.html?&quot;&gt;Ukulele kit from Ali Express&lt;/a&gt;. Probably not any cheaper than an assembled one, but I felt like putting it together myself.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/ukulele/00-parts.JPG&quot; data-lightbox=&quot;montage&quot;&gt;All parts&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;However it came with no instructions. Not even to say what kind it was, because it turns out there are several types of ukulele! It didn’t say what positions to stick things either, but that is crucial because it would affect the intonation of the ukulele if the positions were not quite right.&lt;/p&gt;

&lt;p&gt;I figured out it was a “standard” or “soprano” ukulele, since it was about 53cm long (see &lt;a href=&quot;https://en.wikipedia.org/wiki/Ukulele#Types_and_sizes&quot;&gt;wikipedia&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Since the parts came unfinished, I should have begun by painting or varnishing the guitar. I didn’t do that because I wasn’t planning on any decoration. I didn’t want to encourage Katie to start painting my own guitar, avoiding that getting damaged was part of the point of getting the ukulele.&lt;/p&gt;

&lt;p&gt;First of all glue the body and neck together. There should be only one way to attach it.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/ukulele/01-body.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Body and neck glued together&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;Second glue the fretboard onto the neck. It should be easy to figure out the position, because the neck and fretboard surfaces match. Just slide the fretboard until it fits and glue it.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/ukulele/02-fretboard.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Neck and fretboard glued together&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;Third, stick the nut immediately at the top of the fretboard.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/ukulele/03-nut.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Stick the nut on it!&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;Fourth, install the tuning keys. This is a bit more complicated, but the holes are pre-drilled so just insert into the holes, screw into place and then glue the caps over the pegs.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/ukulele/04-tuning-keys.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Tuning keys front&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/ukulele/05-tuning-keys-rear.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Tuning keys rear&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;Sixth, glue the bridge into position. This one is difficult, it took me a while to figure out what to do. It is located below the bottom of the fretboard, and needs to be put on straight, i.e. exactly perpendicular to the main axis of symmetry of the guitar. But how far down? This was what took me a while. What I eventually read somewhere is that the 12th fret is exactly halfway down the string. You can verify this on a guitar or ukulele because you can achieve a &lt;a href=&quot;https://en.wikipedia.org/wiki/String_harmonic&quot;&gt;harmonic at that position&lt;/a&gt;. So measure the distance from the nut to the 12th fret, then draw a line that distance from the 12th fret. It will be somewhat below the sound hole.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/ukulele/06-bridge.JPG&quot; data-lightbox=&quot;montage&quot;&gt;Bridge&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;Seventh, another tricky stage. How to attach the strings. For this stage it would be too difficult to explain using words, so here is a link to a video I found useful. It is by Ken Cameron from Hiloguitars. He seems to have been born Scottish, but has picked up a American accent. Visit the youtube &lt;a href=&quot;https://www.youtube.com/watch?v=lDJywsNAF1g&quot;&gt;here&lt;/a&gt; to learn how to string it. Before starting to attach them, check out the following step though!&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/ukulele/07-strings.JPG&quot; data-lightbox=&quot;montage&quot;&gt;String attachment at bridge&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/ukulele/08-strings-2.JPG&quot; data-lightbox=&quot;montage&quot;&gt;String attachment at nut&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;Eighth, in what order to attach the string? The strings in my kit came completely unlabelled, I imagine that is not the case if you buy a set of strings from a shop. Likely each string would come in an envelope with . I could see that they were each a different thickness. Again it took a while to find out what string thicknesses will be. The standard tuning is G4 C4 E4 A4. That means G is the the top string while playing or leftmost string with the ukulele pointing upwards. I eventually found thicknesses of the individual strings on a &lt;a href=&quot;https://forum.ukuleleunderground.com/showthread.php?15343-String-Thickness&quot;&gt;message board post&lt;/a&gt;. This post stated that the thicknesses of the strings as as follows in inches: G = .026, C = .037, E = .030, A = .024. In other words in increasing order of thickness we have the A string, G string, E string and then C string.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/ukulele/09-string-thicknesses.JPG&quot; data-lightbox=&quot;montage&quot;&gt;String thicknesses&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;If you get the kit then I hope yours comes with instructions, but if not the above should get you fairly close.&lt;/p&gt;
</description>
            <pubDate>Tue, 21 Aug 2018 13:22:16 +0000</pubDate>
            <link>http://www.cfconline.co.uk/personal/2018/08/21/ukelele.html</link>
            <guid isPermaLink="true">http://www.cfconline.co.uk/personal/2018/08/21/ukelele.html</guid>
            
            
            <category>personal</category>
            
          </item>
        
    
        
          <item>
            <title>Fergus Samuel Moore</title>
            <description>&lt;p&gt;Here is a picture and video of our new baby boy Fergus Samuel Moore.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/fergus.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Photo with Toucan&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a class=&quot;embedly-card&quot; href=&quot;https://youtu.be/3RQCXNk5T5s&quot;&gt;Video montage&lt;/a&gt;
&lt;script async=&quot;&quot; src=&quot;//cdn.embedly.com/widgets/platform.js&quot; charset=&quot;UTF-8&quot;&gt;&lt;/script&gt;&lt;/p&gt;
</description>
            <pubDate>Tue, 21 Aug 2018 13:22:16 +0000</pubDate>
            <link>http://www.cfconline.co.uk/personal/2018/08/21/fergus.html</link>
            <guid isPermaLink="true">http://www.cfconline.co.uk/personal/2018/08/21/fergus.html</guid>
            
            
            <category>personal</category>
            
          </item>
        
    
        
          <item>
            <title>This year - 2017</title>
            <description>&lt;p&gt;Most of 2018 is gone but here’s a montage of photos from last year.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/2017.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Montage&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;
</description>
            <pubDate>Mon, 06 Aug 2018 13:22:16 +0000</pubDate>
            <link>http://www.cfconline.co.uk/personal/2018/08/06/year.html</link>
            <guid isPermaLink="true">http://www.cfconline.co.uk/personal/2018/08/06/year.html</guid>
            
            
            <category>personal</category>
            
          </item>
        
    
        
          <item>
            <title>Citroen C4 Picasso software and map updates</title>
            <description>&lt;p&gt;I shouldn’t have to write this but I thought it may be handy to someone. I had a terrible time trying to figure out how to update the software on our 2016 Citroen C4 Picasso so I thought I’d write a guide how to get them. Hoping somebody will find this through google and save themselves some time.&lt;/p&gt;

&lt;p&gt;You get a few years of free map updates with this car and also software updates are available.&lt;/p&gt;

&lt;p&gt;To get the updates do the following&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Go to &lt;a href=&quot;https://mycitroen-uk.citroen.com/MyCitroen/?page=&quot;&gt;My Citroen UK&lt;/a&gt;.&lt;/li&gt;
  &lt;li&gt;Create a new account.&lt;/li&gt;
  &lt;li&gt;Click on &lt;a href=&quot;https://mycitroen-uk.citroen.com/MyCitroen/?page=gerer_mes_vehicules/vehicle&quot;&gt;My Car&lt;/a&gt;.&lt;/li&gt;
  &lt;li&gt;Add a vehicle using the VIN (vehicle identifier number).&lt;/li&gt;
  &lt;li&gt;Once the vehicle is added hover over “Citroen Shop” at the top, then click on “Citroen Connect Nav”.&lt;/li&gt;
  &lt;li&gt;You end up on &lt;a href=&quot;https://mycitroen-uk.citroen.com/MyCitroen/?page=[ovip_without_bta]_page_telechargement_applicatif&quot;&gt;this page&lt;/a&gt;.&lt;/li&gt;
  &lt;li&gt;Download the instructions, map updates and software updates.&lt;/li&gt;
  &lt;li&gt;Follow the instructions (these are complex as well, but the instructions are clear unlike finding the files themselves - see below).&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Edit: if the instructions above don’t give you the files, try this link: https://github.com/ludwig-v/psa-nac-firmware-reverse-engineering&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://citroen.cricou.net/NAC/Tutorial_NAC_Mise_à_jour_firmware_ou_cartographie.pdf&quot;&gt;This page&lt;/a&gt; in french is handy. &lt;a href=&quot;http://c4owners.org/plugins/forum/forum_viewtopic.php?226475&quot;&gt;This page in English&lt;/a&gt; and &lt;a href=&quot;https://en.discussions.tomtom.com/built-in-car-navigation-25/citroen-c4-picasso-connect-nav-usability-1010966/index5.html&quot;&gt;this page&lt;/a&gt; also look handy!&lt;/p&gt;

&lt;p&gt;The instructions are &lt;a href=&quot;https://mycitroen-uk.citroen.com/Resources/Content/GB/ESP/04_Services/ConnectNAV/Citroën_Navigation_Map_Download_Instruction_Manual.pdf&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The map file is called PSA_map-eur_7.0.0-NAC_EUR_WAVE2.tar&lt;/p&gt;

&lt;p&gt;The software file is called PSA_ovip-int-firmware-version_21-06-47-34_NAC-r0_NAC_EUR_WAVE2.tar. It is version Version V.21.06.47.34_NAC-r0.&lt;/p&gt;

&lt;p&gt;For context, the reason I decided to make this page was the very confusing instructions on Citroen’s website. Hopefully somebody from Citroen will solve this usability problem. The steps I went through to try to find the maps was roughly:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Go to &lt;a href=&quot;http://www.citroen.co.uk/home&quot;&gt;Citroen’s UK website&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Find the &lt;a href=&quot;https://citroen-uk-en.custhelp.com/app/answers/detail/a_id/9222&quot;&gt;FAQ about map updates&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;It sends me to &lt;a href=&quot;http://citroen.navigation.com/&quot;&gt;Citroen navigation&lt;/a&gt;.&lt;/li&gt;
  &lt;li&gt;I make an account there.&lt;/li&gt;
  &lt;li&gt;I log into my account there.&lt;/li&gt;
  &lt;li&gt;I register my car there.&lt;/li&gt;
  &lt;li&gt;I go to the “Find Product” page but it tries to charge me for the maps.&lt;/li&gt;
  &lt;li&gt;I go back to the homepage and click on my car “Citroen C4 Picasso”.&lt;/li&gt;
  &lt;li&gt;I click on connect nav which is what my car uses.&lt;/li&gt;
  &lt;li&gt;It says “Please connect to your Citroen.com Personal Account or visit your distributor to get your navigation system map updates.”&lt;/li&gt;
  &lt;li&gt;I have already been at Citroen.com and it sent me here, so I call my dealer.&lt;/li&gt;
  &lt;li&gt;They cannot install map updates for me.&lt;/li&gt;
  &lt;li&gt;I have to call customer support to try to figure it out but they say “just follow the instructions”.&lt;/li&gt;
  &lt;li&gt;Eventually I use google to find “My Citroen”. Cannot remember how I found it.&lt;/li&gt;
  &lt;li&gt;Eventually after much hunting I find the route to the files given at the top of this page.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Please Citroen, make this easier!&lt;/p&gt;
</description>
            <pubDate>Thu, 08 Feb 2018 13:22:16 +0000</pubDate>
            <link>http://www.cfconline.co.uk/personal/2018/02/08/Citroen-updates.html</link>
            <guid isPermaLink="true">http://www.cfconline.co.uk/personal/2018/02/08/Citroen-updates.html</guid>
            
            
            <category>personal</category>
            
          </item>
        
    
        
          <item>
            <title>Christmas box</title>
            <description>&lt;p&gt;As I did &lt;a href=&quot;/personal/2016/12/18/sensory-bottles.html&quot;&gt;last year&lt;/a&gt; I made Katie a Christmas present this year. This time around it was a box with doors each with multiple locks on them. The idea was to make something that will be fun for her to use and help her improve her dexterity and problem solving skills. Also it was supposed to be fun for me to make.&lt;/p&gt;

&lt;p&gt;It is made out of plywood. There are no nails or screws to hold it together. I did that purely to force me to do some precise cutting rather than butting wood together. I think it probably also improves the way it looks and makes it safer for a small child to use, since there are fewer little bits of metal to come loose.&lt;/p&gt;

&lt;p&gt;I had to buy a few things like an electric router and some woodworking tools. I also bought far too much wood because so I could make mistakes. In the end I used only a fraction of the wood that I bought, in fact I spend about £30 on wood and £2 on offcuts and I used only the offcuts! At least I’ve got wood for more projects.&lt;/p&gt;

&lt;p&gt;Here is the &lt;a href=&quot;/resources/katiebox/complete.jpg&quot; data-lightbox=&quot;montage&quot;&gt;finished project&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;For anybody interested in seeing more there were a few steps along the way that I also captured pictures of.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/katiebox/raw.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Raw materials&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/slot.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Cut a slot in the base for the rest of the pieces (using router)&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/back.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Fit the back into the slot&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/sides.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Fit all the sides in&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/sidefit.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Cut slots to fit the sides together neatly (a mitre joint would have been neater but I preferred to make use of my new router!)&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/doors.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Placed the doors in place and put the locks roughly in their final positions&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/plungecuts.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Cut holes for underneath the doors using the router and plunge cuts (I was inpatient and cut them by hand instead of using the guide to get straight lines)&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/glue.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Glued the sides together&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/shelf.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Placed the shelves inside the box&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/painted.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Painted the doors&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/sanded.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Sanded the whole box&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/varnished.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Varnished the box and attached doors&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/name.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Attached Katie’s name to the top&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;/resources/katiebox/complete.jpg&quot; data-lightbox=&quot;montage&quot;&gt;Repeat of finished box&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;All in all it looks OK. I think Katie will like it, but she may never get as much pleasure out of it as I did making it! I also spend a ridiculous and indefensible amount of money on wood, paint, varnish and tools.&lt;/p&gt;
</description>
            <pubDate>Tue, 17 Oct 2017 13:22:16 +0000</pubDate>
            <link>http://www.cfconline.co.uk/personal/2017/10/17/Christmas-box.html</link>
            <guid isPermaLink="true">http://www.cfconline.co.uk/personal/2017/10/17/Christmas-box.html</guid>
            
            
            <category>personal</category>
            
          </item>
        
    
        
          <item>
            <title>10k</title>
            <description>&lt;p&gt;Did the 10k in Glasgow last weekend. It had been a while since I got under 45 mins for a 10k. I didn’t manage this time either. It took me 45 mins and 9 seconds. I didn’t pace myself properly and had too much to do at the end.&lt;/p&gt;

&lt;p&gt;In the past I’ve done the Glasgow 10k in 45 mins &amp;amp; 13 seconds (2013) and in 42 mins &amp;amp; 47 seconds (2014).&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/resources/10k/rt20x30-GSRN0427.jpeg&quot; data-lightbox=&quot;montage&quot;&gt;Picture&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;
</description>
            <pubDate>Sun, 08 Oct 2017 13:22:16 +0000</pubDate>
            <link>http://www.cfconline.co.uk/personal/2017/10/08/10k.html</link>
            <guid isPermaLink="true">http://www.cfconline.co.uk/personal/2017/10/08/10k.html</guid>
            
            
            <category>personal</category>
            
          </item>
        
    
  </channel>
</rss>
