Skip to content

Instantly share code, notes, and snippets.

View goerz's full-sized avatar

Michael Goerz goerz

View GitHub Profile
@goerz
goerz / ma.f90
Created August 19, 2009 15:01
Fortran90 Pointers: is foo reliably 1?
module a_mod
use b_mod
implicit none
public
private :: a, b
integer, target :: a
integer, pointer :: b
contains
subroutine run_test()
a = 1
#!/usr/bin/python
from time import strftime
import sqlite3
import sys
import twitter #http://code.google.com/p/python-twitter/
import feedparser #available at feedparser.org
DATABASE = "/Users/goerz/.twitter_bot/tweets.sqlite"