Skip to content

Instantly share code, notes, and snippets.

View marcenuc's full-sized avatar

Marcello Nuccio marcenuc

  • Tailor Diffusion s.r.l.
  • Italia
View GitHub Profile
@ConnerWill
ConnerWill / ANSI-escape-sequences.md
Last active March 9, 2026 14:38
ANSI Escape Sequences cheatsheet

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@thoop
thoop / nginx.conf
Last active December 31, 2025 07:49
Official prerender.io nginx.conf for nginx
# Change YOUR_TOKEN to your prerender token
# Change example.com (server_name) to your website url
# Change /path/to/your/root to the correct value
server {
listen 80;
server_name example.com;
root /path/to/your/root;
index index.html;