User cic - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T11:16:36Zhttp://stackoverflow.com/feeds/user/4771http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1213007/accessibility-wcag-2-0-do-we-need-labels-in-table-cells/1230352#12303521Answer by cic for Accessibility (WCAG 2.0) do we NEED labels in table cellscic2009-08-04T23:06:12Z2009-08-04T23:06:12Z<p>As you stated in the comments: yes, a <code>title</code> attribute should be enough. In H65 (and maybe others) under Resources there is a link to a (very!) useful article about forms and WCAG 2 called <a href="http://www.usability.com.au/resources/wcag2/" rel="nofollow">Accessible Forms using WCAG 2.0</a>, where they provide some examples -- and tests them in some screen readers. I think the section "Form controls in data tables" in that article should be enough "proof" that the <code>title</code> attribute is enough.</p>
http://stackoverflow.com/questions/1208217/how-to-test-websites-in-ie-6-when-running-windows-7/1208227#12082271Answer by cic for How to test websites in IE 6 when running Windows 7?cic2009-07-30T17:53:57Z2009-07-30T17:53:57Z<p>I think <a href="http://blogs.msdn.com/ie/archive/2006/11/30/ie6-and-ie7-running-on-a-single-machine.aspx" rel="nofollow">IE6 and IE7 Running on a Single Machine</a> is the recommended way.</p>
http://stackoverflow.com/questions/1206321/what-is-the-best-practice-for-resizing-text-with-javascript/1206436#12064360Answer by cic for What is the "best practice" for resizing text with Javascript?cic2009-07-30T12:56:17Z2009-07-30T12:56:17Z<blockquote>
<p>What is the "best practice" (accessibility/usability-wise) for resizing text with Javascript?</p>
</blockquote>
<p>"Web Accessibility Gone Wild" <a href="http://www.webaim.org/articles/gonewild/#options" rel="nofollow">sums it up</a> quite nicely imho:</p>
<blockquote>
<p>If your default font size may be too small for site visitors, then make it an adequate size.</p>
</blockquote>
<p>and,</p>
<blockquote>
<p>All browsers allow the sizing or scaling of the page content - why duplicate this browser functionality?</p>
</blockquote>
<p>Also, <a href="http://www.w3.org/QA/Tips/font-size" rel="nofollow">Care With Font Size</a>:</p>
<blockquote>
<p>The problem here is a basic usability and accessibility issue: a good design should look good without requiring the user to enlarge or reduce the text size.</p>
</blockquote>
<p>However, if you have a <em>valid</em> reason - feel free to ignore this.</p>
http://stackoverflow.com/questions/1102694/javascript-object-literal-and-array-problem/1102827#11028271Answer by cic for Javascript Object Literal and Array Problemcic2009-07-09T09:36:38Z2009-07-09T09:36:38Z<p><a href="http://stackoverflow.com/questions/1102694/javascript-object-literal-and-array-problem/1102707#1102707">Egil Hansen's answer</a> is probably better, but you could <a href="http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object">clone the object</a> as an alternative solution:</p>
<pre><code>// Some function to clone objects (e.g. using jQuery)
function clone(o) { return $.extend(true, {}, o); }
oCoord = { x: null, y: null };
var aStack = [];
oCoord.x = 726;
oCoord.y = 52;
aStack.push( clone(oCoord) );
oCoord.x = 76;
oCoord.y = 532;
aStack.push( clone(oCoord) );
oCoord.x = 716;
oCoord.y = 529;
aStack.push( clone(oCoord) );
// console.log(aStack) =>
// [Object x=726 y=52, Object x=76 y=532, Object x=716 y=529]
</code></pre>
http://stackoverflow.com/questions/1099971/how-to-turn-a-very-long-column-into-multiple-shorter-ones/1101114#11011141Answer by cic for How to turn a very long column into multiple shorter ones?cic2009-07-08T23:38:11Z2009-07-08T23:38:11Z<p>Ignoring:</p>
<blockquote>
<p>Also be sure to keep related items in the same column (ie. if dt 7 is col x, so should dd 7).</p>
</blockquote>
<p>one possible solution could be <a href="http://www.w3.org/TR/css3-multicol/#cc" rel="nofollow"><code>column-count</code></a>, e.g:</p>
<p><a href="http://pici.se/pictures/vekPcSkFE.png" rel="nofollow"><img src="http://pici.se/pictures/small/vekPcSkFE.png" alt="" title="" /></a></p>
<p>However, it's a part of CSS 3 so <a href="http://en.wikipedia.org/wiki/Template:Reflist#Browser%5Fsupport" rel="nofollow">browser support</a> ... you know. :(</p>
http://stackoverflow.com/questions/920324/dynamic-add-row-javascript-function-works-in-firefox-but-not-in-ie/926686#9266860Answer by cic for Dynamic add row javascript function works in Firefox but not in IEcic2009-05-29T15:45:19Z2009-05-29T15:45:19Z<pre><code>e1.setAttribute("onclick","javascript:SelectSubCat(this);");
</code></pre>
<p>I think this line may be the cause. Look at the following (the first row uses <code>"onchange"</code>, but the rows added with JS uses <code>"onclick"</code> …):</p>
<pre><code>document.getElementById("Category[0]").onchange // the first row
>> function()
</code></pre>
<p>but,</p>
<pre><code>document.getElementById("Category[1]").onclick // the second row
>> "SelectSubCat(this);"
</code></pre>
<p>I.e. Internet Explorer sets <code>onclick</code> to a string! (Btw, the recommended way of adding a listener is to use <a href="https://developer.mozilla.org/En/DOM:element.addEventListener" rel="nofollow"><code>addEventListener</code></a> (but IE ignores that and uses its own <a href="http://msdn.microsoft.com/en-us/library/ms536343(VS.85,loband).aspx" rel="nofollow"><code>attachEvent</code></a>!).) Anyway, there is a DOM 0 way of doing this that works (afaic) in both IE and Fx: <code>element.onevent</code>. You don't have to pass <code>this</code> to the function when you use this method, just replace the previous line with (<code>this</code> = the clicked element, when the function is called):</p>
<pre><code>e1.onchange = SelectSubCat;
</code></pre>
<p>But, you have to change how the first row calls <code>SelectSubCat</code> and use <code>this</code> instead of <code>control_value</code> in the function.</p>
<p>One last thing, a similar line:</p>
<pre><code>el.setAttribute("onblur","javascript:check_numeric(this)");
</code></pre>
<p>You have to do the same thing here.</p>
<p>You should probably listen to all people <a href="http://stackoverflow.com/questions/920324/dynamic-add-row-javascript-function-works-in-firefox-but-not-in-ie/920368#920368">shouting at you</a> how terrible your functions are (maybe some arrays may help to clean up some parts of the code). And (the last "and" :), this page will not work without JS and is therefore broken.</p>
<p>(For more info on events in JS see <a href="http://www.quirksmode.org/js/introevents.html" rel="nofollow">Introduction to Events</a>.)</p>
http://stackoverflow.com/questions/590163/how-to-get-all-options-of-a-select-using-jquery/590394#5903941Answer by cic for How to get all options of a select using Jquery?cic2009-02-26T12:37:53Z2009-02-27T16:52:37Z<p>Some answers uses <code>each</code>, <code>map</code> is a better alternative here imho:</p>
<pre><code>$("select#example").children().map(function() {return $(this).val();}).get();
</code></pre>
<p>There are (at least) two <code>map</code> functions in jQuery, Thomas Petersen's answer uses "Utilities/jQuery.map"; this answer uses "Traversing/map" (and therefore a little cleaner code).</p>
<p>Edit, correction: It depends on what you are going to do with the values. If you, let's say, want to return the values from a function, <code>map</code> is probably the better alternative. But if you are going to use the values directly you probably want <code>each</code>.</p>
http://stackoverflow.com/questions/494235/how-do-you-determine-media-type-in-javascript/497951#4979511Answer by cic for How do you determine media type in Javascript?cic2009-01-31T01:21:44Z2009-01-31T01:21:44Z<blockquote>
<p>[..], Prototype won't allow an element to be switched to visible if it was declared invisible (<code>display: none</code>) with non-inline CSS. This is something that I haven't understood and am constantly irritated by. Anyone that can provide any insight into it gets a big upvote from me.</p>
</blockquote>
<p>You probably already seen this but the documentation for e.g. <a href="http://www.prototypejs.org/api/element/show" rel="nofollow"><code>show</code></a> (there are other related functions with the same note) states that:</p>
<blockquote>
<p><code>Element.show</code> <em>cannot</em> display elements hidden via CSS stylesheets. Note that this is not a Prototype limitation but a consequence of how the CSS <code>display</code> property works.</p>
</blockquote>
<p>So, it's a known problem and they blame CSS. However, consider the following document (I haven't used Prototype before, so I'm not sure if this is the recommended way to wait for the DOM to load, but it seems to work):</p>
<pre><code><!doctype html>
<script src="prototype.js"></script>
<script>
document.observe("dom:loaded", function() {
$("victim").show();
});
</script>
<style>
p#victim {display:none;}
</style>
<p id="victim">Hello world!
</code></pre>
<p>As you already know, this will not work. Why? Well, how would Prototype know what to "reset" the <code>display</code> property to when you tell <code>p#victim</code> to <code>show</code> itself? (In other words: how can it find out what should have been the value of <code>display</code> if the <code>display: none</code> wasn't present in the ruleset with the <code>p#victim</code> selector.) The answer is simple: it can't. (Think about it for a second. What if another ruleset would modify the value of <code>display</code> if the <code>display: none</code> wasn't present in our ruleset with the <code>p#victim</code> selector? (I.e. we can't assume that e.g. <code>p</code> always should be set to <code>block</code>, other rulesets may have changed that value.) We can't remove the <code>display</code> property from a ruleset in an style sheet, and we can't remove the entire connection between the element and the ruleset because it may contain other properties and so on (even if it would be possible it would be, imho, non-obvious to find <em>which</em> ruleset to do this with). Of course, we could go on and on with this, but afaik there is no known solution to this problem.)</p>
<p>Then why does the inline alternative work? First, lets look at how <code>show</code> is implemented:</p>
<pre><code>show: function(element) {
element = $(element);
element.style.display = ''; // <-- the important line
return element;
}
</code></pre>
<p>Afaict the only important thing this function does is to set <code>element.style.display</code> to an empty string (<code>''</code>), which "removes" <code>display</code> from <code>style</code>. Great! But what does that mean? Why would we want to remove it?! First we have to find out what <code>element.style</code> actually represents and modifies when we modifies its values.</p>
<p>The MDC documentation for <a href="https://developer.mozilla.org/en/DOM/element.style" rel="nofollow"><code>element.style</code></a> states that:</p>
<blockquote>
<p>Returns an object that represents the element's <code>style</code> attribute. </p>
</blockquote>
<p>Note the last word: <em>attribute</em>. <code>element.style</code> ≠ the current "calculated" style for the element, it's just an list of the properties in the <code>style</code> attribute (see MDC for a longer/better explanation).</p>
<p>Consider the following document:</p>
<pre><code><!doctype html>
<script src="prototype.js"></script>
<script>
document.observe("dom:loaded", function() {
$("victim").show();
});
</script>
<p id="victim" style="display:none;">Hello world!
</code></pre>
<p><code>style="display:none;"</code> hides <code>p#victim</code> but when the DOM finish loading Prototype will change it to <code>style=""</code>, and the browser will recalculate the value for the <code>display</code> property (the value from the browser's default style sheet in this case).</p>
<p><em>But</em>, consider the following document:</p>
<pre><code><!doctype html>
<script src="jquery.js"></script>
<script>
$(document).ready(function(){
$("#victim").show();
});
</script>
<style>
p#victim {display:none;}
</style>
<p id="victim">Hello world!
</code></pre>
<p>jQuery handles the style sheets stuff correctly, in this case anyway! This isn't as simple to explain as the Prototype solution and there are to many layers of awesomeness for me to read through right now, and there are many cases where jQuery fails to calculate the correct value for <code>display</code> . (Quick last note: Firebug..., but I guess it uses some Firefox exclusive stuff or something.)</p>
http://stackoverflow.com/questions/483741/how-to-determine-which-html-page-element-has-focus/483825#4838251Answer by cic for How to determine which html page element has focus?cic2009-01-27T15:20:55Z2009-01-27T15:39:53Z<p>Maybe <a href="https://developer.mozilla.org/En/DOM:element.activeElement" rel="nofollow"><code>document.activeElement</code></a>, don't know about browser support tho. Seems to work in Firefox and IE7, but I guess you have to try it in Opera and so on too.</p>
http://stackoverflow.com/questions/403754/how-are-operating-systems-made/403917#4039170Answer by cic for How are Operating Systems "Made"?cic2008-12-31T19:53:09Z2008-12-31T19:53:09Z<p>Try <a href="http://duartes.org/gustavo/blog/post/how-computers-boot-up" rel="nofollow">How Computers Boot Up</a>, <a href="http://duartes.org/gustavo/blog/post/kernel-boot-process" rel="nofollow">The Kernel Boot Process</a> and other related articles <a href="http://duartes.org/gustavo/blog/" rel="nofollow">from the same blog</a> for a <em>short overview</em> of what a computer does when it boots. </p>
<p>What a computer does when its start is heavily dependent (maybe obvious?) on <a href="http://en.wikipedia.org/wiki/CPU_design" rel="nofollow">the CPU design</a> and other "low-level stuff"; therefore it's kind of difficult to anticipate what <em>your</em> computer does when it boots.</p>
http://stackoverflow.com/questions/328834/c-delete-vs-free-and-performance/328909#3289094Answer by cic for C++: delete vs. free and performancecic2008-11-30T14:40:08Z2008-11-30T15:03:48Z<p>Question one: nothing will happen.</p>
<p>From the current draft of ISO/IEC 14882 (or: C++):</p>
<blockquote>
<h2>20.8.15 C Library [c.malloc]</h2>
<p>The contents [of <code><cstdlib></code>, that is: where <code>free</code> lives,] are the same as the Standard C library [(see intro.refs for that)] header <code><stdlib.h></code>, with the following changes: [nothing that effects this answer].</p>
</blockquote>
<p>So, from ISO/IEC 9899:1999 (or: C):</p>
<blockquote>
<h2>7.20.3.2 The <code>free</code> function</h2>
<p>If [the] <code>ptr</code> [parameter] is a null pointer, <strong>no action occurs</strong>.</p>
</blockquote>
<p>From the C++ standard again, for information about <code>delete</code> this time:</p>
<blockquote>
<h2>3.7.4.2 Deallocation functions [basic.stc.dynamic.deallocation]</h2>
<p>The value of the first argument supplied to a deallocation function may be a null pointer value; if so, and if the deallocation function is one supplied in the standard library, <strong>the call has no effect</strong>.</p>
</blockquote>
<p>See also:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/240212/what-is-the-difference-between-newdelete-and-mallocfree">What is the difference between <code>new</code>/<code>delete</code> and <code>malloc</code>/<code>free</code>?</a></li>
<li><a href="http://stackoverflow.com/questions/135474/what-happens-when-you-try-to-free-already-freed-memory-in-c">What happens when you try to <code>free()</code> already <code>free</code>d memory in c?</a></li>
</ul>
http://stackoverflow.com/questions/292646/identifying-list-item-index-which-is-a-better-approach/292702#2927021Answer by cic for Identifying list item index - which is a better approach? cic2008-11-15T16:00:12Z2008-11-15T23:51:30Z<p>Maybe something similar to:</p>
<pre><code>var lis = document.getElementById("list").getElementsByTagName("li");
for (var i = 0, li; li = lis[i]; ++i) {
li.addEventListener("click", (function(pos) {
return function() {
alert(pos);
};
})(i), false);
}
</code></pre>
<p>Or, with some inspiration from J cs answer and <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/dom.html#embedding-custom-non-visible-data" rel="nofollow">custom data attributes</a>:</p>
<pre><code>var lis = document.getElementById("list").getElementsByTagName("li");
for (var i = 0, li; li = lis[i]; ++i) {
li.setAttribute("data-index", i); // Or whatever value you want...
li.addEventListener("click", function() {
alert(this.getAttribute("data-index"));
}, false);
}
</code></pre>
http://stackoverflow.com/questions/255470/what-are-the-different-doctypes-in-html-and-what-do-they-mean/255747#2557474Answer by cic for What are the different doctypes in html and what do they mean?cic2008-11-01T16:29:39Z2008-11-01T17:25:50Z<p>Browsers <a href="http://wiki.whatwg.org/wiki/FAQ#Syntax_issues" rel="nofollow">don't care</a> what doctype you use (well, almost true), they use it for one thing and one thing only: to decide which <em>render mode</em> to use. See e.g. the <a href="https://developer.mozilla.org/en/Mozilla%27s_DOCTYPE_sniffing" rel="nofollow">Fx</a> or <a href="http://www.opera.com/docs/specs/doctype/" rel="nofollow">Opera documentation</a> for real-world examples on what algorithms is used to decide which mode to use (I guess there is some documentation for IE buried somewhere in MSDN too ... <a href="http://msdn.microsoft.com/en-us/library/ms535242(VS.85).aspx" rel="nofollow">This may be the correct page</a>, I don't know, sorry).</p>
<p>There are however two major modes in most browsers (some browsers have an <a href="https://developer.mozilla.org/en/Gecko%27s_%22Almost_Standards%22_Mode" rel="nofollow">almost standards mode</a> too):</p>
<ul>
<li><strong>quirks mode</strong> (used when no "correct" doctype is found, "correct" from the browsers point of view): try to render the document as some old version of IE would do (one of the most important differences, i.e. affects rendering the most, is that some browsers exploits the <a href="http://en.wikipedia.org/wiki/Internet_Explorer_box_model_bug" rel="nofollow">IE box model bug</a> in this mode),</li>
<li>and <strong>standard mode</strong> (used when the browser found a doctype it considers correct): try to do as the standards says.</li>
</ul>
<p>You can use (the non-standard) <a href="https://developer.mozilla.org/En/DOM/Document.compatMode" rel="nofollow"><code>document.compatMode</code></a> property in previous mentioned browsers to check which mode that was used to render the current document.</p>
<p>(Note on XHTML: I assumed that you serve you documents as HTML (<code>text/html</code>), if you serve you document as XHTML (probably <code>application/xhtml+xml</code>) most browser jumps into standard mode directly and don't care about the doctype at all AFAIK.)</p>
<p>BTW: the recommendation (or, what looked like a recommendation) in the other answer is broken, the <a href="http://dictionary.reference.com/search?q=transitional" rel="nofollow">transitional</a> DTD should not be used on new documents. Always use strict (the term "strict" is kind of misleading, should be "default" or something else non-scary), period:</p>
<blockquote>
<p>Authors should use the Strict DTD when possible, but may use the Transitional DTD when support for presentation attribute and elements is required. -- <a href="http://www.w3.org/TR/REC-html40/sgml/loosedtd.html" rel="nofollow">HTML 4.01: 22 Transitional Document Type Definition</a>.</p>
<p>We recommend that authors write documents that conform to the strict DTD rather than the other DTDs defined by this specification. -- <a href="http://www.w3.org/TR/REC-html40/conform.html#h-4.1" rel="nofollow">HTML 4.01: 4 Conformance: requirements and recommendations</a></p>
</blockquote>
<p>And there are many blog post about this, e.g. <a href="http://www.456bereastreet.com/archive/200609/no_more_transitional_doctypes_please/" rel="nofollow">no more Transitional DOCTYPEs, please</a> (from 2006, but <em>some</em>, obviously, still have problems with this :).</p>
<p>This post started out with pointing out that browsers don't care what you choose, and then developed into a rant about how to choose the correct DTD, interesting ... But if you are going to spend(/waste?) time and energy to choose a DTD you might as well choose the correct one (from a HTML 4.01 standard perspective that is).</p>
<p><em>Or</em>, you can ignore all this and use the following instead, <a href="http://blog.whatwg.org/two-thousand-twenty-two" rel="nofollow">soon</a> <a href="http://ishtml5readyyet.com" rel="nofollow">anyway</a>:</p>
<pre><code><!doctype html>
</code></pre>
<p>(<a href="http://stackoverflow.com/questions/5629/any-reason-not-to-start-using-the-html-5-doctype#14192" rel="nofollow">This answer</a> to "any reason not to start using the HTML 5 doctype?" was kind of related to the last part.)</p>
http://stackoverflow.com/questions/237104/javascript-array-containsobj/237148#2371483Answer by cic for Javascript - array.contains(obj)cic2008-10-25T22:49:53Z2008-10-25T22:49:53Z<p><a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Array/indexOf" rel="nofollow"><code>indexOf</code></a> maybe, but it's a "JavaScript extension to the ECMA-262 standard; as such it may not be present in other implementations of the standard."</p>
<p>Example:</p>
<pre><code>[1, 2, 3].indexOf(1) => 0
["foo", "bar", "baz"].indexOf("bar") => 1
[1, 2, 3].indexOf(4) => -1
</code></pre>
<p>AFAICS <a href="http://msdn.microsoft.com/en-us/library/k4h76zbx(VS.85).aspx" rel="nofollow">Microsoft does <em>not</em> offer some kind of alternative</a> to this, but you can add similar functionality to arrays in IE (and other browsers that don't support <code>indexOf</code>) if you want to, as a <a href="http://google.com/search?q=indexof+internet+explorer" rel="nofollow">quick google search reveals</a> (e.g. <a href="http://soledadpenades.com/2007/05/17/arrayindexof-in-internet-explorer/" rel="nofollow">this one</a>).</p>
http://stackoverflow.com/questions/205853/why-would-a-javascript-variable-start-with-a-dollar-sign/205974#20597410Answer by cic for Why would a javascript variable start with a dollar sign?cic2008-10-15T18:59:03Z2008-10-15T19:04:34Z<p>AFAICS it's not recommended to use because the <a href="http://www.ecma-international.org/publications/standards/Ecma-262.htm" rel="nofollow">ECMAScript specification</a> states that:</p>
<blockquote>
<p>The dollar sign (<code>$</code>) and the underscore (<code>_</code>) are permitted anywhere in an identifier. The dollar sign is intended for use only in mechanically generated code.</p>
</blockquote>
http://stackoverflow.com/questions/195840/what-are-the-main-differences-between-xhtml-and-html/195945#1959451Answer by cic for What are the main differences between XHTML and HTML?cic2008-10-12T20:03:28Z2008-10-12T20:03:28Z<p>Summary: use HTML.</p>
<p>There are <a href="http://wiki.whatwg.org/wiki/HTML_vs._XHTML" rel="nofollow">many differences</a>, and many smart people (that know what they are talking about :D) <a href="http://www.sitepoint.com/forums/showthread.php?t=393445" rel="nofollow">have</a> <a href="http://hixie.ch/advocacy/xhtml" rel="nofollow">already</a> <a href="http://webkit.org/blog/68/understanding-html-xml-and-xhtml/" rel="nofollow">summed up</a> most of the pros and cons.</p>
http://stackoverflow.com/questions/123092/underused-features-of-html/123505#1235055Answer by cic for Underused Features of HTMLcic2008-09-23T20:05:40Z2008-09-23T20:05:40Z<p>The word "element" is underused, even the <a href="http://www.w3.org/TR/REC-html40/intro/sgmltut.html#h-3.2.1" rel="nofollow">HTML 4.01 specification</a> states this:</p>
<blockquote>
<p>Elements are not tags. Some people refer to elements as tags (e.g., "the <code>P</code> tag"). Remember that the element is one thing, and the tag (be it start or end tag) is another. For instance, the <code>HEAD</code> element is always present, even though both start and end <code>HEAD</code> tags may be missing in the markup.</p>
</blockquote>
<p>See also: <a href="http://lachy.id.au/log/2004/12/html-tags" rel="nofollow">Lachy’s Log: HTML Tags</a>.</p>
http://stackoverflow.com/questions/109371/what-is-the-fastest-way-to-learn-latex-basics/109912#1099121Answer by cic for What is the fastest way to learn LaTeX basics?cic2008-09-21T01:12:13Z2008-09-21T01:12:13Z<p>Try <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html" rel="nofollow">TeX Frequently Asked Questions</a>.</p>
http://stackoverflow.com/questions/108522/indenting-styles/108696#1086960Answer by cic for Indenting stylescic2008-09-20T16:44:11Z2008-09-20T16:44:11Z<p><a href="http://lxr.linux.no/source/Documentation/CodingStyle" rel="nofollow">Linux kernel coding style</a> makes sense.</p>
<p>Example:</p>
<pre><code>if (x == y) {
..
} else if (x > y) {
...
} else {
....
}
</code></pre>
http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60452#604527Answer by cic for The single most useful Emacs featurecic2008-09-13T10:11:46Z2008-09-13T10:11:46Z<p>Flyspell-mode! "Flyspell enables on-the-fly spell checking in Emacs by the means of a minor mode."</p>
<p>Can be configured to check LaTeX documents and comments in some other languages (flyspell-prog-mode).</p>
http://stackoverflow.com/questions/47487/create-a-variable-in-css-file-for-use-within-that-css-file/47631#476310Answer by cic for Create a variable in .CSS file for use within that .CSS filecic2008-09-06T16:27:33Z2008-09-06T16:27:33Z<p>See: <a href="http://www.w3.org/People/Bos/CSS-variables" rel="nofollow">Why “variables” in CSS are harmful</a>.</p>
http://stackoverflow.com/questions/46483/htmlentities-vs-htmlspecialchars/46523#465230Answer by cic for htmlentities vs htmlspecialcharscic2008-09-05T18:39:34Z2008-09-05T18:39:34Z<p>You probably want to use some Unicode character encoding, for example utf-8, and htmlspecialchars. Because there is <em>no</em> need to generate "HTML entities" for "all [the] applicable characters" (that is what htmlentities does according to the documentation) if it's already in your character set.</p>
http://stackoverflow.com/questions/43253/measuring-exception-handling-overhead-in-c/46113#461132Answer by cic for Measuring exception handling overhead in C++cic2008-09-05T15:55:23Z2008-09-05T15:55:23Z<p><a href="http://blogs.msdn.com/freik/" rel="nofollow">Kevin Frei</a> talks about exception handling performance cost in his speech "<a href="http://www.nwcpp.org/Meetings/2006/10.html" rel="nofollow">The Cost of C++ Exception Handling on Windows</a>". (Under "Summary & Conclusions" there is one list item that says "[Exception handling performance cost is] not always measurable".)</p>
http://stackoverflow.com/questions/1848585/what-is-the-best-way-for-two-programs-on-the-same-machine-to-communicate-with-eac/1848610#1848610Comment by cic on What is the best way for two programs on the same machine to communicate with each othercic2009-12-04T18:00:16Z2009-12-04T18:00:16ZPlease replace the "tinyurl" address with the actual address.http://stackoverflow.com/questions/1190953/common-mistakes-for-css-designers-to-avoid/1190978#1190978Comment by cic on Common mistakes for CSS-designers to avoid?cic2009-08-08T15:36:35Z2009-08-08T15:36:35ZOk, fixed now, my previous comment is outdated. :-)http://stackoverflow.com/questions/1229856/what-is-the-best-way-to-style-a-list-of-checkboxes/1229889#1229889Comment by cic on What is the best way to style a list of checkboxescic2009-08-04T22:12:59Z2009-08-04T22:12:59Z@MarcS: see You's answer for proper markup. Replace the <code>div</code> with a <code>fieldset</code>, replace the <code>label</code> with a <code>legend</code> and add some <code>label</code>s to all `input`s. <code>legend</code> (or rather: <code>fieldset</code>) defines a one-to-may relationship, and <code>lable</code> defines a one-to-one relationship.http://stackoverflow.com/questions/1229856/what-is-the-best-way-to-style-a-list-of-checkboxes/1229950#1229950Comment by cic on What is the best way to style a list of checkboxescic2009-08-04T22:05:54Z2009-08-04T22:05:54Z+1 for using <code>fieldset</code> and mentioning <code>legend</code>. "Do not use tables for layout" do not mean "use any element you want except table", :).http://stackoverflow.com/questions/1190953/common-mistakes-for-css-designers-to-avoid/1191007#1191007Comment by cic on Common mistakes for CSS-designers to avoid?cic2009-08-02T12:20:15Z2009-08-02T12:20:15Z@Koper: No it's not?http://stackoverflow.com/questions/1190953/common-mistakes-for-css-designers-to-avoid/1190978#1190978Comment by cic on Common mistakes for CSS-designers to avoid?cic2009-08-02T12:14:13Z2009-08-02T12:14:13ZSorry, but this is incorrect. Try it/read the specification. (<code>0, 0, 0, 3</code> and <code>0, 0, 1, 1</code>.)http://stackoverflow.com/questions/1208217/how-to-test-websites-in-ie-6-when-running-windows-7/1208227#1208227Comment by cic on How to test websites in IE 6 when running Windows 7?cic2009-07-30T17:58:50Z2009-07-30T17:58:50ZAwwwww--, is't not negative any more. ;_;http://stackoverflow.com/questions/1208217/how-to-test-websites-in-ie-6-when-running-windows-7/1208227#1208227Comment by cic on How to test websites in IE 6 when running Windows 7?cic2009-07-30T17:57:53Z2009-07-30T17:57:53ZI was going to delete this because John Sheehan answered a few seconds earlier then me, but now I have to keep this: My first answer with a negative score! \o/http://stackoverflow.com/questions/1206321/what-is-the-best-practice-for-resizing-text-with-javascript/1206436#1206436Comment by cic on What is the "best practice" for resizing text with Javascript?cic2009-07-30T13:13:42Z2009-07-30T13:13:42Z@Dan: sorry, I'm not sure I understand what you are trying to say, could you please clarify? Do you mean something like this: <a href="http://www.sitepoint.com/forums/showthread.php?t=463591" rel="nofollow">sitepoint.com/forums/showthread.php?t=463591/…</a>?http://stackoverflow.com/questions/801317/why-is-json-importantComment by cic on Why is JSON important?cic2009-07-30T12:31:17Z2009-07-30T12:31:17Z@Brian Agnew: "JSON text SHALL be encoded in Unicode.", see "3. Encoding" from RFC 4627 (<a href="http://tools.ietf.org/html/rfc4627" rel="nofollow">tools.ietf.org/html/rfc4627</a>), "Since the first two characters of a JSON text will always be ASCII characters [RFC0020], it is possible to determine whether an octet stream is UTF-8, UTF-16 (BE or LE), or UTF-32 (BE or LE) by looking at the pattern of nulls in the first four octets. [...]"http://stackoverflow.com/questions/1102895/default-text-on-input/1102938#1102938Comment by cic on Default text on inputcic2009-07-09T10:03:45Z2009-07-09T10:03:45ZCool, it's a part of HTML 5, <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/forms.html#attr-input-placeholder" rel="nofollow">whatwg.org/specs/web-apps/…</a>http://stackoverflow.com/questions/1102694/javascript-object-literal-and-array-problem/1102701#1102701Comment by cic on Javascript Object Literal and Array Problemcic2009-07-09T09:30:46Z2009-07-09T09:30:46ZAfaik you can't "re-declare" variables in JS, the <code>var</code> part will just be ignored and this answer would work without the extra <code>var</code>s (i.e. o = {} only).http://stackoverflow.com/questions/954327/hidden-features-of-htmlComment by cic on Hidden Features of HTMLcic2009-06-07T10:52:25Z2009-06-07T10:52:25ZAbout HTML 5, <a href="http://wiki.whatwg.org/wiki/FAQ#When_will_we_be_able_to_start_using_these_new_features.3F" rel="nofollow">wiki.whatwg.org/wiki/…</a> and <a href="http://wiki.whatwg.org/wiki/FAQ#When_will_HTML_5_be_finished.3F" rel="nofollow">wiki.whatwg.org/wiki/…</a>http://stackoverflow.com/questions/897541/how-to-change-title-attribute-in-a-tag-using-javascript/897665#897665Comment by cic on How to change title attribute in <a> tag using JavaScript?cic2009-05-22T12:48:41Z2009-05-22T12:48:41ZIs this really an answer? ;)http://stackoverflow.com/questions/897541/how-to-change-title-attribute-in-a-tag-using-javascript/897560#897560Comment by cic on How to change title attribute in <a> tag using JavaScript?cic2009-05-22T12:47:49Z2009-05-22T12:47:49ZgetElementsByName returns a NodeList, you have to specify what element you are going to use, i.e. getElementsByName(link)[some number].setAttribute([...]).