Skip to content

Instantly share code, notes, and snippets.

View skytreader's full-sized avatar
🎭
"Code is poetry." - WordPress

Chad Estioco skytreader

🎭
"Code is poetry." - WordPress
View GitHub Profile
@skytreader
skytreader / ip_addresses.py
Created October 11, 2012 15:41
Quick Python script I whipped up to review for a Computer Networking exam.
BYTE = 8
def toBinaryString(num):
bitstring = ""
if num == 0:
bitstring = '0'
while num != 0:
bitstring = str(num % 2) + bitstring