(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #!/usr/bin/env python3 | |
| import sys | |
| import fontforge | |
| def main(file): | |
| for font in fontforge.fontsInFile(file): | |
| f = fontforge.open(u'%s(%s)' % (file, font)) | |
| f.generate('%s.ttf' % font) |