Skip to content

Instantly share code, notes, and snippets.

View stoft's full-sized avatar

Rasmus stoft

  • Tiqqe
  • Europe
  • 14:35 (UTC +02:00)
View GitHub Profile
@jrstrunk
jrstrunk / gleamono
Last active February 28, 2025 12:24
A makefile to make working with Gleam monorepos easier!
# List all subdirectories
SUBDIRS := $(wildcard */)
.PHONY: all
all:
@echo "Available commands: run, dev, test, update, format, build, add <package>, and remove <package>"
# Customize this per project
.PHONY: run
run:
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 5, 2025 09:34
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example