I hereby claim:
- I am gumblex on github.
- I am gumblex (https://keybase.io/gumblex) on keybase.
- I have a public key whose fingerprint is 8C4E 0F2D B084 A9FB E50B 4AE3 B3E4 D83E 3F3E 5FDC
To claim this, I am signing this object:
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <match target="pattern"> | |
| <test name="lang"> | |
| <string>zh-cn</string> | |
| </test> | |
| <test qual="any" name="family"> | |
| <string>serif</string> |
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <match target="pattern"> | |
| <test qual="any" name="family"> | |
| <string>Source Sans</string> | |
| </test> | |
| <edit name="family" mode="assign"> | |
| <string>Source Sans Pro</string> | |
| </edit> |
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # Licensed under WTFPL or the Unlicense or CC0. | |
| # This uses Python 3, but it's easy to port to Python 2 by changing | |
| # strings to u'xx'. | |
| import itertools | |
| def num2chinese(num, big=False, simp=True, o=False, twoalt=False): |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Copyright 2015 Gumble | |
| # | |
| # This program is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; either version 2 of the License, or | |
| # (at your option) any later version. | |
| # |
| """ | |
| Ported from Paper.js - The Swiss Army Knife of Vector Graphics Scripting. | |
| http://paperjs.org/ | |
| Copyright (c) 2011 - 2014, Juerg Lehni & Jonathan Puckey | |
| http://scratchdisk.com/ & http://jonathanpuckey.com/ | |
| Distributed under the MIT license. See LICENSE file for details. | |
| All rights reserved. |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Simple command line utility to create Zip64 files. | |
| For Python 3.3+ | |
| Most code are from the standard library `zipfile` and `shutil`. | |
| """ |
| /* converted on Wed Jan 13, 2016, 10:06 (UTC+08) by jison-to-w3c v0.35.1152 which is Copyright (c) 2011-2015 by Gunther Rademacher <[email protected]> */ | |
| Root ::= Body? | |
| Body ::= Line ( TERMINATOR Line | TERMINATOR )* | |
| Line ::= Expression | |
| | Statement | |
| Statement | |
| ::= Return | |
| | Comment | |
| | STATEMENT |
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| ''' | |
| This script tries to find encoding errors in stdin and prints out the bad lines. | |
| Usage: | |
| python3 findbadlines.py [encoding] | |
| The default encoding is utf-8. |