- Visual Studio Build Tools 2022
- Visual Studio Build Tools 2019
- Visual Studio Build Tools 2017
- Visual Studio Build Tools 2015
Visual Studio 2022:
| :: This bat file can be used to renew Resharper C# and Resharper C++ every time it runs out | |
| :: It most likely works for all Jetbrains tools, however, I did not test this. | |
| :: I was not able to find the original author for the reg key and the folders that needs to be deleted so if that is you feel free to reach out for credit | |
| @echo off | |
| setlocal enableDelayedExpansion | |
| :confirm | |
| echo Did you stop all Jetbrains services? | |
| echo Jetbrains toolbox AND any other tool using it such as Rider, Visual Studio, ... |
| # Claude Code CLI Environment Variables | |
| # This file lists all environment variables used in cli.js with explanations | |
| process.env.__CFB - Internal Node.js buffer flag | |
| process.env.__MINIMATCH_TESTING_PLATFORM__ - Testing flag for minimatch library platform detection | |
| process.env.ALACRITTY_LOG - Alacritty terminal emulator log level configuration | |
| process.env.ALIYUN_REGION_ID - Alibaba Cloud region identifier for Chinese cloud services | |
| process.env.ANTHROPIC_API_KEY - Primary API key for authenticating with Anthropic's Claude API | |
| process.env.ANTHROPIC_AUTH_TOKEN - Alternative authentication token for Anthropic services | |
| process.env.ANTHROPIC_BASE_URL - Custom base URL for Anthropic API endpoints |
| <domain type='kvm' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'> | |
| <!-- ... --> | |
| <qemu:commandline> | |
| <qemu:arg value='-acpitable'/> | |
| <qemu:arg value='file=/some/path/slic.bin'/> | |
| <qemu:arg value='-acpitable'/> | |
| <qemu:arg value='file=/some/path/msdm.bin'/> | |
| <qemu:arg value='-smbios'/> | |
| <qemu:arg value='file=/some/path/smbios_type_0.bin'/> | |
| <qemu:arg value='-smbios'/> |
| name | description |
|---|---|
orchestrating-swarms |
Master multi-agent orchestration using Claude Code's TeammateTool and Task system. Use when coordinating multiple agents, running parallel code reviews, creating pipeline workflows with dependencies, building self-organizing task queues, or any task benefiting from divide-and-conquer patterns. |
Master multi-agent orchestration using Claude Code's TeammateTool and Task system.
| You can extract .ico icons from an exe with 7-zip! |
| name: Build and deploy | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: |