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
# ~/.bash_logout | |
printf '\e]0;\a' |
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
def ensure_subscription(fn): | |
@wraps(fn) | |
def _ensure_subscription(user, other, trade): | |
unsubscribe_code = user.profile.get_unsubscribe_code('trade-notifications') | |
if unsubscribe_code is None: | |
return | |
fn_globals = {} | |
fn_globals.update(globals()) | |
fn_globals['unsubscribe_code'] = unsubscribe_code | |
call_fn = FunctionType(fn.func_code, fn_globals) |
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
fizzBuzz n | |
| n `rem` 5 == 0 && n `rem` 3 == 0 = "FizzBuzz" | |
| n `rem` 5 == 0 = "Buzz" | |
| n `rem` 3 == 0 = "Fizz" | |
| otherwise = show n | |
main = putStr $ unlines $ map fizzBuzz [1..100] |
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> | |
#import <objc/runtime.h> | |
@interface NSObject (DeclaredProperties) | |
- (NSArray *)properties; | |
@end | |
@interface TestClass : NSObject | |
@property (readonly) NSString *prop1; |
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 Data.Bits (shift) | |
import Data.Char (chr) | |
strip = takeWhile (\ch -> ch /= '\n') | |
removeSpaces = filter (\ch -> ch == '0' || ch == '1') | |
chrToInt '0' = 0 | |
chrToInt '1' = 1 |
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
{- | |
N.B.: This is just a simple example of a Haskell program. Don't | |
take BMI seriously. You're fine just the way you are! | |
-} | |
import Data.Char (isDigit) | |
import Data.List (isInfixOf, isSuffixOf) | |
import Data.List.Split (splitOn) | |
import System.Console.GetOpt (ArgOrder(..), getOpt) | |
import System.Environment (getArgs, getProgName) |
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 ruby | |
require 'fileutils' | |
def die(code=1) | |
$stderr.puts 'Usage: herokusu [--list | --switch user]' | |
exit code | |
end | |
HEROKU_PATH = File.expand_path '~/.heroku' |
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 (Slicing) | |
- (unichar)characterAt:(NSInteger)index; | |
- (NSString *)stringBySlicingFromIndex:(NSInteger)start length:(NSUInteger)length; | |
- (NSString *)stringBySlicingFromIndex:(NSInteger)start toIndex:(NSInteger)end; | |
@end | |
@implementation NSString (Slicing) | |
- (unichar)characterAt:(NSInteger)index |
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> | |
#import <stdarg.h> | |
@interface NSString (Paths) | |
+ (NSString *)stringByJoiningPathComponents:(NSString *)part, ...; | |
@end | |
@implementation NSString (Paths) | |
+ (NSString *)stringByJoiningPathComponents:(NSString *)part, ... | |
{ |
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 django.utils.hashcompat import md5_constructor | |
from django.utils.http import urlquote | |
def template_cache_key(fragment_name, *vary_on): | |
"""Builds a cache key for a template fragment. | |
This is shamelessly stolen from Django core. | |
""" | |
base_cache_key = "template.cache.%s" % fragment_name | |
args = md5_constructor(u":".join([urlquote(var) for var in vary_on])) |