Skip to content

Instantly share code, notes, and snippets.

View aowal's full-sized avatar

Md Abdul Aowal aowal

  • UMass Amherst
  • Amherst, Massachusetts
View GitHub Profile
@xjia1
xjia1 / gist:4413725
Last active September 2, 2022 20:09
Interesting CS Courses
@jmoz
jmoz / DomXpath.php
Created June 26, 2012 14:49
DomXpath example
<?php
/**
* @author James Morris <[email protected]>
*/
$html = <<<'EOF'
<html>
<body>
<h1>Foo</h1>
<div id="content">
@cspickert
cspickert / GoogleSpreadsheets.py
Created January 20, 2012 23:40
Export a Google Spreadsheet using python.
#!/usr/bin/python
import re, urllib, urllib2
class Spreadsheet(object):
def __init__(self, key):
super(Spreadsheet, self).__init__()
self.key = key
class Client(object):