-
Archives
- March 2012
- January 2012
- December 2011
- January 2011
- December 2010
- November 2010
- August 2010
- June 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- September 2009
- August 2009
- January 2009
- October 2008
- February 2008
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- June 2006
- May 2006
-
Meta
Category Archives: Default
Why IDE matters
It has been a long time since I became a coder, or a programmer if you don’t like naming it as coder. When in THU I was working on my own time, playing with some small tools/scripts, happily doing some … Continue reading
Posted in Default
Leave a comment
linode rocks
Now feuvan.net and sibling sites run with native ipv6
Handle URL open from other apps in iOS
For short, declare UTImportedTypeDeclarations(for types that are not predefined as System Uniform Type Identifiers), CFBundleDocumentTypes in Info.plist, UIApplicationLaunchOptionsURLKey in [launchOptions valueForKey:UIApplicationLaunchOptionsURLKey] And for multitask apps, additionally respond to (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation // for iOS 4.2+ or … Continue reading
Updated to WordPress 3.3
The new admin interface looks pretty good. I like it.
remove a symbol from multiple platform Mach-O file
For Mach-O fat binaries that contains multiple platforms, stripping symbol may not work as you would expect. So you have to extract the executables/libraries from Mach-O and thin it using lipo. Then you can remove the .o file you don’t … Continue reading