User Jim - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T02:44:58Zhttp://stackoverflow.com/feeds/user/8427http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/449437/logging-in-background-details/538930#5389301Answer by Jim for Logging In: Background DetailsJim2009-02-11T21:37:02Z2009-02-11T21:37:02Z<p>There are two main ways of performing authentication on the web, and a few less popular ways that are also worth knowing about.</p>
<p>The first is HTTP authentication, as defined by <a href="http://tools.ietf.org/html/rfc2617" rel="nofollow">RFC 2617</a>. When you request a protected page, the server responds with a <code>401</code> status code, signalling that you aren't permitted to access the resource. In addition to this, it also sends a <code>WWW-Authenticate</code> header, which instructs the browser on how it wants you to authorise yourself. The browser sees this status code and the header, and prompts you for your authentication details. When you enter them, your browser prepares them according to the specific authentication scheme the server specified, and requests the page again, including an <code>Authorization</code> header with the prepared details. The server checks these details against its user database, and either responds with another <code>401</code> (wrong details), or the protected page with an accompanying <code>200</code> status code to indicate success.</p>
<p>HTTP authentication is one of those ancient features that browsers didn't implement well to begin with and have never really been improved. Because of this, it has become much more popular for web developers to implement authentication themselves using cookies to persist state. In this case, the user is presented with a standard HTML form. When the user enters their credentials into the fields and submits the form, the browser encodes it and sends it to the server in the same way it encodes any normal HTML form. The server checks the credentials, and if they are legitimate, sets a cookie with a randomly-generated ID number, along with a corresponding database/filesystem entry that recognises that ID number as belonging to a particular user.</p>
<p>From this point on, every request the browser makes to the server includes this ID number cookie as an HTTP header. The server recognises the cookie, looks up the ID number, and knows which user you are. When you choose to log out, the server sends a response asking your browser to forget the ID number, at which point you are just another anonymous user.</p>
<p>A less commonly-used option is the use of SSL client certificates. Many people are familiar with the idea of using SSL to identify a server. A cryptographic keypair is generated, signed by a trusted authority, and used to prove that the data being sent originated with the owner of the keypair. What many people aren't aware of though, is that the same can be used by a client to prove its identity to a server. This is less convenient, however, as you need to carry your certificate around with you if you want to use it on more than one machine.</p>
<p>There are variations and lesser-known options available of course, but these are the most prominent ones.</p>
http://stackoverflow.com/questions/489966/determine-whether-browser-supports-javascript-from-within-iframe/489982#4899820Answer by Jim for Determine whether browser supports javascript from within iFrame?Jim2009-01-29T00:06:32Z2009-01-29T00:06:32Z<p>Generally speaking, you shouldn't detect JavaScript support. You should serve a page that works without JavaScript, and add JavaScript that alters the page in whatever way is appropriate for when JavaScript is available.</p>
http://stackoverflow.com/questions/489863/how-do-i-modify-the-first-returned-header-on-the-fly/489898#4898981Answer by Jim for how do i modify the first returned header on the flyJim2009-01-28T23:34:19Z2009-01-28T23:34:19Z<p>That is not a header, it is the status line.</p>
<p>Lying about the status of responses can often cause problems, for example, link checkers would miss reporting such errors. You are relying on a human reading the 200 page and understanding it, but the whole point of computer protocols is that they can be understood by computers as well. You should try to fix the problem instead of hiding it.</p>
<p>It sounds to me like you have run across Internet Explorer's insistence upon "friendly" error pages. You can work around that by padding out your error page so that it is larger than 512 bytes, which then causes Internet Explorer to display the error page instead of its own.</p>
http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming/145153#1451530Answer by Jim for Python Vs. Ruby for MetaprogrammingJim2008-09-28T03:38:38Z2008-09-28T03:38:38Z<p>There isn't really a lot to separate Python and Ruby. I'd say the Python community is larger and more mature than the Ruby community, and that's really important for me. Ruby is a more flexible language, which has positive and negative repercussions. However, I'm sure there will be plenty of people to go into detail on both these languages, so I'll throw a third option into the ring. How about JavaScript?</p>
<p>JavaScript was originally designed to be Scheme for the web, and it's prototype-based, which is an advantage over Python and Ruby as far as multi-paradigm and metaprogramming is concerned. The syntax isn't as nice as the other two, but it is probably the most widely deployed language in existence, and performance is getting better every day.</p>
http://stackoverflow.com/questions/144761/how-to-remove-accents-and-tilde-in-a-c-stdstring/144854#1448540Answer by Jim for How to remove accents and tilde in a C++ std::string Jim2008-09-28T00:27:23Z2008-09-28T00:27:23Z<p>This is a duplicate of <a href="http://stackoverflow.com/questions/140422/how-do-i-translate-8bit-characters-into-7bit-characters-ie-220-to-u">
How do I translate 8bit characters into 7bit characters? (i.e. Ü to U)
</a>.</p>
http://stackoverflow.com/questions/144324/openid-retrofitting-and-can-i-trust-where-sensitive-data-is-involved/144500#1445005Answer by Jim for OpenID retrofitting and can I trust where sensitive data is involved?Jim2008-09-27T21:15:23Z2008-09-27T21:15:23Z<p>It seems to me that a lot of the arguments against OpenID are either made out of ignorance or by people with an axe to grind.</p>
<p>For example, the document you link to complains that identifying yourself with a URI is "dehumanising and more than a little frightening". Is that a legitimate complaint, or something written by somebody desperate to find things to complain about?</p>
<p>The two major things that get brought up are phishing and compromised accounts and these arguments have been rehashed so many times, it's hard to take somebody seriously if they bring them up yet again with no new points to make.</p>
<p>Phishing protection depends on the provider. Some providers offer much better security than typical websites ever would. Some providers just offer the typical username and password. Either way, if an account is compromised, that's something between the user and their provider, it's not your concern. You don't worry that the end-user has a keylogger installed on their computer, do you? That's because their local security isn't your responsibility, even though it might be used to gain access to their account. Likewise with OpenID - its security is not your responsibility.</p>
<p>If you compromise an OpenID, it gives you access to more than a single website. Sure, but the same is true for email. Just say you've forgotten your password, and you get sent a new one. You now have access to every account they've registered with that email address.</p>
<p>OpenID is no worse than the status quo, and it's significantly better in many circumstances, especially for informed users. If you are still wary of it, then just make it optional, so only the informed users use it.</p>
http://stackoverflow.com/questions/144448/python-postgresql-modules-which-is-best/144462#1444625Answer by Jim for Python PostgreSQL modules. Which is best?Jim2008-09-27T21:00:21Z2008-09-27T21:00:21Z<p>psycopg2 seems to be the most popular. I've never had any trouble with it. There's actually a pure Python interface for PostgreSQL too, called <a href="http://barryp.org/software/bpgsql/" rel="nofollow">bpgsql</a>. I wouldn't recommend it over psycopg2, but it's recently become capable enough to support Django and is useful if you can't compile C modules.</p>
http://stackoverflow.com/questions/144117/any-free-text-to-speech-for-browsers/144165#1441650Answer by Jim for Any free Text To Speech for browsers?Jim2008-09-27T18:07:40Z2008-09-27T18:07:40Z<ul>
<li><a href="http://www.firevox.clcworld.net/" rel="nofollow">Fire Vox</a></li>
<li><a href="http://www.standards-schmandards.com/projects/fangs/" rel="nofollow">Fangs</a></li>
</ul>
http://stackoverflow.com/questions/141606/how-can-i-hide-content-in-a-html-file-from-search-engines/141636#1416360Answer by Jim for How can I hide content in a HTML file from search engines?Jim2008-09-26T20:05:45Z2008-09-26T20:05:45Z<p>Any attempt to hide content is going to have side-effects regarding accessibility and compatibility. It seems that all you are attempting to do is control the snippet that search engines display, in which case <a href="http://googlewebmastercentral.blogspot.com/2007/09/improve-snippets-with-meta-description.html" rel="nofollow">you are better off providing an appropriate meta element description</a>.</p>
http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc/141383#1413836Answer by Jim for What is the best way to parse a time into a Date object from user input in Javascript?Jim2008-09-26T19:18:52Z2008-09-26T19:18:52Z<p>Don't bother doing it yourself, just use <a href="http://www.datejs.com/" rel="nofollow">datejs</a>.</p>
http://stackoverflow.com/questions/140549/what-character-set-should-i-assume-the-encoded-characters-in-a-url-to-be-in/141139#1411390Answer by Jim for What character set should I assume the encoded characters in a URL to be in ?Jim2008-09-26T18:28:59Z2008-09-26T18:28:59Z<p>I believe the specification you are looking for is <a href="http://tools.ietf.org/html/rfc3987" rel="nofollow">RFC 3987</a>, which describes IRIs - Internationalized Resource Identifiers.</p>
http://stackoverflow.com/questions/140765/how-do-i-know-when-to-close-an-http-1-1-keep-alive-connection/141060#1410601Answer by Jim for How do I know WHEN to close an HTTP 1.1 Keep-Alive Connection?Jim2008-09-26T18:13:17Z2008-09-26T18:13:17Z<blockquote>
<p>Lets see how stackoverflow handles this very obscure question -- answers for which, on Google, are mired in technical specifications and obscure language.</p>
</blockquote>
<p>I just put <a href="http://www.google.co.uk/search?q=When+should+I+close+an+HTTP+1.1+connection%3F" rel="nofollow">When should I close an HTTP 1.1 connection? into Google, and the third hit was HTTP Made Really Easy</a>. In the table of contents, there is a link to a section entitled <a href="http://www.jmarshall.com/easy/http/#http1.1s4" rel="nofollow">Persistent Connections and the "Connection: close" Header</a>. This section is three paragraphs long, uses very simple language, and tells you exactly what you want to know.</p>
<blockquote>
<p>I want a plain-english answer for a non-C programmer :)</p>
</blockquote>
<p>With all due respect, programming is a technical endeavour where the details matter a great deal. Reading technical documentation is an absolutely essential skill. Relying on "plain English" third-party interpretations of the specifications will only result in you doing a poor job.</p>
http://stackoverflow.com/questions/138880/ie6-freezes-due-to-server-configuration/139101#1391015Answer by Jim for IE6 freezes due to *server* configurationJim2008-09-26T12:27:32Z2008-09-26T12:27:32Z<p>You need to determine the difference between them, so I'd start out with the following:</p>
<pre><code>curl -D first.headers -o first.body http://first.example.com
curl -D second.headers -o second.body http://second.example.com
diff -u first.headers second.headers
diff -u first.body second.body
</code></pre>
http://stackoverflow.com/questions/130508/what-font-size-do-you-use-in-your-code-editor/130648#1306480Answer by Jim for What font size do you use in your code editor?Jim2008-09-24T23:40:57Z2008-09-24T23:40:57Z<p>Point size is a physical measurement, it shouldn't depend on resolution or font.</p>
<p>I don't go for small as possible, nor large as possible, but rather I find that there's a 'natural' size, where, if I go smaller or larger, I can't read it as quickly, despite it being completely legible.</p>
<p>As for zooming, if you think that's even remotely necessary, then you're setting it <em>way</em> too small. And in any case, in GNOME, you can just hold down the Windows key and scroll the mouse wheel to zoom in and out, no application support necessary.</p>
http://stackoverflow.com/questions/129651/how-do-i-keep-a-div-from-expanding-to-take-up-all-available-width/129706#1297062Answer by Jim for How do I keep a DIV from expanding to take up all available width?Jim2008-09-24T20:23:27Z2008-09-24T20:49:17Z<p>The <em>right</em> way is to use:</p>
<pre><code>.pictureframe {
display: inline-block;
}
</code></pre>
<p>However, Firefox 2.x doesn't support this, so you may need to use a workaround, such as using <code>display: table</code> instead for that browser:</p>
<pre><code>.pictureframe {
display: table;
display: inline-block;
}
</code></pre>
<p>Setting it to be a table has some drawbacks, depending on your situation, <code>table-cell</code> may be more appropriate.</p>
<p><strong>Edit:</strong> Floating the element also produces the same effect, this is because floating elements use the same <a href="http://www.w3.org/TR/CSS21/visudet.html#shrink-to-fit-float" rel="nofollow">shrink-to-fit</a> algorithm for determining the width.</p>
http://stackoverflow.com/questions/129534/what-are-monads/129637#1296371Answer by Jim for What are monads?Jim2008-09-24T20:16:47Z2008-09-24T20:16:47Z<p>Nomadic people, (from the Greek: νομάδες, nomádes, "those who let pasture herds"), also known as nomads, are communities of people that move with cattle from one place to another, rather than settling down in one location. They aren't renown for their coding abilities, reliable electricity being hard for them to come by, but give them a place to plug their laptops into and they'll soon be hammering away on their keyboards. In fact, early powersaving support was added to Linux by an anonymous desert wanderer, and the hobo community of Los Angeles were responsible for roaming support in FreeBSD.</p>
http://stackoverflow.com/questions/129406/why-is-there-a-gap-between-my-image-and-its-containing-box/129519#1295196Answer by Jim for Why is there a gap between my image and its containing box?Jim2008-09-24T20:01:54Z2008-09-24T20:01:54Z<p>Inline elements are vertically aligned to the baseline, not the very bottom of the containing box. This is because text needs a small amount of space underneath for descenders - the tails on letters like lowercase 'p'. So there is an imaginary line a short distance above the bottom, called the baseline, and inline elements are vertically aligned with it by default.</p>
<p>There's two ways of fixing this problem. You can either specify that the image should be vertically aligned to the bottom, or you can set it to be a block element, in which case it is no longer treated as a part of the text.</p>
<p>In addition to this, Internet Explorer has an HTML parsing bug that does not ignore trailing whitespace after a closing element, so removing this whitespace may be necessary if you are having problems with Internet Explorer compatibility.</p>
http://stackoverflow.com/questions/129360/passing-in-parameter-from-html-element-with-jquery/129439#1294394Answer by Jim for Passing in parameter from html element with jQuery.Jim2008-09-24T19:48:28Z2008-09-24T19:53:35Z<p>Event callbacks are called with an event object as the first argument, you can't pass something else in that way. This event object has a <code>target</code> property that references the element it was called for, and the <code>this</code> variable is a reference to the element the event handler was attached to. So you could do the following:</p>
<pre><code>function doSomething(event)
{
var id = $(event.target).parents(".tools").attr("id");
id = substring(id.indexOf("-")+1);
alert(id);
}
</code></pre>
<p>...or:</p>
<pre><code>function doSomething(event)
{
var id = $(this).parents(".tools").attr("id");
id = substring(id.indexOf("-")+1);
alert(id);
}
</code></pre>
http://stackoverflow.com/questions/128954/accessing-created-dom-elements/129186#1291860Answer by Jim for Accessing created DOM elementsJim2008-09-24T19:07:57Z2008-09-24T19:07:57Z<blockquote>
<p>var input1 = $( 'input[name="lp_name_1"]').clone(true);</p>
</blockquote>
<p>The code you have posted does not indicate any element with that name attribute. Immediately before this part, you create an element with an <strong>id</strong> attribute that is similar, but you would use <code>$("#lp_1")</code> to select that, and even that will fail to work until you insert it into the document, which you do not do until afterwards.</p>
http://stackoverflow.com/questions/128580/jquery-find-problem/128640#1286401Answer by Jim for jQuery $().find problemJim2008-09-24T17:47:48Z2008-09-24T18:42:40Z<p>That isn't just an ordinary element name. That's a qualified name, meaning that it is a name that specifically refers to an element type within a namespace. The element type name is 'lat', and the namespace prefix is 'geo'.</p>
<p>Right now, jQuery can't deal with namespaces very well, see <a href="http://dev.jquery.com/ticket/155" rel="nofollow">bug 155</a> for details.</p>
<p>Right now, as a workaround, you should be able to select these elements with just the local name:</p>
<pre><code>$(this).find("lat").text();
</code></pre>
<p>If you have to distinguish between element types with the same local name, then you can use <code>filter()</code>:</p>
<pre><code>var NS = "http://example.com/whatever-the-namespace-is-for-geo";
$(this).find("lat").filter(function() { return this.namespaceURI == NS; }).text();
</code></pre>
<p><strong>Edit:</strong> my mistake, I was under the impression that patch had already landed. Use Adam's suggestion for the selector, and <code>filter()</code> if you need the namespacing too:</p>
<pre><code>var NS = "http://example.com/whatever-the-namespace-is-for-geo";
$(this).find("geo\\:lat").filter(function() { return this.namespaceURI == NS; }).text();
</code></pre>
http://stackoverflow.com/questions/128923/html-whats-the-effect-of-adding-return-false-to-an-onclick-event/128966#12896618Answer by Jim for HTML: What's the effect of adding 'return false' to an onclick event ?Jim2008-09-24T18:36:17Z2008-09-24T18:36:17Z<p>The return value of an event handler determines whether or not the default browser behaviour should take place as well. In the case of clicking on links, this would be following the link, but the difference is most noticeable in form submit handlers, where you can cancel a form submission if the user has made a mistake entering the information.</p>
<p>I don't believe there is a W3C specification for this. All the ancient JavaScript interfaces like this have been given the nickname "DOM 0", and are mostly unspecified. You may have some luck reading old Netscape 2 documentation.</p>
<p>The modern way of achieving this effect is to call <code>event.preventDefault()</code>, and this is specified in <a href="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-flow-cancelation" rel="nofollow">the DOM 2 Events specification</a>.</p>
http://stackoverflow.com/questions/128529/ideas-for-a-scary-programming-halloween-costume/128583#12858313Answer by Jim for Ideas for a scary programming Halloween costume?Jim2008-09-24T17:39:08Z2008-09-24T17:39:08Z<p>If you dress up as a big blue e, you will strike fear into the heart of every web developer who sees you.</p>
http://stackoverflow.com/questions/128389/what-are-xml-namespaces-for/128451#1284511Answer by Jim for What are XML namespaces for?Jim2008-09-24T17:16:51Z2008-09-24T17:16:51Z<p>Think of them as surnames for element types. If you've got two friends, both called Bob, and you are talking about one of them, somebody might ask which Bob you are talking about. Just saying "Bob" isn't very helpful, so you say "Bob Smith", or "Bob Jones".</p>
<p>It's the same with element types. Sometimes a short name isn't enough, because different people can pick the same name. So you include a URI as a "surname", to distinguish between the different Bobs out there.</p>
http://stackoverflow.com/questions/128241/seeking-css-browser-compatibility-information-for-setting-width-using-left-and-ri/128315#1283150Answer by Jim for Seeking CSS Browser compatibility information for setting width using left and rightJim2008-09-24T16:50:26Z2008-09-24T17:01:07Z<p>If you are only concerned with horizontal spacing, then you can make all child block elements within a parent block element "inset" by a certain amount by giving the parent element padding. You can make a single child block element within a parent block element "inset" by giving the element margins. If you use the latter approach, you may need to set a border or slight padding on the parent element to prevent margin collapsing.</p>
<p>If you are concerned with vertical spacing as well, then you need to use positioning. The parent element needs to be positioned; if you don't want to move it anywhere, then use <code>position: relative</code> and don't bother setting <code>top</code> or <code>left</code>; it will remain where it is. Then you use absolute positioning on the child element, and set <code>top</code>, <code>right</code>, <code>bottom</code> and <code>left</code> relative to the edges of the parent element.</p>
<p>For example:</p>
<pre><code>#outer {
width: 10em;
height: 10em;
background: red;
position: relative;
}
#inner {
background: white;
position: absolute;
top: 1em;
left: 1em;
right: 1em;
bottom: 1em;
}
</code></pre>
<p>If you want to avoid content from expanding the width of an element, then you should use the <code>overflow</code> property, for example, <code>overflow: auto</code>.</p>
http://stackoverflow.com/questions/123920/automatic-newlines-and-formatting-for-blogging-software/123944#1239442Answer by Jim for Automatic newlines and formatting for blogging softwareJim2008-09-23T21:17:38Z2008-09-23T21:17:38Z<p>Replace <code>\n\n</code> with <code></p><p></code> and then replace <code>\n</code> with <code><br></code>.</p>
<p>PS: Pirate day was last week :).</p>
http://stackoverflow.com/questions/122919/jquery-onclick-execution/123091#1230919Answer by Jim for jQuery onClick executionJim2008-09-23T19:06:00Z2008-09-23T19:06:00Z<p>Just use a global busy flag. When you enter your click handler, check it, and only proceed if it's false. Immediately set it to true, and then set it back to false when the animation ends. JavaScript is single-threaded, so there is no race condition to worry about.</p>
<pre><code>var busy = false;
$("...").onclick(function() {
if (busy) return false;
busy = true;
$("...").animate(..., ..., ..., function() {
busy= false;
});
return false;
});
</code></pre>
http://stackoverflow.com/questions/123000/opening-links-in-the-same-window-or-in-a-new-tab/123044#1230445Answer by Jim for opening links in the same window or in a new (tab)Jim2008-09-23T18:59:16Z2008-09-23T18:59:16Z<p>If you prefer closing a tab/window over hitting the back button, then by all means, click links with your middle mouse button. But please don't force your surfing preferences on others. Tabs don't change this principle in the slightest.</p>
http://stackoverflow.com/questions/122752/what-is-the-recommended-toolchain-for-formatting-xml-docbook/122791#1227911Answer by Jim for What is the recommended toolchain for formatting XML DocBook?Jim2008-09-23T18:24:11Z2008-09-23T18:24:11Z<p>A popular approach is to use <a href="http://docbook.sourceforge.net/" rel="nofollow">DocBook XSL Stylesheets</a>.</p>
http://stackoverflow.com/questions/122216/php-unserialize-keeps-throwing-same-error-over-100-times-part-2/122244#1222442Answer by Jim for PHP unserialize keeps throwing same error over 100 times part 2Jim2008-09-23T16:48:04Z2008-09-23T16:48:04Z<p>Usually, when you get an error message, you can figure out a great deal by simply searching the web for that very message. For example, when you put <a href="http://www.google.co.uk/search?q=Node+no+longer+exists" rel="nofollow">Node no longer exists</a> into Google, you end up with <a href="http://www.rhinocerus.net/node/16347" rel="nofollow">a concise explanation of why this is happening, along with a solution</a>, as the very first hit.</p>
http://stackoverflow.com/questions/122097/apache-mod-rewrite-primers/122153#1221531Answer by Jim for Apache Mod-Rewrite Primers?Jim2008-09-23T16:32:09Z2008-09-23T16:32:09Z<p>What's wrong with <a href="http://httpd.apache.org/docs/2.2/rewrite/rewrite_intro.html" rel="nofollow">the manual</a>?</p>
http://stackoverflow.com/questions/143486/unobtrusive-javascript-script-at-the-top-or-the-bottom-of-the-html-code/143508#143508Comment by Jim on Unobtrusive javascript : <script> at the top or the bottom of the html code ?Jim2008-09-28T16:46:49Z2008-09-28T16:46:49ZNo, I'm not being sarcastic. Take a look at the question. It specifies HTML, not XHTML. It's true that valid XHTML requires these things, but valid HTML does not. There is absolutely nothing wrong with choosing HTML and omitting the closing tags for these element types.http://stackoverflow.com/questions/143486/unobtrusive-javascript-script-at-the-top-or-the-bottom-of-the-html-code/143508#143508Comment by Jim on Unobtrusive javascript : <script> at the top or the bottom of the html code ?Jim2008-09-27T15:34:53Z2008-09-27T15:34:53ZYou know, if you're really concerned with speed then there will be no </body> or </html> - the closing tags for these element types are optional. Put the <script> at the very end, and forget about using </body> and </html> altogether.http://stackoverflow.com/questions/141427/gracefully-closing-a-frame-toolbar-around-an-iframeComment by Jim on Gracefully closing a frame (toolbar) around an iframeJim2008-09-27T02:10:22Z2008-09-27T02:10:22ZI'm not sure if I understand correctly. You are in control of the main document, you are displaying external documents in an iframe, and you want the main document to load whatever's in the iframe as the new main document? And you don't have any cooperation from the documents in the iframes?http://stackoverflow.com/questions/120926/why-does-python-pep-8-strongly-recommend-spaces-over-tabs-for-indentation/120956#120956Comment by Jim on Why does Python pep-8 strongly recommend spaces over tabs for indentation?Jim2008-09-26T00:55:34Z2008-09-26T00:55:34ZHave you even <i>read</i> PEP-8? It <i>doesn't</i> forbid tabs. And don't tell me what confuses me and my editor. You know what, I give up. You are clearly attempting to push your own preference, and then, when you are questioned on it, passing the buck.http://stackoverflow.com/questions/120926/why-does-python-pep-8-strongly-recommend-spaces-over-tabs-for-indentation/120956#120956Comment by Jim on Why does Python pep-8 strongly recommend spaces over tabs for indentation?Jim2008-09-25T21:34:09Z2008-09-25T21:34:09ZSo in other words, you're saying "don't use tabs", and then blaming everybody else except you when you realise you can't back that statement up?http://stackoverflow.com/questions/131653/how-do-i-embed-an-ahover-rule-into-a-style-attribute-in-the-middle-of-a-d/131660#131660Comment by Jim on How do I embed an "a:hover{...}" rule into a style attribute in the middle of a document?Jim2008-09-25T15:26:47Z2008-09-25T15:26:47ZBrowsers typically implement CSS features that are in a further development state, e.g. opacity is from CSS Color (Last Call) and Media Queries is a Candidate Recommendation.http://stackoverflow.com/questions/123920/automatic-newlines-and-formatting-for-blogging-software/123944#123944Comment by Jim on Automatic newlines and formatting for blogging softwareJim2008-09-25T15:22:42Z2008-09-25T15:22:42ZYes, but given that he's talking about user comments and blog posts, that's not an unreasonable assumption.http://stackoverflow.com/questions/131653/how-do-i-embed-an-ahover-rule-into-a-style-attribute-in-the-middle-of-a-d/131660#131660Comment by Jim on How do I embed an "a:hover{...}" rule into a style attribute in the middle of a document?Jim2008-09-25T06:12:50Z2008-09-25T06:12:50ZThat's a very low priority CSS 3 working draft that hasn't been updated in six years. From the spec: 'It is inappropriate to use W3C Working Drafts as reference material or to cite them as other than "work in progress." 'http://stackoverflow.com/questions/130564/i-need-my-html-tables-body-to-scroll-and-its-head-to-stay-put/130577#130577Comment by Jim on I need my html table's body to scroll and its head to stay putJim2008-09-24T23:45:04Z2008-09-24T23:45:04ZThere's a lot of CSS hacks in there. It should be trivial to get working in IE7.http://stackoverflow.com/questions/129360/passing-in-parameter-from-html-element-with-jquery/129430#129430Comment by Jim on Passing in parameter from html element with jQuery.Jim2008-09-24T19:49:18Z2008-09-24T19:49:18ZCheck the HTML, it's actually the grandparent that has the id attribute, not the parent.http://stackoverflow.com/questions/128954/accessing-created-dom-elements/129199#129199Comment by Jim on Accessing created DOM elementsJim2008-09-24T19:11:56Z2008-09-24T19:11:56ZThat's xPath syntax, it's unnecessary and hasn't worked in jQuery for a long time.http://stackoverflow.com/questions/128923/html-whats-the-effect-of-adding-return-false-to-an-onclick-event/128935#128935Comment by Jim on HTML: What's the effect of adding 'return false' to an onclick event ?Jim2008-09-24T18:49:33Z2008-09-24T18:49:33ZThe location only becomes the return value of someFunc if it is href="javascript:someFunc()", this is not the case for event handlers.http://stackoverflow.com/questions/123092/underused-features-of-html/127758#127758Comment by Jim on Underused Features of HTMLJim2008-09-24T18:45:42Z2008-09-24T18:45:42ZNice trick, but <div class="code">? Please don't fall prey to "divitis". A perfectly reasonable <code> element type exists.http://stackoverflow.com/questions/121066/how-can-i-get-jquery-unclick-and-unbind-to-work/121142#121142Comment by Jim on How can I get jQuery unclick() and unbind() to work?Jim2008-09-24T18:03:50Z2008-09-24T18:03:50ZThanks for the info. I dug a little deeper, and found that unclick() was removed in jQuery 1.1.http://stackoverflow.com/questions/128241/seeking-css-browser-compatibility-information-for-setting-width-using-left-and-ri/128253#128253Comment by Jim on Seeking CSS Browser compatibility information for setting width using left and rightJim2008-09-24T16:51:51Z2008-09-24T16:51:51ZHeight only applies if you have set an absolute height on an ancestor element and a height on all intermediate ancestors.