Skip to content

Instantly share code, notes, and snippets.

View noweverywhere's full-sized avatar

Marinus Swanepoel noweverywhere

  • British Columbia, Canada
View GitHub Profile
ISS (ZARYA)
1 25544U 98067A 26123.29655904 .00006490 00000+0 12550-3 0 9998
2 25544 51.6307 162.3031 0007275 18.2147 341.9100 15.49074480564795
@noweverywhere
noweverywhere / 0_intersect.rb
Last active September 12, 2019 02:41
Demonstration of ruby array intersect with bitwise & operator
true && true
# true
true & true
# true
true & false
# false
true && false
@noweverywhere
noweverywhere / httpserver.py
Last active February 22, 2016 07:59
Simple HTTP Server in Python
#!/usr/bin/env/python
# -*- coding: utf-8 -*-
import sys
import os
import BaseHTTPServer
from SimpleHTTPServer import SimpleHTTPRequestHandler
os.chdir("/")