User Robert Grant - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T04:49:25Zhttp://stackoverflow.com/feeds/user/61938http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1915868/hello-can-anybody-suggest-me-any-game-in-c-or-c-for-my-second-semester-project/1916023#19160230Answer by Robert Grant for Hello, Can anybody suggest me any game in C or C++ for my second semester project in post graduation?Robert Grant2009-12-16T16:52:05Z2009-12-16T16:52:05Z<p>I'd start with <a href="http://en.wikipedia.org/wiki/Tic-tac-toe" rel="nofollow">Noughts and Crosses</a>, then move it into <a href="http://en.wikipedia.org/wiki/3-D%5FTic-Tac-Toe" rel="nofollow">3D</a>. Should be able to easily generate an optimal solution for the former, before tackling the latter.</p>
http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/1914418#19144180Answer by Robert Grant for What is your favorite "programmer" t-shirt?Robert Grant2009-12-16T12:36:55Z2009-12-16T12:36:55Z<p>There's only one that fits the bill:</p>
<p><img src="http://img42.imageshack.us/img42/4723/hmtshirt11.png" alt="Well? What part?"></p>
http://stackoverflow.com/questions/1906795/what-are-some-famous-website-that-was-built-in-django/1906801#19068012Answer by Robert Grant for What are some famous website that was built in Django?Robert Grant2009-12-15T11:24:19Z2009-12-15T11:24:19Z<p>The most famous one's probably <a href="http://www.djangoproject.com" rel="nofollow">djangoproject.com</a>.</p>
http://stackoverflow.com/questions/1886792/javascript-syntax-error-how-can-i-find-out-more-information/1886826#18868260Answer by Robert Grant for Javascript syntax error... How can I find out more information?Robert Grant2009-12-11T09:22:43Z2009-12-11T09:22:43Z<p>Do you mean:</p>
<pre><code>if(document.getElementById(id) != null)
</code></pre>
<p>That'll check whether an element with your specified <code>id</code> exists.</p>
http://stackoverflow.com/questions/1882007/how-can-i-improve-my-php-code-to-make-it-more-efficient/1882350#18823500Answer by Robert Grant for How can I improve my PHP code to make it more efficient?Robert Grant2009-12-10T16:51:49Z2009-12-10T16:51:49Z<p>You can also break out of the loops when you've found a solution:</p>
<pre><code>if ($testscore == $score)
{
echo "Found a way to achieve ....";
break 3;
}
</code></pre>
<p>The number specifies the number of loops to break out of, so at time of writing there were 3 <code>for</code> loops to exit.</p>
http://stackoverflow.com/questions/1874457/css-two-column-list-with-balanced-column-height/1874983#1874983-3Answer by Robert Grant for css two column list with balanced column height Robert Grant2009-12-09T16:15:27Z2009-12-09T16:15:27Z<p>Here'd be my stab at it. Tested in Firefox 3 and IE7, so YMMV, but at least it'll degrade nicely.</p>
<pre><code><html>
<head>
<style type="text/css">
#items {
width: 300px;
border-top:1px solid gray;
}
#items div {
clear: left;
overflow:hidden;
padding: 5px 0;
border-bottom:1px solid gray;
}
.key {
width:100px;
float:left;
}
.value {
width:200px;
float:left;
}
</style>
</head>
<body>
<div id="items">
<div>
<span class="key">price</span>
<span class="value">1.5</span>
</div>
<div>
<span class="key">description</span>
<span class="value">Some text about the product written here
and will expand the height of this column</span>
</div>
<div>
<span class="key">availability</span>
<span class="value">Yes</span>
</div>
<div>
<span class="key">Feature</span>
<span class="value">Some feature about the product</span>
</div>
</div>
</body>
</html>
</code></pre>
<p>See also:</p>
<ul>
<li><a href="http://phrogz.net/css/WhyTablesAreBadForLayout.html" rel="nofollow">Why Tables Are Bad For Layout</a></li>
<li><a href="http://www.hotdesign.com/seybold/everything.html" rel="nofollow">Why Tables For Layout Is Stupid</a></li>
<li><a href="http://www.alistapart.com/articles/journey/" rel="nofollow">From Table Hacks to CSS Layout: A Web Designer’s Journey</a></li>
</ul>
http://stackoverflow.com/questions/1874631/how-to-ask-vim-to-get-into-sudo-mode-after-you-have-opened-it-normally/1874724#18747240Answer by Robert Grant for How to ask vim to get into sudo mode after you have opened it normallyRobert Grant2009-12-09T15:37:50Z2009-12-09T15:37:50Z<pre><code>:w !sudo tee %
</code></pre>
<p>Job done!</p>
http://stackoverflow.com/questions/1872960/good-resources-for-learning-to-develop-firefox-extensions/1872981#18729814Answer by Robert Grant for Good resources for learning to develop Firefox Extensions.Robert Grant2009-12-09T10:26:26Z2009-12-09T10:37:48Z<p>This is a useful folder structure to get you started:</p>
<ul>
<li>chrome (folder)
<ul>
<li>content (folder)</li>
<li>chrome.manifest</li>
</ul></li>
<li>defaults (folder)
<ul>
<li>preferences (folder)</li>
<li>install.rdf</li>
</ul></li>
<li>locale (folder)
<ul>
<li>en-US (folder)</li>
</ul></li>
<li>skin (folder)</li>
</ul>
<p>You start with the install.rdf file, which contains all the information about your extension (e.g. its name, your name, the version of Firefox it supports...)</p>
<p>Then work on the chrome.manifest file, which looks a little trickier, but is quite simple really.</p>
<p>THEN you get to start doing the interesting stuff! You can mess around with browser.xul, options.xul, etc etc. Plonk your css/images in the skin folder, and I expect you'll need to make a custom Javascript file which contains your extension logic (this goes in the chrome/content folder). </p>
<p>Finally packaging it is just a case of zipping the entire thing (<em>not</em> the folder containing your extension folders, just the folders themselves), and renaming it from .zip to .xpi - job done :)</p>
<p>There's an excellent step-by-step guide on the Mozilla Blog <a href="http://blog.mozilla.com/addons/2009/01/28/how-to-develop-a-firefox-extension/" rel="nofollow">here</a>, which goes into some real detail. </p>
<p>You can also find another example project <a href="http://www.rietta.com/firefox/Tutorial/overview.html" rel="nofollow">here</a>.</p>
<p>p.s. don't forget source control, bug tracking, internationalisation, etc etc. But don't start with that or you'll never have any fun :)</p>
http://stackoverflow.com/questions/1865859/configuration-of-java-developers-notebook/1866611#18666111Answer by Robert Grant for Configuration of Java Developer's NotebookRobert Grant2009-12-08T12:19:31Z2009-12-08T12:19:31Z<p>One with lots of RAM - 4GB - and a 64-bit OS to take advantage of it.</p>
<p>Also a dual-core CPU, 2GHz per core or something.</p>
<p>(Then you just need a massive power supply, a separate keyboard and mouse and a big monitor :p )</p>
http://stackoverflow.com/questions/1866232/help-me-optimize-the-if-else-in-javascript-jquery/1866282#18662824Answer by Robert Grant for Help me optimize the if else in JavaScript (jQuery)Robert Grant2009-12-08T11:09:11Z2009-12-08T11:09:11Z<p>If you give toggle a boolean argument, it will apply that to every matched element. From the docs:</p>
<blockquote>
<p>Toggle displaying each of the set of matched elements based upon the switch (true shows all elements, false hides all elements).</p>
</blockquote>
<p>So in your case, you want:</p>
<pre><code>$("#Div1").toggle(!i);
$("#Div2").toggle(i);
</code></pre>
http://stackoverflow.com/questions/1861237/cannot-create-java-webservice-in-eclipse/1861350#18613500Answer by Robert Grant for Cannot create Java Webservice in EclipseRobert Grant2009-12-07T17:03:21Z2009-12-07T17:03:21Z<p>One problem is that your CompileAndExecuteServiceHttpBinding binding doesn't have an Exception fault defined in the operation. It should be something like:</p>
<pre><code><wsdl:binding name="CompileAndExecuteServiceHttpBinding"
type="ns:CompileAndExecuteServicePortType">
<http:binding verb="POST"/>
<wsdl:operation name="execute">
<http:operation location="CompileAndExecuteService/execute"/>
<wsdl:input>
<mime:content type="text/xml" part="execute"/>
</wsdl:input>
<wsdl:output>
<mime:content type="text/xml" part="execute"/>
</wsdl:output>
<wsdl:fault name="Exception">
<soap12:fault use="literal" name="Exception"/>
</wsdl:fault>
</wsdl:operation>
</code></pre>
http://stackoverflow.com/questions/1860796/your-thoughts-on-large-scale-c-software-design/1861125#18611251Answer by Robert Grant for Your thoughts on "Large Scale C++ Software Design"Robert Grant2009-12-07T16:31:28Z2009-12-07T16:31:28Z<p><em>Is “Large-Scale C++ Software Design” by John Lakos a mind-provoking (but usually overlooked) gem?</em></p>
<p><a href="http://www.busreslab.com/tips/tip34.htm" rel="nofollow">Yes</a>.</p>
http://stackoverflow.com/questions/1859037/using-background-repeat-and-background-position-together/1859528#18595281Answer by Robert Grant for Using background-repeat and background-position together.Robert Grant2009-12-07T11:49:25Z2009-12-07T11:49:25Z<p>You could split the XXXX section into two parts (fixed size):</p>
<pre><code>XXXX MMMM
XXXX MMMM
XXXX
</code></pre>
<p>And (vertical repeat of XXXX YYYY):</p>
<pre><code>XXXX YYYY
XXXX YYYY
XXXX YYYY
XXXX YYYY
XXXX YYYY
...
</code></pre>
<p>To position the background correctly you can manipulate the container (probably a div) that has the background-image applied to it.</p>
http://stackoverflow.com/questions/1859004/is-it-possible-to-set-up-two-filehandlers-in-the-same-logging-properties-file/1859086#18590860Answer by Robert Grant for Is it possible to set up two FileHandlers in the same logging.properties file?Robert Grant2009-12-07T10:16:52Z2009-12-07T10:16:52Z<p>You can create a custom log level by extending the Level class; just give it a unique ID.</p>
<pre><code>import java.util.logging.*;
public class CustomLogLevel extends Level
{
public static void main(String[] args)
{
Logger log = Logger.getLogger("robertgrant.org");
Level templevel = Level.WARNING;
Level level = new CustomLogLevel("Rob Level", templevel.intValue());
Level customlevel = level.parse("Rob Level");
log.log(customlevel, "This is from a custom level");
}
public CustomLogLevel(String name, int value){
super(name, value);
}
}
</code></pre>
http://stackoverflow.com/questions/515199/what-free-web-development-ides-do-people-use14What (free) web development IDEs do people use?Robert Grant2009-02-05T09:49:50Z2009-12-06T15:49:17Z
<p>I'm after a free (and Free) lightweight IDE at least on Windows, and preferably cross-platform as well, which handles:</p>
<ul>
<li>XHTML, CSS and Javascript (maybe even jQuery..!) syntax highlighting</li>
<li>FTP deployment</li>
<li>Version control integration (CVS, SVN, <a href="http://en.wikipedia.org/wiki/Git%5F%28software%29" rel="nofollow">Git</a>, whatever)</li>
</ul>
<p>What've people found to work?</p>
<p><strong>EDIT:</strong> I've tried a few of these, and have chosen <a href="http://www.aptana.com" rel="nofollow">Aptana</a>, even though it isn't the highest-voted solution. It's quicker than Eclipse, and seems more suited to Web development (e.g. I just typed in a few FTP details and it sucked down the site onto my hard disk. Nice and easy.) I hope that it's reasonable/acceptable behaviour to accept the non-highest answer; this is my first answered question, so thanks everyone for answering!</p>
<p>For posterity, the other solution I would strongly consider is <a href="http://www.eclipse.org/pdt/" rel="nofollow">Eclipse PDT</a>.</p>
http://stackoverflow.com/questions/1840237/why-use-negative-margins/1840247#18402478Answer by Robert Grant for why use negative margins?Robert Grant2009-12-03T14:37:00Z2009-12-03T15:08:14Z<p>I started typing an answer, and then found a much better one <a href="http://www.smashingmagazine.com/2009/07/27/the-definitive-guide-to-using-negative-margins/" rel="nofollow">here</a>. Some salient points:</p>
<p><em>Negative margins:</em></p>
<ul>
<li>are valid CSS</li>
<li>don't break page flow</li>
<li>have high levels of cross-browser compatibility (although if they break your link or floated image, then try adding position: relative; that should fix it)</li>
</ul>
<p><em>Their effect on unfloated elements:</em></p>
<ul>
<li>applying them to the top or left of an element "pulls" that element in the appropriate direction(s)</li>
<li>HOWEVER, applying them to the bottom or right of an element "pulls" immediately subsequent elements into them, making them overlap</li>
</ul>
<p><em>Their effect on floated elements:</em></p>
<ul>
<li>this is more complex and I can't summarise it better than the article. Have a play around in Firebug to get a feel for them.</li>
</ul>
<p>There are some brilliant examples of negative margin use in that article (especially the 3-column layout! Magic. I've used <a href="http://www.alistapart.com/articles/holygrail/" rel="nofollow">a similar technique</a> for page layout before.) The most common use for them I've found is just to move an element a small amount to correct its position, and to make one element overlap another for visual effect.</p>
http://stackoverflow.com/questions/1839995/want-php-class-to-upload-files/1840002#18400021Answer by Robert Grant for want php class to upload filesRobert Grant2009-12-03T13:57:22Z2009-12-03T13:57:22Z<p>See my answer <a href="http://stackoverflow.com/questions/1839891/want-php-class-upload-files-in-server-any-sql/1839917#1839917">here</a>. I can't guarantee that it'll be a cooler version of what you asked for last time, but give it a try anyway.</p>
http://stackoverflow.com/questions/1839891/want-php-class-upload-files-in-server-any-sql/1839917#18399173Answer by Robert Grant for want php class upload files in server any sqlRobert Grant2009-12-03T13:38:10Z2009-12-03T13:38:10Z<p>How to handle a file upload in PHP <a href="http://www.tizag.com/phpT/fileupload.php" rel="nofollow">here</a>.</p>
<p>How to collect POSTed form variables <a href="http://www.w3schools.com/php/php%5Fpost.asp" rel="nofollow">here</a>, and then one good way of accessing a database is via the <a href="http://framework.zend.com/manual/en/zend.db.html" rel="nofollow">Zend framework</a>.</p>
<p>This question is really too general; you can get decent answers (or at least a much more informed question) by <a href="http://lmgtfy.com/?q=php+file+upload+database+access" rel="nofollow">Googling first</a>.</p>
http://stackoverflow.com/questions/1828793/what-data-service-is-where/1839626#18396260Answer by Robert Grant for What data/service is where?Robert Grant2009-12-03T12:35:34Z2009-12-03T12:35:34Z<p>Software AG's <a href="http://www.centrasite.org" rel="nofollow">CentraSite</a>.</p>
<p>Disclosure: I work for Software AG :)</p>
http://stackoverflow.com/questions/1839363/simulating-a-click-in-jquery-javascript-on-a-link/1839413#18394130Answer by Robert Grant for Simulating a click in jQuery/JavaScript on a linkRobert Grant2009-12-03T11:39:32Z2009-12-03T11:39:32Z<p>Easy! Just use jQuery's <a href="http://docs.jquery.com/Events/click" rel="nofollow">click</a> function:</p>
<pre><code>$("#theElement").click();
</code></pre>
http://stackoverflow.com/questions/1834026/what-is-the-best-way-to-transmit-java-objects-over-a-network/1834098#18340981Answer by Robert Grant for What is the best way to transmit Java objects over a networkRobert Grant2009-12-02T16:30:02Z2009-12-02T16:30:02Z<p><a href="http://www.terracotta.org/" rel="nofollow">Terracotta</a> (depending on why you're doing it!)</p>
http://stackoverflow.com/questions/1832899/javascript-error-while-executing-alert-function-through-php/1832941#18329410Answer by Robert Grant for Javascript error while executing alert function through phpRobert Grant2009-12-02T13:34:24Z2009-12-02T13:34:24Z<p>Try:</p>
<pre><code>$strXML .= "<entity id='" . $rs1['Internal_Id'] . "' value='" . round((($rs1['datap'] / $sumdata) * 100),2) . "' link='javascript:alert(\"".($rs1['Internal_Id']) . "\")' />";
</code></pre>
<p>Basically escaping your alert quotation marks :)</p>
http://stackoverflow.com/questions/1832832/jquery-use-change-event-on-input-text/1832881#18328810Answer by Robert Grant for jQuery use change event on input textRobert Grant2009-12-02T13:23:43Z2009-12-02T13:23:43Z<p>There are various options, including functions that are called at various stages of the autocomplete workflow, which you can specify. I would suggest sticking your logic in the FormatItem function.</p>
<p>Details are in the <a href="http://docs.jquery.com/Plugins/Autocomplete/autocomplete#toptions" rel="nofollow">jQuery API</a>.</p>
http://stackoverflow.com/questions/1827427/show-hide-ajax-javascript-toggle/1831889#18318890Answer by Robert Grant for show/hide ajax? javascript toggleRobert Grant2009-12-02T10:03:05Z2009-12-02T10:03:05Z<p>To answer your edit: can't you just remove the display:none style from the original div?</p>
<p>If you need to do it in Javascript, chuck a showIt('divID'); line in after your function.</p>
<p>To do it properly, add it into window.onload:</p>
<pre><code>window.onload = showIt('divID');
</code></pre>
<p>Or more properly, have a function that enqueues into the onload (<a href="http://roberthahn.ca/articles/2007/02/02/how-to-use-window-onload-the-right-way/" rel="nofollow">like this</a>).</p>
<p>Or probably best, use <a href="http://jquery.com" rel="nofollow">a framework</a> :)</p>
http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831841#183184123Answer by Robert Grant for Programmer Puzzle: Encoding a chess board state throughout a game.Robert Grant2009-12-02T09:51:19Z2009-12-02T09:51:19Z<p>It's best just to store chess games in a human-readable, standard format. </p>
<p>The <a href="http://en.wikipedia.org/wiki/Portable%5FGame%5FNotation" rel="nofollow">Portable Game Notation</a> assumes a standard starting position (although it <a href="http://en.wikipedia.org/wiki/Forsyth-Edwards%5FNotation" rel="nofollow">doesn't have to</a>) and just lists the moves, turn by turn. A compact, human-readable, standard format. </p>
<p>E.g.</p>
<pre><code>[Event "F/S Return Match"]
[Site "Belgrade, Serbia Yugoslavia|JUG"]
[Date "1992.11.04"]
[Round "29"]
[White "Fischer, Robert J."]
[Black "Spassky, Boris V."]
[Result "1/2-1/2"]
1. e4 e5 2. Nf3 Nc6 3. Bb5 {This opening is called the Ruy Lopez.} 3... a6
4. Ba4 Nf6 5. O-O Be7 6. Re1 b5 7. Bb3 d6 8. c3 O-O 9. h3 Nb8 10. d4 Nbd7
11. c4 c6 12. cxb5 axb5 13. Nc3 Bb7 14. Bg5 b4 15. Nb1 h6 16. Bh4 c5 17. dxe5
Nxe4 18. Bxe7 Qxe7 19. exd6 Qf6 20. Nbd2 Nxd6 21. Nc4 Nxc4 22. Bxc4 Nb6
23. Ne5 Rae8 24. Bxf7+ Rxf7 25. Nxf7 Rxe1+ 26. Qxe1 Kxf7 27. Qe3 Qg5 28. Qxg5
hxg5 29. b3 Ke6 30. a3 Kd6 31. axb4 cxb4 32. Ra5 Nd5 33. f3 Bc8 34. Kf2 Bf5
35. Ra7 g6 36. Ra6+ Kc5 37. Ke1 Nf4 38. g3 Nxh3 39. Kd2 Kb5 40. Rd6 Kc5 41. Ra6
Nf2 42. g4 Bd3 43. Re6 1/2-1/2
</code></pre>
<p>If you want to make it smaller, then <a href="http://www.7-zip.org/" rel="nofollow">just zip it</a>. Job done!</p>
http://stackoverflow.com/questions/1831610/how-to-develop-a-mvc-framework-from-scratch/1831666#18316664Answer by Robert Grant for How to develop a MVC framework from scratch?Robert Grant2009-12-02T09:14:23Z2009-12-02T09:14:23Z<p>Step 1: spend time contributing to an existing open source MVC framework.</p>
<p>Step 2: start contemplating making your own.</p>
<p>Step 3: stop panicking.</p>
http://stackoverflow.com/questions/1827485/free-and-usable-uml-diagrams-editor/1827652#18276520Answer by Robert Grant for Free and usable UML diagrams editorRobert Grant2009-12-01T17:22:48Z2009-12-01T17:22:48Z<p>I use <a href="http://www.sparxsystems.com.au/" rel="nofollow">Enterprise Architect</a>, which is what we used on my UML course. It's not free, but there's a trial version, and I think it's really good. Covers every type of UML diagram, I think, and it's the easiest to use that I've found.</p>
http://stackoverflow.com/questions/1803449/jquery-remove-siblings-elements-doesnt-work-in-ie7/1803557#18035570Answer by Robert Grant for jquery Remove siblings elements, doesn't work in IE7Robert Grant2009-11-26T13:03:48Z2009-11-26T13:03:48Z<p>Two things!</p>
<p>1) Close your <div> tags! It should look like this:</p>
<pre><code><form>
<div id="id5">something ...</div>
<div id="id8">something ...</div>
<div id="id3">something ...</div>
<div id="id97">something ...</div>
<div id="id7">something ...</div>
<div id="idn">some text ...</div>
</form>
</code></pre>
<p>2) The <strong>~</strong> operator only matches siblings that follow the matched element (ie it will match <strong>id3</strong>, <strong>id97</strong>, <strong>id7</strong> and <strong>idn</strong>, but not <strong>id5</strong>). To match every sibling, including <strong>id5</strong>, you do this:</p>
<pre><code>$("#id8").siblings("div").remove();
</code></pre>
<p>That should leave you with just <strong>id8</strong>. I tested this in Firefox 3.5.5 and IE7.0something. Hope that helps!</p>
http://stackoverflow.com/questions/1670202/how-do-i-create-a-google-map-using-v3-api-with-clickable-markers-with-custom-html/1803158#18031580Answer by Robert Grant for How do I create a Google Map using v3 API with clickable markers with custom html inside the marker?Robert Grant2009-11-26T11:32:24Z2009-11-26T11:32:24Z<p>Can I point you at a site I did pretty much exactly that (except it updates when you hover a marker rather than click on it; just move the code into the empty click event provided rather than the hover event). In the spirit of real coding, hopefully you can adapt what I've done!</p>
<p><a href="http://www.primrose-house.co.uk/localattractions?script=no" rel="nofollow">http://www.primrose-house.co.uk/localattractions</a></p>
http://stackoverflow.com/questions/1802872/google-maps-centering-or-marker-positioning-issue/1803092#18030920Answer by Robert Grant for Google Maps centering or marker positioning issueRobert Grant2009-11-26T11:18:15Z2009-11-26T11:18:15Z<p>Check this code out:</p>
<pre><code>var map = new GMap(document.getElementById("map"));
/* -- snip -- */
map.centerAndZoom(new GPoint(-1.2736, 53.0705), 8);
</code></pre>
<p>From a website I made a while ago. Feel free to check the source:</p>
<p><a href="http://www.primrose-house.co.uk/localattractions" rel="nofollow">http://www.primrose-house.co.uk/localattractions</a></p>
<p>Just click the link in the top right to switch to the map view.</p>
http://stackoverflow.com/questions/1915868/hello-can-anybody-suggest-me-any-game-in-c-or-c-for-my-second-semester-project/1916023#1916023Comment by Robert Grant on Hello, Can anybody suggest me any game in C or C++ for my second semester project in post graduation?Robert Grant2009-12-17T09:09:49Z2009-12-17T09:09:49ZYeah, that's what I linked to with Wikipedia. Couldn't be bothered to find the noughts and crosses link that redirects to it :)http://stackoverflow.com/questions/1915868/hello-can-anybody-suggest-me-any-game-in-c-or-c-for-my-second-semester-projectComment by Robert Grant on Hello, Can anybody suggest me any game in C or C++ for my second semester project in post graduation?Robert Grant2009-12-16T16:46:53Z2009-12-16T16:46:53ZHah. So sit in a room, and think. Don't let anyone give you any ideas!http://stackoverflow.com/questions/1874457/css-two-column-list-with-balanced-column-heightComment by Robert Grant on css two column list with balanced column height Robert Grant2009-12-14T16:34:31Z2009-12-14T16:34:31ZIf you add only one more line of data, and the content of the two lines can't be mixed, then it's tabular. But not until that point.http://stackoverflow.com/questions/1888310/c-sharing-locks-with-multithreading/1888331#1888331Comment by Robert Grant on C# sharing locks with multithreadingRobert Grant2009-12-11T15:25:28Z2009-12-11T15:25:28ZAlso I believe you have to have 2000 rep for that.http://stackoverflow.com/questions/1888310/c-sharing-locks-with-multithreading/1888331#1888331Comment by Robert Grant on C# sharing locks with multithreadingRobert Grant2009-12-11T15:06:01Z2009-12-11T15:06:01Z-1 for incorrect capitalisation at the start of the second sentence.http://stackoverflow.com/questions/1887471/is-there-any-other-tool-better-than-firebug-on-any-other-browsers/1887478#1887478Comment by Robert Grant on Is there any other tool better than Firebug on any other browsers?Robert Grant2009-12-11T12:13:21Z2009-12-11T12:13:21ZIE Developer Toolbar just makes me cry in comparison.http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/737342#737342Comment by Robert Grant on What was your first computer game that got you interested in computers?Robert Grant2009-12-11T12:04:51Z2009-12-11T12:04:51Z+100 this one, if I could :)http://stackoverflow.com/questions/1887216/which-tools-do-you-use-to-debug-html-js-in-your-browser/1887218#1887218Comment by Robert Grant on Which tools do you use to debug HTML/JS in your browser?Robert Grant2009-12-11T10:38:32Z2009-12-11T10:38:32ZFirebug beats everything. The only thing it can't do is find IE rendering errors, at which point you're back to the horror of web development in IE.http://stackoverflow.com/questions/1882007/how-can-i-improve-my-php-code-to-make-it-more-efficient/1882032#1882032Comment by Robert Grant on How can I improve my PHP code to make it more efficient?Robert Grant2009-12-10T17:18:34Z2009-12-10T17:18:34Z+1 elegant little optimisationhttp://stackoverflow.com/questions/1874457/css-two-column-list-with-balanced-column-height/1874983#1874983Comment by Robert Grant on css two column list with balanced column height Robert Grant2009-12-10T15:05:04Z2009-12-10T15:05:04ZIn fact I think I read BalusC's first comment that mentioned key/value.http://stackoverflow.com/questions/1874457/css-two-column-list-with-balanced-column-height/1874983#1874983Comment by Robert Grant on css two column list with balanced column height Robert Grant2009-12-10T15:03:49Z2009-12-10T15:03:49Z1) "Key" and "value" are not nonstandard terms. 2) I could've floated right and reversed the order in markup, but that would be weird. 3) Those widths (to the nearest 50px) approximate the text wrapping shown in the question in my browser's default font/font size. 4) Hidden overflow is the right thing to use. 5) Grey looks better than black; I normally use #555.http://stackoverflow.com/questions/1874457/css-two-column-list-with-balanced-column-height/1875417#1875417Comment by Robert Grant on css two column list with balanced column height Robert Grant2009-12-10T14:35:35Z2009-12-10T14:35:35ZAre there any other reasons than that one?http://stackoverflow.com/questions/1874457/css-two-column-list-with-balanced-column-height/1875417#1875417Comment by Robert Grant on css two column list with balanced column height Robert Grant2009-12-10T14:09:14Z2009-12-10T14:09:14ZAnd while divs/spans may not be any more semantically correct than a table, they are technically cheaper to render, and infinitely more flexible when it comes to restyling.http://stackoverflow.com/questions/1874457/css-two-column-list-with-balanced-column-height/1875417#1875417Comment by Robert Grant on css two column list with balanced column height Robert Grant2009-12-10T14:05:57Z2009-12-10T14:05:57ZE.g. <a href="http://www.webdesignfromscratch.com/html-css/html-tables.php" rel="nofollow">webdesignfromscratch.com/html-css/html-tables.php/…</a> : <b>HTML tables should only be used for rendering data that belongs naturally in a grid</b>, in other words where the data describe a number of objects that have the same properties. http://stackoverflow.com/questions/1874457/css-two-column-list-with-balanced-column-height/1875417#1875417Comment by Robert Grant on css two column list with balanced column height Robert Grant2009-12-10T14:02:09Z2009-12-10T14:02:09ZI'd be curious to know what you'd define as "tabular data". And not "well, it's data that I put in a table".