Skip to content

Instantly share code, notes, and snippets.

View jooddang's full-sized avatar

jooddang jooddang

View GitHub Profile
@jooddang
jooddang / communications.md
Created June 2, 2017 17:46
Co-working suggestions

When you work as a team, effective communications are essential. The world we're living in has lots of tools that facilitate communications with various purposes. Some of them are even for free.

  1. Sprint planning / Issue tracking
    • What is sprint? What is issue tracking? => Google it.
    • Jira ($$$)
    • Trello (for free)
  2. Documentation
    • To share documents that last for long time. (i.e. Guide to set up dev box / Team culture / Other guidelines...)
    • Confluence ($$$)
  • Google Sites (for free)
@jooddang
jooddang / design resources
Created April 25, 2013 00:07
design resources
color scheme
colorzilla.com
colourlovers
aviary
gimp shop
opengraphicdesign.com
dia; diagram
@jooddang
jooddang / wtf.m
Created February 20, 2012 12:51
getting NSURL from NSString
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSString *cachePath = [paths objectAtIndex:0];
NSString *chunkDirectory = [[NSString alloc] initWithFormat:@"%@/CHUNK/dd", cachePath];
NSURL *url = [NSURL fileURLWithPath:chunkDirectory];
//url = file://localhost/Users/jooddang/Library/Application%20Support/iPhone%20Simulator/5.0/Applications/67AE-MY-IPHONE-ID-ABC87EC/Library/Caches/CHUNK/dd
[[NSFileManager defaultManager] fileExistsAtPath:chunkDirectory]; // returns 1