John

2,696
reputation
128 views

Registered User

name John
member for 1 year
seen Dec 8 at 3:54
website
location Palo Alto, CA
age 34
I pretty much rule.
11h
awarded  Taxonomist
Dec
7
comment Elegant way to remove items from sequence in Python?
sure, if you like readability or something.
Dec
7
awarded  Nice Answer
Oct
30
awarded  Popular Question
Oct
9
answered UTF-8 In Python logging, how?
Sep
28
asked Is there a way to do pre-compression with on-the-fly-uncompression in nginx?
Sep
26
asked Issues with whole-site caching on CDNs? (e.g. alternate content for mobile browsers)
Aug
21
awarded  Yearling
Aug
20
comment Is the implementation of response.info().getencoding() broken in urllib2?
Dug 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.
Aug
20
comment Is the implementation of response.info().getencoding() broken in urllib2?
Ok, 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">
Aug
20
comment Is the implementation of response.info().getencoding() broken in urllib2?
Well I guess comments don't take the same formatting that the posts do, but you get the idea.
Aug
20
comment Is the implementation of response.info().getencoding() broken in urllib2?
As I understand it, this method will only look at the headers and not at the meta tags in the page: $ curl -I google.com 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
Aug
20
asked Is the implementation of response.info().getencoding() broken in urllib2?
Aug
20
comment Is it possible to peek at the data in a urllib2 response?
It 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.
Aug
20
asked Is it possible to peek at the data in a urllib2 response?
Aug
14
revised How do you clear an HTML form on page reload but not when the user navigates BACK to the page?
Answered the "why?" question.
Aug
14
comment How do you clear an HTML form on page reload but not when the user navigates BACK to the page?
This 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.
Aug
14
comment How do you clear an HTML form on page reload but not when the user navigates BACK to the page?
The 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...
Aug
14
asked How do you clear an HTML form on page reload but not when the user navigates BACK to the page?
Aug
10
comment Where did I go wrong with this unicode field in MySQL?
This 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.
Aug
7
comment Where did I go wrong with this unicode field in MySQL?
This 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.
Aug
7
comment Where did I go wrong with this unicode field in MySQL?
I 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.
Aug
7
asked Where did I go wrong with this unicode field in MySQL?
Jul
8
awarded  Disciplined