Skip to content

Instantly share code, notes, and snippets.

View orakaro's full-sized avatar
🐉
Winter is here

orakaro.targaryen orakaro

🐉
Winter is here
View GitHub Profile
@orakaro
orakaro / introrx.md
Created July 2, 2016 08:58 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@orakaro
orakaro / converter.py
Created October 13, 2015 15:41 — forked from sodastsai/converter.py
Convert CSV to PLIST
#!/usr/bin/env python3
import sys
import csv
import plistlib
import os
csv_file = sys.argv[1]
with open(csv_file, 'r', encoding='utf-8') as f:
result = list(csv.DictReader(f))