Skip to content

Instantly share code, notes, and snippets.

View kumarde's full-sized avatar
💭
?

Deepak Kumar kumarde

💭
?
View GitHub Profile
"""This file handles the interface with the CMU word -> phoneme service."""
import requests
import json
import defaults as d
import os
COOKIES = {
'__utma': '44984886.2147423455.1500652902.1500652902.1500652902.1',

Keybase proof

I hereby claim:

  • I am kumarde on github.
  • I am kumarde (https://keybase.io/kumarde) on keybase.
  • I have a public key ASBWx3P78qaTK8bNhajg-zz1qqEz6JLsOtYMqQ1iwkE1ggo

To claim this, I am signing this object:

@kumarde
kumarde / node-iptable-reroute
Created October 15, 2013 14:03
ec2 node.js port 80 (for future reference)
To display current rules:
sudo iptables -t nat -L
To add a PREROUTING chain:
sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 8000
Thanks to kentbrew for the solution!