Skip to content

Instantly share code, notes, and snippets.

View NathanBaulch's full-sized avatar

Nathan Baulch NathanBaulch

  • Melbourne, Australia
View GitHub Profile
@NathanBaulch
NathanBaulch / main.go
Last active January 22, 2023 11:07
Optimized solution to APS #038 unique words with unique letters
package main
import (
"bufio"
"fmt"
"io"
"math"
"os"
"runtime"
"sort"
@mikepruett3
mikepruett3 / shell-setup.ps1
Last active June 29, 2024 06:32
Packages to install via scoop, winget, choco, and other tools...
<#
.SYNOPSIS
Script to Initialize my custom powershell setup.
.DESCRIPTION
Script uses scoop
.NOTES
**NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted.
Author: Mike Pruett
Date: October 18th, 2018
@vinzenz
vinzenz / dial-mysql-via-ssh.go
Created November 7, 2016 10:27
Using MySQL / MariaDB via SSH in Golang
package main
import (
"database/sql"
"fmt"
"net"
"os"
"github.com/go-sql-driver/mysql"
"golang.org/x/crypto/ssh"