eyelidlessness

5,726
Reputation
312 views

Registered User

Name eyelidlessness
Member for 1 year
Seen 1 hour ago
Website
Location Seattle (physical), Nickelsville (mental), Glacier (spirit)
Age 27
Really, I'm a luddite, I swear. See: http://img383.imageshack.us/img383/9403/eyelidlessnessxv1.png
1d
comment When is it wise to use regular expressions with HTML?
Isn't the general tautology that when you know what you're doing, you'll know it's unwise to do?
1d
answered When is it wise to use regular expressions with HTML?
1d
comment codeigniter populate form from database
Why are you pulling data in the controller instead of the model?
1d
comment Which HTML DocType?
It's worth noting that "almost standards" mode is just standards mode where the <img> element has a default CSS display value of inline-block rather than inline, and by default the only display difference is that inline images share line spacing with the font of their parent (and leave space for descenders) whereas inline-block images don't. And this is adjustable within CSS so it's really a non-issue.
Nov
26
comment Can JavaScript detect when the user stops loading the document?
How can they stop loading with the escape key after the stop actions are disabled?
Nov
25
comment What do you do to write better code?
I'd take this two steps further: first to de-emphasize the English language specifically, and second to emphasize the benefit of learning second (and third and nth) human languages, as the ability to mentally translate between language models can heighten the value of a command of any given human language per se.
Nov
25
comment What do you do to write better code?
Write code more often, writing less each time.
Nov
25
comment Is there a way to see the final URL retrieved by an XMLHttpRequest?
ss ulrey, no it doesn't spawn a new XHR. The original XHR will continue to resolve Location redirects (until the browser decides it has redirected too many times) and the final response will be the "response" according to the XHR.
Nov
25
comment Can JavaScript detect when the user stops loading the document?
I would avoid relying on the escape key, as you're still missing an explicit stop event.
Nov
25
accepted Can JavaScript detect when the user stops loading the document?
Nov
25
revised remove last character in id attribute
edited title
Nov
25
revised Can JavaScript detect when the user stops loading the document?
explanation; added 18 characters in body
Nov
25
answered Can JavaScript detect when the user stops loading the document?
Nov
25
comment Can JavaScript detect when the user stops loading the document?
I'm curious if you still get the "throbber of doom" if you add the script in question to the DOM after the DOM is loaded (or worst case, onload).
Nov
24
comment C# which is faster do/while or for?
+1: In general, I'd expect the compiler or interpreter to convert the for sugar to while.
Nov
24
comment C# which is faster do/while or for?
lc, I don't know how any given language implements for or while or do/while behind the scenes, but intuitively it seems that a for loop is a specialized while loop (not do/while), and at least in the languages I use, if you pass a for loop a boundary parameter that evaluates false on first execution, the loop never runs. Eg. for(i = 10; i < 9; i++) { /* This never runs */ }. This is the behavior of a while loop.
Nov
22
comment How can Aptana show jQuery code assist for $ when jQuery is in no conflict mode?
Unrelated, but you can shorten your wrapper by using jQuery(function($) { ... });
Nov
22
comment How to weed out bad emails (in php)?
RCIX, I provided a solution "other than confirming the email", so what the hell?
Nov
22
comment How to weed out bad emails (in php)?
Keep a separate email for that purpose?
Nov
22
answered How to weed out bad emails (in php)?
Nov
22
comment Regex to match all HTML tags except <p> and </p>
Wow. I didn't believe you, but I ran it through the W3 validator with an HTML 4.01 Strict doctype, and it validates. It throws up warnings, but wow.
Nov
17
comment How to darken an image on mouseover?
It might be that if your "tried it, didn't work" (9_9 don't you think you could provide more information about what you tried exactly and what happened?) scenarios didn't work, they'd work if your link and image elements are set to CSS display: block rather than their default display: inline. The default setting can restrict some of the effects in question to the line-height of the inline elements.
Nov
15
accepted Which is the best way to handle long write() arguments?
Nov
14
comment How to remove Firefox’s dotted outline on BUTTONS as well as links?
The answer marked correct is incorrect. The correct answer is: stackoverflow.com/questions/71074/…
Nov
13
comment Inherit Color from Parent and Perform Color Shading in CSS
Thanks ChssPly76!
Nov
13
comment Inherit Color from Parent and Perform Color Shading in CSS
Wow, LESS looks really cool. I think I'll take a stab at porting it to PHP this weekend.
Nov
12
comment How can I determine if an HTML element is offscreen?
I don't really have time to answer right now, but I'll point out that it'd help if you expect some elements to be out of visibility inside a scrolling section of the page (eg a <div> with overflow: auto), or just the window.
Nov
12
revised Why does 2 == [2] in JavaScript?
added 234 characters in body; added 13 characters in body
Nov
12
revised Jquery problem: trying to stop an animation after first click.
code
Nov
12
answered Why does 2 == [2] in JavaScript?
Nov
11
comment What software for your own personal use did you write?
Newtopian, solving Minesweeper is easy, and isn't any harder without assistance. The skill (and thus the fun) is in solving it in a shorter time. Writing a program to solve it for you doesn't make you a faster player. As someone who has twice placed on one of the [unofficial] "world records" lists (by combined Beginner, Intermediate and Expert scores being less than 100; current are 4, 19 and 72, though my previous low Beginner was 2), I find the idea of a solver program silly. :)
Nov
9
comment Does codegolf make a better programmer - or is it even useful?
Shadi Almosri, I think the difference is that where "tricks" in code golf ought to be clever in terms of doing more with less code, the cleverness that's appropriate in "work" code is more in terms of maximizing clarity while minimizing resource use. The two really are quite opposite. But with that said, cleverness in one likely promotes cleverness in the other... simply because it promotes thinking deeper into problems.
Nov
9
comment Does codegolf make a better programmer - or is it even useful?
With all due respect, I completely disagree. Creatively solving puzzles makes you better at solving puzzles, full stop. Moreover, like a novelist writing haiku, it exercises different but relevant thought process from the "proper work", which can provide greater insight for future "proper work". Both examples are quite like a musician practicing modes, which alone don't produce much but in the context of a developing talent provide greater insight into utilizing available instruments (or tools).
Nov
9
comment Code Golf: Lasers
This is pretty funny.
Nov
7
comment Google’s Imageless Buttons…
I sincerely doubt Google is browser sniffing IE out for button rendering.
Nov
7
comment Google’s Imageless Buttons…
Why? Use a <button type="submit"> instead, as it can have child elements and be styled however you like.
Nov
7
comment What’s your most controversial programming opinion?
icelava, I'm both a performing musician and a software developer. While I enjoy software development and do take an interest in it outside work, it's very obvious to me that it's much closer to "just a job" than music, which is a passion, and which I do gladly for free. I think my comment, your comment, and the parent answer are all a matter of personal values—with consequences for our respective jobs, but otherwise without much room for any kind of controversy.
Nov
7
comment What Is The Best Scripting Language To Learn?
Wordpress is a lot of things, but I don't think "wonderful" is a word I'd use to describe it.
Nov
3
awarded  Good Answer
Nov
2
comment Can every recursion be converted into iteration?
Ian, I'm not sure that proves each has equivalent power, only that each uses equivalent power. Use demonstrates certain capabilities, but not necessarily the extent of them.
Nov
1
comment Compare two dates JS
+1 for a start to finish solution, but I'm not really thrilled about the function declaration within a function. (To be honest I'm not even really thrilled about function declarations anywhere in Javascript.)
Oct
31
revised Help with classes in php
clean up indentation
Oct
29
answered What is the ‘new’ keyword in JavaScript?
Oct
22
revised The best Javascript UI framework
edited tags
Oct
22
accepted Generate lighter/darker color in css using javascript
Oct
21
awarded  Nice Answer
Oct
19
revised Why are JS scripts usually place in the header of a document?
added 2 characters in body
Oct
17
answered PHP - How to parse this xml?
Oct
16
revised How to only modify “text” while modifying the dom using javascript
edited body
Oct
15
accepted What are the most helpful features of effective 404 File Not Found error pages?