<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>M W Dales Guitars on Michael Winston Dales Guitars</title>
    <link>https://mwdales-guitars.uk/</link>
    <description>Recent content in M W Dales Guitars on Michael Winston Dales Guitars</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-gb</language>
    <lastBuildDate>Sat, 17 Aug 2024 12:28:19 +0100</lastBuildDate>
    
	<atom:link href="https://mwdales-guitars.uk/index.xml" rel="self" type="application/rss+xml" />
    
    
      
    
      
    
      
    
      
    
      
        <item>
          <title>A very brief look into OpenSCAD</title>
          <link>https://mwdales-guitars.uk/blog/2025/12/07/openscad/</link>
          <pubDate>Sun, 07 Dec 2025 18:04:03 +0100</pubDate>
          
          <guid>https://mwdales-guitars.uk/blog/2025/12/07/openscad/</guid>
          <description>

          &lt;p&gt;I like visual CAD tooling, that is designing things by clicking and dragging and drawing on screen. A lot of what I build has a visual element to it along side any technical requirements, and so this makes sense. But once in a while I design something quite simple where most of the complexity is hidden away in the mini-spreadsheet that is the parameters form, that I might as well be doing computer programming: usually things like this are simple connectors or jigs to help me do the more interesting bits.&lt;/p&gt;
&lt;p&gt;To take this to an extreme, there is actually a CAD tool that is based around specifying your part as a program, which is the logical extension of that parameter driven modelling. &lt;a href=&#34;https://openscad.org&#34;&gt;OpenSCAD&lt;/a&gt; is a tool based around letting you specify your model as a set of variables, as you would with parametric design in a traditional CAD program, and then using bits of code to say &amp;ldquo;make a cube with the dimensions from this parameter, and then shift it over by the amount in this other parameter, and then duplicate 3 times (where 3 comes from yet another parameter)&amp;rdquo;.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/12/07/openscad/pic1_hu14381394192114268341.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/12/07/openscad/pic1_hu7662690304454999896.jpg 2x, https://mwdales-guitars.uk/blog/2025/12/07/openscad/pic1_hu14381394192114268341.jpg 1x&#34;
			
			height=&#34;582px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A screenshot of OpenSCAD, showing three panels within a single window. The left half of the window is taken up with a code editor, and then the right hand side is mostly taken up with a 3D view of a small block with three holes in it, and then a small section of logging output.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Whilst I don&amp;rsquo;t think this is ever how I&amp;rsquo;d build guitars, for certain jobs I think this would be quite a quick and simple way for me to specify the design. For example, this collet holder &lt;a href=&#34;https://mwdales-guitars.uk/blog/2018/11/26/a-week-in-the-shop/&#34;&gt;I made many years ago&lt;/a&gt; where I just need a bunch of circles increasing in size would probably have been quicker to make if I didn&amp;rsquo;t need to draw it by hand and apply the parameters to it.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/12/07/openscad/IMG_2139_hu12272787234782502847.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/12/07/openscad/IMG_2139_hu14814737968337906825.jpeg 2x, https://mwdales-guitars.uk/blog/2025/12/07/openscad/IMG_2139_hu12272787234782502847.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;750px&#34;
        	alt=&#34;A photo of a workshop organisation board made from MDF mounted on a white wall, displaying a collection of precision collets arranged in a grid pattern and labeled with their sizes (2mm through 13mm, plus fractional sizes), with metal clips securing the board to the wall.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;As it happens, I wanted to 3D-print myself a small thing to keep a bunch of bits in, and so I thought this was the perfect excuse to finally try out OpenSCAD (it&amp;rsquo;s what you can see me trying to make in the screenshots I&amp;rsquo;ve included).&lt;/p&gt;
&lt;p&gt;The other thing that made me interesting in OpenSCAD is that the language itself is what&amp;rsquo;s referred to as a &lt;a href=&#34;https://en.wikipedia.org/wiki/Functional_programming&#34;&gt;functional programming language&lt;/a&gt;, which is a style of language that I don&amp;rsquo;t get to use often for work, but is a style I enjoy programming in when I can, as it eliminates many of the opportunities for coding bugs.&lt;/p&gt;
&lt;p&gt;But unfortunately my enthusiasm for OpenSCAD was short lived. My point here isn&amp;rsquo;t really to complain about OpenSCAD, as I admire what they&amp;rsquo;re trying to achieve, but rather just to save those who like me were curious to be a little cautious on what you can achieve with it.&lt;/p&gt;
&lt;p&gt;The first screenshot is actually based on &lt;a href=&#34;https://gist.github.com/mdales/7b9a8da2e3c17e8bbdbd89cee0fbb8d0&#34;&gt;my final code before I gave up&lt;/a&gt;, but this is a more honest view of where I ended up:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/12/07/openscad/pic2_hu8197177341820924888.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/12/07/openscad/pic2_hu17665749025687539803.jpg 2x, https://mwdales-guitars.uk/blog/2025/12/07/openscad/pic2_hu8197177341820924888.jpg 1x&#34;
			
			height=&#34;655px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;Another screenshot of OpenSCAD, but with a lot of visual glitches on the model.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;The first major program is that unlike other CAD tools I&amp;rsquo;ve used, if you put two shapes next to each other and tell OpenSCAD you want them to join or one to be used to remove parts from the other, it can&amp;rsquo;t work out what&amp;rsquo;s going on where the faces touch, you actually have to ensure that the shapes clip into each other by some small amount. No other CAD tool I&amp;rsquo;ve used before has made the user do this, and it means your design is no longer this nice mathematically pure model that you&amp;rsquo;d expect using this numbers based approach, you have to keep &lt;a href=&#34;https://www.reddit.com/r/openscad/comments/kdw2to/so_is_there_any_way_we_can_have_previews_without/&#34;&gt;adding a fudge factor&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can see in the above screenshot two issues due to lack of nudge factor: my model for a drill bit is a cylinder with a cone on it, and where the two models are joined with a union operation, although the faces touch perfectly, OpenSCAD still has a surface between them where I&amp;rsquo;d expect the union to make them into a single object. In trying to debug this I then added another cube to subtract from half the model as a hack to give me a sectional view, that cube has the same faces as the other of my model, and so you get the rest of that weird glitching you see on the bottom left in brown. this is all fixed in the first picture by adding a bunch of 0.01 mm offsets to everything to make the sectional cube slightly bigger, and have the code and the cylinder faces run past each other slightly.&lt;/p&gt;
&lt;p&gt;This then means that my parameters can&amp;rsquo;t be just pure descriptions of how big a thing is, you need to know what it&amp;rsquo;s going to be used for so I can add or remove little fudges as I go. This crops up again if you say have a cylinder that you want to use either as a positive piece that you want to add to a design, then you specify it one way, but if you want to use it to cut a hole in another piece you have to &lt;a href=&#34;https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/undersized_circular_objects&#34;&gt;specify it another way&lt;/a&gt; due to how it models cylinders internally. Ultimately, I don&amp;rsquo;t like how I have to think about all this as I&amp;rsquo;m trying to design a piece, I want the tool to work that out for me, that&amp;rsquo;s why I&amp;rsquo;m using tools, to save me effort.&lt;/p&gt;
&lt;p&gt;I spoke with a couple of others that have tried it, and they had some other things that gave me an expectation reset also, such as the lack of filleting (rounding edges over).&lt;/p&gt;
&lt;p&gt;I really love the idea of OpenSCAD for a certain class of problems, so I hope it continues to improve. For instance, Fusion 360, for all it&amp;rsquo;s nice parametric design, can&amp;rsquo;t handle me specifying the formula for spacing out guitar frets, which is why I have &lt;a href=&#34;https://mwdales-guitars.uk/opensource/fretboard/&#34;&gt;written other tools for that&lt;/a&gt;, but OpenSCAD in theory would make that super easy to do. I think if you wanted to explore the bounds of OpenSCAD as a hobby, then I imagine you can have a lot of fun pushing what&amp;rsquo;s possible via mathematical modelling and combining it with 3D-printing or milling, evident if you scroll down a bit on &lt;a href=&#34;https://mastering-openscad.eu/buch/&#34;&gt;this tutorial page&lt;/a&gt;. But if, like me, it&amp;rsquo;s just a means to an end for specific challenges, I&amp;rsquo;d recommend sticking to other more fledged out traditional CAD tools for now.&lt;/p&gt;


          </description>
        </item>
      
    
      
        <item>
          <title>Workshop notes</title>
          <link>https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/</link>
          <pubDate>Fri, 15 Aug 2025 09:04:03 +0100</pubDate>
          
          <guid>https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/</guid>
          <description>

          &lt;p&gt;Continuing on from &lt;a href=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/&#34;&gt;last update&lt;/a&gt;, these &amp;ldquo;weeknotes&amp;rdquo; (ahem) follow the new neck I&amp;rsquo;m building for &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-one/thechuncaster/&#34;&gt;the second guitar I built&lt;/a&gt;. When I started writing about this neck in my notes here I couldn&amp;rsquo;t say what it was for, as it was a surprise present for my brother, who is the owner of that guitar. I knew he was bringing the guitar back to me as there was a problem with the electronics, and that seemed as good a time as any to finish the job I started in 2017 when I first made that guitar by building it a neck myself, to replace the one I had bought at the time.&lt;/p&gt;
&lt;h1 id=&#34;inspection-and-cleaning&#34;&gt;Inspection and cleaning&lt;/h1&gt;
&lt;p&gt;It was nice to see the guitar again when my brother brought it down to me when my siblings visited earlier this year:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8609_hu17417148146602443178.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8609_hu4271587754443598804.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8609_hu17417148146602443178.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a telecaster-style electric guitar sat in a guitar case on a workbench in a workshop. The guitar has a natural wood finish on the body, which is made from figured korina, a maple neck, and has gold metal parts.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;It&amp;rsquo;s a lovely, albeit heavy, guitar. And it&amp;rsquo;s an example about why doing commissions is fun, as it&amp;rsquo;s not a guitar I&amp;rsquo;d have built for myself: the pickups are not my style, I&amp;rsquo;m not into gold hardware and so forth. But because Tristan asked for that, I was pushed into new things: I had to replace the metal cap on the neck pickup as I couldn&amp;rsquo;t get a stacked-humbucker in that style with a gold cap, I was forced to do the fretwork myself as buying a fretted neck with gold fret-wire in it much more expensive. I learned a lot on this instrument, and so despite it not being to my taste, I still am somewhat fond of the guitar for what I learned when building it.&lt;/p&gt;
&lt;p&gt;Anyway, as my brother is an actual band playing musician, I could see that this guitar had seen some action since I first built it - though it was less worn that I&amp;rsquo;d expected, with the oil finish still in good condition. That said, two things caught my attention. Firstly, at some point indeed the pickup selector switch had broken and needed replacing (an easy enough job):&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8611_hu10825230412743152508.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8611_hu11909801553936849392.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8611_hu10825230412743152508.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo showing a close look at the pickup selector switch on the guitar in the previous picture. A hand is holding the switch level which is half out of the slot it should sit in.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;And second, it was in need of a good clean after many stage outings and rehearsal sessions. This is a problem with guitars: they pick up a lot of dust and dirt adn grime and they have lots of hard to clean pieces. So I disassembled the whole thing and gave it a good clean.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8614_hu18163292364655894385.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8614_hu351164505313103377.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8614_hu18163292364655894385.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the electric guitar from the first picture, showing it now disassembled into parts on the workbench: the neck to one side, the body to the other, the pick-guard in the middle and screws and screwdrivers around it.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;In the end even the bridge had to come off to let me get dirt that had build up under the rounded edges and under the saddles. Guitar building is a glamorous life - you get to remove other people&amp;rsquo;s finger dirt from fretboards&amp;hellip;&lt;/p&gt;
&lt;h1 id=&#34;radiusing-the-old-school-way&#34;&gt;Radiusing the old school way&lt;/h1&gt;
&lt;p&gt;So back to the new neck for this guitar. On the last batch of guitar necks I&amp;rsquo;d built, I stepped away from using radius-sanding blocks for putting the radius into the fretboard, and &lt;a href=&#34;https://mwdales-guitars.uk/blog/2023/01/15/a-week-in-the-shop/&#34;&gt;switched to using a router&lt;/a&gt;. You can see a picture from that earlier post below, and there&amp;rsquo;s also a video on that post if you want to see it in action.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_3296_hu6318803981011164384.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_3296_hu2666888092922829499.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_3296_hu6318803981011164384.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a guitar neck sat in a plywood jig that runs the length of the neck and guides a metal arch up and down the length of the fretboard. The arch will support the palm-router that is sat to one side.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Using a router is such a better way to put the radius onto neck: like we discussed in the last post with the table-saw method of cutting the fret-slots, it&amp;rsquo;s both more accurate and faster, a total win-win, and something I don&amp;rsquo;t really want to give up compared to my old method. However&amp;hellip;&lt;/p&gt;
&lt;p&gt;The jig you see above I used before was made for the shorter 24&amp;quot; scale-length necks on builds like &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-two/delfin/&#34;&gt;Delfinen&lt;/a&gt;, and so I needed to make a new jig for the longer 25.5&amp;quot; scale-length neck for The Chuncaster. However, when I fired up the CAD model to draw up the new jig I discovered that the headstock on the longer necks is slightly wider (the 24&amp;quot; neck is on the left, the 25.5&amp;quot; neck is on the right):&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/crop_hu5218904220901710549.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/crop_hu10134139549967279044.jpg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/crop_hu5218904220901710549.jpg 1x&#34;
			
			height=&#34;483px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A pair of screenshots showing a CAD model of the same jig from the previous photo, focussing on the headstock end. On the left the headstock&amp;#39;s curved design comes close to where the metal arched jig will need to be, and on the right one it is actually touching where the jig needs to be.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;This wasn&amp;rsquo;t a particularly deliberate change, I suspect I just tweaked the bezier curve slightly when having to update the CAD model from one scale length to another without realising it. Whilst it looks like in CAD I&amp;rsquo;d get away with it just if I built the jig on the right, I doubt I&amp;rsquo;d get away with it in practice; when I made the jig for the 24&amp;quot; necks it actually split at the narrow point there, so I think I&amp;rsquo;d end up fouling on the headstock with the router jig.&lt;/p&gt;
&lt;p&gt;I can claim, truthfully, that this is because I designed the 25.5&amp;quot; neck before I changed methods for radiusing, and so isn&amp;rsquo;t an oversight or mistake on my behalf. But there isn&amp;rsquo;t really an excuse for not having gone back and updating my 25.5&amp;quot; neck template to accommodate using the router for radiusing the fretboard I started making this neck, that&amp;rsquo;s just lack of foresight on my behalf, and that I didn&amp;rsquo;t realise I&amp;rsquo;d tweaked the headstock profile in this way.&lt;/p&gt;
&lt;p&gt;The upshot of this meant I had to go back to putting the fretboard radius on how I used to do it before I had access to fancy power-tools and jigs, and broke out my old radius sanding blocks.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8618_hu9366585640272118542.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8618_hu18188707569994159413.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8618_hu9366585640272118542.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a work-in-progress electric guitar neck sat in a metal frame that has parallel rails up the length of either side of the neck. To one side is a metal beam with sandpaper stuck to it that has a slight concaved radius to it.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;You&amp;rsquo;ll see here that I&amp;rsquo;m using some sort of jig to hold the neck and give me a straight reference parallel to the centreline of the neck. This is actually a fret-slot cutting jig that was in the workshop before the table-saw setup we saw last week was built (or perhaps why the table-saw setup was built). I&amp;rsquo;m using it to keep one side of the radius block along a straight edge parallel to the centreline because if you don&amp;rsquo;t, as a result of how your body rotates as you reach, you always end up putting a slight bias into the radius making it lower on one set of diagonally opposite corners than the other. Even with the jig you have to be careful: you can see here in this next photo what I&amp;rsquo;m talking about, as if you look at the dust you can see I&amp;rsquo;ve sanded less in the top left and the bottom right than I have in the opposite corners:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8619_hu14827736620487001482.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8619_hu7537797470381362649.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8619_hu14827736620487001482.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A close up photo of the neck in the jig, and you can now see wood-dust on either edge as the concaved beam has been applied to the formerly flat surface. The dust lines however are not perfectly parallel to the direction of the neck as one would ideally want, the have a diagonal slant to them.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;To combat this I switch sides I push the block against and what hand I&amp;rsquo;m leading with when pushing the block regularly to even out any bias over time, and checking regularly to spot if I am introducing any bias by looking end on.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8622_hu3353416321935436660.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8622_hu3361528340526473327.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8622_hu3353416321935436660.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo taken from the heel end of the guitar neck in the jig, checking that the radius sanded into the neck is symmetric - it currently looks reasonably symmetric!&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Not only is sanding the radius onto the fretboard a lot more fraught in this way than using the router, but it&amp;rsquo;s also a lot more of a workout. But after an hour (according to the timestamps on the photos) I was done:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8621_hu6001641984981349535.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8621_hu15600982416968373313.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8621_hu6001641984981349535.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A final photo of the neck in the metal jig, with the fretboard radius now sanded into it.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Next time I&amp;rsquo;ll make sure I tweak my headstock design to accommodate the radiusing jig!&lt;/p&gt;
&lt;h1 id=&#34;new-school-holes-for-old-school-tuners&#34;&gt;New-school holes for old-school tuners&lt;/h1&gt;
&lt;p&gt;On most of the early guitars I built I used vintage-style tuners, which I really like, both from an aesthetic point of view and I find them easier to string up a guitar with. However, whilst I find easier to use as a player, they presented a challenge for me as a guitar builder when I stepped away from using the CNC-router to build necks, because they require a stepped hole in the headstock to properly centre and support them. You can see here in the CAD model for one of the earlier necks I made:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/cross-section_hu9239076128370121344.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/cross-section_hu3391857535779879385.jpg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/cross-section_hu9239076128370121344.jpg 1x&#34;
			
			height=&#34;626px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A screen-shot of a CAD model of a guitar neck, showing a cross-section view of the lined up tuners in the headstock. With the cross-section view you can see the holes for the tuners are not a uniform diameter all the way up, they step in the middle with the rear half being a smaller diameter than that at the front.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;The tuner-post is quite narrow, and so the lower hole is cut to that diameter, I assume to make them easier to centre, and then the metal plug that goes into the top of the hole that the post passes through requires a wider top section to fit in. The stepped hole is easy to make when you&amp;rsquo;re CNC-routing your neck, but when I switched to making things without CNC-routing I decided that this stepped hole was not a thing I felt confident making by hand, so I switched to using modern-style tuners, where you drill a single 10mm hole through and more of the tuner sits in the hole to make sure it&amp;rsquo;s placed correctly and securely. (I&amp;rsquo;d show you a CAD model of that, but I&amp;rsquo;ve never made one, as visually the new and old methods look the same on the outside, and given I&amp;rsquo;m not CNC-routing I&amp;rsquo;ve had no need to specify it in such detail - I&amp;rsquo;m a little lazy with my CAD like that :)&lt;/p&gt;
&lt;p&gt;The point of this is that Tristan&amp;rsquo;s guitars has the vintage-style tuners on, which he likes, and so I need to work out how I&amp;rsquo;m going to hand-build the holes for them to fit into. I was pondering how I might do this when &lt;a href=&#34;https://fidelity-guitars.co.uk/&#34;&gt;workshop-mate Matt&lt;/a&gt; said he&amp;rsquo;d had success using vintage-style tuners with just straight through holes - so long as the holes are aligned right you just need the plugs on the front for centring them, so it all works out okay. Which makes sense, but I needed the confidence of someone else to make it okay for me to feel I could try that!&lt;/p&gt;
&lt;p&gt;Despite the impression I gave earlier about lacking foresight, occasionally I can think ahead, as demonstrated in the photo below. You can see there are two small screw holes in the headstock that are where the outer two tuners will need to be positioned: these are not there by accident! I use screws to mount the initial template to the plank of maple that becomes the neck, and I have two of those screws line up with the centre of the outer tuners to make it easy for me to find the reference for them even after I&amp;rsquo;ve removed the face of the headstock. I can then connect them with a line and add the marks for the four other holes to give me the references I need to drill the holes.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8623_hu8999529368007504843.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8623_hu559650593369359889.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8623_hu8999529368007504843.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the blank headstock face on the work-in-progress guitar neck. There are two small drill holes visible where the outer two tuners should go, and a pencil drawn line connecting them, with tick marks to indicate where the other four holes should go.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;With the holes marked up, it&amp;rsquo;s then over to the pillar-drill and using a 9mm forstner bit that I had to buy for this purpose (my others are all multiples of 5mm), 6 new holes are produced:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8639_hu17023521802049185263.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8639_hu1344394954133916926.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8639_hu17023521802049185263.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the headstock again, but now it has 6 large holes in it, into which the tuners have been loosely placed.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;In that photo tuners are not perfectly lined up there because they&amp;rsquo;re not attached properly, and the hole being uniformly wide means they&amp;rsquo;re not locked into place the way a stepped hole would be, but once everything is tightened down they&amp;rsquo;ll be fine. It&amp;rsquo;s worth noting that the 9mm hole is fractionally too small for the inserts that go on the top, but I can use a reamer to widen them slightly when I get to final assembly.&lt;/p&gt;
&lt;h1 id=&#34;now-for-a-proper-workout&#34;&gt;Now for a proper workout&lt;/h1&gt;
&lt;p&gt;In last week&amp;rsquo;s post I had this photo, which shows how I mark up the neck ready for carving:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8538_hu14782237015882166514.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8538_hu3410334639182333113.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8538_hu14782237015882166514.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the back of the guitar neck, which hasn&amp;#39;t yet been carved. On it is a series of pencil lines that go the length of the neck tapering at a rate different to the taper of the sides of the neck. Next to the neck sit a long ruler and a pencil.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;I said I&amp;rsquo;d explain what the lines mean this week, so I guess I&amp;rsquo;d better do that. I learned this technique early on my guitar building from &lt;a href=&#34;https://www.youtube.com/watch?v=K2Wxw3YFHsg&#34;&gt;this video by Fletcher Handcrafted Guitars&lt;/a&gt;, and I&amp;rsquo;ve used it with a little variation on every neck I&amp;rsquo;ve built.&lt;/p&gt;
&lt;p&gt;The process is:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Draw centreline down the length of the rear of the neck&lt;/li&gt;
&lt;li&gt;Mark 1st, and 12th frets on the&lt;/li&gt;
&lt;li&gt;On the 1st fret draw a mark 5mm either side of the centreline&lt;/li&gt;
&lt;li&gt;On the 12th fret draw a mark 10mm either side of the centreline&lt;/li&gt;
&lt;li&gt;On either side of the centreline draw a line the lenght of the neck that connects the marks you&amp;rsquo;ve made on the 1st and 12th fret - this gives you some tapering lines that you can see above.&lt;/li&gt;
&lt;li&gt;On either side of the neck draw a line along the length of the neck 2/3rd way up from the rear (which should be just below the fretboard glue line)&lt;/li&gt;
&lt;li&gt;On the rear again, mark headstock bounds - I do this by extending the sweep of either side of the headstock as it angles in towards the neck at around the start of the fretboard.&lt;/li&gt;
&lt;li&gt;Measure 85mm up from heel of neck on the rear centreline and draw a line across the width of the neck&lt;/li&gt;
&lt;li&gt;Measure another 35mm up the centreline and draw a triangle with that last line you drew (again you can see that in the above photo).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The triangle is where the carve of the neck stops before the neck joint with the guitar&amp;rsquo;s body. These days I normally don&amp;rsquo;t have a squared neck pocket like The Chuncaster has, but make it more curved for better ergonomics; for those guitars I don&amp;rsquo;t use that triangle method, but put the neck into the neck pocket, trace the sweep of the joint line, and then extend it 10 to 15 mm and that becomes my no-go area rather than the above triangle.&lt;/p&gt;
&lt;p&gt;The line on the side and the tapered line on the back between the 1st fret and the triangle is where you&amp;rsquo;ll carve out to a facet using a rasp, which you can see in this photo of the neck after I&amp;rsquo;ve completed that stage:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8641_hu5914550609689599777.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8641_hu8030483761729971607.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8641_hu5914550609689599777.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the work-in-progress guitar neck clamped onto a trestle stand, with wood dust on the floor. The neck is not yet properly carved, still looking plank like, but into the sides of the rear of the neck are two facets at a close to 45 degree angle, running from the first fret down to around the 15th fret. Next to the neck sits a very brutal looking saw-toothed rasp.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Once that is done, you then carve at a more shallow angle to the centreline to have very rough curve here. You can control how chunky the finished neck feels by adjusting those 5mm and 10mm marks you make at the 1st and 12th fret - those values above give quite a skinny neck by the time you&amp;rsquo;re finished, and so I add a couple of mm to both if I want the neck to have a more baseball bat like chunky feel.&lt;/p&gt;
&lt;p&gt;At this stage using the rasp I start to work the facets out into a more continuous rounded over shape. The one thing these marks don&amp;rsquo;t help you with is that the depth of the neck should taper also, with guitar necks being more narrow at the 1st fret than at the 12th etc. So at this stage I use callipers to start measuring the thickness of the neck, and get the values down to a reference neck I know I&amp;rsquo;m happy with, taking more off at the 1st fret end, then smoothing it out to the 12th fret, and using a ruler to check how well I&amp;rsquo;ve made the transition.&lt;/p&gt;
&lt;p&gt;Then when I&amp;rsquo;m roughly happy I&amp;rsquo;ll use a band of fabric backed 80-grit sand paper pulled over the neck to start smoothing it out to a curve, before working up to finer grits to get a smooth finish.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8651_hu326527633584061490.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8651_hu17933532149893485028.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8651_hu326527633584061490.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;Another photo of the guitar neck clamped into the trestle, but now it is much smoother and more rounded looking close to being finished.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;All through this process from the moment I start rounding out the facets I&amp;rsquo;m regularly taking the neck off the stand and holding it like I was playing it and checking whether it feels right to me. Measurements in millimetres are an important guide, but in the end it&amp;rsquo;s all about whether it feels good in the hand that is the real measure of whether the carve is right or not. During the sanding stages I&amp;rsquo;ll also stop occasionally and check for rasp marks that still are showing and highlight those in pencil or chalk so I know where to focus my attention:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8652_hu7001925945661456735.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8652_hu13189559449553461960.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8652_hu7001925945661456735.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A close up photo showing what looks at a distance like a nicely smooth neck carge actually has a bunch of rasp scratches still on it, which have been marked out in pencil.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;It&amp;rsquo;s a lot of work, and I usually end up splitting the process over two days, as the bulk removal wears me out to the point where I&amp;rsquo;ll not have the mental focus to do the finishing detail to a level I&amp;rsquo;d be satisfied with. But it is ultimately very satisfying that you can start with a few crude pencil lines, and end up with something so smooth and beautiful:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8654_hu12933447055473543207.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8654_hu9390658545458927120.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8654_hu12933447055473543207.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A close up photo of the middle of the newly carved neck, showing a smooth transition along its length.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8662_hu16680023809974900122.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8662_hu3649421364748774707.jpeg 2x, https://mwdales-guitars.uk/blog/2025/08/15/workshop-notes/IMG_8662_hu16680023809974900122.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;Another close up photo of the carved neck, showing the smooth transition around the headstock end.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;It helps that the birds-eye maple is also a beautiful material to work with - this neck is going to look amazing once oiled. That&amp;rsquo;ll do it for this week - next time we can cover the fretwork!&lt;/p&gt;


          </description>
        </item>
      
    
      
        <item>
          <title>Some Time in the Shop</title>
          <link>https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/</link>
          <pubDate>Fri, 08 Aug 2025 09:04:03 +0100</pubDate>
          
          <guid>https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/</guid>
          <description>

          &lt;p&gt;Picking up a story of a neck build from &lt;a href=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/&#34;&gt;a little while ago&lt;/a&gt;. This neck is actually a new neck for the second guitar I built, &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-one/thechuncaster/&#34;&gt;The Chuncaster&lt;/a&gt;. That build I made for my brother, and is the first guitar body I made myself rather than buying, but I still bought the neck, which is generally a strategy I recommend to first time guitar builders: you can make a lot of mistakes on the body and still have a great guitar at the end, but building a guitar neck is a lot less forgiving. That said, I started building necks not long after, and I&amp;rsquo;ve always wanted to go back and make one for my brother&amp;rsquo;s guitar; finally after all this time, that&amp;rsquo;s what I&amp;rsquo;m doing.&lt;/p&gt;
&lt;h1 id=&#34;resuming-from-gluing&#34;&gt;Resuming from gluing&lt;/h1&gt;
&lt;p&gt;When I last posted about progress I&amp;rsquo;d been trying out my new technique of making jigs by 3D-printing them, building a device that helped with shaping the headstock on a guitar neck. The end  result of that work was that I&amp;rsquo;d cut the profile of the neck into a single piece of maple and got the headstock level cut in, and we finished that post with me setting the fretboard being glued on:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8500_hu10622811459476341882.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8500_hu14651275554574014889.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8500_hu10622811459476341882.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the neck and fretboard covered in clamps as I glue the two together.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;At this point I get nervous about whether I used enough glue and enough clamps to get a uniform seal all the way around the join. I&amp;rsquo;ve only once failed at this, but it still smarts a little to think about the wasted effort to get to that point of failure. Building a guitar neck is an exercise of investing more and more time into a piece and each next action could void all that and send you back to the start - another reason I tend to caution new builders away from starting with a neck unless they&amp;rsquo;re already seasoned woodworkers.&lt;/p&gt;
&lt;p&gt;Thankfully with the clamps off, everything was looking good:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8522_hu17819666644878284143.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8522_hu6359121937354778899.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8522_hu17819666644878284143.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the main part of a guitar neck (profile cut only, no rear carve yet) glued to the fretboard blank that has yet to be trimmed to match the shape of the rest of the neck. A small amount of glue seapage is visibile along the join line.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;One thing I didn&amp;rsquo;t mention in my previous post was that for the first time since I started building guitars I was using a different brand of wood glue. When I started building guitars I bought a large bottle of &lt;a href=&#34;https://uk.gorillaglue.com/products/gorilla-wood-glue/&#34;&gt;gorilla wood glue&lt;/a&gt;, which has done me since. I picked this because it was what was used in the workshop at the community workshop I was in at the time, and it seemed to do the job. And indeed, has done so ever since. However, in my current workshop, which I share with two professional luthiers, both use &lt;a href=&#34;https://titebond.co.uk/products/titebond-original-wood-glue?variant=29688250335331&#34;&gt;Tightbond&lt;/a&gt;, which they both swear by, and so I&amp;rsquo;ve switched over. Partly, because if they are happy with it, then there is probably a reason, but mostly because it makes it easier in a shared space when people use the same things so if you run out half way through a job you can borrow from the others in a pinch.&lt;/p&gt;
&lt;p&gt;I bring this up as I was asked by someone &lt;a href=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/&#34;&gt;at Makefest this year&lt;/a&gt; about whether I used fancy glues or not, and the answer is no, and as low-brow as it might seam, I had nothing against gorilla glue and so if that&amp;rsquo;s what you&amp;rsquo;ve got to hand, go for it. I did note with the Tightbond it was a little less runny than Gorilla glue, which made it easier to apply and there was a little less sliding around of the fretboard as I tried to clamp if down, so where is a benefit to the switch. Tightbond I think dries quicker too, but given I tend not to have consecutive days in the workshop often, that&amp;rsquo;s less of a practical concern for me than my professional workshop-mates who are on the clock. So Tightbond does seem better, but you can totally use wood-glue you got from your local hardware store for this purpose if that&amp;rsquo;s what you have to hand.&lt;/p&gt;
&lt;p&gt;I did chat to a long time builder of arch-top guitars, and he strongly advocated using &lt;a href=&#34;https://conservation-resources.co.uk/products/fish-glue&#34;&gt;fish-glue&lt;/a&gt;, as it was easier to heat treat to undo, so made repairs on older instruments easier: I guess this is the kind of insight you get after building for several decades - and might also have saved that failed neck I mentioned before, and I could have more easily delaminated the fretboard and tried again. So, there is better glue, but again, don&amp;rsquo;t let not having perfect stop you getting started.&lt;/p&gt;
&lt;h1 id=&#34;tidying-up&#34;&gt;Tidying up&lt;/h1&gt;
&lt;p&gt;With the clamps off, the next step is to trim the fretboard to the profile of the neck. The first stop for this is the bandsaw to remove as much of it as possible, before then doing a finishing pass with a palm-router (a hand controlled router being a finishing tool, not a bulk-material removal tool).&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8524_hu2479893510836636179.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8524_hu8694945254587202498.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8524_hu2479893510836636179.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a work in progress guitar neck clamped to a workbench, next to which sits a De Walt palm router.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Even after getting rid of a lot of the material with the bandsaw, you still end up with an impressive amount of mess to clear up after routing, and why I still got into my overalls for a seemingly simple task!&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8525_hu304963233964976967.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8525_hu18262010280303129429.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8525_hu304963233964976967.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A wide-angled photo showing the work in progress neck that has been trimmed, now unclamped, and on the floor is a large amount of wood dust.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;With the fretboard now flush on both the sides and the heel end, I still need to deal with the overhang at the headstock end, for which my 3D-printed jig makes a brief, penultimate, return:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8527_hu12742176648795638219.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8527_hu10204859718295734360.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8527_hu12742176648795638219.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A close up photo showing a step down from the fretboard to the headstock, with the neck in the 3d-printed jig, all of which is sat on a band-saw table.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;You can see I was going very slowly in my cut by the burn mark there - apologies to my past wood-shop mentors. Normally a burn mark like this is something to avoid, but in this case that material will be removed when I round over the headstock later, and for me the greater risk that I was trying to avoid was pushing through the wood, coming out the other side of the overhang, and then hitting air: I was worried if this happened the piece might slip and I&amp;rsquo;d end up cutting into the rest of the neck, which would be bad. Thus I took it slowly and cautiously, but with a bandsaw that does lead to friction burns like this.&lt;/p&gt;
&lt;h1 id=&#34;fretting-part-one-cutting-the-slots&#34;&gt;Fretting, part one: cutting the slots&lt;/h1&gt;
&lt;p&gt;As I mentioned in the previous post on Makefest, as it was the tenth anniversary I&amp;rsquo;ve been reflecting a lot about how far I&amp;rsquo;ve come in that time. When I made my first necks I needed a way to mark out the position of the frets so I could cut them, and being as I was based in a makerspace, I came up with my own way do doing that &lt;a href=&#34;https://mwdales-guitars.uk/blog/2017/12/6/using-a-laser-cutter-to-make-fretboards/&#34;&gt;using a laser-cutter&lt;/a&gt;. Using the laser-cutter had the added benefit that I could do more than just mark the position, I could etch it enough that my fret-saw could find its groove, literally. I&amp;rsquo;m still quite proud of that maker hack, but these days I reap the benefits of being in a shared-workshop with professional luthiers show don&amp;rsquo;t have time to hand-saw each slot, and have come up with their own way to speed up the process using a table-saw:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8528_hu3033710050205669093.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8528_hu1559457819323413280.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8528_hu3033710050205669093.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a small table-saw bed, and on one end sits a guitar neck being built, sat on a metal plate with regular notches in the side, and at the other side is a wooden sled that runs parallel to the cutting blade.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;You can see the neck is stuck (using double sided sticky tape) onto a metal plate with a series of notches on it, and these notches will let me align the neck up with a pin on the sled that you see on the table saw in just the right position for each fret. We have a different metal template for each of the common scale-lengths guitars come in. And with this what was a very careful hour of saw cutting (as saws like to jump out of grooves), is just a few (still careful) minutes with a table saw:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8529_hu14045753625342232206.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8529_hu6723299636168659006.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8529_hu14045753625342232206.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;Another photo of the table-saw bed, showing that the neck now has slots cut into the fretboard where before there were none.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Again, as with the glue, do you need this to make a guitar? Absolutely not: a ruler, a pencil, and a saw will do the job perfectly fine, just it&amp;rsquo;ll be slower and a little more stressful perhaps. But at the same time I do feel this is one of the better luxuries I have access to in my current workshop :) The one downside of this otherwise wonderful setup is that the templates don&amp;rsquo;t include a notch for the other side of the nut slot, which means I need to shimmy the template along a few mm and hope I aligned it correctly before I cut that.&lt;/p&gt;
&lt;h1 id=&#34;inlays&#34;&gt;Inlays&lt;/h1&gt;
&lt;p&gt;With the slots cut, I can now mark out the position of the fret inlays. For those readers that don&amp;rsquo;t play guitar (of which I know there are some) the inlays that can be seen on the face of a guitar neck and, somewhat less obviously, on the side of the neck, are there to help the player work out where they are on the neck. The double dots on teh 12th fret tell you you&amp;rsquo;re one octave up, the dot on the 5th fret tells you that&amp;rsquo;s where A is on the low string (in standard tuning), and so forth.&lt;/p&gt;
&lt;p&gt;I have to confess that I&amp;rsquo;ve stopped doing dot inlays on the face of the fretboard, as I prefer the uncluttered look that shows the wood more, but I&amp;rsquo;d be remiss if I didn&amp;rsquo;t point out that this aesthetic choice also means I reap the benefits in not having to drill recesses for them and glue them in. But what I can&amp;rsquo;t skip is having the side dots on the neck, as those are the ones that are more obvious to the player.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8531_hu2089965626305686071.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8531_hu6759212734021592662.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8531_hu2089965626305686071.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the work-in-progress guitar neck sat on its side on a workbench, showing the side that the player would look down into whilst playing. Where the fret slots have been cut, a pencil line has been drawn extending the line down the side of the neck, clearly indicating fret positions on the side.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;For this new neck for the Chuncaster I decided to follow on the trend I started with &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-two/hasten/&#34;&gt;Hästen&lt;/a&gt;, and do metal inlays on the side. For Hästen I&amp;rsquo;d used a silverish metal, but Chuncaster is somewhat notable for having all gold hardware, and so I had to use a goldish metal for these ones. Having never used this specific material before, I did as ever and tested it on some scrap before using it on the actual workpiece:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8532_hu1430854127788456284.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8532_hu781510021334318329.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8532_hu1430854127788456284.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a rectangular scrap of maple on the workbench with a couple of small (2mm-ish) holes in it. Next to it is a thin dowel (also 2mm or so diameter) of golden metal, a pair of metal cutting pliers, and some superglue.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;There&amp;rsquo;s two things I primarily testing for here: what&amp;rsquo;s the right drill size I need to use to get the closest fit to the dowel (otherwise you can end up with obvious glue lines), and also how hard is this metal when it comes to sanding down. With the silverish one on Hästen it was quite tough, so I had to be careful not to over-sand the wood around it whilst levelling the metal part. Thankfully this one seemed no worse and having used it once I found levelling it worked fine so long as I took care.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8534_hu6319823284310591953.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8534_hu13289077939318043861.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8534_hu6319823284310591953.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A close up photo of the maple block showing one of the holes now filled with a goldish looking metal.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;With that testing concluded satisfactorily, I could set to drilling the inlay holes:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8535_hu5116025827770928338.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8535_hu16720074370540119479.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8535_hu5116025827770928338.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;The work in progress guitar neck now sits on its side again, but this time on the table of a pillar drill.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;You can see that I&amp;rsquo;m installing the inlays on the seam between the fretboard and the main body of the neck, which is the most common way to do, but actually not what I meant to do :) Following the seam has two advantages: you know that your inlays are in a line, and you know that despite not having rounded over the fretboard yet that you&amp;rsquo;re not too close to where the eventual edge of the fretboard will be. The downside though is it&amp;rsquo;s really really obvious if you don&amp;rsquo;t drill perfectly on the line, and being wood, nothing is infinitely perfect, as drill bits lite to follow the grain and so forth. Thus on the last batch of guitars I&amp;rsquo;d take to putting the inlay into just the fretboard itself: it means a bunch more measuring and marking, but means you can have some tiny amounts of variance in the hole position without it being so obvious. But I forgot, and just went with how I have done it on most my builds out of habit - doh! Thankfully this hadn&amp;rsquo;t be specified by the recipient of this guitar, so no problem here other than I feel a bit silly that I changed my technique.&lt;/p&gt;
&lt;p&gt;With the holes drilled, I can now insert the dowel, using a little superglue to secure it, and some superglue-activator to stop me sticking myself to the workpiece:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8536_hu16990351208078769770.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8536_hu6850833759220539065.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8536_hu16990351208078769770.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the work in progress neck, on its side on the workbench, and with the 20cm long dowel of goldenish metal sticking out of one of the holes drilled in the side of the neck for the inlays.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;And the end result:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8537_hu7766036607888746920.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8537_hu2832862589503501554.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8537_hu7766036607888746920.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the neck again, but all the holes for the side inlay markers have been filled with bits of goldish dowel.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;At this stage I lightly filed down the faces of the dowels so they weren&amp;rsquo;t sticking out too much, but I didn&amp;rsquo;t go all the way, as the entire neck will be sanded somewhat agressively when I do the carving of the neck, and so I&amp;rsquo;ll let that job serve the purpose of getting the inlays flush. On the topic of carving, whilst I have the neck on the bench with a pencil and ruler to hand, now is also the time to mark up the guide lines for where I&amp;rsquo;ll need to carve the neck:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8538_hu14782237015882166514.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8538_hu3410334639182333113.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8538_hu14782237015882166514.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the back of the guitar neck, which hasn&amp;#39;t yet been carved. On it is a series of pencil lines that go the length of the neck tapering at a rate different to the taper of the sides of the neck. Next to the neck sit a long ruler and a pencil.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;I&amp;rsquo;ll cover what these marks signify in the next post when I do the actual carving.&lt;/p&gt;
&lt;h1 id=&#34;the-final-act-of-the-3d-printed-jig&#34;&gt;The final act of the 3D-printed jig&lt;/h1&gt;
&lt;p&gt;The last job for this trip to the workshop was also the final task for which the 3D-printed jig had been designed: assisting in rounding over the headstock transition:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8615_hu6470865184573874371.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8615_hu17818654703220929162.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8615_hu6470865184573874371.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A close up photo again of the stepped transition from the fretboard to the headstock level on the neck. It sits in the 3D-printed jig, and you can see that the jig has a curve behind where the step is, indicating what the neck should look like once the step has been removed.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;The jig is doing two things for me here: firstly, it&amp;rsquo;s providing a guide for how much material to remove, and secondly it&amp;rsquo;s providing a flat surface I can put on the table of the spindle-sander that is parallel to the neck&amp;rsquo;s centre-line (because the sides of a guitar neck are tapered, so can&amp;rsquo;t be used for that).&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8616_hu6022131903006242673.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8616_hu2323073305653670013.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8616_hu6022131903006242673.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the neck in the jig sit on the table of a spindle sander, with the step pressed up against the spindle ready for sanding.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;A few minutes of sanding later, and I have a perfect transition sanded in, in what has to be the most hassle-free that job has ever gone.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8617_hu6169616560119026618.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8617_hu16762497081167027828.jpeg 2x, https://mwdales-guitars.uk/blog/2025/07/28/some-time-in-the-shop/IMG_8617_hu6169616560119026618.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the work in progress neck sitting on a workbench, and where before there was a step from the fretboard level to teh headstock level, there is now a nice rounded transition.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;I&amp;rsquo;m very pleased with this 3D-printed jig that serves so many different parts of the neck build in one single print. Now I&amp;rsquo;ve done this once, I know that I&amp;rsquo;ll be doing more of this, particularly for the next &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-two/algen/&#34;&gt;Älgen&lt;/a&gt; style build, where I struggled with several build stages due to the angles involved.&lt;/p&gt;
&lt;p&gt;That&amp;rsquo;s it for this update, but more soon on the progress on this neck and some new designs I&amp;rsquo;m working on!&lt;/p&gt;


          </description>
        </item>
      
    
      
        <item>
          <title>Liverpool Makefest 2025</title>
          <link>https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/</link>
          <pubDate>Sun, 20 Jul 2025 11:18:31 +0100</pubDate>
          
          <guid>https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/</guid>
          <description>

          &lt;p&gt;This year was the tenth birthday for &lt;a href=&#34;https://liverpoolmakefest.org&#34;&gt;Liverpool Makefest&lt;/a&gt;, and I was delighted to be able to return as an exhibitor once more and attempt to explain guitar building to the people of Liverpool. I started exhibiting at Liverpool Makefest in 2017, having only just started building guitars the previous year. Whilst it wasn&amp;rsquo;t quite my tenth anniversary of building guitars, it felt a good time to do a sort of retrospective, given they asked us to do something extra this year to mark the occasion. So I went for scale: normally I take one guitar, perhaps two, or three at the most: this year I took along seven guitars I&amp;rsquo;ve built: ranging from &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-one/ef1/&#34;&gt;the very first parts build&lt;/a&gt;, to &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-one/pheonix-offset/&#34;&gt;early complete builds&lt;/a&gt;, though to the latest &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-two/verkstaden/&#34;&gt;conventional&lt;/a&gt; and &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-two/algen/&#34;&gt;unconventional&lt;/a&gt; guitars. Rounding it off I also took along &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-one/practice-amp/&#34;&gt;the amp I built&lt;/a&gt; and &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-one/cigar-box/&#34;&gt;the cigar-box guitar&lt;/a&gt; I actually made specifically for Makefest in 2019.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC02002_hu5577660326532630127.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC02002_hu5394168472382971217.jpg 2x, https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC02002_hu5577660326532630127.jpg 1x&#34;
			
			height=&#34;667px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a person sat in a chair playing an unusual looking electric guitar that is part 3D-printed, part woodwork, next to a table of more conventional looking guitars, all within Liverpool Central Library.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Truth be told, the retrospective wasn&amp;rsquo;t the original plan. I did have plans to show something new, but nothing came together in time despite a couple of starts at various things, and so this retrospective was something of a fallback position. But as a &lt;a href=&#34;https://www.youtube.com/watch?v=Ef9QnZVpVd8&#34;&gt;group of twenty somethings from London once said&lt;/a&gt;: you can&amp;rsquo;t always get what you want, but if you try sometimes, well, you just might find you get what you need; given that I&amp;rsquo;ve struggled with progress this last year, struggling to get out of the shadow I made for myself with &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-two/algen/&#34;&gt;Älgen&lt;/a&gt;, a reminder of what it is I do was probably what I needed as much as anything else.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC01992_hu10414145614043500954.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC01992_hu5427218557727602039.jpg 2x, https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC01992_hu10414145614043500954.jpg 1x&#34;
			
			height=&#34;667px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a man with long hair and a beard stood with his back to the camera playing an electric guitar in a library, stood next to a table that has an array of 5 other electric guitars in different styles.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;One of the reasons I enjoy Liverpool Makefest each year so much is it&amp;rsquo;s the chance to share what I do with so many people; not in a &amp;ldquo;isn&amp;rsquo;t what I do great&amp;rdquo; way, but in a way to talk about what interests them, to try inspire them to try making something, or just to share in peoples&amp;rsquo; enthusiasm for music or making or both. The audience of people who stop by is quite diverse: some are experienced players interested in the instruments; a few are people who have tried making guitars or related things themselves and are interested in comparing notes; some are interested in learning how guitars are made or how what I do is perhaps different; and some just want to look at the shiny nice objects and move on. Whatever the motivation for people stopping by, the day is generally a blast, and I feel very privileged to get to take part in it every time.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC02146_hu6429954030432573401.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC02146_hu7220792739700061572.jpg 2x, https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC02146_hu6429954030432573401.jpg 1x&#34;
			
			height=&#34;667px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a busy library of people, with various other makers and their tables in the background, and my table with 5 guitars stood on it in the foreground. I&amp;#39;m stood chatting to a lady who is gesturing to one of the instruments.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;For the last few years I&amp;rsquo;ve focussed on &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-two/algen/&#34;&gt;Älgen&lt;/a&gt;, which is quite an unusual guitar and I guess somewhat of an advanced build, being how it brings together a bunch of different worlds into a single instrument - and my focus has been trying to show people that there are new techniques out there for building things that in the past were only possible in advanced industries, but now accessible to hobbyists, like custom 3D-printed metal parts. But this year it was more of a return to the narrative I tried for the first few years of Liverpool Makefest, trying to show that guitar building is an accessible hobby, and that the fancy guitars I&amp;rsquo;ve shown of late are not where I started. Each year at Makefest I get a few comments like &amp;ldquo;you must be so clever/smart/talented to do this&amp;rdquo;, and whilst well intended I find that a little frustrating, as I&amp;rsquo;m none of those things and I&amp;rsquo;m actively trying to show that isn&amp;rsquo;t the case. The one skill I&amp;rsquo;ve managed in all this is just to start small and each time do a bit more than I can do, and hang out with folk that can help me when I get stuck.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC02075_hu8753926016746269755.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC02075_hu9190913560547074993.jpg 2x, https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC02075_hu8753926016746269755.jpg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;938px&#34;
        	alt=&#34;A photo of a man sat playing a faded-blue telecaster style guitar, next to a table with a bunch of other guitars on it in different shapes and colours. In the background  I&amp;#39;m stood watching the man play with a smile on my face.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;The line up of guitars on the table thus represented my journey. Back in 2016 I knew no woodwork, but wanted a guitar that was like my Fender Telecaster but slightly different, so I just bought the cheapest parts I could, watched some YouTube tutorials and put together my first build. I got help from people in the &lt;a href=&#34;https://makespace.org&#34;&gt;local community workshop&lt;/a&gt; when they saw me struggling, and thus I was able to make the guitar you see being played in the above picture.&lt;/p&gt;
&lt;p&gt;My brother Tris, then guitarist in the band IKARI, saw this and asked me to make him one similar, but he had a few differences, including using some different wood for the body. So for that one I bought the neck still, but made the body. Building the body of a solid-body electric guitar is relatively low risk, as if you mess it up it doesn&amp;rsquo;t really matter too much, and so was a great start to doing some wood work. That instrument, christened &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-one/thechuncaster/&#34;&gt;the chuncaster&lt;/a&gt; by Tris, is clearly not made to the level of a proper luthier, but he played it on an album, &lt;a href=&#34;https://www.youtube.com/watch?v=22TCTQreMfM&#34;&gt;in music videos&lt;/a&gt;, and most crucially &lt;a href=&#34;https://mwdales-guitars.uk/blog/2017/11/15/ikari-at-king-tuts/&#34;&gt;at a gig at King Tut&amp;rsquo;s Wah Wah Hut in Glasgow&lt;/a&gt;: seeing a guitar I&amp;rsquo;d built being part of a gig where 200 people were having a blast convinced me that guitar building was worth sticking with. Tris was actually at Makefest this year, lending his guitar to the table and helping out along with his &lt;a href=&#34;https://www.beathabonniephotography.com/home&#34;&gt;photographer wife Ket&lt;/a&gt; who took all the photos here (thanks Ket, they&amp;rsquo;re ace!).&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC01983_hu910020123561751762.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC01983_hu12421420184681861922.jpg 2x, https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC01983_hu910020123561751762.jpg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;938px&#34;
        	alt=&#34;A photo of the set up before the doors open: my brother and me are putting some bits onto a mostly empty table, and in the background a couple of guitar cases are visible.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;So it went on with the building, over the last 9 years I&amp;rsquo;ve just kept doing a little bit more on each build: the next two I built fully by hand but were still telecaster shaped, then I made another style of existing guitar by hand, before slowly moving onto my own designs, and trying to integrate more 3D-printed and laser-cut parts to align with my other interests. Each time getting stuck and finding a way forward thanks to others being generous with their time and knowledge.&lt;/p&gt;
&lt;p&gt;I think I lose track of how far I&amp;rsquo;ve come, because it is all incremental improvements instrument by instrument, and because I share a workshop with two excellent full-time builders I know that I&amp;rsquo;ve got lots to aspire to, and so it has felt like I&amp;rsquo;ve been a little stagnated. But in trying to show people at Makefest this year that building can be an incremental thing, and it&amp;rsquo;s okay to grow over time, and then pointing to specific examples of the guitars I was able to assemble for this show: it let me feel a sense of pride in my work that normally I don&amp;rsquo;t allow myself when focussing on that next increment I need to make.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/montage_hu10010467442691856794.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/montage_hu18366148705131356681.jpg 2x, https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/montage_hu10010467442691856794.jpg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;750px&#34;
        	alt=&#34;A montage of six photos, each of which is me stood with one or two other people pointing at a guitar, or passing them a guitar, or showing them something I use to build guitars.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;So my thanks to everyone who stopped by: I very much hope you got something out of stopping by, because I know that I did. I&amp;rsquo;ve been back in the workshop since, and I&amp;rsquo;ve been motivated to try get on with the next hurdle that is in front of me, as I can see how clearing those in the past has helped me progress. Similarly, I&amp;rsquo;ve been doing difficult or tedious bits on one of the builds I have going, but appreciating now that before these would have been a source of angst and stress, but now whilst I&amp;rsquo;d not say they&amp;rsquo;re easy, experience means I execute them much more confidently, a think I&amp;rsquo;d not have thought about without spending a day reflecting on how things have come along.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;At the end of Makefest came the announcement that the wonderful folk who have shepherded the event are stepping down: Caroline, Mark, and Denice have done a great job, and I can&amp;rsquo;t thank them enough for the opportunity Makefest has given me over the years. I&amp;rsquo;ve had so many interesting conversations, been able to give my guitars over to people to play who never would have expected to get to play a custom hand-built instrument, and best of all once a year I get to stand in a library, normally a sanctum of &amp;ldquo;shhh&amp;rdquo;, and tell people it&amp;rsquo;s okay, you can definitely make some noise today.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve made some friends along the way: I knew some of the &lt;a href=&#34;https://doesliverpool.com&#34;&gt;DoES Liverpool crew&lt;/a&gt; before hand, but I can clearly remember meeting &lt;a href=&#34;https://www.steamengineers.co.uk&#34;&gt;Snoof&lt;/a&gt; for the first time as she stopped by to try out one of the guitars, and over the years feel lucky that I&amp;rsquo;ve become part of that maker community. I remember vividly being chastised on the first year by someone for not knowing Frank Zappa&amp;rsquo;s work, something I corrected for when they stopped by the next year. I remember one of the steam-punk pirates coming around and offering what I suspect was a hip-flask of something should I be flagging (and the fact that I have anecdotes at all about steam-punk pirates is something to treasure in of itself). This year I suspect the conversation I&amp;rsquo;ll remember the most is this one:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC02173_hu6338625828374682361.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC02173_hu2378646456802844307.jpg 2x, https://mwdales-guitars.uk/blog/2025/07/19/makefest-2025/DSC02173_hu6338625828374682361.jpg 1x&#34;
			
			height=&#34;667px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of me stood next to some guitars whilst wearing a workshop apron over my regular garb, stood chatting explaining something to a lady dressed and made-up like a ladybird.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;No, I didn&amp;rsquo;t ask, I figured that&amp;rsquo;d be rude, and I like to assume they always dress like that.&lt;/p&gt;
&lt;p&gt;Most of all I&amp;rsquo;m grateful that Makefest reminds me that guitars are fun and an experience best shared. So thanks once more to Caroline, Mark, and Denice, and all the others that have helped over the years and all the volunteer crew, I really appreciate it. I wish the organisers all the best for their well earned retirement from their roles, and will await to see what could be next year. Something I&amp;rsquo;d be happy to help be a part of make happen again if possible, though it&amp;rsquo;s hard to currently know what that might be productively that given I live 200 miles away. But it&amp;rsquo;s a unique event, and worth preserving in some form if possible.&lt;/p&gt;
&lt;p&gt;Finally, a shout out to my other half, Laura, who every year supports the madness that is trying to cart all of the stuff from Cambridge up to Liverpool and back again, and makes sure I&amp;rsquo;m fed and watered throughout the day. In making support of others is everything, and that includes attending maker events like this!&lt;/p&gt;


          </description>
        </item>
      
    
      
        <item>
          <title>Workshop diary: trying a new approach to headstock shaping</title>
          <link>https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/</link>
          <pubDate>Sun, 23 Feb 2025 10:39:57 +0000</pubDate>
          
          <guid>https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/</guid>
          <description>

          &lt;p&gt;In addition to the bass-guitar build I&amp;rsquo;ve &lt;a href=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/&#34;&gt;been writing about&lt;/a&gt;, I&amp;rsquo;ve got a couple of electric-guitar necks I&amp;rsquo;m building at the same time. Both of these are regular (to me) 25.5&amp;quot; scale-length guitar necks, so in theory nothing new here. But I know that for the bass-guitar&amp;rsquo;s neck I&amp;rsquo;ll need to change things up, as some of the techniques I&amp;rsquo;ve used don&amp;rsquo;t scale up, and so I&amp;rsquo;m using these necks as a proving ground for some new approaches. This has the double advantage of it being easier to try out new techniques on something you&amp;rsquo;ve done before, so you&amp;rsquo;re not innovating on too many fronts, and it should leave me with an improved workflow that isn&amp;rsquo;t just suitable for the bass-guitar necks, but is generally better.&lt;/p&gt;
&lt;h1 id=&#34;my-approach-to-building-a-neck&#34;&gt;My approach to building a neck&lt;/h1&gt;
&lt;p&gt;I guess on disclaimer before I go on with this. In general I write these workshop progress reports so that others can learn from my mistakes or see a new technique they might use, but I feel this week we&amp;rsquo;re going into a weird territory this is due to the niche I find myself in: I don&amp;rsquo;t use a CNC-router, but I have access to some funky 3D-printing stuff, and so my workflow for building is probably starting to reflect this odd point in the building space I occupy :) But hopefully something in here will be of interest, and I do make mistakes for you to learn from along the way, I&amp;rsquo;m just not sure how applicable these learnings will be to most other builders out there!&lt;/p&gt;
&lt;p&gt;Whilst I said in the opening we&amp;rsquo;re talking about building guitar necks, we&amp;rsquo;re actually going to focus in this update on how the headstock is made. There&amp;rsquo;s two dominant styles of guitar headstock style: the flat style that you find on Fenders and others, and the angled style you find on Gibsons and others. There&amp;rsquo;s advantages and disadvantages to both, and as this will be a long post anyway I&amp;rsquo;ll skip that discussion for now, and just state that so far I&amp;rsquo;ve predominantly used the flat style, as that&amp;rsquo;s because it&amp;rsquo;s easier and less wasteful to build for someone with my experience and tooling. You can see an example of the sort of neck I build here:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/CAD_hu16892435368466554074.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/CAD_hu8478169630729484147.jpg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/CAD_hu16892435368466554074.jpg 1x&#34;
			
			height=&#34;307px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A 3D CAD model of a detachable neck for an electric guitar. The neck is made from two pieces of wood, the main part being maple and the fretboard being a darker rose wood. The headstock of the neck is flat, being just a continuation of the main maple part of the neck, just narrower, with the face being lower than the fretboard, but the back being a continuation of the main part of the neck wood.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;The first stages of my workflow are going to remain unchanged: using a template to cut the outer profile of the neck and the truss-rod channel, which you&amp;rsquo;ll see me do later. This gives us a flat profile of a guitar neck in wood like so:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/step1_hu2886606073965760598.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/step1_hu18140018035629803837.jpg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/step1_hu2886606073965760598.jpg 1x&#34;
			
			height=&#34;382px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A 3D CAD model of the main maple part of the neck only, which is a uniform thickness but has been cut into the profile of a guitar neck.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;To start making the headstock to the right level, I then make two precision cuts with the band-saw, a shallow one perpendicular to the neck and one parallel to it along the face of the headstock just to remove the bulk of the material:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/step2annotated_hu4527137402221749857.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/step2annotated_hu7350743238130327881.jpg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/step2annotated_hu4527137402221749857.jpg 1x&#34;
			
			height=&#34;500px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;An annotated CAD model of the same maple neck part as the previous diagram, but the headstock area of the neck now has been cut lower, with a step up at the fretboard end. Draw over this are two rectangles showing the cuts necessary to make this: the first is a small cut down at the fretboard end of the headstock all the way across, just a few mm deep, and then a second cut is along the length of the face of the headstock from the tip end of the headstock to that first cut.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;I then glue on the fretboard material and once the glue has dried I trim it to the profile of the neck:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/step3_hu6807246348998690030.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/step3_hu1961149105137156503.jpg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/step3_hu6807246348998690030.jpg 1x&#34;
			
			height=&#34;410px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A CAD model picture showing the above modified neck part, but now with a fretboard glued on, which has been trimmed flush with the sides of the neck and also with the step cut we made in the previous picture for the lowered headstock area.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;And then finally I use a spindle-sander to round-out the transition:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/step4_hu7814392372550137627.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/step4_hu5707259931823946595.jpg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/step4_hu7814392372550137627.jpg 1x&#34;
			
			height=&#34;400px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A CAD model that shows the same model above of the fretboard stuck onto the neck part, but now the step transition from the headstock face up to the fretboard level has been rounded out.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Hopefully that gives you the general idea of my method.&lt;/p&gt;
&lt;p&gt;The challenge is doing those cuts and the rounding on a piece of wood that doesn&amp;rsquo;t have nice edges parallel to the centreline for resting on the beds of machines like the band-saw and the spindle-sander. The sides of a guitar neck taper, it being thinner at the nut (for me 42 mm) than it is at the heel (for me 56 mm), which takes away the obvious contact point.&lt;/p&gt;
&lt;p&gt;In the past I&amp;rsquo;ve solved this by using a full-neck-sized MDF jig made on the local maker-space&amp;rsquo;s CNC router to hold the neck for these operations. You can two such jigs in action in this picture &lt;a href=&#34;https://mwdales-guitars.uk/blog/2019/9/30/a-week-in-and-out-the-shop/&#34;&gt;from the archives&lt;/a&gt;:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_5953_hu10161717229241010681.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_5953_hu12161875470862719587.jpg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_5953_hu10161717229241010681.jpg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of two in progress guitar necks on the workbench. Both one is maple with a wenge fretboard with maple inlays. It has the fret slots cut, the fretboard is radiused, and the back of the neck is carved. The other neck is maple with a purpleheart wood fretboard. It has the fret slots cut and insets for the inlays drilled, but has not been either radiused or carved on the rear.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;These simple jigs, made from an 18 mm thick sheet of MDF, do get the job done, in that they provide me a straight edge that I can rest on the bed of both the band-saw and the spindle sander whilst I make these cuts, but they&amp;rsquo;re not ideal. Firstly they&amp;rsquo;re quite bulky to store for all the different variations I need, and most vexingly 18 mm is not deep enough to be super-stable on a spindle-sander without some extra material clamped to it. Again, &lt;a href=&#34;https://mwdales-guitars.uk/blog/2019/10/14/a-week-in-the-shop/&#34;&gt;from another old post&lt;/a&gt;:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_6158_hu14834816711519368130.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_6158_hu13308810990614285243.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_6158_hu14834816711519368130.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;562px&#34;
        	alt=&#34;A photo of one of the MDF jigs stood on its side on the bed of a spindle-sander, and the MDF jig has a metal bar clamped to the lower edge to extend it from it&amp;#39;s 18mm depth (which is now the edge on the bed) to be much wider and thus more stable.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Not particular proud of the above, but it did work after a fashion :)&lt;/p&gt;
&lt;p&gt;Given this method isn&amp;rsquo;t optimal, and given how much bigger such a jig for the bass-guitar neck will be, I&amp;rsquo;ve decided I want a different solution. One that has the following properties:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Indicates the various depths and positions I need to cut on it, including the rounding radius for the headstock transition.&lt;/li&gt;
&lt;li&gt;Is more stable on the spindle-sander without adhoc extra things being added to it.&lt;/li&gt;
&lt;li&gt;Is smaller than the entire size of the neck.&lt;/li&gt;
&lt;li&gt;Can be made without a CNC-router&amp;hellip;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;That last one is a Michael quirk obviously, as someone who is more at home with 3D-printing than CNC-routing these days, but it&amp;rsquo;s also a fun experiment. Making jigs out of wood usually involves some compromise due to the fact that say MDF comes in sheets of set thicknesses, and so I was interested in what I&amp;rsquo;d design if I was freed from those constraints. And if this trial works, then perhaps I&amp;rsquo;ll be emboldened to make more jigs this way and I can try making angled headstocks with scarf-joints by making it quicker and easier to build jigs.&lt;/p&gt;
&lt;p&gt;Right, with the scene set, let&amp;rsquo;s take a look at progress on the guitar neck I&amp;rsquo;ve been building to try out a new approach!&lt;/p&gt;
&lt;h1 id=&#34;from-nothing-to-something&#34;&gt;From nothing to something&lt;/h1&gt;
&lt;p&gt;Mostly I&amp;rsquo;m including this early part of the neck build process here as it nicely emphasises what I discussed &lt;a href=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/&#34;&gt;last time&lt;/a&gt; about using the router in different directions to avoid tear out. We&amp;rsquo;ll get to the jigs shortly!&lt;/p&gt;
&lt;p&gt;To make this new neck I&amp;rsquo;m working on I started start with a 1&amp;quot; think plank of maple I thickness it down to 20 mm. By the time I&amp;rsquo;m finished the wood should be closer to 19mm thick, but it&amp;rsquo;ll get sanded and cleaned up as I work on the neck, so I thickness it a little over size. Once I have it the right thickness I attach a template with the profile of the neck and cut off most the excess using the band-saw, leaving a roughly ready necks:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8261_hu1186137508392093421.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8261_hu18235740060574458418.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8261_hu1186137508392093421.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a very early stage guitar neck in progress - the wood looks like a 2D-profile of a guitar neck and is clamped to the workbench with a clear-acrylic template stuck to the top, with wood dust around it. Next to the part on the workbench is a DeWalk hand router, with a cream coloured bit in it that has a follow-bearing at the end nearest the router.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Once that&amp;rsquo;s done, I get the neck flush with the template using a hand-router. As described for the body I cut last time, this involves cutting from both sides so as to avoid tear-outs as the grain direction changes, but it&amp;rsquo;s a little easier as the neck is less deep than the body so I just need a single pass from both sides for the relevant sections.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8263_hu12750386212249828972.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8263_hu6717280326794754648.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8263_hu12750386212249828972.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A similar photo to the previous one, but the neck is now turned over so the template is on  the bottom, and this time the hand-router has a green router bit in it that is similar to the cream coloured one except the follow bearing is now at the far end of the bit relative to the router.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;You can see in the two photos I&amp;rsquo;m using a different router bit: they&amp;rsquo;re the same diameter, but one has the follow bearing on the top, when the router is cutting from the side with the template on, and the other bit has the follow bearing at the end, for when I&amp;rsquo;ve had to flip the workpiece over and the template is now on the rear.&lt;/p&gt;
&lt;h1 id=&#34;the-new-jig-version-1&#34;&gt;The new jig: Version 1&lt;/h1&gt;
&lt;p&gt;Here you can see the CAD model for my first attempt for a new jig to meet the above design brief:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/jigv1_hu117153307635418056.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/jigv1_hu17300701426557358971.jpg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/jigv1_hu117153307635418056.jpg 1x&#34;
			
			height=&#34;670px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A CAD model showing a guitar neck with the headstock end supported by a white plastic block (the jig) that has a step in it. The neck is recessed into the block, such that the face of the headstock is level with one end of the jig and the fretboard is level with the other end. The step is rounded out following the rounded transition on the neck between headstock and fretboard. The block does not run the full length of the neck, rather a short section that includes the headstock, but stops about an inch or so short of the tip, and runs along the fretboard for a few frets worth.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;You can see how it has depth guides to let me how how deep to cut the headstock relative to the rest of the neck, and guides me where to spindle sand the transition to. It also has a clear line indicating that first perpendicular cut I&amp;rsquo;ll need to make when removing the face of the headstock. If we look at the rear, I&amp;rsquo;ve effectively built in that extra platform that I kludge in before, but just contoured a little to make it easier to hold on to:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/jigv1also_hu5704618031598707286.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/jigv1also_hu12474332542059755233.jpg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/jigv1also_hu5704618031598707286.jpg 1x&#34;
			
			height=&#34;642px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;Another view of the same CAD model as before, but showing the other side. This shows that if you hold the jig with the neck set so the centerline is parallel to the ground and the fretboard is vertical, then the block has a nice large foot on that side to support it on a flat bed such as you&amp;#39;d find on a band-saw or spindle-sander.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;It&amp;rsquo;s worth noting that the size of the jig is constrained by the size of the bed of the 3D-printer I&amp;rsquo;m using: the bed is 256x256 mm on the Bambu Carbon X1C. So whilst I did want a smaller jig as part of my motivation, the upper limit of what I can have is constrained for me. I was a little worried about balance whilst using the jig, which is why the jig doesn&amp;rsquo;t just centre on the headstock, I&amp;rsquo;ve also supported a section of the neck to try make natural instinct of it to tip over less. To be clear, it will tip over left to its own devices, but the more of the fretboard area of the neck I include the less I&amp;rsquo;ll have to fight that.&lt;/p&gt;
&lt;p&gt;One printing session later:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
     &lt;div&gt;
     &lt;figure&gt;
         
 		
 			
         	&lt;img  class=&#34;rounded&#34;
 			
 				
 		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8240_hu3889474064323342431.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8240_hu9329549339424902161.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8240_hu3889474064323342431.jpeg 1x&#34;
 			
 			height=&#34;750px&#34;
 			width=&#34;1000px&#34;
         	alt=&#34;A photo of the inside of a 3D-printer, showing the block we saw in the CAD models before has been made real!&#34; /&gt;
 		
     &lt;/figure&gt;
     &lt;/div&gt;
 &lt;/div&gt;
&lt;p&gt;One thing that wasn&amp;rsquo;t shown in the CAD model was the supports that are added when printing: because of the flared out base on the rear the printed software has to put the supports there to make everything level. I printed it in this orientation so that there would be no support material in the areas where I&amp;rsquo;d place the guitar neck, thus ensuring smooth contact points that can&amp;rsquo;t damage the wood. To be fair to the Bambu printer I&amp;rsquo;m using and its software, I&amp;rsquo;ve generally found that supports come away cleanly, but that&amp;rsquo;s not always the case for some printers, which will leave raised material where the supports join, and I just didn&amp;rsquo;t want to take that risk.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
     &lt;div&gt;
     &lt;figure&gt;
         
 		
 			
         	&lt;img  class=&#34;rounded&#34;
 			
 				
 		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8243_hu7276136962554509931.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8243_hu11955425751100014011.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8243_hu7276136962554509931.jpeg 1x&#34;
 			
 			height=&#34;750px&#34;
 			width=&#34;1000px&#34;
         	alt=&#34;A photo of my hand holding the 3D-printed jig. I&amp;#39;m holding it such that you can see all the support material on the back, due to the wide base only being on one edge.&#34; /&gt;
 		
     &lt;/figure&gt;
     &lt;/div&gt;
 &lt;/div&gt;
&lt;p&gt;The supports did indeed come away clean, and it had a nice fit when I tested it with the neck in progress:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8267_hu7441605449995535612.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8267_hu5127071334038435381.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8267_hu7441605449995535612.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the jig sat on the bed of the band-saw, with a work-in-progress guitar neck mounted in it.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;The print feels plenty sturdy for workshop abuse even at the default print settings. However, at this point I found two things I didn&amp;rsquo;t like about my new jig:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Although the wider base did make it nice and stable for use with the spindle-sander, it was foolish of me to taper it to a narrow point as I did, as that means on the bandsaw we just have a very thing edge pressing against the fence 🤦🏼&lt;/li&gt;
&lt;li&gt;As mentioned, the first cut I&amp;rsquo;ll make is the one perpendicular to the headstock face, and because of the size and shape of the new jig, I found I couldn&amp;rsquo;t see the contact point of the blade when everything was in position to make the cut. Given how unwieldy this set up is anyway, that made me nervous to actually use this new jig.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;So, whilst the idea I felt still had promise, this design wasn&amp;rsquo;t good enough, and so it was back to the drawing board (or the CADing computer I guess).&lt;/p&gt;
&lt;p&gt;This is why 3D-printing was originally more commonly described as being a tool for &amp;ldquo;rapid-prototyping&amp;rdquo; (before the quality got to the point you&amp;rsquo;d actually use 3D-prints for production): having learned these lessons it didn&amp;rsquo;t take me long to re-spin my jig design and try again.&lt;/p&gt;
&lt;h1 id=&#34;the-new-jig-version-2&#34;&gt;The new jig: Version 2&lt;/h1&gt;
&lt;p&gt;With all that in mind, I updated my design to address both of those problems. From the front:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/jigv2_hu14812402592749092808.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/jigv2_hu11311766808243234497.jpg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/jigv2_hu14812402592749092808.jpg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;964px&#34;
        	alt=&#34;Another 3D model showing the front of the jig, to show the differences: where cut one was shown in the original technique diagrams you can see there&amp;#39;s a cut out to make it easier to see that point from behind the jig.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;And from the rear:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/jigv2also_hu12691358748952086720.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/jigv2also_hu5302646130113416941.jpg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/jigv2also_hu12691358748952086720.jpg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;963px&#34;
        	alt=&#34;Another 3D model showing the back of the jig, to show the differences: whilst there is still a wide base on the bottom, there are some fins that extend the height of the jig to give contact points at that depth all the way up. There are also two gaps in the base where clamps could go.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;You can see that I&amp;rsquo;ve added a cut out on the top surface to allow me to see where the blade will make contact with the wood, and on the rear I&amp;rsquo;ve added some fins that will sit flush with the fence on the band-saw. I also added some holes speculatively (which is a fancy way of saying I didn&amp;rsquo;t bother measuring things like I should) should I want to use some clamps with the jig.&lt;/p&gt;
&lt;p&gt;Another print session later, and I have version two in the workshop ready to test:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8482_hu13201834954506853579.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8482_hu9916477821082233002.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8482_hu13201834954506853579.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the second jig design after it has been 3D-printed, now sat on a workbench next to the work-in-progress neck.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;The first observation with the new print is that although I didn&amp;rsquo;t change the recess for the neck, it&amp;rsquo;s slightly different in size to the last one: 3D-prints are known to have small changes in sizes depending on things like temperature and filament variance, so it&amp;rsquo;s not the biggest surprise. It&amp;rsquo;s a small enough change that just some masking tape is enough to remove the slight wobble it caused:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8486_hu632211319802134153.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8486_hu5476590356073137639.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8486_hu632211319802134153.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the jig showing that in the recess for the guitar neck to sit, there is now masking tape along one of the side walls.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;With that fixed, I can now confirm that the new print sits better on the fences on the bandsaw and I can see the contact point with the bandsaw blade for the first cut (and you can see how without that gap the contact point would be obscured):&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8485_hu15453778191351189340.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8485_hu17446826803926371697.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8485_hu15453778191351189340.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo taken from the perspective of the user, showing the neck mounted in the jig and placed on the bandsaw ready for the first cut. It shows that the channel cut out in the second version of the jig lets you see where the blade makes contact with the wood.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;And in the end those speculative clamp holes did come in handy, given how short the fence for perpendicular cuts is on my band-saw. They&amp;rsquo;re not ideally positioned truth be told, but good enough to use:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8489_hu3611292766805658501.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8489_hu6410705490092808760.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8489_hu3611292766805658501.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo showing the work-in-progress neck in the jig, sat on the band-saw bed, with the show set up clamped to the sliding-fence for the perpendicular cut.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;And so with all that, I could finally make the first cut:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8491_hu9751705966784788293.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8491_hu16683833144087918805.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8491_hu9751705966784788293.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the work-in-progress neck in a the jig, showing the first cut has been made, which is just a 5mm deep line that makes where the headstock will transition to the fretboard.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;All this for a single cut thats less than 5 mm deep! :)&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;With the first cut done, I could now make the longer cut that removes the rest of the material for the face:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8493_hu7093340816612619933.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8493_hu10914943651180269775.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8493_hu7093340816612619933.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the guitar neck in the jig, but now positioned against the long fence on the band-saw for cutting along the length of the neck.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;You can see here that the blades that I added to the back are the main guides here for this cut, and they worked a charm to keep things straight, and so a minute or two later I added another headstock blank to my collection:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8494_hu15452133815858032697.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8494_hu16378186579659993760.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8494_hu15452133815858032697.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the material removed from the headstock stood next to the bandsaw blade.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;And we have a level headstock:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8497_hu10884931522692821758.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8497_hu15113945159982005258.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8497_hu10884931522692821758.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the work-in-progress neck sat in the jig, showing how the material has been cut away from the face of the headstock making it lower than the rest of the neck.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;However, there was a problem with the cut, and the root cause sits somewhere between design fault (i.e., past me was to blame) and user error (i.e., current me is to blame). You can see in the above photo, and more clearly in the following photo, that the cut was not particularly clean. I mentioned in the last post that the band-saw wasn&amp;rsquo;t cutting cleanly and I wasn&amp;rsquo;t sure why, but I had since refitted the blade and tweaked the tension properly and it was cutting nicely before I did this, so I don&amp;rsquo;t believe it&amp;rsquo;s the band-saw&amp;rsquo;s fault. I think the root cause can be seen in the following photo, where you can see the marks in the wood extend into the plastic of the 3D-print:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8495_hu3932195674981285212.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8495_hu9310109045256404154.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8495_hu3932195674981285212.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A close-up photo of the headstock area, showing that there are score marks from where it was cut, and you can see those score marks extend into the plastic of the jig.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Basically the blade was too close to the 3D-print, and as the blade comes down to make the cut it&amp;rsquo;s grazing the surface of the print which is causing the blade to deflect out a bit and wobble. We can put this down to user error in the first instance: I didn&amp;rsquo;t align the blade and the jig correctly. Because of the limitations on the size of the jig, it doesn&amp;rsquo;t go all the way to the end of the neck, so I&amp;rsquo;d drawn on with pencil the cut line all the way to the tip of the neck, but the blade is thicker than the pencil line, and I failed to allow for that.&lt;/p&gt;
&lt;p&gt;The design fault is why did I have to do that at all? There&amp;rsquo;s a UX error here: because I&amp;rsquo;d clamped the neck to the jig to hold it in place, freeing up my hands, it never occurred to me to remove the neck from the jig to test my alignment. The moment the neck was clamped into the jig that was it, they were one in my mind. Had I not had that in my head, then I could have ran the jig along through to check clearance. The other design fault is I limited myself to just a single printed part: although the size of the printer&amp;rsquo;s bed constrained the size of the jig, I could have made an extension as a second print to cover the end of the headstock and give me a guide.&lt;/p&gt;
&lt;p&gt;All good learning for next time. Thankfully the damage to the neck isn&amp;rsquo;t that bad, and it&amp;rsquo;ll sand out, which will be a form of penance for me.&lt;/p&gt;
&lt;h1 id=&#34;rest-time-for-the-jig&#34;&gt;Rest time for the jig&lt;/h1&gt;
&lt;p&gt;The new jig having proven its worth (but perhaps disproven my worth), it now gets to wait for its final act in the building of this neck, as the next step was to glue on the fretboard:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8499_hu14456342730788525143.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8499_hu15096206770584202506.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8499_hu14456342730788525143.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the work-in-progress neck sat on the workbench, with a truss-rod installed in the centre, and beside it is sat a blank of birds eye maple for the fretboard.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;It got glue added, and then clamped up, ready for my next trip to the workshop, at which point we can see if the jig will fare as well on the spindle-sander as it did on the band-saw:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8500_hu10622811459476341882.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8500_hu14651275554574014889.jpeg 2x, https://mwdales-guitars.uk/blog/2025/02/23/workshop-diary/IMG_8500_hu10622811459476341882.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the neck and fretboard covered in clamps as I glue the two together.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;


          </description>
        </item>
      
    
      
        <item>
          <title>Workshop catchup: Bass edition</title>
          <link>https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/</link>
          <pubDate>Fri, 03 Jan 2025 10:39:57 +0000</pubDate>
          
          <guid>https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/</guid>
          <description>

          &lt;p&gt;In the &lt;a href=&#34;https://mwdales-guitars.uk/blog/2024/10/27/designing-a-bass/&#34;&gt;previous update&lt;/a&gt; I talked about the process of designing my first bass guitar, my &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-two/delfinen-bass/&#34;&gt;Delfinen Bass&lt;/a&gt;, looking at how it differs from a regular electric guitar design. This set of notes will catch us up on how the build of that has got going.&lt;/p&gt;
&lt;h1 id=&#34;refinement&#34;&gt;Refinement&lt;/h1&gt;
&lt;p&gt;Before we start in the workshop side of things, a quick update on the CAD model, as it&amp;rsquo;s had a couple of tweaks since I started it. On the front:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/cad_hu2733312453496234069.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/cad_hu9707120681957528627.jpg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/cad_hu2733312453496234069.jpg 1x&#34;
			
			height=&#34;563px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A screenshot of a CAD program showing a 3D-model of an electric bass-guitar. The instrument has a dark-wood neck and a white-stained body, a PJ bass-pickup configuration, a pickup selector switch and a volume and tone control.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Visually it&amp;rsquo;s had a change as the roasted maple wood, which you&amp;rsquo;ll see below, is quite dark, so I felt I wanted to work that in. Pickup wise I&amp;rsquo;ve always wanted to try out the &lt;a href=&#34;https://lacemusic.com/products/aluma-p-bass-pickup&#34;&gt;Lace Aluma style pickups&lt;/a&gt; ever since I saw Philip McKnight demo their P90s &lt;a href=&#34;https://www.youtube.com/watch?v=KDKxGa1Mzb8&#34;&gt;on his youtube channel&lt;/a&gt;. The pickups have an unusual design which don&amp;rsquo;t use any copper windings but are still passive pickups, which I find intriguing, so I plan on giving them a go on this build. I feel this style of pickup would work quite well on an &lt;a href=&#34;https://mwdales-guitars.uk/builds/phase-two/algen/&#34;&gt;Älgen&lt;/a&gt; style guitar, and so this is just an excuse to try them out here.&lt;/p&gt;
&lt;p&gt;More importantly, before I could hit the workshop I needed to fill in a bunch of details on the neck and body designs that impact the actual early build stages, which starts with some bits visible on the back of the guitar:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/cad2_hu11223195985032999108.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/cad2_hu3607202942191492580.jpg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/cad2_hu11223195985032999108.jpg 1x&#34;
			
			height=&#34;563px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A screenshot of a CAD program showing the rear of a 3D-model an electric bass-guitar. Of particular note here is that there are no covers on the cavities in the back where the electronics will go. There is one round cavity towards the neck, and a larger oblong shaped cavity near the tail. In each you can see small posts along the sides to make space for screw mounts for the lids.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Here I added non-visual but technically important bits like the mounting posts for the screws in the cavities; not exciting, but I need these all in place before I can make the templates for cutting the wood. Similarly I added the cavities in the neck for the graphite rods that will go in the neck alongside the truss-rod to deal with the extra strain on a bass from it&amp;rsquo;s chonky strings. You can see these here with the fretboard hidden:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/cad3_hu11562791258963439013.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/cad3_hu3406596217416427765.jpg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/cad3_hu11562791258963439013.jpg 1x&#34;
			
			height=&#34;563px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A screenshot of a CAD program showing a 3D-model of an electric bass-guitar. The freboard on the neck is missing, and inside it you can see the metal truss-rod that runs long the centre of the neck, and either side of it a smaller slot that run most the length of the neck for graphite rods to run.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;At this stage it&amp;rsquo;s not just a matter of drawing them into the CAD model, I do need to know how I plan to make these cavities: what tools will I use, will I need any new bits for the router, what will be my reference points for any cuts, and so forth. You can draw anything you like in CAD, but that doesn&amp;rsquo;t account for you being able to actually make it, so as I&amp;rsquo;m filling in these details I need to also work out how I plan to build it.&lt;/p&gt;
&lt;p&gt;What you can&amp;rsquo;t see is that I also had to do a bunch of fiddling with my CAD in Fusion just to get my design into the right state for me to build templates from my model. Fusion 360, the CAD tool I use, is based on the concept of a timeline, which is all those icons you can see at the bottom of the screenshots I&amp;rsquo;ve posted; that&amp;rsquo;s the history of all the operations I made to build the design. The order in which you do these can have important consequences, and I often come slightly undone as when building a design I often add early on visual references for myself so I can get a sense of how the instrument will look, even if they&amp;rsquo;re not technically needed in the CAD model. By adding those early I tend to pollute the timeline with things that get in the way later.&lt;/p&gt;
&lt;p&gt;For instance, the rounding over of the body edges, which I&amp;rsquo;ll do by hand using a palm-router with a round-over bit, isn&amp;rsquo;t technically needed in the CAD, but it helps me see what the finished guitar will look like. But by adding that feature in CAD, if I want to say make a 2D-template based on the front of the guitar, Fusion will account the rounded over bit, and so my template will be too small being based just on the actual flat surface in the CAD model. If I added all the visual bits and the end I could just disable the last few bits of the timeline and all would be good, but because I do them before say I add the cavities for the pickups, I can&amp;rsquo;t readily do that. So I spent an hour or two having to unpick my design to &amp;ldquo;fix&amp;rdquo; all this.&lt;/p&gt;
&lt;p&gt;I shouldn&amp;rsquo;t know better than this by now, but that needing visual cues as I go along is super important to my design process, so I end up having to do all this tidying at the end.&lt;/p&gt;
&lt;h1 id=&#34;materials&#34;&gt;Materials&lt;/h1&gt;
&lt;p&gt;Whilst I was doing this second round of design work, I had already secured the materials for this build. My plan was to make the body with poplar, due to its light weight, and the neck out of roasted-maple, again as maple is strong and roasted-maple is lighter weight due to having less moisture in it. Fortuitously for me, my workshop-mate &lt;a href=&#34;https://fidelity-guitars.co.uk/&#34;&gt;Matt&lt;/a&gt; had a spare poplar body blank he&amp;rsquo;d prepped but in the end didn&amp;rsquo;t use, which he was happy to trade me:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8030_hu14618085274432580584.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8030_hu8932122376801293504.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8030_hu14618085274432580584.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a two-piece body blank sat on a workbench. The wood is a pale wood with fairly tight grain patterns. Along the seam you can see there are still some bits of excess glue dried on.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;He&amp;rsquo;d even done most of the prep, which was great news. Truth be told, workshop time has been scarce of late, and so I&amp;rsquo;d decided that in order to speed this build up I&amp;rsquo;d just pay extra for a one-piece body rather than the usual jointed two-piece body approach I use (which is more affordable). Thankfully Matt&amp;rsquo;s offer of materal also meant I skipped the jointing stage, so I was delighted at this bit of good fortune.&lt;/p&gt;
&lt;p&gt;For the neck, I ordered the wood, but wanting roasted-maple I had to switch from my usual wood supplier, &lt;a href=&#34;https://exotichardwoodsukltd.com&#34;&gt;Exotic Hardwoods UK&lt;/a&gt;, over to another supplier of instrument woods, &lt;a href=&#34;https://luthierssupplies.co.uk&#34;&gt;David Dyke Luthiers&amp;rsquo; Supplies&lt;/a&gt;. After putting in my order, a few days later a nice parcel of wood arrived:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8022_hu8049817861664252096.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8022_hu10434328686395980425.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8022_hu8049817861664252096.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of an opened parcel on a workbench, showing two piles of wood inside. On the left is a long dark coloured piece of roasted-maple on and to the right is a shorter, lighter coloured piece of roasted-maple. Atop each is a piece of rosewood for the fretboard.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;The wood on the left is the neck and fretboard for the bass, and the wood on the right is for a regular guitar neck. Interestingly both necks are roasted-maple, but clearly one has reacted quite differently to the roasting process.&lt;/p&gt;
&lt;p&gt;With that, I have all the wood ready to make a bass. You can hopefully see the resemblance between the material and its final form:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8032_hu1072996613921841872.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8032_hu13627227233618846112.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8032_hu1072996613921841872.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a piled of three pieces of wood on a workshop workbench: a square of poplar for the guitar body, a plank of roasted maple for the neck, and a piece of rosewood for the fretboard. Next to the wood is a laptop, showing on screen a top down view of a CAD model of a bass guitar.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;h1 id=&#34;template-time&#34;&gt;Template time&lt;/h1&gt;
&lt;p&gt;I was tempted to try doing some of this build on the CNC-router to speed things up a bit, after Matt offered to let me use his, but given I knew I&amp;rsquo;d end up doing a bunch of the work on the bass over the xmas period when he was unlikely to be around, I opted to just go with my usual approach of making laser-cut templates, and then using a combination of band-saw and palm-router to get the wood into the right shape.&lt;/p&gt;
&lt;p&gt;One catch with this for the bass is that the neck is big enough that I can&amp;rsquo;t use a regular 600x400 mm sheet of acrylic for making the templates as I do for the regular electric-guitar necks, I had to step up to a 1000x600 mm sheet, the next size up, which is notably more expensive that simple math would lead you to assume. I&amp;rsquo;m also glad that the local &lt;a href=&#34;https://makespace.org&#34;&gt;maker space&lt;/a&gt; got a slightly larger laser-cutter a couple of years ago, as this sheet wouldn&amp;rsquo;t fit in the older one!&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8224_hu11788248029450355232.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8224_hu9202410775305117600.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8224_hu11788248029450355232.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a table sized laser-cutter. On the bed of the laser-cutter is a large sheet of 5mm thick acrylic, filling the entire bed.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Unfortunately cutting all this didn&amp;rsquo;t go as smoothly as I&amp;rsquo;d have hoped, as the laser-cutter seemed to be having power issues. Often laser-cutters tend to lose power if they&amp;rsquo;ve been heavily used and the lenses/mirrors have got dirty from smoke and not been cleared, but in this instance there was something more odd going on: the power seemed to fade over the duration of the cut. You can see it in the picture here, where the start of the cut is more clearly made than the end (it&amp;rsquo;s going in a counter clock-wise direction).&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8229_hu8253134810187105266.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8229_hu656679151894012435.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8229_hu8253134810187105266.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the sheet of acrylic on the laser-cutter bed, show where the outline of a guitar body has been cut into the material. In the line you can see a point where the line goes from thin to thick, which is the end/start of the cut.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;This lead to the first attempt to cut a neck-template not working, as it&amp;rsquo;d not properly cut through the material at the start/stop point, despite me going over it a second time after I spotted the issue, and it made the top of the template ragged:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8228_hu13400753039142525459.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8228_hu16681089136493346444.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8228_hu13400753039142525459.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the top end of an acrylic guitar neck template, showing it almost perfectly cut, but with a chipped bit of extra acrylic on the end.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Whilst I could try sanding that smooth, I&amp;rsquo;ve learned many times over that any marks in the template show up in the wood and are then a pain to sand out, so I opted just to re-cut this one. But what should have been a fairly straight forward job at the laser-cutter for an hour turned into a half day of prodding and fighting with it.&lt;/p&gt;
&lt;p&gt;I often get asked why I don&amp;rsquo;t do more of my guitar building with CNC things, and whilst partly it&amp;rsquo;s because I enjoy the manual process, it&amp;rsquo;s also partly down to nonsense like this. If I made more guitars and had my own dedicated machines that I used regularly, then whilst they&amp;rsquo;d still have issues occasionally, in general using the machines would be more of a known quantity. But using shared machines like this I just can&amp;rsquo;t predict how they&amp;rsquo;re going to behave, and so I prefer to replace that risk with slower but more predictable manual processes. One day I&amp;rsquo;d like to go back to CNC-routing for some things, but not whilst I do so few instruments each year.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8231_hu16600650727272649051.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8231_hu10595116125628962987.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8231_hu16600650727272649051.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a set of bass guitar templates sat on top of the lid of a laser cutter. There are two neck templates that are the same (other than one has that chip) and two body templates, one of which has the neck pocket in it and the other doesn&amp;#39;t&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Anyway, machine frustrations aside, I eventually turned  one large sheet of acrylic into the templates I need to shape my bass guitar.&lt;/p&gt;
&lt;p&gt;This also means for the first time I get a sense of how the guitar is at life size:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8251_hu613159207725037205.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8251_hu3999302657183017083.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8251_hu613159207725037205.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the body template and the neck template put together on a workshop workbench.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Quite pleased with how it feels at full size. It&amp;rsquo;s not always the case that what looks good on screen will look good in real life, so it&amp;rsquo;s a nice sanity check at this point before I start making hard-to-undo changes to my raw material.&lt;/p&gt;
&lt;p&gt;The acrylic is actually clear, rather than white, that&amp;rsquo;s just the protective film that is removed before use. I use clear so that I can see the wood grain under the sheet and check that it I&amp;rsquo;m happy with the bit of the wood I&amp;rsquo;m using. I also etch on a centre line on the template that I can then line up with the join line on the wood.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8253_hu8650759960074555911.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8253_hu11242543761709148932.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8253_hu8650759960074555911.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a clear acrylic guitar body template placed over a wooden two-piece body blank. You can see the centre line of the template has been positioned on the centre line of the two-piece body blank.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Before I can use the templates there&amp;rsquo;s one final thing I need to do, which is countersink the mounting holes for the screws, so they don&amp;rsquo;t interfere with the router. Alas, the laser cutter I have doesn&amp;rsquo;t have a magic multi axis head, so I do this on the pillar drill.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8256_hu4101857495152394429.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8256_hu12965667284938534889.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8256_hu4101857495152394429.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A close up photo showing one of the screw holes in the body template on the bed of a pillar-drill, with a counter-sink bit in the chuck.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;With that done, it&amp;rsquo;s finally time to get started!&lt;/p&gt;
&lt;h1 id=&#34;first-cuts&#34;&gt;First cuts&lt;/h1&gt;
&lt;p&gt;Before I can cut the profile with the template, I first need to ensure the body blank is perfectly level and at the right thickness. Although in theory the joint faces should be at 90˚ to the front/back they faces won&amp;rsquo;t be perfectly so in general (particularly if you used a hand-plane to get the joint faces flat), and so the body will have a slight V shape to it most likely, which isn&amp;rsquo;t great for attaching templates.&lt;/p&gt;
&lt;p&gt;The first step was to remove the excess glue along the seam:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8189_hu4380616169907669799.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8189_hu15784546583624388836.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8189_hu4380616169907669799.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the two-piece body blank sat on the workbench, showing the excess glue that has built up and solidified on the join line. Atop the body blank sits a large chisel.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;With that tidied it was over to the thicknesser to get it properly flat and down to the thickness I wanted. Matt had already thinknessed the two halves before he jointed them, so I didn&amp;rsquo;t need to do too much here: the pile of wood to the side you see here is from another workshop-mate working on the table router, not from my thicknessing!&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8191_hu11445367414527271335.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8191_hu12285093286682855039.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8191_hu11445367414527271335.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a large thicknessing machine in a workshop, with the now cleaned body blank sat on the feeder. To the right of the machine on the floor is a large pile of wood chips.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Now with the body prepped, I can finally attach the template, taking care to line up the centre line and check on both sides that I&amp;rsquo;m going to avoid any features in the wood that I don&amp;rsquo;t want. In this case there&amp;rsquo;s a knot on the back towards the bottom edge, which is why I mounted the template quite near the top edge. For those curious about using screws to mount the template, the screw holes are all in areas where later on the wood will be removed: the top one is in the neck pocket at the lower two are where the pickups will go, so no evidence will remain of these screw holes by the time the body is finished.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8257_hu12333176921574097126.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8257_hu3416025850468465879.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8257_hu12333176921574097126.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the laser-cut body template screwed on to the body blank. Again you can see the centre line of the template has been aligned with the join line on the body blank. To the side sits a pencil, a ruler, and a bradawl.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;With the template on, the next step is to remove the bulk of the wood using the band-saw. Normally for bulk material removal I&amp;rsquo;d use a chunky blade eat through the material, but because of the curves on the body, and because poplar is relatively soft, I opted instead to switch out the blade for a smaller one that is better for following curves. Changing a bandsaw blade is a relatively quick process on the Record bandsaw I have, and so it&amp;rsquo;s something I&amp;rsquo;m happy to do for each bit I work on if necessary.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8258_hu13824914075001286875.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8258_hu7443842251159985120.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8258_hu13824914075001286875.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of a coiled up band-saw blade sat on the table of a band-saw that currently has no blade in it. The blade is relatively thin (12mm).&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;A few minutes later and I had my body roughed out:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8259_hu6843648336002997745.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8259_hu869762927328010818.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8259_hu6843648336002997745.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo showing the body blank with the template screwed to it, but now the majority of the blank not covered by the template has been trimmed off, leaving just a few mm on all sizes. The cut doesn&amp;#39;t follow the contours of the template well, as it was made with a saw, and the edges are quite rought rather than smooth.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;You can see that the cut isn&amp;rsquo;t the best - given I just put on a fresh blade and thought I&amp;rsquo;d set up the guides right I&amp;rsquo;d have expected a smoother cut, so I&amp;rsquo;m not sure what I did wrong there - I set the tension appropriately and adjusted the guides, but clearly the results are not great. Thankfully I&amp;rsquo;m just roughing at this stage, but that definitely isn&amp;rsquo;t acceptable for other jobs I used the bandsaw for. After doing this I returned the bandsaw to having a heavier blade on it, as my workshop-mates mostly use it for rough cutting, and that was cutting cleanly.&lt;/p&gt;
&lt;p&gt;Mystery aside, the band-saw stage is just to get the bulk of the material off, but not to get the actual body down to size. For that I use a palm-router with a pair of follow-bits that have a guide bearing to follow the outline of the acrylic template exactly. Routing though should generally be seen as a tool for removing just a small amount of material, hence the band-saw stage first.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8260_hu17832523609483835797.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8260_hu5976740804753702582.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8260_hu17832523609483835797.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the roughed out body with template on clamped to a workbench. You can see in areas that the body has been made flush with the template, but only in short, disjoint sections, and those sections only go half the depth  of the body thickness. Behind the body on the workbench sits a Dewalt router.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;This is where I make a big mess similar to the pile next to the thicknesser, only I&amp;rsquo;m doing it by hand rather than with a table-router. From the picture you can see that my router bits aren&amp;rsquo;t deep enough to cover the body in a single pass, I&amp;rsquo;ll need to do a first pass with the template on, then I can remove the template and use the guide bearing to follow the upper cleared part when I do the lower half.&lt;/p&gt;
&lt;p&gt;Above I said I had a pair of router bits, and some might be wondering why. For most things I use a follow bit, which has a bearing at the top which sits against the acrylic template as a guide as I cut around, tracing out the shape. But just doing this in a single pass has a significant problem: if you want to avoid the wood tearing, you generally want to cut as you &amp;ldquo;step down&amp;rdquo; the wood grain. But as you trace around the edge of the body roughly half the time you&amp;rsquo;ll be stepping up the grain lines. What on earth am I talking about, let me try show you with this annotated picture:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8254_hu14055409454484656666.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8254_hu16544761379171042980.jpg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8254_hu14055409454484656666.jpg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;993px&#34;
        	alt=&#34;An annotated version of an earlier photo showing the body template sitting on the two-piece body blank. You can see the grain of the wood runs along the same direction as the centre joint line of the body running neck to tail. The body template is a series of curves, where it is wider towards the neck end and tail end and thinner in the middle. Where the curves change direction relative to the gain of the wood I&amp;#39;ve placed a tick mark to highlight this. On one pair of sections: for one I&amp;#39;ve indicated with a blue arrow following the body edge counter-clockwise and a red arrow running clockwise around the edge that they&amp;#39;ll need to be cut in different directions: if you examine the grain here this would mean in both cases you&amp;#39;re stepping down the grain relative to the profile of the template. There&amp;#39;s a crude circular arrow with each of these indicating which way the router bit needs to be rotating relative to the wood: clockwise for the blue arrow and counter-clockwise for the red-arrow.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;I&amp;rsquo;ve marked small black ticks around the edge of the template. If you go around the template anti-clockwise (as you would do with a hand router), and observe the grain lines, at each tick the grain goes in a different direction compared to the line I&amp;rsquo;m cutting. Now a router bit will spin in a clockwise direction (as indicated by the blue circle arrow thing), and so in the blue section where I&amp;rsquo;m &amp;ldquo;stepping down&amp;rdquo;, the cutting edge pushes the grain into the body, giving a clean cut, but in the red section, if I kept going with the same cutting tool going clockwise as before, then the router blades will lift the grain, causing tearing.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img class=&#34;unshadow&#34; class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/blah2_hu523421446120686298.jpg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/blah2_hu7446351877441234501.jpg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/blah2_hu523421446120686298.jpg 1x&#34;
			
			height=&#34;519px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A hand draw sketch showing the profile with two arrows from the previous picture with the grain drawn to be more evident, as it&amp;#39;s faint in the original picture. I&amp;#39;ve also drawn a caricature of a router blade show how it cuts in a clockwise direction always, and so on the blue section would be pressing down on the grain and on the red section, if you continued cutting in the blue direction, you&amp;#39;d be lifting the grain.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Hopefully you can see from that sketch how the blade on the router bit will lift the grains on the red cut. You can see the effect of tearing clearly here on the bass body as I progress:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8268_hu2984504729794792319.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8268_hu7795548428003300262.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8268_hu2984504729794792319.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A close-up photo of a strip on the body where the router has been applied, and it&amp;#39;s given a very clean cut for most of the pass, but right at the end as the router moves away from the body the wood is all damaged as the router bit was cutting against the grain.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;This is that transition point between blue and red indicated on the annotated diagram, where I&amp;rsquo;m ramping out my blue cut and I have to go slightly into the red zone. Don&amp;rsquo;t worry, this ramp out area will be removed when I do the red pass, but it hopefully illustrates that cutting against the wood can cause quite a bit of damage.&lt;/p&gt;
&lt;p&gt;Because I can&amp;rsquo;t change the direction the router cuts, the solution here is that for the red section I use a second router bit that has the follow bearing on the bottom, and I have to flip the workpiece over and cut from the other side, so that the red section is being cut in a grain friendly manner.&lt;/p&gt;
&lt;p&gt;So basically to cut the body like this requires four passes: a blue and a red pass on the top half, and similarly on the bottom half. This is also why it&amp;rsquo;s important to get as much material off with the bands-aw as possible, as otherwise the excess material will foul on the shaft of the router bit I&amp;rsquo;m using for the first red pass.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s a lot of messing around, but on a wood as soft as poplar the tear out damage if I didn&amp;rsquo;t do this would be quite notable, as you can see. And that would then lead to sanding, and I hate sanding. Even on maple for the necks, where the tear out is much less because the wood is tougher, the little you do get is harder to work out, as the wood is much tougher :) Basically a little more time at this stage saves a lot of effort later on.&lt;/p&gt;
&lt;p&gt;Here&amp;rsquo;s a pic towards the end when you can see I&amp;rsquo;ve just got the last pass to do:&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8269_hu8784864948885309946.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8269_hu14394998653534771784.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8269_hu8784864948885309946.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the body mostly cut out sat on the workbench, the template no longer needed having been removed. There&amp;#39;s just a couple of sections on the lower half of the body where you can still see the rough cut from the band saw.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;And finally the outer profile is completed!&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8271_hu13071834813012177264.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8271_hu10259146146179588479.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8271_hu13071834813012177264.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A photo of the body blank now cut down to a neat profile of a guitar body, sat on the workbench next to some clamps and a router. Notably absent from the body are any other features you&amp;#39;d expect, like the neck pocket, pickup cavities, etc. It is literally just cut to the profile currently.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Well, I&amp;rsquo;ve done the outline :D I still have to route out the neck pocket, the control cavities, and the pickup cavities, but that&amp;rsquo;s a job for another day, as I&amp;rsquo;d also done a guitar neck at the same time (which I&amp;rsquo;ll document in the next notes), and I was getting tired, and you don&amp;rsquo;t want to mix tired and routers. It&amp;rsquo;s also hard to drink tea in all this PPE.&lt;/p&gt;
&lt;div class=&#34;listimage&#34;&gt;
    &lt;div&gt;
    &lt;figure&gt;
        
		
			
        	&lt;img  class=&#34;rounded&#34;
			
				
		    	src=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8270_hu18036469765155961734.jpeg&#34; srcset=&#34;https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8270_hu11227561951385603567.jpeg 2x, https://mwdales-guitars.uk/blog/2025/01/03/a-week-in-the-shop/IMG_8270_hu18036469765155961734.jpeg 1x&#34;
			
			height=&#34;750px&#34;
			width=&#34;1000px&#34;
        	alt=&#34;A selfie photo of me in the workshop waving to the camera. I&amp;#39;m wearing a respirator, ear-defenders, eye-protectors, and overalls.&#34; /&gt;
		
    &lt;/figure&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;So with that I&amp;rsquo;ll sign off here, and we can talk about necks in the next set of notes!&lt;/p&gt;


          </description>
        </item>
      
    
  </channel>
</rss>