- Get all of these files into the target folder
- Run the following commands:
chmod +x *.sh
./nginx-start.sh
| // Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/ | |
| // See also: http://www.paulund.co.uk/change-url-of-git-repository | |
| $ cd $HOME/Code/repo-directory | |
| $ git remote rename origin bitbucket | |
| $ git remote add origin https://github.com/mandiwise/awesome-new-repo.git | |
| $ git push origin master | |
| $ git remote rm bitbucket |
| #!/usr/bin/env ruby -w | |
| class String | |
| def starts_with?(prefix) | |
| prefix.respond_to?(:to_str) && self[0, prefix.length] == prefix | |
| end | |
| end | |
| HEADER_REGEX = /^#import\s+["<](.*)[">]/ |
| CGFloat ScaleToAspectFitRectInRect(CGRect rfit, CGRect rtarget) | |
| { | |
| // first try to match width | |
| CGFloat s = CGRectGetWidth(rtarget) / CGRectGetWidth(rfit); | |
| // if we scale the height to make the widths equal, does it still fit? | |
| if (CGRectGetHeight(rfit) * s <= CGRectGetHeight(rtarget)) { | |
| return s; | |
| } | |
| // no, match height instead | |
| return CGRectGetHeight(rtarget) / CGRectGetHeight(rfit); |
| // | |
| // RSTimingFunction.h | |
| // | |
| // Created by Raphael Schaad on 2013-09-28. | |
| // This is free and unencumbered software released into the public domain. | |
| // | |
| #import <UIKit/UIKit.h> |
chmod +x *.sh
./nginx-start.sh
| - (UIImage*) maskImage:(UIImage *)im withMask:(UIImage *)maskImage { | |
| CGImageRef maskRef = maskImage.CGImage; | |
| CGImageRef mask = CGImageMaskCreate(CGImageGetWidth(maskRef), | |
| CGImageGetHeight(maskRef), | |
| CGImageGetBitsPerComponent(maskRef), | |
| CGImageGetBitsPerPixel(maskRef), | |
| CGImageGetBytesPerRow(maskRef), | |
| CGImageGetDataProvider(maskRef), NULL, false); |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
| #!/bin/bash | |
| mpg123 -C \ | |
| http://scfire-mtc-aa04.stream.aol.com:80/stream/1005/?smoothjazz \ | |
| http://ice.somafm.com/secretagent \ | |
| http://ice.somafm.com/groovesalad \ | |
| http://ice.somafm.com/covers \ | |
| http://ice.somafm.com/lush \ | |
| http://ice.somafm.com/indiepop \ | |
| http://ice.somafm.com/bootliquor \ | |
| http://ice.somafm.com/suburbsofgoa \ |
| [alias] | |
| l50 = "!f () { git log --abbrev-commit --date=short --pretty=format:'%h%x00%cd%x00%s%x00%an%x00%d' $@ | gawk -F '\\0' '{ printf \"\\033[31m%s\\033[0m \\033[32m%s\\033[0m %-50s \\033[30;1m%s\\033[0m\\033[33m%s\\n\", $1, $2, gensub(/(.{49}).{2,}/, \"\\\\1…\",\"g\",$3), $4, $5 }' | less -R; }; f" | |
| l80 = "!f () { git log --abbrev-commit --date=short --pretty=format:'%h%x00%cd%x00%s%x00%an%x00%d' $@ | gawk -F '\\0' '{ printf \"\\033[31m%s\\033[0m \\033[32m%s\\033[0m %-80s \\033[30;1m%s\\033[0m\\033[33m%s\\n\", $1, $2, gensub(/(.{79}).{2,}/, \"\\\\1…\",\"g\",$3), $4, $5 }' | less -R; }; f" | |
| lg50 = "!f () { git log --graph --color=always --abbrev-commit --date=relative --pretty=format:'%x00%h%x00%s%x00%cd%x00%an%x00%d' $@ | gawk -F '\\0' '{ printf \"%s\\033[31m%s\\033[0m %-50s \\033[32m%14s\\033[0m \\033[30;1m%s\\033[0m\\033[33m%s\\n\", $1, $2, gensub(/(.{49}).{2,}/, \"\\\\1…\",\"g\",$3), $4, $5, $6 }' | less -R; }; f" | |
| lg80 = "!f () { git log --graph --color=always --abbrev-commit --date=re |
| // | |
| // UIFont+DahDit.m | |
| // DahDit | |
| // | |
| // Created by Erik Andersson on 2011-07-28. | |
| // Copyright 2011 Åva gymnasium. All rights reserved. | |
| // | |
| #import "UIFont+DahDit.h" |