I hereby claim:
- I am honestbleeps on github.
- I am honestbleeps (https://keybase.io/honestbleeps) on keybase.
- I have a public key whose fingerprint is F045 3854 2FCA 3ED9 58D4 F31F EC8D 8AF6 D926 9E85
To claim this, I am signing this object:
| <?php | |
| $json = file_get_contents('upd.json'); | |
| $jsonObj = json_decode($json); | |
| echo '<?xml version="1.0" encoding="UTF-8"?>'."\n"; | |
| ?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Extension Updates</key> | |
| <array> |
| # here's the hot mess I whipped up during our code test! | |
| # obvious things I'd change / improve: | |
| # - no hard-coding of "chunk.*" - use the filename as a prefix | |
| # - no writing to disk - store directly to memcache | |
| # - store the # of chunks and an md5 hash of the file in a meta key or in the first binary chunk, rather than in an info.txt | |
| # to save a roundtrip to memcached on each request | |
| # - write a "getChunkAt" like function, to get chunk #36, for example, in case it has fallen off the cache | |
| from pymemcache.client.base import Client |
| # here's the hot mess I whipped up during our code test! | |
| # obvious things I'd change / improve: | |
| # - no hard-coding of "chunk.*" - use the filename as a prefix | |
| # - no writing to disk - store directly to memcache | |
| # - store the # of chunks and an md5 hash of the file in a meta key or in the first binary chunk | |
| # to save a roundtrip to memcached on each request | |
| # - write a "getChunkAt" like function, to get chunk #36, for example, in case it has fallen off the cache | |
| from pymemcache.client.base import Client |
I hereby claim:
To claim this, I am signing this object:
| appendChild : function(node, suppressEvents, commit) { | |
| var me = this, | |
| i, ln, | |
| index, | |
| oldParent, | |
| ps; | |
| if (Ext.isArray(node)) { | |