Skip to content

Instantly share code, notes, and snippets.

View LatvianModder's full-sized avatar
🔧
2nd best Minecraft Modder on this planet

Kristiāns Micītis LatvianModder

🔧
2nd best Minecraft Modder on this planet
View GitHub Profile
@fnky
fnky / ANSI.md
Last active April 24, 2024 03:46
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27

I want to show you why the capabilities work the way they work, and not just how they work.

The following explanation is not meant to be accurate with reality, only a way to form the necessary connections and be able to understand one possible reasoning for the design.

I will try my best.

Backstory

Once upon a time, every API would define a bunch of interfaces that people would implement

@jbroadway
jbroadway / Slimdown.md
Last active February 5, 2024 10:43
Slimdown - A simple regex-based Markdown parser.