User JoeBloggs - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T19:31:18Zhttp://stackoverflow.com/feeds/user/34097http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/371141/how-do-you-handle-rude-clients/377909#3779091Answer by JoeBloggs for How do you handle rude clients?JoeBloggs2008-12-18T13:56:21Z2008-12-18T13:56:21Z<p>Walk away. There is no discussion to be had, given your description and assuming you don't want to be milked for all you're worth and then discarded - [Clients vs Grinders][1]).</p>
http://stackoverflow.com/questions/377729/performance-single-join-select-vs-multiple-simple-selects/377874#3778741Answer by JoeBloggs for performance - single join select vs. multiple simple selectsJoeBloggs2008-12-18T13:44:42Z2008-12-18T13:44:42Z<p>As has been said before, there is no right answer without context.</p>
<p>The answer to this is dependent on (from the top of my head):</p>
<ul>
<li>the amount of joining</li>
<li>the type of joining </li>
<li>indexing </li>
<li>the amount of re-use you could have for any of the separate pieces to be joined </li>
<li>the amount of data to be processed </li>
<li>the server setup</li>
<li>etc.</li>
</ul>
http://stackoverflow.com/questions/377631/a-respectable-php-datetime-parser/377805#3778052Answer by JoeBloggs for A respectable PHP Datetime parser.JoeBloggs2008-12-18T13:16:05Z2008-12-18T13:25:21Z<p>It's not wrong, the data you're supplying is ambiguous - there is a world of difference.</p>
<p>Ambiguous data means the most you can reasonably expect from it is a 'best guess'. You might disagree with how it makes this best guess, but that's not 'wrong', that's just a different opinion on what is most likely. You can't expect any more than that without removing the ambiguity.</p>
<p><em>Further thoughts, mostly to hop's comments on the OP:</em></p>
<p>Silently failing is not an option - deciding when or not to silently fail is subject to the same rules, and will be thrown by the same ambiguities.</p>
<p>Which of the example strings is wrong and should silently fail? What about the guy next to you? Does he think the same one is wrong? What if you remove the context by not comparing them side by side?</p>
<p>The only thing 'wrong' here is expecting a function to be able to decipher an exact meaning from data that will always be subject to ambiguity... and this is just those examples, I haven't even got to dates yet :) (1/2/08 is the first of Feb? or the 2nd of Jan? 1908? 2008? 8?)</p>
<p>Right, that said, I'm off to write a function called 'is_this_art'...</p>
http://stackoverflow.com/questions/29580/why-is-pagination-so-resource-expensive/374980#3749802Answer by JoeBloggs for Why is pagination so resource-expensive?JoeBloggs2008-12-17T15:50:04Z2008-12-17T15:50:04Z<p>This question seems pretty well covered, but I'll add a little something MySQL specific as it catches out a lot of people:</p>
<p>Avoid using <code>SQL_CALC_FOUND_ROWS</code>. Unless the dataset is trivial, counting matches and retrieving x amount of matches in two separate queries is going to be a lot quicker. (If it <em>is</em> trivial, you'll barely notice a difference either way.)</p>
http://stackoverflow.com/questions/362352/dynamic-image-creation/368998#3689982Answer by JoeBloggs for Dynamic image creationJoeBloggs2008-12-15T16:51:53Z2008-12-15T16:51:53Z<p>"I have a sample div which is exposed to the user to modify it. That accomodates two images and some text. He can select the image out of many which we offer. Finally I want to store it as one big image."</p>
<p>In that case, client-side screen capture is the wrong way to go about it. You should allow the image to be composited on the users browser (as it sounds like you have this part done), but then have the browser send back the information required to recreate the image* on the server, which you then do with GD, ImageMagick or something similar. It'll be easier, cleaner and quicker in so many ways :)</p>
<p>*for example:</p>
<ul>
<li>imageid: 7</li>
<li>text: 'blah'</li>
<li>textcolour: #ffffff</li>
<li>textsize: 3</li>
<li>textx: 10</li>
<li>texty: 10</li>
</ul>
<p>EDIT: You should probably also put the quoted part into the question, as it isn't entirely clear from the original post.</p>
http://stackoverflow.com/questions/366338/how-much-does-website-development-cost-nowadays/368627#36862730Answer by JoeBloggs for How much does Website Development cost nowadays?JoeBloggs2008-12-15T15:05:15Z2008-12-15T15:05:15Z<p>The best place I've found for this kind of advice is <a href="http://sitepoint.com" rel="nofollow">Sitepoint.com</a>. The gist of it, which agrees with my personal experience, is that it's better to set your hourly rate and then quote per job based on an estimate of how long it will take and that rate.</p>
<p>To define an hourly rate, it is best to decide on an annual salary, estimate the proportional split between actually doing work and administrating work (getting it, delivering it, book-keeping it, etc.), and calculate an hourly rate that will give you that salary when you work that split, ie:</p>
<ul>
<li>You want $100,000 annual salary</li>
<li>That's ~$2,000 per week</li>
<li>You will spend 50% of your time working</li>
<li>That's ~$2,000 per 20 hours</li>
<li>That's ~$100/hour</li>
</ul>
<p>Make sure that the salary takes into account any expenses you will incur that aren't separately billable.</p>
<p>A couple of other points:</p>
<p>Unless you've run a business before, overestimate the non-programming side of things by a huge margin - you won't believe it until you've been through it. Getting it down to 50-50 by yourself is a challenge - meetings alone can kill a whole day once you're got there, had the meeting, got back, done some research, sent off a clarification and then dealt with the day's email.</p>
<p>Don't do anything without a contract. If you don't have a contract and you don't get shafted, consider yourself very, very lucky. Doubly so if you're just starting out, and triply so if you're a one-man shop. There's just too much that needs spelling it for it to be left to good faith - what the project consists of, what it doesn't consist of, what is allowed to change and when, how many drafts before a decision, the price, the delivery date, what happens if the payment is late, what happens if the project is late, who is responsible for what content and when, who pays for things like stock imagery and fonts, domain requirements, hosting requirements, email requirements, maintenance, initial training, support etc., the list is endless. Luckily, there are some good boilerplate examples out there to start from, and again, Sitepoint has that angle covered nicely.</p>
<p>How to find prospective clients is definitely another post :)</p>
<p>...and good luck! :)</p>
http://stackoverflow.com/questions/344216/will-flash-popularity-become-air-popularity/344481#3444812Answer by JoeBloggs for Will Flash Popularity Become AIR Popularity?JoeBloggs2008-12-05T16:53:30Z2008-12-05T16:53:30Z<p>Unfortunately no, until they sort out, at the least, the following issue:</p>
<p>When you visit a site that needs Flash and you haven't got Flash installed, you get a very standard looking popup asking you if you to install it, and mentioning in the notes that it may not be safe to install an untrusted plugin.</p>
<p>When you visit a site that lets you download an AIR app, it pops up big red screaming warnings about the imminent trashing of your computer, the theft of your identity and a life of torment[1]. Unless, of course, all the bedroom programmers decide to cough up the <em>ongoing</em> cost of certification.</p>
<p>User encouragement FAIL. Hobby developer encouragement FAIL. Technophobe terrorficiation avoidance FAIL.</p>
<p>I love AIR, but I don't know what they were thinking with the installer. Laywers' office moved closer to the developers' over at HQ or something?</p>
<p>[1]Actual message may vary.</p>
http://stackoverflow.com/questions/319421/what-is-the-best-programming-language-for-web-development-and-why/323818#3238184Answer by JoeBloggs for What is the best programming language for web development and why?JoeBloggs2008-11-27T13:52:54Z2008-11-27T13:52:54Z<p>PHP being bad is subjective. Beware the almost infinite stream of language snobbery out there concerning PHP. Some of it is valid, some of it might be valid in certain rare circumstances, but most of it is just plain old snobbery*. </p>
<p>Weigh your pros and cons up carefully before swapping to an alternative would be my advice - if that's in favour of PHP, or equal, wouldn't you get more benefit from your time by learning something that you can use <em>in conjunction</em> with PHP? Javascript & jQuery, for example, which opens up a whole new world of webdev with Ajax.</p>
<p>*Just watch the downvotes come flooding in for pointing that out to those who practice it :)</p>
http://stackoverflow.com/questions/323066/what-language-is-a-good-choice-after-php-for-a-developer-wanting-to-try-something/323766#3237662Answer by JoeBloggs for What language is a good choice after PHP for a developer wanting to try something new?JoeBloggs2008-11-27T13:27:37Z2008-11-27T13:34:00Z<p>Most of these responses seem to be advocating what I would consider alternatives to PHP. Without wishing to be rude to the other posters, what's the point of that? If you were planning to give up PHP, it would be fair enough. If you were wanting to move away from web dev, it would be fair enough. But, you have a job in web dev, and you presumably want to find something useful to scratch that 'something new' itch with. So, why not learn something that you can use <em>in conjunction</em> with PHP, something that'll be an addition, not an alternative?</p>
<p>Javascript would be the obvious choice, IMHO, for the benefit of being able to get your code off the server and into the browser when you need to. </p>
http://stackoverflow.com/questions/323323/can-someone-tell-me-what-strong-typing-and-weak-typing-means-and-which-one-is-bet/323472#3234729Answer by JoeBloggs for Can someone tell me what Strong typing and weak typing means and which one is better?JoeBloggs2008-11-27T10:58:30Z2008-11-27T10:58:30Z<p>That'll be the theory answers taken care of, but the practice side seems to have been neglected...</p>
<p>Strong-typing means that you can't use one type of variable where another is expected (or have restrictions to doing so). Weak-typing means you can mix different types. In PHP for example, you can mix numbers and strings and PHP won't complain because it is a weakly-typed language.</p>
<pre><code>$message = "You are visitor number ".$count;
</code></pre>
<p>If it was strongly typed, you'd have to convert $count from an integer to a string, usually with either with casting:</p>
<pre><code>$message = "you are visitor number ".(string)$count;
</code></pre>
<p>...or a function:</p>
<pre><code>$message = "you are visitor number ".strval($count);
</code></pre>
<p>As for which is better, that's subjective. Advocates of strong-typing will tell you that it will help you to avoid some bugs and/or errors and help communicate the purpose of a variable etc. They'll also tell you that advocates of weak-typing will call strong-typing "<em>unnecessary language fluff that is rendered pointless by common sense</em>", or something similar. As a card-carrying member of the weak-typing group, I'd have to say that they've got my number... but I have theirs too, and <em>I</em> can put it in a string :)</p>
http://stackoverflow.com/questions/304876/annoying-or-idiotic-naming-conventions/305777#305777-2Answer by JoeBloggs for Annoying or idiotic naming conventions?JoeBloggs2008-11-20T15:57:36Z2008-11-20T15:57:36Z<ul>
<li><p>I despise anything other than lowercase 'id' for an id field in a database.</p></li>
<li><p>I despise even the merest hint of capital letters in any variable, function, class, etc.</p></li>
<li><p>I despise groups of variables where the hierarchy is ignored. ('maxblah' and 'minblah' instead of 'blahmax' and 'blahmin');</p></li>
</ul>
<p>Other than that I'm easy :)</p>
http://stackoverflow.com/questions/298987/tricks-to-staying-positive/299065#2990654Answer by JoeBloggs for Tricks to staying positiveJoeBloggs2008-11-18T15:30:09Z2008-11-18T15:30:09Z<p>You need to change the way you think (this applies to everything concerning happiness or lack thereof). Everything you need to know is contained in this fascinating 22 minutes here: <a href="http://www.ted.com/index.php/talks/dan_gilbert_asks_why_are_we_happy.html" rel="nofollow">Why are we happy?</a></p>
http://stackoverflow.com/questions/291841/does-jquery-do-any-kind-of-caching-of-selectors/293793#2937932Answer by JoeBloggs for Does jQuery do any kind of caching of "selectors"?JoeBloggs2008-11-16T11:26:17Z2008-11-16T11:26:17Z<p>It's not so much a matter of 'does it?', but 'can it?', and no, it can't - you may have added additional matching elements to the DOM since the query was last run. This would make the cached result stale, and jQuery would have no (sensible) way to tell other than running the query again.</p>
<p>For example:</p>
<pre><code>$('#someid .someclass').show();
$('#someid').append('<div class="someclass">New!</div>');
$('#someid .someclass').hide();
</code></pre>
<p>In this example, the newly added element would not be hidden if there was any caching of the query - it would hide only the elements that were revealed earlier.</p>
http://stackoverflow.com/questions/290296/how-can-you-tell-png8-from-a-png24/290595#2905954Answer by JoeBloggs for How can you tell png8 from a png24JoeBloggs2008-11-14T16:13:47Z2008-11-14T16:13:47Z<p>I think you might be asking the wrong question. PNG8s don't have the true-alpha you've been working hard to fix in IE6. If you replace the PNG24s with PNG8s you are no better off than replacing them with GIFs.</p>
<p>Maybe you could test an alternative replacement/fix script - there are some shockingly bad ones out there, maybe that's where the problem is?</p>
<p>Here's (and I say this tongue in cheek!) <a href="http://stackoverflow.com/questions/10243/how-to-get-png-transparency-working-in-browsers-that-dont-natively-support-it">the right question</a>.</p>
http://stackoverflow.com/questions/290359/artificial-intelligence-what-to-put-in-or-leave-out-and-what-can-be-inferred/290367#2903675Answer by JoeBloggs for Artificial Intelligence - What to put in, or leave out, and what can be inferred?JoeBloggs2008-11-14T15:14:19Z2008-11-14T15:14:19Z<p>Without the bad, the good is meaningless.</p>
http://stackoverflow.com/questions/198654/looking-for-evolutionary-music-example-code/287394#2873941Answer by JoeBloggs for Looking for evolutionary music example codeJoeBloggs2008-11-13T16:22:40Z2008-11-13T16:22:40Z<p>You probably want to look into <em>Markov Chains</em> - They're probably of more use to you than an evolutionary algorithm to start with, as judging the quality of the output in order to breed the best is going to be a nightmare (subjective and time-consuming), and they're ideal for combining with evolutionary programming.</p>
<p>There's a good introduction to them on <a href="http://www.codinghorror.com/blog/archives/001132.html" rel="nofollow">Coding Horror</a>. The article explains the concept and demonstrates the remarkable results, the comments mention music a lot more (I was lost for hours in the comments and the sites they linked to). There's some more specific details and further reading on <a href="http://en.wikipedia.org/wiki/Markov_chain" rel="nofollow">Wikipedia</a>.</p>
<p>Markov chains have an element of probability to them, so this is where you can combine them with evolutionary programming - by evolving a method of choosing alternatives other than the roll of a dice.</p>
http://stackoverflow.com/questions/287097/inventory-database-design/287184#2871841Answer by JoeBloggs for Inventory database designJoeBloggs2008-11-13T15:10:44Z2008-11-13T15:10:44Z<p>I can see some benefit to having the two columns, but I'm not following the part about discrepancies - you seem to be implying that having the two columns (in and out) is less prone to discrepancy than a single column (current). Why is that?</p>
http://stackoverflow.com/questions/286945/what-is-json/287091#2870911Answer by JoeBloggs for What is JSON?JoeBloggs2008-11-13T14:36:50Z2008-11-13T14:36:50Z<p>The in-depth version seems to be well covered, maybe you're looking for the short-and-simplified version?</p>
<p><em>JSON is basically just a way to pass an array from one language to another.</em> </p>
<p>It's used a lot for Ajax (amongst other things) because with Ajax you typically have a server-side language (PHP etc.) passing a set of results to a client-side language (javascript). Your javascript calls your PHP page with some parameters; your PHP page builds an array and echos it encodes it to JSON format; your javascript catches the JSON and decodes it back to an array to process.</p>
<p>There's more to it than that obviously (and for that reason I'm expecting a flurry of tear-streaked downvotes :) ), but that's all you need to get up and running with it.</p>
http://stackoverflow.com/questions/278632/what-is-your-preferred-pastime-programming-project/286951#2869512Answer by JoeBloggs for What is your preferred pastime programming project?JoeBloggs2008-11-13T13:49:11Z2008-11-13T13:49:11Z<p>Pretty much the same webdev as I do at work, just about subjects that I've chosen and without irritating clients (well, not too irritating). Boring answer I know, but:</p>
<p><em>Find a job you enjoy and you'll never work a day in your life</em>.</p>
http://stackoverflow.com/questions/279512/what-do-you-want-for-a-gift-in-the-coming-season/286937#2869372Answer by JoeBloggs for What do you want for a gift in the coming season?JoeBloggs2008-11-13T13:44:38Z2008-11-13T13:44:38Z<p>One of those new-fangled programming-knowledge-on-a-chip cranial implants please. Oh, and the children's version for my last boss (I think his might melt if we give him the full-strength one, tempting though that thought is).</p>
http://stackoverflow.com/questions/284756/hit-me-with-your-worst-shot/286913#2869131Answer by JoeBloggs for Hit me with your worst shot.JoeBloggs2008-11-13T13:35:32Z2008-11-13T13:35:32Z<p>Does it count that I write overly-optimised functions for things that I know I'm probably never going to use again?</p>
<p>For example, I wanted to output the ordinal suffix (the 'nd' in '2nd' etc) for a number in a site once, and wrote a function for it (instead of just hacking it out of the date function). I don't think I've ever used it since, but I just enjoyed working out the logic to get it into an efficient one-liner...</p>
http://stackoverflow.com/questions/283774/maximum-number-of-cookies-allowed/283908#2839081Answer by JoeBloggs for Maximum number of cookies allowedJoeBloggs2008-11-12T13:21:18Z2008-11-12T13:21:18Z<p>IIRC, it's 20 for the majority general, more for some, and 10 for one particular browser (again IIRC, IE5.5?). Up to 10 is considered a safe number.</p>
<p>You don't really need more than one anyway - just use one to store an ID client-side and store everything you need stored server-side against that same ID. Apart from anything else, the less data you leave the the client, the less there is for them to remove/corrupt/hack/etc. </p>
http://stackoverflow.com/questions/131165/evolutionary-algorithms-optimal-repopulation-breakdowns/283898#2838981Answer by JoeBloggs for Evolutionary Algorithms: Optimal Repopulation BreakdownsJoeBloggs2008-11-12T13:15:40Z2008-11-12T13:15:40Z<p>There would appear to be a few answers suggesting using a 2nd GA to determine optimum parameters for the 1st GA, with no mention of how to determine the optimum parameters for the 2nd. I can't help but wonder about the religious beliefs of those suggesting this approach...</p>
http://stackoverflow.com/questions/283553/could-stackoverflow-be-used-to-track-language-popularity/283768#2837681Answer by JoeBloggs for Could stackoverflow be used to track language popularity?JoeBloggs2008-11-12T12:16:51Z2008-11-12T12:16:51Z<p>No - not unless the vast majority of all programmers asked questions here. Even then, there would be the problem of proportion: would few questions mean that a language was not popular, or that it was easy to learn or had so many tutorials available that it didn't need questions asked?</p>
<p>In short, you'd have to factor some difficult-to-measure attributes just to get an estimate of popularity amongst SO users, and there's no guarantee that we're representative of the rest of the programming world. Comparing Java to PHP in your table gives you a good indication that it's not representative.</p>
http://stackoverflow.com/questions/272541/is-it-possible-to-disable-ajax-without-disabling-javascript-completely/272596#2725960Answer by JoeBloggs for Is it possible to disable AJAX without disabling JavaScript completely?JoeBloggs2008-11-07T16:19:28Z2008-11-07T16:19:28Z<p>No more than you can disable any other function - there may be some kludges or hacks to be found that could interfere with or break javascript, but we would hope not to find such vulnerabilities.</p>
<p>I'll take a wild stab in the dark and guess that you're trying to stop Ajax in untrusted user input of some kind? Your best bet in that case would be to avoid over-specifying your search parameters by mentioning Ajax, rather, search for 'sanitize javascript', 'user javascript safe'... that kind of thing.</p>
http://stackoverflow.com/questions/176172/geolocation-web-site-for-pictures/268849#2688492Answer by JoeBloggs for Geolocation web site for picturesJoeBloggs2008-11-06T14:23:52Z2008-11-06T14:23:52Z<p>Google maps itself has geo-coded images - click the 'more' button and check the 'photos' box. Hours of fun! :)</p>
http://stackoverflow.com/questions/262090/find-jpeg-resolution-with-php/262499#2624991Answer by JoeBloggs for Find JPEG resolution with PHPJoeBloggs2008-11-04T16:59:55Z2008-11-04T16:59:55Z<p>I don't understand this. Pixels = printsize x resolution, and the number of pixels is a set value. So, if you have an image of 300x300 pixels, you have 1"x1" of 300 DPI resolution, 2"x2" of 150 DPI resolution, or 4"x4" of 75 DPI resolution etc. An image <em>doesn't have a resolution</em> unless it has a physical size to compare to its pixel size.</p>
<p>What is it I'm missing? (and just how glaringly obvious is it to everyone else? =] )</p>
http://stackoverflow.com/questions/197769/when-is-javascripts-eval-not-evil/261634#2616341Answer by JoeBloggs for When is JavaScript's eval() not evil?JoeBloggs2008-11-04T11:55:57Z2008-11-04T11:55:57Z<p>Only if the parameter you pass it is "alert('No!')"...</p>
http://stackoverflow.com/questions/377631/a-respectable-php-datetime-parser/377805#377805Comment by JoeBloggs on A respectable PHP Datetime parser.JoeBloggs2008-12-18T14:18:45Z2008-12-18T14:18:45ZWhat would be the point? My code is always perfect straight out of the box, and (myopinion === fact) is most definitely true. :)http://stackoverflow.com/questions/370073/whats-your-best-and-or-funniest-data-loss-story/370084#370084Comment by JoeBloggs on What's your best and/or funniest data loss story?JoeBloggs2008-12-18T14:03:22Z2008-12-18T14:03:22Z+1 on save/discard instead of yes/no, and a huge -1 on 'just doing it instead of asking'. I want a file closed without saving about as often as I want to close with saving - temp files I don't want littering the hard disk, quick and dirty version breakpoints, etc.http://stackoverflow.com/questions/371126/in-php-how-many-db-calls-per-page-is-okay/371225#371225Comment by JoeBloggs on In PHP, how many DB calls per page is okay?JoeBloggs2008-12-17T15:35:14Z2008-12-17T15:35:14ZCombining multiple queries not only complicates the source code, it's often less efficient than doing multiple, simple calls. SQL_CALC_FOUND_ROWS is the perfect example - on anything other than trivial datasets, counting and retrieving in two separate queries is quicker. Cleverer isn't always betterhttp://stackoverflow.com/questions/21411/php-sleep-silently-hogs-cpu/22425#22425Comment by JoeBloggs on PHP sleep() silently hogs CPUJoeBloggs2008-12-17T15:25:51Z2008-12-17T15:25:51ZYou've tamed the notion a little with the word 'probably', but I still don't see how you can justify expecting to be able to remove bits of code you've never seen without breaking things?http://stackoverflow.com/questions/349902/piano-peano-numbers/349977#349977Comment by JoeBloggs on Piano (Peano) numbers?JoeBloggs2008-12-15T15:14:34Z2008-12-15T15:14:34Z@JeremyZX: Losing sight of something that is a reality would be a deficiency, no? And not being able to understand a causation that one previously understood, that would also be a deficiency, wouldn't it?http://stackoverflow.com/questions/182630/jquery-tips-and-tricks/182666#182666Comment by JoeBloggs on jQuery Tips and TricksJoeBloggs2008-12-12T11:20:39Z2008-12-12T11:20:39ZEvery day I wade through pointless XML/XLS/XLST, sites written with far too many layers of abstraction, complex fail-over systems on sites that will never outgrow the humblest of servers... and still people complain about the difference between $(<string>) & $(<function>). Makes me want to cry :)http://stackoverflow.com/questions/161403/what-is-your-favorite-firebug-tip-or-trick/161416#161416Comment by JoeBloggs on What is your favorite Firebug tip or trick?JoeBloggs2008-12-12T11:11:31Z2008-12-12T11:11:31ZYSlow, ironically, slows my work machine to a crawl. It doesn't seem to have a problem with anything else.http://stackoverflow.com/questions/131165/evolutionary-algorithms-optimal-repopulation-breakdowns/283898#283898Comment by JoeBloggs on Evolutionary Algorithms: Optimal Repopulation BreakdownsJoeBloggs2008-12-11T13:58:08Z2008-12-11T13:58:08ZNot much to choose between "chicken and egg" and "turtles all the way down" though... chicken and egg requires less memory I guess :)http://stackoverflow.com/questions/26301/your-favourite-algorithm-and-the-lesson-it-taught-you/26584#26584Comment by JoeBloggs on Your favourite algorithm and the lesson it taught you.JoeBloggs2008-12-10T11:54:49Z2008-12-10T11:54:49Z@Dour: I did the same, but we were wrong - <a href="http://www.codinghorror.com/blog/archives/001015.html" rel="nofollow">codinghorror.com/blog/archives/…</a> :)http://stackoverflow.com/questions/304876/annoying-or-idiotic-naming-conventions/305269#305269Comment by JoeBloggs on Annoying or idiotic naming conventions?JoeBloggs2008-12-09T15:37:31Z2008-12-09T15:37:31ZI don't use python, but why? Does it choke when using a brace on a line by itself?http://stackoverflow.com/questions/349902/piano-peano-numbers/349977#349977Comment by JoeBloggs on Piano (Peano) numbers?JoeBloggs2008-12-09T14:38:42Z2008-12-09T14:38:42ZSheesh, +1 to counter the pettiness... There's a correlation between education and intelligence, but you're right, they're not equal and thinking they are is misguided.http://stackoverflow.com/questions/344216/will-flash-popularity-become-air-popularity/344261#344261Comment by JoeBloggs on Will Flash Popularity Become AIR Popularity?JoeBloggs2008-12-05T16:41:42Z2008-12-05T16:41:42ZI don't get it - you write HTML for webkit (no cross-browser hassles, yay; nice CSS extras, yay; it's not IE, yay) and press a couple of buttons. What's to improve?http://stackoverflow.com/questions/56411/how-to-test-randomness-case-in-point-shuffling/56576#56576Comment by JoeBloggs on How to test randomness (case in point - Shuffling)JoeBloggs2008-12-05T14:39:48Z2008-12-05T14:39:48ZHow is this, aside from all the extra processing, different from just counting higher/lower than 50% of the range of a random number?http://stackoverflow.com/questions/339961/difference-between-2-numbers/339999#339999Comment by JoeBloggs on Difference between 2 numbersJoeBloggs2008-12-05T13:45:34Z2008-12-05T13:45:34ZSomeone who doesn't know the maths behind this solution isn't necessarily going to know if it's possible, especially when they have a working alternative. Dry humour is impossible to detect under those circumstances, so downvotes are entirely reasonable. Funny or not, it's wrong information.http://stackoverflow.com/questions/153524/code-to-logging-ratio/153547#153547Comment by JoeBloggs on Code to logging ratio?JoeBloggs2008-12-04T14:12:47Z2008-12-04T14:12:47ZIt makes my eyes bleed just imagining what it would be like to read through that log...