Skip to content

Instantly share code, notes, and snippets.

View mdwhatcott's full-sized avatar

Michael Whatcott mdwhatcott

View GitHub Profile
type Slice struct {
Data []int
Length int
Capacity int
}
func Insert(record *Slice, position int, value int) {
capacity := record.Length + 1
if position > capacity {
capacity = position
@mdwhatcott
mdwhatcott / http_get.go
Created January 17, 2023 22:22
A simple http get example, using the Smarty US Street Address API (but no error handling or deferred functions)
package main
import (
"encoding/json"
"fmt"
"net/http"
"os"
"strings"
)
@mdwhatcott
mdwhatcott / http_get.go
Created January 17, 2023 21:59
A simple http get example, using the Smarty US Street Address API (but everything is in the main function)
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"strings"
)
@mdwhatcott
mdwhatcott / http_get.go
Created January 16, 2023 23:54
A simple http get example, using the Smarty US Street Address API
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"strings"
)
@mdwhatcott
mdwhatcott / mini-smartylist.go
Created January 16, 2023 23:53
A tiny address list processor
package main
import (
"encoding/csv"
"encoding/json"
"io"
"log"
"net/http"
"os"
)
@mdwhatcott
mdwhatcott / stringly.go
Last active January 13, 2023 00:00
Go is stringly typed, right?
package main
import (
"fmt"
"reflect"
)
type (
MyFirstEvent struct{ AccountID uint64 }
MySecondEvent struct{ AccountID uint64 }
@mdwhatcott
mdwhatcott / funcy.go
Created December 29, 2022 10:18
Map/Reduce/Filter (and a few friends) w/ Go generics
// Package funcy info: github.com/mdwhatcott/funcy@v0.1.0 (a little copy-paste is better than a little dependency)
// AUTO-GENERATED: 2022-12-29 03:18:09.371452 -0700 MST m=+0.000761384
package funcy
// FILE: funcy.go
func Complement[T any](predicate func(t T) bool) func(t T) bool {
return func(t T) bool { return !predicate(t) }
}
func Remove[T any](predicate func(t T) bool, values []T) []T {
@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 / slog_shortfile.go
Created December 6, 2022 18:18
Achieving log.Lshortfile with the new slog package
// https://pkg.go.dev/golang.org/x/exp/slog
func main() {
options := slog.HandlerOptions{
AddSource: true,
ReplaceAttr: func(a slog.Attr) slog.Attr {
if a.Key != "source" {
return a
}
fields := strings.Split(a.Value.String(), ":")
@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" />