Skip to content

Instantly share code, notes, and snippets.

View patrick246's full-sized avatar

Patrick Hahn patrick246

View GitHub Profile
@lava
lava / hello_world.md
Last active March 2, 2024 17:22
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;
}
@netroy
netroy / disabled-console.js
Last active August 29, 2015 13:56
Dat FB console ... for academic purposes only
(function (window) {
'use strict';
var realConsole = window.console || {};
var warnings = {
'Sorry, Your console is disabled for security reasons.': 'color: red; font-size: 36px; line-height: 40px;'
};