Skip to content

Instantly share code, notes, and snippets.

View reikVdM's full-sized avatar

reikVdM

  • R.I.B. Software
  • Berlin
View GitHub Profile
@TheBeachMaster
TheBeachMaster / fix.sh
Created February 26, 2018 15:38
Fix Docker WARNING: bridge-nf-call-iptables is disabled on Centos
$ sudo sysctl net.bridge.bridge-nf-call-iptables=1
$ sudo sysctl net.bridge.bridge-nf-call-ip6tables=1
@conorbuck
conorbuck / angle-between-points.js
Created May 5, 2012 22:51
JavaScript: Find the angle between two points
var p1 = {
x: 20,
y: 20
};
var p2 = {
x: 40,
y: 40
};