715 reputation
516
bio website
location
age
visits member for 1 year, 4 months
seen May 15 at 0:09
stats profile views 34

Apr
16
awarded  Necromancer
Apr
5
awarded  Nice Answer
Mar
10
awarded  Nice Answer
Feb
19
awarded  Necromancer
Feb
12
comment Disabling the context menu on long taps on Android
One potential issue I've found with this solution is if the user does any touch command above the image, such as trying to scroll, or zoom, then their command will fail.
Feb
12
awarded  Revival
Feb
12
comment Disable “save image” in iOS web application
@Tina: even if the context menu appears, the menu will only apply to the DIV, not the image. But if you want the context menu to not appear for the DIV either, simply do: <div oncontextmenu="return false" style="position:absolute;left:0px;top:0px;right:0px;bottom:0px;z-index:1000"></d‌​iv>
Jan
20
awarded  Informed
Jan
12
awarded  Yearling
Dec
31
awarded  Necromancer
Dec
29
comment Lucene.net proximity search
Good question. I would also like to know.
Dec
8
comment Buttons with equal line-height in ALL browsers
FYI, all versions of Firefox ignore line-height on buttons: cssnewbie.com/input-button-line-height-bug
Dec
7
comment foreach KeyValuePair in NameValueCollection?
Be aware how this code functions for duplicate keys. When duplicate keys exist, it will return "key value1,value2,value3", instead of "key value1" then "key value2" then "key value3".
Dec
6
answered ASP.NET HttpResponse Cookies null check
Dec
6
comment ASP.NET HttpResponse Cookies null check
No idea why this is the accepted answer. It seems to have very little to do with the question. The answer is yes, calling Response.Cookies["CookieName"] in any manner actually creates the cookie.
Dec
6
comment Using endResponse in a Response.Redirect
Keep in mind that, since the request will be completed, many unnecessary KB of HTML may still be sent to the user. Depending on your code, they'll receive all the HTML for that page, which they'll never see, then all the HTML for the next page they're being redirected to.
Nov
30
comment Bulk insert questions
@Marc, OK. So it ultimately comes down to duration. If you're processing it on the same server (or if a slight insert delay doesn't bother you from transferring data over-the-wire), then might as well skip the staging table and insert directly into the real table. That pretty much correct?
Nov
30
comment Bulk insert questions
@Marc, so sounds like it's fine to insert into the real table directly if that real table has Simple logging. In regards to other readers (and actually logging as well), whether you do the insert now or later, seems like it'd be the same impact, no?
Nov
30
comment Bulk insert questions
What's the reason for doing the bulk-insert into a staging table, then moving it to the real table? Why not just do the insert into the real table from the start?
Nov
21
awarded  Revival