Skip to content

Instantly share code, notes, and snippets.

@aristidebm
aristidebm / about.md
Created June 29, 2022 10:19 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer
@aristidebm
aristidebm / Makefile
Created January 23, 2022 19:14 — forked from klmr/Makefile
Self-documenting makefiles
# Example makefile with some dummy rules
.PHONY: all
## Make ALL the things; this includes: building the target, testing it, and
## deploying to server.
all: test deploy
.PHONY: build
# No documentation; target will be omitted from help display
build: