- Lands End
- Yoshi's bar
- Sweet Maple
- Twin Peaks
- Sutro Baths
- Goldgen Gate Park
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
def retr(item): | |
return({ type('') : lambda x: sys.stdout.write(x), | |
type([]) : lambda item: ''.join(retr(x) for x in item) | |
}[type(item)](item) | |
retr('lol') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
def retr(item): | |
return({ type('') : lambda x: sys.stdout.write(x+'\n'), | |
type([]) : lambda item: ''.join(retr(x) for x in item) | |
}[type(item)](item)) | |
retr('lol') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE OverloadedStrings #-} | |
{- To Run: | |
Load in ghci | |
:set -XOverloadedStrings (for convenience) | |
Execute repl expr -} | |
import Control.Applicative | |
import Data.Attoparsec hiding (Result) | |
import Data.Attoparsec.Char8 (char8, isDigit_w8, isSpace_w8) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
'''' | |
NOTE: on dev_appserver.py console needs a cast to a dict() like so: | |
pending_dict = dict(pending_activity) | |
sometimes datatype passed back up to the method for recursing is not an array or a dict, but a float, say | |
which has no len() method and raises TypeError, thus the try except block | |
''' | |
import json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
codegen | |
~~~~~~~ | |
Extension to ast that allow ast -> python code generation. | |
:copyright: Copyright 2008 by Armin Ronacher. | |
:license: BSD. | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
eval(""" | |
eval(__import__('inspect').getsource( | |
__import__( | |
__import__('os').path.relpath( | |
__import__('os').path.splitext(__file__)[0] | |
)))) | |
""") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import with_statement | |
# above line is for backwards compatibility, don't use it interactively | |
import inspect | |
import os | |
import pydoc | |
with open('pydoc.py', 'w') as file_obj: | |
file_obj.write(inspect.getsource(inspect.getmodule(pydoc))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
"""Downloads the most recent bottle build from gitub in a specified directory | |
""" | |
import os | |
import sys | |
import urllib2 | |
bottle_url = 'https://github.com/defnull/bottle/raw/master/bottle.py' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Copyright (c) 2012 Anthony Wu, twitter.com/anthonywu | |
Permission is hereby granted, free of charge, to any person obtaining | |
a copy of this software and associated documentation files (the | |
"Software"), to deal in the Software without restriction, including | |
without limitation the rights to use, copy, modify, merge, publish, | |
distribute, sublicense, and/or sell copies of the Software, and to | |
permit persons to whom the Software is furnished to do so, subject to | |
the following conditions: |
OlderNewer