A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.
Install all agents listed below into VS Code Insiders...
| Title | Type | Description |
|---|
| <# | |
| .SYNOPSIS | |
| Installs pyenv-win | |
| .DESCRIPTION | |
| Installs pyenv-win to $HOME\.pyenv | |
| If pyenv-win is already installed, try to update to the latest version. | |
| .PARAMETER Uninstall | |
| Uninstall pyenv-win. Note that this uninstalls any Python versions that were installed with pyenv-win. |
A step-by-step guide to setting up Model Context Protocol (MCP) servers for Claude Desktop on Windows.
node --version
npm --version
| #!/usr/bin/env ruby | |
| # Generate a dbdiagram for dbdiagram.io from a dbt project. | |
| # | |
| # Usage: | |
| # 1. Run `dbt docs generate` first. | |
| # 2. Run `dbt_to_dbdiagram.rb` | |
| # 3. Paste the output in https://dbdiagram.io/ | |
| require 'yaml' | |
| require 'json' |
| More recent resolution: | |
| 1. cd ~/../../etc (go to etc folder in WSL). | |
| 2. echo "[network]" | sudo tee wsl.conf (Create wsl.conf file and add the first line). | |
| 3. echo "generateResolvConf = false" | sudo tee -a wsl.conf (Append wsl.conf the next line). | |
| 4. wsl --terminate Debian (Terminate WSL in Windows cmd, in case is Ubuntu not Debian). | |
| 5. cd ~/../../etc (go to etc folder in WSL). | |
| 6. sudo rm -Rf resolv.conf (Delete the resolv.conf file). | |
| 7. In windows cmd, ps or terminal with the vpn connected do: Get-NetIPInterface or ipconfig /all for get the dns primary and | |
| secondary. |
| """ | |
| Tools used to get workspace, dataset names and refresh datasets. | |
| Power BI tools to refresh a dataset using client secret authentication. | |
| Sample use (client id and secret values directly): | |
| tenant_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" | |
| app_client_id = "XXXXXXXX-xxxx-xxxx-xxxx-xxxxxxxxxxxx" | |
| app_client_secret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | |
| app_scope = "https://analysis.windows.net/powerbi/api" |
| /*---------------------------------------------------------------------------------------- | |
| Script: udf_convert_to_utf16.sql | |
| Author: [Steve Withington](steve@digitalmine.com) | |
| Dependencies: n/a | |
| Purpose: MSSQL data is stored in UTF-16 format (UTF-8 support didn't roll out until SQL Server 2019) | |
| Snowflake data is stored in UTF-8 format. | |
| This function will convert a UTF-8 string to a UTF-16, MD5 string for comparison purposes | |
| Note: You probably don't want to use this function directly. |
| create function [dbo].[ToUTF8](@s nvarchar(max)) | |
| returns varbinary(max) | |
| as | |
| begin | |
| declare @i int = 1, @n int = datalength(@s)/2, @r varbinary(max) = 0x, @c int, @c2 int, @d varbinary(4) | |
| while @i <= @n | |
| begin | |
| set @c = unicode(substring(@s, @i, 1)) | |
| if (@c & 0xFC00) = 0xD800 | |
| begin |