Skip to content

Instantly share code, notes, and snippets.

View telnet2's full-sized avatar

FreshStage telnet2

View GitHub Profile
@telnet2
telnet2 / .mcp.json
Last active February 20, 2026 07:57
Qwen3-TTS on Apple Silicon - session files (mcp_server, patches, howto)
{
"mcpServers": {
"qwen3-tts-mcp": {
"type": "stdio",
"command": "/Users/joohwi.lee/.local/bin/qwen3-tts-mcp",
"args": [
"--models-dir",
"/Users/joohwi.lee/.local/share/qwen3-tts-models"
],
"env": {}
@telnet2
telnet2 / HOWTO_QWEN3.md
Created February 20, 2026 07:32
Qwen3-TTS on Apple Silicon - Lessons Learned

Qwen3-TTS How-To: Lessons Learned

Models

Three models are installed locally at ~/.local/share/qwen3-tts-models/:

Key Model Notes
1 Qwen3-TTS-12Hz-1.7B-CustomVoice-8bit Default. Best quality. Supports instruct.
4 Qwen3-TTS-12Hz-0.6B-CustomVoice-8bit Faster, less RAM. No instruction control.
@telnet2
telnet2 / SKILL.md
Created February 9, 2026 18:31
local-setup skill: zsh, prezto, sorinx theme, fzf, vim with Vundle

local-setup

Set up a local development environment with zsh, prezto, fzf, the sorinx prompt theme, and vim with Vundle plugins.

Usage

Run this skill on a new machine or container to bootstrap the shell and editor environment.

Instructions

@telnet2
telnet2 / SKILL.md
Last active February 9, 2026 18:10
remote-setup skill: install zellij, mosh, and fzf

remote-setup

Set up essential CLI tools on a remote machine. Detects the platform and installs zellij, mosh, and fzf using the appropriate method.

Usage

Run this skill on a freshly provisioned remote server to bootstrap the interactive environment.

Instructions

@telnet2
telnet2 / prompt_sorinx_setup
Created December 23, 2025 18:49
Sorinx theme setup for prezto
#
# A custom theme based on Sorin that displays git info on the left prompt.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
# Joohwi Lee (sorinx customization)
#
# Screenshots:
# http://i.imgur.com/nrGV6pg.png
#
@telnet2
telnet2 / count-down-days.md
Created August 12, 2025 21:20
Countdown Days: Your Free, Simple Event Tracker for iOS

Countdown Days: Your Free, Simple Event Tracker for iOS

Why Another Countdown App? Because Simplicity Matters

In a world of increasingly complex apps with subscription fees and overwhelming features, Countdown Days stands out by doing one thing exceptionally well: helping you track important dates without the clutter.

Market Overview: The Countdown App Landscape

The iOS App Store features over 200 countdown apps, with the category generating approximately $8 million in annual revenue. However, our research reveals a significant gap in the market:

@telnet2
telnet2 / keyboard.json
Last active September 25, 2025 20:59
VSCode Shortcut
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "alt+r",
"command": "workbench.action.debug.run",
"when": "!inDebugMode"
},
{
"key": "ctrl+f5",
"command": "-workbench.action.debug.run",
@telnet2
telnet2 / prompt_sorin_setup.zsh
Created June 12, 2022 21:00
prompt sorin update
#
# A simple theme that displays relevant, contextual information.
# Move git info to the left prompt and remove the right prompt
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Screenshots:
# http://i.imgur.com/nrGV6pg.png
#
@telnet2
telnet2 / install_protobin.sh
Created March 24, 2022 03:18
Install protobuf binaries
#!/bin/sh
# install protoc v3.19.3ls
brew install protobuf
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
go install github.com/gogo/protobuf/protoc-gen-gogoslick@latest
@telnet2
telnet2 / alias.sh
Created March 10, 2022 18:12
Shell Aliases
alias \
kps='kill $(ps -f |grep -v -E "(zsh|PID|ps)"|awk "{ print \$2}")' \
dc=docker-compose \
g-='git checkout -' \
gm='git checkout master'