User John - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T00:17:08Zhttp://stackoverflow.com/feeds/user/2168http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1485135/is-there-a-way-to-do-pre-compression-with-on-the-fly-uncompression-in-nginx2Is there a way to do pre-compression with on-the-fly-uncompression in nginx?John2009-09-28T02:23:27Z2009-11-27T13:19:26Z
<p>It's easy to use the pre-compression module to look for a pre-compressed .gz version of a page and serve it to browsers that accept gzip to avoid the overhead of on-the-fly compression, but what I would like to do is eliminate the uncompressed version from disk and store only the compressed version, which would obviously be served the same way, but then if a user-agent that does not support gzip requests the page I would like for nginx to uncompress is on the fly before transmitting it.</p>
<p>Has anyone done this or are there other high performance web servers that provide this functionality?</p>
http://stackoverflow.com/questions/267436/how-do-i-treat-an-ascii-string-as-unicode-and-unescape-the-escaped-characters-in4How do I treat an ASCII string as unicode and unescape the escaped characters in it in python?John2008-11-06T01:55:40Z2009-11-17T18:14:37Z
<p>For example, if I have a <em>unicode</em> string, I can encode it as an <em>ASCII</em> string like so:</p>
<pre><code>>>> u'\u003cfoo/\u003e'.encode('ascii')
'<foo/>'
</code></pre>
<p>However, I have e.g. this <em>ASCII</em> string:</p>
<pre><code>'\u003foo\u003e'
</code></pre>
<p>... that I want to turn into the same <em>ASCII</em> string as in my first example above:</p>
<pre><code>'<foo/>'
</code></pre>
http://stackoverflow.com/questions/1545263/utf-8-in-python-logging-how/1545315#15453151Answer by John for UTF-8 In Python logging, how?John2009-10-09T18:17:29Z2009-10-09T18:17:29Z<p>Try this:</p>
<pre><code>import logging
def logging_test():
log = open("./logfile.txt", "w")
handler = logging.StreamHandler(log)
formatter = logging.Formatter("%(message)s")
handler.setFormatter(formatter)
root_logger = logging.getLogger()
root_logger.addHandler(handler)
root_logger.setLevel(logging.INFO)
# This is an o with a hat on it.
byte_string = '\xc3\xb4'
unicode_string = unicode("\xc3\xb4", "utf-8")
print "printed unicode object: %s" % unicode_string
# Explode
root_logger.info(unicode_string.encode("utf8", "replace"))
if __name__ == "__main__":
logging_test()
</code></pre>
<p>For what it's worth I was expecting to have to use codecs.open to open the file with utf-8 encoding but either that's the default or something else is going on here, since it works as is like this.</p>
http://stackoverflow.com/questions/1480038/issues-with-whole-site-caching-on-cdns-e-g-alternate-content-for-mobile-browse1Issues with whole-site caching on CDNs? (e.g. alternate content for mobile browsers)John2009-09-26T00:06:11Z2009-09-26T00:06:11Z
<p>We are considering hosting the core of our site (everything that doesn't need to be dynamically generated) on a CDN, so that our root domain (e.g. "http://example.com/") would point to the CDN, then everything dynamic would either point to an alternate second-level domain (e.g. "http://search.example.com/ for searches) or be layered on top of the static content by AJAX calls to an alternate domain (e.g. <a href="http://ajax.example.com/" rel="nofollow">http://ajax.example.com/</a>).</p>
<p>This seems like something that would be very desirable for lots of sites but I don't see much information even on the CDN home pages about doing whole-site caching. There is at least one obvious problem that occurs to me, which is that we currently detect whether the user is coming from a mobile browser or not and serve mobile content if they are coming from a mobile browser. The problem is that as far as I know, with most CDNs you can only store on version of a page, so if you cache the regular page, mobile browsers will see that instead of the mobile version (and obviously vice versa).</p>
<p>We could get around this to some degree by moving the mobile stuff to a separate domain like m.example.com but we would need the CDN to detect mobile browsers and redirect them to that domain (which we would also like to have hosted on the CDN, but pointing at the mobile content instead of the regular content, obviously).</p>
<p>It seems like this should be widely supported but I can't find much information on it. Has anyone done something similar? If so, what CDN did you use and how did you address this issue? Were there other significant hurdles that needed to be overcome? </p>
<p>Edited to add a couple of things I forgot:</p>
<p>We also considered redirecting to the mobile site using javascript but then obviously older phones without javascript would be left out in the cold and they are the ones that probably need the mobile version the most.</p>
<p>One constraint that may factor into any answers to this question is that we need the URLs of our primary site to be very specific for SEO purposes but we don't care at all about SEO for the mobile version.</p>
http://stackoverflow.com/questions/1309233/is-the-implementation-of-response-info-getencoding-broken-in-urllib21Is the implementation of response.info().getencoding() broken in urllib2?John2009-08-20T22:41:40Z2009-08-21T11:11:08Z
<p>I would expect the output of getencoding in the following python session to be "ISO-8859-1":</p>
<pre><code>>>> import urllib2
>>> response = urllib2.urlopen("http://www.google.com/")
>>> response.info().plist
['charset=ISO-8859-1']
>>> response.info().getencoding()
'7bit'
</code></pre>
<p>This is with python version 2.6 ('2.6 (r26:66714, Aug 17 2009, 16:01:07) \n[GCC 4.0.1 (Apple Inc. build 5484)]' specifically).</p>
http://stackoverflow.com/questions/1308584/is-it-possible-to-peek-at-the-data-in-a-urllib2-response0Is it possible to peek at the data in a urllib2 response?John2009-08-20T20:20:30Z2009-08-21T02:05:26Z
<p>I need to detect character encoding in HTTP responses. To do this I look at the headers, then if it's not set in the content-type header I have to peek at the response and look for a "<code><meta http-equiv='content-type'></code>" header. I'd like to be able to write a function that looks and works something like this:</p>
<pre><code>response = urllib2.urlopen("http://www.example.com/")
encoding = detect_html_encoding(response)
...
page_text = response.read()
</code></pre>
<p>However, if I do response.read() in my "detect_html_encoding" method, then the subseuqent response.read() after the call to my function will fail.</p>
<p>Is there an easy way to peek at the response and/or rewind after a read?</p>
http://stackoverflow.com/questions/1280088/how-do-you-clear-an-html-form-on-page-reload-but-not-when-the-user-navigates-back0How do you clear an HTML form on page reload but not when the user navigates BACK to the page?John2009-08-14T20:38:54Z2009-08-14T22:00:29Z
<p>I am using the trick where you store some data in a hidden form in order to be able to be able to persist it so that when the user navigates away from the page and then uses the BACK button to come back I can restore the data to the page without hitting the server again... </p>
<p>However, this trick means that the same thing happens when the user clicks refresh or reload... (even shift-reload in Firefox). I would like to detect that the user is clicking reload as opposed to clicking the back button so that I can start fresh on a reload but still restore the previous data when the user navigates away and back.</p>
<p>Is there a way to do this? I've been investigating the onbeforeunload event etc but haven't figured anything out yet.</p>
<p>Edited to address Josh's question of "Why?":</p>
<p>The page is a search results page with a bunch of AJAX filters. The user might spend quite some time tweaking the filters to get just the set of search results they want... then if they either click away from the page or type in a new address in the URL bar... then come back to the page, if I don't do something like this, they will have to start all over and do all of the filtering again. This has been a very frustrating experience for the users we've brought in for usability testing.</p>
<p>This is the type of thing that a tech savy user might solve by just opening a new tab instead of clicking/typing away, but unfortunately the vast majority of our users are not tech savy, so the obvious solution is to have the page restore the filters/results when the user navigates back to the page.</p>
<p>On the other hand, there are two reasons I can think of why a user might reload the page 1. The results on the search page have a time-sensitive element in them and the user may want to get more up-to-the-minute results or 2. occasionally there may be an error where the page did not load properly. In both of these cases, if I restore the page to the saved state they will get the same (old and/or broken) results and not the fresh/fixed results they were expecting.</p>
<p>Hope that clears it up.</p>
http://stackoverflow.com/questions/310540/best-practices-for-storing-postal-addresses-in-a-database-rdbms7Best practices for storing postal addresses in a database (RDBMS)?John2008-11-21T23:28:30Z2009-08-12T05:44:02Z
<p>Are there any good references for best practices for storing postal addresses in an RDBMS? It seems there are lots of tradeoffs that can be made and lots of pros and cons to each to be evaluated -- surely this has been done time and time again? Maybe someone has at least written done some lessons learned somewhere?</p>
<p>Examples of the tradeoffs I am talking about are storing the zipcode as an integer vs a char field, should house number be stored as a separate field or part of address line 1, should suite/apartment/etc numbers be normalized or just stored as a chunk of text in address line 2, how do you handle zip +4 (separate fields or one big field, integer vs text)? etc. </p>
<p>I'm primarily concerned with U.S. addresses at this point but I imagine there are some best practices in regards to preparing yourself for the eventuality of going global as well (e.g. naming fields appropriately like region instead of state or postal code instead of zip code, etc.</p>
http://stackoverflow.com/questions/1242471/where-did-i-go-wrong-with-this-unicode-field-in-mysql1Where did I go wrong with this unicode field in MySQL?John2009-08-07T01:38:56Z2009-08-10T17:37:11Z
<p>I have a table with a field which contains strings in my MySQL database. </p>
<p>The MySQL version is 5.0.51a. The default character set for the table is 'utf8'.</p>
<p>Many of the strings have unicode characters such as \xae and \u21222 (registered symbol and trademark symbol respectively). </p>
<p>For example, suppose I have a row with a field this value:</p>
<pre><code>"Bing® Blang™ Blaow"
</code></pre>
<p>The default character set of my mysql command line client is "latin1".</p>
<p>If I issue a SELECT statement in the mysql client program from the command line without specifying a character set, the output of the title shows up like so:</p>
<pre><code>"Bing® Blang Blaow"
</code></pre>
<p>The (R) symbol is correct but the (TM) symbol is missing. If I cut and paste this string from the console into TextMate, the (TM) symbol appears, but is half-way behind the g in the word "Blang".</p>
<p>I am assuming that the half-way-behind-the-g thing is a just a display error in TextMate (though if anyone can provide further detail that'd be great, but that's not really the important part).</p>
<p>The main thing I am inferring from the its-there-after-you-cut-and-paste behavior is that the data is in the database but there's something wrong with some sort of character set setting somewhere.</p>
<p>If I override the default encoding of the mysql client on the command line like so:</p>
<pre><code>mysql --default-character-set=utf8
</code></pre>
<p>Then do the same select, the string comes out as:</p>
<pre><code>"Bing® Blang™ Blaow"
</code></pre>
<p>which is to say that both the (R) and (TM) symbols appear and are in the right place but both are preceded by the unicode character \xae which is an A with a circumflex on top.</p>
<p>(Incidentally this is also how the data is displayed when I pull it out using python and display it on a web page, which is what my real problem is).</p>
<p>Anyway, what is going on here? Everything we have done recently has used UTF8 everywhere possible, but it's possible that some of these rows were inserted prior to that change which means they would've been using the latin1 default... however neither encoding seems to produce the right result? </p>
<p>If the rows were inserted when the default encoding on the table was latin1 before it was switched to utf8, then the encoding was switched (via alter table..) then would the encoding have actually been updated? Should one of the encodings work now? Will unicode ever stop kicking my ass?</p>
http://stackoverflow.com/questions/98687/what-is-the-best-solution-for-database-connection-pooling-in-python2What is the best solution for database connection pooling in python?John2008-09-19T01:36:03Z2009-05-14T17:41:51Z
<p>I have developed some custom DAO-like classes to meet some very specialized requirements for my project that is a server-side process that does not run inside any kind of framework. </p>
<p>The solution works great except that every time a new request is made, I open a new connection via MySQLdb.connect. </p>
<p>What is the best "drop in" solution to switch this over to using connection pooling in python? I am imagining something like the commons DBCP solution for Java. </p>
<p>The process is long running and has many threads that need to make requests, but not all at the same time... specifically they do quite a lot of work before brief bursts of writing out a chunk of their results.</p>
<p>Edited to add:
After some more searching I found <a href="http://furius.ca/antiorm/" rel="nofollow">anitpool.py</a> which looks decent, but as I'm relatively new to python I guess I just want to make sure I'm not missing a more obvious/more idiomatic/better solution. </p>
http://stackoverflow.com/questions/816717/parse-an-email-message-for-sender-name-in-bash/816736#8167362Answer by John for parse an email message for sender name in bashJohn2009-05-03T10:21:29Z2009-05-03T22:22:23Z<p>Assuming there can't be random headers in the middle of the messages, then this should do the trick:</p>
<pre><code>cat * | grep '^From: ' | sort -u
</code></pre>
<p>If there may be other misleading "From:" lines in the middle of the messages, then you just need to make sure you are only getting the first matching line from each message, like so:</p>
<pre><code>for f in * ; do cat $f | grep '^From: ' | head -1 | sort -u ; done
</code></pre>
<p>Obviously you can replace the * in either command with a different glob or list of file names.</p>
http://stackoverflow.com/questions/816683/how-to-get-the-url-of-the-current-page-in-a-gae-template/816728#8167281Answer by John for how to get the url of the current page in a GAE templateJohn2009-05-03T10:13:19Z2009-05-03T10:13:19Z<p>It depends how you are populating the templates. If you are using them outside of Django, then you have to populate them with the URL yourself. If you are using them in Django with the default configuration, you would have to populate them with the URL yourself. An alternative that would avoid you having to populate them yourself is to configure the DJANGO.CORE.CONTEXT_PROCESSORS.REQUEST context processor as described on <a href="http://docs.djangoproject.com/en/dev/ref/templates/api/" rel="nofollow">this page</a> and then access the appropriate part of the request object directly (e.g. request.path).</p>
http://stackoverflow.com/questions/816712/dynamically-change-range-in-python/816721#8167216Answer by John for Dynamically change range in Python?John2009-05-03T10:07:23Z2009-05-03T10:07:23Z<p>You could probably çreate a generator that has mutable state that determines when it terminates... but what about something simple like this?</p>
<pre><code>page = 1
while page < num_pages + 1:
# do stuff that possibly updates num_pages here
page += 1
</code></pre>
http://stackoverflow.com/questions/668182/what-are-the-best-practices-for-tracking-warnings-errors-in-long-running-processe5What are the best practices for tracking warnings/errors in long running processes?John2009-03-20T22:04:08Z2009-03-28T08:11:57Z
<p>Our team has a number of processes which we run manually but which may run for many days. The processes do various things to large numbers of entities (web pages, database rows, images, files, etc). Obviously from time to time there are failures and we have to design or processes to handle these failures gracefully and move on so the whole job is not brought down.</p>
<p>Depending on the particular process in question, the rate, severity and urgency of failures varies. In some cases we send emails when a rare but important error happens, in other cases we just log it and move on, and so on.</p>
<p>The problem is that we have different error handling code scattered everywhere and more often than not when we "log it and move on" no one ever goes back and reads the logs, so no one ever knows what problems occurred. We can't default to email for all problems because there would simply be too many emails.</p>
<p>These are long running processes but not daemons where something like SNMP or Nagios might feel like a good fit. Surely this is a fairly common problem but I cannot seem to find many solutions online. I've heard people talking about using log4j (or other similar logging packages) to log to a database, etc. which seems like it might be a step in the right direction, but surely there are more sophisticated solutions out there by now..? I'm imagining something where your logger writes events to a database and there's a Nagios-like web interface that lets you see what errors are happening with what processes in real time as well as configure email alerts for specific patterns, etc. </p>
<p>Does something like this exist? If not, what approaches have you used to successfully deal with similar issues?</p>
<p>(For what it's worth most of our codebase is in python but I would imagine any decent implementations of this idea are largely non-anguage-specific and obviously any conceptual solutions would be as well).</p>
<p>Update: I just spent some time looking at Chainsaw, which is kind of what I am looking for, but I'd like it to be a webapp instead of a desktop app, and have alerting functionality.</p>
<p>Update: I just discovered <a href="http://hoptoadapp.com/" rel="nofollow">hoptoadapp</a> and <a href="http://getexceptional.com/" rel="nofollow">exceptional</a> which are both somewhat along the lines of what I was thinking, though both target Rails specifically.</p>
http://stackoverflow.com/questions/668257/python-simple-async-download-of-url-content/668765#6687652Answer by John for Python: simple async download of url content?John2009-03-21T05:02:48Z2009-03-21T05:02:48Z<p>One option would be to post the work onto a queue of some sort (you could use something Enterprisey like <a href="http://activemq.apache.org/" rel="nofollow">ActiveMQ</a> with <a href="http://code.google.com/p/pyactivemq/" rel="nofollow">pyactivemq</a> or <a href="http://stomp.codehaus.org/" rel="nofollow">STOMP</a> as a connector or you could use something lightweight like <a href="http://github.com/robey/kestrel/tree/master" rel="nofollow">Kestrel</a> which is written in Scala and speaks the same protocl as memcache so you can just use the python memcache client to talk to it).</p>
<p>Once you have the queueing mechanism set up, you can create as many or as few worker tasks that are subscribed to the queue and do the actual downloading work as you want. You can even have them live on other machines so they don't interfere with the speed of serving yourwebsite at all. When the workers are done, they post the results back to the database or another queue where the webserver can pick them up.</p>
<p>If you don't want to have to manage external worker processes then you could make the workers threads in the same python process that is running the webserver, but then obviously it will have greater potential to impact your web page serving performance.</p>
http://stackoverflow.com/questions/666979/how-can-my-system-docs-be-more-interactive/668200#6682001Answer by John for How can my system docs be more interactive?John2009-03-20T22:10:54Z2009-03-20T22:10:54Z<p>Perhaps a wiki?</p>
http://stackoverflow.com/questions/617733/how-do-you-create-a-frozen-non-scrolling-window-region-using-javascript/617740#6177403Answer by John for How do you create a frozen/non scrolling window region using javascript?John2009-03-06T05:22:17Z2009-03-06T05:22:17Z<p>You don't need to use javascript, you can do it with CSS just by setting the CSS property "display" to "fixed". You can of course do this with javascript if you like, like so:</p>
<pre><code>var element = ...code to get the element you want...;
element.style.display = 'fixed';
</code></pre>
http://stackoverflow.com/questions/25807/python-super-class-reflection/25815#258154Answer by John for Python super class reflectionJohn2008-08-25T09:22:22Z2009-02-16T14:33:55Z<p><code>C.__bases__</code> is an array of the super classes, so you could implement your hypothetical function like so:</p>
<pre><code>def magicGetSuperClasses(cls):
return tuple(cls.__bases__)
</code></pre>
<p>But I imagine it would be easier to just reference <code>cls.__bases__</code> directly in most cases.</p>
http://stackoverflow.com/questions/241995/is-there-any-way-to-get-a-repl-in-pydev4Is there any way to get a REPL in pydev?John2008-10-28T01:46:37Z2009-02-05T15:52:58Z
<p>I would like to be able to drop to the python REPL from the debugger -- if this is not possible is there an easier way to evaluate python expressions in the context of the current breakpoint other than manually adding them all as watch expressions?</p>
http://stackoverflow.com/questions/204040/what-should-i-call-a-rebol-function-that-does-list-comprehensions/501979#5019791Answer by John for What should I call a REBOL function that does list comprehensions?John2009-02-02T01:29:30Z2009-02-02T01:29:30Z<p>transmogrify</p>
http://stackoverflow.com/questions/384124/how-did-the-term-caret-for-text-insertion-evolve/384130#3841301Answer by John for How did the term "caret" for text insertion evolve?John2008-12-21T05:21:40Z2008-12-21T05:21:40Z<p><a href="http://en.wikipedia.org/wiki/Caret" rel="nofollow">Wikipedia</a> says:</p>
<blockquote>
<p>...comes from the Latin caret, "it lacks", from 'carēre', to lack; to be separated from; to be free from...</p>
</blockquote>
http://stackoverflow.com/questions/383017/are-there-any-tools-for-diffing-http-requests-responses1Are there any tools for diffing HTTP requests/responses?John2008-12-20T06:31:00Z2008-12-20T13:05:29Z
<p>I am trying to debug some problems with very picking/complex webservices where some of the clients that are theoretically making the same requests are getting different results. A debugging proxy like Charles helps a lot but since the requests are complex (lots of headers, cookies, query strings, form data, etc) and the clients create the headers in different orders (which should be perfectly acceptable), etc. it's an extremely tedious process to do manually.</p>
<p>I'm pondering writing something to do this myself but I was hoping someone else had already solved this problem?</p>
<p>As an aside does anyone know of any Charles-like debugging proxies that are completely opensource? If Charles were open source I would definitely contribute any work I did on this front back to the project. If there is something similar out there, I would much rather do this than write an separate program from scratch (especially since I imagine Charles or any analog already has all of the data structures I might need etc).</p>
<p>Edit:
Just to be clear -- text diffing will not work as the order of lines (e.g. headers at least) may be different and/or the order of values within lines (e.g. cookies at least) can be different and in both cases as long as the names and values and metadata are all the same, the different ordering should not cause requests that are otherwise the same to be considered different.</p>
http://stackoverflow.com/questions/361359/how-can-i-get-desired-z-index-behavior-from-ie-when-using-nested-divs0How can I get desired z-index behavior from IE when using nested DIVs?John2008-12-11T23:08:27Z2008-12-12T00:10:46Z
<p>I have three DIVs, something like this:</p>
<pre><code><div id="header">
...
</div>
<div id="content">
<div id="popup">
...
</div>
</div>
</code></pre>
<p>DIV#header is "position: fixed" and used as a non-scrolling header at the top of the screen. DIV#content has some content in it and is "position: relative". DIV#popup is "position: absolute" and starts out hidden and is displayed on hover. </p>
<p>I want the popup to be at the highest level on the page, so that it is above even DIV#header if they overlap. This works fine in Firefox but in IE the popups are behind the header. I can fix this by setting the z-index of DIV#content to be higher than the header, but then of course DIV#content will also be displayed above DIV#header when they overlap, which I don't want.</p>
<p>It sounds like I might be affected by what is described on <a href="http://annevankesteren.nl/2005/06/z-index" rel="nofollow">this page</a>. However, as I understand it, doing something like setting a default z-index on all elements, like so:</p>
<pre><code>* {
z-index: 1
}
</code></pre>
<p>should fix this (as now every element would have a z-index of 1 explicitly set), however rather than fixing this in IE it breaks it in Firefox (such that Firefox now behaves like IE).</p>
<p>What's the real deal with z-indexes in IE?</p>
http://stackoverflow.com/questions/355139/why-does-this-width-auto-style-work-as-an-inline-style-in-both-browsers-but-br0Why does this "width: auto" style work as an inline style in both browsers but break when moved to an external stylesheet only in IE?John2008-12-10T05:15:47Z2008-12-10T07:48:59Z
<p>I have an INPUT element that is defaulting to "width: 100%". This causes it to push other elements next to it down onto the next line. To fix this temporarily I added an inline style attribute on the element like this:</p>
<pre><code><input style="width: auto" ...>
</code></pre>
<p>which worked just fine. Now I'm going back to clean up the temporary fixes and I'm moving all the styles out of style attributes into external stylesheets. When I move this particular "width: auto" style into the stylesheet it still looks fine in Firefox, but in IE it ignores it and defaults to "width: 100%" again which blows out elements next to it again.</p>
<p>The IE web developer tool bar doesn't tell me where styles are coming from, so it's hard to diagnose what is going on. My best guess is that there is something else taking precedence in IE, but I don't know what it could be.</p>
<p>Edit: I swear I tried right-click in the IE developer bar but I guess not - when I do "trace style" on the "width: 100%" in IE I get a popup that just says "1. No match", however in Firefox it showed that the 100% was bleeding through from a selector on an above element that was something like "#outer foo bar INPUT" which covered this INPUT as well. I mistakenly assumed that an "#id" directly on the INPUT element would have a higher specificity than "#id foo bar INPUT" but I guess the browsers disagree about this. Either way, that got to the root of my problem, so thanks for the comments. I wish there was a way to promote a comment to an answer... </p>
http://stackoverflow.com/questions/342622/is-there-any-good-authoritative-source-of-information-on-seo-practices-that-is-ba4Is there any good authoritative source of information on SEO practices that is backed up by data?John2008-12-05T01:15:37Z2008-12-05T18:31:31Z
<p>Any google search for anything about SEO yields more articles than you can shake a stick at, but lot of the articles are out of date, many have conflicting advice and I just about none of them ever give any reasons/proof/data to back up their claims about what works and what doesn't.</p>
<p>Has anyone done any at least somewhat scientific tests to see what works and what doesn't (and ideally why?) or has anyone from Google released any non-basic information about best practices?</p>
<p>Really what I would love to do is A/B test different SEO techniques, but the time lag and sheer number of variables makes it very difficult. Has anyone ever tried this type of thing? (And published their results?)</p>
http://stackoverflow.com/questions/34227/is-it-possible-to-persist-without-reloading-ajax-page-state-across-back-button0Is it possible to persist (without reloading) AJAX page state across BACK button clicks?John2008-08-29T09:13:26Z2008-11-28T17:41:18Z
<p>I am familiar with several approaches to making the back button work in AJAX applications in various situations, but I have not found a solution that will work gracefully in my specific scenario.</p>
<p>The pages I am working with are the search interface for a site. You enter terms in a normal search box, click "go and wind up at a search results page. On the search results page there are a ton of UI controls for filtering/sorting the search results to find what you are looking for. Some of the operations triggered by these controls may take a (relatively) long time to complete (e.g. several seconds).</p>
<p>This latency is fine in case where the user is initially filtering/sorting their results... there's a nice AJAX spinner and so on... however when the user clicks on a search result and then clicks on the BACK button, I would like the page to instantly be restored to the state it was in when they clicked through. </p>
<p>I can restore the states using IFRAMEs/fragment identifiers as a dictionary of page history, but what ends up happening is that when the user first hits the back button the initial page is loaded, then it (re) makes the AJAX query to get the page state back, which triggers the AJAX spinner and another wait of possible several seconds.</p>
<p>Is there any approach that does not require this kind of two-stage load of the page when the user returns to the page via the BACK button?</p>
<p>Edited to add: I am partial to jquery but I'd be happy with solutions that depend on other libraries/toolkits or that are standalone/raw javascript.</p>
<p>Edited to add: I should've added that I'm trying to avoid cookies/sessions because this prevents people having multiple brower windows/tabs open and manipulating different sets of search results at the same time.</p>
<p>Edit: Matt, can you elaborate on your proposed solution (triggering a page change event via fragment identifer)? I see how this would help with BACK button clicks across the same page but not coming BACK to the search results page after clicking on a specific result.</p>
http://stackoverflow.com/questions/297239/why-doesnt-xpath-work-when-processing-an-xhtml-document-with-lxml-in-python4Why doesn't xpath work when processing an XHTML document with lxml (in python)?John2008-11-17T22:42:58Z2008-11-17T23:13:07Z
<p>I am testing against the following test document:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>hi there</title>
</head>
<body>
<img class="foo" src="bar.png"/>
</body>
</html>
</code></pre>
<p>If I parse the document using lxml.html, I can get the IMG with an xpath just fine:</p>
<pre><code>>>> root = lxml.html.fromstring(doc)
>>> root.xpath("//img")
[<Element img at 1879e30>]
</code></pre>
<p>However, if I parse the document as XML and try to get the IMG tag, I get an empty result:</p>
<pre><code>>>> tree = etree.parse(StringIO(doc))
>>> tree.getroot().xpath("//img")
[]
</code></pre>
<p>I can navigate to the element directly:</p>
<pre><code>>>> tree.getroot().getchildren()[1].getchildren()[0]
<Element {http://www.w3.org/1999/xhtml}img at f56810>
</code></pre>
<p>But of course that doesn't help me process arbitrary documents. I would also expect to be able to query etree to get an xpath expression that will directly identify this element, which, technically I can do:</p>
<pre><code>>>> tree.getpath(tree.getroot().getchildren()[1].getchildren()[0])
'/*/*[2]/*'
>>> tree.getroot().xpath('/*/*[2]/*')
[<Element {http://www.w3.org/1999/xhtml}img at fa1750>]
</code></pre>
<p>But that xpath is, again, obviously not useful for parsing arbitrary documents.</p>
<p>Obviously I am missing some key issue here, but I don't know what it is. My best guess is that it has something to do with namespaces but the only namespace defined is the default and I don't know what else I might need to consider in regards to namespaces.</p>
<p>So, what am I missing?</p>
http://stackoverflow.com/questions/297226/natural-language-automation/297295#2972950Answer by John for Natural language automation?John2008-11-17T23:06:12Z2008-11-17T23:06:12Z<p>Maybe look for a port of AppleScript to Windows? Assuming such a beast does not exist, perhaps something like <a href="http://www.autohotkey.com/" rel="nofollow">AutoHotKey</a> or <a href="http://www.autoitscript.com/autoit3/index.shtml" rel="nofollow">AutoIt</a> might be close enough?</p>
http://stackoverflow.com/questions/297119/how-to-make-the-cleanest-code-when-reporting-progress-to-a-user/297286#2972860Answer by John for How to make the cleanest code when reporting progress to a user?John2008-11-17T23:02:25Z2008-11-17T23:02:25Z<p>Unfortunately I think the best way to do this does depend on the details -- at the very least what language you are using. For example in python you could use a <a href="http://www.python.org/dev/peps/pep-0343/" rel="nofollow">context manager</a> to allow for writing code like this:</p>
<pre><code>with progress_report("Task 1"):
do_task_1()
</code></pre>
<p>This could, e.g., ensure that the "Task 1 is done" is reported even if do_task_1() raises an exception. If you wanted to, you could handle exceptions separately and print something different like "Task 1 failed" or "Task 1 aborted."</p>
http://stackoverflow.com/questions/283219/what-is-the-best-or-at-least-a-good-enough-algorithm-for-automatically-position0What is the best (or at least a good enough) algorithm for automatically positioning images within a CSS sprite?John2008-11-12T07:07:42Z2008-11-12T07:09:47Z
<p>I have written a CSS sprite auto-generator which takes selected images out of the HTML page and converts them to CSS sprites, but right now it does not attempt to lay them out optimally but rather just stacks them, which wastes a lot of space. What would be the best algorithm for determining the optimal layout?</p>
<p>To state the problem more generally, I need an algorithm that, given any number of rectangles of arbitrary size, will arrange them into a rectangle with the smallest possible area.</p>
http://stackoverflow.com/questions/18418/elegant-way-to-remove-items-from-sequence-in-python/18435#18435Comment by John on Elegant way to remove items from sequence in Python?John2009-12-07T22:31:09Z2009-12-07T22:31:09Zsure, if you like readability or something.http://stackoverflow.com/questions/1309233/is-the-implementation-of-response-info-getencoding-broken-in-urllib2Comment by John on Is the implementation of response.info().getencoding() broken in urllib2?John2009-08-20T23:23:02Z2009-08-20T23:23:02ZDug deeper: Hitting google through charles from Firefox it uses utf-8 for both the content-type header and the meta tag, and hitting it through charles from urllib2 in python it uses ISO-8859-1 for both.http://stackoverflow.com/questions/1309233/is-the-implementation-of-response-info-getencoding-broken-in-urllib2Comment by John on Is the implementation of response.info().getencoding() broken in urllib2?John2009-08-20T22:56:40Z2009-08-20T22:56:40ZOk, I just checked too and the meta tags in google's home page for me also reflect ISO-8859-1:
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">http://stackoverflow.com/questions/1309233/is-the-implementation-of-response-info-getencoding-broken-in-urllib2Comment by John on Is the implementation of response.info().getencoding() broken in urllib2?John2009-08-20T22:51:22Z2009-08-20T22:51:22ZWell I guess comments don't take the same formatting that the posts do, but you get the idea.http://stackoverflow.com/questions/1309233/is-the-implementation-of-response-info-getencoding-broken-in-urllib2Comment by John on Is the implementation of response.info().getencoding() broken in urllib2?John2009-08-20T22:50:04Z2009-08-20T22:50:04ZAs I understand it, this method will only look at the headers and not at the meta tags in the page:
$ curl -I <a href="http://www.google.com/" rel="nofollow">google.com</a>
HTTP/1.1 200 OK
Date: Thu, 20 Aug 2009 22:40:54 GMT
Expires: -1
Cache-Control: private, max-age=0
Content-Type: text/html; charset=ISO-8859-1
Set-Cookie: PREF=ID=7592ab15eefe9966:TM=1250808054:LM=1250808054:S=KaPYgHdNyGx7eglv; expires=Sat, 20-Aug-2011 22:40:54 GMT; path=/; domain=.google.com
Server: gws
Transfer-Encoding: chunked
http://stackoverflow.com/questions/1308584/is-it-possible-to-peek-at-the-data-in-a-urllib2-response/1308636#1308636Comment by John on Is it possible to peek at the data in a urllib2 response?John2009-08-20T20:41:36Z2009-08-20T20:41:36ZIt can be (1) in the headers, (2) in the document or (3) absent (in which case I have to use chardet to detect it based on the characters in the document).
I can obviously pull the text out ahead of time, but the particular thing I'd like to do is basically allow me to avoid this type of approach. http://stackoverflow.com/questions/1280088/how-do-you-clear-an-html-form-on-page-reload-but-not-when-the-user-navigates-back/1280126#1280126Comment by John on How do you clear an HTML form on page reload but not when the user navigates BACK to the page?John2009-08-14T20:51:37Z2009-08-14T20:51:37ZThis is interesting... it looks like it might be a pain because I'll have to handle all of the different browsers individually but I'll investigate further.http://stackoverflow.com/questions/1280088/how-do-you-clear-an-html-form-on-page-reload-but-not-when-the-user-navigates-back/1280112#1280112Comment by John on How do you clear an HTML form on page reload but not when the user navigates BACK to the page?John2009-08-14T20:50:47Z2009-08-14T20:50:47ZThe problem is that this (hidden) form is never submitted - data only gets written to it from javascript (I serialize an object graph to it as the user interacts with the page) and it always gets reloaded on page load if it's there... http://stackoverflow.com/questions/1280088/how-do-you-clear-an-html-form-on-page-reload-but-not-when-the-user-navigates-back/1280117#1280117Comment by John on How do you clear an HTML form on page reload but not when the user navigates BACK to the page?John2009-08-14T20:49:40Z2009-08-14T20:49:40Zwindow.history.next seems like it would be a step in the right direction but actually seem to work for two reasons: 1. window.history.next would still be populated during the reload if the user went forward then back then reloaded, and 2. it doesn't seem to be a property that is accessible from the page (I get "Error: Permission denied for <<a href="http://localhost:8000>" rel="nofollow">localhost:8000></a>; to get property History.next next()@:0 " when I try it).http://stackoverflow.com/questions/1242471/where-did-i-go-wrong-with-this-unicode-field-in-mysql/1254560#1254560Comment by John on Where did I go wrong with this unicode field in MySQL?John2009-08-10T22:14:53Z2009-08-10T22:14:53ZThis is indeed what I had to do as a result of the problem I mentioned I found in my comment to Scott McClung's answer but doesn't fix the real problem(s) as described by mtnviewmark. http://stackoverflow.com/questions/1242471/where-did-i-go-wrong-with-this-unicode-field-in-mysql/1242926#1242926Comment by John on Where did I go wrong with this unicode field in MySQL?John2009-08-07T18:15:19Z2009-08-07T18:15:19ZThis is the case. I'm not sure exactly how to act on this knowledge to fix things yet, but I think this is the main problem.http://stackoverflow.com/questions/1242471/where-did-i-go-wrong-with-this-unicode-field-in-mysql/1242631#1242631Comment by John on Where did I go wrong with this unicode field in MySQL?John2009-08-07T04:30:25Z2009-08-07T04:30:25ZI am setting the character set to utf8 in the python connection -- at this point I'm mostly sure if I can figure out what's going on on the command line I can get the right results in my code -- but I still don't have a clear idea of whats going on at the basic DB/command line level. http://stackoverflow.com/questions/816717/parse-an-email-message-for-sender-name-in-bash/816736#816736Comment by John on parse an email message for sender name in bashJohn2009-05-03T22:23:06Z2009-05-03T22:23:06ZYou are correct... I missed the 'unique' part of the original question. I've updated my answer to add '|sort -u'. ('|sort|uniq' would work as well).http://stackoverflow.com/questions/816683/how-to-get-the-url-of-the-current-page-in-a-gae-template/816728#816728Comment by John on how to get the url of the current page in a GAE templateJohn2009-05-03T22:20:51Z2009-05-03T22:20:51ZYes, you'll have to provide it yourself.http://stackoverflow.com/questions/617733/how-do-you-create-a-frozen-non-scrolling-window-region-using-javascript/617742#617742Comment by John on How do you create a frozen/non scrolling window region using javascript?John2009-03-06T05:23:33Z2009-03-06T05:23:33ZThis is not "position: static" -- "position: static" is the default positioning for most elements. This is "position: fixed".