Start withs some games
- Lightbot
- CodeCombat
- Checkio.org
Design a simple site with HTML and CSS
- Noodle around with Scratchpad.io
import csv | |
all_orders = [[ | |
'Name', | |
'Shipping Tracking' | |
]] | |
with open('orders.csv', 'rU') as f: | |
reader = csv.DictReader(f) | |
for row in reader: |
import base64 | |
import json | |
import os | |
import urllib | |
import random | |
from urllib import request, parse | |
TWILIO_SMS_URL = "https://api.twilio.com/2010-04-01/Accounts/{}/Messages.json" | |
TWILIO_ACCOUNT_SID = os.environ.get("TWILIO_ACCOUNT_SID") |
### Keybase proof | |
I hereby claim: | |
* I am randylubin on github. | |
* I am rl (https://keybase.io/rl) on keybase. | |
* I have a public key whose fingerprint is 2F4E 623E 0C65 4ED7 8457 1CC1 4FDE 20C4 00E0 3423 | |
To claim this, I am signing this object: |
I hereby claim:
To claim this, I am signing this object:
var http = require('http'), | |
httpProxy = require('http-proxy'); | |
// | |
// Setup proxy server with forwarding | |
// | |
var options = { | |
router: { | |
'proxytest.randylubin.com': '127.0.0.1:7200', | |
'randylubin.com': '127.0.0.1:7200', |
var http = require('http'), | |
httpProxy = require('http-proxy'); | |
// | |
// Setup proxy server with forwarding | |
// | |
var options = { | |
router: { | |
'proxytest.randylubin.com': '127.0.0.1:7200', | |
'randylubin.com': '127.0.0.1:7200', |
import random | |
def fairFlip(): | |
return random.randrange(2) | |
startingOdds = .625 | |
def unfairFlip(odds): | |
if odds >= .5: | |
if fairFlip() == 1: |