Skip to content

Instantly share code, notes, and snippets.

View tuchangwei's full-sized avatar

Changwei tuchangwei

View GitHub Profile
@tuchangwei
tuchangwei / GDC
Created May 5, 2015 10:06
GDC Demo
var group = dispatch_group_create()
var queue = dispatch_queue_create("me.tutuge.test.gcd", DISPATCH_QUEUE_CONCURRENT);
dispatch_group_async(group, queue, { () -> Void in
NSThread.sleepForTimeInterval(10)
println("First block done...")
})
dispatch_group_async(group, queue, { () -> Void in
@tuchangwei
tuchangwei / curl
Created April 11, 2014 08:46
Some demo to show how to use curl command.
curl -X GET "http://192.168.1.200:808/workFlowWebService.asmx/GetAndriodInitDBListAL"
curl --dump-header - -H "Content-Type: application/x-www-form-urlencoded" -H "Content-Length: 0" -X POST "http://192.168.1.200:808/workFlowWebService.asmx/GetAndriodInitDBListAL"