studio

A custom bass drum muffling pillow with a hidden zipper

I've been playing a lot of funk, and funk inspired music on my kit lately and I really wanted a small muffling pillow for my drum.

I've tried just shoving a pillow in there, blankets, tape, foam and all the other random things. They all muffle the drum way too much! Clearly we need a custom solution, so that's what I've done.

A perfect drum muffling pillow

Read article →

music

Studio One, one month starting now!

So I found out that you can download old versions of Studio One quite easily in your user account by clicking the "View Previous Versions" button right below the "Download Installer" button.

So now I'm going to run 3.2.0 unless I find out there's a solution to the bug I was dealing with. The bug I was dealing with is as follows:

Read article →

workshop / music

A new less annoying knob

All done!

I have a Focusrite Saffire Pro 40 that is setup as part of my live rig. To change the master volume, it requires that I reach down and blindly grab the correct one of about 30 knobs. If you haven't guessed, I rarely get it.

The solution is simple. Make a bigger knob out of sapele, of course.

Read article →

programming

Jekyll Post Creating Script

So I wrote a little bash script this morning to make creating a new jekyll post easy for my blog.

                      array=( $@ )
                        len=${#array[@]}
                        _first=$1
                        _last=${array[$len-1]}
                        _rest=${array[@]:1:$len-2}
                        _filename=$( printf "%s-%s" "$(date +%F)" "$_first" )
                        _postname=$( printf "%s %s" "$_first" "$_rest" )
                        echo $_rest
                        for var in $_rest
                        do
                        _filename+="-"
                        _filename+=$var
                        done
                        cat <<EOF > _posts/$_filename.md
                        ---
                        layout: post
                        title: $_postname
                        comments: true
                        date:   $(date +%F_%T)
                        categories: $_last
                        tags: ['']
                        image:
                        description:
                        ---
                      
                    
Read article →

workshop / tutorial

Making a Bosch TS1002 TS1003 TS1008 TS1016 extension fence

I love my Bosch 4100 table saw. The gravity rise stand is amazing, it's compact, it's accurate, it's well-made.

The issue is that with how compact it is, you need some sort of extension wings to safely support your work as you cut it.

Done

Like most people you could simply buy a TS1002 Outfeed Support Extension or a TS1016 Outfeed Support Assembly for outfeed support. You'll also need a TS1003 Left Side Support Table or a TS1008 Left Side Support Table for left side support.

Those damn things are too expensive, and we're workshop men! We can make our own things. Let me show you how I made mine

Read article →

music / tutorial

Tying a ludwig supraphonic strainer the best way

I have a 1965 Ludwig Supraphonic snare drum and when I purchased some new Puresound Custom Pro 20 Strand Snare Wires I had issues. Buzzing, slippage and inconsistent tension were plaguing me.

After searching the net for how to tie the snare strainer side, I realized there was no good info out there!

I tried dozens of methods, followed by lots of testing, and came up with what seems to be the best method...

Read article →