Skip to content

Instantly share code, notes, and snippets.

View alfiehanssen's full-sized avatar

Alfie Hanssen alfiehanssen

View GitHub Profile
+ (NSURL *)uniqueMp4URL
{
NSString *path = [NSTemporaryDirectory() stringByAppendingPathComponent:ClipDirectory];
if (![[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil])
{
NSLog(@"Unable to create clip directory");
}
NSString *uniqueString = [[NSProcessInfo processInfo] globallyUniqueString];
path = [path stringByAppendingPathComponent:uniqueString];
@alfiehanssen
alfiehanssen / git-branch-bling
Created November 27, 2013 16:02
Git Branch Bling
# Tired of typing "git branch"?
# Add this to your ~/.bash_profile to always display your current branch name when inside a git repo
# In shiny red, green and gold
# Nabbed and modifed from http://www.railstips.org/blog/archives/2009/02/02/bedazzle-your-bash-prompt-with-git-info/
function parse_git_branch {
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
echo "("${ref#refs/heads/}")"
}