Skip to content

Instantly share code, notes, and snippets.

View Anniepoo's full-sized avatar
💭
baffled by too much tech stack

Anne Ogborn Anniepoo

💭
baffled by too much tech stack
View GitHub Profile
@rla
rla / code.js
Created October 10, 2012 23:17
Prolog runtime in JS
var util = require('util');
// Constructor for variables.
function Var() {
this.ref = this;
}
// Constructor for compound terms.
@justanotherdot
justanotherdot / Dockerfile.bite_sized_networking
Last active May 20, 2022 08:56
A Dockerfile with (almost) all the tools mentioned in Bite Size Networking by Julia Evans
# N.B. The only tool missing here that is mentioned in the document is `zenmap`
# purely because this image is intended to be run via a CLI and `zenmap` is a GUI
# to `nmap` i.e. one can play around with the tools by running:
#
# $ docker build --name bite_size_networking:latest .
# $ docker run --rm -d --name bsn_test bite_size_networking:latest
# $ docker exec -it bsn_test bash
#
# Alternatively, one can change the `ENTRYPOINT` to `["bash"]` and run:
#