Skip to content

Instantly share code, notes, and snippets.

View Forfold's full-sized avatar

Nathaniel Cook Forfold

View GitHub Profile
@Forfold
Forfold / drum-tuning.md
Created February 25, 2025 01:40
Tuning Taylor’s Drumset

Given your rock/grunge style and preference for deep, punchy transients with minimal overtones, I’ll suggest fundamental frequencies for each drum and tuning tips to balance attack, warmth, and resonance.

Tuning Guide for Your Kit

  • General Approach: Tune the resonant head slightly higher than the batter for punch and controlled resonance.
  • Muffling: Since you already use muffling, keep it minimal at first and fine-tune based on the sound you get.
  • Tuning Method:
    • Finger-tighten lugs evenly.
    • Use a drum key to raise each lug gradually, listening for even pitch.
    • Check the drum's fundamental frequency by lightly tapping the center.
  • Adjust batter and resonant heads to balance attack and sustain.
export default function transformer (file, api) {
const j = api.jscodeshift
return j(file.source)
.find(j.ImportDeclaration)
.forEach(path => {
const pathStr = path.value.source.value
if (!pathStr.startsWith('material-ui/') && pathStr !== 'material-ui') return
path.value.specifiers.forEach(spec => {