<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Scouts on Backend Engineering Strategy Tools</title><link>https://backend-engineering-strategy-tools.github.io/site/tags/scouts/</link><description>Recent content in Scouts on Backend Engineering Strategy Tools</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Tue, 02 Jun 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://backend-engineering-strategy-tools.github.io/site/tags/scouts/index.xml" rel="self" type="application/rss+xml"/><item><title>Casting Part 1 — Scout Badges</title><link>https://backend-engineering-strategy-tools.github.io/site/garage/casting-badges/</link><pubDate>Tue, 02 Jun 2026 00:00:00 +0000</pubDate><guid>https://backend-engineering-strategy-tools.github.io/site/garage/casting-badges/</guid><description>&lt;p&gt;When I was a kid and scout we cast the scout emblem in tin — naturally we had to do this again with my own troop.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m lucky to have a fellow scout leader who does casting professionally. I modelled the master in resin and he made the silicon moulds from it.&lt;/p&gt;
&lt;p&gt;For the tin, I went to second-hand shops and gathered everything tin I could find to melt down. Ordered crucibles and pliers online. We melted the tin by putting the crucible in the fire, then the kids could do the pour into the mould, demould, and finish.&lt;/p&gt;
&lt;p&gt;First real casting project — a success.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="master"&gt;Master
&lt;/h2&gt;&lt;p&gt;Modeled in Blender, printed in resin as the master for the silicon mould.&lt;/p&gt;




&lt;div class="sc-carousel" id="carousel-0"&gt;
 &lt;div class="sc-track"&gt;
 
 &lt;div class="sc-slide"&gt;
 &lt;img src="https://backend-engineering-strategy-tools.github.io/site/code/mesh/scout_emblem/renders/model_back.png" loading="eager" alt="/code/mesh/scout_emblem/renders/model_back.png"&gt;
 &lt;/div&gt;
 
 &lt;div class="sc-slide"&gt;
 &lt;img src="https://backend-engineering-strategy-tools.github.io/site/code/mesh/scout_emblem/renders/model_front.png" loading="lazy" alt="/code/mesh/scout_emblem/renders/model_front.png"&gt;
 &lt;/div&gt;
 
 &lt;div class="sc-slide"&gt;
 &lt;img src="https://backend-engineering-strategy-tools.github.io/site/code/mesh/scout_emblem/renders/model_iso.png" loading="lazy" alt="/code/mesh/scout_emblem/renders/model_iso.png"&gt;
 &lt;/div&gt;
 
 &lt;div class="sc-slide"&gt;
 &lt;img src="https://backend-engineering-strategy-tools.github.io/site/code/mesh/scout_emblem/renders/model_side.png" loading="lazy" alt="/code/mesh/scout_emblem/renders/model_side.png"&gt;
 &lt;/div&gt;
 
 &lt;div class="sc-slide"&gt;
 &lt;img src="https://backend-engineering-strategy-tools.github.io/site/code/mesh/scout_emblem/renders/model_top.png" loading="lazy" alt="/code/mesh/scout_emblem/renders/model_top.png"&gt;
 &lt;/div&gt;
 
 &lt;/div&gt;
 
 &lt;button class="sc-btn sc-prev" aria-label="Previous"&gt;&amp;#8249;&lt;/button&gt;
 &lt;button class="sc-btn sc-next" aria-label="Next"&gt;&amp;#8250;&lt;/button&gt;
 &lt;div class="sc-dots"&gt;
 
 &lt;span class="sc-dot active"&gt;&lt;/span&gt;
 
 &lt;span class="sc-dot"&gt;&lt;/span&gt;
 
 &lt;span class="sc-dot"&gt;&lt;/span&gt;
 
 &lt;span class="sc-dot"&gt;&lt;/span&gt;
 
 &lt;span class="sc-dot"&gt;&lt;/span&gt;
 
 &lt;/div&gt;
 
&lt;/div&gt;

&lt;style&gt;
.sc-carousel{position:relative;overflow:hidden;background:#0d0d0d;border-radius:8px;margin:1.5rem 0;user-select:none}
.sc-track{display:flex;transition:transform .4s ease}
.sc-slide{min-width:100%;display:flex;align-items:center;justify-content:center}
.sc-slide img{max-width:100%;max-height:560px;object-fit:contain}
.sc-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.55);color:#fff;border:none;font-size:2.4rem;line-height:1;padding:.05rem .65rem .15rem;cursor:pointer;border-radius:4px;z-index:10;transition:background .2s}
.sc-btn:hover{background:rgba(0,0,0,.85)}
.sc-prev{left:.5rem}.sc-next{right:.5rem}
.sc-dots{position:absolute;bottom:.65rem;left:0;right:0;display:flex;justify-content:center;gap:6px}
.sc-dot{width:8px;height:8px;background:rgba(255,255,255,.35);border-radius:50%;cursor:pointer;transition:background .2s}
.sc-dot.active{background:#fff}
&lt;/style&gt;

&lt;script&gt;
(function(){
 var root=document.getElementById('carousel-0');
 if(!root)return;
 var track=root.querySelector('.sc-track');
 var slides=root.querySelectorAll('.sc-slide');
 var dots=root.querySelectorAll('.sc-dot');
 var cur=0,timer;
 function go(n){
 if(dots[cur])dots[cur].classList.remove('active');
 cur=((n%slides.length)+slides.length)%slides.length;
 if(dots[cur])dots[cur].classList.add('active');
 track.style.transform='translateX(-'+cur*100+'%)';
 }
 var prev=root.querySelector('.sc-prev');
 var next=root.querySelector('.sc-next');
 if(prev)prev.addEventListener('click',function(){clearInterval(timer);go(cur-1);start()});
 if(next)next.addEventListener('click',function(){clearInterval(timer);go(cur+1);start()});
 dots.forEach(function(d,i){d.addEventListener('click',function(){clearInterval(timer);go(i);start()})});
 function start(){timer=setInterval(function(){go(cur+1)},"2800");}
 start();
})();
&lt;/script&gt;

&lt;p&gt;


&lt;a href="https://backend-engineering-strategy-tools.github.io/site/code/mesh/scout_emblem/scout_emblem.blend" download class="dl-link"&gt;
 &lt;span class="dl-icon"&gt;↓&lt;/span&gt;scout_emblem.blend
&lt;/a&gt;

&lt;style&gt;
.dl-link{display:inline-flex;align-items:center;gap:.4rem;padding:.3rem .75rem;border:1px solid currentColor;border-radius:4px;font-family:monospace;font-size:.875rem;text-decoration:none;opacity:.85;transition:opacity .15s}
.dl-link:hover{opacity:1;text-decoration:none}
.dl-icon{font-size:1rem;line-height:1}
&lt;/style&gt;




&lt;a href="https://backend-engineering-strategy-tools.github.io/site/code/mesh/scout_emblem/scout_emblem.stl" download class="dl-link"&gt;
 &lt;span class="dl-icon"&gt;↓&lt;/span&gt;scout_emblem.stl
&lt;/a&gt;

&lt;style&gt;
.dl-link{display:inline-flex;align-items:center;gap:.4rem;padding:.3rem .75rem;border:1px solid currentColor;border-radius:4px;font-family:monospace;font-size:.875rem;text-decoration:none;opacity:.85;transition:opacity .15s}
.dl-link:hover{opacity:1;text-decoration:none}
.dl-icon{font-size:1rem;line-height:1}
&lt;/style&gt;
&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="moulds"&gt;Moulds
&lt;/h2&gt;&lt;p&gt;Silicon moulds made by my fellow scout leader from the resin master.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://backend-engineering-strategy-tools.github.io/site/images/silicon_mould.jpeg"
 alt="Silicon moulds made from the resin master."&gt;&lt;figcaption&gt;
 &lt;p&gt;Silicon moulds made from the resin master.&lt;/p&gt;
 &lt;/figcaption&gt;
&lt;/figure&gt;

&lt;hr&gt;
&lt;h2 id="the-pour"&gt;The Pour
&lt;/h2&gt;&lt;p&gt;We set up a practice station first — gloves, face masks, and pouring water into a PET bottle before anyone touched real tin. Once they had the motion down, they moved to the actual pour.&lt;/p&gt;
&lt;p&gt;Done in small groups: two leaders, two kids at a time. Went smoothly.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="result"&gt;Result
&lt;/h2&gt;&lt;figure&gt;&lt;img src="https://backend-engineering-strategy-tools.github.io/site/images/scout_emblem.jpeg"
 alt="Finished tin scout badges."&gt;&lt;figcaption&gt;
 &lt;p&gt;Finished tin scout badges.&lt;/p&gt;
 &lt;/figcaption&gt;
&lt;/figure&gt;

&lt;hr&gt;
&lt;p&gt;&lt;strong&gt;See also&lt;/strong&gt;: &lt;a class="link" href="https://backend-engineering-strategy-tools.github.io/site/garage/foundry/" &gt;Building the Foundry&lt;/a&gt; | &lt;a class="link" href="https://backend-engineering-strategy-tools.github.io/site/garage/casting-buckle/" &gt;Casting Part 2 — Belt Buckle&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Casting Part 2 — Belt Buckle</title><link>https://backend-engineering-strategy-tools.github.io/site/garage/casting-buckle/</link><pubDate>Tue, 02 Jun 2026 00:00:00 +0000</pubDate><guid>https://backend-engineering-strategy-tools.github.io/site/garage/casting-buckle/</guid><description>&lt;p&gt;Aluminium casting of a scout belt buckle. The buckle geometry was reverse-engineered and built parametrically in Blender Python — see &lt;a class="link" href="https://backend-engineering-strategy-tools.github.io/site/garage/scout-buckle/" &gt;Scout Buckle — Parametric Design&lt;/a&gt; for that side of the project. This page covers the casting execution.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="from-model-to-mould"&gt;From Model to Mould
&lt;/h2&gt;&lt;p&gt;&lt;em&gt;Notes to follow — taking the parametric model into a casting-ready form. Draft angles, wall thickness, sprue placement.&lt;/em&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="the-pour"&gt;The Pour
&lt;/h2&gt;&lt;p&gt;&lt;em&gt;Notes to follow — aluminium, setup, result.&lt;/em&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="status"&gt;Status
&lt;/h2&gt;&lt;p&gt;Work in progress.&lt;/p&gt;
&lt;p&gt;The original — a scout belt buckle picked up at a visit to the &lt;a class="link" href="https://scoutmuseetgbg.scout.se/" target="_blank" rel="noopener"
 &gt;Scout Museum in Gothenburg&lt;/a&gt;, the model we are reproducing.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://backend-engineering-strategy-tools.github.io/site/images/scout-buckle.jpeg"
 alt="Original scout belt buckle from the museum visit."&gt;&lt;figcaption&gt;
 &lt;p&gt;Original scout belt buckle from the museum visit.&lt;/p&gt;
 &lt;/figcaption&gt;
&lt;/figure&gt;

&lt;figure&gt;&lt;img src="https://backend-engineering-strategy-tools.github.io/site/images/alu.jpeg"
 alt="A fellow scout leader kindly donated a few used fire extinguishers — more than enough aluminium for this project once melted down."&gt;&lt;figcaption&gt;
 &lt;p&gt;A fellow scout leader kindly donated a few used fire extinguishers — more than enough aluminium for this project once melted down.&lt;/p&gt;
 &lt;/figcaption&gt;
&lt;/figure&gt;

&lt;hr&gt;
&lt;p&gt;&lt;strong&gt;See also&lt;/strong&gt;: &lt;a class="link" href="https://backend-engineering-strategy-tools.github.io/site/garage/scout-buckle/" &gt;Scout Buckle — Parametric Design&lt;/a&gt; | &lt;a class="link" href="https://backend-engineering-strategy-tools.github.io/site/garage/foundry/" &gt;Building the Foundry&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Resin Badges — Packat &amp; Klart</title><link>https://backend-engineering-strategy-tools.github.io/site/garage/scout-badges-resin/</link><pubDate>Tue, 02 Jun 2026 00:00:00 +0000</pubDate><guid>https://backend-engineering-strategy-tools.github.io/site/garage/scout-badges-resin/</guid><description>&lt;p&gt;Resin-printed &amp;lsquo;packat &amp;amp; klart&amp;rsquo; badges for the scouts heading out on their first overnight trip, i.e. &amp;lsquo;Hajk&amp;rsquo;.&lt;/p&gt;
&lt;p&gt;We had a meeting where we went through what one should bring, then ran a competition where the kids got points for guessing what was in the pack I brought along. They got a badge if they did well — they all passed. Success.&lt;/p&gt;
&lt;p&gt;First attempt at producing physical scout items rather than sourcing them.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="the-badge"&gt;The Badge
&lt;/h2&gt;&lt;p&gt;Modeled in Blender, exported to STL, printed in resin.&lt;/p&gt;




&lt;div class="sc-carousel" id="carousel-0"&gt;
 &lt;div class="sc-track"&gt;
 
 &lt;div class="sc-slide"&gt;
 &lt;img src="https://backend-engineering-strategy-tools.github.io/site/code/mesh/packat_klart/renders/model_back.png" loading="eager" alt="/code/mesh/packat_klart/renders/model_back.png"&gt;
 &lt;/div&gt;
 
 &lt;div class="sc-slide"&gt;
 &lt;img src="https://backend-engineering-strategy-tools.github.io/site/code/mesh/packat_klart/renders/model_front.png" loading="lazy" alt="/code/mesh/packat_klart/renders/model_front.png"&gt;
 &lt;/div&gt;
 
 &lt;div class="sc-slide"&gt;
 &lt;img src="https://backend-engineering-strategy-tools.github.io/site/code/mesh/packat_klart/renders/model_iso.png" loading="lazy" alt="/code/mesh/packat_klart/renders/model_iso.png"&gt;
 &lt;/div&gt;
 
 &lt;div class="sc-slide"&gt;
 &lt;img src="https://backend-engineering-strategy-tools.github.io/site/code/mesh/packat_klart/renders/model_side.png" loading="lazy" alt="/code/mesh/packat_klart/renders/model_side.png"&gt;
 &lt;/div&gt;
 
 &lt;div class="sc-slide"&gt;
 &lt;img src="https://backend-engineering-strategy-tools.github.io/site/code/mesh/packat_klart/renders/model_top.png" loading="lazy" alt="/code/mesh/packat_klart/renders/model_top.png"&gt;
 &lt;/div&gt;
 
 &lt;/div&gt;
 
 &lt;button class="sc-btn sc-prev" aria-label="Previous"&gt;&amp;#8249;&lt;/button&gt;
 &lt;button class="sc-btn sc-next" aria-label="Next"&gt;&amp;#8250;&lt;/button&gt;
 &lt;div class="sc-dots"&gt;
 
 &lt;span class="sc-dot active"&gt;&lt;/span&gt;
 
 &lt;span class="sc-dot"&gt;&lt;/span&gt;
 
 &lt;span class="sc-dot"&gt;&lt;/span&gt;
 
 &lt;span class="sc-dot"&gt;&lt;/span&gt;
 
 &lt;span class="sc-dot"&gt;&lt;/span&gt;
 
 &lt;/div&gt;
 
&lt;/div&gt;

&lt;style&gt;
.sc-carousel{position:relative;overflow:hidden;background:#0d0d0d;border-radius:8px;margin:1.5rem 0;user-select:none}
.sc-track{display:flex;transition:transform .4s ease}
.sc-slide{min-width:100%;display:flex;align-items:center;justify-content:center}
.sc-slide img{max-width:100%;max-height:560px;object-fit:contain}
.sc-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.55);color:#fff;border:none;font-size:2.4rem;line-height:1;padding:.05rem .65rem .15rem;cursor:pointer;border-radius:4px;z-index:10;transition:background .2s}
.sc-btn:hover{background:rgba(0,0,0,.85)}
.sc-prev{left:.5rem}.sc-next{right:.5rem}
.sc-dots{position:absolute;bottom:.65rem;left:0;right:0;display:flex;justify-content:center;gap:6px}
.sc-dot{width:8px;height:8px;background:rgba(255,255,255,.35);border-radius:50%;cursor:pointer;transition:background .2s}
.sc-dot.active{background:#fff}
&lt;/style&gt;

&lt;script&gt;
(function(){
 var root=document.getElementById('carousel-0');
 if(!root)return;
 var track=root.querySelector('.sc-track');
 var slides=root.querySelectorAll('.sc-slide');
 var dots=root.querySelectorAll('.sc-dot');
 var cur=0,timer;
 function go(n){
 if(dots[cur])dots[cur].classList.remove('active');
 cur=((n%slides.length)+slides.length)%slides.length;
 if(dots[cur])dots[cur].classList.add('active');
 track.style.transform='translateX(-'+cur*100+'%)';
 }
 var prev=root.querySelector('.sc-prev');
 var next=root.querySelector('.sc-next');
 if(prev)prev.addEventListener('click',function(){clearInterval(timer);go(cur-1);start()});
 if(next)next.addEventListener('click',function(){clearInterval(timer);go(cur+1);start()});
 dots.forEach(function(d,i){d.addEventListener('click',function(){clearInterval(timer);go(i);start()})});
 function start(){timer=setInterval(function(){go(cur+1)},"2800");}
 start();
})();
&lt;/script&gt;

&lt;p&gt;


&lt;a href="https://backend-engineering-strategy-tools.github.io/site/code/mesh/packat_klart/packat_klart.blend" download class="dl-link"&gt;
 &lt;span class="dl-icon"&gt;↓&lt;/span&gt;packat_klart.blend
&lt;/a&gt;

&lt;style&gt;
.dl-link{display:inline-flex;align-items:center;gap:.4rem;padding:.3rem .75rem;border:1px solid currentColor;border-radius:4px;font-family:monospace;font-size:.875rem;text-decoration:none;opacity:.85;transition:opacity .15s}
.dl-link:hover{opacity:1;text-decoration:none}
.dl-icon{font-size:1rem;line-height:1}
&lt;/style&gt;




&lt;a href="https://backend-engineering-strategy-tools.github.io/site/code/mesh/packat_klart/packat_och_klart.stl" download class="dl-link"&gt;
 &lt;span class="dl-icon"&gt;↓&lt;/span&gt;packat_och_klart.stl
&lt;/a&gt;

&lt;style&gt;
.dl-link{display:inline-flex;align-items:center;gap:.4rem;padding:.3rem .75rem;border:1px solid currentColor;border-radius:4px;font-family:monospace;font-size:.875rem;text-decoration:none;opacity:.85;transition:opacity .15s}
.dl-link:hover{opacity:1;text-decoration:none}
.dl-icon{font-size:1rem;line-height:1}
&lt;/style&gt;
&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="print"&gt;Print
&lt;/h2&gt;&lt;p&gt;Printed on the &lt;a class="link" href="https://backend-engineering-strategy-tools.github.io/site/garage/3d-printing/" &gt;Anycubic Photon Mono 2&lt;/a&gt; in Craftsman resin for the extra detail. In hindsight standard resin would have been fine at this size.&lt;/p&gt;
&lt;hr&gt;</description></item></channel></rss>