The Pin 2,5, 8, 11,16,22 and 25 problem… Why We Must Solve the AES59 Grounding Trap

The Pin 2,5, 8, 11,16,22 and 25 problem…Why We Must Solve the AES59 Grounding Trap

https://www.aes.org/standards/comments/cfc-draft-rev-aes48-xxxx-251124.cfm

The “Pin 1 Problem” Multiplied: Why We Must Solve the AES59 Grounding Trap

By Anthony P. Kuzub Chair, AES-X249 Task Group SC-05-05-A

In the world of professional audio, the transition from XLRs to high-density DB25 connectors was a matter of necessity. We needed more channels in smaller spaces. But in adopting the AES59 standard (often called the TASCAM pinout), the industry inadvertently created a trap—an 8-channel variation of a problem we thought we had solved decades ago. Continue reading

CSV to JSON structure utility


import tkinter as tk
from tkinter import filedialog, messagebox, ttk
import pandas as pd
import json
import os
import sys
import io
import re

class CSVToJSONApp(tk.Tk):
    """
    A Tkinter application to convert a CSV file to a nested JSON structure
    with dynamic grouping capabilities and a JSON preview feature.
    """
    def __init__(self):
        super().__init__()
        self.title("CSV to JSON Converter")
        self.geometry("1200x800")
        
        self.csv_filepath = ""
        self.headers = []
        self.header_widgets = {}

        # Capture print statements for debugging
        self.debug_log = io.StringIO()
        self.original_stdout = sys.stdout

        self.setup_frames()
        self.create_widgets()

    def setup_frames(self):
        """Creates the main frames for organizing the UI."""
        self.top_frame = tk.Frame(self, padx=10, pady=10)
        self.top_frame.pack(fill=tk.X)

        self.main_content_frame = tk.Frame(self, padx=10, pady=10)
        self.main_content_frame.pack(fill=tk.BOTH, expand=True)

        self.header_config_frame = tk.LabelFrame(self.main_content_frame, text="Header Configuration", padx=10, pady=10)
        self.header_config_frame.pack(side=tk.LEFT, fill=tk.BOTH, expand=True, padx=5, pady=5)
        
        self.output_frame = tk.LabelFrame(self.main_content_frame, text="JSON Output", padx=10, pady=10)
        self.output_frame.pack(side=tk.RIGHT, fill=tk.BOTH, expand=True, padx=5, pady=5)
        
        self.headers_canvas = tk.Canvas(self.header_config_frame)
        self.headers_canvas.pack(side=tk.LEFT, fill=tk.BOTH, expand=True)
        
        self.headers_scrollbar = ttk.Scrollbar(self.header_config_frame, orient=tk.VERTICAL, command=self.headers_canvas.yview)
        self.headers_scrollbar.pack(side=tk.RIGHT, fill=tk.Y)
        
        self.headers_canvas.configure(yscrollcommand=self.headers_scrollbar.set)
        self.headers_frame = tk.Frame(self.headers_canvas)
        self.headers_canvas.create_window((0, 0), window=self.headers_frame, anchor="nw")
        
        self.headers_frame.bind("<Configure>", lambda event: self.headers_canvas.configure(scrollregion=self.headers_canvas.bbox("all")))

        # Notebook for Treeview and Raw JSON view
        self.output_notebook = ttk.Notebook(self.output_frame)
        self.output_notebook.pack(fill=tk.BOTH, expand=True)

        # Treeview tab
        tree_frame = ttk.Frame(self.output_notebook)
        self.output_notebook.add(tree_frame, text='Structured View')
        self.treeview = ttk.Treeview(tree_frame, columns=('Value'), show='tree headings')
        self.treeview.heading('#0', text='Key')
        self.treeview.heading('Value', text='Value')
        self.treeview.pack(side=tk.LEFT, fill=tk.BOTH, expand=True)
        
        self.treeview_scrollbar = ttk.Scrollbar(tree_frame, orient=tk.VERTICAL, command=self.treeview.yview)
        self.treeview.configure(yscrollcommand=self.treeview_scrollbar.set)
        self.treeview_scrollbar.pack(side=tk.RIGHT, fill=tk.Y)

        # Raw JSON tab
        raw_frame = ttk.Frame(self.output_notebook)
        self.output_notebook.add(raw_frame, text='Raw JSON')
        self.raw_json_text = tk.Text(raw_frame, wrap=tk.WORD, font=("Consolas", 10))
        self.raw_json_text.pack(side=tk.LEFT, fill=tk.BOTH, expand=True)
        self.raw_json_scrollbar = ttk.Scrollbar(raw_frame, orient=tk.VERTICAL, command=self.raw_json_text.yview)
        self.raw_json_text.configure(yscrollcommand=self.raw_json_scrollbar.set)
        self.raw_json_scrollbar.pack(side=tk.RIGHT, fill=tk.Y)

    def create_widgets(self):
        """Creates and places all the widgets in the application window."""
        tk.Label(self.top_frame, text="Input CSV File:").grid(row=0, column=0, sticky="W", padx=5, pady=2)
        self.csv_path_entry = tk.Entry(self.top_frame, width=50)
        self.csv_path_entry.grid(row=0, column=1, padx=5, pady=2)
        self.csv_browse_button = tk.Button(self.top_frame, text="Browse...", command=self.load_csv_file)
        self.csv_browse_button.grid(row=0, column=2, padx=5, pady=2)

        tk.Label(self.top_frame, text="Output JSON File:").grid(row=1, column=0, sticky="W", padx=5, pady=2)
        self.json_path_entry = tk.Entry(self.top_frame, width=50)
        self.json_path_entry.grid(row=1, column=1, padx=5, pady=2)
        self.json_browse_button = tk.Button(self.top_frame, text="Browse...", command=self.save_json_file)
        self.json_browse_button.grid(row=1, column=2, padx=5, pady=2)
        
        tk.Label(self.top_frame, text="Root JSON Key Name:").grid(row=2, column=0, sticky="W", padx=5, pady=2)
        self.root_name_entry = tk.Entry(self.top_frame, width=20)
        self.root_name_entry.insert(0, "root")
        self.root_name_entry.grid(row=2, column=1, sticky="W", padx=5, pady=2)

        self.load_button = tk.Button(self.top_frame, text="Load Headers", command=self.load_headers)
        self.load_button.grid(row=3, column=0, pady=10)
        self.preview_button = tk.Button(self.top_frame, text="Preview JSON", command=self.preview_json)
        self.preview_button.grid(row=3, column=1, pady=10)
        self.convert_button = tk.Button(self.top_frame, text="Convert to JSON", command=self.convert_to_json)
        self.convert_button.grid(row=3, column=2, pady=10)

        self.headers_canvas.update_idletasks()
        self.headers_canvas.config(scrollregion=self.headers_canvas.bbox("all"))

    def load_csv_file(self):
        """Opens a file dialog to select the input CSV file."""
        filepath = filedialog.askopenfilename(defaultextension=".csv", filetypes=[("CSV files", "*.csv")])
        if filepath:
            self.csv_path_entry.delete(0, tk.END)
            self.csv_path_entry.insert(0, filepath)
            self.csv_filepath = filepath
            filename = os.path.basename(filepath)
            default_json_name = os.path.splitext(filename)[0] + ".json"
            self.json_path_entry.delete(0, tk.END)
            self.json_path_entry.insert(0, default_json_name)

    def save_json_file(self):
        """Opens a file dialog to specify the output JSON file path."""
        filepath = filedialog.asksaveasfilename(defaultextension=".json", filetypes=[("JSON files", "*.json")])
        if filepath:
            self.json_path_entry.delete(0, tk.END)
            self.json_path_entry.insert(0, filepath)
    
    def load_headers(self):
        """
        Reads headers from the selected CSV and creates UI controls for each,
        including grouping options.
        """
        for widget in self.headers_frame.winfo_children():
            widget.destroy()

        self.headers.clear()
        self.header_widgets.clear()
        
        if not self.csv_filepath or not os.path.exists(self.csv_filepath):
            messagebox.showerror("Error", "Please select a valid CSV file.")
            return

        try:
            df = pd.read_csv(self.csv_filepath, nrows=1, keep_default_na=False)
            self.headers = list(df.columns)
            
            # Default configuration from the screenshot
            default_config = {
                'KeyLevel_1': {'role': 'Value as Key', 'nested_under': 'root'},
                'KeyLevel_2': {'role': 'Value as Key', 'nested_under': 'KeyLevel_1'},
                'KeyLevel_3': {'role': 'Value as Key', 'nested_under': 'KeyLevel_2'},
                'KeyLevel_4': {'role': 'Value as Key', 'nested_under': 'KeyLevel_3'},
                'KeyLevel_5': {'role': 'Value as Key', 'nested_under': 'KeyLevel_4'},
                'default_value': {'role': 'Simple Value', 'nested_under': 'KeyLevel_5'},
                'Manufacturer_value': {'role': 'Hierarchical Key', 'nested_under': 'KeyLevel_5', 'part_name': 'parts'},
                'Device': {'role': 'Hierarchical Key', 'nested_under': 'Manufacturer_value', 'part_name': 'parts'},
                'VISA Command': {'role': 'Simple Value', 'nested_under': 'Device'},
                'validated': {'role': 'Simple Value', 'nested_under': 'Device'},
            }

            # Create a row of controls for each header
            tk.Label(self.headers_frame, text="JSON Key Name", font=("Arial", 10, "bold")).grid(row=0, column=0, padx=5, pady=2)
            tk.Label(self.headers_frame, text="Role", font=("Arial", 10, "bold")).grid(row=0, column=1, padx=5, pady=2)
            tk.Label(self.headers_frame, text="Nested Under", font=("Arial", 10, "bold")).grid(row=0, column=2, padx=5, pady=2)
            tk.Label(self.headers_frame, text="Part Name (e.g., 'contents')", font=("Arial", 10, "bold")).grid(row=0, column=3, padx=5, pady=2)


            for i, header in enumerate(self.headers):
                row_num = i + 1
                
                header_entry = tk.Entry(self.headers_frame, width=20)
                header_entry.insert(0, header)
                header_entry.grid(row=row_num, column=0, sticky="W", padx=5, pady=2)
                
                role_var = tk.StringVar()
                role_dropdown = ttk.Combobox(self.headers_frame, textvariable=role_var, state="readonly",
                                             values=["Hierarchical Key", "Sub Key", "Simple Value", "Value as Key", "Skip"])
                role_dropdown.grid(row=row_num, column=1, padx=5, pady=2)
                
                nested_under_var = tk.StringVar()
                nested_under_dropdown = ttk.Combobox(self.headers_frame, textvariable=nested_under_var, state="readonly", values=["root"])
                nested_under_dropdown.grid(row=row_num, column=2, padx=5, pady=2)
                
                part_name_entry = tk.Entry(self.headers_frame, width=25)
                part_name_entry.grid(row=row_num, column=3, padx=5, pady=2)
                
                self.header_widgets[header] = {
                    "header_entry": header_entry,
                    "role_var": role_var,
                    "nested_under_var": nested_under_var,
                    "nested_under_dropdown": nested_under_dropdown,
                    "part_name_entry": part_name_entry
                }

                # Apply default configuration if it exists
                if header in default_config:
                    config = default_config[header]
                    role_var.set(config['role'])
                    nested_under_var.set(config['nested_under'])
                    if 'part_name' in config:
                        part_name_entry.insert(0, config['part_name'])

                def toggle_widgets(event):
                    role = role_dropdown.get()
                    if role == "Hierarchical Key":
                        part_name_entry['state'] = 'normal'
                    else:
                        part_name_entry.delete(0, tk.END)
                        part_name_entry['state'] = 'disabled'
                    
                    self.update_nested_under_dropdowns()
                    self.preview_json()

                role_dropdown.bind("<<ComboboxSelected>>", toggle_widgets)
            
            self.after(100, self.preview_json)

            self.headers_canvas.update_idletasks()
            self.headers_canvas.config(scrollregion=self.headers_canvas.bbox("all"))

        except Exception as e:
            messagebox.showerror("Error", f"Failed to read CSV headers: {e}")

    def update_nested_under_dropdowns(self):
        """Updates the options in the Nested Under dropdowns based on current roles."""
        parents = ["root"]
        for header, widgets in self.header_widgets.items():
            role = widgets['role_var'].get()
            if role == "Hierarchical Key" or role == "Value as Key":
                parents.append(header)
        
        for header, widgets in self.header_widgets.items():
            widgets['nested_under_dropdown']['values'] = parents
            if widgets['nested_under_var'].get() not in parents:
                widgets['nested_under_var'].set("root")

    def generate_json_from_config(self):
        """
        Helper function to generate JSON data from the current UI configuration.
        """
        self.debug_log = io.StringIO()
        sys.stdout = self.debug_log
        print("Starting JSON generation...\n")

        try:
            df = pd.read_csv(self.csv_filepath, keep_default_na=False)

            sort_by_columns = []
            header_map = {}
            for original_header, widgets in self.header_widgets.items():
                role = widgets["role_var"].get()
                json_key_name = widgets["header_entry"].get()
                nested_under = widgets["nested_under_var"].get()

                config = {
                    "original_header": original_header,
                    "json_key": json_key_name if role not in ["Value as Key"] else None,
                    "role": role,
                    "nested_under": nested_under
                }
                if role == "Hierarchical Key":
                    config["part_name"] = widgets["part_name_entry"].get() or "parts"
                    sort_by_columns.append(original_header)
                elif role == "Value as Key":
                    config["json_key"] = json_key_name
                    sort_by_columns.append(original_header)
                
                header_map[original_header] = config

            df.sort_values(by=sort_by_columns, inplace=True, kind='stable')
            
            print(f"Header Configuration Map: {json.dumps(header_map, indent=2)}")
            print(f"\nSorting by columns: {sort_by_columns}")
            
            root_name = self.root_name_entry.get()
            final_json = {root_name: []}
            
            final_json[root_name] = self.build_json_hierarchy(df, header_map, "root")
            
            if final_json[root_name] == []:
                messagebox.showerror("Error", "The root 'Hierarchical Key' or 'Value as Key' must be selected to form the root of the JSON structure.")
                return {}
            
            print("\nJSON generated successfully.")
            return final_json
        
        except Exception as e:
            messagebox.showerror("Error", f"An error occurred during generation: {e}")
            print(f"Error: {e}")
            return {}

    def preview_json(self):
        """Generates and displays a preview of the JSON output."""
        if not self.csv_filepath or not os.path.exists(self.csv_filepath):
            print("Please select a valid input CSV file to see a preview.")
            self.update_output_with_json({})
            return

        json_data = self.generate_json_from_config()
        # Only proceed if generation was successful and returned a non-empty dictionary
        if json_data:
            self.update_output_with_json(json_data)
            
    def convert_to_json(self):
        """Converts the CSV to JSON and saves the file."""
        json_filepath = self.json_path_entry.get()
        if not json_filepath:
            messagebox.showerror("Error", "Please specify an output JSON file name.")
            return

        json_data = self.generate_json_from_config()
        if not json_data:
            return

        try:
            with open(json_filepath, 'w') as f:
                json.dump(json_data, f, indent=4)
            
            self.update_output_with_json(json_data)
            messagebox.showinfo("Success", f"Successfully converted and saved to {json_filepath}")
        except Exception as e:
            messagebox.showerror("Error", f"Failed to save JSON file: {e}")

    def update_output_with_json(self, data):
        """
        Clears and populates the Treeview and Raw JSON viewer with JSON data.
        """
        # Update Treeview
        for item in self.treeview.get_children():
            self.treeview.delete(item)

        def insert_items(parent, dictionary):
            if isinstance(dictionary, dict):
                for key, value in dictionary.items():
                    if isinstance(value, (dict, list)):
                        node = self.treeview.insert(parent, 'end', text=key, open=True)
                        insert_items(node, value)
                    else:
                        self.treeview.insert(parent, 'end', text=key, values=(value,))
            elif isinstance(dictionary, list):
                for i, item in enumerate(dictionary):
                    if isinstance(item, (dict, list)):
                        node = self.treeview.insert(parent, 'end', text=f"[{i}]", open=True)
                        insert_items(node, item)
                    else:
                        self.treeview.insert(parent, 'end', text=f"[{i}]", values=(item,))

        insert_items('', data)

        # Update Raw JSON viewer
        self.raw_json_text.delete(1.0, tk.END)
        try:
            formatted_json = json.dumps(data, indent=4)
            self.raw_json_text.insert(tk.END, formatted_json)
        except Exception as e:
            self.raw_json_text.insert(tk.END, f"Error formatting JSON: {e}")
        
        sys.stdout = self.original_stdout
        print(self.debug_log.getvalue())
        sys.stdout = self.debug_log
        self.debug_log.seek(0)
        self.debug_log.truncate(0)

    def build_json_hierarchy(self, df, header_map, parent_key):
        """
        Recursively builds the JSON structure from the grouped DataFrame.
        This version now correctly handles multiple grouping keys per level.
        """
        output_list = []
        print(f"\n--- build_json_hierarchy called with parent_key: '{parent_key}' and DataFrame size: {len(df)}")
        
        # Get all headers nested under the current parent_key
        current_level_configs = sorted(
            [h for h in header_map.values() if h['nested_under'] == parent_key and h['role'] != "Skip"],
            key=lambda x: self.headers.index(x['original_header'])
        )

        # Find the first grouping key for this level
        first_grouping_key_config = next((h for h in current_level_configs if h['role'] in ["Hierarchical Key", "Value as Key"]), None)
        
        # Base case: No more grouping keys at this level
        if first_grouping_key_config is None:
            print(f"No more grouping keys for parent_key: '{parent_key}'. Processing simple key-value pairs.")
            output_list = []
            if not df.empty:
                simple_configs = [h for h in current_level_configs if h['role'] in ["Simple Value", "Sub Key"]]
                
                for _, row in df.iterrows():
                    node = {}
                    for header_config in simple_configs:
                        original_header = header_config['original_header']
                        json_key = header_config['json_key']
                        value = row[original_header]
                        
                        if pd.notna(value) and value != '':
                            if isinstance(value, bool):
                                value = str(value).lower()
                            node[json_key] = value
                    if node:
                        output_list.append(node)
            return output_list

        first_grouping_key = first_grouping_key_config['original_header']
        grouped_df = df.groupby(first_grouping_key, sort=False)
        
        for key_value, group in grouped_df:
            node = {}
            
            # Build the current node based on the first grouping key
            if first_grouping_key_config['role'] == "Value as Key":
                # Recursively build the children under this node
                children = self.build_json_hierarchy(group, header_map, first_grouping_key)
                
                # We need to correctly handle the children returned from the recursive call.
                # If there are multiple, they should be merged into a single dictionary.
                merged_children = {}
                if children and isinstance(children, list):
                    for child_dict in children:
                        merged_children.update(child_dict)
                elif children and isinstance(children, dict):
                    merged_children.update(children)
                
                node[key_value] = merged_children
                
            elif first_grouping_key_config['role'] == "Hierarchical Key":
                # Proactively convert key_value to string if it's a boolean
                if isinstance(key_value, bool):
                    key_value = str(key_value).lower()
                
                node[first_grouping_key_config['json_key']] = key_value
                node[first_grouping_key_config['part_name']] = self.build_json_hierarchy(group, header_map, first_grouping_key)
                
            output_list.append(node)
        
        return output_list

if __name__ == "__main__":
    app = CSVToJSONApp()
    app.mainloop()

Recording studio Survival Guide

When it comes to recording studios, it’s easy to obsess over gear—the mics, preamps, monitors, and plugins that shape your sound. But while equipment is critical, it’s often the overlooked details that make or break a session. A forgotten cable, an overheated amp, or even a lack of snacks can grind the creative process to a halt. That’s where this Studio Survival Guide comes in. It’s a practical checklist for everything beyond the gear—cleaning supplies, tools, food, and creature comforts—that keeps sessions running smoothly and everyone focused on making great music. Whether you’re a seasoned engineer or a first-time studio owner, this guide ensures you’re prepared for anything, so the session never skips a beat.

Cleaning Supplies

  • Cable ties (for organizing cables)
  • Compressed air cans (for cleaning gear)
  • Contact cleaner/lube (for maintaining electrical contacts)
  • Deodorant (for personal hygiene during long sessions)
  • Dust covers (for protecting equipment not in use)
  • Fingernail clippers (for personal grooming)
  • First aid kit (for emergencies)
  • Javex, mop, broom (for cleaning floors and surfaces)
  • Light bulbs (for replacing burnt-out lights)
  • Microfiber cloths (for cleaning delicate surfaces like screens or instruments)
  • Mouthwash (for freshening breath)
  • Q-tips (for detailed cleaning of gear or instruments)
  • Rubbing alcohol (for cleaning and disinfecting)
  • Sink (for general cleaning and handwashing)
  • Towel per person (for personal use or spills)
  • Washroom Stock  (for personal hygiene and convenience)

Food

  • Apple juice (for hydration or snacks)
  • Aspirin or Tylenol (for headaches or minor pain)
  • Bottle of scotch (for celebratory or relaxing moments)
  • Breath mints (for freshening breath)
  • Candy, fruit, nuts, sodas, bottled water (for snacks and refreshments)
  • Coffee grinder and beans (for fresh coffee preparation)
  • Condiments (for enhancing food)
  • Cough drops (for soothing sore throats)
  • Drugs (medicinal, herbal, recreational) (as appropriate for the session)
  • Glasses (one per person) (for drinks)
  • Lemon juice, coffee (with all the fixings), tea, herbal tea (for beverages)
  • Local restaurant menu book (for ordering takeout)
  • Microwave or toaster oven (for cooking/warming food)
  • Mini freezer (for ice or frozen snacks)
  • Non-alcoholic beverage alternatives (e.g., sparkling water or mocktails)
  • Plates (for serving food)
  • Reusable water bottles (to reduce waste)
  • Silverware (for eating meals)
  • Snacks for dietary restrictions (e.g., gluten-free, vegan options)

Furnishings

  • Ashtrays (if smoking is permitted)
  • Chairs for everyone (for seating during sessions)
  • Coat rack (for storing outerwear)
  • Comfortable seating (e.g., ergonomic chairs for extended sessions)
  • Eating area (tables and chairs) (for meals or breaks)
  • GOBOs/Soundproof curtains (for windows or additional isolation)
  • Humidifier, possibly air cleaner (for maintaining air quality)
  • Mirror (for personal grooming or visual checks)
  • Mood lighting (to set the vibe for creative work)
  • Music stands with clip-on lights (for holding sheet music)
  • Office dividers (used as ISO dividers for sound separation)
  • Portable heater (for maintaining warmth in cooler environments)
  • Rugs, candles, and lights (for creating a comfortable atmosphere)
  • A small fridge or cooler (to keep perishable items fresh)
  • Storage solutions (bins, shelves for cables and accessories)
  • Waste bins and recycling containers (for managing trash and recyclables)

Gear

  • Adapters and patch cables (RCA, XLR, 1/4″) (for connecting various gear)
  • Backup hard drives (for session safety and data backup)
  • Extra vacuum tubes (for tube-based equipment)
  • Ground lift adapters (for troubleshooting hum and grounding issues)
  • Headphone amps/distributors (for multiple users to monitor audio)
  • Power conditioners or surge protectors (to protect equipment from power surges)
  • Snakes (for connecting gear to the patch bay)
  • Splicing tape and edit block (for tape editing and repair)
  • Studio monitor isolation pads (to reduce vibration and improve sound accuracy)
  • Test tone generator (for calibration and troubleshooting)

Instrument supply

  • Guitars

    • Baby powder (cornstarch-based) (for reducing hand friction while playing)
    • Capo (for changing the pitch of the guitar)
    • Extra guitar patch cables (for connecting guitars to amplifiers or pedals)
    • Guitar stands (for safely holding guitars when not in use)
    • Guitar strings (nylon, acoustic, electric, and bass) (for replacements)
    • Picks (for playing)
    • Slide (for slide guitar techniques)
    • Straps (for comfortable guitar playing while standing)
  • Drums

    • Drum dampening gels or rings (for controlling overtones and resonance)
    • Drum key (for tuning drums)
    • Extra drumheads (for replacements during sessions)
    • Extra drumsticks (for replacements or variety in playing styles)
    • Lug lube (for maintaining tension rods and smooth tuning)
    • Metronome or drum machine (for keeping time)
    • Percussion mallets and brushes (for different tonal textures)
    • Various-sized cymbal felts, nylon cymbal sleeves, snare cords, tension rod washers (for maintaining drum hardware)
  • Chromatic tuner (for tuning instruments accurately)
  • Keyboard stand(s) (for securely holding keyboards)
  • Keyboard sustain pedals (for expressive keyboard playing)
  • Violin rosin (for maintaining bow grip if working with string players)

Office Supplies

  • Backup players (for covering absent musicians)
  • Blank CDRs (for storing recordings or sharing sessions)
  • Business cards (for networking opportunities)
  • City map (for navigating the area)
  • Clothespins or clamps (for holding papers or securing cables)
  • Decent restaurants that deliver (menus on hand) (for ordering meals)
  • Debit/credit card terminal (for client payments)
  • Dry-erase board with markers (for tracking or brainstorming)
  • Good restaurant list (for dining recommendations)
  • Good rolodex of numbers (for contacts like clients, vendors, and repair people)
  • Graph paper (for sketching layouts or diagrams)
  • Guitar Player, Bass Player, Modern Drummer (magazine subscriptions) (for inspiration or industry insights)
  • Label maker (for organizing cables, drawers, or gear)
  • Large wall calendar (for scheduling studio time or tracking projects)
  • Manuals for all equipment (for troubleshooting and reference)
  • Music staff paper (for writing out parts/arrangements)
  • Notepad (for jotting down lyrics, cues, or notes)
  • Pens, pencils, highlighters, and Sharpie markers (for writing and marking)
  • Repair people (contact information for equipment repairs)
  • Rental companies (for gear or equipment rentals)
  • Track sheets (for organizing session details)
  • USB drives or external SSDs (for data backup and transfer)
  • Vacuum (for cleaning the studio)
  • Whiteout (for correcting written errors)

Tools

  • Blue masking tape (for marking spots on the floor)
  • Cable tester/DMM (for testing and troubleshooting cables)
  • Console labeling tape (for marking controls or sections on the console)
  • Crimping tool and connectors (for making custom cables)
  • Digital multimeter (for measuring voltage, current, and resistance)
  • Earplugs (for hearing protection during loud sessions)
  • Fire extinguisher (for safety precautions)
  • Flashlight (for working in dimly lit areas)
  • Gaffer tape (for securing cables and other temporary fixes)
  • Heat gun (for shrink-wrapping or repairs)
  • Matches or a lighter (for igniting or emergency use)
  • Miscellaneous portable fans (for ventilation during long sessions)
  • Multi-tool, screwdriver set, socket set, and soldering/wiring tools (for general repairs and maintenance)
  • Portable phone chargers (for clients or band members)
  • Razor blades (for precise cutting tasks)
  • Roomba (for autonomous cleanup)
  • Safety goggles (for soldering or repairs)
  • Sandpaper (for smoothing surfaces or cleaning contacts)
  • Small step ladder (for reaching high shelves or fixing lights)
  • Small vacuum cleaner (for detailed cleaning)
  • Spare fuses (for outboard gear or amplifiers)
  • Stud finder (for securely mounting or hanging gear)
  • Tape (for general use)
  • Tester (RCA, XLR, 1/4 with polarity checker) (for verifying cable connections)
  • Thermal camera (for locating overheating gear)
  • WD-40 and 3-in-1 oil (for lubricating and maintaining equipment)
  • Weather stripping (for sealing gaps to improve sound isolation)

“Access is the medium”

Quote

“Access is the medium” describes the shift from physical ownership of media (books, CDs, DVDs, etc.) to a digital world where the primary way to consume content is through access, typically via subscriptions or paywalls. Instead of purchasing individual pieces of media, users now gain temporary access to vast libraries of content, often behind paywalls or through streaming services. In this paradigm, access itself becomes the medium through which content is delivered and consumed, emphasizing convenience and immediacy over ownership.

The last meter

Quote

“The last meter” refers to the final connection between an audio device, such as a microphone, headphones, or speakers, and the larger sound system or network. Just as “the last mile” in telecommunications represents the crucial final stretch that delivers service to the end user, “the last meter” in audio engineering highlights the importance of the final cable or wire, which directly impacts the quality and reliability of the sound being transmitted. Despite its short length, this connection is critical for ensuring the integrity of the overall sound system.