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
| # pip install udocker | |
| udocker pull lmsysorg/sglang:latest | |
| udocker create --name=sglang lmsysorg/sglang:latest | |
| udocker setup --nvidia sglang | |
| udocker run \ | |
| --volume="/${PWD}:/workspace" \ |
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
| # pip install udocker | |
| udocker pull vllm/vllm-openai:latest | |
| udocker create --name=vllm vllm/vllm-openai:latest | |
| udocker setup --nvidia --force vllm | |
| udocker run \ | |
| --volume="/${PWD}:/workspace" \ |
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
| # ------------------ node ------------------ | |
| # https://nodejs.org/en/download | |
| # Download and install nvm: | |
| curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash | |
| # in lieu of restarting the shell | |
| \. "$HOME/.nvm/nvm.sh" | |
| # Download and install Node.js: |
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
| // Place your key bindings in this file to override the defaults | |
| [ | |
| // navigation | |
| { | |
| "command": "workbench.action.togglePanel", | |
| "key": "cmd-j", | |
| "when": "vim.mode == 'Normal'" | |
| }, | |
| { | |
| "command": "workbench.action.createTerminalEditor", |
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-exec: Shell assistant using Claude Code CLI | |
| # Usage: claude-exec [options] <natural language description> | |
| # | |
| # Options: | |
| # -h, --help Show help | |
| # -c, --copy Copy command to clipboard instead of executing | |
| # -y, --yes Execute without confirmation | |
| # -v, --verbose Show system info being sent to Claude |
OlderNewer