ChangeLog を書く際によく使われる英語をまとめました。
ほとんど引用です。
| #!/usr/bin/env node | |
| var argv = require('optimist') | |
| .usage('Usage: --key=[consumer key] -secret=[consumer secret]') | |
| .demand(['key', 'secret']) | |
| .argv | |
| ; | |
| var OAuth = require('oauth').OAuth; | |
| var Step = require('step'); |
全体的に簡略化し、必要と思われる部分を抜粋しました。
Not running
アプリは起動されていないか、実行されていたけれどもシステムによって終了されています。
Inactive
| 更新: | 2013-12-27 |
|---|---|
| バージョン: | 1.5.1 |
| 作者: | @voluntas |
| URL: | http://voluntas.github.io/ |
| CGContextRef context = UIGraphicsGetCurrentContext(); | |
| // // Flip the coordinate system | |
| // CGContextSetTextMatrix(context, CGAffineTransformIdentity); | |
| // CGContextTranslateCTM(context, 0, self.bounds.size.height); | |
| // CGContextScaleCTM(context, 1.0, -1.0); | |
| UIFont *customFont = [UIFont systemFontOfSize:20]; | |
| CTFontRef font = CTFontCreateWithName((CFStringRef)customFont.fontName, 20, NULL); |