Skip to content

Instantly share code, notes, and snippets.

View RiccardoBiosas's full-sized avatar
🎯
Focusing

RiccardoBiosas

🎯
Focusing
View GitHub Profile
@VictorTaelin
VictorTaelin / gpt4_abbreviations.md
Last active May 16, 2024 14:04
Notes on the GPT-4 abbreviations tweet

Notes on this tweet.

  • The screenshots were taken on different sessions.

  • The entire sessions are included on the screenshots.

  • I lost the original prompts, so I had to reconstruct them, and still managed to reproduce.

  • The "compressed" version is actually longer! Emojis and abbreviations use more tokens than common words.

@abritinthebay
abritinthebay / consoleColors.js
Last active May 16, 2024 06:36
The various escape codes you can use to color output to StdOut from Node JS
// Colors reference
// You can use the following as so:
// console.log(colorCode, data);
// console.log(`${colorCode}some colorful text string${resetCode} rest of string in normal color`);
//
// ... and so on.
export const reset = "\x1b[0m"
export const bright = "\x1b[1m"
export const dim = "\x1b[2m"