Skip to content

Instantly share code, notes, and snippets.

View mdwhatcott's full-sized avatar

Michael Whatcott mdwhatcott

View GitHub Profile
@mdwhatcott
mdwhatcott / slogging.go
Last active December 14, 2022 16:34
Configuring a slog handler with functional options
package slogging
import (
"path/filepath"
"strings"
"golang.org/x/exp/slog"
)
type source int
@mdwhatcott
mdwhatcott / 12-bit.icls
Created November 30, 2022 04:14
12-bit color scheme for GoLand (based on https://iamkate.com/data/12-bit-rainbow/)
<scheme name="12-bit rainbow" version="142" parent_scheme="Default">
<option name="FONT_SCALE" value="1.0" />
<metaInfo>
<property name="created">2022-11-22T17:07:03</property>
<property name="ide">GoLand</property>
<property name="ideVersion">2022.2.5.0.0</property>
<property name="modified">2022-11-22T17:07:15</property>
<property name="originalScheme">12-bit rainbow</property>
</metaInfo>
<option name="CONSOLE_FONT_NAME" value="Berkeley Mono" />
@mdwhatcott
mdwhatcott / comma.go
Created November 11, 2022 17:08
My own simple, a word which hear means inefficient, implementation of humanize.Comma
package humanize
import (
"fmt"
"strings"
)
// Comma formats a number with commas separating each block of 3 numbers.
// Inspiration: https://pkg.go.dev/github.com/dustin/go-humanize#Comma
func Comma(n int) string {
@mdwhatcott
mdwhatcott / index_slice.go
Created October 26, 2022 15:33
Index a slice of things in a map
func index[K comparable, V any](list []V, key func(V) K) map[K]V {
result := make(map[K]V)
for _, value := range list {
result[key(value)] = value
}
return result
}
@mdwhatcott
mdwhatcott / get_or_set_default.go
Created October 26, 2022 04:48
Like Java's 'computeIfAbsent'...
func GetOrSetDefault[K comparable, V any](m map[K]V, key K, new_ func() V) V {
value, found := m[key]
if !found {
value = new_()
m[key] = value
}
return value
}
/*
@mdwhatcott
mdwhatcott / tiny-should.go
Last active September 7, 2022 22:45
tiny-should.go
package should
import (
"fmt"
"log"
"reflect"
"runtime"
)
type assertion func(actual any, expected ...any) error
@mdwhatcott
mdwhatcott / assert.go
Last active June 22, 2022 03:55
The tiniest testing library
package assert
import (
"reflect"
"testing"
)
// That allows assertions as in: assert.That(t, actual).Equals(expected)
func That(t *testing.T, actual interface{}) *assertion {
@mdwhatcott
mdwhatcott / bowling-test.rkt
Last active April 5, 2022 22:53
Bowling Game Kata (in Racket)
#lang racket
(require rackunit)
(require "bowling.rkt")
(define (roll-many times roll)
(for/list ([i times]) roll))
(test-equal? "Gutter Game" 0 (score (roll-many 20 0)))
(test-equal? "All Ones" 20 (score (roll-many 20 1)))
@mdwhatcott
mdwhatcott / life.clj
Last active September 13, 2021 15:12
The Game of Life Kata
(ns kata.life)
(defn neighbors-of [[x y]]
(for [Y (range (dec y) (+ 2 y))
X (range (dec x) (+ 2 x))
:when (not= [x y] [X Y])] [X Y]))
(defn count-active-neighbors [cell grid]
(->> cell neighbors-of set (filter grid) count))
@mdwhatcott
mdwhatcott / ttt.clj
Created August 24, 2021 22:28
Tic-Tac-Toe Grid GUI Prototype (clojure, quil)
(ns hello-quil.grid
(:require [quil.core :as q]
[quil.middleware :as m]))
(defn hovering? [{:keys [x y width mark] :as cell}]
(let [x2 (+ x width)
y2 (+ y width)
mx (q/mouse-x)
my (q/mouse-y)]
(and (nil? mark)