你是否有過這樣的經驗?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/zsh -f | |
| # Suppress all stderr during cache building | |
| exec 2>/dev/null | |
| # title: "tmux_claude_switcher" | |
| # version: 3.6.1 - sort inactive by recency (newest first) | |
| # description: Claude pane switcher - active panes fresh, inactive sessions cached | |
| # | |
| # ============================================================================ | |
| # TMUX SETUP TUTORIAL | |
| # ============================================================================ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| hellow gist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Claude Code Statusline Script | |
| # A custom statusline for Claude Code CLI with real-time usage metrics | |
| # | |
| # ============================================================================ | |
| # INSTALLATION | |
| # ============================================================================ | |
| # | |
| # 1. Download this script: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"name":"lizard.quarto.basic","settings":"{\"settings\":\"{\\n \\\"files.associations\\\": {\\n \\\"renv.lock\\\": \\\"json\\\"\\n },\\n \\\"workbench.preferredHighContrastColorTheme\\\": \\\"Catppuccin Latte\\\",\\n \\\"positron.assistant.enable\\\": true,\\n \\\"positron.assistant.alwaysEnableApplyInEditorAction\\\": true,\\n \\\"positron.assistant.followups.enable\\\": true,\\n \\\"claudeCode.preferredLocation\\\": \\\"panel\\\",\\n \\\"window.newWindowProfile\\\": \\\"Default\\\"\\n}\"}","extensions":"[{\"identifier\":{\"id\":\"anthropic.claude-code\",\"uuid\":\"3c13ae49-babe-45fe-8c48-5e45077a62bf\"},\"displayName\":\"Claude Code for VS Code\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"catppuccin.catppuccin-vsc\",\"uuid\":\"69264e4d-cd3b-468a-8f2b-e69673c7d864\"},\"displayName\":\"Catppuccin for VSCode\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"catppuccin.catppuccin-vsc-icons\",\"uuid\":\"625b9abd-dfac-405b-bf34-e65f46e2f22f\"},\"displayName\":\"Ca |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @article{Clegg2006, | |
| author = {Clegg, D. O. and Reda, D. J. and Harris, C. L. and others}, | |
| title = {Glucosamine, chondroitin sulfate, and the two in combination for painful knee osteoarthritis}, | |
| journal = {New England Journal of Medicine}, | |
| year = {2006}, | |
| volume = {354}, | |
| number = {8}, | |
| pages = {795--808}, | |
| doi = {10.1056/NEJMoa052771}, | |
| note = {葡萄糖胺/軟骨素(膝關節炎):整體族群無減痛效益,僅中重度疼痛亞組顯示可能有效。} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Downloads Organizer Script | |
| # Organizes files by age (3d, 7d, 14d, 30d, old) and then by file type | |
| set -e | |
| # Configuration | |
| DOWNLOADS_DIR="/Users/htlin/Downloads" | |
| DRY_RUN=${DRY_RUN:-false} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Adds a menu to run the converter. | |
| */ | |
| function onOpen() { | |
| DocumentApp.getUi() | |
| .createMenu('Markdown') | |
| .addItem('Convert #, **, and lists', 'convertMarkdownHeadingsAndBold') | |
| .addToUi(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "Removing Microsoft AutoUpdate..." | |
| # Kill any running Microsoft AutoUpdate processes | |
| echo "Killing Microsoft AutoUpdate processes..." | |
| # Find PIDs of Microsoft AutoUpdate processes | |
| PIDS=$(ps aux | grep -i "Microsoft AutoUpdate" | grep -v grep | awk '{print $2}') |
NewerOlder