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 System.Console.GetOpt (ArgOrder(..), getOpt) | |
import System.Environment (getArgs) | |
offset = (flip mod) 12 | |
animal 4 = "Rat" | |
animal 5 = "Ox" | |
animal 6 = "Tiger" | |
animal 7 = "Rabbit" | |
animal 8 = "Dragon" |
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 | |
from functools import wraps | |
from types import FunctionType | |
def is_python3(): | |
return sys.version_info >= (3, 0) | |
def more_vars(**extras): |
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
# This totally works, even though `i` isn't passed into the | |
# lambda, nor is it defined prior to the lambda declaration. | |
calculate_efp = lambda v: v - i | |
[calculate_efp(v) for i, v in enumerate([10,100,1000])] |
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
db.samples.aggregate([ {$match: {user: 28804}}, {$group: {_id: {year: {$year: "$timestamp"}, month: {$month: "$timestamp"}, day: {$dayOfMonth: "$timestamp"}}, reputation: {$max: "$reputation"}}}]) |
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
actual = [['0:00.762', '0:01.435'], ['2:01.374', '2:07.423'], ['3:01.412', '3:07.314']] | |
expected = [['0.762', '1.435'], ['121.374', '127.423'], ['181.412', '187.314']] | |
def convert(s): | |
mins, secs = s.split(':') | |
mins = int(mins) | |
secs = float(secs) | |
secs = 60 * mins + secs | |
return secs |
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 <Foundation/Foundation.h> | |
int main (int argc, char const *argv[]) | |
{ | |
@autoreleasepool { | |
id obj = [[nil alloc] init]; | |
NSLog(@"%@ (%p)", obj, obj); | |
[obj release]; | |
} |
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 <Foundation/Foundation.h> | |
@interface NSString (Shift) | |
- (NSString *)shiftRight:(NSUInteger)places; | |
@end | |
@implementation NSString (Shift) |
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 | |
## Accepts a list of packages on stdin and prints whether each | |
## package is compatible with Python 3. The easiest way to | |
## use this script is by piping the output of `pip freeze` | |
## into it: | |
## | |
## $ pip freeze | py3-ready | |
## | |
## |
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
# Thanks to <http://nex-3.com/posts/73-git-style-automatic-paging-in-ruby> | |
def run_pager | |
return if PLATFORM =~ /win32/ | |
return unless STDOUT.tty? | |
read, write = IO.pipe | |
unless Kernel.fork | |
STDOUT.reopen(write) | |
STDERR.reopen(write) if STDERR.tty? |
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 | |
import random | |
cls = random.choice([list, dict, str, int, float]) | |
class RandomSubclass(cls): | |
def __str__(self): | |
return "MRO: %s" % (RandomSubclass.__mro__,) |