Skip to content

Instantly share code, notes, and snippets.

View nsantorello's full-sized avatar

Noah Santorello nsantorello

View GitHub Profile
@nsantorello
nsantorello / LoadingView.h
Created February 24, 2012 17:01
Great modal loading animation for iPhone.
//
// LoadingView.h
// LoadingView
//
// Created by Matt Gallagher on 12/04/09.
// Copyright Matt Gallagher 2009. All rights reserved.
//
// Permission is given to use this source code file, free of charge, in any
// project, commercial or otherwise, entirely at your risk, with the condition
// that any redistribution (in part or whole) of source code must retain
@nsantorello
nsantorello / IdGenerator.h
Created February 22, 2012 21:48
Random alphanumeric case-sensitive ID generator in Objective C
//
// IdGenerator.h
//
//
// Created by Noah Santorello on 2/22/12.
// Copyright (c) 2012 Noah Santorello. All rights reserved.
//
@interface IdGenerator : NSObject
@nsantorello
nsantorello / convert.sh
Created February 21, 2012 21:59
For iPhone devs: Create a halved version of this file, and rename the full-size version to @2x.
#!/bin/bash
FILE=$1
BASE=${FILE%.*}
EXT=${FILE##*.}
cp "$FILE" "${BASE}@2x.${EXT}"
WIDTH_RAW=`sips -g pixelWidth "$FILE" | sed -n 2p`
WIDTH=${WIDTH_RAW##*:}
HEIGHT_RAW=`sips -g pixelHeight "$FILE" | sed -n 2p`
HEIGHT=${HEIGHT_RAW##*:}
@nsantorello
nsantorello / GetOAuth2Token.sh
Created October 5, 2011 20:45
Bash script to get the OAuth2 token for a user
#!/bin/bash
echo '* Installing oauth2 Ruby gem'
gem install oauth2
echo '* Done installing oauth2 gem'
echo ''
echo '* Enter your API ID:'
read apiid
echo '* Enter your API secret:'