weehong / VS Code + JetBrains Extension Installers
0 喜欢
0 派生
7 文件
最后活跃于 6 days ago
Bundled installer scripts. VS Code: install.{sh,ps1}. JetBrains IDEs (incl. Gateway / remote-dev-server): install-jetbrains.{sh,ps1}. Each script detects your OS (Windows / macOS / Ubuntu / WSL2) and is interactive.
| 1 | { |
| 2 | "recommendations": [ |
| 3 | "dsznajder.es7-react-js-snippets", |
| 4 | "planbcoding.vscode-react-refactor", |
| 5 | "bradlc.vscode-tailwindcss", |
| 6 | "ms-vscode.vscode-typescript-next", |
| 7 | "yoavbls.pretty-ts-errors", |
| 8 | "christian-kohler.path-intellisense", |
| 9 | "christian-kohler.npm-intellisense", |
| 10 | "dbaeumer.vscode-eslint", |
weehong / Ubuntu and Debian Setup Manager
0 喜欢
0 派生
23 文件
最后活跃于 4 days ago
Hardened install scripts with an interactive menu — Chrome, Firefox, Thunderbird, 1Password, Espanso, LibreOffice, Obsidian, draw.io Desktop, VS Code, JetBrains Toolbox, Bruno, IPATool, Synology NAS auto-mount, IBus Pinyin, Nerd Fonts, qBittorrent LocalSend Telegram Discord.
| 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | set -euo pipefail |
| 4 | |
| 5 | echo "======================================" |
| 6 | echo " Ubuntu Dual-Boot Time Fix Script" |
| 7 | echo " (UTC Method - Highly Recommended)" |
| 8 | echo "======================================" |
| 9 | echo |
weehong / Developer Environment Installer
0 喜欢
0 派生
2 文件
最后活跃于 3 weeks ago
Interactive developer environment bootstrapper for Zsh/Bash with repeatable workstation setup helpers.
| 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | # ======================================================= |
| 4 | # 1. BOOTSTRAPPER: PREFER ZSH, FALLBACK TO BASH |
| 5 | # ======================================================= |
| 6 | if [ -z "${_PREFER_ZSH_BOOTSTRAPPED:-}" ]; then |
| 7 | export _PREFER_ZSH_BOOTSTRAPPED=1 |
| 8 | |
| 9 | # Only attempt to re-execute if $0 is an actual file on disk. |
| 10 | # This prevents the 'can't open input file' error when running |
weehong / .NET Scaffold Script
0 喜欢
0 派生
5 文件
最后活跃于 3 weeks ago
Scaffold scripts and guide for creating .NET projects, including clean architecture boilerplate and shell/PowerShell helpers.
| 1 | #!/bin/bash |
| 2 | |
| 3 | # --- 0. Determine Project Name --- |
| 4 | # Grab the name of the current directory |
| 5 | PROJECT_NAME=$(basename "$PWD") |
| 6 | |
| 7 | echo "📂 Using current directory name as project name: $PROJECT_NAME" |
| 8 | |
| 9 | # --- 1. Configuration --- |
| 10 | FORMAT="slnx" # Options: "sln" or "slnx" |
上一页
下一页