Blog
This one has been months in the making. Not only is this one of the larger undertakings, but there were also stock and weather issues to contend with (which I'll detail later).
Cab
So a long time ago, back in Part 1, I stripped the cab of its headlining and shelf.
Well, a good 4 months later I finally started working on insulating it. For this I used sheets of 10mm closed cell foam. This also serves to act as a sound dampener on the van metal, as well as thermal insulation. I used 3 layers of this, taking it to 30mm total. Due to the flexibility of the material and curvature of the van it was hard to put these sheets down in a straight line.
, cooking facilities and a few other bits. I also want to be able to accommodate a decent size social gathering of 6 to 8 people, as well as make it 4 birth.
Here's what I've come up with so far
What you see above isn't the first iteration, and it's not the final one either in all likelihood, but it's very close to what I'm pretty sure will be the final plan.
Main features, from left to right (front to back of van) are:
- Double seat on the driver's side and single seat on the passenger's. These will expand out to make another bed.
- Coat storage
- Shower
- Kitchen
- Fixe
Posted on Wednesday the 25th of November 2020
Read more...
Don't ask me what inspired this, as I have no idea. I'm just going to detail the process on how I got this from an SVG to a 3 colour 3D print using FreeCAD.
It turns out there's a list of UK road signs in SVG format. Simply download whichever sign takes your fancy and follow these steps to make a model using FreeCAD.
Design
First, do the usual and create a new document with a new body. Then go File->Import and select the SVG file, then click on SVG as geometry followed by Select.
When you import the SVG there may be a whole load of redundant paths. Select and
Posted on Wednesday the 15th of July 2020
Read more...
One of the key things I like to do when setting up a new project for my team is to make it as easy as possible to get up and running. One major facet of this is making sure any local dev config stays local, even if it's part of a deployed config file (as is the case in Umbraco). In this situation you need to be able to ignore or exclude certain lines within git.
Note: I'll be using what I did with Umbraco throughout as a practical example, but the same principles apply to any file.
The three steps
First I created a new bash script, clean-umbraco-config.sh, to clean out the offending content:
#!/bin/sh
sed \
-e 's/<add key="Umbraco.Core.ConfigurationStatus" value=".*" \/>/<add key="Umbraco.Core.ConfigurationStatus" value="" \/>/g' \
-e 's/<add name="umbracoDbDSN" connectionString=".*" providerName=".*" \/>/<add name="umbracoDbDSN" connectionString="" providerName="" \/>/g' \
$1
What this
Posted on Saturday the 14th of March 2020
Read more...