Skip to content

Instantly share code, notes, and snippets.

@guyhmmt
guyhmmt / tasks.json
Last active October 8, 2025 10:45
Vscode 2 terminal config for Claude and zsh
{
"version": "2.0.0",
"presentation": {
"echo": false,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true
},
"tasks": [
@guyhmmt
guyhmmt / get-assembly-version.sh
Created September 17, 2025 09:14
obtain version of .net core assembly in bash
strings my.net.core.dll | grep -E "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+"