Skip to content

Instantly share code, notes, and snippets.

@wagyourtail
wagyourtail / Java8Linux.md
Last active March 15, 2026 07:41
Installing Java 8 on various Linux distros

Installing Java 8 on various Linux distros

This guide will show you how to install both the openjdk and oracle java distros on linux via the command line, the steps are practically identical for the JDK, but have a different download links / package names.

@74hc595
74hc595 / self-compiling.c
Created August 5, 2015 04:34
A C source file that can be "executed" like a shell script.
#define IM_A_LITTLE_POLYGLOT /*
gcc $0 && ./a.out; exit
*/
/*
1. Save as foo.c
2. chmod +x foo.c
3. Run with ./foo.c
*/