505 reputation
59
bio website
location Fargo, ND
age
visits member for 3 years, 1 month
seen 5 hours ago
stats profile views 15

May
10
comment Read a file one line at a time in node.js?
@hippietrail: The answer is no for UTF-8, even though it is working on a byte stream rather than a character stream. It breaks on newlines (0x0a). In UTF-8, all bytes of a multibyte character have their hi-order bit set. Thus, no multibyte character can include an embedded newline or other common ASCII character. UTF-16 and UTF-32 are another matter, however.
May
7
comment Free ip-to-location services?
Returned the same data for me (correct) as is contained in MaxMind's free DB.
May
7
comment Free ip-to-location services?
MaxMind's free DB nailed my town. Most of these services place me in a neighboring town.
May
7
comment Free ip-to-location services?
It put me in Fairfax, Virginia. I'm actually in Massachusetts.
Apr
23
awarded  Yearling
Mar
8
awarded  Civic Duty
Mar
2
answered Extracting file from tarfile with only basename using Python
Feb
18
comment Google spreadsheet Query Error - column doesn't exist
I was having problems querying an imported range, so I googled for google spreadsheet query importrange and landed on an example which used the Col1 ... Coln convention.
Feb
12
awarded  Nice Answer
Feb
4
awarded  Revival
Jan
21
awarded  Necromancer
Jan
19
comment Why would actual displayed color differ from the hex color in inspector (in Chrome)?
Flash appears to fix it. I noticed off colors in Chrome 24.0.1312.52 under Mac OS 10.6.8 showing pages on an external monitor. DigitalColor Meter would show hex values differing from the CSS and changing depending on which color profile was selected for the monitor. Then I happened to try it on w3schools.com/html/html_colors.asp. The colors there were all pristine! WTF‽ On a hunch, I configured the Flash plugin to require a click. Now the colors were wrong on the w3schools page as well — until I clicked one of the Flash ads!
Nov
28
answered Google spreadsheet Query Error - column doesn't exist
Nov
9
awarded  Necromancer
Oct
25
comment Best way to do variable interpolation in javascript?
@george: A quick test on my machine gave 7312 ns for "The cow says moo, moo, moo!" using Crockford's method vs 111 ns for a precompiled function that pulls the variables out of the passed object and concatenates them with the constant parts of the template string. This was Chrome 21.
Oct
9
comment Vertical align checkbox / label pairs
To make the adjustment sensitive to font-size, you could use em instead of px, e.g. vertical-align:-0.1em.
Oct
6
comment How can I read a JSON in the script-tag from JavaScript?
Why not just give the script an ID and grab it with document.getElementById? That way, you don't have to remember to keep it last. Nor will whoever else changes the page in the future.
Oct
5
awarded  Commentator
Oct
5
comment Can't reduce size of resizable textarea in Chrome
Firefox's is the more useful behavior. The textarea starts out sized as styled, but then the user can resized it up or down by dragging the resize handle.
Oct
4
comment How to change the style of Title attribute inside the anchor tag?
See sixrevisions.com/css/css-only-tooltips for an example of the above technique, with a detailed explanation.