User Nick Johnson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:35:50Z http://stackoverflow.com/feeds/user/12030 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1810356/how-to-implement-tag-system/1810894#1810894 0 Answer by Nick Johnson for How to implement tag system Nick Johnson 2009-11-27T22:52:28Z 2009-11-27T22:52:28Z <p>If your database supports indexable arrays (like PostgreSQL, for example), I would recommend an entirely denormalized solution - store tags as an array of strings on the same table. If not, a secondary table mapping objects to tags is the best solution. If you need to store extra information against tags, you can use a separate tags table, but there's no point in introducing a second join for every tag lookup.</p> http://stackoverflow.com/questions/1809335/python-script-optimization-for-app-engine/1809446#1809446 1 Answer by Nick Johnson for python script optimization for app engine Nick Johnson 2009-11-27T15:47:06Z 2009-11-27T15:47:06Z <p>The first thing you should do is rewrite your script to use the App Engine datastore directly. A large part of the time you're spending is undoubtedly because you're using HTTP requests (two per entry!) to insert data into your datastore. Using the datastore directly with <a href="http://code.google.com/appengine/docs/python/datastore/functions.html" rel="nofollow">batch puts</a> ought to cut a couple of orders of magnitude off your runtime.</p> <p>If your parsing code is still too slow, you can cut the work up into chunks and use the <a href="http://code.google.com/appengine/docs/python/taskqueue/" rel="nofollow">task queue API</a> to do the work in multiple requests.</p> http://stackoverflow.com/questions/1749905/code-golf-fractran 31 Code Golf: Fractran Nick Johnson 2009-11-17T16:06:48Z 2009-11-27T11:49:40Z <h1>The Challenge</h1> <p>Write a program that acts as a <a href="http://en.wikipedia.org/wiki/FRACTRAN" rel="nofollow">Fractran</a> interpreter. The shortest interpreter by character count, in any language, is the winner. Your program must take two inputs: The fractran program to be executed, and the input integer n. The program may be in any form that is convenient for your program - for example, a list of 2-tuples, or a flat list. The output must be a single integer, being the value of the register at the end of execution.</p> <h2>Fractran</h2> <p>Fractran is a trivial esoteric language invented by <a href="http://en.wikipedia.org/wiki/John%5FHorton%5FConway" rel="nofollow">John Conway</a>. A fractran program consists of a list of positive fractions and an initial state n. The interpreter maintains a program counter, initially pointing to the first fraction in the list. Fractran programs are executed in the following fashion:</p> <ol> <li>Check if the product of the current state and the fraction currently under the program counter is an integer. If it is, multiply the current state by the current fraction and reset the program counter to the beginning of the list.</li> <li>Advance the program counter. If the end of the list is reached, halt, otherwise return to step 1.</li> </ol> <p>For details on how and why Fractran works, see <a href="http://esoteric.voxelperfect.net/wiki/Fractran" rel="nofollow">the esolang entry</a> and <a href="http://scienceblogs.com/goodmath/2006/10/prime%5Fnumber%5Fpathology%5Ffractra.php" rel="nofollow">this entry</a> on good math/bad math.</p> <h2>Test Vectors</h2> <p><strong>Program:</strong> [(3, 2)]<br> <strong>Input:</strong> 72 (2<sup>3</sup>3<sup>2</sup>)<br> <strong>Output:</strong> 243 (3<sup>5</sup>)</p> <p><strong>Program:</strong> [(3, 2)]<br> <strong>Input:</strong> 1296 (2<sup>4</sup>3<sup>4</sup>)<br> <strong>Output:</strong> 6561 (3<sup>8</sup>)</p> <p><strong>Program:</strong> [(455, 33), (11, 13), (1, 11), (3, 7), (11, 2), (1, 3)]<br> <strong>Input:</strong> 72 (2<sup>3</sup>3<sup>2</sup>)<br> <strong>Output:</strong> 15625 (5<sup>6</sup>)</p> <p><strong>Bonus test vector:</strong></p> <p>Your submission does not need to execute this last program correctly to be an acceptable answer. But kudos if it does!</p> <p><strong>Program:</strong> [(455, 33), (11, 13), (1, 11), (3, 7), (11, 2), (1, 3)]<br> <strong>Input:</strong> 60466176 (2<sup>10</sup>3<sup>10</sup>)<br> <strong>Output:</strong> 7888609052210118054117285652827862296732064351090230047702789306640625 (5<sup>100</sup>)</p> <h2>Submissions &amp; Scoring</h2> <p>Programs are ranked strictly by length in characters - shortest is best. Feel free to submit both a nicely laid out and documented and a 'minified' version of your code, so people can see what's going on.</p> <p><strong>The language 'J' is not admissible. This is because there's already a well-known solution in J on one of the linked pages.</strong> If you're a J fan, sorry!</p> <p>As an extra bonus, however, anyone who can provide a working fractran interpreter <em>in</em> fractran will receive a 500 reputation point bonus. In the unlikely event of multiple self-hosting interpreters, the one with the shortest number of fractions will receive the bounty.</p> <h2>Winners</h2> <p>The official winner, after submitting a self-hosting fractran solution comprising 1779 fractions, is <a href="http://stackoverflow.com/questions/1749905/code-golf-fractran/1773868#1773868">Jesse Beder's solution</a>. Practically speaking, the solution is too slow to execute even 1+1, however.</p> <p>Incredibly, this has since been beaten by another fractran solution - <a href="http://stackoverflow.com/questions/1749905/code-golf-fractran/1802570#1802570">Amadaeus's solution</a> in only 84 fractions! It is capable of executing the first two test cases in a matter of seconds when running on my reference Python solution. It uses a novel encoding method for the fractions, which is also worth a close look.</p> <p>Honorable mentions to:</p> <ul> <li><a href="http://stackoverflow.com/questions/1749905/code-golf-fractran/1750591#1750591">Stephen Canon's solution</a>, in 165 characters of x86 assembly (28 bytes of machine code)</li> <li><a href="http://stackoverflow.com/questions/1749905/code-golf-fractran/1751375#1751375">Jordan's solution</a> in 52 characters of ruby - which handles long integers</li> <li><a href="http://stackoverflow.com/questions/1749905/code-golf-fractran/1750633#1750633">Useless's solution</a> in 87 characters of Python, which, although not the shortest Python solution, is one of the few solutions that isn't recursive, and hence handles harder programs with ease. It's also very readable.</li> </ul> http://stackoverflow.com/questions/1749905/code-golf-fractran/1780262#1780262 0 Answer by Nick Johnson for Code Golf: Fractran Nick Johnson 2009-11-22T22:33:27Z 2009-11-27T11:49:40Z <h2>Reference implementation in Python</h2> <p>This implementation operates on prime factorizations.</p> <p>First, it decodes a list of fraction tuples by encoding the numerator and denominator as a list of (idx, value) tuples, where idx is the number of the prime (2 is prime 0, 3 is prime 1, and so forth).</p> <p>The current state is a list of exponents for each prime, by index. Executing an instruction requires first iterating over the denominator, checking if the indexed state element is at least the specified value, then, if it matches, decrementing state elements specified in the denominator, and incrementing those specified in the numerator.</p> <p>This approach is about 5 times the speed of doing arithmetic operations on large integers in Python, and is a lot easier to debug!</p> <p>A further optimisation is provided by constructing an array mapping each prime index (variable) to the first time it is checked for in the denominator of a fraction, then using that to construct a 'jump_map', consisting of the next instruction to execute for each instruction in the program.</p> <pre><code>def primes(): """Generates an infinite sequence of primes using the Sieve of Erathsones.""" D = {} q = 2 idx = 0 while True: if q not in D: yield idx, q idx += 1 D[q * q] = [q] else: for p in D[q]: D.setdefault(p + q, []).append(p) del D[q] q += 1 def factorize(num, sign = 1): """Factorizes a number, returning a list of (prime index, exponent) tuples.""" ret = [] for idx, p in primes(): count = 0 while num % p == 0: num //= p count += 1 if count &gt; 0: ret.append((idx, count * sign)) if num == 1: return tuple(ret) def decode(program): """Decodes a program expressed as a list of fractions by factorizing it.""" return [(factorize(n), factorize(d)) for n, d in program] def check(state, denom): """Checks if the program has at least the specified exponents for each prime.""" for p, val in denom: if state[p] &lt; val: return False return True def update_state(state, num, denom): """Checks the program's state and updates it according to an instruction.""" if check(state, denom): for p, val in denom: state[p] -= val for p, val in num: state[p] += val return True else: return False def format_state(state): return dict((i, v) for i, v in enumerate(state) if v != 0) def make_usage_map(program, maxidx): firstref = [len(program)] * maxidx for i, (num, denom) in enumerate(program): for idx, value in denom: if firstref[idx] == len(program): firstref[idx] = i return firstref def make_jump_map(program, firstref): jump_map = [] for i, (num, denom) in enumerate(program): if num: jump_map.append(min(min(firstref[idx] for idx, val in num), i)) else: jump_map.append(i) return jump_map def fractran(program, input, debug_when=None): """Executes a Fractran program and returns the state at the end.""" maxidx = max(z[0] for instr in program for part in instr for z in part) + 1 state = [0]*maxidx if isinstance(input, (int, long)): input = factorize(input) for prime, val in input: state[prime] = val firstref = make_usage_map(program, maxidx) jump_map = make_jump_map(program, firstref) pc = 0 length = len(program) while pc &lt; length: num, denom = program[pc] if update_state(state, num, denom): if num: pc = jump_map[pc] if debug_when and debug_when(state): print format_state(state) else: pc += 1 return format_state(state) </code></pre> http://stackoverflow.com/questions/1807545/app-engine-model-filtering-with-django/1807898#1807898 2 Answer by Nick Johnson for App Engine model filtering with Django Nick Johnson 2009-11-27T10:18:37Z 2009-11-27T10:18:37Z <p>You need to insert a space between the field name and the operator in your filter arguments - eg, use <code>.filter('intake =')</code> instead of <code>.filter('intake=')</code>. With an equality filter, you can also leave it out entirely, as in <code>.filter('intake')</code>. Without the space, the equals sign is taken to be part of the field name.</p> http://stackoverflow.com/questions/1805830/where-how-should-i-do-validation-and-transformations-on-entities-in-google-app-en/1806004#1806004 0 Answer by Nick Johnson for Where/How should I do validation and transformations on entities in Google App Engine? Nick Johnson 2009-11-26T22:45:41Z 2009-11-26T22:45:41Z <p>The best answer depends on what sort of transformations you need to do. There's no generalized pre-/post- put methods for models, but there are several other options:</p> <ul> <li>As you mentioned, you can pass validation functions to Property class constructors</li> <li>You can use a custom property class that generates values programmatically, such as <a href="http://blog.notdot.net/2009/9/Custom-Datastore-Properties-1-DerivedProperty" rel="nofollow">this one</a>.</li> <li>You can modify entities as they are stored at the lowest level using <a href="http://blog.notdot.net/2009/11/API-call-hooks-for-fun-and-profit" rel="nofollow">api call hooks</a>.</li> </ul> http://stackoverflow.com/questions/1805555/what-is-the-performance-cost-of-named-keys-or-pre-generated-keys-in-google-app/1805774#1805774 1 Answer by Nick Johnson for What is the performance cost of named keys or "pre-generated" keys in Google App Engine? Nick Johnson 2009-11-26T21:37:34Z 2009-11-26T21:37:34Z <p>There is no intrinsic penalty to using a key name instead of an auto-generated ID, except the overhead of a (potentially) longer key on the entity and any ReferenceProperties that reference it.</p> <p>In certain cases, in fact, using auto-allocated IDs can have a performance penalty: If you insert new entities at a very high rate (several hundred per second), since all the new entities have IDs in the same range, they will all be written to the same Bigtable tablet, and can cause contention and increased timeouts. The vast majority of apps never have to worry about this, though.</p> <p>There's no performance impact to allocating as many IDs as you want - App Engine simply increases the ID counter by the number you request. (This is a simplification, but generally accurate).</p> <p>In answer to your concerns, App Engine doesn't randomly generate keys. It either uses an auto-allocated id, which is allocated using a counter, and thus guaranteed unique, or it uses the key you supplied. So in answer to your last 3 bullet points:</p> <ol> <li>No.</li> <li>Only in storage for the (potentially) longer keys</li> <li>No, and the cost is roughly O(1) regardless of how many you ask for.</li> </ol> http://stackoverflow.com/questions/1798455/concurrency-how-does-shared-memory-vs-message-passing-handle-large-data-structur/1804568#1804568 3 Answer by Nick Johnson for Concurrency: how does shared memory vs message passing handle large data structures? Nick Johnson 2009-11-26T16:15:03Z 2009-11-26T16:15:03Z <p>In Erlang, all values are immutable - so there's no need to copy a message when it's sent between processes, as it cannot be modified anyway.</p> <p>In Go, message passing is by convention - there's nothing to prevent you sending someone a pointer over a channel, then modifying the data pointed to, only convention, so once again there's no need to copy the message.</p> http://stackoverflow.com/questions/1804112/in-a-bigtable-datastore-with-regards-to-concurrency-how-do-i-lock-an-entity/1804546#1804546 4 Answer by Nick Johnson for In a BigTable datastore, with regards to concurrency, how do I "lock" an entity? Nick Johnson 2009-11-26T16:10:19Z 2009-11-26T16:10:19Z <p>You have several options:</p> <ul> <li>Depending on the scope of your counter and your entities, have the Transaction entities be child entities of the counter. Then, you can insert a transaction and update the counter <a href="http://code.google.com/appengine/docs/python/datastore/transactions.html" rel="nofollow">transactionally</a>. Bear in mind that this limits your update rate to about 1-5 QPS.</li> <li>If your counts don't have to be 100% accurate, insert the entity and update the counter (using a single-entity transaction) separately. You can run a regular cronjob to re-count the number of entities and fix the counter if errors force it to be out of sync.</li> <li>You could build your own <a href="http://blog.notdot.net/2009/9/Distributed-Transactions-on-App-Engine" rel="nofollow">limited distributed transaction support</a>.</li> </ul> http://stackoverflow.com/questions/1804113/how-to-implement-unique-hits-on-articles/1804479#1804479 1 Answer by Nick Johnson for How to implement unique hits on articles Nick Johnson 2009-11-26T15:54:33Z 2009-11-26T15:54:33Z <p>The simplest method: When the user first visits, increment the counter and send them a cookie. If you detect the cookie, don't increment the counter.</p> http://stackoverflow.com/questions/1800229/iphone-table-view-delete-entry-and-update-app-engine-db/1800665#1800665 1 Answer by Nick Johnson for iphone table view delete entry and update app engine db Nick Johnson 2009-11-25T23:29:59Z 2009-11-25T23:29:59Z <p>The approach you suggest is reasonable. If you specify the UUID as your key name, you can delete it directly. To create an entity with a key name, do:</p> <pre><code>MyEntity(key_name=a_string, ...) </code></pre> <p>To delete an entity by key name (without fetching it first), do:</p> <pre><code>db.delete(db.Key.from_path("MyEntity", a_string)) </code></pre> <p>There's no need to have both a UUID and a device ID - the UUID is sufficient to ensure uniqueness across all devices.</p> http://stackoverflow.com/questions/1795668/in-google-app-engine-what-happens-when-i-change-the-class-related-to-a-persisted/1796136#1796136 2 Answer by Nick Johnson for In Google App Engine, what happens when I change the Class related to a persisted object? Nick Johnson 2009-11-25T10:51:53Z 2009-11-25T10:51:53Z <p>Model instances aren't stored using standard serialization such as Pickle. The properties (such as 'version' in your example) are encoded and stored as a Protocol Buffer, and when you load an entity from the datastore, the Protocol Buffer is decoded and used to build a new Model instance.</p> <p>As a result, you can modify your object however you like. Adding new properties will cause them to have their default value for any entities that were stored before they were added, or to throw an error if the new property is required and no default is supplied. Removing fields will simply cause them to no longer show up on your model instances.</p> <p>One warning, however: You shouldn't be overriding <strong>init</strong> in your model classes, as you do above. Doing so is likely to break construction of entities from the datastore. If you need to modify the construction behaviour, I'd suggest using a factory method (or function) instead.</p> http://stackoverflow.com/questions/1793253/minimal-binary-diff-for-similar-1000-byte-blocks-with-static-noise/1793900#1793900 0 Answer by Nick Johnson for Minimal binary diff for similar 1000 byte blocks with static noise? Nick Johnson 2009-11-25T00:19:15Z 2009-11-25T00:19:15Z <p>Have you tried standard compression algorithms already? What performance do you see? You should get fairly good compression ratios on the xor of the old and new blocks, due to the high bias towards 0s.</p> <p>Other than the standard options, one alternative that springs to mind is encoding each diff as a list of variable-length integers specifying the distance between flipped bits. For example, using 5-bit variable length integers, you could describe gaps of up to 16 bits in 5 bits, gaps of 17 to 1024 bits in 10 bits, and so forth. If there's any regularity to the intervals between flipped bits, you can use a regular compressor on this encoding for further savings.</p> http://stackoverflow.com/questions/1791580/printing-several-binary-data-fields-from-google-datastore/1793333#1793333 2 Answer by Nick Johnson for Printing several binary data fields from Google DataStore? Nick Johnson 2009-11-24T22:21:35Z 2009-11-24T22:21:35Z <p>Several easy options:</p> <ul> <li><a href="http://docs.python.org/library/base64.html" rel="nofollow">base64</a> encode your data - meaning you can still use JSON.</li> <li>Use <a href="http://code.google.com/p/protobuf/" rel="nofollow">Protocol Buffers</a>.</li> <li>Prefix each field with its length - either as a 4- or 8- byte integer, or as a numeric string.</li> </ul> http://stackoverflow.com/questions/1789709/is-it-possible-to-use-aes-with-an-iv-in-ecb-mode/1790066#1790066 4 Answer by Nick Johnson for Is it possible to use AES with an IV in ECB mode? Nick Johnson 2009-11-24T13:28:27Z 2009-11-24T13:28:27Z <p>There's no way to use an IV in ECB mode. This is kind of moot, however, as you should</p> <h1>Never Ever use ECB mode for Anything, Ever*.</h1> <p>In more general terms, you probably shouldn't be using crypto primitives directly, but rather using a crypto library like <a href="http://www.keyczar.org/" rel="nofollow">keyczar</a> that abstracts away these sorts of decisions.</p> <p>** Actually, there are some very specialized uses for ECB, such as 'secure' pseudorandom permutations - but you certainly shouldn't be using ECB for anything related to encrypting data.</p> http://stackoverflow.com/questions/1788041/how-to-create-a-rest-service-with-google-app-engine-and-python/1789226#1789226 1 Answer by Nick Johnson for How-to create a REST service with Google App Engine and Python? Nick Johnson 2009-11-24T10:34:38Z 2009-11-24T10:34:38Z <p>Using the webapp framework, you can capture regular expression groups and pass them to your handler like this:</p> <pre><code>class WeatherHandler(webapp.RequestHandler): def get(self, location): # Do something for location application = webapp.WSGIApplication([ ('/temperature/(.*)', WeatherHandler), ]) def main(): run_wsgi_app(application) if __name__ == "__main__": main() </code></pre> <p>Any parenthesized groups in the regular expression are collected and passed as positional arguments to the get/post/etc methods on your handler.</p> http://stackoverflow.com/questions/1788119/appengine-how-to-use-validator-in-classproperty/1789206#1789206 0 Answer by Nick Johnson for appengine: how to use validator in Class:Property? Nick Johnson 2009-11-24T10:30:25Z 2009-11-24T10:30:25Z <p>You need to either define the method before the property, as joetsuihk demonstrates, or define it as a function, outside the class. I would recommend the latter, as there's no reason for the validator to be associated with the class.</p> http://stackoverflow.com/questions/1785637/gae-image-posting-to-datastore-through-django-form/1786944#1786944 1 Answer by Nick Johnson for GAE Image Posting to Datastore through Django Form Nick Johnson 2009-11-24T00:01:58Z 2009-11-24T00:01:58Z <p>In your image serving code, you're writing out a redirect, with the 'URL' for the redirect being the image data - eg, you're redirecting users to "%PNG...". You need to write out the response data directly.</p> <p>Besides that, what is HttpResponseRedirect? It's not part of the webapp framework.</p> <p>Also, have you checked the datastore viewer to see if the image is being uploaded correctly? Try hashing the image before uploading it, and comparing it to the hash you see in the datastore (remove the resize call first). Is it the same?</p> http://stackoverflow.com/questions/1782906/how-do-i-activate-the-interactive-console-on-app-engine/1782956#1782956 3 Answer by Nick Johnson for How do I activate the Interactive Console on App Engine? Nick Johnson 2009-11-23T12:46:35Z 2009-11-23T12:46:35Z <p>Add the following to your app.yaml, before any .* handler:</p> <pre><code>- url: /admin/.* script: $PYTHON_LIB/google/appengine/ext/admin login: admin </code></pre> <p>Another option for your use-case is to enable remote_api, then use the <code>remote_api_shell.py</code> tool included with the SDK, allowing you to test things from a local Python shell.</p> http://stackoverflow.com/questions/1777949/where-can-i-find-a-current-example-of-code-to-bulk-upload-data-to-google-appeng/1778427#1778427 1 Answer by Nick Johnson for Where can I find a (current) example of code to bulk upload data to Google AppEngine? (For localhost, too.) Nick Johnson 2009-11-22T11:01:30Z 2009-11-22T11:01:30Z <p>The docs have <a href="http://code.google.com/appengine/docs/python/tools/uploadingdata.html" rel="nofollow">a section</a> on uploading and downloading data, with examples. You should be using appcfg.py unless you need one of the features of bulkloader.py that are not yet integrated, such as --dump/--restore functionality.</p> <p>It sounds like the authentication problems you're having are related to Google Apps: If you have an App Engine app that allows any Google account to authenticate, and you have a Google Apps account as administrator, you won't be able to authenticate against your app as an administrator with it, even if you have created a Google account for that email address. You need to create a gmail account, and add that account as an administrator, so you can use that address when you need to authenticate against your app.</p> http://stackoverflow.com/questions/1775016/apache-commons-file-upload-and-percentage-progress-in-google-apps/1775905#1775905 0 Answer by Nick Johnson for Apache commons file upload and percentage progress in Google Apps Nick Johnson 2009-11-21T16:13:56Z 2009-11-21T16:13:56Z <p>Your code isn't called until the entire request has been received - so no, you can't monitor upload progress from the server end.</p> http://stackoverflow.com/questions/1770037/importing-python-classes-in-the-google-app-engine/1773512#1773512 0 Answer by Nick Johnson for Importing python classes in the Google App Engine Nick Johnson 2009-11-20T21:58:53Z 2009-11-20T21:58:53Z <p>Any files specified as static files get uploaded separately from your code - they're not accessible by your Python code, so even with the PYTHONPATH set correctly, you won't be able to import them.</p> http://stackoverflow.com/questions/1750343/fastest-way-to-search-1gb-a-string-of-data-for-the-first-occurence-of-a-pattern/1762275#1762275 0 Answer by Nick Johnson for Fastest way to search 1GB+ a string of data for the first occurence of a pattern in Python. Nick Johnson 2009-11-19T10:19:50Z 2009-11-19T10:19:50Z <p>One efficient but complex way is <a href="http://www.ddj.com/architect/184405504" rel="nofollow">full-text indexing with the Burrows-Wheeler transform</a>. It involves performing a BWT on your source text, then using a small index on that to quickly find any substring in the text that matches your input pattern.</p> <p>The time complexity of this algorithm is roughly O(n) with the length of the string you're matching - and independent of the length of the input string! Further, the size of the index is not much larger than the input data, and with compression can even be reduced below the size of the source text.</p> http://stackoverflow.com/questions/1758287/spelling-suggestions-for-conjoined-words/1759405#1759405 1 Answer by Nick Johnson for Spelling Suggestions for Conjoined Words Nick Johnson 2009-11-18T21:58:33Z 2009-11-18T21:58:33Z <p>Check out this <a href="http://norvig.com/spell-correct.html" rel="nofollow">excellent article</a> on writing a spelling checker. Using that technique, you have two options: Either include every pair of words, or every likely pair of words in the dictionary (with the separated words as the solution), or try every possible split point and do a standard dictionary lookup to see if both words are valid.</p> http://stackoverflow.com/questions/1756059/problem-with-db-get-in-google-app-engine/1756578#1756578 3 Answer by Nick Johnson for Problem with db.get in Google App Engine Nick Johnson 2009-11-18T14:58:06Z 2009-11-18T14:58:06Z <p>It seems likely you're importing the same module (model.datastore) by different names in different places - for example, by using a relative import inside the model package. db.get returns whichever name it saw when the module was first imported, while your own code (the query) returns whatever you explicitly specified.</p> http://stackoverflow.com/questions/1753897/what-approaches-have-you-used-for-lightweight-python-unit-tests-on-app-engine/1755291#1755291 1 Answer by Nick Johnson for What approach(es) have you used for lightweight Python unit-tests on App Engine? Nick Johnson 2009-11-18T11:12:23Z 2009-11-18T11:12:23Z <p>You don't need to write your own stubs - the SDK includes them, since they're what it uses to emulate the production APIs. Not all of them are suitable for use in unit-tests, but most are. Check out <a href="http://gist.github.com/186251" rel="nofollow">this code</a> for an example of the setup/teardown code you need to make use of the built in stubs.</p> http://stackoverflow.com/questions/1751212/google-app-engine-authentication/1751407#1751407 1 Answer by Nick Johnson for Google app engine authentication Nick Johnson 2009-11-17T20:04:56Z 2009-11-17T20:04:56Z <p>You can define your own API, and use whatever authentication method you prefer. You'll need to embed some sort of secret in your app that you use to authenticate with - for example, a randomly generated secret key.</p> <p>In general, it's not possible to embed a key in user software that users can't extract. You have a slight advantage on the iPhone, because it's a very controlled platform: Most users have no way of accessing your app's binaries. You're still vulnerable to a user with a rooted iPhone disassembling your app and retrieving the secret, however - and there's nothing you can do about that.</p> <p>Alternately, you can require users of your app to sign up for an account with your app, and authenticate users individually.</p> http://stackoverflow.com/questions/1748667/problem-with-persisting-data-in-google-application-engine/1749461#1749461 2 Answer by Nick Johnson for Problem with persisting data in Google Application Engine Nick Johnson 2009-11-17T15:02:11Z 2009-11-17T15:02:11Z <p>As the message suggests, you can't use a long as your primary key if your entity is a child entity, which is true in this case. Instead, use a key or encoded string as your primary key - see <a href="http://code.google.com/appengine/docs/java/datastore/creatinggettinganddeletingdata.html#Keys" rel="nofollow">here</a> for details.</p> <p>You should probably also read up on <a href="http://code.google.com/appengine/docs/java/datastore/dataclasses.html#Child%5FObjects%5Fand%5FRelationships" rel="nofollow">child objects and relationships</a>.</p> http://stackoverflow.com/questions/1746867/is-java-or-python-better-for-writing-a-web-page-source-checking-web-service-on-go/1747449#1747449 2 Answer by Nick Johnson for Is Java or Python better for writing a web-page-source-checking web service on Google App Engines? Nick Johnson 2009-11-17T08:55:11Z 2009-11-17T08:55:11Z <p>For your particular task, I'd suggest Python, mostly because of the existence of <a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">Beautiful Soup</a>, an excellent HTML parser that handles poorly formed documents.</p> http://stackoverflow.com/questions/1739306/google-app-engine-how-do-i-put-variables-in-my-url-in-gae/1745613#1745613 3 Answer by Nick Johnson for Google App Engine: How do I put variables in my url in GAE. Nick Johnson 2009-11-16T23:41:47Z 2009-11-16T23:41:47Z <p>Regular expression groups in app.yaml don't get passed to webapps directly. But if you're using the webapp framework, groups in <em>its</em> routing regular expressions do get passed to webapps. For example:</p> <p>app.yaml:</p> <pre><code>- url: /.* script: boats.py </code></pre> <p>boats.py:</p> <pre><code>class BoatsHandler(webapp.RequestHandler): def get(self, state, city): # Do something with state and city. They're strings, not ints, remember! application = webapp.WSGIApplication([ ('/boats/([^/]+)/([^/]+)', BoatsHandler), ]) def main(): run_wsgi_app(application) if __name__ == '__main__': main() </code></pre> http://stackoverflow.com/questions/1804112/in-a-bigtable-datastore-with-regards-to-concurrency-how-do-i-lock-an-entity/1804546#1804546 Comment by Nick Johnson on In a BigTable datastore, with regards to concurrency, how do I "lock" an entity? Nick Johnson 2009-11-27T17:19:46Z 2009-11-27T17:19:46Z Well, you called your entities &quot;Transactions&quot;, so when I said &quot;insert a transaction&quot;, I meant &quot;insert a 'transaction' entity&quot;. Reads inside transactions are transactional, though, yes - only with optimistic concurrency rather than locks. http://stackoverflow.com/questions/1809335/python-script-optimization-for-app-engine/1809355#1809355 Comment by Nick Johnson on python script optimization for app engine Nick Johnson 2009-11-27T15:51:25Z 2009-11-27T15:51:25Z Wait... you're making those HTTP requests to update the data. Removing those will cut a <i>lot</i> off your runtime. http://stackoverflow.com/questions/1809335/python-script-optimization-for-app-engine/1809355#1809355 Comment by Nick Johnson on python script optimization for app engine Nick Johnson 2009-11-27T15:47:41Z 2009-11-27T15:47:41Z In the code you pasted, you're doing repeated requests inside a for loop - so it's not just one fetch. http://stackoverflow.com/questions/1789709/is-it-possible-to-use-aes-with-an-iv-in-ecb-mode/1790066#1790066 Comment by Nick Johnson on Is it possible to use AES with an IV in ECB mode? Nick Johnson 2009-11-27T15:20:52Z 2009-11-27T15:20:52Z I think that fits under the 'very specialized uses' umbrella. :) http://stackoverflow.com/questions/1806673/are-vector-assignments-copied-by-value-or-by-reference-in-googles-go-language/1806760#1806760 Comment by Nick Johnson on Are vector assignments copied by value or by reference in Google's Go language? Nick Johnson 2009-11-27T08:56:17Z 2009-11-27T08:56:17Z No need to iterate - just call Vector.AppendVector. http://stackoverflow.com/questions/1805555/what-is-the-performance-cost-of-named-keys-or-pre-generated-keys-in-google-app/1805774#1805774 Comment by Nick Johnson on What is the performance cost of named keys or "pre-generated" keys in Google App Engine? Nick Johnson 2009-11-26T22:13:30Z 2009-11-26T22:13:30Z The current maximum value for the counter is stored in Bigtable. Each appserver caches counter values in blocks, so when you request an ID (or create an entity), the vast majority of the time, the appserver is able to allocate one from its locally cached set. When it runs out, it simply updates the bigtable, allocating itself another large block. http://stackoverflow.com/questions/1749905/code-golf-fractran/1802570#1802570 Comment by Nick Johnson on Code Golf: Fractran Nick Johnson 2009-11-26T20:46:17Z 2009-11-26T20:46:17Z A truly remarkable piece of work. Kudos! http://stackoverflow.com/questions/1796443/calculating-difference-between-username-and-email-in-javascript/1796487#1796487 Comment by Nick Johnson on Calculating difference between username and email in javascript Nick Johnson 2009-11-26T09:25:05Z 2009-11-26T09:25:05Z Just to clarify - this answer is WRONG. Example - strcasecmp(&quot;foobar&quot;, &quot;azobar&quot;) returns 5, even though the string difference is 2. strcasecmp is not levenshtein. http://stackoverflow.com/questions/1799896/does-there-exist-a-digital-image-steganography-algorithm-which-would-be-resistant Comment by Nick Johnson on Does there exist a digital image steganography algorithm which would be resistant to image manipulation? Nick Johnson 2009-11-25T23:25:40Z 2009-11-25T23:25:40Z I presume you mean 'copyright violation detection', because your copyright is a legal right, and isn't &quot;protected&quot; or endangered by technical measures. http://stackoverflow.com/questions/1796443/calculating-difference-between-username-and-email-in-javascript/1796487#1796487 Comment by Nick Johnson on Calculating difference between username and email in javascript Nick Johnson 2009-11-25T15:49:02Z 2009-11-25T15:49:02Z strcasecmp doesn't make any guarantee on what the magnitude of its return value will be - only its sign. http://stackoverflow.com/questions/1749905/code-golf-fractran/1773868#1773868 Comment by Nick Johnson on Code Golf: Fractran Nick Johnson 2009-11-25T10:53:04Z 2009-11-25T10:53:04Z Congratulations, have 500 points! :) http://stackoverflow.com/questions/1793137/aes-256-in-ctr-mode/1793349#1793349 Comment by Nick Johnson on AES 256 in CTR mode Nick Johnson 2009-11-25T08:50:55Z 2009-11-25T08:50:55Z Sorry, you're right - I didn't read it closely enough. I was thinking of the situation where you use this to encrypt a mutable file, for example, by naively numbering each block after its position in the file. http://stackoverflow.com/questions/1793137/aes-256-in-ctr-mode/1793349#1793349 Comment by Nick Johnson on AES 256 in CTR mode Nick Johnson 2009-11-25T00:16:02Z 2009-11-25T00:16:02Z The relationship between flipped bits in plaintext and ciphertext has privacy implications, too. For example, if the attacker can obtain a copy of a plaintext block and its ciphertext at one point in time, he can read it for as long as the same key is used, even if it's been modified. http://stackoverflow.com/questions/1791804/nearest-records Comment by Nick Johnson on Nearest Records Nick Johnson 2009-11-24T22:54:13Z 2009-11-24T22:54:13Z Also, you might want to go through your questions and accept answers. People will be more willing to put effort into answering your questions if you usually accept answers - but your accept rate at the moment is less than 20%! http://stackoverflow.com/questions/1791804/nearest-records Comment by Nick Johnson on Nearest Records Nick Johnson 2009-11-24T22:18:00Z 2009-11-24T22:18:00Z &quot;For every record 'A' which records are nearer&quot; - nearer to what than what?