悲剧,绝对的悲剧,悲剧中的悲剧。
发布时间: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.........【阅读全文】
发布时间:2017-02-21 23:08:54
You can find (and fork) the project in https://github.com/txels/ddt.DDT consists of a class decorator ddt (for your TestCase subclass) and two method decorators (for your tests that want to be multiplied):NoteOnly files ending with ”.yml” and .........【阅读全文】