User Brandon Thomson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T02:40:24Zhttp://stackoverflow.com/feeds/user/62398http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1655844/what-are-some-good-plugins-for-developing-java-in-vim/1656493#1656493-1Answer by Brandon Thomson for What are some good plugins for developing Java in VIM?Brandon Thomson2009-11-01T05:39:59Z2009-11-01T05:39:59Z<p>I agree... vim is great for simpler/less verbose languages but to get work done in java a real IDE is very helpful. And since companies are spending tens of thousands of their dollars developing them you might as well enjoy the results. If you are used to the vi keybindings try to turn on vi-mode in whatever IDE you use <a href="http://jvi.sourceforge.net/" rel="nofollow">ex, jVi for NetBeans</a></p>
http://stackoverflow.com/questions/1652765/how-can-i-format-js-code-in-vim/1653498#16534980Answer by Brandon Thomson for How can I format JS code in Vim?Brandon Thomson2009-10-31T05:23:24Z2009-10-31T05:23:24Z<p>That script is a little strange... it will turn:</p>
<pre><code>var x = 1 +
2 +
3 +
4 +
5 +
6 +
7;
</code></pre>
<p>into</p>
<pre><code>var x = 1 +
2 +
3 +
4 +
5 +
6 +
7;
</code></pre>
<p>There are some other bizarre cases too, so don't run it on an entire file...</p>
http://stackoverflow.com/questions/1583808/possible-data-schemes-for-achievements-on-google-app-engine/1583865#15838651Answer by Brandon Thomson for Possible Data Schemes for Achievements on Google App EngineBrandon Thomson2009-10-18T02:58:49Z2009-10-18T02:58:49Z<p>Unless your users will be adding achievements dynamically (as in something like Kongregate where users can upload their own games, etc), your achievement list will be static. That means you can store the (name, description, picture) list in your main python file, or as an achievements module or something. You can reference the achievements in your dynamic data by name or id as specified in this list.</p>
<p>To indicate whether a given user has gotten an achievement, a simple way is to add a ListProperty to your player model that will hold the achievements that the player has gotten. By default this will be indexed so you can query for which players have gotten which achievements, etc.</p>
<p>If you also want to store what date/time the user has gotten the achievement, we're getting into an area where the built-in properties are less ideal. You could add another ListProperty with datetime properties corresponding to each achievement, but that's awkward: what we'd really like is a tuple or dict so that we can store the achievement id/name together with the time it was achieved, and make it easy to add additional properties related to each achievement in the future.</p>
<p>My usual approach for cases like this is to dump my ideal data structure into a BlobProperty, but that has some disadvantages and you may prefer a different approach.</p>
<p>Another approach is to have an achievement model separate from your user model, and a ListProperty full of referenceProperties to all the achievements that user has gotten. this has the advantage of letting you index everything very nicely but will be an additional API CPU cost at runtime especially if you have a lot of achievements to look up, and operations like deleting all a user's achievements will be very expensive compared to the above.</p>
http://stackoverflow.com/questions/1539861/what-is-the-good-gvim-guifont-for-c-c-programming/1542749#15427490Answer by Brandon Thomson for what is the good gvim guifont for C/C++ programmingBrandon Thomson2009-10-09T09:18:04Z2009-10-09T09:18:04Z<p>I recommend the <a href="http://www.jmknoble.net/fonts/" rel="nofollow">Neep</a> font for all text-editing/console-mode activities: </p>
<p><img src="http://img10.imageshack.us/img10/1664/vimrc.png" alt="Neep" /></p>
<p>You can also use a smaller version, but then boldface will not work well so it's not ideal for vim:</p>
<p><img src="http://img169.imageshack.us/img169/7240/screenshotha.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1515978/how-can-google-app-engine-report-progress-back-on-file-upload/1516405#15164051Answer by Brandon Thomson for How can google app engine report progress back on file uploadBrandon Thomson2009-10-04T13:28:02Z2009-10-04T13:28:02Z<p>App Engine won't return any data from the request handler until the after the request is completed, so any progress checking would have to be done client-side. IIRC your request won't even be loaded into the application server until the upload is complete.</p>
http://stackoverflow.com/questions/1502505/faster-multi-file-keyword-completion-in-vim5Faster multi-file keyword completion in Vim?Brandon Thomson2009-10-01T07:55:46Z2009-10-01T08:27:13Z
<p>While searching for my python completion nirvana in vim, I have come to really love <C-x> <C-i>: "keywords in the current and included files". This almost always gets me a long nasty name from another module completed, which is great.</p>
<p>(Omni-completion is obviously better when it works, but too often it reports it can't find any matches. Ok, Python isn't Java, I get it)</p>
<p>The only problem with this multi-file completion is it's very slow: on my netbook, a file with a reasonable set of imports can take up to 4 or 5 seconds to parse every time I hit <C-x> <C-i>. It seems to load every imported file every time I hit <C-x> <C-i>. Is there any way to cache the files or speed up this process? Would using tag completion be faster?</p>
http://stackoverflow.com/questions/1480186/what-is-in-your-javascript-toolchain/1480217#14802172Answer by Brandon Thomson for What is in your JavaScript toolchain?Brandon Thomson2009-09-26T01:51:08Z2009-09-26T01:57:17Z<p>I haven't written anything huge in Javascript yet (about 3000 lines in my latest project), but I do JSLint my code and minify/combine it with all the libraries I need in my deploy/build script. My build script also changes the HTML from importing the scripts and libraries directly, to importing the production compressed code. That way you don't have to run the build script to see changes in development which is essential.</p>
<p><a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">YUI Compressor</a> is pretty slow, especially since it starts up the JVM to run, but it gets the job done. Some kind of minification in your deploy script is essential to get rid of all the comments, and if you avoid global variables you'll get a meaningful amount of identifier name length compression too, though not much benefit after gzip. Possibly you'll want another step to remove console.debug lines and other debugging code.</p>
<p>For debugging, FireBug. I'm sure the webkit debugger is fine too.</p>
<p>For developing, vim with an improved js indent script and ctags with some js modifications. I'm not sure what advantages a real IDE has but I'm sure there are some. Vim doesn't do syntax highlighting of HTML inside javascript strings by default, but <a href="http://stackoverflow.com/questions/1471715/html-syntax-highlighting-in-javascript-strings-in-vim">apparently it can be configured to</a>.</p>
<p>JSLint runs in Rhino easily, but spidermonkey gets done about 3x as fast since it doesn't need to start up the JVM. Crockford doesn't support that arrangement but I managed to get it working somehow.</p>
http://stackoverflow.com/questions/1474000/ghostscript-on-google-app-engine/1480188#14801880Answer by Brandon Thomson for Ghostscript on Google App Engine?Brandon Thomson2009-09-26T01:28:41Z2009-09-26T01:28:41Z<p>From some cursory Googling it looks like ghostscript is written mostly in C, so no, you won't be able to run it on App Engine directly. If you have a server available you can run it there and send in documents for conversion, or you could bring up an EC2 instance remotely when you need to do a conversion.</p>
http://stackoverflow.com/questions/1457540/how-to-navigate-in-large-project-in-vim/1457674#14576741Answer by Brandon Thomson for How to navigate in large project in VIMBrandon Thomson2009-09-22T01:12:25Z2009-09-22T01:12:25Z<p>Although I'm kinda hoping someone will point out a better solution so I can learn something, NERDTree has been good to me for getting to specific files with name completion as long as I have the tree expanded. The command when I need to get to a file is something like:</p>
<p>,d/foo.pyo (where foo.py is a file name)</p>
<p>,d to open the tree, / to enter search mode, the name (or partial name, or regex, or whatever) of the file, and then o to open.</p>
<p>Of course you may have to hit 'n' a few times if you didn't type enough of the filename or there are duplicates.</p>
<p>I admit it feels like a bit of a hack using NERDTree like this although it has gotten so far into my muscle memory by now that I don't even think about it.</p>
<p>Of course I use ctags too but those are only useful when you have a function near the cursor and need to get to its definition in another file or something. A lot of times I say "OK, I need to work on feature x now" and need to navigate to another file without any references nearby that ctags would really help with.</p>
http://stackoverflow.com/questions/1448308/role-based-security-with-google-app-engine-and-python/1448733#14487332Answer by Brandon Thomson for Role-based security with Google App Engine and PythonBrandon Thomson2009-09-19T15:10:37Z2009-09-19T15:10:37Z<p>I would do this by adding a ListProperty for roles to the model representing users. The list contains any roles a given user belongs to. This way if you want to know whether a given user belongs to a given role (I expect, the most common operation), it is a fast membership test.</p>
<p>You could put the role names directly into the lists as strings or add a layer of indirection to another entity specifying the details about the role so it is easy to change the details later. But, this has a runtime cost of an additional RPC to fetch the details about the role.</p>
<p>The downside to this method comes if you want to remove all users from a given role, or perform any other kind of global operation. I suppose you could mark a role 'deleted', but then you still have data cluttering up all your user models until you clean them up manually. So I am curious to hear what others suggest.</p>
http://stackoverflow.com/questions/1340887/locally-hosted-google-app-engine-webapp-framework-bigtable/1342175#13421752Answer by Brandon Thomson for Locally Hosted Google App Engine (WebApp Framework / BigTable)Brandon Thomson2009-08-27T16:19:59Z2009-08-27T16:19:59Z<p>Webapp is a fine choice for a simple web framework but there are plenty of other simple python web frameworks that have instructions for setting them up in your use case (cherrypy, web.py, etc). Since google developed webapp for gae I don't believe they published instructions for setting it up behind apache.</p>
<p>BigTable is proprietary to Google so you will not be able to run it locally. If you are looking for something with similar performance characteristics I'd look into the schemaless 'document-oriented' databases.</p>
http://stackoverflow.com/questions/1112665/safety-of-python-eval-for-list-deserialization5Safety of Python 'eval' For List DeserializationBrandon Thomson2009-07-11T01:25:19Z2009-07-11T16:03:55Z
<p>Are there any security exploits that could occur in this scenario:</p>
<pre><code>eval(repr(unsanitized_user_input), {"__builtins__": None}, {"True":True, "False":False})
</code></pre>
<p>where <code>unsanitized_user_input</code> is a str object. The string is user-generated and could be nasty. Assuming our web framework hasn't failed us, it's a real honest-to-god str instance from the Python builtins.</p>
<p>If this is dangerous, can we do anything to the input to make it safe?</p>
<p>We definitely <em>don't</em> want to execute anything contained in the string.</p>
<p>See also:</p>
<ul>
<li><a href="http://blog.thetonk.com/archives/dont-be-lazy-dont-use-eval/comment-page-2#comments" rel="nofollow">Funny blog post about eval safety</a></li>
<li><a href="http://stackoverflow.com/questions/661084/security-of-pythons-eval-on-untrusted-strings">Previous Question</a></li>
<li><a href="http://blog.metaoptimize.com/2009/03/22/fast-deserialization-in-python/" rel="nofollow">Blog: Fast deserialization in Python</a></li>
</ul>
<p>The larger context which is (I believe) not essential to the question is that we have thousands of these:</p>
<pre><code>repr([unsanitized_user_input_1,
unsanitized_user_input_2,
unsanitized_user_input_3,
unsanitized_user_input_4,
...])
</code></pre>
<p>in some cases nested:</p>
<pre><code>repr([[unsanitized_user_input_1,
unsanitized_user_input_2],
[unsanitized_user_input_3,
unsanitized_user_input_4],
...])
</code></pre>
<p>which are themselves converted to strings with <code>repr()</code>, put in persistent storage, and eventually read back into memory with eval.</p>
<p>Eval deserialized the strings from persistent storage much faster than pickle and simplejson. The interpreter is Python 2.5 so json and ast aren't available. Due to the App Engine environment no C modules are allowed and cPickle is not allowed.</p>
http://stackoverflow.com/questions/679670/best-way-to-profile-optimize-a-website-on-googles-appengine/1079870#10798700Answer by Brandon Thomson for Best way to profile/optimize a website on google's appengineBrandon Thomson2009-07-03T15:30:30Z2009-07-03T15:30:30Z<p>In case anyone is coming here late, check out <a href="http://firepython.binaryage.com/" rel="nofollow">FirePython</a>, it will handle generating the dot graphs with gprof2dot serverside and you can view them in FireBug.</p>
http://stackoverflow.com/questions/625146/memcache-based-message-queue-for-app-engine5Memcache-based message queue for App Engine?Brandon Thomson2009-03-09T05:48:07Z2009-07-03T13:30:46Z
<p>I'm working on a multiplayer game on App Engine and it needs a message queue (i.e., messages in, messages out, no duplicates or deleted messages assuming there are no unexpected cache evictions). Here are the memcache-based queues I'm aware of:</p>
<ul>
<li>MemcacheQ: <a href="http://memcachedb.org/memcacheq/" rel="nofollow">http://memcachedb.org/memcacheq/</a></li>
<li>Starling: <a href="http://rubyforge.org/projects/starling/" rel="nofollow">http://rubyforge.org/projects/starling/</a></li>
<li>Depcached: <a href="http://www.marcworrell.com/article-2287-en.html" rel="nofollow">http://www.marcworrell.com/article-2287-en.html</a></li>
<li>Sparrow: <a href="http://code.google.com/p/sparrow/" rel="nofollow">http://code.google.com/p/sparrow/</a></li>
</ul>
<p>I learned the concept of the memcache queue from <a href="http://broddlit.wordpress.com/2008/04/09/memcached-as-simple-message-queue/" rel="nofollow">this blog post</a>:</p>
<p><em>All messages are saved with an integer as key. There is one key that has the next key and one that has the key of the oldest message in the queue. To access these the increment/decrement method is used as its atomic, so there are two keys that act as locks. They get incremented, and if the return value is 1 the process has the lock, otherwise it keeps incrementing. Once the process is finished it sets the value back to 0. Simple but effective. One caveat is that the integer will overflow, so there is some logic in place that sets the used keys to 1 once we are close to that limit. As the increment operation is atomic, the lock is only needed if two or more memcaches are used (for redundancy), to keep those in sync.</em></p>
<p>My question is, is there a memcache-based message queue service that can run on App Engine?</p>
http://stackoverflow.com/questions/1066837/what-is-the-difference-between-the-query-class-and-the-gqlquery-class-in-google-a/1067765#10677650Answer by Brandon Thomson for What is the difference between the Query class and the Gqlquery class in Google App Engine?Brandon Thomson2009-07-01T07:35:16Z2009-07-01T07:35:16Z<p>Practically speaking I think they added the GQL method just so people coming from an SQL background would be a little bit more comfortable. I like using Queries or the .all() method because you can split filters onto multiple lines pretty easily:</p>
<pre><code>messages = (MyModel.all()
.filter("prop1 = ", 123)
.filter("prop2 = ", 456)
.fetch(10))
</code></pre>
http://stackoverflow.com/questions/1061742/store-binary-files-on-gae-j-google-datastore/1061943#10619433Answer by Brandon Thomson for Store Binary files on GAE/J + Google DataStoreBrandon Thomson2009-06-30T05:57:07Z2009-06-30T05:57:07Z<p>Depends on whether you're talking about static files or dynamic... If they're static created by you, you can upload them subject to a 10MB/3000 file max but Google doesn't offer a CDN or anything.</p>
<p>If they're dynamic, uploaded by your users or created by your application, the datastore supports BlobProperties: you can dump any kind of binary data you want in there as long as it's less than 1MB per entity. If they're larger you can consider another service like S3 or Mosso's cloud files. This can be a better solution for serving files directly to users because these guys can offer CDN service but it's not cheap. On the other hand your latency back to GAE will be much higher than storing the data in Google's Datastore and you'll have to pay for transit on both sides so it's something to take into account if you're going to be processing the files on App Engine.</p>
http://stackoverflow.com/questions/652783/javascript-compression-workflow-for-app-engine0Javascript Compression Workflow for App EngineBrandon Thomson2009-03-17T01:51:36Z2009-03-24T17:35:28Z
<p>Any website with a non-trivial amount of Javascript code is going to want to compress it for deployment. What's the best way to do this as part of the App Engine deployment process while still accessing the uncompressed javascript for easy development in the dev_appserver?</p>
http://stackoverflow.com/questions/652783/javascript-compression-workflow-for-app-engine/652786#6527860Answer by Brandon Thomson for Javascript Compression Workflow for App EngineBrandon Thomson2009-03-17T01:53:29Z2009-03-17T04:05:37Z<p>One way is to write a shell script that calls the minification programs and then calls appcfg.py when it's done. I'm not sure if appcfg.py itself has any support for hooks to trigger jsmin or the YUI compressor or something.</p>
<p>It's not too much of a performance hit at runtime to test whether an application is deployed or not and put a link to a different javascript file if it is, but doing the actual compression at runtime is a little bit too much of a performance hit.</p>
<p>A shell script might look something like this:</p>
<pre>
rm root/js/js.js
cat root/js/*.js > root/js/js.js
java -jar ~/opt/yuicompressor-2.4.2.jar root/js/js.js -o root/static/js.js --line-break 4000
</pre>
http://stackoverflow.com/questions/652449/separating-models-and-request-handlers-in-google-app-engine/652458#6524584Answer by Brandon Thomson for Separating Models and Request Handlers In Google App EngineBrandon Thomson2009-03-16T22:59:44Z2009-03-16T22:59:44Z<p>I assume you're using the basic webkit and not Django or something fancy. In that case just create a subdirectory called models. Put any python files you use for your models in here. Create also one blank file in this folder called __init__.py.</p>
<p>Then in your main.py or "controller" or what have you, put:</p>
<pre><code>import models
</code></pre>
<p>at the top.</p>
<p>You just created a <a href="http://docs.python.org/tutorial/modules.html#packages" rel="nofollow">python package</a>.</p>
http://stackoverflow.com/questions/649284/getbyid-method-on-model-classes-in-google-app-engine-datastore/649380#6493805Answer by Brandon Thomson for get_by_id method on Model classes in Google App Engine DatastoreBrandon Thomson2009-03-16T05:45:36Z2009-03-16T05:45:36Z<p>I just tried it on shell.appspot.com and it seems to work fine:</p>
<pre><code>Google Apphosting/1.0
Python 2.5.2 (r252:60911, Feb 25 2009, 11:04:42)
[GCC 4.1.0]
>>> class Address(db.Model):
description = db.StringProperty(multiline=True)
latitude = db.FloatProperty()
longitdue = db.FloatProperty()
date = db.DateTimeProperty(auto_now_add=True)
>>> addy = Address()
>>> addyput = addy.put()
>>> addyput.id()
136522L
>>> Address.get_by_id(136522)
<__main__.Address object at 0xa6b33ae3bf436250>
</code></pre>
http://stackoverflow.com/questions/644898/append-text-to-an-attribute-rather-than-replacing-it1Append text to an attribute rather than replacing it?Brandon Thomson2009-03-13T22:51:18Z2009-03-13T22:53:45Z
<p>I want to append some text to the title attribute of all elements of a certain class. This works to replace the text:</p>
<pre><code>$('.theclass').attr("title", "Replaced text.");
</code></pre>
<p>It seemed logical that this would do the trick:</p>
<pre><code>$('.theclass').attr("title", $(this).attr("title") + "Appended text.");
</code></pre>
<p>But instead I end up with an empty title attribute. Any ideas?</p>
http://stackoverflow.com/questions/633999/scalable-polling-of-an-appengine-application-from-numerous-active-clients/637045#6370453Answer by Brandon Thomson for Scalable polling of an AppEngine application from numerous "active" clients?Brandon Thomson2009-03-12T01:16:53Z2009-03-12T01:16:53Z<p>You are correct; long-running connections are prohibited on App Engine. The model is request->response->connection closed, and as quickly as possible.</p>
<p>There are certain kinds of applications that aren't feasible on App Engine due to this architecture. If you absolutely need a notification from the server within 5 seconds of an event, for example, your only real choice is to poll the server every 5 seconds. This is probably not practical for large numbers of users.</p>
<p>Requests themselves don't necessarily generate a lot of CPU load. A handler that fetches a memcache key and returns it to the user can easily get under 50ms CPU time, for example. So part of your mission is to reduce the number of requests/min from your clients, but part of it is to ensure your python scripts execute and return as quickly as possible. For this to happen you need to make sure your imports are structured intelligently and do whatever you can to avoid accessing the datastore during user requests.</p>
<p>As far as sample code, can you be a little bit more specific about what you're looking for? For a simple memcache key request, a response to a query can be as simple as:</p>
<pre><code>from django.utils import simplejson
from google.appengine.api import memcache
jsonResponse = {}
jsonResponse['theVal'] = memcache.get(key="testkey")
self.response.out.write(simplejson.dumps(jsonResponse))
</code></pre>
<p>Naturally if the memcache data is backed by the datastore, you'll want to take some actions if the key is not found in memcache. Depending on your application, datastore backing may or may not be appropriate.</p>
http://stackoverflow.com/questions/636665/deployment-of-static-directory-contents-to-google-app-engine/636791#6367913Answer by Brandon Thomson for Deployment of static directory contents to google app engineBrandon Thomson2009-03-11T23:38:16Z2009-03-11T23:38:16Z<p>Your templates should not be stored in a directory that you refer to as "static" in app.yaml. Static directories are for literally static files that will be served to end users by the CDN without changing. These files cannot be read by the templating engine. It works locally because the dev_appserver does not precisely emulate the production server.</p>
<p>Put your templates in a different directory like /templates or something. You do not need to refer to this directory in your app.yaml.</p>
http://stackoverflow.com/questions/625146/memcache-based-message-queue-for-app-engine/625158#6251582Answer by Brandon Thomson for Memcache-based message queue for App Engine?Brandon Thomson2009-03-09T05:56:14Z2009-03-09T09:14:56Z<p>These might be suitable: </p>
<ul>
<li>Peafowl: <a href="http://cyberdelia.tryphon.org/blog/2008/08/09/peafowl/" rel="nofollow">http://cyberdelia.tryphon.org/blog/2008/08/09/peafowl/</a></li>
<li><a href="http://code.activestate.com/recipes/576567/" rel="nofollow">http://code.activestate.com/recipes/576567/</a></li>
</ul>
<p>Unfortunately Peafowl looks like it uses constructs that aren't going to work on App Engine.</p>
<p>Here's an alogorithm for a lockless memcache-based queue: <a href="http://dev.ionous.net/2009/01/memcached-lockless-queue.html" rel="nofollow">http://dev.ionous.net/2009/01/memcached-lockless-queue.html</a> Unfortunately I don't think he did it right; it looks like a new message coming in between the atomic increment and a message write will lose a message.</p>
<p>So I think the best way to do this will be to have a lock on the queue entry message counter and busy wait with the threads that input to the queue when the lock is busy. In my case I'll only have one thread pulling out of the queue so no lock is required, although your mileage may vary.</p>
<p>Still, there ought to be a better way to do this, especially if we don't care about the order in which values come out of the queue. Sharded queues, maybe, to avoid write contention.</p>
<p>Just because it's somewhat related, here's a datastore-based queue: <a href="http://github.com/mbuckbee/gae-naive-queue/tree/master" rel="nofollow">http://github.com/mbuckbee/gae-naive-queue/tree/master</a></p>
http://stackoverflow.com/questions/624953/how-does-a-3-monitors-setup-benefit-you/624969#6249695Answer by Brandon Thomson for How does a '3 monitors-setup' benefit you?Brandon Thomson2009-03-09T03:59:58Z2009-03-09T07:32:55Z<p>Believe it or not you can get a lot of value out of 2-3 monitors and 9-16 virtual desktops. The idea is that instead of doing window management, you just leave all your windows open and arranged all the time and then switch between "desktop environments" when you need to "context switch" from one project or workflow to another.</p>
<p>So for a web development project you might have one virtual desktop with:</p>
<ul>
<li>Monitor 1: VIM</li>
<li>Monitor 2: Firefox</li>
<li>Monitor 3: xterms, other misc stuff</li>
</ul>
<p>On another virtual desktop you might have Photoshop and GIMP and some other image tools. And on another desktop you might have another instance of firefox for fun and irc and your chat sessions.</p>
<p>There's really no reason not to work this way these days since we're in the era of 8GB of ram for $80 or less. Just leave everything open and in ram all the time, why not?</p>
<p><a href="http://imagebin.ca/view/HhMLDWm.html" rel="nofollow">Here's what my 2 monitor/9 vdesk setup looks like at the moment</a>... image shrunk to protect the innocent. I'd love to get a third monitor if I could afford it.</p>
http://stackoverflow.com/questions/602322/differential-ajax-updates-for-html-table2Differential AJAX updates for HTML table?Brandon Thomson2009-03-02T13:17:57Z2009-03-03T00:45:40Z
<p>I have a <a href="http://conquer-on-contact.bthomson.com" rel="nofollow">game</a> on Google App Engine that's based on a 25x20 HTML table (the game board). Every 3 seconds the user can "move," which sends an AJAX request to the server, at which time the server rerenders the entire HTML table and sends it to the user.</p>
<p>This was easy to write, but it wastes a lot of bandwidth. Are there any libraries, client (preferably jquery) or server-side (must work with GAE), that help send differential instead of full updates for large tables? Usually only 5-10 tiles change on a given reload, so I feel like I could cut bandwidth use by an order of magnitude by sending just those tiles instead of all 500 every 3 seconds.</p>
<p>I'm also open to "you idiot, why are you using HTML tables"-type comments if you can suggest a better alternative. For example are there any CSS/DOM manipulation techniques I should be considering instead of using an HTML table? Should I use a table but give each td coordinates for an id (like "12x08") and then use jquery to replace cells by id?</p>
<p>A clarification: the tiles are text, not images.</p>
http://stackoverflow.com/questions/572925/rearranging-div-hierarchy-with-jquery0Rearranging div hierarchy with jqueryBrandon Thomson2009-02-21T12:49:56Z2009-02-21T17:39:49Z
<p>I'm using jQuery's <a href="http://malsup.com/jquery/form/#getting-started" rel="nofollow">form plugin</a> to submit a form asynchronously. The server sends back HTML which goes into a div #boardcontainer by setting the target of an ajaxForm call. This works fine.</p>
<pre><code>...
var options = {
target: '#boardcontainer', // target element(s) to be updated with server response
beforeSubmit: showRequest, // pre-submit callback
success: showResponse // post-submit callback
};
$('#myForm').ajaxForm(options);
...
</code></pre>
<p>Problem is, the HTML that comes back from the server contains two divs:</p>
<pre><code><div id="board">
...
</div>
<div id="status">
...
</div>
</code></pre>
<p>"#board" is a giant HTML table prerendered by the server. "#status" is a short message and should ideally go into a div other than #boardcontainer.</p>
<p>What's the best way to handle this situation? Can jquery change a div's parent? If so I can change the parent in the post-submit callback, but I can't seem to find a way to do it.</p>
http://stackoverflow.com/questions/572925/rearranging-div-hierarchy-with-jquery/573435#5734350Answer by Brandon Thomson for Rearranging div hierarchy with jqueryBrandon Thomson2009-02-21T17:32:36Z2009-02-21T17:39:49Z<p>I ended up building the divs with json (with the html for the divs embeded as strings, though)</p>
<p>Here's the code:</p>
<pre><code> $(document).ready(function() {
var options = {
beforeSubmit: showRequest, // pre-submit callback
success: showResponse, // post-submit callback
dataType: 'json'
};
$('#myForm').ajaxForm(options);
});
function showResponse(data) {
$('#statusTarget').html(data.status)
$('#boardcontainer').html(data.board)
});
</code></pre>
<p>It works and both the #statusTarget and the #boardTarget are replaced with the new html every time the form is submitted.</p>
http://stackoverflow.com/questions/522586/appengine-maintaining-datastore-consistency-when-creating-records/523057#5230572Answer by Brandon Thomson for AppEngine: Maintaining DataStore Consistency When Creating RecordsBrandon Thomson2009-02-07T03:19:59Z2009-02-07T17:25:42Z<p>The issue is this part: </p>
<pre><code>if vote.count(1) == 0:
obj = VoteRecord()
obj.user = user
obj.option = option
obj.put()
</code></pre>
<p>Without a transaction, your code could run in this order in two interpreter instances:</p>
<pre><code>if vote.count(1) == 0:
obj = VoteRecord()
obj.user = user
if vote.count(1) == 0:
obj = VoteRecord()
obj.user = user
obj.option = option
obj.put()
obj.option = option
obj.put()
</code></pre>
<p>Or any weird combination thereof. The problem is the count test runs again before the put has occured, so the second thread goes through the first part of the conditional instead of the second.</p>
<p>You can fix this by putting the code in a function and then using</p>
<pre><code>db.run_in_transaction()
</code></pre>
<p>to run the function.</p>
<p>Problem is you seem to be relying on the count of objects returned by a query for your decision logic that needs to be put in the transaction. If you read the Google I/O talks or look at the group you'll see that this is not recommended. That's because you can't transactionalize a query. Instead, you should store the count as an entity value somewhere, query for it <em>outside</em> of the transaction function, and then pass the key for that entity to your transaction function.</p>
<p>Here's an example of a transaction function that checks an entity property. It's passed the key as a parameter:</p>
<pre><code>def checkAndLockPage(pageKey):
page = db.get(pageKey)
if page.locked:
return False
else:
page.locked = True
page.put()
return True
</code></pre>
<p>Only one user at a time can lock this entity, and there will never be any duplicate locks.</p>
http://stackoverflow.com/questions/516039/most-pythonic-way-to-extend-a-potentially-incomplete-list3Most pythonic way to extend a potentially incomplete listBrandon Thomson2009-02-05T14:11:32Z2009-02-07T03:34:30Z
<p>What I'm looking for is the best way to say, 'If this list is too short, lengthen it to 9 elements and add 'Choice 4', 'Choice 5', etc, as the additional elements. Also, replace any 'None' elements with 'Choice x'.' It is ok to replace "" and 0 too.</p>
<p>An example transformation would be</p>
<pre><code>['a','b',None,'c']
</code></pre>
<p>to</p>
<pre><code>['a','b','Choice 3','c','Choice 5','Choice 6','Choice 7','Choice 8','Choice 9']
</code></pre>
<p>My initial code abused try/except and had an off-by-one error I didn't notice; thanks to joeforker and everyone who pointed it out. Based on the comments I tried two short solutions that test equally well:</p>
<pre><code>def extendChoices(cList):
for i in range(0,9):
try:
if cList[i] is None:
cList[i] = "Choice %d"%(i+1)
except IndexError:
cList.append("Choice %d"%(i+1)
</code></pre>
<p>and</p>
<pre><code>def extendChoices(cList):
# Fill in any blank entries
for i, v in enumerate(cList):
cList[i] = v or "Choice %s" % (i+1)
# Extend the list to 9 choices
for j in range(len(cList)+1, 10):
cList.append("Choice %s" % (j))
</code></pre>
<p>I think #2 wins as being more pythonic, so it's the one I'll use. It's easy to understand and uses common constructs. Splitting the steps is logical and would make it easier for someone to understand at a glance.</p>
http://stackoverflow.com/questions/1652765/how-can-i-format-js-code-in-vim/1654720#1654720Comment by Brandon Thomson on How can I format JS code in Vim?Brandon Thomson2009-10-31T20:35:45Z2009-10-31T20:35:45ZThe funny thing is, the script jamessan linked seems to handle this case correctly, but for the even easier code (above) it screws it all up...http://stackoverflow.com/questions/1652765/how-can-i-format-js-code-in-vim/1653084#1653084Comment by Brandon Thomson on How can I format JS code in Vim?Brandon Thomson2009-10-31T05:18:29Z2009-10-31T05:18:29ZI just tried it out; it's not perfect but it's vastly better than the default script. Thanks!http://stackoverflow.com/questions/1592565/determine-if-variable-is-defined-in-python/1592577#1592577Comment by Brandon Thomson on Determine if variable is defined in PythonBrandon Thomson2009-10-20T06:53:19Z2009-10-20T06:53:19Zdisregard that, ...http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/199319#199319Comment by Brandon Thomson on How to remove Firefox's dotted outline on BUTTONS as well as links?Brandon Thomson2009-10-20T06:08:01Z2009-10-20T06:08:01ZIt works! You are my sunshine...http://stackoverflow.com/questions/1547750/improve-app-engine-performance-by-reducing-entity-sizeComment by Brandon Thomson on Improve App Engine performance by reducing entity sizeBrandon Thomson2009-10-10T21:22:08Z2009-10-10T21:22:08ZIs there any way to reduce the number of keys fetched? That will probably reduce your API CPU more than shaving some bytes off each entity.http://stackoverflow.com/questions/1547750/improve-app-engine-performance-by-reducing-entity-size/1548665#1548665Comment by Brandon Thomson on Improve App Engine performance by reducing entity sizeBrandon Thomson2009-10-10T21:17:20Z2009-10-10T21:17:20Z+1 for how to delete properties, I have been wondering about this for a day or twohttp://stackoverflow.com/questions/1502505/faster-multi-file-keyword-completion-in-vim/1502622#1502622Comment by Brandon Thomson on Faster multi-file keyword completion in Vim?Brandon Thomson2009-10-01T09:08:52Z2009-10-01T09:08:52ZNo wonder I was annoyed with the default... I had a plugin that was remapping C-N from complete to omni-completion. This is pretty much exactly what I needed.http://stackoverflow.com/questions/199180/is-there-any-way-to-get-python-omnicomplete-to-work-with-non-system-modules-in-vi/213253#213253Comment by Brandon Thomson on Is there any way to get python omnicomplete to work with non-system modules in vim?Brandon Thomson2009-09-27T21:33:06Z2009-09-27T21:33:06ZHad this problem a few more times now, the first thing I always do is try to import the module in the vanilla interpreter, that always seems to show where the error is. If you are using django or app engine or whaterver a lot of times they do imports in a different order than the interpreter would which can cause problems.http://stackoverflow.com/questions/1480186/what-is-in-your-javascript-toolchain/1480217#1480217Comment by Brandon Thomson on What is in your JavaScript toolchain?Brandon Thomson2009-09-26T02:27:08Z2009-09-26T02:27:08ZIt's a mixture of bash and python, nothing special really.http://stackoverflow.com/questions/1471715/html-syntax-highlighting-in-javascript-strings-in-vim/1475583#1475583Comment by Brandon Thomson on HTML syntax highlighting in javascript strings in vimBrandon Thomson2009-09-26T02:18:52Z2009-09-26T02:18:52Zsomehow i still ended up getting html.vim imported recursively :(http://stackoverflow.com/questions/1471715/html-syntax-highlighting-in-javascript-strings-in-vimComment by Brandon Thomson on HTML syntax highlighting in javascript strings in vimBrandon Thomson2009-09-25T04:49:39Z2009-09-25T04:49:39Z+1, I'd like to be able to do this too... I have a ton of HTML embedded in JS files.
Python embedded in my vimrc is highlighted correctly, so this sort of thing is definitely possible.http://stackoverflow.com/questions/199180/is-there-any-way-to-get-python-omnicomplete-to-work-with-non-system-modules-in-vi/213253#213253Comment by Brandon Thomson on Is there any way to get python omnicomplete to work with non-system modules in vim?Brandon Thomson2009-09-24T04:09:53Z2009-09-24T04:09:53ZI had this same problem except with app engine libraries, not django... thanks for helping me figure it outhttp://stackoverflow.com/questions/1457540/how-to-navigate-in-large-project-in-vim/1457674#1457674Comment by Brandon Thomson on How to navigate in large project in VIMBrandon Thomson2009-09-22T01:47:58Z2009-09-22T01:47:58ZI looked into it some more, fuzzyfinder looks like a great idea for project search.http://stackoverflow.com/questions/235839/how-do-i-indent-multiple-lines-quickly-in-vi/235841#235841Comment by Brandon Thomson on How do I indent multiple lines quickly in vi?Brandon Thomson2009-09-20T15:12:45Z2009-09-20T15:12:45ZI had been using control-v to indent by navigating to the front of the line but this is clearly much better.http://stackoverflow.com/questions/594548/request-email-address-from-openid-provider/612340#612340Comment by Brandon Thomson on Request email address from OpenID providerBrandon Thomson2009-09-19T10:22:44Z2009-09-19T10:22:44ZThanks, I got Google working now that I added AX