Skip to content

Instantly share code, notes, and snippets.

View Nilstrieb's full-sized avatar
💕
uwu

Nilstrieb Nilstrieb

💕
uwu
View GitHub Profile
@fnky
fnky / ANSI.md
Last active July 20, 2024 14:21
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@rexim
rexim / main.rs
Last active April 3, 2024 19:40
The Most Memory Safe Buffer Overflow in Rust!
// The Most Memory Safe Buffer Overflow in Rust!
//
// Consider all the code below under Public Domain
//
// How to build:
// $ rustc main.rs
//
// Wrong password:
// $ printf "hello\n" | ./main
//