Skip to content

Instantly share code, notes, and snippets.

# Returns a string with the version of the installed Windows Terminal.
# Using `winget list` since the `wt --version` uses a dialog box.
#
# Usage:
# Get-WTVersion [-IncludeBuildNoAs LOCATION]
#
# Options:
# -IncludeBuildNo LOCATION: This option includes the build number at the
# specified LOCATION. Alias: -b LOCATION
# if 'none' returns the default "major.minor.patch"
# ----------------------------------------
# Command: Start-Scratchpad (Written in PowerShell 7)
# Used in my daily script to open a new scratchpad file for the day.
# File naming follows the following format: ~/.scratch/yyyy-MM-dd-scratchpad.md
# ----------------------------------------
# Includes code for Get-Editor and Get-TerminalEditor dependencies
# ----------------------------------------
# Returns the editor specified in the VISUAL or EDITOR environment variables.
# If none is specified, a platform default is returned.
@algonzalez
algonzalez / justfile
Last active March 13, 2025 03:15
Justfile implementation of the boilerplate makefile for Go projects by Alex Edwards
# ==============================================================================
# Justfile implementation of the Go project makefile from Alex Edwards:
# https://www.alexedwards.net/blog/a-time-saving-makefile-for-your-go-projects
# Notes:
# - I'm a newbie in both Go and justfiles, so let me know what can be improved
# - should be cross-platform, but only tested in Windows and Ubuntu under WSL
# - confirm task is not needed as it is built-in using [confirm] attribute
# - removed the `-race` argument in the test targets;
# it requires CGO_ENABLED=1 (at least on Windows).
# - commented out the `upx` call in the deploy target; I don't currently use it.
// https://go.dev/play/p/lrWohXeh1vG
// https://goplay.tools/snippet/lrWohXeh1vG
func getOsDefaultEditor() string {
switch runtime.GOOS {
case "darwin":
return "textedit"
case "linux", "freebsd", "netbsd", "openbsd":
return "vi"
case "windows":
@algonzalez
algonzalez / RegexPatterns.cs
Created August 21, 2023 20:55
SSN Validation Regex
public class RegexPatterns
{
/// <summary>
/// Regular expression used to validate an US Social Security Number (SSN)
/// formatted as nine-digits with hyphens (###-##-####).
/// </summary>
/// <example>
/// <code>
/// var ssnRegex = new Regex(RegexPatterns.Ssn);
/// ssnRegex.IsMatch("078-05-1120"); // should return false
[core]
editor = \"C:\\Users\\Alberto.Gonzalez\\tools\\VSCode\\Code.exe\" --wait
[diff]
tool = winmerge
[merge]
tool = winmerge
[difftool "diffmerge"]
cmd = $USERPROFILE/tools/DiffMerge/sgdm.exe \"$LOCAL\" \"$REMOTE\"
prompt = false
@algonzalez
algonzalez / .editorconfig
Last active October 6, 2021 00:53
Basic .editorconfig with some .NET rules
# see http://editorconfig.org/ for details
# top-most EditorConfig file; stops searching parent directories.
root = true
# Defaults: UTF-8, Windows-style newline,
# 4 space indents,
# newline ending every file,
# trim trailing whitespace
[*]
/// <summary>
/// Initial attempt at a simple <see cref="System.Text.Json.Serialization.JsonConverter"/>
/// that handles conversion between objects and interfaces.
/// <p>
/// Appears to fix the loss of interface typed values during serialization,
/// as well as the "Deserialization of interface types is not supported" exception.</p>
/// </summary>
/// <example>
/// // Register the converter with a <see cref="System.Text.Json.JsonSerializerOptions"/> instance:
/// <pre><code>var converter = new ObjectInterfaceJsonConverter&lt;IFoo, Foo&gt;();
@algonzalez
algonzalez / git-loglive
Last active March 23, 2021 18:08 — forked from tlberglund/git-loglive
Log Live Git Command
#!/bin/bash
while :
do
clear
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $*
sleep 1
done