Skip to content

Instantly share code, notes, and snippets.

@aristidebm
aristidebm / design.md
Created April 24, 2024 18:11 — forked from nateklaiber/design.md
API Client Design
@aristidebm
aristidebm / ANSI.md
Created March 25, 2024 06:57 — forked from fnky/ANSI.md
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@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: