Skip to content

Instantly share code, notes, and snippets.

View OliverLetterer's full-sized avatar
👨‍💻
Happy coding :)

Oliver Letterer OliverLetterer

👨‍💻
Happy coding :)
View GitHub Profile
@OliverLetterer
OliverLetterer / Test
Created October 1, 2011 10:35
Test Gist
Content 111
# define _DLog(format, ...) NSLog((@"%s [%d] " format), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
# ifdef DEBUG
# define DLog(format, ...) _DLog(format, ##__VA_ARGS__)
# else
# define DLog(...)
# endif
@OliverLetterer
OliverLetterer / command
Created August 4, 2011 08:14
mac os x - extract current user image
dscl . -read /Users/oliver JPEGPhoto | tail -1 | xxd -r -p > ~/Desktop/accountImage.jpg