Skip to content

Instantly share code, notes, and snippets.

View icomkid's full-sized avatar

Ja hyun, Oh icomkid

  • Seoul, Republic of Korea
View GitHub Profile
@icomkid
icomkid / gist:1028806
Created June 16, 2011 06:56
Python UnitTest Template
import unittest
class TestProblem(unittest.TestCase):
def test_sample(self):
self.assertEqual(1, 1)
if __name__ == '__main__':
unittest.main()
@icomkid
icomkid / gist:1014476
Created June 8, 2011 14:05
[iOS] AppDelegate
MyAppDelegate *appDelegate = (MyAppDelegate *)[[UIApplication sharedApplication] delegate];
@icomkid
icomkid / gist:1004042
Created June 2, 2011 07:02
[iOS] Convert a bundle resource path to URL
NSString *resourcePath = [[NSBundle mainBundle] pathForResource:@"intro" ofType:@"mov"];
NSURL *url = [NSURL fileURLWithPath:resourcePath];