User Brandon Thomson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T13:24:59Z http://stackoverflow.com/feeds/user/62398 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1502505/faster-multi-file-keyword-completion-in-vim 5 Faster multi-file keyword completion in Vim? Brandon Thomson 2009-10-01T07:55:46Z 2009-11-15T20:33:28Z <p>While searching for my python completion nirvana in vim, I have come to really love &lt;C-x&gt; &lt;C-i&gt;: "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 &lt;C-x&gt; &lt;C-i&gt;. It seems to load every imported file every time I hit &lt;C-x&gt; &lt;C-i&gt;. Is there any way to cache the files or speed up this process? Would using tag completion be faster?</p> http://stackoverflow.com/questions/1697214/vim-like-tools-and-softwares-collection/1697915#1697915 1 Answer by Brandon Thomson for VIM like tools and softwares Collection Brandon Thomson 2009-11-08T21:02:12Z 2009-11-08T21:02:12Z <ul> <li><a href="http://jvi.sourceforge.net/" rel="nofollow">jVi for Netbeans</a> because java in vim is pretty frustrating</li> <li><a href="http://www.vimperator.org/" rel="nofollow">Vimperator for Firefox</a> makes web browsing a lot more fun on a netbook</li> <li><a href="http://crawl-ref.sourceforge.net/" rel="nofollow">Dungeon Crawl Stone Soup</a> has vi keys!</li> </ul> <p>I've tried a few of the console-based music players in the ubuntu repos but still haven't found a good one that supports the vi-keys...</p> http://stackoverflow.com/questions/1655844/what-are-some-good-plugins-for-developing-java-in-vim/1656493#1656493 -1 Answer by Brandon Thomson for What are some good plugins for developing Java in VIM? Brandon Thomson 2009-11-01T05:39:59Z 2009-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#1653498 0 Answer by Brandon Thomson for How can I format JS code in Vim? Brandon Thomson 2009-10-31T05:23:24Z 2009-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#1583865 1 Answer by Brandon Thomson for Possible Data Schemes for Achievements on Google App Engine Brandon Thomson 2009-10-18T02:58:49Z 2009-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#1542749 0 Answer by Brandon Thomson for what is the good gvim guifont for C/C++ programming Brandon Thomson 2009-10-09T09:18:04Z 2009-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#1516405 1 Answer by Brandon Thomson for How can google app engine report progress back on file upload Brandon Thomson 2009-10-04T13:28:02Z 2009-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/1480186/what-is-in-your-javascript-toolchain/1480217#1480217 2 Answer by Brandon Thomson for What is in your JavaScript toolchain? Brandon Thomson 2009-09-26T01:51:08Z 2009-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#1480188 0 Answer by Brandon Thomson for Ghostscript on Google App Engine? Brandon Thomson 2009-09-26T01:28:41Z 2009-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#1457674 1 Answer by Brandon Thomson for How to navigate in large project in VIM Brandon Thomson 2009-09-22T01:12:25Z 2009-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#1448733 2 Answer by Brandon Thomson for Role-based security with Google App Engine and Python Brandon Thomson 2009-09-19T15:10:37Z 2009-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#1342175 2 Answer by Brandon Thomson for Locally Hosted Google App Engine (WebApp Framework / BigTable) Brandon Thomson 2009-08-27T16:19:59Z 2009-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-deserialization 6 Safety of Python 'eval' For List Deserialization Brandon Thomson 2009-07-11T01:25:19Z 2009-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#1079870 0 Answer by Brandon Thomson for Best way to profile/optimize a website on google's appengine Brandon Thomson 2009-07-03T15:30:30Z 2009-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-engine 5 Memcache-based message queue for App Engine? Brandon Thomson 2009-03-09T05:48:07Z 2009-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#1067765 0 Answer by Brandon Thomson for What is the difference between the Query class and the Gqlquery class in Google App Engine? Brandon Thomson 2009-07-01T07:35:16Z 2009-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#1061943 3 Answer by Brandon Thomson for Store Binary files on GAE/J + Google DataStore Brandon Thomson 2009-06-30T05:57:07Z 2009-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-engine 0 Javascript Compression Workflow for App Engine Brandon Thomson 2009-03-17T01:51:36Z 2009-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#652786 0 Answer by Brandon Thomson for Javascript Compression Workflow for App Engine Brandon Thomson 2009-03-17T01:53:29Z 2009-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#652458 4 Answer by Brandon Thomson for Separating Models and Request Handlers In Google App Engine Brandon Thomson 2009-03-16T22:59:44Z 2009-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#649380 5 Answer by Brandon Thomson for get_by_id method on Model classes in Google App Engine Datastore Brandon Thomson 2009-03-16T05:45:36Z 2009-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] &gt;&gt;&gt; class Address(db.Model): description = db.StringProperty(multiline=True) latitude = db.FloatProperty() longitdue = db.FloatProperty() date = db.DateTimeProperty(auto_now_add=True) &gt;&gt;&gt; addy = Address() &gt;&gt;&gt; addyput = addy.put() &gt;&gt;&gt; addyput.id() 136522L &gt;&gt;&gt; Address.get_by_id(136522) &lt;__main__.Address object at 0xa6b33ae3bf436250&gt; </code></pre> http://stackoverflow.com/questions/644898/append-text-to-an-attribute-rather-than-replacing-it 1 Append text to an attribute rather than replacing it? Brandon Thomson 2009-03-13T22:51:18Z 2009-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#637045 3 Answer by Brandon Thomson for Scalable polling of an AppEngine application from numerous "active" clients? Brandon Thomson 2009-03-12T01:16:53Z 2009-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#636791 3 Answer by Brandon Thomson for Deployment of static directory contents to google app engine Brandon Thomson 2009-03-11T23:38:16Z 2009-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#625158 2 Answer by Brandon Thomson for Memcache-based message queue for App Engine? Brandon Thomson 2009-03-09T05:56:14Z 2009-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#624969 5 Answer by Brandon Thomson for How does a '3 monitors-setup' benefit you? Brandon Thomson 2009-03-09T03:59:58Z 2009-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-table 2 Differential AJAX updates for HTML table? Brandon Thomson 2009-03-02T13:17:57Z 2009-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-jquery 0 Rearranging div hierarchy with jquery Brandon Thomson 2009-02-21T12:49:56Z 2009-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>&lt;div id="board"&gt; ... &lt;/div&gt; &lt;div id="status"&gt; ... &lt;/div&gt; </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#573435 0 Answer by Brandon Thomson for Rearranging div hierarchy with jquery Brandon Thomson 2009-02-21T17:32:36Z 2009-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#523057 2 Answer by Brandon Thomson for AppEngine: Maintaining DataStore Consistency When Creating Records Brandon Thomson 2009-02-07T03:19:59Z 2009-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/1216733/remove-a-directory-permanently-from-git/1513471#1513471 Comment by Brandon Thomson on Remove a directory permanently from git Brandon Thomson 2009-11-20T14:09:04Z 2009-11-20T14:09:04Z worked for me, although I kindof wonder if this just fixed the gitk view or if the refs will actually be gc'd now http://stackoverflow.com/questions/1652765/how-can-i-format-js-code-in-vim/1654720#1654720 Comment by Brandon Thomson on How can I format JS code in Vim? Brandon Thomson 2009-10-31T20:35:45Z 2009-10-31T20:35:45Z The 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#1653084 Comment by Brandon Thomson on How can I format JS code in Vim? Brandon Thomson 2009-10-31T05:18:29Z 2009-10-31T05:18:29Z I 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#1592577 Comment by Brandon Thomson on Determine if variable is defined in Python Brandon Thomson 2009-10-20T06:53:19Z 2009-10-20T06:53:19Z disregard that, ... http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/199319#199319 Comment by Brandon Thomson on How to remove Firefox's dotted outline on BUTTONS as well as links? Brandon Thomson 2009-10-20T06:08:01Z 2009-10-20T06:08:01Z It works! You are my sunshine... http://stackoverflow.com/questions/1547750/improve-app-engine-performance-by-reducing-entity-size Comment by Brandon Thomson on Improve App Engine performance by reducing entity size Brandon Thomson 2009-10-10T21:22:08Z 2009-10-10T21:22:08Z Is 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#1548665 Comment by Brandon Thomson on Improve App Engine performance by reducing entity size Brandon Thomson 2009-10-10T21:17:20Z 2009-10-10T21:17:20Z +1 for how to delete properties, I have been wondering about this for a day or two http://stackoverflow.com/questions/1502505/faster-multi-file-keyword-completion-in-vim/1502622#1502622 Comment by Brandon Thomson on Faster multi-file keyword completion in Vim? Brandon Thomson 2009-10-01T09:08:52Z 2009-10-01T09:08:52Z No 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#213253 Comment by Brandon Thomson on Is there any way to get python omnicomplete to work with non-system modules in vim? Brandon Thomson 2009-09-27T21:33:06Z 2009-09-27T21:33:06Z Had 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#1480217 Comment by Brandon Thomson on What is in your JavaScript toolchain? Brandon Thomson 2009-09-26T02:27:08Z 2009-09-26T02:27:08Z It's a mixture of bash and python, nothing special really. http://stackoverflow.com/questions/1471715/html-syntax-highlighting-in-javascript-strings-in-vim/1475583#1475583 Comment by Brandon Thomson on HTML syntax highlighting in javascript strings in vim Brandon Thomson 2009-09-26T02:18:52Z 2009-09-26T02:18:52Z somehow i still ended up getting html.vim imported recursively :( http://stackoverflow.com/questions/1471715/html-syntax-highlighting-in-javascript-strings-in-vim Comment by Brandon Thomson on HTML syntax highlighting in javascript strings in vim Brandon Thomson 2009-09-25T04:49:39Z 2009-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#213253 Comment by Brandon Thomson on Is there any way to get python omnicomplete to work with non-system modules in vim? Brandon Thomson 2009-09-24T04:09:53Z 2009-09-24T04:09:53Z I had this same problem except with app engine libraries, not django... thanks for helping me figure it out http://stackoverflow.com/questions/1457540/how-to-navigate-in-large-project-in-vim/1457674#1457674 Comment by Brandon Thomson on How to navigate in large project in VIM Brandon Thomson 2009-09-22T01:47:58Z 2009-09-22T01:47:58Z I 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#235841 Comment by Brandon Thomson on How do I indent multiple lines quickly in vi? Brandon Thomson 2009-09-20T15:12:45Z 2009-09-20T15:12:45Z I had been using control-v to indent by navigating to the front of the line but this is clearly much better.