<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Strings and Tines on Strings And Tines</title><link>http://stringsandtines.com/</link><description>Recent content in Strings and Tines on Strings And Tines</description><generator>Hugo -- gohugo.io</generator><language>en</language><copyright>© 2026</copyright><lastBuildDate>Sun, 12 Apr 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://stringsandtines.com/index.xml" rel="self" type="application/rss+xml"/><item><title>Volleyball Stats Tracker</title><link>http://stringsandtines.com/code/volleyballstatstracker/</link><pubDate>Sun, 12 Apr 2026 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/code/volleyballstatstracker/</guid><description>&lt;style>
.vb-app-box {
max-width: 550px;
margin: 0 auto;
background-color: #121212;
color: #ffffff;
font-family: sans-serif;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
overflow: hidden;
}
.vb-app-header {
position: sticky;
top: 0;
background: #1e1e1e;
padding: 12px 15px;
z-index: 50;
border-bottom: 2px solid #3498db;
display: flex;
justify-content: space-between;
align-items: center;
}
.vb-app-header h2 { margin: 0 !important; font-size: 1.1rem !important; color: #3498db !important; border: none !important; }
.vb-app-set-pill { font-weight: bold; background: #3498db; padding: 4px 10px; border-radius: 4px; color: white; }
.vb-app-body { padding: 15px; }
.vb-app-input-group {
background: #1e1e1e;
padding: 10px;
border-radius: 6px;
margin-bottom: 15px;
}
.vb-app-body input {
width: 100%;
padding: 12px;
margin: 4px 0 8px 0;
background: #2c2c2c;
border: 1px solid #444;
color: white;
border-radius: 4px;
box-sizing: border-box;
font-size: 16px;
}
.vb-app-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin-bottom: 20px;
}
.vb-app-stat-card {
background: #2c2c2c;
padding: 12px;
border-radius: 6px;
text-align: center;
border-left: 4px solid #95a5a6;
}
.vb-app-stat-card.vb-hl { border-left-color: #27ae60; }
.vb-app-stat-card.vb-std { border-left-color: #3498db; }
.vb-app-label { font-size: 0.7rem; text-transform: uppercase; color: #bbb; display: block; margin-bottom: 4px; }
.vb-app-val { font-size: 1.8rem; font-weight: bold; margin: 4px 0; color: #fff; }
.vb-app-btns { display: flex; gap: 8px; }

/* Perfect centering for + and - */
.vb-app-box button {
flex: 1;
height: 55px; /* Fixed height for consistent hit area */
border: none;
border-radius: 4px;
font-weight: bold;
color: white;
font-size: 1.8rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
line-height: 0;
padding: 0;
}

.vb-app-plus { background-color: #27ae60; }
.vb-app-minus { background-color: #e74c3c; opacity: 0.7; }

/* Wide utility buttons */
.vb-app-wide { 
width: 100%; 
margin-top: 10px; 
height: 60px !important; 
font-size: 1.1rem !important; 
}
.vb-app-next { background-color: #3498db; }
.vb-app-reset { background-color: #444; }
.vb-app-danger { background-color: transparent; border: 1px solid #e74c3c; color: #e74c3c; margin-top: 30px; margin-bottom: 40px; }
&lt;/style>
&lt;div class="vb-app-box">
&lt;div class="vb-app-header">
&lt;div>
&lt;h2 id="v-disp-n">Player Name&lt;/h2>
&lt;span id="v-disp-t" style="font-size: 0.8rem; color: #aaa;">Team vs Opponent&lt;/span>
&lt;/div>
&lt;div class="vb-app-set-pill">SET &lt;span id="v-disp-s">1&lt;/span>&lt;/div>
&lt;/div>
&lt;div class="vb-app-body">
&lt;div class="vb-app-input-group">
&lt;input type="text" id="v-in-n" placeholder="Player Name" oninput="window.vbS()">
&lt;input type="text" id="v-in-t" placeholder="Player Team" oninput="window.vbS()">
&lt;input type="text" id="v-in-o" placeholder="Opponent" oninput="window.vbS()">
&lt;div style="display: flex; gap: 8px;">
&lt;input type="date" id="v-in-d" onchange="window.vbS()">
&lt;input type="text" id="v-in-v" placeholder="Venue" oninput="window.vbS()">
&lt;/div>
&lt;/div>
&lt;div class="vb-app-grid" id="vb-grid-target">&lt;/div>
&lt;button class="vb-app-wide vb-app-next" onclick="window.vbNext()">Next Set (Clear Stats)&lt;/button>
&lt;button class="vb-app-wide vb-app-reset" onclick="window.vbResS()">Reset Set&lt;/button>
&lt;button class="vb-app-wide vb-app-danger" onclick="window.vbFull()">Full Reset Page&lt;/button>
&lt;/div>
&lt;/div>
&lt;script>
(function() {
let stats = { blocks: 0, ace: 0, freeball: 0, dump: 0, kill: 0, serve: 0, push: 0, points: 0 };
let set = 1;
const labels = { blocks: "Blocks", ace: "Ace", freeball: "Free Ball", dump: "Dump", kill: "Kill", serve: "Serve", push: "Push", points: "Points Scored" };

window.vbS = function() {
const nEl = document.getElementById('v-in-n');
const tEl = document.getElementById('v-in-t');
const oEl = document.getElementById('v-in-o');
const dEl = document.getElementById('v-in-d');
const vEl = document.getElementById('v-in-v');
if(nEl) document.getElementById('v-disp-n').innerText = nEl.value || "Player Name";
if(tEl &amp;&amp; oEl) document.getElementById('v-disp-t').innerText = (tEl.value || 'Team') + ' vs ' + (oEl.value || 'Opp');
document.getElementById('v-disp-s').innerText = set;
localStorage.setItem('vb_final_v6', JSON.stringify({
stats, set, meta: {
n: nEl ? nEl.value : "",
t: tEl ? tEl.value : "",
o: oEl ? oEl.value : "",
d: dEl ? dEl.value : "",
v: vEl ? vEl.value : ""
}
}));
};

window.vbR = function() {
const g = document.getElementById('vb-grid-target');
if(!g) return;
g.innerHTML = '';
for (const [k, v] of Object.entries(stats)) {
const isP = (k === 'ace' || k === 'kill' || k === 'points');
const d = document.createElement('div');
d.className = 'vb-app-stat-card ' + (isP ? 'vb-hl' : 'vb-std');
d.innerHTML = '&lt;span class="vb-app-label">' + labels[k] + '&lt;/span>&lt;div class="vb-app-val">' + v + '&lt;/div>' +
'&lt;div class="vb-app-btns">' +
'&lt;button class="vb-app-minus" onclick="window.vbC(\'' + k + '\', -1)">&lt;span>−&lt;/span>&lt;/button>' +
'&lt;button class="vb-app-plus" onclick="window.vbC(\'' + k + '\', 1)">&lt;span>+&lt;/span>&lt;/button>' +
'&lt;/div>';
g.appendChild(d);
}
};

window.vbC = function(k, a) {
stats[k] = Math.max(0, stats[k] + a);
if (a > 0 &amp;&amp; (k === 'ace' || k === 'kill')) stats.points++;
window.vbS(); window.vbR();
};

window.vbNext = function() {
if (set &lt; 3) { set++; for (let k in stats) stats[k] = 0; window.vbS(); window.vbR(); window.scrollTo(0,0); }
};

window.vbResS = function() {
if(confirm("Reset current set?")) { for (let k in stats) stats[k] = 0; window.vbS(); window.vbR(); }
};

window.vbFull = function() {
if(confirm("Full Reset? This wipes EVERYTHING.")) {
localStorage.removeItem('vb_final_v6');
const ids = ['v-in-n', 'v-in-t', 'v-in-o', 'v-in-d', 'v-in-v'];
ids.forEach(id => { const el = document.getElementById(id); if(el) el.value = ""; });
set = 1;
for (let k in stats) stats[k] = 0;
window.vbS(); 
location.reload();
}
};

const stored = localStorage.getItem('vb_final_v6');
if (stored) {
const d = JSON.parse(stored);
stats = d.stats; set = d.set;
if(document.getElementById('v-in-n')) document.getElementById('v-in-n').value = d.meta.n || "";
if(document.getElementById('v-in-t')) document.getElementById('v-in-t').value = d.meta.t || "";
if(document.getElementById('v-in-o')) document.getElementById('v-in-o').value = d.meta.o || "";
if(document.getElementById('v-in-d')) document.getElementById('v-in-d').value = d.meta.d || "";
if(document.getElementById('v-in-v')) document.getElementById('v-in-v').value = d.meta.v || "";
}
window.vbR(); window.vbS();
})();
&lt;/script></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/code/volleyballstatstracker/featured.png"/></item><item><title>Weather Hologram</title><link>http://stringsandtines.com/code/weatherhologram/</link><pubDate>Sun, 27 Jul 2025 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/code/weatherhologram/</guid><description>&lt;style>
 html, body {
 margin: 0;
 padding: 0;
 background: black;
 width: 100%;
 min-height: 100vh;
 overflow-y: auto;
 font-family: 'Roboto', sans-serif;
 }

 /* Wrap everything to mirror */
 #mirrorWrapper {
 -webkit-transform: scaleX(-1);
 -moz-transform: scaleX(-1);
 -ms-transform: scaleX(-1);
 -o-transform: scaleX(-1);
 transform: scaleX(-1);
 }

 #container {
 text-align: center;
 padding-top: 20px;
 }

 #weatherImg {
 transform: scale(1.5);
 transform-origin: center;
 max-width: 100%;
 height: auto;
 }

 #spacer {
 height: 150px;
 }

 #tempDisplay {
 position: absolute;
 top: 20px;
 right: 20px;
 color: white;
 font-size: 40px;
 font-weight: 100;
 z-index: 999;
 pointer-events: none;
 }
 &lt;/style>
&lt;div id="mirrorWrapper">
 &lt;div id="tempDisplay">--°C&lt;/div>
 &lt;div id="container">
 &lt;img id="weatherImg" src="sun.gif" alt="Ambient Weather Display">
 &lt;/div>
 &lt;div id="spacer">&lt;/div>
&lt;/div>
&lt;script>
 var gifs = {
 "Clear": "sun.gif",
 "Clouds": "clouds.gif",
 "Rain": "rain.gif",
 "Drizzle": "rain.gif",
 "Mist": "haze.gif",
 "Smoke": "haze.gif",
 "Haze": "haze.gif",
 "Fog": "haze.gif",
 "Thunderstorm": "thunderstorm.gif",
 "Default": "sun.gif"
 };

 var apiKey = "0279ec960d72c1817406752c091587fd";
/* var apiKey = "0b6dae9987379e1deaf001865ec26a64"; */
 var lat = "43.30";
 var lon = "-77.92";
 var apiUrl = "https://api.openweathermap.org/data/2.5/weather?lat=" + lat + "&amp;lon=" + lon + "&amp;units=imperial&amp;appid=" + apiKey;

 function updateImage(condition) {
 var gifSrc = gifs[condition] || gifs["Default"];
 document.getElementById("weatherImg").src = gifSrc;
 }

 function updateTempDisplay(temp) {
 var display = document.getElementById("tempDisplay");
 display.textContent = Math.round(temp) + "°F";
 }

 function fetchWeather() {
 var xhr = new XMLHttpRequest();
 xhr.open("GET", apiUrl, true);
 xhr.onreadystatechange = function() {
 if (xhr.readyState === 4 &amp;&amp; xhr.status === 200) {
 try {
 var data = JSON.parse(xhr.responseText);
 if (data &amp;&amp; data.weather &amp;&amp; data.weather.length > 0) {
 var condition = data.weather[0].main;
 var temp = data.main.temp;
 updateImage(condition);
 updateTempDisplay(temp);
 }
 } catch (e) {
 console.error("Error parsing JSON response:", e);
 }
 }
 };
 xhr.send();
 }

 fetchWeather();
 setInterval(fetchWeather, 600000);
&lt;/script>
&lt;div style="text-align: center;">
 &lt;div style="width: 500px; margin: 0 auto; background: #000; color: #fff;">Inspiration and code from &lt;a href="https://www.instructables.com/Trap-the-Current-Weather-in-a-Box/">here&lt;/a>. Pics of the project coming soon!&lt;/div>
&lt;/div></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/code/weatherhologram/featured.webp"/></item><item><title>Cornhole Score Tracker</title><link>http://stringsandtines.com/code/cornhole/</link><pubDate>Fri, 04 Jul 2025 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/code/cornhole/</guid><description>&lt;style>
/* Remove global html/body overrides to preserve theme layout */
.cornhole-container {
 width: 100vw;
 margin-left: calc(-50vw + 50%);
 font-family: sans-serif;
 min-height: 100vh;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

/* Mobile-specific full-width override */
@media (max-width: 640px) {
 .cornhole-container {
 width: 100vw;
 margin-left: -24px; /* px-6 = 24px */
 }
}

/* Small screens and up */
@media (min-width: 641px) and (max-width: 768px) {
 .cornhole-container {
 width: 100vw;
 margin-left: -56px; /* sm:px-14 = 56px */
 }
}

/* Medium screens and up */
@media (min-width: 769px) and (max-width: 1024px) {
 .cornhole-container {
 width: 100vw;
 margin-left: -96px; /* md:px-24 = 96px */
 }
}

/* Large screens and up */
@media (min-width: 1025px) {
 .cornhole-container {
 width: 100vw;
 margin-left: -128px; /* lg:px-32 = 128px */
 }
}
.cornhole-section {
 flex: 1 1 0;
 display: flex;
 flex-direction: column;
 align-items: center;
 padding: 32px 8px 24px 8px;
 justify-content: center;
 position: relative;
}
.cornhole-section.team1 {
 background: #e53935;
 color: #fff;
 border-top-left-radius: 16px;
 border-top-right-radius: 16px;
 padding-top: 16px;
}
.cornhole-section.team2 {
 background: #1e88e5;
 color: #fff;
 border-bottom-left-radius: 16px;
 border-bottom-right-radius: 16px;
 padding-top: 40px;
 padding-bottom: 24px;
}
.cornhole-title {
 font-size: 1.5em;
 font-weight: bold;
 margin-bottom: 16px;
}
.cornhole-btn-row {
 display: flex;
 gap: 12px;
 margin-bottom: 8px;
}
.cornhole-reset-row {
 display: flex;
 justify-content: center;
 margin-bottom: 16px;
}
.cornhole-btn {
 font-size: 1.2em;
 padding: 10px 18px;
 border: none;
 border-radius: 24px;
 background: #222;
 color: #fff !important;
 font-weight: bold;
 cursor: pointer;
 box-shadow: 0 2px 6px rgba(0,0,0,0.08);
 transition: background 0.2s;
}
.cornhole-btn:active {
 background: #333;
}
.cornhole-reset-btn {
 margin-left: 0;
}
.cornhole-score-row {
 display: flex;
 flex-direction: row;
 gap: 32px;
 margin-bottom: 8px;
 width: 100%;
 max-width: 500px;
 justify-content: center;
}
.cornhole-score-col {
 display: flex;
 flex-direction: column;
 align-items: center;
 flex: 1 1 0;
}
.cornhole-label {
 font-size: 1em;
 margin-bottom: 2px;
}
.cornhole-score-box {
 width: 120px;
 font-size: 1.3em;
 text-align: center;
 padding: 8px 0;
 border-radius: 6px;
 background: #fff;
 color: #222;
 border: none;
 margin-bottom: 4px;
 pointer-events: none;
}
.cornhole-divider {
 width: 100%;
 height: 2px;
 background: #eee;
 position: relative;
 z-index: 1;
}
.cornhole-end-round-btn {
 position: absolute;
 left: 50%;
 top: 100%;
 transform: translate(-50%, -50%);
 z-index: 2;
 font-size: 1.1em;
 padding: 12px 28px;
 border-radius: 24px;
 background: #222;
 color: #fff;
 border: none;
 font-weight: bold;
 box-shadow: 0 2px 8px rgba(0,0,0,0.12);
 cursor: pointer;
 min-width: 140px;
 white-space: nowrap;
}
.cornhole-restart-btn {
 margin: 32px auto 0 auto;
 display: block;
 font-size: 1.1em;
 padding: 14px 32px;
 border-radius: 24px;
 background: #222;
 color: #fff;
 border: none;
 font-weight: bold;
 box-shadow: 0 2px 8px rgba(0,0,0,0.10);
 cursor: pointer;
}
@media (max-width: 600px) {
 .cornhole-container {
 padding: 0;
 }
 .cornhole-section {
 padding: 20px 4px 16px 4px;
 }
 .cornhole-end-round-btn {
 font-size: 1em;
 min-width: 0;
 padding: 10px 10px;
 }
 .cornhole-restart-btn {
 font-size: 1em;
 padding: 12px 12px;
 }
 .cornhole-score-row {
 gap: 8px;
 max-width: 220px;
 }
 .cornhole-score-box {
 width: 70px;
 font-size: 1.1em;
 }
}
.single .cover, .single .featured-image, .single .page-header__cover { display: none !important; }
&lt;/style>
&lt;div class="cornhole-container">
 &lt;!-- Team 1 Section -->
 &lt;div class="cornhole-section team1">
 &lt;div class="cornhole-title">Team 1&lt;/div>
 &lt;div class="cornhole-btn-row">
 &lt;button class="cornhole-btn">+1&lt;/button>
 &lt;button class="cornhole-btn">+3&lt;/button>
 &lt;/div>
 &lt;div class="cornhole-reset-row">
 &lt;button class="cornhole-btn cornhole-reset-btn">Reset Round&lt;/button>
 &lt;/div>
 &lt;div class="cornhole-score-row">
 &lt;div class="cornhole-score-col">
 &lt;label class="cornhole-label" for="team1-current">Current Round&lt;/label>
 &lt;input class="cornhole-score-box" id="team1-current" type="text" value="0" readonly />
 &lt;/div>
 &lt;div class="cornhole-score-col">
 &lt;label class="cornhole-label" for="team1-overall">Overall Score&lt;/label>
 &lt;input class="cornhole-score-box" id="team1-overall" type="text" value="0" readonly />
 &lt;/div>
 &lt;/div>
 &lt;!-- End Round button overlaps divider -->
 &lt;button class="cornhole-end-round-btn">End Round&lt;/button>
 &lt;/div>
 &lt;!-- Divider -->
 &lt;div class="cornhole-divider">&lt;/div>
 &lt;!-- Team 2 Section -->
 &lt;div class="cornhole-section team2">
 &lt;div class="cornhole-title">Team 2&lt;/div>
 &lt;div class="cornhole-btn-row">
 &lt;button class="cornhole-btn">+1&lt;/button>
 &lt;button class="cornhole-btn">+3&lt;/button>
 &lt;/div>
 &lt;div class="cornhole-reset-row">
 &lt;button class="cornhole-btn cornhole-reset-btn">Reset Round&lt;/button>
 &lt;/div>
 &lt;div class="cornhole-score-row">
 &lt;div class="cornhole-score-col">
 &lt;label class="cornhole-label" for="team2-current">Current Round&lt;/label>
 &lt;input class="cornhole-score-box" id="team2-current" type="text" value="0" readonly />
 &lt;/div>
 &lt;div class="cornhole-score-col">
 &lt;label class="cornhole-label" for="team2-overall">Overall Score&lt;/label>
 &lt;input class="cornhole-score-box" id="team2-overall" type="text" value="0" readonly />
 &lt;/div>
 &lt;/div>
 &lt;button class="cornhole-restart-btn">Restart Game&lt;/button>
 &lt;/div>
&lt;/div>
&lt;script>
document.addEventListener('DOMContentLoaded', function() {
 // Team 1
 const team1Current = document.getElementById('team1-current');
 const team1Overall = document.getElementById('team1-overall');
 const team1Btns = document.querySelectorAll('.team1 .cornhole-btn');
 const team1Reset = document.querySelector('.team1 .cornhole-reset-btn');

 // Team 2
 const team2Current = document.getElementById('team2-current');
 const team2Overall = document.getElementById('team2-overall');
 const team2Btns = document.querySelectorAll('.team2 .cornhole-btn');
 const team2Reset = document.querySelector('.team2 .cornhole-reset-btn');

 // End Round &amp; Restart
 const endRoundBtn = document.querySelector('.cornhole-end-round-btn');
 const restartBtn = document.querySelector('.cornhole-restart-btn');

 // Team 1: +1, +3
 team1Btns.forEach(btn => {
 if (btn.textContent === '+1') {
 btn.addEventListener('click', () => {
 team1Current.value = parseInt(team1Current.value, 10) + 1;
 });
 } else if (btn.textContent === '+3') {
 btn.addEventListener('click', () => {
 team1Current.value = parseInt(team1Current.value, 10) + 3;
 });
 }
 });
 // Team 1: Reset Round
 team1Reset.addEventListener('click', () => {
 team1Current.value = 0;
 });

 // Team 2: +1, +3
 team2Btns.forEach(btn => {
 if (btn.textContent === '+1') {
 btn.addEventListener('click', () => {
 team2Current.value = parseInt(team2Current.value, 10) + 1;
 });
 } else if (btn.textContent === '+3') {
 btn.addEventListener('click', () => {
 team2Current.value = parseInt(team2Current.value, 10) + 3;
 });
 }
 });
 // Team 2: Reset Round
 team2Reset.addEventListener('click', () => {
 team2Current.value = 0;
 });

 // End Round logic
 endRoundBtn.addEventListener('click', () => {
 const t1 = parseInt(team1Current.value, 10);
 const t2 = parseInt(team2Current.value, 10);
 if (t1 === t2) {
 // Tie: no points awarded
 } else if (t1 > t2) {
 team1Overall.value = parseInt(team1Overall.value, 10) + (t1 - t2);
 } else {
 team2Overall.value = parseInt(team2Overall.value, 10) + (t2 - t1);
 }
 team1Current.value = 0;
 team2Current.value = 0;
 });

 // Restart Game logic
 restartBtn.addEventListener('click', () => {
 team1Current.value = 0;
 team2Current.value = 0;
 team1Overall.value = 0;
 team2Overall.value = 0;
 });
});
&lt;/script></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/code/cornhole/featured.jpg"/></item><item><title>Shirts</title><link>http://stringsandtines.com/apparel/shirts/</link><pubDate>Wed, 02 Jul 2025 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/apparel/shirts/</guid><description>&lt;p>My wife got a Cricut to make various crafts. I discovered that you can buy vinyl sheets that adhere to fabric with heat&amp;hellip;basically an iron-on but a bit better quality. After getting the bug to make shirts I discovered sublimation printing, which lets you use a printer and special inks to make more intricate designs. Here are the shirts I have made.&lt;/p>

&lt;h2 class="relative group">Cricut Vynil
 &lt;div id="cricut-vynil" class="anchor">&lt;/div>
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#cricut-vynil" aria-label="Anchor">#&lt;/a>
 &lt;/span>
 
&lt;/h2>
&lt;p>I could just buy a shirt with the name of my kids&amp;rsquo; school sports teams, or I could make my own mimicking the Thrasher magazine logo. You won&amp;rsquo;t be surprised to learn which option I went with.
&lt;figure>&lt;img src="http://stringsandtines.com/apparel/shirts/Brockport.jpg">
&lt;/figure>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/apparel/shirts/featured.jpg"/></item><item><title>Wood Projects</title><link>http://stringsandtines.com/woodworking/woodprojects/</link><pubDate>Sun, 01 Jun 2025 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/woodworking/woodprojects/</guid><description>&lt;p>Here are various wood projects I have made.&lt;/p>
&lt;p>I used a bunch of scrap wood to make this wall protector or our dartboard. Though I should have made it 10 feet on each side, because that&amp;rsquo;s how bad we are at darts.
&lt;figure>&lt;img src="http://stringsandtines.com/woodworking/woodprojects/featured.jpg"
 alt="Wall protector for dart board. Added holes to store the darts">&lt;figcaption>
 &lt;p>Wall protector for dart board. Added holes to store the darts&lt;/p>
 &lt;/figcaption>
&lt;/figure>
&lt;/p>
&lt;p>A skateboard that was really popular in the 80&amp;rsquo;s was the Vision Psycho Stick. My daughter painted this with paint pens on a random skateboard.
&lt;figure>&lt;img src="http://stringsandtines.com/woodworking/woodprojects/psychostick.jpg"
 alt="Psycho Stick skateboard">&lt;figcaption>
 &lt;p>Psycho Stick skateboard&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/woodworking/woodprojects/featured.jpg"/></item><item><title>Woodburning</title><link>http://stringsandtines.com/woodworking/woodburning/</link><pubDate>Sun, 01 Jun 2025 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/woodworking/woodburning/</guid><description>&lt;p>Here are various woodburning projects.&lt;/p>
&lt;p>I made this sign from the seat of an old chair. It hangs at our site when we go camping
&lt;figure>&lt;img src="http://stringsandtines.com/woodworking/woodburning/featured.jpg"
 alt="Camping sign">&lt;figcaption>
 &lt;p>Camping sign&lt;/p>
 &lt;/figcaption>
&lt;/figure>
&lt;/p>
&lt;p>Growing up in the 80&amp;rsquo;s I always wanted this Zorlac Metallica skateboard with art by Pushead. So I made my own!
&lt;figure>&lt;img src="http://stringsandtines.com/woodworking/woodburning/MetallicaSkateboard.jpg"
 alt="Metallica skateboard">&lt;figcaption>
 &lt;p>Metallica skateboard&lt;/p>
 &lt;/figcaption>
&lt;/figure>
&lt;/p>
&lt;p>This is my first attempt at woodburning. Already had the Strings and Tines branding thought out.
&lt;figure>&lt;img src="http://stringsandtines.com/woodworking/woodburning/StringsAndTinesSkateboard.jpg"
 alt="Strings and Tines skateboard">&lt;figcaption>
 &lt;p>Strings and Tines skateboard&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/woodworking/woodburning/featured.jpg"/></item><item><title>LED Macro Pad</title><link>http://stringsandtines.com/electronics/legomacropad/</link><pubDate>Fri, 31 Jan 2025 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/electronics/legomacropad/</guid><description>&lt;p>Macro Pads are great for running programs or performing other actions at the touch of a button. They sell some on Amazon, but from the reviews I didn&amp;rsquo;t get the impression that I could do a lot of customizing, particularly on Linux, which is where I wanted to use one. So I made one with a Teensy microcontroller, 6 buttons and a rotary encoder to control the volume. You can get a copy of the code in my &lt;a href="https://github.com/alexllama/MacroPad" target="_blank" rel="noreferrer">GitHub repo&lt;/a>.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/electronics/legomacropad/featured.jpg"/></item><item><title>Casio AE-1300 mod</title><link>http://stringsandtines.com/apparel/watchmods/ae1300/</link><pubDate>Sat, 11 Jan 2025 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/apparel/watchmods/ae1300/</guid><description>&lt;p>I got this watch as a gift from my grandkids for Christmas 2024. The only mod I did was to erase all the lettering on the case and faceplate except for the word Casio, just like I did for my &lt;a href="http://stringsandtines.com/apparel/watchmods/casioroyale/" >Casio Royale&lt;/a> mod. Fun fact, the two watches have modules that are the same size and cases that are the same shape, so you can swap them around for an additional mod.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/apparel/watchmods/ae1300/featured.jpg"/></item><item><title>The Printable Watch</title><link>http://stringsandtines.com/apparel/watchmods/printablewatch/</link><pubDate>Mon, 06 Jan 2025 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/apparel/watchmods/printablewatch/</guid><description>&lt;p>I found this website &lt;a href="https://theprintablewatch.com/" target="_blank" rel="noreferrer">The Printable Watch&lt;/a> that offers files you can download and print your own watch case. I thought this was the coolest idea, and bought a whole kit.&lt;/p>
&lt;p>I don&amp;rsquo;t have a 3D printer, so I hired &lt;a href="https://www.youtube.com/@ConnorTheMaker" target="_blank" rel="noreferrer">Connor The Maker&lt;/a> to print it for me. I had met him at the Rochester Maker Faire, where he was displaying projects he had made. He was a student at the Rochester Institute of Technology and had started this 3D printing side business, so I was happy to help out a young engineering student.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/apparel/watchmods/printablewatch/featured.jpg"/></item><item><title>Command Center</title><link>http://stringsandtines.com/electronics/commandcenter/</link><pubDate>Wed, 01 Jan 2025 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/electronics/commandcenter/</guid><description>&lt;h2 class="relative group">Introduction
 &lt;div id="introduction" class="anchor">&lt;/div>
 
 &lt;span
 class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
 &lt;a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#introduction" aria-label="Anchor">#&lt;/a>
 &lt;/span>
 
&lt;/h2>
&lt;p>Being a parent of teenagers means there are a lot of activities to coordinate. I always wanted an interactive calendar to hang on the wall so my wife and I could have a real time view of what activities were happening on any particular day. I had looked online for pre-built options, but they were way too expensive. So I decided to make my own!&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/electronics/commandcenter/featured.jpg"/></item><item><title>Info Orbs</title><link>http://stringsandtines.com/electronics/infoorbs/</link><pubDate>Fri, 20 Dec 2024 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/electronics/infoorbs/</guid><description>&lt;p>As soon as I saw this Info Orbs &lt;a href="https://brett.tech/collections/electronics-projects/products/info-orbs-full-dev-kit" target="_blank" rel="noreferrer">kit&lt;/a> by Brett.tech, I wanted to get it. Not only does it look cool, but you get to put it together. Also, you can code just about anything you want to add to the display. Powered by a ESP32 microcontroller, it displays the weather, stock info, and a clock in a couple of styles. So far I have made a couple of custom clocks, but am looking forward to digging into the code to make other data displays.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/electronics/infoorbs/featured.jpg"/></item><item><title>Solarcan</title><link>http://stringsandtines.com/photography/solarcan/</link><pubDate>Sat, 14 Dec 2024 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/photography/solarcan/</guid><description>&lt;p>Technically I didn&amp;rsquo;t make this camera, but I like the process of taking the picture. The Solarcan is essentially a pinhole camera that you set up for a long period of time to capture the sun&amp;rsquo;s path across the sky each day. You basically mount it somewhere and remove the small piece of tape covering the pinhole. This starts the exposure. After the desired length of time, you cover the pinhole and take it down. Then you scan the paper since the exposure will continue to happen as long as light hits the paper. I did tweak the contrast a bit in GIMP to make the dark parts darker.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/photography/solarcan/featured.jpg"/></item><item><title>Alexa Lamp</title><link>http://stringsandtines.com/electronics/alexalamp/</link><pubDate>Sun, 10 Nov 2024 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/electronics/alexalamp/</guid><description>&lt;p>I had this Alexa smart speaker (first gen I think) that would no longer work. I thought it would make a cool lamp, so I gutted it and added a LED lamp inside. I softened the light coming out a bit by adding some difusser I got from taking apart an old TV over the grid portion of the lamp. I also added rubber feet to keep it raised a bit, which casts a glow under the lamp. It&amp;rsquo;s not going to light up the whole room, but it acts as a nice accent piece.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/electronics/alexalamp/featured.jpg"/></item><item><title>Casio Tide Moon Graph gel mods</title><link>http://stringsandtines.com/apparel/watchmods/tidemoongraph/</link><pubDate>Mon, 28 Oct 2024 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/apparel/watchmods/tidemoongraph/</guid><description>&lt;p>Continuing with my obsession with modifying cheap Casio digital watches, I found this one at Walmart.
&lt;figure>&lt;img src="http://stringsandtines.com/apparel/watchmods/tidemoongraph/tmgwalmart.jpg"
 alt="What a steal!">&lt;figcaption>
 &lt;p>What a steal!&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/apparel/watchmods/tidemoongraph/tmgorig.jpg"
 alt="Casio loves printing words on their watches">&lt;figcaption>
 &lt;p>Casio loves printing words on their watches&lt;/p>
 &lt;/figcaption>
&lt;/figure>
&lt;/p>
&lt;p>After getting it home I realized that most of the lettering on the case was embossed, so I would not be able to erase it with my trusty white eraser. I did get the words on the top and bottom to come off, but they left behind a shadow of the lettering.
&lt;figure>&lt;img src="http://stringsandtines.com/apparel/watchmods/tidemoongraph/tmgfinal.jpg"
 alt="Slightly less words on the case">&lt;figcaption>
 &lt;p>Slightly less words on the case&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/apparel/watchmods/tidemoongraph/featured.jpg"/></item><item><title>Casio Royale Negative mod plus Logo</title><link>http://stringsandtines.com/apparel/watchmods/casioroyale/</link><pubDate>Sun, 13 Oct 2024 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/apparel/watchmods/casioroyale/</guid><description>&lt;p>I got interested in the Casio digital watch modifying scene after seeing a YouTube video by Adam Savage where he showed one of these Casio Royale (model AE-1200) watches that was modded to have a NASA theme. I had not worn a watch in over a decade, but immediately became fascinated with this hobby. You mean I can open up this watch and change what it looks like? Sign me up! Here&amp;rsquo;s what the watch looks like out of the box:
&lt;figure>&lt;img src="http://stringsandtines.com/apparel/watchmods/casioroyale/casioroyaleoriginal.jpg"
 alt="So much text!!!">&lt;figcaption>
 &lt;p>So much text!!!&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/apparel/watchmods/casioroyale/featured.jpg"/></item><item><title>Kodak Tourist Box Camera</title><link>http://stringsandtines.com/photography/kodaktouristboxcamera/</link><pubDate>Sun, 22 Sep 2024 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/photography/kodaktouristboxcamera/</guid><description>&lt;p>An old Kodak Tourist camera served as the inspiration for this project, its design featuring a direct, unobstructed path from lens to film plane. This inherent characteristic sparked an idea: could it capture images much like a &lt;a href="http://stringsandtines.com/photography/cardboardcamera/" >Cardboard Camera&lt;/a>?&lt;/p>
&lt;p>Instead of crafting another cardboard box, I looked for another container. An old silverware box proved to be the perfect candidate. Its contents removed, I painted the interior black to optimize light conditions. A precisely cut hole allows the camera to peek out of the box maintaining light-tightness as much as possible.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/photography/kodaktouristboxcamera/featured.jpg"/></item><item><title>Electronic Hang Drum</title><link>http://stringsandtines.com/instruments/handpans/electronichangdrum/</link><pubDate>Mon, 01 Jan 2024 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/handpans/electronichangdrum/</guid><description>&lt;p>I have loved the sound of the Hang Drum for quite some time. Having no interest in paying thousands of dollars for one, I thought about making an electronic version of one. My first attempt at it was years ago with an Arduino, but I ran into problems getting all the buttons to work. So I tucked the idea in a far corner of my brain. Recently I learned of a board called a &lt;a href="https://www.robertsonics.com/wav-trigger/" target="_blank" rel="noreferrer">WAV Trigger&lt;/a>, which essentially plays up to 16 sounds in WAV format, triggered by buttons. This was exactly what I needed! At that point my brain started thinking about how I could do it. We had this large bowl that my wife almost threw out. As soon as I saw it I knew it would be the perfect shape. I got some arcade buttons, a spare speaker from my collection of random speakers, a power supply harvested from an old sleep noise machine, and got to work on assembling it. To hold the lid with all the buttons in place I used two bourbon bottle stoppers and hair ties. I later added two additional stoppers (not pictured) since the top was moving around a lot. It was a bit more involved to get it done, but in the end I was very happy with the result. I got the Hang Drum samples from &lt;a href="https://www.darkarps.com/hang-drum-multisampled-instrument/" target="_blank" rel="noreferrer">Dark Arps&lt;/a>. There are 8 individual Hang Drum notes, plus a row of buttons at the bottom, which play background songs to play along with. On the top row there are Volume Up and Down buttons, and a red button which stops all the background tracks in case I want to pick a different one. And it has a headphone jack that shuts off the speaker when in use, in order not to annoy others around me.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/handpans/electronichangdrum/featured.jpg"/></item><item><title>Cardboard Camera</title><link>http://stringsandtines.com/photography/cardboardcamera/</link><pubDate>Sun, 31 Dec 2023 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/photography/cardboardcamera/</guid><description>&lt;p>This is a modification I made to the &lt;a href="http://stringsandtines.com/photography/scannercamera/" >Scanner Camera&lt;/a> when the scanner and laptop I was using for it died. Not wanting to throw it away, I removed the scanner and added a third box. The side of the box attached to the camera would hold a piece of parchment paper to act as the &amp;ldquo;film.&amp;rdquo; Then I just take a picture of the image on the paper with my cellphone. While not pictured here, I also added a lid for the back with a cutout to hold the cellphone. That reduces the amount of ambient light that can get into the box, washing out the image.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/photography/cardboardcamera/featured.jpg"/></item><item><title>Water Heater Hank Drum</title><link>http://stringsandtines.com/instruments/handpans/waterheaterhankdrum/</link><pubDate>Wed, 15 Nov 2023 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/handpans/waterheaterhankdrum/</guid><description>&lt;p>One day as I was doing a trash run while camping, I spotted this metal tank next to the dumpster. As soon as I saw it I knew I could make it into a Hank Drum (Hang + Tank = Hank). Typically these are made from empty propane tanks, and this tank had similar proportions. Undeterred by my wife’s eye rolling, I brought it home and began to work. I used an angle grinder to cut the top and bottom pieces, which I eventually glued together with JB Weld. The water heater has a couple of tubes inside it, and after cutting these out it left a hole on the side of the finished drum, which you wouldn’t see in a propane tank drum. I found a template online for where the tongues should go, marked them, then used a jigsaw to cut them out. To tune this instrument you have to slowly cut to make the tongues longer, which will lower the pitch. It’s not perfectly tuned, but is close enough. I finished by spray painting it black and splattered some other colors, gave it a few coats of clear coat and called it a day. The sound is quite metallic, so I added a bunch of paper towels to the inside to help mellow it out a bit.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/handpans/waterheaterhankdrum/featured.jpg"/></item><item><title>Woodburning, Stain and Sharpie</title><link>http://stringsandtines.com/instruments/guitars/woodburningstainsharpie/</link><pubDate>Sun, 29 Oct 2023 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/woodburningstainsharpie/</guid><description>&lt;p>I bought this guitar when the kids were little, and it had been sitting around for years in a corner somewhere. My daughter and I had sanded it down and taped off the fretboard and pick guard with the idea of painting it, but we never got around to it. I decided to take on the job myself by reproducing Hokusai’s “The Great Wave off Kanagawa” on it. Surely you have seen this painting…it’s the one of that huge wave and a couple of boats, with Mount Fuji in the background. I started by woodburning the outline for the whole thing. I determined that even though I had sanded it, I hadn’t done so enough to completely remove the clear coat, which made the woodburning difficult and uneven. I then got a stain pen and started coloring in the black parts of the image, but was also not thrilled with the results. So to finish it off I got a Sharpie and got to work. Once finished I gave it a few coats of Polyurethane, put everything back together and that was that.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/woodburningstainsharpie/featured.jpg"/></item><item><title>Lake Scraps Diddley Bow</title><link>http://stringsandtines.com/instruments/diddleybows/lakescraps/</link><pubDate>Sat, 23 Sep 2023 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/lakescraps/</guid><description>&lt;p>A friend of mine invited us to spend a long weekend at their lake house. While there I noticed that there was a lot of debris that would wash up on the shore. He knows I like to make instruments from reclaimed materials, so we went hunting for junk to make something out of. I saw this old rusty oil can, and the idea for this instrument was born. Everything I used for this diddley bow came from the lake, except for the string and the tuner. I wanted to add a piezo to it but didn’t want to cut into it, so I took a mint tin, added a piezo and jack to it, then attached it to the bottom of the oil can with a magnet. It picks up the sound ok, but this is really more of a wall piece and not so much for playing.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/lakescraps/featured.jpg"/></item><item><title>Lake scraps</title><link>http://stringsandtines.com/instruments/kalimbas/lakescraps/</link><pubDate>Sun, 27 Aug 2023 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/lakescraps/</guid><description>&lt;p>In the Diddle Bows section of this site you’ll find a diddley bow I made from scraps I found on the shore while visiting a friend’s lakehouse. I also picked up enough materials to make a kalimba. Only the screws and tines did not come from the lake. In fact the tines are made from the metal bars that make the notes on a toy piano.&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/0EFNxoFVX6E?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/lakescraps/2023-08-27-10.21.32.webp"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/lakescraps/featured.webp"/></item><item><title>Salad Bowl Lyre</title><link>http://stringsandtines.com/instruments/harps/saladbowllyre/</link><pubDate>Sat, 20 May 2023 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/harps/saladbowllyre/</guid><description>&lt;p>I got this idea from YouTube after being mesmerized by Tobias Kaye’s Sounding Bowl videos on YouTube. I just had to make one. It’s a simple project, just needed to find the right bowl. This particular bowl comes from Granville VT via my local Goodwill. I bought a set of 16 Lyre strings from Amazon but only used 12 of them, tuned as follows: E5 D5 C5 B4 A4 G4 F4 E4 D4 C4 B3 A3. The final product sounds fine but a bit thin in my opinion, but you tell me…&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/harps/saladbowllyre/featured.jpg"/></item><item><title>PVC Native American Flute</title><link>http://stringsandtines.com/instruments/miscinstruments/pvcnativeamericanflute/</link><pubDate>Sat, 06 May 2023 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/pvcnativeamericanflute/</guid><description>&lt;p>There&amp;rsquo;s plenty of people making these on the internet, and I finally got around to making one. Using a piece of 3/4&amp;quot; Schedule 40 PVC pipe that I had in my garage, I made this Native American style flute. It is tuned as follows: G4 A#4 C5 D5 D#5 F5 G5. I haven&amp;rsquo;t decided if I&amp;rsquo;m going to paint and decorate it, or leave it as is so you can tell it&amp;rsquo;s a piece of PVC. My laziness and interest in moving on to the next project tells me to leave it as is&amp;hellip;&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/pvcnativeamericanflute/featured.jpg"/></item><item><title>Binary Clock</title><link>http://stringsandtines.com/electronics/binaryclock/</link><pubDate>Mon, 02 Jan 2023 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/electronics/binaryclock/</guid><description>&lt;p>Binary clocks have always been fascinating to me. They display the time accurately, but you have to do a bit of mental math to determine the time. I had an Arduino and some LEDs laying around, as well as this box with a cute cat on the lid that I got at a thrift shop. So I rolled up my sleeves and got to work!&lt;/p>
&lt;figure>&lt;img src="http://stringsandtines.com/electronics/binaryclock/featured.jpg"
 alt="The finished product, showing 9:17 as the time">&lt;figcaption>
 &lt;p>The finished product, showing 9:17 as the time&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/electronics/binaryclock/featured.jpg"/></item><item><title>Cigar Box Clock</title><link>http://stringsandtines.com/electronics/cigarboxclock/</link><pubDate>Thu, 21 Jul 2022 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/electronics/cigarboxclock/</guid><description>&lt;p>Ok this is a quick one. I took a a cigar box and added a clock mechanism. That&amp;rsquo;s it.
&lt;figure>&lt;img src="http://stringsandtines.com/electronics/cigarboxclock/featured.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/electronics/cigarboxclock/2022-07-21%2018.50.12.jpg"
 alt="Another angle">&lt;figcaption>
 &lt;p>Another angle&lt;/p>
 &lt;/figcaption>
&lt;/figure>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/electronics/cigarboxclock/featured.jpg"/></item><item><title>Bed Warmer Dulcimer</title><link>http://stringsandtines.com/instruments/dulcimers/bedwarmer/</link><pubDate>Fri, 15 Jul 2022 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/dulcimers/bedwarmer/</guid><description>&lt;p>My son and I were walking around an antique store when we ran into this bed warmer hanging on the wall. I had no idea what it was at the time, but my son encouraged me to get it and make a guitar out of it. The round hollow body was just wide enough to fit a guitar neck, and I figured the brass body would resonate quite nicely. I was right! I decided to make a dulcimer out of it instead of a regular 3 string guitar, and I couldn’t be happier with how it turned out. I added a flat humbucker pickup on the inside, so it can be played through an amplifier.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/dulcimers/bedwarmer/featured.jpeg"/></item><item><title>PC Speaker System with LED Soundbar and Phone Charger</title><link>http://stringsandtines.com/gear/speakers/pcspeakersledcharger/</link><pubDate>Wed, 22 Jun 2022 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/speakers/pcspeakersledcharger/</guid><description>&lt;p>I had this old Cambridge Sound Works surround sound PC speaker system sitting in my closet for about 25 years, untouched. It includes four speakers, a subwoofer and a volume knob that all plug into an amplifier. It always sounded really well, but I had no use for it, and just hated to throw it out. Instead of tossing it into the landfill, I made a Bluetooth speaker that I now take with us when we go camping. The box is made from spare MDF I had lying around. I bought a Bluetooth transmitter/receiver that you would use in your car with an aux cable, and wired the output of that into the speakers. I always liked sound reactive LEDs, so I added an LED soundbar. And since I planned to use this outside for long periods of time, I added a wireless charger on top to me able to charge my phone while listening to music all day long. The best part is that everything is using off the shelf components connected into a power strip in the box. No soldering at all was required.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/speakers/pcspeakersledcharger/featured.jpg"/></item><item><title>Windchime from Junked Trampoline</title><link>http://stringsandtines.com/instruments/miscinstruments/windchimefromjunkedtrampoline/</link><pubDate>Tue, 01 Feb 2022 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/windchimefromjunkedtrampoline/</guid><description>&lt;p>At the beginning of 2022 our trampoline was thrown into our pond by a windstorm. It got bent to the point of being unusable, so I went ahead and made a windchime to hang in our backyard. 100% made from recycled components.&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/4LH67J7wOk?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/miscinstruments/windchimefromjunkedtrampoline/2022-02-01%2017.09.05.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/windchimefromjunkedtrampoline/featured.jpg"/></item><item><title>Sears Cassette Player Amp</title><link>http://stringsandtines.com/gear/amps/searscassetteplayeramp/</link><pubDate>Sun, 23 Jan 2022 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/amps/searscassetteplayeramp/</guid><description>&lt;p>Remember when Sears made cassette players? No? Well it turns out they did. And unbeknownst to them, they make great amps. These units have tone and volume control, and also a jack to plug them to an external speaker.&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/uUQU7sFoi0g?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/gear/amps/searscassetteplayeramp/2022-01-23%2008.20.47.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/amps/searscassetteplayeramp/2022-01-23%2008.20.56.jpg"
 alt="Yeah, Sears made cassette players">&lt;figcaption>
 &lt;p>Yeah, Sears made cassette players&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/amps/searscassetteplayeramp/featured.jpg"/></item><item><title>Bookshelf Speakers and Subwoofer</title><link>http://stringsandtines.com/gear/speakers/bookshelfspeakersandsubwoofer/</link><pubDate>Tue, 07 Dec 2021 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/speakers/bookshelfspeakersandsubwoofer/</guid><description>&lt;p>People will throw out all kinds of things because they don’t work anymore. For example, someone threw out a 10″ subwoofer, even though the speaker itself was intact. I had a pair of bookshelf speakers that were languishing in the basement, so I liberated them out of their enclosures, and built this box to hold them all. The box is mostly MDF, and the sides are plywood, because I ran out of MDF…all scraps from other projects. I got a bluetooth amp from Amazon which pumps out 50W per channel, plus 50W for the subwoofer. You can even tune the subwoofer frequency to reduce vibrations. I really like how this one came out and use it daily in my home office. I don’t think I have raised the volume more than 1/4 of the way given how loud it can get.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/speakers/bookshelfspeakersandsubwoofer/featured.jpg"/></item><item><title>La Palina Cigar Box</title><link>http://stringsandtines.com/instruments/ukuleles/lapalinacigarbox/</link><pubDate>Fri, 19 Nov 2021 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/ukuleles/lapalinacigarbox/</guid><description>&lt;p>I made this Uke as a gift for a good friend of ours. Her husband had given me a bunch of cigar boxes when he learned I liked to make instruments. As a thank you, I made them this Ukulele. She actually knows how to play the Ukulele so I was happy to make this one to add to her collection. The neck is made from a water ski that somebody threw away. I used a door strike plate to hold the strings, and the emergency key that comes with door knobs as the bridge. Scroll down for a few pictures from the build!&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/ukuleles/lapalinacigarbox/featured.jpeg"/></item><item><title>R.G. Dun Cigar Box Bluetooth Speaker</title><link>http://stringsandtines.com/gear/speakers/rgduncigarbox/</link><pubDate>Wed, 10 Nov 2021 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/speakers/rgduncigarbox/</guid><description>&lt;p>It’s amazing how small some of these bluetooth amps are that you can get online. Cheap too. I got this one for $15 and it is smaller than the remote that comes with it. I had an old flat screen TV that finally bit the dust, so I harvested the speakers to make this beauty. Truth be told it is not the best sounding sound system, but what do you want for $15…&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/speakers/rgduncigarbox/featured.jpeg"/></item><item><title>Salad Bowl Kora</title><link>http://stringsandtines.com/instruments/world/saladbowlkora/</link><pubDate>Sun, 10 Oct 2021 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/world/saladbowlkora/</guid><description>&lt;p>The Kora is a beautiful sounding instrument from West Africa. Traditionally it is made from a large gourd and has 21 strings made from fishing line. I was introduced to this instrument in the late 90’s when I first heard Toumani Diabaté, and never forgot his amazing playing style. I didn’t have access to a large guord, but I do have access to a Goodwill, and they had this wooden salad bowl that I thought would make a good body. The neck came from scrap wood that used to be a picture frame, and the bridge was made from scrap wood. I ended up using 12 strings instead of 21.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/world/saladbowlkora/featured.jpg"/></item><item><title>Wok Hand Pan</title><link>http://stringsandtines.com/instruments/handpans/wok/</link><pubDate>Sun, 22 Aug 2021 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/handpans/wok/</guid><description>&lt;p>I have wanted a Hang drum for a long time. However, they are quite expensive, so I keep looking for ways to make my own. I found a variation of this hand pan that uses tongues instead of the divots in the Hang drum, where people make them out of propane tanks. Not having a propane tank, nor the skills to cut and weld one of these tank drums, I instead opted to use an old steel wok. First I had to sand away the old faded paint, rust, and food particles accumulated over years of abuse. Then I cut the tongues with a jigsaw, not particularly tuning them to a specific scale. However, I like how it came out. You can play it with just your hands, or with rubber mallets. I made a couple by adding rubber bouncy balls to screwdrivers.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/handpans/wok/featured.jpeg"/></item><item><title>Cassetone</title><link>http://stringsandtines.com/instruments/miscinstruments/cassetone/</link><pubDate>Sun, 07 Mar 2021 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/cassetone/</guid><description>&lt;p>I saw Rich Bernett’s “The Sound of Machines” &lt;a href="https://www.youtube.com/watch?v=o1GdNkX1ewU" target="_blank" rel="noreferrer">YouTube video&lt;/a> where he came up with this thing called a Cassettone, I knew I had to make one. It is a variation on the Mellotron. Whereas the Mellotron has a separate piece of tape that plays a note for each key in the keyboard, this has one cassette player, and each key plays the tape at a different speed. The knobs are used to change the speed of the tape player. Then using a tape loop of a single knob, you can play different notes. I had a tape that was inside an old tape player I got at Goodwill at some point, so I used it for this experiment. I recorded a note from a keyboard for about a minute so I could play around with the notes. I didn’t have the patience to make a tape loop out of it. I added a jack so it could be played through an amp. It is supposed to disable the speaker when you plug in an audio cable. However, the jack was cheap garbage and once you plugged in a cable once, it never returned to the starting position, so I have an alligator clip holding it in place. I used an old record to make a plate for the knobs, and a jack plate for the 1/4″ jack.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/cassetone/featured.jpeg"/></item><item><title>Melodica with CPAP Machine</title><link>http://stringsandtines.com/instruments/miscinstruments/melodicawithcpapmachine/</link><pubDate>Fri, 01 Jan 2021 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/melodicawithcpapmachine/</guid><description>&lt;p>My father had this pianica (you may know it as a melodica) that he would play for us when we were kids in the 1970’s. When he passed away in 2020 I inherited it, and it is a treasured keepsake. I wanted to be able to play it, and kept thinking of ways to blow air into it without having to do it myself. I use a CPAP machine, and had a spare one, so one day it hit me…this would be the perfect machine to blow air into it…you can regulate the amount of air that it blows, and is whisper-quiet. Initially I just had the CPAP sitting next to the pianica, but eventually I built a box in which to keep the CPAP.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/melodicawithcpapmachine/featured.png"/></item><item><title>Longboard Koto</title><link>http://stringsandtines.com/instruments/world/longboardkoto/</link><pubDate>Sat, 26 Dec 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/world/longboardkoto/</guid><description>&lt;p>I found this skateboard that someone had thrown away. You could tell from the damage that it had not been moved in quite some time. Instead of letting it rot away, I took it home, cleaned it up a bit, and turned it into this Japanese Koto.&lt;/p>
&lt;p>Kotos typically have 21 strings, but there’s not enough room for that many strings on a longboard, so I settled for the highest pitched 10. These 10 strings add so much tension that I had to find some heavy duty brackets to keep the bar holding them down straight. Each string has its own bone bridge that I hand-shaped out of dog chew bones, using a belt sander. The tuning is done via zither pins, and the eye loops directing the strings to the pins are from the 1890’s piano I salvaged (I use these eye loops in quite a few projects documented on this website).&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/world/longboardkoto/featured.jpg"/></item><item><title>Christmas Tree</title><link>http://stringsandtines.com/instruments/kalimbas/christmastree/</link><pubDate>Fri, 27 Nov 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/christmastree/</guid><description>&lt;p>As I was throwing out the Christmas tree in 2020, I decided to keep a small piece of the tree and make a kalimba out of it.&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/christmastree/2022-02-20%2016.50.22.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/christmastree/2022-02-20%2016.50.30.jpg">
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/christmastree/20201127_161357.jpg"
 alt="Does that look like a face to you?">&lt;figcaption>
 &lt;p>Does that look like a face to you?&lt;/p>
 &lt;/figcaption>
&lt;/figure>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/christmastree/featured.jpg"/></item><item><title>Optical Tremolo Pedal v.2</title><link>http://stringsandtines.com/gear/pedals/opticaltremolopedalv2/</link><pubDate>Tue, 03 Nov 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/pedals/opticaltremolopedalv2/</guid><description>&lt;p>The first one of these I made used a photoresistor on the lid of the box, which was a bit clunky to use since it required a light source outside of the box to work. For version 2, I got myself a Digispark microcontroller and a knob to control an LED that would strobe in front of the photoresistor to pass the signal to the amp. I added a second LED to show the strobing speed to the user. This one is a bit easier to use&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/pedals/opticaltremolopedalv2/featured.jpg"/></item><item><title>Slides</title><link>http://stringsandtines.com/gear/slides/</link><pubDate>Tue, 03 Nov 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/slides/</guid><description>&lt;p>Here are pictures of various slides I have made throughout the years&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/gear/slides/2020-11-03%2006.34.18.jpg"
 alt="Another Ham Bone - 3 November 2020">&lt;figcaption>
 &lt;p>Another Ham Bone - 3 November 2020&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/slides/2020-09-19%2017.05.27-1.jpeg"
 alt="Noble Oak Bourbon - 19 September 2020">&lt;figcaption>
 &lt;p>Noble Oak Bourbon - 19 September 2020&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/slides/2020-08-30%2008.17.45.jpg"
 alt="Southern Tier Bourbon - 30 August 2020">&lt;figcaption>
 &lt;p>Southern Tier Bourbon - 30 August 2020&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/slides/2020-02-16%2008.44.22.jpg"
 alt="Iron Smoke Bourbon - 16 February 2020">&lt;figcaption>
 &lt;p>Iron Smoke Bourbon - 16 February 2020&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/slides/2018-04-07%2010.31.03.jpg"
 alt="Slide Display - 7 April 2018">&lt;figcaption>
 &lt;p>Slide Display - 7 April 2018&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/slides/featured.jpg"/></item><item><title>Zoom Mute Button</title><link>http://stringsandtines.com/electronics/zoommutebutton/</link><pubDate>Thu, 29 Oct 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/electronics/zoommutebutton/</guid><description>&lt;p>Zoom became the way to communicate with coworkers during the COVID pandemic in 2020. It quickly became apparent that there needed to be a way to mute yourself easily without having to navigate to the app and click the Mute button. Since this feature has a keyboard shortcut, it was easy to create a button to do this. I used a Digispark microcontroller. It&amp;rsquo;s very small and only a couple of bucks, so it was perfect for this. I added a red LED to indicate when Mute was enabled. As a bonus feature, holding the button down will drop from the meeting. You can see the code in my &lt;a href="https://github.com/alexllama/Zoom-Mute" target="_blank" rel="noreferrer">GitHub repo&lt;/a>.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/electronics/zoommutebutton/featured.jpg"/></item><item><title>Old Window Shutters Dulcimer</title><link>http://stringsandtines.com/instruments/dulcimers/oldwindowshutters/</link><pubDate>Sun, 04 Oct 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/dulcimers/oldwindowshutters/</guid><description>&lt;p>We got these old shutters from a neighbor with the intention of using them for decoration. However, they sat in the garage for a couple of years before we decided that wasn’t going to happen. So I quickly took a couple to make this dulcimer. I had an old plastic toy guitar I picked up at a thrift store, and ended up adding the piezo and volume control to the dulcimer so you can play it through an amp. The volume knob is the cap from a whiskey bottle. I added springs on the inside for reverb. The shutters are still functional, although they don’t affect the sound as I had hoped.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/dulcimers/oldwindowshutters/featured.jpeg"/></item><item><title>Super Sized Kalimba</title><link>http://stringsandtines.com/instruments/kalimbas/supersize/</link><pubDate>Sat, 03 Oct 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/supersize/</guid><description>&lt;p>A friend gave me a bunch of long, slightly curved wood slats he was going to throw away. I made a gigantic kalimba with them and a piece of plywood. It is more for show, as the tuning was not particularly easy to do.&lt;/p>
&lt;p>
 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/E1CM_iMPpTs?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>
 Trying it out with some piano hammers&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/supersize/featured.jpg"/></item><item><title>Another Touch Tone Phone</title><link>http://stringsandtines.com/gear/mics/anothertouchtonephone/</link><pubDate>Sat, 22 Aug 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/mics/anothertouchtonephone/</guid><description>&lt;p>Got this beige touch tone phone to make a mic for a friend (hi Tim!). The kids had to put it through a thorough test cycle before we shipped it out.&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/LS2pmT9fXLk?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/anothertouchtonephone/20200822_161750.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/anothertouchtonephone/2020-10-09%2020.26.42.jpg"
 alt="Taking it for a test drive">&lt;figcaption>
 &lt;p>Taking it for a test drive&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/mics/anothertouchtonephone/featured.jpg"/></item><item><title>Snap Circuits Amp</title><link>http://stringsandtines.com/gear/amps/snapcircuitsamp/</link><pubDate>Sat, 04 Apr 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/amps/snapcircuitsamp/</guid><description>&lt;p>Ok, this is a bit of an experiment. I wanted to see if I could build an amp from parts from a Snap Circuits. Turns out you can, but don’t expect to shake the walls when you play it.&lt;/p>
&lt;p>
 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/uXiH_vU1NSA?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>
 A needlessly elaborate Rick Roll&lt;/p>
&lt;figure>&lt;img src="http://stringsandtines.com/gear/amps/snapcircuitsamp/2020-04-04%2010.52.07.jpg"
 alt="Never gonna give up making silly instruments and amps">&lt;figcaption>
 &lt;p>Never gonna give up making silly instruments and amps&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/amps/snapcircuitsamp/featured.jpg"/></item><item><title>Melbourne Beach Driftwood</title><link>http://stringsandtines.com/instruments/kalimbas/melbournebeachdriftwood/</link><pubDate>Sat, 14 Mar 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/melbournebeachdriftwood/</guid><description>&lt;p>Found this gnarly chunk of wood at the beach while on vacation in Melbourne, FL and had to make a kalimba out of it…better than a postcard to remember the trip! In particular I liked the blue paint with the stripe down the front. I decided not to trim the tines to make it look a bit more messy.&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/melbournebeachdriftwood/2020-03-14%2008.28.22.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/melbournebeachdriftwood/2020-03-14%2009.22.07.jpg">
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/melbournebeachdriftwood/2020-03-14%2009.22.17.jpg">
&lt;/figure>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/melbournebeachdriftwood/featured.jpg"/></item><item><title>Octagonal Floor Sample</title><link>http://stringsandtines.com/instruments/kalimbas/octagonalfloorsample/</link><pubDate>Sat, 14 Mar 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/octagonalfloorsample/</guid><description>&lt;p>Lowes has these flooring samples that you can take with you to see how they might look in your house. Turns out you can also use them to make kalimbas. I cut this one into an octagon shape to make it look different. I used wiper blades for the tines and a piece of the tile to hold them in place.&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/T1hC8WV2_tA?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/octagonalfloorsample/2017-09-27%2023.20.05.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/octagonalfloorsample/featured.jpg"/></item><item><title>Gran Habano Cigar Box Amp</title><link>http://stringsandtines.com/gear/amps/granhabanocigarboxamp/</link><pubDate>Sun, 08 Mar 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/amps/granhabanocigarboxamp/</guid><description>&lt;p>This box is a beauty. I saw it at a cigar store in Key West and immediately knew I would make an amp out of it. The amp itself is made from a toy guitar and amp combo. The guitar was pretty much garbage, but the amp was definitely worth salvaging. Even the volume knob was red, which matched perfectly with the box. I ended up adding a second speaker to give it a bit more oomph.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/amps/granhabanocigarboxamp/featured.jpg"/></item><item><title>Coconut and Driftwood Harp</title><link>http://stringsandtines.com/instruments/harps/coconutanddriftwoodharp/</link><pubDate>Sun, 01 Mar 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/harps/coconutanddriftwoodharp/</guid><description>&lt;p>This one is more of a shelf piece than an actual instrument to play. I got the coconut and wood scraps while walking on the beach in Melbourne, FL and packed them in my suitcase so I could make an instrument out of them. The coconut cracked as I was putting it together from the tension, so they have just enough tension to look good.&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/harps/coconutanddriftwoodharp/2020-03-01%2021.31.56.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/harps/coconutanddriftwoodharp/featured.jpg"/></item><item><title>Windsor Radio Frankenamp</title><link>http://stringsandtines.com/gear/amps/windsorradiofrankenmp/</link><pubDate>Sun, 02 Feb 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/amps/windsorradiofrankenmp/</guid><description>&lt;p>I like this radio because it had the ability to tune into TV channels. However, I much prefer making amps out of cassette players. So I combined both…I got the circuitry from a cassette player and stuffed it inside this radio’s case. I connected the tuning knob to the circuit to get some interesting glitched out effects. The resulting amp sounds great, and looks great too!&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/Bxlu3e6TP2M?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/gear/amps/windsorradiofrankenmp/2020-02-02%2022.56.04.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/amps/windsorradiofrankenmp/featured.jpg"/></item><item><title>Toy Amp with Boo and Applause Buttons</title><link>http://stringsandtines.com/gear/pedals/toyampwithbooandapplausebuttons/</link><pubDate>Sat, 18 Jan 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/pedals/toyampwithbooandapplausebuttons/</guid><description>&lt;p>This one is a bit of a joke. I found this toy guitar/amp combo at Goodwill and of course had to get it to use for various projects. The amp showed some potential as a pedal, so I quickly took it apart to see what I could do with it. It features a button that plays a crowd applauding and cheering, and a second button that boos. A third button cycles through a few different, yet very repetitive beats for you to play along. And it has two separate line in connectors for a microphone and MP3 or other music source. It even has a light that changes color continuously and is quite bright. This lets you recreate the full experience of being in concert right at home!&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/pedals/toyampwithbooandapplausebuttons/featured.jpg"/></item><item><title>Kazoo</title><link>http://stringsandtines.com/instruments/miscinstruments/kazoo/</link><pubDate>Wed, 01 Jan 2020 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/kazoo/</guid><description>&lt;p>The question is not “why make a kazoo?” It is “Why NOT make a kazoo?” I made this from a paint stirrer I got at Home Depot and wax paper. It’s three layers: a top, a bottom, and sides, so that it is hollow in the middle. I actually messed up and made the tapered part in the wrong end. Your mouth goes near the port with wax paper, not the other side. Oh well, it works as good as you could expect a kazoo to work. Fun fact, you don’t blow into a kazoo, you hum into it to make the sound.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/kazoo/featured.jpg"/></item><item><title>H. Upmann Cigar Box Lyre</title><link>http://stringsandtines.com/instruments/harps/hupmanncigarboxlyre/</link><pubDate>Sun, 01 Dec 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/harps/hupmanncigarboxlyre/</guid><description>&lt;p>I got this box in a small cigar shop in the Miami airport. It is made entirely of wood, and is pretty solid. The bridge is made from flooring, and is made from a very hard wood whose name I forget. I got some Lyre strings and zither pins to make this instrument. I added a piezo under the bridge, so you can play it through an amp. The inserts that came with the box were in the turquoise color, so I used it to make a jack plate.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/harps/hupmanncigarboxlyre/featured.jpg"/></item><item><title>Flying V Guitar Made from 2x4's</title><link>http://stringsandtines.com/instruments/guitars/flyingv/</link><pubDate>Sat, 09 Nov 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/flyingv/</guid><description>&lt;p>You might be driving down the road, see a pile of 2 by 4’s that someone put by the curb and think nothing of it. I think “I’ll make a Flying V guitar from those!” After removing all the nails and scraping away bits of insulation, I cut and glued these slats together into a rough Flying V shape. Since I don’t have a planer or a router, it is not super flat, and I smoothed out the edges with a belt sander. I had purchased a set with two humbuckers, tone and volume knobs and selector switch, ditched the pickguard that came with it and made one from 1/8″ plywood. The fret markers are just spray paint. I used the lower pitched strings from an Ernie Ball Mammoth Slinky pack to get a loooow sound. This is a guitar for playing Doom Metal exclusively.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/flyingv/featured.jpg"/></item><item><title>Walkman Distortion Pedal</title><link>http://stringsandtines.com/gear/pedals/walkmandistortionpedal/</link><pubDate>Sun, 03 Nov 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/pedals/walkmandistortionpedal/</guid><description>&lt;p>Since you can make small amps out of cassette players, and they tend to give you a bit of overdrive, I figured you could make a pedal out of a walkman. Turns out that was a good assumption. Wiring a 3/4″ jack to the cassette head is all it takes, then take the headphone out and connect that to an amp and you are done. In this case the volume knob controls how much distortion you get out of the “pedal.” It’s a bit clunky because you also have to mess around with the volume on the amp to get a good sound, but I like the effect that this walkman makes.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/pedals/walkmandistortionpedal/featured.jpg"/></item><item><title>Seneca Lake Driftwood</title><link>http://stringsandtines.com/instruments/kalimbas/senecalakedriftwood/</link><pubDate>Sun, 06 Oct 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/senecalakedriftwood/</guid><description>&lt;p>I made this kalimba from a piece of wood my son pulled out of Seneca lake when we went on a Boy Scouts trip. I used wider than usual wiper blades for the tines, which gives it a deeper sound.&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/hPSUwQBlVnw?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/senecalakedriftwood/2019-10-06%2013.28.18.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/senecalakedriftwood/featured.jpg"/></item><item><title>Fisher Price Cassette Player Amp</title><link>http://stringsandtines.com/gear/amps/fisherpricecassetteplayeramp/</link><pubDate>Thu, 04 Jul 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/amps/fisherpricecassetteplayeramp/</guid><description>&lt;p>This one is even goofier looking than the &lt;a href="http://stringsandtines.com/gear/amps/fisherprice826cassetteplayeramp/" >Fisher Price 826 Cassette Player Amp&lt;/a> I made previously. The mic on this one works too, so you can sing along while you rock out!&lt;/p>
&lt;p>
 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/HiEuE8Ka2NI?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>


 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/cLpm0lOALlw?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/amps/fisherpricecassetteplayeramp/featured.jpg"/></item><item><title>Driftwood from Babcock Hovey</title><link>http://stringsandtines.com/instruments/diddleybows/driftwoodfrombabcockhovey/</link><pubDate>Sat, 29 Jun 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/driftwoodfrombabcockhovey/</guid><description>&lt;p>My son was in Boy Scouts for a couple of years, and we went to a weekend camping trip at their Babcock Hovey Scout Camp in September, 2018. On our way to dig for fossils by the lake, I saw this piece of driftwood that looked perfect for a diddley bow. We pulled it out of the water, and found two rocks that would work perfectly as the bridge and nut. I added a thin humbucker pickup so it can be played via an amp. To commemorate the experience, I woodburned the date of the camping trip. This made for a great souvenir!&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/driftwoodfrombabcockhovey/featured.jpeg"/></item><item><title>Nintendo Arduino Keytar</title><link>http://stringsandtines.com/instruments/miscinstruments/nintendokeytarwitharduino/</link><pubDate>Sat, 29 Jun 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/nintendokeytarwitharduino/</guid><description>&lt;p>While browsing through Cigar Box Guitar groups on Facebook, I kept coming across this post about a NES that had been turned into a 6 string guitar. I thought it was the coolest idea, and decided I wanted to make one. But then I thought…this has already been done. What else can I do with it? I had also been thinking about making an instrument with an Arduino, and bam! an idea was born. What if I created an instrument that looked like a guitar, with the NES as the body, but made the sounds with an Arduino?&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/nintendokeytarwitharduino/featured.JPG"/></item><item><title>Dutch Masters Cigar Box Ukulele</title><link>http://stringsandtines.com/instruments/ukuleles/dutchmasterscigarbox/</link><pubDate>Sun, 16 Jun 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/ukuleles/dutchmasterscigarbox/</guid><description>&lt;p>I made this Uke as a gift for my brother in law, who is a chef. I wanted to add a couple of kitchen touches, so the bridge is made from a spatula handle, the strings are held in place by a leaf from a vegetable steamer, and the sound hole has a cheese grater as its cover. The neck was made from butcher block scrap wood.&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/ukuleles/dutchmasterscigarbox/2019-06-16%2012.18.47-1.jpeg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/ukuleles/dutchmasterscigarbox/featured.jpg"/></item><item><title>PC Speakers and Woodworking Kit Box Amp</title><link>http://stringsandtines.com/gear/amps/pcspeakersandwoodworkingkitboxamp/</link><pubDate>Tue, 04 Jun 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/amps/pcspeakersandwoodworkingkitboxamp/</guid><description>&lt;p>We bought our kids these woodworking kits…basically a wood box with a bunch of random cuts of wood so they can start building their woodworking skills. You can imagine what my first thought was when I saw the box :)&lt;/p>
&lt;p>
 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/Iudf6Pb0KKY?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>


 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/0SQshLSMNso?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/amps/pcspeakersandwoodworkingkitboxamp/featured.jpeg"/></item><item><title>Phone Speaker in Fan Case</title><link>http://stringsandtines.com/gear/mics/phonespeakerinfancase/</link><pubDate>Wed, 15 May 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/mics/phonespeakerinfancase/</guid><description>&lt;p>I’ve made a few microphones from landline phone speakers, but wanted to try something different. I had an old fan that didn’t work anymore, so I took it apart. The phone speaker fit perfectly, and now it has an old-timey microphone look.&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/phonespeakerinfancase/2019-05-16%2007.13.57.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/phonespeakerinfancase/2019-05-16%2007.13.57-1.jpg">
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/phonespeakerinfancase/2019-05-16%2007.13.57-2.jpg">
&lt;/figure>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/mics/phonespeakerinfancase/featured.jpg"/></item><item><title>DIY Guitar Pickup</title><link>http://stringsandtines.com/instruments/miscinstruments/diyguitarpickup/</link><pubDate>Tue, 14 May 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/diyguitarpickup/</guid><description>&lt;p>This is more of a test to see if I could make a guitar pickup. I took a motor out of a fan to make a &lt;a href="http://stringsandtines.com/instruments/mics/phonespeakerinfancase" >microphone&lt;/a>, and kept the coil. I then took a piece of copper wire and wrapped it around the coil, and added a couple of neodymium magnets. Then I hooked up a 1/4″ jack and tested it out. It worked! The sound was very low though, so not likely to use this in an instrument…but it worked!&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/diyguitarpickup/featured.jpg"/></item><item><title>Optical Tremolo Pedal v.1</title><link>http://stringsandtines.com/gear/pedals/opticaltremolov1/</link><pubDate>Sun, 03 Mar 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/pedals/opticaltremolov1/</guid><description>&lt;p>This tremolo pedal relies on a photoresistor on the lid of the box to pass the signal to the amp. I used a strobing app on my phone flashing right on the photoresistor to control the tremolo effect. This was my first attempt at making one of these types of pedals. While cool, it’s not very convenient, since you have to have a light source to control the effect. It does, however, give you the ability to play around with the effect a bit more.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/pedals/opticaltremolov1/featured.jpg"/></item><item><title>PC Speakers Cigar Box Amp</title><link>http://stringsandtines.com/gear/amps/pcspeakerscigarboxamp/</link><pubDate>Sat, 02 Mar 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/amps/pcspeakerscigarboxamp/</guid><description>&lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/XZawba_QHmw?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/gear/amps/pcspeakerscigarboxamp/2019-03-02%2011.11.15.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/amps/pcspeakerscigarboxamp/2019-03-02%2011.11.41.jpg"
 alt="Someone stored nuts in this cigar box at some point, evidently">&lt;figcaption>
 &lt;p>Someone stored nuts in this cigar box at some point, evidently&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/amps/pcspeakerscigarboxamp/2019-03-02%2011.11.54.jpg"
 alt="Old drawer pull">&lt;figcaption>
 &lt;p>Old drawer pull&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/amps/pcspeakerscigarboxamp/2019-03-02%2011.12.19.jpg"
 alt="Nothing says quality like using rubber bands to keep the lid shut">&lt;figcaption>
 &lt;p>Nothing says quality like using rubber bands to keep the lid shut&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/amps/pcspeakerscigarboxamp/featured.jpg"/></item><item><title>Soundesign Radio Amp</title><link>http://stringsandtines.com/gear/amps/soundesignradioamp/</link><pubDate>Sat, 02 Mar 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/amps/soundesignradioamp/</guid><description>&lt;p>Here’s another one that I made from an old Soundesign radio. The 1/4″ jack is connected to the volume pot, so you can play along with the radio.&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/EjVIV32_HBk?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/amps/soundesignradioamp/sounddesignamp.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/amps/soundesignradioamp/featured.jpg"/></item><item><title>80’s Transparent Touch Tone Phone Microphone</title><link>http://stringsandtines.com/gear/mics/80stransparenttouchtonephone/</link><pubDate>Sat, 16 Feb 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/mics/80stransparenttouchtonephone/</guid><description>&lt;p>You know you are an 80’s kid if you had one of these transparent touch tone phones.&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/E48B1ib8mxw?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/80stransparenttouchtonephone/2019-02-16%2015.22.16.jpg"
 alt="My son the crooner">&lt;figcaption>
 &lt;p>My son the crooner&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/80stransparenttouchtonephone/2019-02-16%2015.22.23.jpg"
 alt="Very little sass on this one…">&lt;figcaption>
 &lt;p>Very little sass on this one…&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/80stransparenttouchtonephone/2019-02-16%2015.25.55.jpg">
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/80stransparenttouchtonephone/2019-02-16%2015.26.01.jpg">
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/80stransparenttouchtonephone/2019-02-16%2015.25.44.jpg">
&lt;/figure>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/mics/80stransparenttouchtonephone/featured.jpg"/></item><item><title>Touch Tone Phone</title><link>http://stringsandtines.com/gear/mics/touchtonephone/</link><pubDate>Fri, 15 Feb 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/mics/touchtonephone/</guid><description>&lt;p>This is the first mic I made from an old touch tone phone. You speak into the phone’s speaker, which works great as a mic, with a great lo-fi sound. I put the speaker in the mouthpiece so you can speak into it like a regular phone. Ever wonder what one looks like from the inside? Here you go!&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/wRQI8p8eAVg?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/touchtonephone/2019-02-15%2019.57.07.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/mics/touchtonephone/featured.jpg"/></item><item><title>Acid Cigar Box Amp</title><link>http://stringsandtines.com/gear/amps/acidcigarboxamp/</link><pubDate>Sun, 10 Feb 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/amps/acidcigarboxamp/</guid><description>&lt;p>Just about everyone that makes amps uses an Acid cigar box at some point, and here’s my attempt at it. These boxes are pretty sturdy and roomy, so they are perfect for making an amp. The speaker and grill came from a big speaker I found on the side of the road…the kind that was about 3 feet tall and would be part of the furniture in people’s homes in the 80’s. This was the grill for the mid-range. I used an amp kit I bought online. It’s not very loud, but I got to solder, so it was fun to put together. Great starter project.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/amps/acidcigarboxamp/featured.jpg"/></item><item><title>Windchime Keyboard</title><link>http://stringsandtines.com/instruments/miscinstruments/windchimekeyboard/</link><pubDate>Sun, 27 Jan 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/windchimekeyboard/</guid><description>&lt;p>This one came from an idea my daughter had. I was building a &lt;a href="http://stringsandtines.com/otherprojects/noisebox" >noise box&lt;/a> which has a hard drive platter attached to a springy door stop. She thought it would work well to use a hair beret to strike the platter. When we tried it, the sound was pretty good. After she came up with that idea, I thought about making an entire keyboard with hair berets, each of which would strike a pipe from a windchime.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/windchimekeyboard/featured.jpg"/></item><item><title>Noise Box</title><link>http://stringsandtines.com/instruments/miscinstruments/noisebox/</link><pubDate>Sun, 20 Jan 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/noisebox/</guid><description>&lt;p>I wanted to make a noise box for my kids to play with. This one has all kinds of junk on it, including a hard drive platter that I mounted on a springy doorstopper, which is hit when you flick a hair beret at it (my daughter’s idea). There’s also a comb, some rubber bands, a few springs and beer caps. To make the thing even more annoying, I added a piezo (contact mic) on the inside so that you can plug it into an amp and really annoy everyone around you!&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/noisebox/featured.jpg"/></item><item><title>Boy Scouts Popcorn Tin Chugger</title><link>http://stringsandtines.com/instruments/guitars/boyscoutspopcorntinchugger/</link><pubDate>Sat, 19 Jan 2019 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/boyscoutspopcorntinchugger/</guid><description>&lt;p>My son was in Boy Scouts for a few years. As you probably know, Boy Scouts sell popcorn to raise funds for their troop. Ours was no exception, so every year we went to Walmart and stood outside their doors selling popcorn. One year I decided to make a chugger (2 string guitar) out of one of the popcorn tins we were selling, then bring it with us to play while we sold popcorn. To make it stand out a bit, I woodburned the word “POPCORN!” on the neck. None of us know how to play guitar, so I think we ended up mostly annoying people as they walked by, giving us puzzled looks.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/boyscoutspopcorntinchugger/featured.jpg"/></item><item><title>Romeo y Julieta Cigar Box Dulcimer</title><link>http://stringsandtines.com/instruments/dulcimers/romeoyjulietacigarbox/</link><pubDate>Sun, 16 Dec 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/dulcimers/romeoyjulietacigarbox/</guid><description>&lt;p>This dulcimer was a present for my mother for Christmas 2018. She had found this great Romeo y Julieta wooden box and asked me to make a guitar out of it. The string holder is a leaf from a vegetable steamer, and the sound hole is a drain cover. I went with a full set of frets instead of the typical diatonic dulcimer frets, both for the look but also for the versatility of having all the frets in the chromatic scale.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/dulcimers/romeoyjulietacigarbox/featured.jpg"/></item><item><title>Dogbowl Resonator Guitar</title><link>http://stringsandtines.com/instruments/guitars/dogbowlresonator/</link><pubDate>Wed, 12 Dec 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/dogbowlresonator/</guid><description>&lt;p>It was so much fun to make this guitar. I love how the dog bowl gives the guitar a metallic tone, sounding a bit like a banjo. For the stain, I used a Japanese technique called Shou Sugi Ban, which involved charring the wood with fire (yes, fire!), then applying a thin coat of stain. The wood grain will burn at different rates and you end up with this great look. It worked better on the sides than the top and back, since those are plywood. For the neck, I made stain by putting steel wool in a jar with vinegar, then left it until it dissolved the steel wool. Different woods stain at different rates, which you can tell by looking at the neck where it meets the body.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/dogbowlresonator/featured.jpg"/></item><item><title>Motorized Pilsner Urquell Beer Tin Diddley Bow</title><link>http://stringsandtines.com/instruments/diddleybows/motorizedpilsnerurquellbeertin/</link><pubDate>Sun, 14 Oct 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/motorizedpilsnerurquellbeertin/</guid><description>&lt;p>After making a handcranked &lt;a href="http://stringsandtines.com/instruments/dulcimers/hurdygurdydulcimermashup/" >Hurdy Gurdy Dulcimer mashup&lt;/a>, and a &lt;a href="http://stringsandtines.com/instruments/diddleybows/optimocigarboxwithfishingreel/" >Optimo Cigar Box Diddley Bow with Fishing Reel&lt;/a> to do the strumming, I thought…”why am I doing the cranking myself? I should automate this.” So I made this thing. I used a Pilsner Urquell beer lunchbox and added a small motor from an old toy. I glued a couple of wires to it, just long enough to hit the single string. To keep the beer theme going I used a bottle opener as the tailpiece. It sounds pretty terrible to be honest, watch the video and judge for yourself.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/motorizedpilsnerurquellbeertin/featured.jpg"/></item><item><title>Guitar Picks</title><link>http://stringsandtines.com/instruments/miscinstruments/guitarpicks/</link><pubDate>Fri, 12 Oct 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/guitarpicks/</guid><description>&lt;p>A few guitar pics I have made&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/miscinstruments/guitarpicks/2018-10-12%2022.59.55.jpg"
 alt="Bone pick">&lt;figcaption>
 &lt;p>Bone pick&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/miscinstruments/guitarpicks/canadiancoin.jpg"
 alt="Canadian coin">&lt;figcaption>
 &lt;p>Canadian coin&lt;/p>
 &lt;/figcaption>
&lt;/figure>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/guitarpicks/featured.jpg"/></item><item><title>Bowls Resonator Guitar</title><link>http://stringsandtines.com/instruments/guitars/bowlsresonator/</link><pubDate>Sat, 08 Sep 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/bowlsresonator/</guid><description>&lt;p>A friend of mine gave me this guitar, so I decided to experiment and make a resonator guitar with a couple of metal bowls, one inside the other. One of the tuners was broken, so this became a 5 string guitar. Just like Keith Richards plays! I had to add a bunch of reinforcements to the inside of the guitar so the pressure of the strings didn’t crush the bowl into the back of the guitar. For the bridge, I used the “puck” from a windchime. For the string holder, I used a drawer pull. When I was done I noticed the strings were not taut enough, so I added an aluminum bar to put more pressure on them. Doesn’t look great, but does the job.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/bowlsresonator/featured.jpg"/></item><item><title>GE AM/FM Radio Amp</title><link>http://stringsandtines.com/gear/amps/geradioamp/</link><pubDate>Sun, 26 Aug 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/amps/geradioamp/</guid><description>&lt;p>When making an amp out of a radio that doesn’t have a cassette player, you have to solder the 1/4″ jack to the volume pot. You can play along with the radio, but if you want to play just the guitar you still hear the radio interference, so it doesn’t sound as good.&lt;/p>
&lt;p>
 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/OCBvNM9XB9E?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>


 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/YntmXzkECSk?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/amps/geradioamp/featured.jpg"/></item><item><title>Fisher Price 826 Cassette Player Amp</title><link>http://stringsandtines.com/gear/amps/fisherprice826cassetteplayeramp/</link><pubDate>Sun, 19 Aug 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/amps/fisherprice826cassetteplayeramp/</guid><description>&lt;p>This is the one that started my obsession with making amps out of cassette players. It’s very easy to do. All you need is to wire up a 1/4″ jack to the positive end of the cassette head and to ground. That’s it! You can hunt around on the circuit board until you find the right point to solder, which is what I did here.&lt;/p>
&lt;p>Plus, they tend to overdrive, so the sound that comes out of it is distorted, great for playing blues or rock. You have to press Play for it to work, which gets a chuckle every time. I ended up selling this one, and have regretted it every since. Going to have to get another one.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/amps/fisherprice826cassetteplayeramp/featured.jpg"/></item><item><title>Camacho Cigar Box</title><link>http://stringsandtines.com/instruments/guitars/camachocigarbox/</link><pubDate>Sat, 04 Aug 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/camachocigarbox/</guid><description>&lt;p>This is one of my favorites. It was my first attempt at making a guitar that looked “finished”, and is the first guitar I made with electric pickups. The box itself is beautiful. These Camacho boxes are popular for guitars because they have such a nice glossy finish. They are also very sturdy. I used a humbucker pickup, so the sound is clean. I added tone and volume pots, and matching silver hardware. This is one I go back to often when I want to noodle.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/camachocigarbox/featured.jpg"/></item><item><title>Cookie Tin with Piezo</title><link>http://stringsandtines.com/gear/mics/cookietinwithpiezo/</link><pubDate>Thu, 02 Aug 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/gear/mics/cookietinwithpiezo/</guid><description>&lt;p>I made this mic by sticking a piezo contact microphone inside a cookie tin, then added a 1/4″ jack. Doesn’t get any easier to build, and has a nice lo-fi sound. Since the piezo picks up vibrations, you have to get your mouth pretty close to the lid.&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/cookietinwithpiezo/tin.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/cookietinwithpiezo/tin_open.jpg">
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/gear/mics/cookietinwithpiezo/2018-08-02%2021.23.09.jpg"
 alt="Testing it out">&lt;figcaption>
 &lt;p>Testing it out&lt;/p>
 &lt;/figcaption>
&lt;/figure>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/gear/mics/cookietinwithpiezo/featured.jpg"/></item><item><title>Clarus Cigar Box Diddley Bow</title><link>http://stringsandtines.com/instruments/diddleybows/claruscigarboxdiddleybow/</link><pubDate>Wed, 20 Jun 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/claruscigarboxdiddleybow/</guid><description>&lt;p>This is the second diddley bow I make with this type of yard stick. See my King Edward diddley box elsewhere on this site for pictures of that one. The bridge is part of the locking mechanism from a door knob, and the sound hole cover is a drain cover.&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/T5tbhth0vU?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/diddleybows/claruscigarboxdiddleybow/20180620_124808-01.jpeg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/claruscigarboxdiddleybow/featured.jpg"/></item><item><title>Hurdy Gurdy Dulcimer Mashup</title><link>http://stringsandtines.com/instruments/dulcimers/hurdygurdydulcimermashup/</link><pubDate>Fri, 27 Apr 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/dulcimers/hurdygurdydulcimermashup/</guid><description>&lt;p>This one took some time to build. I originally wanted to build a version of a hurdy gurdy. A neighbor had his backyard umbrella destroyed by a windstorm, and I salvaged the crank, immediately coming up with the idea to make a hurdy gurdy. Now, hurdy gurdys are elaborate instruments, and I was not about to take on that complicated of a build. So I thought I would make a similar instrument, but with three strings. Basically a cigar box guitar but with a handle to turn a wheel that would vibrate the strings.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/dulcimers/hurdygurdydulcimermashup/featured.jpg"/></item><item><title>Pinewood Derby Car</title><link>http://stringsandtines.com/instruments/kalimbas/pinewoodderbycar/</link><pubDate>Fri, 13 Apr 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/pinewoodderbycar/</guid><description>&lt;p>When my son was in Scouts they had a couple of pinewood derby races. After we made the car, I couldn’t resist and turned one of the wood scraps into a kalimba. The paint job is inspired by the classic blue and white Shelby Cobra. Needless to say, it does not meet the strict rules for racing…and it was not particularly fast. But the wheels vibrate, much like they put beer bottle caps on real kalimbas to make them rattle.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/pinewoodderbycar/featured.jpg"/></item><item><title>Star Wars Lunchbox</title><link>http://stringsandtines.com/instruments/ukuleles/starwarslunchbox/</link><pubDate>Sun, 18 Mar 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/ukuleles/starwarslunchbox/</guid><description>&lt;p>I had a great time making this Uke from a Star Wars lunchbox. I shaped the neck entirely by hand so it would taper at the headstock, and added a piezo so it can be played through an amplifier. It’s too bad my fingers are too big to play this comfortably, which is why I can’t play it very well. Actually, I don’t really know how to play Ukulele, so that may also have something to do with it.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/ukuleles/starwarslunchbox/featured.jpg"/></item><item><title>Dollar Store Toy Guitar Diddley Bow</title><link>http://stringsandtines.com/instruments/diddleybows/dollarstoretoyguitardiddleybow/</link><pubDate>Wed, 07 Mar 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/dollarstoretoyguitardiddleybow/</guid><description>&lt;p>Ok this one is pretty much a joke. We spotted a toy guitar at the dollar store and thought it would be funny to turn it into a playable instrument. I added a real tuner to attempt to get a real note out of it. The tension was so strong that I had to add a wooden dowel to the inside of the guitar to keep it from bending. It was a fun little experiment for an afternoon.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/dollarstoretoyguitardiddleybow/featured.jpg"/></item><item><title>Phillies Blunt Chugger</title><link>http://stringsandtines.com/instruments/guitars/philliesbluntchugger/</link><pubDate>Sun, 25 Feb 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/philliesbluntchugger/</guid><description>&lt;p>My son tried his hand at making a chugger…basically a two string guitar. I helped him along, but he did most of the work himself. We added springs on the inside to add a bit of reverb. He was very excited with the results, and I was super proud!&lt;/p>
&lt;p>I highly recommend trying this project with your kids. It teaches them about handling tools, and the result is something they made and can be proud of. All you need is a box, a wooden dowel, and a couple of other random parts. A word of caution…this project takes more than a day to complete, so be prepared to encourage your child to complete it once they lose the initial interest.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/philliesbluntchugger/featured.jpg"/></item><item><title>Antonio Y Cleopatra Cigar Box Diddley Bow Made by my Daughter</title><link>http://stringsandtines.com/instruments/diddleybows/diddleybowmadebymydaughter/</link><pubDate>Sat, 10 Feb 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/diddleybowmadebymydaughter/</guid><description>&lt;p>My daughter wanted to try her hand at making a diddley bow…so that’s what we did. She did 90% of the work herself, with me guiding her and taking pictures. It was a bit difficult to keep an 8 year old focused enough to complete it, but in the end it came out great!&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/diddleybows/diddleybowmadebymydaughter/2018-02-10%2013.10.56.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/diddleybows/diddleybowmadebymydaughter/2017-12-27%2008.38.13.jpg"
 alt="Cutting the neck">&lt;figcaption>
 &lt;p>Cutting the neck&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/diddleybows/diddleybowmadebymydaughter/2017-12-27%2008.56.37.jpg"
 alt="Sanding the place for the tuner">&lt;figcaption>
 &lt;p>Sanding the place for the tuner&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/diddleybowmadebymydaughter/featured.jpg"/></item><item><title>Tin Can Cymbalum</title><link>http://stringsandtines.com/instruments/miscinstruments/tincancymbalum/</link><pubDate>Tue, 06 Feb 2018 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/tincancymbalum/</guid><description>&lt;p>I watched a video by Musique De Nulle Part where he made one of these and just had to make my own. I had a scrap piece of wood that came from an old cabinet, sanded it down, and cut out notches for the tuners. I attached cans to the board with L brackets, strung it up with some old guitar strings, and that was it! I think different strings would have sounded better, but that’s all I had at the time.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/tincancymbalum/featured.jpg"/></item><item><title>Bush Baked Beans Canjo</title><link>http://stringsandtines.com/instruments/canjos/bushsbakedbeanscanjo/</link><pubDate>Thu, 21 Dec 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/canjos/bushsbakedbeanscanjo/</guid><description>&lt;p>This canjo uses a large can of Bush baked beans as the resonator. I added a Home Depot yardstick to act as the fretboard, and welding rod for the frets. In hindsight, I should have cut a picking area by the can to make playing easier.&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/canjos/bushsbakedbeanscanjo/2017-12-21%2015.36.21.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/canjos/bushsbakedbeanscanjo/2017-12-21%2015.36.59.jpg"
 alt="Threaded bolt for the nut. Welding rod for the frets">&lt;figcaption>
 &lt;p>Threaded bolt for the nut. Welding rod for the frets&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/canjos/bushsbakedbeanscanjo/featured.jpg"/></item><item><title>Tree Trunk 2</title><link>http://stringsandtines.com/instruments/kalimbas/treetrunk02/</link><pubDate>Sun, 17 Dec 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/treetrunk02/</guid><description>&lt;p>We had a tree fall in our backyard, so I took a chunk of it to make a kalimba.&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/treetrunk02/2017-12-17%2010.17.54-2.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/treetrunk02/2017-12-17%2010.20.07.jpg">
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/treetrunk02/2017-12-17%2010.20.11.jpg">
&lt;/figure>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/treetrunk02/featured.jpg"/></item><item><title>Caballero Skateboard Lapsteel</title><link>http://stringsandtines.com/instruments/guitars/caballeroskateboardlapsteel/</link><pubDate>Sat, 02 Dec 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/caballeroskateboardlapsteel/</guid><description>&lt;p>My favorite skater growing up was Steve Caballero. His dragon skateboard stands out in my memory as my favorite. I had been toying with the idea of making a lapsteel out of a skateboard for some time, when I saw this Caballero model on Facebook marketplace for $20. When I went to pick it up I noticed it had a 6″ crack starting at the nose. “Perfect,” I thought, knowing that this skateboard was never to be ridden again. As I gave the guy the $20 I detected a sly smirk, like he thought he was tricking me out of my money. He had no idea what I was going to do with the skateboard…and I didn’t tell him.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/caballeroskateboardlapsteel/featured.jpeg"/></item><item><title>Optimo Cigar Box Diddley Bow with Fishing Reel</title><link>http://stringsandtines.com/instruments/diddleybows/optimocigarboxwithfishingreel/</link><pubDate>Tue, 21 Nov 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/optimocigarboxwithfishingreel/</guid><description>&lt;p>This diddley bow has been through a couple of iterations. At first, it was a simple diddley bow I made in an afternoon. It featured a ukulele tuner, a piece of a door lock to hold the string, and a wooden plug for the bridge. I especially liked the writing on the box, which was apparently used to hold melon seeds. At some point I saw a video by the Blue Man Group where they had constructed an instrument that was played by rotating a wheel, which had plastic flaps all around its edge that would pluck the string, creating an endless strumming of the single string. I wanted to make this same sound, so I grabbed a fishing reel and attached a couple of zip ties to it. I also added some aluminum wire for frets. It is a bit clunky to play, but does the job.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/optimocigarboxwithfishingreel/featured.jpg"/></item><item><title>King Edward Cigar Box Diddley Bow</title><link>http://stringsandtines.com/instruments/diddleybows/kingedwardcigarboxdiddleybow/</link><pubDate>Sun, 19 Nov 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/kingedwardcigarboxdiddleybow/</guid><description>&lt;p>This build started with the unique yardstick I had. It was made from a square wooden dowel, with measurements on one edge and the name of the company on another edge. Given that it has some flex to it, I could only use it for a diddley bow, or risk it bending under string tension. The King Edward cigar box I used is a bit flimsy, so I reinforced it with wood. Looking back at these pictures I think I overdid it with the bracing, but you can never be too sure!&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/kingedwardcigarboxdiddleybow/featured.jpg"/></item><item><title>License Plate Box Guitar</title><link>http://stringsandtines.com/instruments/guitars/licenseplateguitar/</link><pubDate>Sun, 19 Nov 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/licenseplateguitar/</guid><description>&lt;p>Got this license plate from Playero, a surf shop in Puerto Rico (¡wepa boricua!) and made this license plate guitar. To keep the Puerto Rican theme going, I used dominos for the bridge and nut. I made the box from scratch using wood that came from a couch that had been put to the curb. I added a spring in the inside, which adds a bit of reverb. There’s a piezo (contact mic) under the license plate, so it can be played through an amp.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/licenseplateguitar/featured.jpg"/></item><item><title>Lego Kalimba</title><link>http://stringsandtines.com/instruments/kalimbas/lego/</link><pubDate>Sun, 05 Nov 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/lego/</guid><description>&lt;p>Let’s face it, just about everything has been made out of Legos by now. I don’t think I have seen a kalimba though, until I made this one. I learned a hard lesson while making this one…it is a good idea to glue the pieces together as you build it. This is because the first time I made the box, while attempting to press a piece that was being particularly stubborn, the whole thing exploded and I had to start over!&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/lego/featured.jpg"/></item><item><title>Tree Trunk 1</title><link>http://stringsandtines.com/instruments/kalimbas/treetrunk01/</link><pubDate>Sat, 04 Nov 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/treetrunk01/</guid><description>&lt;p>We had a tree fall in our backyard, so I took a chunk of it to make a kalimba. I experimented with two different tine lengths to see how they would sound. It wasn&amp;rsquo;t very impressive.&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/treetrunk01/20171104_171957-01.jpeg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/treetrunk01/20171104_171747-01.jpeg"
 alt="Two different tine lengths for different sounds">&lt;figcaption>
 &lt;p>Two different tine lengths for different sounds&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/treetrunk01/20171104_171820-01.jpeg"
 alt="I didn&amp;rsquo;t sand it too much since I liked how the cut marks give a nice texture">&lt;figcaption>
 &lt;p>I didn&amp;rsquo;t sand it too much since I liked how the cut marks give a nice texture&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/treetrunk01/featured.jpeg"/></item><item><title>Tree Trunk with Taino Woodburning</title><link>http://stringsandtines.com/instruments/kalimbas/treetrunkwithtainowoodburning/</link><pubDate>Sun, 22 Oct 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/treetrunkwithtainowoodburning/</guid><description>&lt;p>I made this kalimba as a gift for my sister. I took the wood from a tree that had fallen in our back yard. I carved the inside to make it hollow. The idea was to mimic a Sansula, which is a kalimba that is attached to a small drum to give it additional resonance. I drew the Taino symbol for the sun and added a coat of polyurethane to seal everything.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/treetrunkwithtainowoodburning/featured.jpeg"/></item><item><title>Piano Fallboard</title><link>http://stringsandtines.com/instruments/kalimbas/pianofallboard/</link><pubDate>Sun, 08 Oct 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/pianofallboard/</guid><description>&lt;p>Someone threw out a piano from the 1890’s, and I tried to salvage as much of it as I could. One of the pieces I was able to take was the fallboard. I made this kalimba out of it.&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/pianofallboard/FallboardKalimba01.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/pianofallboard/FallboardKalimba03.jpg">
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/pianofallboard/FallboardKalimba02.jpg"
 alt="The eye hooks also came from the piano">&lt;figcaption>
 &lt;p>The eye hooks also came from the piano&lt;/p>
 &lt;/figcaption>
&lt;/figure>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/pianofallboard/featured.jpg"/></item><item><title>Toy Box</title><link>http://stringsandtines.com/instruments/kalimbas/toybox/</link><pubDate>Sat, 30 Sep 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/toybox/</guid><description>&lt;p>This was one of my first kalimbas. I used a box from an old puzzle toy, added a lid, and spray painted it black. The tines are made from wiper blades. The tines are held in place by a grounding bar.&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/_sbrSP16sMU?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/toybox/2017-03-06%2001.29.21.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/toybox/featured.jpg"/></item><item><title>Oliver Twist Fake Book Diddley Bow</title><link>http://stringsandtines.com/instruments/diddleybows/olivertwistfakebookdiddleybow/</link><pubDate>Wed, 13 Sep 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/olivertwistfakebookdiddleybow/</guid><description>&lt;p>This one took part of an afternoon to complete. It was a simple build, just a box and a wooden dowel, a tuner and a bold for a bridge.&lt;/p>
&lt;p>After seeing &lt;a href="https://www.cigarboxguitars.com/post/1921-marxolin-one-string-slide-guitar" target="_blank" rel="noreferrer">this post&lt;/a> about a one string instrument called a Marxolin, I added a hose splicer to this diddley bow to try it out.&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/diddleybows/olivertwistfakebookdiddleybow/2017-09-13%2021.56.47.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/diddleybows/olivertwistfakebookdiddleybow/2017-09-13%2021.57.36.jpg"
 alt="Fret lines are cut into the dowel">&lt;figcaption>
 &lt;p>Fret lines are cut into the dowel&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/olivertwistfakebookdiddleybow/featured.jpg"/></item><item><title>Engineered Hardwood Flooring Sample</title><link>http://stringsandtines.com/instruments/kalimbas/engineeredhardwoodflooringsample/</link><pubDate>Sun, 25 Jun 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/engineeredhardwoodflooringsample/</guid><description>&lt;p>Lowes has these flooring samples that you can take with you to see how they might look in your house. Turns out you can also use them to make kalimbas. For this one I took two samples of engineered hardwood flooring and glued them back to back. I left the tongue and groove intact because I thought it looked interesting. I used wiper blades for the tines and a couple of grounding bars to hold them.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/engineeredhardwoodflooringsample/featured.jpg"/></item><item><title>Box with Piezo Mic</title><link>http://stringsandtines.com/instruments/kalimbas/boxwithpiezomic/</link><pubDate>Fri, 16 Jun 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/boxwithpiezomic/</guid><description>&lt;p>My son picked out this box at a thrift store and asked me to make a kalimba out of it. I made it, and added a piezo (contact mic) inside so that it can be played through an amp. The tines are made from wiper blades, and they are attached to the box by a grounding bar.&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/fnxLnHcW-1g?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/kalimbas/boxwithpiezomic/2017-06-16%2023.29.57.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/boxwithpiezomic/featured.jpg"/></item><item><title>PVC Didgeridoo</title><link>http://stringsandtines.com/instruments/world/pvcdidgeridoo/</link><pubDate>Fri, 19 May 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/world/pvcdidgeridoo/</guid><description>&lt;p>This one is pretty basic. a long PVC tube with an endcap that has a smaller diameter. I never did get a good sound out of it, since playing the Didgeridoo is hard enough&lt;/p>
&lt;figure>&lt;img src="http://stringsandtines.com/instruments/world/pvcdidgeridoo/2017-05-19%2017.22.09.jpg"
 alt="Testing it out">&lt;figcaption>
 &lt;p>Testing it out&lt;/p>
 &lt;/figcaption>
&lt;/figure></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/world/pvcdidgeridoo/featured.jpg"/></item><item><title>My Kids Made These Diddley Bows</title><link>http://stringsandtines.com/instruments/diddleybows/mykidsmadethesediddleybows/</link><pubDate>Sat, 06 May 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/mykidsmadethesediddleybows/</guid><description>&lt;p>A diddley bow is one of the simplest instruments you can make. All you need is a piece of wood, a string, two bridges to hold the string above the wood, and a tuner, if you want a specific note. This makes it a perfect project to make with your kids. And that’s exactly what we did here, when they were 5 and 7 years old. We used scrap wood for the body of the diddley bow. We got fancy and added an Altoids tin on one end with a piezo (contact mic) inside of it, so you can play it through an amplifier. I think the most fun part of the project was painting them. I let them pick the colors they wanted to use, and they did all the painting themselves. I purposely did not cover the sawhorses we used so they would get paint all over them, and to this day I remember this project whenever I look at them. To add a bit of a science lesson, we woodburned their names on the back using a magnifying glass (which came from my scanner camera – see elsewhere on this site for details on that one).&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/mykidsmadethesediddleybows/featured.jpg"/></item><item><title>Eddie Van Halen Tribute</title><link>http://stringsandtines.com/instruments/diddleybows/eddievanhalentribute/</link><pubDate>Sat, 22 Apr 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/eddievanhalentribute/</guid><description>&lt;p>I had a can of red wood stain, so I decided to make a diddley bow that looked like Eddie Van Halen’s classic Frankenstrat. The body is a scrap piece of wood that I had lying around. I got the paint job and black and red lines as close as I could to the original. I used a “Cap-O-Tone” from C.B. Gitty and an Altoids tin to add a piezo and volume knob so it can be played through an amp. The bridge is held to the frame by a cabinet hinge spray painted black. Later I added some frets from white wire hangers, and fret markers from thumbtacks&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/eddievanhalentribute/featured.jpg"/></item><item><title>War and Peace Fake Book</title><link>http://stringsandtines.com/instruments/guitars/warandpeacefakebook/</link><pubDate>Sat, 15 Apr 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/warandpeacefakebook/</guid><description>&lt;p>I got this box that looks like the book War and Peace and my first thought was to make a guitar out of it. At the time I was still pretty new to making instruments and you can tell, given how I made the neck. I thought I would try a different design for how to make the headstock. It was an interesting idea, but makes the neck so thick you can’t really play the first 2-3 frets. This is how we learn!&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/warandpeacefakebook/featured.jpg"/></item><item><title>Opus One Wine Crate Dulcimer</title><link>http://stringsandtines.com/instruments/dulcimers/opusonewinecrate/</link><pubDate>Sun, 15 Jan 2017 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/dulcimers/opusonewinecrate/</guid><description>&lt;p>My wife had this Opus One crate that I always wanted to do something with. I thought of making a dulcimer, having never actually seen one in real life. I had a bunch of scrap wood ribs from a bed, so I used one for the neck. The dimensions are all off, since the neck is too wide compared to a regular dulcimer. But I think it turned out pretty good otherwise.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/dulcimers/opusonewinecrate/featured.jpeg"/></item><item><title>Mini Coca-Cola Canjo</title><link>http://stringsandtines.com/instruments/canjos/minicocacolacanjo/</link><pubDate>Sat, 17 Dec 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/canjos/minicocacolacanjo/</guid><description>&lt;p>I made this one as a joke. Took a random scrap of wood, and added one of this small cans of Coca Cola as the resonator. Added a Ukulele tuner and a handful of frets, positioned by ear. It doesn’t sound very good, and the frets don’t really follow a scale. Although I like how I installed the tuner, with the string going through the neck so the tuner could be installed with the knob on the top of the neck.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/canjos/minicocacolacanjo/featured.jpg"/></item><item><title>Domaine du Père Caboche Wine Crate Harp</title><link>http://stringsandtines.com/instruments/harps/domaineduperecabochewinecrateharp/</link><pubDate>Thu, 15 Dec 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/harps/domaineduperecabochewinecrateharp/</guid><description>&lt;p>This instrument has gone through a few iterations. Initially I wanted to make a harp-like instrument with a bridge in the middle, so two people could play it at the same time, one on each end. The first version of this instrument ended up like that, but the sound wasn’t very good. This was because the strings were not long enough on either end to make a good sound. I ended up moving the bridge slightly towards one end and trying it that way. This made a better sound. I used Chinese guzheng strings on this first version, but it turned out they were not great quality and a few snapped.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/harps/domaineduperecabochewinecrateharp/featured.JPG"/></item><item><title>Yaucono Coffee Canjo</title><link>http://stringsandtines.com/instruments/canjos/yauconocoffeecanjo/</link><pubDate>Thu, 01 Dec 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/canjos/yauconocoffeecanjo/</guid><description>&lt;p>This one is as stripped down as they come. Diatonic fretting right on the neck, no fret board. I used a spare ukulele tuner and wire hanger for the frets. This was one of my first canjos.&lt;/p>
&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/canjos/yauconocoffeecanjo/2016-12-01%2018.10.50.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/canjos/yauconocoffeecanjo/2016-12-01%2018.10.58.jpg">
&lt;/figure>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/canjos/yauconocoffeecanjo/featured.jpg"/></item><item><title>Guitar Made from Driftwood from Babcock Hovey</title><link>http://stringsandtines.com/instruments/guitars/driftwoodfrombabcockhovey/</link><pubDate>Sat, 12 Nov 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/driftwoodfrombabcockhovey/</guid><description>&lt;p>My son was in Boy Scouts for a couple of years, and we went to a weekend camping trip at their Babcock Hovey Scout Camp. On our way to dig for fossils by the lake, I saw this piece of wood floating by the shore that had obviously been there for a while. There was faint blue paint, which had slowly eroded. I brought it back with us and made this guitar out of it. The top and back are made with this wood, and the sides are made from an old pallet that a neighbor had turned into a wine rack, but then discarded. I wanted the guitar to look old and worn out. The bridge is made from an old ruler, and a paintbrush without the handle or bristles&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/driftwoodfrombabcockhovey/featured.jpeg"/></item><item><title>Saint Luis Rey Cigar Box</title><link>http://stringsandtines.com/instruments/guitars/stluisrey/</link><pubDate>Sat, 12 Nov 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/stluisrey/</guid><description>&lt;p>I went to Cuba in 2016 and brought back this cigar box with the intention of making a guitar out of it. This is the one that got me hooked on making instruments after making my first one in 2009. The neck came from a large picture frame that my neighbor was getting rid of. I made the fret board from a Home Depot yardstick, which took some time to sand away all the markings. The sound holes are drain covers, and the strings are attached to the box using a cabinet hinge.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/stluisrey/featured.jpg"/></item><item><title>My Proud Son and His Creation</title><link>http://stringsandtines.com/instruments/diddleybows/myproudsonandhiscreation/</link><pubDate>Wed, 07 Sep 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/myproudsonandhiscreation/</guid><description>&lt;p>My son made this diddley bow out of scrap materials. It’s a simple project to make with kids to start teaching them about how stringed instruments work. All you need is a stick, a can and a string…that’s it!&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/ewNJs9QRA-k?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;figure>&lt;img src="http://stringsandtines.com/instruments/diddleybows/myproudsonandhiscreation/2016-09-07%2019.04.02.jpg"
 alt="My son with his creation">&lt;figcaption>
 &lt;p>My son with his creation&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/myproudsonandhiscreation/featured.jpg"/></item><item><title>PVC Tubulum</title><link>http://stringsandtines.com/instruments/miscinstruments/pvctubulum/</link><pubDate>Tue, 30 Aug 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/pvctubulum/</guid><description>&lt;p>If you have ever seen the Blue Man Group you’ve seen them &lt;a href="https://www.youtube.com/watch?v=hiaxRa7DN1M" target="_blank" rel="noreferrer">play this instrument&lt;/a>, which consists of PVC tubes of different lengths, which they strike with flat rubber mallets. According to Wikipedia this instrument originates in Papua New Guinea and is called a Thongophone…you learn something new every day!&lt;/p>
&lt;p>I wanted the kids to be involved in making this instrument, so they helped as much as possible, mostly in the paint department. Being kids, they of course could not agree on a color, so we painted the frame half pink, and half blue. It was a lot of fun to make, and sounded ok when done. Using tubes of wider diameter would create a deeper and louder sound, which I’ll keep in mind if we ever make another one of these.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/pvctubulum/featured.jpg"/></item><item><title>Coconut</title><link>http://stringsandtines.com/instruments/kalimbas/coconut/</link><pubDate>Sat, 09 Jul 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/coconut/</guid><description>&lt;p>During a trip to Costco I saw they sold these packs of ice cream, individually wrapped inside a half coconut. I immediately grabbed a pack with the full intention of making a kalimba out of the coconut. This was one of my first ones, experimenting with how to hold the tines down, using a piece of wood from a cutting board and a steel bracket with two screws.&lt;/p>
&lt;p>
 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/VDl4SXXcptU?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>


 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/UlJZOv2XtJc?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>
&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/coconut/featured.jpg"/></item><item><title>Recycled 1800’s Piano</title><link>http://stringsandtines.com/instruments/miscinstruments/recycled1800spiano/</link><pubDate>Wed, 01 Jun 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/recycled1800spiano/</guid><description>&lt;p>One day we went to visit my friend’s house, and a couple of houses down from his we spotted this piano that had been thrown out. It was in pieces, like it had been dropped from the sky. I asked my friend to come with me and we salvaged as much as we could, knowing that I would be using the parts for projects for some time. I made a piece of art from the keys, saved all the hammers, and all the eye hooks, which I have used as string trees and in my kalimbas for years. I finally ran out of them in 2022. I cut the fall board into a few pieces, made a &lt;a href="http://stringsandtines.com/instruments/kalimbas/pianofallboard/" >kalimba&lt;/a> our of one piece and hung the piece with the company logo as its own art piece. The coolest part is that while taking it apart, I saw pieces that were hand signed, and had dates in the late 1800’s.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/recycled1800spiano/featured.jpg"/></item><item><title>Berimbau</title><link>http://stringsandtines.com/instruments/world/berimbau/</link><pubDate>Sun, 24 Apr 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/world/berimbau/</guid><description>&lt;p>The berimbau is an instrument from Brazil. One day my neighbor had a backyard umbrella that broke in a windstorm, so I grabbed one of the arms to make this instrument. The traditional berimbau string is made with the wire from the inside of a car tire, which keeps the inside hole sturdy against the rim. So imagine my wife’s reaction when I walked in the house one day and said “Honey, let me explain why there’s an old tire in the garage.” After some digging I was able to get the wire out and put together this nice instrument. The resonator is typically a gourd of some kind, but not having access to one, and having a child that was still on formula, I used a formula container instead. Works like a charm. A stick and a rock is all you need once the instrument is put together. The rock is used to create a bridge to change the pitch of the tone, and the stick is used to strike the wire to make the sound.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/world/berimbau/featured.jpg"/></item><item><title>Bucket Standup Bass</title><link>http://stringsandtines.com/instruments/miscinstruments/bucketstandupbass/</link><pubDate>Sun, 20 Mar 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/bucketstandupbass/</guid><description>&lt;p>I wanted to recreate the &lt;a href="http://stringsandtines.com/otherprojects/trashcanbass" >Trashcan Bass&lt;/a> that my dad made and quickly threw this Home Depot bucket version. The sound was definitely more muted than the steel drum version&lt;/p>
&lt;figure>&lt;img src="http://stringsandtines.com/instruments/miscinstruments/bucketstandupbass/2016-03-20%2016.51.47.jpg"
 alt="Not quite as cool as my dad&amp;rsquo;s version">&lt;figcaption>
 &lt;p>Not quite as cool as my dad&amp;rsquo;s version&lt;/p>
 &lt;/figcaption>
&lt;/figure></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/bucketstandupbass/featured.jpg"/></item><item><title>Marimba</title><link>http://stringsandtines.com/instruments/miscinstruments/marimba/</link><pubDate>Sat, 19 Mar 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/marimba/</guid><description>&lt;p>For this one I took a bunch of scrap wood and cut it into individual pieces, trimming them until they made the right onte. Just something I threw together, but my kids seemed to enjoy it for a while.&lt;/p>
&lt;figure>&lt;img src="http://stringsandtines.com/instruments/miscinstruments/marimba/2016-03-19%2011.20.08.jpg"
 alt="The kids trying it out">&lt;figcaption>
 &lt;p>The kids trying it out&lt;/p>
 &lt;/figcaption>
&lt;/figure></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/marimba/featured.jpg"/></item><item><title>My First Diddley Bow</title><link>http://stringsandtines.com/instruments/diddleybows/myfirstdiddleybow/</link><pubDate>Sat, 19 Mar 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/diddleybows/myfirstdiddleybow/</guid><description>&lt;p>Here are my first few attempts at a diddley bow. I changed it up a couple of times, but the concept stayed pretty consistent. I started with a scrap piece of wood that had been used as a property marker for snow plows to avoid tearing up my lawn (hence the blue paint on one end). I added a couple of screws to hold the string, and a couple of beer bottles to add tension. Since the wooden stake is so narrow, I had to add a separate board to keep it stable on a table.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/diddleybows/myfirstdiddleybow/featured.jpg"/></item><item><title>Cutting Board</title><link>http://stringsandtines.com/instruments/kalimbas/cuttingboard/</link><pubDate>Sun, 10 Jan 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/kalimbas/cuttingboard/</guid><description>&lt;p>My wife was going to throw out this cutting board, so I immediately rescued it from the landfill and turned into a kalimba. I liked the small pyramids cut out on top. Almost like it challenges you to play it and not get hurt :)&lt;/p>
&lt;p>I used wiper blades for the tines, and a long grounding bar to hold them in place. I colored some of the tines with a marker to try to have some way to tell them apart, but it came off after a while.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/kalimbas/cuttingboard/featured.jpg"/></item><item><title>PVC Rain Stick</title><link>http://stringsandtines.com/instruments/miscinstruments/pvcrainstick/</link><pubDate>Fri, 01 Jan 2016 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/pvcrainstick/</guid><description>&lt;p>A somewhat easy project to make with the kids. All you need is a PVC tube and a couple of endcaps to make the stick. Then you nail a bunch of nails in a spiral pattern, throw a cup or two of un-popped popcorn or beans, and you have yourself a rain stick. We decorated this one with black paint and colorful string wrapped around the nails.&lt;/p>

 &lt;div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
 &lt;iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="allowfullscreen" loading="eager" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube.com/embed/AnRA_vzlyzE?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="YouTube video">&lt;/iframe>
 &lt;/div>

&lt;p>&lt;figure>&lt;img src="http://stringsandtines.com/instruments/miscinstruments/pvcrainstick/13325541_10154293618134312_4972133489950307569_n.jpg"
 alt="One of my favorite pictures. Such sass!">&lt;figcaption>
 &lt;p>One of my favorite pictures. Such sass!&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/pvcrainstick/featured.jpg"/></item><item><title>Juice and Soda Bottles and Rubber Bands</title><link>http://stringsandtines.com/instruments/guitars/juiceandsodabottlesandrubberbands/</link><pubDate>Sun, 27 Dec 2015 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/juiceandsodabottlesandrubberbands/</guid><description>&lt;p>Ok this is more of a kids grade school project kinda thing. All you need is a plastic bottle. Cut out a sound hole. Attach a few screws, and put rubber bands across the hole. Use crayons for the bridge and nut. Strum the rubber bands. Done!&lt;/p>
&lt;figure>&lt;img src="http://stringsandtines.com/instruments/guitars/juiceandsodabottlesandrubberbands/2015-12-27%2016.58.37.jpg"
 alt="The finished product">&lt;figcaption>
 &lt;p>The finished product&lt;/p>
 &lt;/figcaption>
&lt;/figure></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/juiceandsodabottlesandrubberbands/featured.jpg"/></item><item><title>My First Cigar Box Guitar</title><link>http://stringsandtines.com/instruments/guitars/myfirstcigarboxguitar/</link><pubDate>Sun, 11 Oct 2009 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/guitars/myfirstcigarboxguitar/</guid><description>&lt;p>This is the one that started this crazy hobby of mine. One day I spotted a Make Magazine article for making a cigar box guitar. I had never made anything in my life, and didn’t even own any tools. In fact, I bought my first set of power tools to make this guitar. I went to a cigar store and got this box, and for some reason had a scrap 1×2 that I used as the neck. It was simply gluing the stick to the box, the simplest way to make a guitar. The article calls for making your own tuners out of bolts, so I did that. It also has the strings made from twine, so I did that too. This wasn’t a guitar to be played, it was to be displayed. And so it stayed, for a number of years. Once I got really hooked on making instruments a few years later, I went back and added real tuners, real guitar strings and a piezo (contact mic). It is played with a slide since there are no frets on it.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/guitars/myfirstcigarboxguitar/featured.JPG"/></item><item><title>Scanner Camera</title><link>http://stringsandtines.com/photography/scannercamera/</link><pubDate>Thu, 20 Aug 2009 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/photography/scannercamera/</guid><description>&lt;p>This is the first weird camera I made. I don&amp;rsquo;t remember where I got the idea for this. Regardless, this is basically two cardboard boxes. One box is inside the other and can slide in and out for focusing. On the front of the box is the &amp;ldquo;lens&amp;rdquo;, which is a magnifying glass. The inside of the box is blacked out, and I added black foam core to cover the part of the scanner outside the camera. The whole thing was held together by rubber bands. Professional! Instead of using film, a flatbed scanner is attached to the back of the &amp;ldquo;camera.&amp;rdquo; This is basically the precursor to the Time Warp filter on Snapchat, decades before it was released!&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/photography/scannercamera/featured.JPG"/></item><item><title>My Father’s Trashcan Bass</title><link>http://stringsandtines.com/instruments/miscinstruments/trashcanbass/</link><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate><guid>http://stringsandtines.com/instruments/miscinstruments/trashcanbass/</guid><description>&lt;p>This may be where I got my interest in making instruments, if delayed by a few decades. My father made this bass out of a galvanized steel trash can, a broom stick and a rope. Brackets covered in tattered duct tape hold up one side to let the sound out. He called it “zafa-bajo,” a combination of the words “zafacón” for trashcan, and “bajo” for bass. I remember he would play this at parties to the delight of the crowd. It was decorated with stickers from Artic-Kar, the family business. After he passed away in 2020 I inherited it, and I have to say it make a nice rumble. I suspect that the galvanized steel construction makes it sound better than an aluminum trash can. I took these pictures in January 2022, showing the wear and tear the years have brought.&lt;/p></description><media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://stringsandtines.com/instruments/miscinstruments/trashcanbass/featured.jpg"/></item></channel></rss>