# Guany's Home > Personal home with projects, docs, and uses > Author: Guany > Source: https://www.tlyboy.com > License: MIT > Updated: 2026-03-23 > Full text of all content below ## Docs --- # docs Guany's Documentation --- # macos MacOS ## Configure Proxy ```sh export https_proxy="http://127.0.0.1:7890" export http_proxy="http://127.0.0.1:7890" export all_proxy="socks5://127.0.0.1:7890" ``` ## Show Hidden Files ```sh defaults write com.apple.finder AppleShowAllFiles -bool true; killall Finder ``` ## Reset Launchpad ```sh rm -rf /private$(getconf DARWIN_USER_DIR)com.apple.dock.launchpad; killall Dock ``` ## Reset Desktop and Dock Configuration ```sh defaults delete com.apple.notificationcenterui killall NotificationCenter ``` --- # linux Linux ## Configure Proxy ```sh export https_proxy="http://127.0.0.1:7890" export http_proxy="http://127.0.0.1:7890" export all_proxy="socks5://127.0.0.1:7891" ``` --- # ubuntu Ubuntu ## Configure Alibaba Cloud Mirror ### Back Up Configuration File ```sh sudo cp -a /etc/apt/sources.list /etc/apt/sources.list.bak ``` ### Alibaba Cloud Public Mirror ```sh sudo sed -i "s@http://.*archive.ubuntu.com@https://mirrors.aliyun.com@g" /etc/apt/sources.list sudo sed -i "s@http://.*security.ubuntu.com@https://mirrors.aliyun.com@g" /etc/apt/sources.list ``` ### Alibaba Cloud ECS VPC Mirror ```sh sudo sed -i "s@http://.*archive.ubuntu.com@http://mirrors.cloud.aliyuncs.com@g" /etc/apt/sources.list sudo sed -i "s@http://.*security.ubuntu.com@http://mirrors.cloud.aliyuncs.com@g" /etc/apt/sources.list ``` --- # windows Windows ## Configure Proxy ```powershell [System.Environment]::SetEnvironmentVariable("http_proxy", "http://127.0.0.1:7890", "User") [System.Environment]::SetEnvironmentVariable("https_proxy", "http://127.0.0.1:7890", "User") ``` --- # wsl WSL ## Configure Proxy ```sh export hostip=$(cat /etc/resolv.conf | grep -oP '(?<=nameserver\ ).*') export http_proxy="http://$hostip:7890" export https_proxy="http://$hostip:7890" ``` --- # zsh Zsh ## Installation ```sh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" ``` ```sh cd ~/.oh-my-zsh/plugins ``` ```sh gcl https://github.com/zsh-users/zsh-autosuggestions.git ``` ```sh gcl https://github.com/zsh-users/zsh-syntax-highlighting.git ``` ```sh gcl https://github.com/agkozak/zsh-z.git ``` ```sh cd ~ ``` ```sh curl -sS https://starship.rs/install.sh | sh ``` ## Usage ```sh plugins=( git command-not-found zsh-autosuggestions zsh-syntax-highlighting zsh-z ) ``` ```sh eval "$(starship init zsh)" ``` ```sh function i() { cd ~/i/$1 } ``` ## config [⚙︎ Guany config](https://github.com/tlyboy/config) --- # powershell PowerShell ## Installation ```powershell Install-Module posh-git -Scope CurrentUser ``` ```powershell Install-Module git-aliases -Scope CurrentUser -AllowClobber ``` ```powershell Install-Module z -AllowClobber ``` ```powershell winget install --id Starship.Starship ``` ```powershell winget install gerardog.gsudo ``` ## Usage ```powershell Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete ``` ```powershell Import-Module posh-git Import-Module git-aliases -DisableNameChecking Import-Module z ``` ```powershell Invoke-Expression (&starship init powershell) ``` ```powershell Set-Alias -Name la -Value Get-ChildItem ``` ```powershell function i { param ( [string]$DirectoryName ) Set-Location -Path "$HOME\i\$DirectoryName" } ``` ## powershell-profile [⚙︎ Guany Powershell profile](https://github.com/tlyboy/powershell-profile/) --- # Ghostty Ghostty terminal emulator ## Settings Config file location: `~/Library/Application Support/com.mitchellh.ghostty/config.ghostty` ```ini font-family = "FiraCode Nerd Font" font-family-bold = "FiraCode Nerd Font" font-family-italic = "FiraCode Nerd Font" font-family-bold-italic = "FiraCode Nerd Font" font-size = 16 font-feature = calt font-feature = liga theme = light:vitesse-light,dark:vitesse-dark custom-shader = ~/.config/ghostty/shaders/cursor_warp.glsl custom-shader = ~/.config/ghostty/shaders/ripple_cursor.glsl custom-shader-animation = always ``` ## Theme Install [vitesse-ghostty-theme](https://github.com/hamlim/vitesse-ghostty-theme): ```sh git clone https://github.com/hamlim/vitesse-ghostty-theme.git ~/.config/ghostty/themes ``` ## Shader Install [ghostty-cursor-shaders](https://github.com/sahaj-b/ghostty-cursor-shaders): ```sh git clone https://github.com/sahaj-b/ghostty-cursor-shaders.git ~/.config/ghostty/shaders ``` --- # warp Warp ## Theme [warp-theme-vitesse](https://github.com/HiDeoo/warp-theme-vitesse) **macOS** ```sh mkdir -p $HOME/.warp/themes git clone https://github.com/HiDeoo/warp-theme-vitesse.git /tmp/warp-theme-vitesse cp /tmp/warp-theme-vitesse/*.yaml $HOME/.warp/themes/ ``` **Windows** ```powershell New-Item -Path "$env:APPDATA\warp\Warp\data\themes" -ItemType Directory -Force git clone https://github.com/HiDeoo/warp-theme-vitesse.git "$env:TEMP\warp-theme-vitesse" Copy-Item "$env:TEMP\warp-theme-vitesse\*.yaml" "$env:APPDATA\warp\Warp\data\themes\" ``` ## Reset Command History **macOS** ```sh rm -r "$HOME/Library/Group Containers/2BBY89MBSN.dev.warp/Library/Application Support/dev.warp.Warp-Stable/warp.sqlite" ``` **Windows** ```powershell Remove-Item "$env:LOCALAPPDATA\warp\Warp\data\warp.sqlite" ``` --- # windows-terminal Windows Terminal ## profiles.defaults ```json { "bellStyle": "none", "colorScheme": "Vitesse Dark", "font": { "face": "FiraCode Nerd Font" } } ``` ## profiles.list ```json [ { "commandline": "C:\\Program Files\\PowerShell\\7\\pwsh.exe -NoLogo" } ] ``` ## schemes ```json { "background": "#121212", "black": "#393A34", "blue": "#6394BF", "brightBlack": "#777777", "brightBlue": "#6394BF", "brightCyan": "#5EAAB5", "brightGreen": "#4D9375", "brightPurple": "#D9739F", "brightRed": "#CB7676", "brightWhite": "#FFFFFF", "brightYellow": "#E6CC77", "cursorColor": "#CDC9BD", "cyan": "#5EAAB5", "foreground": "#CDCABE", "green": "#4D9375", "name": "Vitesse Dark", "purple": "#D9739F", "red": "#CB7676", "selectionBackground": "#252525", "white": "#CDCABE", "yellow": "#E6CC77" } ``` --- # vscode VS Code ## settings.json ```json { "claudeCode.useTerminal": true, "editor.cursorSmoothCaretAnimation": "on", "editor.fontFamily": "'FiraCode Nerd Font', 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace", "editor.fontLigatures": true, "editor.fontSize": 16, "editor.gotoLocation.multipleDefinitions": "goto", "editor.guides.bracketPairs": "active", "editor.smoothScrolling": true, "extensions.ignoreRecommendations": true, "files.readonlyInclude": { "**/.cargo/git/checkouts/**/*.rs": true, "**/.cargo/registry/src/**/*.rs": true, "**/lib/rustlib/src/rust/library/**/*.rs": true }, "files.simpleDialog.enable": true, "git.openRepositoryInParentFolders": "always", "github.gitProtocol": "ssh", "gitlens.ai.model": "vscode", "gitlens.ai.vscode.model": "copilot:gpt-4.1", "gitlens.graph.layout": "editor", "i18n-ally.displayLanguage": "zn", "liveServer.settings.donotShowInfoMsg": true, "rust-analyzer.checkOnSave": false, "security.workspace.trust.enabled": false, "terminal.integrated.cursorBlinking": true, "terminal.integrated.cursorStyle": "line", "terminal.integrated.fontSize": 16, "terminal.integrated.smoothScrolling": true, "typescript.experimental.useTsgo": true, "where-am-i.colorful": false, "window.autoDetectColorScheme": true, "window.dialogStyle": "custom", "window.nativeTabs": true, "workbench.activityBar.orientation": "vertical", "workbench.colorTheme": "Vitesse Dark", "workbench.iconTheme": "file-icons", "workbench.list.smoothScrolling": true, "workbench.preferredDarkColorTheme": "Vitesse Dark", "workbench.preferredLightColorTheme": "Vitesse Light", "workbench.productIconTheme": "icons-carbon", "workbench.startupEditor": "none" } ``` ## vscode-profile [⚙︎ Guany VS Code profile](https://github.com/tlyboy/vscode-profile/) --- # git Git ## Disable Automatic CRLF Line Ending Conversion ```sh git config --global core.autocrlf false ``` ## Configure credential helper ### WSL ```sh git config --global credential.helper "/mnt/c/Program\ Files/Git/mingw64/bin/git-credential-manager.exe" ``` ### Linux ```sh git config --global credential.helper store ``` ## Set Default Branch to main ```sh git config --global init.defaultBranch main ``` ## Configure User Name and Email ```sh git config --global user.name "Your Name" ``` ```sh git config --global user.email "youremail@domain.com" ``` ## Configure lfs ```sh git lfs install ``` ## config [⚙︎ Guany Git config](https://github.com/tlyboy/config/blob/main/.gitconfig) --- # ssh SSH ## Generate a New SSH Key ```sh ssh-keygen -t ed25519 -C "your_email@example.com" ``` ## View SSH Key ### macOS / Linux ```sh cat ~/.ssh/id_ed25519.pub ``` ### Windows (PowerShell) ```powershell cat $HOME\.ssh\id_ed25519.pub ``` ## Configure GitHub to Use SSH over the HTTPS Port ``` Host github.com HostName ssh.github.com Port 443 User git ``` ## Test SSH Connection ```sh ssh -T git@github.com ``` ## Configure Proxy ``` ProxyCommand nc -X 5 -x 127.0.0.1:7890 %h %p ``` ## SSH Agent Key Management ### Start ssh-agent Service on Windows On Windows, you need to start the ssh-agent service before using it: ```powershell Set-Service -Name ssh-agent -StartupType Automatic Start-Service ssh-agent ``` ### Add Key to SSH Agent macOS / Linux: ```sh ssh-add ~/.ssh/id_ed25519 ``` Windows (PowerShell): ```powershell ssh-add $HOME\.ssh\id_ed25519 ``` ### List Added Keys ```sh ssh-add -l ``` ### Remove Key from SSH Agent Remove a specific key: macOS / Linux: ```sh ssh-add -d ~/.ssh/id_ed25519 ``` Windows (PowerShell): ```powershell ssh-add -d $HOME\.ssh\id_ed25519 ``` Remove all keys: ```sh ssh-add -D ``` --- # docker Docker ## Set Up Docker's apt Repository ### Official ```sh # Add Docker's official GPG key: sudo apt update sudo apt install ca-certificates curl sudo install -m 0755 -d /etc/apt/keyrings sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc sudo chmod a+r /etc/apt/keyrings/docker.asc # Add the repository to Apt sources: sudo tee /etc/apt/sources.list.d/docker.sources </dev/null || command claude ${=base_args} "$@" } ``` **PowerShell** ```powershell function claude { $baseArgs = @("--allow-dangerously-skip-permissions", "--permission-mode", "plan") $claudePath = (Get-Command claude -CommandType Application).Source & $claudePath @baseArgs -c @args 2>$null if ($LASTEXITCODE -ne 0) { & $claudePath @baseArgs @args } } ``` --- # Codex OpenAI Codex CLI ## MCP Servers Config file location: `~/.codex/config.toml` ```toml [mcp_servers.context7] command = "npx" args = ["-y", "@upstash/context7-mcp"] [mcp_servers.shadcn] command = "npx" args = ["shadcn@latest", "mcp"] ``` --- # fastfetch Fastfetch is a neofetch-like system information fetching tool, but much faster. ## Installation ### macOS (Homebrew) ```sh brew install fastfetch ``` ### Windows (winget) ```sh winget install fastfetch ``` ### Ubuntu (PPA) ```sh # Add the Fastfetch PPA sudo add-apt-repository ppa:zhangsongcui3371/fastfetch # Update the package list sudo apt update # Install Fastfetch sudo apt install fastfetch ``` ## Usage ```sh fastfetch ``` --- # Raycast An efficient launcher and productivity tool. ## Extension - [MyIP](https://www.raycast.com/Kang/myip) - View your local IP address. - [Brew](https://www.raycast.com/nhojb/brew) - Search and install Homebrew packages. - [Kill Process](https://www.raycast.com/rolandleth/kill-process) - Quickly terminate processes. --- # ZeroTier ZeroTier command-line guide. ## Uninstallation ### macOS ```sh sudo "/Library/Application Support/ZeroTier/One/uninstall.sh" ``` Remove user configuration (reset settings): ```sh rm -rf ~/Library/Application\ Support/ZeroTier ``` ## Common Commands ### Join a Network ```sh sudo zerotier-cli join ``` ### Leave a Network ```sh sudo zerotier-cli leave ``` ### Check Status ```sh sudo zerotier-cli status ``` ### List Joined Networks ```sh sudo zerotier-cli listnetworks ``` ### List Peers ```sh sudo zerotier-cli listpeers ``` ## Configure Moon Join a Moon: ```sh sudo zerotier-cli orbit ``` Leave a Moon: ```sh sudo zerotier-cli deorbit ``` --- # ollama Ollama CORS & LAN Access ## Environment Variables | Variable | Purpose | Default | | ---------------- | -------------------- | ---------------------- | | `OLLAMA_HOST` | Bind address | `127.0.0.1:11434` | | `OLLAMA_ORIGINS` | Allowed CORS origins | `127.0.0.1`, `0.0.0.0` | Set `OLLAMA_HOST=0.0.0.0:11434` to allow LAN access, and `OLLAMA_ORIGINS=*` to allow all cross-origin requests. ## macOS Ollama runs as a GUI app managed by `launchd`. Environment variables in `~/.zshrc` do **not** affect it. ### Set Environment Variables ```sh launchctl setenv OLLAMA_HOST "0.0.0.0:11434" launchctl setenv OLLAMA_ORIGINS "*" ``` Then quit and relaunch Ollama from the menu bar. > Note: `launchctl setenv` does not persist across reboots. To persist, run `ollama serve` manually or create a LaunchAgent plist. ### Verify ```sh curl http://localhost:11434/api/version ``` ## Windows ### Set Environment Variables ```powershell [System.Environment]::SetEnvironmentVariable("OLLAMA_HOST", "0.0.0.0:11434", "User") [System.Environment]::SetEnvironmentVariable("OLLAMA_ORIGINS", "*", "User") ``` Then quit and relaunch Ollama from the Start menu. ### Firewall ```powershell New-NetFirewallRule -DisplayName "Ollama API" -Direction Inbound -Protocol TCP -LocalPort 11434 -Action Allow ``` ### Verify ```powershell curl http://127.0.0.1:11434/api/version ``` ## Linux Ollama runs as a systemd service. Use `systemctl edit` to configure environment variables. ### Set Environment Variables ```sh sudo systemctl edit ollama.service ``` Add the following content: ```ini [Service] Environment="OLLAMA_HOST=0.0.0.0:11434" Environment="OLLAMA_ORIGINS=*" ``` Then reload and restart: ```sh sudo systemctl daemon-reload sudo systemctl restart ollama ``` ### Firewall ```sh # UFW sudo ufw allow 11434/tcp # firewalld sudo firewall-cmd --permanent --add-port=11434/tcp sudo firewall-cmd --reload ``` ### Verify ```sh curl http://localhost:11434/api/version ``` ## OLLAMA_ORIGINS | Value | Description | | ----------------------------------------- | --------------------- | | `*` | Allow all origins | | `http://localhost:3000` | Allow specific origin | | `http://localhost:3000,https://myapp.com` | Multiple origins | ## Projects --- ## home ▲ Guany's home - Repo: https://github.com/tlyboy/home - Homepage: https://www.tlyboy.com/ - Language: TypeScript - Stars: 1 ### README # home ▲ Guany's home | Category | Stack | | --------- | ----------------------------------------- | | Framework | Next.js 16 (App Router) | | UI | shadcn/ui + Tailwind CSS 4 | | Content | Streamdown | | I18n | next-intl | | Config | [Co](https://co.tlyboy.com) config center | | Deploy | Vercel / Netlify / Docker | ## Install ```bash pnpm install cp .env.example .env.local ``` ### Environment Variables | Variable | Required | Description | | -------------- | -------- | ----------------------------------------------- | | `GITHUB_TOKEN` | Yes | GitHub personal access token | | `CO_API` | No | Co config center API for Hero background config | | `TO_API_URL` | No | to short link service API base URL | | `TO_API_KEY` | No | to API key for external link tracking | ## Usage ### Development ```bash pnpm dev ``` ### Build ```bash pnpm build ``` ### Hero Background Config Hero background is managed via [Co](https://co.tlyboy.com) config center (`home/ui/hero`). Falls back to Bing daily wallpaper if not configured. ```json { "hero": { "mode": "bing" } } ``` ```json { "hero": { "mode": "custom", "custom": { "url": "https://example.com/image.jpg", "position": "center" } } } ``` | Field | Description | | ---------------------- | --------------------------------------------------- | | `hero.mode` | `"bing"` or `"custom"` | | `hero.custom.url` | Absolute image URL | | `hero.custom.position` | CSS `background-position` value, default `"center"` | ### External Link Tracking When `TO_API_URL` and `TO_API_KEY` are set, external links in articles are redirected through the to short link service for click tracking. Falls back to direct link if not configured. ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## zero-text 🕵️ Zero-width text steganography generator - Repo: https://github.com/tlyboy/zero-text - Homepage: https://zero-text.tlyboy.com/ - Language: TypeScript - Stars: 4 ### README # Zero Text 🕵️ Zero-width text steganography generator - ✅ Convert any content (including CJK characters and emoji) to zero-width characters - ✅ Embed encrypted messages into normal host text (appears completely normal) - ✅ One-click decryption to extract hidden messages - ✅ Auto-paste, copy button, and bidirectional interaction - ✅ Pure frontend implementation, **no data upload, safe and reliable** ## Install ```bash git clone https://github.com/tlyboy/zero-text.git ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ### Encrypt & Embed 1. Enter the text you want to hide (e.g., `my password is 123456`) 2. Enter a normal-looking "host text" (e.g., `Hello, how are you today?`) 3. Click the **Encrypt & Embed** button 4. The tool inserts zero-width characters into the host text, producing text that looks completely normal ### Decrypt & Extract 1. Paste the text containing hidden information into the "Decrypt Input" area 2. Click **Decrypt & Extract** 3. The tool will recover the originally hidden text ### Technical Implementation - Uses the following Unicode characters: - `\u200B` (zero-width space) to represent `0` - `\u200C` (zero-width non-joiner) to represent `1` - Original text -> UTF-8 -> binary -> zero-width characters -> inserted into host text - Decryption reverses the above process - All encryption / decryption operations are performed locally in the browser with no data stored or uploaded ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## t-build 📦 T-Build - Repo: https://github.com/tlyboy/t-build - Language: TypeScript - Stars: 1 ### README # t-build 📦 T-Build - Project build management system A project build management tool based on Next.js, supporting multi-project management, Git integration, and build artifact downloads. - Multi-project management: add, edit, and delete projects - Git integration: clone projects from Git, automatically pull the latest code before building - Credential management: SSH keys and HTTPS authentication (encrypted storage) - Build management: execute build commands, view real-time logs - Artifact download: configure build artifact paths and download as a package with one click ## Install ```bash git clone https://github.com/tlyboy/t-build.git ``` ## Usage This project uses [Node.js](https://nodejs.org/) (version 24.x) and [pnpm](https://pnpm.io/). Make sure they are installed locally. ```sh pnpm install pnpm dev pnpm build pnpm start ``` ### Deployment ```sh pnpm build pnpm start ``` Supports building all types of projects, including desktop applications like Tauri and Electron (requires the corresponding build environment installed on the host machine). ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## md2any 🛠️ md2any - Repo: https://github.com/tlyboy/md2any - Homepage: https://md2any.tlyboy.com/ - Language: TypeScript - Stars: 1 ### README # md2any 🛠️ md2any ## Install ```bash git clone https://github.com/tlyboy/md2any.git ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## ai-web 🤖 AI Web - Repo: https://github.com/tlyboy/ai-web - Language: TypeScript - Stars: 1 ### README # ai-web 🤖 AI Web powered by AI SDK and Streamdown | Category | Stack | | --------- | -------------------------- | | Framework | Next.js 16 (App Router) | | UI | shadcn/ui | | AI | AI SDK | | Markdown | Streamdown | | i18n | next-intl (English / 中文) | | Styling | Tailwind CSS 4 | ## Install ```bash pnpm install ``` ## Usage ### Development ```bash pnpm dev ``` ### Build ```bash pnpm build pnpm start ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## shadcn-next-starter 🚀 shadcn next starter - Repo: https://github.com/tlyboy/shadcn-next-starter - Language: TypeScript - Stars: 1 ### README # shadcn-next-starter 🚀 shadcn Next starter ## Install ```bash npx degit tlyboy/shadcn-next-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## next-starter 🚀 Next starter - Repo: https://github.com/tlyboy/next-starter - Language: TypeScript - Stars: 1 ### README # next-starter 🚀 Next starter ## Install ```bash npx degit tlyboy/next-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## vue-starter 🚀 Vue starter - Repo: https://github.com/tlyboy/vue-starter - Language: Vue - Stars: 2 ### README # vue-starter 🚀 Vue starter ## Install ```bash npx degit tlyboy/vue-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## vant-vue-starter 🚀 Vant Vue starter - Repo: https://github.com/tlyboy/vant-vue-starter - Language: Vue - Stars: 4 ### README # vant-vue-starter 🚀 Vant Vue starter ## Install ```bash npx degit tlyboy/vant-vue-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## uni-starter 🚀 uni starter - Repo: https://github.com/tlyboy/uni-starter - Language: TypeScript - Stars: 2 ### README # uni-starter 🚀 uni-app starter ## Install ```bash npx degit tlyboy/uni-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## tauri-vue-starter 🚀 Tauri Vue starter - Repo: https://github.com/tlyboy/tauri-vue-starter - Language: TypeScript - Stars: 1 ### README # tauri-vue-starter 🚀 Tauri Vue starter ## Install ```bash npx degit tlyboy/tauri-vue-starter my-project ``` ## Usage Requires [Rust](https://www.rust-lang.org/) to be installed. ```bash pnpm install pnpm tauri dev pnpm tauri build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## tauri-shadcn-react-starter 🚀 Tauri shadcn react starter - Repo: https://github.com/tlyboy/tauri-shadcn-react-starter - Language: TypeScript - Stars: 1 ### README # tauri-shadcn-react-starter 🚀 Tauri shadcn React starter ## Install ```bash npx degit tlyboy/tauri-shadcn-react-starter my-project ``` ## Usage Requires [Rust](https://www.rust-lang.org/) to be installed. ```bash pnpm install pnpm tauri dev pnpm tauri build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## tauri-react-starter 🚀 Tauri React starter - Repo: https://github.com/tlyboy/tauri-react-starter - Language: TypeScript - Stars: 1 ### README # tauri-react-starter 🚀 Tauri React starter ## Install ```bash npx degit tlyboy/tauri-react-starter my-project ``` ## Usage Requires [Rust](https://www.rust-lang.org/) to be installed. ```bash pnpm install pnpm tauri dev pnpm tauri build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## shadcn-react-starter 🚀 shadcn react starter - Repo: https://github.com/tlyboy/shadcn-react-starter - Language: TypeScript - Stars: 1 ### README # shadcn-react-starter 🚀 shadcn React starter ## Install ```bash npx degit tlyboy/shadcn-react-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## react-starter 🚀 React starter - Repo: https://github.com/tlyboy/react-starter - Language: TypeScript - Stars: 1 ### README # react-starter 🚀 React starter ## Install ```bash npx degit tlyboy/react-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## nuxt-starter 🚀 Nuxt starter - Repo: https://github.com/tlyboy/nuxt-starter - Language: Vue - Stars: 1 ### README # nuxt-starter 🚀 Nuxt starter ## Install ```bash npx degit tlyboy/nuxt-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## netfresh 🛜 NetFresh - Repo: https://github.com/tlyboy/netfresh - Language: TypeScript - Stars: 1 ### README # NetFresh 🛜 A Windows desktop tool for cleaning up stale network profiles and renumbering them | Category | Stack | | --------- | ---------------------------------------------- | | Framework | React 19 + TypeScript | | UI | Tailwind CSS 4 + shadcn/ui | | Backend | Rust + Tauri 2.0 | | Registry | winreg + PowerShell `Get-NetConnectionProfile` | ## Install ```bash pnpm install ``` ## Usage > Requires administrator privileges — the app auto-elevates via UAC on launch. ### Development ```bash pnpm tauri dev ``` ### Build ```bash pnpm tauri build ``` ### Features - List all network profiles with active/stale/offline status - One-click cleanup of stale auto-numbered profiles + sequential renumbering - Inline rename any profile by clicking its name - Delete individual profiles with confirmation - Auto backup before any destructive operation (exports .reg file) - Dark/light theme - i18n support (English / Chinese) ### How It Works Windows creates a new network profile every time it detects a "new" network, auto-naming them "Network", "Network 2", "Network 3"... The numbers only go up, never reset. VPN / ZeroTier reconnects, router resets, and VM adapter changes all inflate the numbering. Profiles are stored at: ``` HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Profiles\{GUID} ``` Key fields: `ProfileName`, `Category` (0=Public, 1=Private, 2=Domain), `NameType` (0x6=auto-numbered, 0x35=custom name). Cleanup logic: 1. Backup registry to `.reg` file 2. Delete inactive auto-numbered profiles 3. Renumber remaining active auto-numbered profiles sequentially 4. Skip custom-named profiles ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## element-plus-vue-starter 🚀 Element Plus Vue starter - Repo: https://github.com/tlyboy/element-plus-vue-starter - Language: TypeScript - Stars: 3 ### README # element-plus-vue-starter 🚀 Element Plus Vue starter ## Install ```bash npx degit tlyboy/element-plus-vue-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## element-plus-nuxt-starter 🚀 Element Plus Nuxt starter - Repo: https://github.com/tlyboy/element-plus-nuxt-starter - Language: Vue - Stars: 1 ### README # element-plus-nuxt-starter 🚀 Element Plus Nuxt starter ## Install ```bash npx degit tlyboy/element-plus-nuxt-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## apichat 🤖 A modern API client built with Tauri - Repo: https://github.com/tlyboy/apichat - Language: TypeScript - Stars: 8 ### README # ApiChat 🤖 A modern API client built with Tauri - 🚀 Built with Tauri 2.0 + React 19 for excellent performance - 🎨 Dark / Light theme support - 🌐 i18n support (English, 简体中文) - 📱 Cross-platform support (macOS, Windows, Linux) - 🔌 Built-in MCP Server for AI integration - 📦 OpenAPI import / export - 📝 Request history - 🔗 WebSocket client ## Install ### Download from Releases Go to the [Releases](https://github.com/tlyboy/apichat/releases) page and download the installer for your platform. ### Build from Source Requires [Rust](https://www.rust-lang.org/) and [Bun](https://bun.sh/) to be installed. ```bash git clone https://github.com/tlyboy/apichat.git cd apichat pnpm install pnpm tauri dev ``` ## MCP Server ApiChat includes a built-in MCP (Model Context Protocol) server that allows AI assistants to interact with your saved APIs, history, and WebSocket connections. ### Configuration **Claude Code** (`.mcp.json`): ```json { "mcpServers": { "apichat": { "type": "http", "url": "http://localhost:45677/mcp" } } } ``` **Codex** (`.codex/config.toml`): ```toml [mcp_servers.apichat] url = "http://localhost:45677/mcp" ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## t-talk 💬 T-Talk - Repo: https://github.com/tlyboy/t-talk - Language: TypeScript - Stars: 1 ### README # T-Talk A modern instant messaging desktop application built with Tauri 2.0 + React 19 + Supabase. ## Features - **Auth** - Email/password, GitHub OAuth, Cloudflare Turnstile - **Chat** - Private & group chat with real-time messaging - **Friends** - Search, add, manage friends with online status - **Markdown** - Rich message rendering with code highlighting (Streamdown) - **File Upload** - Client-side S3-compatible storage (R2, AWS S3, MinIO) - **i18n** - Chinese & English with auto browser detection - **Theme** - Dark/light/system with View Transition animation ## Tech Stack - **Frontend** - React 19, TypeScript, Tailwind CSS 4, shadcn/ui - **Backend** - Supabase (Auth, Database, Realtime) - **Desktop** - Tauri 2.0 - **Storage** - User-configured S3-compatible (client-side upload) ## Development Requires [Rust](https://www.rust-lang.org/) and [Node.js 24](https://nodejs.org/). ```bash pnpm install pnpm tauri dev ``` ## Build ```bash pnpm tauri build ``` ## Environment Variables Copy `.env.example` to `.env.local` and fill in your values. ## License [MIT](https://raw.githubusercontent.com/tlyboy/t-talk/main/LICENSE) © Guany --- ## vitepress-starter 🚀 VitePress starter - Repo: https://github.com/tlyboy/vitepress-starter - Language: Dockerfile - Stars: 2 ### README # vitepress-starter 🚀 VitePress starter ## Install ```bash npx degit tlyboy/vitepress-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## slidev-starter 🚀 Slidev starter - Repo: https://github.com/tlyboy/slidev-starter - Language: Vue - Stars: 1 ### README # slidev-starter 🚀 Slidev starter ## Install ```bash npx degit tlyboy/slidev-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## nitro-starter 🚀 Nitro starter - Repo: https://github.com/tlyboy/nitro-starter - Language: Dockerfile - Stars: 1 ### README # nitro-starter 🚀 Nitro starter ## Install ```bash npx degit tlyboy/nitro-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## mcp-server-starter 🚀 mcp server starter - Repo: https://github.com/tlyboy/mcp-server-starter - Language: TypeScript - Stars: 1 ### README # mcp-server-starter 🚀 MCP server starter ## Install ```bash npx degit tlyboy/mcp-server-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## mcp-client-starter 🚀 mcp client starter - Repo: https://github.com/tlyboy/mcp-client-starter - Language: TypeScript - Stars: 1 ### README # mcp-client-starter 🚀 MCP client starter ## Install ```bash npx degit tlyboy/mcp-client-starter my-project ``` ## Usage ```bash pnpm install pnpm dev pnpm build ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## vscode-profile ⚙︎ Guany VS Code profile - Repo: https://github.com/tlyboy/vscode-profile - Stars: 1 ### README # vscode-profile ⚙︎ Guany VS Code profile --- ## tlyboy ⚙︎ Config files for my GitHub profile - Repo: https://github.com/tlyboy/tlyboy - Stars: 1 ### README
Guany Guany
Guany
--- ## powershell-profile ⚙︎ Guany Powershell profile - Repo: https://github.com/tlyboy/powershell-profile - Language: PowerShell - Stars: 1 ### README # powershell-profile ⚙︎ Guany Powershell profile --- ## config ⚙︎ Guany config - Repo: https://github.com/tlyboy/config - Language: Shell - Stars: 2 ### README # config ⚙︎ Guany config --- ## compose-starter 🐋 compose starter - Repo: https://github.com/tlyboy/compose-starter - Language: HTML - Stars: 2 ### README # compose-starter 🐋 A collection of Docker Compose configuration templates for quickly starting common services. ## Install ```bash # Pull a specific service template npx degit tlyboy/compose-starter/caddy caddy npx degit tlyboy/compose-starter/caddy-ali caddy npx degit tlyboy/compose-starter/caddy-cf caddy npx degit tlyboy/compose-starter/mysql mysql npx degit tlyboy/compose-starter/n8n n8n npx degit tlyboy/compose-starter/nginx nginx npx degit tlyboy/compose-starter/open-webui open-webui npx degit tlyboy/compose-starter/open-webui-cuda open-webui npx degit tlyboy/compose-starter/redis redis npx degit tlyboy/compose-starter/verdaccio verdaccio ``` ## Usage ```bash docker compose up -d ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## bun-starter 🚀 Bun starter - Repo: https://github.com/tlyboy/bun-starter - Language: TypeScript - Stars: 1 ### README # bun-starter 🚀 Bun starter ## Install ```bash bunx degit tlyboy/bun-starter my-project ``` ## Usage ```bash bun install bun run index.ts ``` ## License [MIT](https://opensource.org/licenses/MIT) © Guany --- ## skills 🛠️ Guany skills - Repo: https://github.com/tlyboy/skills - Stars: 1 ### README # skills 🛠️ Guany skills ## Install ```bash npx skills add tlyboy/skills ``` ## Usage | Skill | Description | | -------------- | ----------------------------------------------------------- | | tlyboy-profile | Personal preferences, toolchain, and coding conventions | | tlyboy-starter | Initialize and scaffold new projects from starter templates | | convention | Project conventions and documentation standards | ## License [MIT](https://opensource.org/licenses/MIT) © Guany ## Uses --- # Things I Use ## Hardware - Desktop: AMD Ryzen 7 9800X3D + NVIDIA GeForce RTX 5080 16GB + 32GB DDR5 + 1TB + 4TB - Laptop: MacBook Pro 16-inch (2023) M3 Max 128GB 1TB Space Black / ~~Mechrevo Deep Sea Ghost Z2-R (i7-9750H / RTX 2060 / 32GB / 1TB)~~ - Phone: iPhone 17 Pro Max 2TB Silver / ~~iPhone 15 Pro Max 256GB Black~~ / ~~iPhone SE (2nd Gen) 128GB Silver~~ / ~~iPhone 7 Jet Black~~ / ~~iPhone 6s Silver~~ - Keyboard: Keychron Q6 Max Carbon Black Hot-swappable Red Switches Knob Edition / ~~Dareu EK925 Waterproof Edition Black Red Switches~~ - Mouse: Logitech G PRO X SUPERLIGHT 2 DEX (GPW4 Hawkeye) / ~~Logitech G PRO X SUPERLIGHT~~ / ~~Logitech G502 HERO~~ - Controller: DualSense Wireless Controller White - Monitor: AOC U27G3X 27-inch 4K 160Hz - Headphones: AirPods Pro (2nd Gen) Lightning Charging Case / ~~Audio-Technica ATH-SR30BT Honkai Impact 3rd x Yae Sakura Collab Edition~~ - Speaker: Edifier HECATE G1500 BAR