Skip to content

Instantly share code, notes, and snippets.

@wilks7
wilks7 / claude-voice-mode-setup.md
Created February 13, 2026 18:08 — forked from jlmalone/claude-voice-mode-setup.md
Voice Mode for Claude Code — Complete Setup Guide (macOS). Local Whisper STT + Kokoro TTS via VoiceMode MCP.

Voice Mode for Claude Code — Complete Setup Guide (macOS)

Speak to Claude Code and get responses read aloud. Fully local STT (Whisper) and TTS (Kokoro), no API keys needed.

What You Get

You speak → Whisper transcribes locally → Claude responds → (optional) Kokoro speaks response
@wilks7
wilks7 / vmware-autostarts
Created June 25, 2016 21:52 — forked from tommybutler/vmware-autostarts
This LSB-compliant Linux boot init script lets you auto-start VMware virtual machines on a Linux host machine running VMware Workstation. Tested successfully on Debian 7 and assumed safe for any Ubuntu or Ubuntu-based distro as well. May need some minor tweaks before you can use it on CentOS or RHEL.To use this script, follow installation instru…
#!/usr/bin/env bash
### BEGIN INIT INFO
# Provides: vmwareautostart
# Required-Start: $vmware $network $syslog
# Required-Stop: $vmware $network $syslog
# X-Start-Before:
# X-Stop-After:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
@wilks7
wilks7 / gist:0c5e3ab4f5d95c945579
Created December 16, 2015 05:11
SplittingExpenses
//: Playground - noun: a place where people can play
import UIKit
let users = ["Josh","David","Craig","Mike"]
class Expense{
var owees: [String]
var payedBy: String
var price: Double