Skip to content

Instantly share code, notes, and snippets.

@roanster007
roanster007 / GSoC_2024_Work_Product.md
Last active October 13, 2025 05:24
Google Summer of Code 2024 @zulip - Work Product

Google Summer of Code 2024 with Zulip - Work Product

This is a summary of the work I did for the zulip server and web application as a part of Google Summer of Code 2024.

@upsilun
upsilun / ansi.cpp
Last active October 21, 2025 17:30
🎨 ANSI Codes for text formatting.
"\033[0m" // Reset all text attributes to default
"\033[1m" // Bold on
"\033[2m" // Faint off
"\033[3m" // Italic on
"\033[4m" // Underline on
"\033[5m" // Slow blink on
"\033[6m" // Rapid blink on
"\033[7m" // Reverse video on
"\033[8m" // Conceal on
"\033[9m" // Crossed-out on
@lava
lava / hello_world.md
Last active October 19, 2025 12:47
Hello, world: Deep analysis of a shallow program.

Hello, world!

Please explain in detail what will happen if the following program is executed:

#include <iostream>

int main() {
    std::cout << "Hello, world!" << std::endl;
}