Skip to content

Instantly share code, notes, and snippets.

@Cartexius
Cartexius / install_gtest_ubuntu.md
Last active January 12, 2026 10:04
Install gtest in Ubuntu
@No9
No9 / notes.md
Created May 18, 2017 08:11
BSD-Dublin-2017-05-18-Capsicum

Scribble Pad for the May Meetup

anonymous
anonymous / rpn-jit.c
Created March 20, 2015 14:30
RPN JIT Compiler
/* http://redd.it/2zna5q
* Fibonacci example:
* (1) (2) +
* 0:0
* 1:1
* 20
*/
#define _BSD_SOURCE // MAP_ANONYMOUS
#include <stdio.h>
#include <stdlib.h>