https://github.com/jabrena/setup/blob/main/.devcontainer/devcontainer.json
https://github.com/jabrena/setup/blob/main/.devcontainer/Dockerfile
https://github.com/search?q=path%3A.vscode%2Fmcp.json&type=code
As of April 13, 2025
there are 147 files.
https://code.visualstudio.com/docs/copilot/copilot-customization#_reusable-prompt-files-experimental
To enable prompt files, configure the chat.promptFiles VS Code setting. By default, prompt files are located in the .github/prompts directory of your workspace. You can also specify additional folders where prompt files are located.
Set the chat.promptFiles setting to true for the .github/prompts directory.
Create a .prompt.md file in the .github/prompts directory of your workspace.
https://nox.thea.codes/en/stable/cookbook.html
Note that the recipes and dependencies eg bump2version are out of date.
uv tool install tox --with tox-uv # use uv to install
https://bluesock.org/~willkg/blog/dev/switch_pyenv_to_uv.html
uv python install 3.10 3.11 3.12 3.13
uv tool install --with tox-uv tox
Fast on Linux and Windows, and supports 3-way merging! Diffinity and Meld are a couple of other viable options.
winget install KDE.KDiff3
#requires -RunAsAdministrator | |
# .\Setup-Windows11-VM.ps1 -VMName 'W11' -SwitchName 'Default Switch' -ISOFile 'C:\Users\jeffmill\Downloads\ISO\Windows 11 - Version 22H2.iso' -VMPath 'E:\VM' | |
Param( | |
# Virtual Machine Name | |
[Parameter(Mandatory = $true)][string]$VMName, | |
# Virtual Switch to be used - see Get-VMSwitch | |
[Parameter(Mandatory = $true)][string]$SwitchName, | |
# Full path for the install media (ISO file) |
$ScriptBlock = | |
{ | |
Param([int]$RunNumber) | |
$filename = Join-Path ([IO.Path]::GetTempPath()) "powershell-$RunNumber.doc" | |
'Opening Word ...' | |
$oWord = New-Object -Com Word.Application | |
$oWord.Visible = $true |
Command | Description |
---|---|
rg pattern |
Search pattern in current dir recursively |
rg pattern utils.py |
Search in a single file utils.py |
rg pattern src/ |
Search in dir src/ recursively |
rg '^We' test.txt |
Regex searching support (lines starting with We) |
rg -F '(test)' |
Search literally, i.e., without using regular expression |
rg -i pattern |
Search pattern and ignore case (case-insensitive search) |
rg -S pattern |
Smart case search (match case of pattern) |
rg pattern -g '*.py' |
File globbing (search in certain files), can be used multiple times |