悲剧,绝对的悲剧,悲剧中的悲剧。
(328)
(6)
(18)
(28)
(73)
(62)
(58)
(55)
(28)
发布时间:2017-07-12 22:13:08
to get the memory#import
发布时间:2017-05-31 00:00:32
brought to you bysemaphorelearn moreintroductiontesting applications has become a standard skill set required for any competent developer today. the python community embraces testing, and even the python standard library has goodinbuilt tools to support testing. in the larger.........
发布时间:2017-03-23 01:47:06
for example, let’s say we wanted to track how many times each view controller is presented to a user in an ios app:fortunately, there is another way: method swizzling from a category. here’s how to do it:in computer science, pointer swizzling is the conversion of .........
发布时间:2017-02-24 00:15:54
as something of a follow-up post to the previous entry, here’s a quick recipe for creating a virtual machine using the virtualbox command line tools:we’re using windows server 2008 64bit as an example, modify to taste.$ vm='windows-2008-64bit'create a 32gb “dynamic” disk.$ vboxma.........
发布时间:2017-02-22 00:29:20
python is rich with powerful features and expressive syntax. one of my favorites is decorators. in the context of design patterns, decorators dynamically alter the functionality of a function, method or class without having to directly use subclasses. this is ideal when you need to extend the func.........