User jTresidder - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T07:25:50Zhttp://stackoverflow.com/feeds/user/36365http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/513209/how-do-you-know-if-youve-been-programming-too-long/514085#5140850Answer by jTresidder for How do you know if you've been programming too long?jTresidder2009-02-05T00:54:48Z2009-02-05T00:54:48Z<p>I'm always torn between music and code - there's just not enough hours in my day. So, if one is not flowing I'll just swap to the other. When I come back, I'm always 'unblocked' :)</p>
http://stackoverflow.com/questions/511612/ethics-of-using-a-fringe-language-for-your-job/514001#5140010Answer by jTresidder for Ethics of using a "fringe" language for your job?jTresidder2009-02-05T00:23:20Z2009-02-05T00:23:20Z<p>So much discussion for such a clear-cut situation...</p>
<p>It's not up to you, it's up to them. If they're not technical enough to make the call, as it seems, then you have to make it for them <em>in good faith</em>. Anything less is dishonest, and I'm fairly sure that's not in your job description ;)</p>
http://stackoverflow.com/questions/349902/piano-peano-numbers/349977#3499772Answer by jTresidder for Piano (Peano) numbers?jTresidder2008-12-08T16:04:52Z2009-02-04T18:49:47Z<p><strong>Those who equate intelligence with knowledge have a deficiency in both.</strong></p>
<p>(Please note that I'm not specifying the size of the deficiency, especially in the case of Yegge.)</p>
<p>I knew nothing of either of those subjects when I took the Mensa exam, and it didn't stop me (blush!) scoring pretty well.</p>
http://stackoverflow.com/questions/495339/free-tools-to-speed-up-web-development/500965#5009650Answer by jTresidder for Free tools to speed up web developmentjTresidder2009-02-01T15:08:36Z2009-02-01T15:08:36Z<p>A colleague of mine has been trying to convince me all week that <strong>Dreamweaver</strong>, 5 years after I was last forced to use it at gunpoint, is actually now worthwhile for knocking up a design quickly and painlessly, and is also now competent at producing the HTML for that design.</p>
<p>I refuse to invest the 10 minutes it would take to find out based on my previous experiences of it, but you might like to give the demo a quick run around the block :)</p>
http://stackoverflow.com/questions/431156/what-do-you-mean-by-programming-ability/431516#4315160Answer by jTresidder for What do you mean by "programming ability"?jTresidder2009-01-10T18:45:06Z2009-01-10T18:45:06Z<p>What makes the best athlete? Stamina? Strength? Speed? Skill? Is the best swimmer the best pole-vaulter? Is the best archer the best sprinter? Does the best archer care if he can't run 100m in under 10 seconds? etc.</p>
<p>You're listing the right kind of things that make up the skill of programming, but different constituent skills are important for different things - it's not all directly comparable, IMHO, beyond the basics. I'd say that that was nothing more than a good understanding of logic, a good knowledge of a language appropriate to the task and good attention to detail.</p>
http://stackoverflow.com/questions/414978/adding-values-in-various-combinations/428793#4287930Answer by jTresidder for Adding values in various combinationsjTresidder2009-01-09T16:39:08Z2009-01-09T16:39:08Z<p>I don't know how often it would work in practice as there are <em>many</em> exceptions to this oversimplified case, but here's a thought: </p>
<p>In a perfect world, the invoices are going to be paid up to a certain point. People will pay A, or A+B, or A+B+C, but not A+C - if they've received invoice C then they've received invoice B already. In the perfect world the problem is not to find to a combination, it's to find a point along a line.</p>
<p>Rather than brute forcing every combination of invoice totals, you could iterate through the outstanding invoices in order of date issued, and simply add each invoice amount to a running total which you compare with the target figure.</p>
<p>Back in the real world, it's a trivially quick check you can do before launching into the heavy number-crunching, or chasing them up. Any hits it gets are a bonus :)</p>
http://stackoverflow.com/questions/407129/best-font-for-terminal/407666#4076661Answer by jTresidder for Best font for terminaljTresidder2009-01-02T18:38:53Z2009-01-02T18:38:53Z<p><a href="http://www.arcavia.com/Software/ProgFont/" rel="nofollow">This</a> programmer's font is great if you find coding too easy and want something else to think about while you're working, or you're mounting some kind of offensive campaign against your eyes for some reason.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/407616#407616-7Answer by jTresidder for What's your most controversial programming opinion?jTresidder2009-01-02T18:18:00Z2009-01-02T18:18:00Z<p><strong>I know everything there is to know about everything.</strong></p>
http://stackoverflow.com/questions/404040/how-do-you-like-your-primary-keys/405495#4054950Answer by jTresidder for How do you like your primary keys?jTresidder2009-01-01T21:18:26Z2009-01-01T21:18:26Z<p>I've always used a surrogate key - an autoincrementing integer called 'id'. I can see plenty of reasons to do this even when another option is obvious:</p>
<ul>
<li>Consistency</li>
<li>Data independent (unique, not destroyed by changes to format)</li>
<li>Human-readable</li>
</ul>
<p>...and no sensible reason not to:</p>
<ul>
<li>Ambiguity in joins? - Aliasing tables is a better practice, IMHO</li>
<li>Optimum tables? - Removing one byte per entry is premature optimisation, IMHO</li>
<li>Per-table decision? - No longer consistent</li>
<li>Scaling problems? - Eh? Why?</li>
<li>Hierarchical data structure? - That's denormalising, a whole other subject of religion. Suffice it to say I'm a fan in a few circumstances in theory, but never in practice :)</li>
</ul>
<p>sensible reasons against that I haven't thought of or come across yet are always welcomed...</p>
http://stackoverflow.com/questions/402006/rules-with-most-significant-exceptions/402255#4022552Answer by jTresidder for Rules With Most Significant ExceptionsjTresidder2008-12-31T03:47:29Z2008-12-31T03:47:29Z<p>I've always been annoyed by "give 'em what they want". Fair enough in theory, but in practice what they ask for is rarely what they want, it's more like the real problem half-solved in the first manner that popped into an untrained head. Deciphering desires from requests is an art in itself but it's a vital part of being a good programmer, IMHO (and at least doubly so in web-dev).</p>
http://stackoverflow.com/questions/309884/code-golf-number-to-words/401955#4019551Answer by jTresidder for Code Golf: Number to WordsjTresidder2008-12-31T00:40:59Z2008-12-31T00:40:59Z<p>Does anyone plan on adding the appropriate commas and 'and' any time soon? Or hyphenating twenty-one through ninety-nine? Not much point otherwise, IMHO :)</p>
<p>'Nine Hundred Ninety Nine Thousand Nine Hundred Ninety Nine'</p>
<p>vs</p>
<p>'Nine hundred and ninety-nine thousand, nine hundred and ninety-nine'</p>
<p>(And no, mine doesn't work. Yet.)</p>
http://stackoverflow.com/questions/335888/what-function-to-use-to-hash-passwords-in-mysql/335911#3359119Answer by jTresidder for What function to use to hash passwords in MySQL?jTresidder2008-12-03T00:28:31Z2008-12-03T00:28:31Z<p>It's not necessarily that you shouldn't use MD5, as much it's that you shouldn't use <em>just</em> MD5, as this leaves you vulnerable to rainbow-table attacks (a rainbow table is a table of precomputed hash values - if your password is even remotely common or simple, the attacker needs merely to look up the hash and he knows your plaintext password.)</p>
<p>At the very least you should add a salt to every password so that any existing rainbow table is useless, forcing the attacker to generate an entire new rainbow table just for your database of passwords.</p>
<p>Better still is to use a different salt for every password in your database, say the username it's associated with, so that an attacker can't even generate a rainbow table for your whole database and has to crack each entry separately.</p>
<p>MD5 is also a very fast algorithm. Speed is the enemy when it comes to cracking - the longer it takes to generate a hash, the longer it takes for each attempt a hacker makes. Something simple like hashing the plaintext 100 times with a new additional salt each time would be barely perceptible (if at all) to a user logging in to your site, but it would increase the time it takes to brute-force a password by the same 100 times.</p>
<p>Far, far more detail here: <a href="http://www.codinghorror.com/blog/archives/000953.html" rel="nofollow">http://www.codinghorror.com/blog/archives/000953.html</a></p>
http://stackoverflow.com/questions/332109/url-rewrite-blanket-redirect-with-directory-exceptions/332587#3325874Answer by jTresidder for URL Rewrite blanket redirect with directory exceptionsjTresidder2008-12-01T23:23:01Z2008-12-01T23:23:01Z<p>Before the line you have quoted, for a directory named 'style' for instance, you need:</p>
<pre><code>RewriteRule ^style/ - [L]
</code></pre>
<p>The hyphen means 'no redirection', and the '[L]' means 'last rule', as in don't carry on trying to match the URL to the follwing rules. You can put as many of these lines in as you like, but they must be before the line you give in the question.</p>
http://stackoverflow.com/questions/293236/monkey-patching-vs-s-o-l-i-d-principles/293263#293263-1Answer by jTresidder for Monkey-patching Vs. S.O.L.I.D. principles?jTresidder2008-11-16T00:00:31Z2008-11-16T00:00:31Z<p>Monkey-patching is just plain <em>wrong</em>, IMHO. I've not come across the open/closed principle you mention before, but it's a principle I've long held myself, I agree with it 100%. I think of monkey-patching as a code-smell on a larger scale, a coding-philosophy-smell, as it were.</p>
http://stackoverflow.com/questions/288810/get-the-subdomain-from-a-url/288922#2889220Answer by jTresidder for Get the subdomain from a URLjTresidder2008-11-14T00:54:20Z2008-11-14T02:31:27Z<p>It's not working it out exactly, but you could maybe get a useful answer by trying to fetch the domain piece by piece and checking the response, ie, fetch '<a href="http://uk" rel="nofollow">http://uk</a>', then '<a href="http://co.uk" rel="nofollow">http://co.uk</a>', then '<a href="http://domain.co.uk" rel="nofollow">http://domain.co.uk</a>'. When you get a non-error response you've got the domain and the rest is subdomain.</p>
<p><em>Sometimes you just gotta try it</em> :)</p>
<p>Edit:</p>
<p>Tom Leys points out in the comments, that some domains are set up only on the www subdomain, which would give us an incorrect answer in the above test. Good point! Maybe the best approach would be to check each part with '<a href="http://www" rel="nofollow">http://www</a>' as well as 'http://', and count a hit to either as a hit for that section of the domain name? We'd still be missing some 'alternative' arrangements such as 'web.domain.com', but I haven't run into one of those for a while :)</p>
http://stackoverflow.com/questions/277319/what-is-the-most-interesting-bug-you-have-fixed/282687#2826873Answer by jTresidder for What is the most interesting bug you have fixed?jTresidder2008-11-12T01:11:13Z2008-11-12T01:11:13Z<p>Way-back-when, I wrote a function for a game I was working on in my spare time, to return the distance between two tiles on a slightly odd square/hexagonal grid. The grid looked hexagonal in the game, but was stored as a plain ol' square grid - every other line was staggered and you needed to know if a tile was on an odd or an even row before you could tell what its neighbours were.</p>
<p>Still, <em>reasonably</em> simple I thought - the function just tested all directions, scoring each using a matrix designed to account for the quirk, and moved into the best scoring for the next iteration. What could go wrong with that?</p>
<p>It worked for all cases except one, and then only failed for half of those cases, and then only by a distance of one tile. If it had just spat out random garbage it would have been so much less frustrating. Anyway, I spent days, literally days, poring over the code and the matrices, rewriting them from scratch only to see them coming out identical, swearing at them, the works.</p>
<p>When I found the bug I didn't know whether to laugh or cry - I had used a 'greater than' instead of a 'greater than or equal to' in one of the loops, giving precedence to the first of equal candidates instead of the last. I had even used '>=' in all my notepad pseudo-code, right from the first. I had just never noticed the difference between pad and screen. It was enough to steer the path wrong, avoiding a slight shortcut that was to be had in just the right circumstances. <em>One single press of the equals key</em> and a couple of mouse-clicks later, et voila - the hardest bug I've ever had to to grok was also the easiest to fix...</p>
http://stackoverflow.com/questions/279359/the-most-frequent-number-in-an-array/279459#2794591Answer by jTresidder for The Most frequent Number in an arrayjTresidder2008-11-10T22:46:16Z2008-11-12T00:30:26Z<p>You could eliminate the sort you do at the start by iterating the entire array once, keeping a count of how many times you come across each value in a temporary array, and then iterating the temporary array for the highest number. You could keep both the highest frequency count and the most frequent item throughout, too.</p>
<p>Different sorts have different efficiencies on different types of data, of course, but this would be a worst case of just two iterations.</p>
<p><em>Edit: Apologies for the repeat... 'Tweren't there when I started :)</em></p>
http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282618#28261870Answer by jTresidder for What are five things you hate about your favorite language?jTresidder2008-11-12T00:26:19Z2008-11-12T00:26:19Z<p><strong>Javascript</strong>:</p>
<ol>
<li><p>It's fugly</p></li>
<li><p>All the coolest things are insanely complex, but then, all the coolness is also wrapped up in such a small amount of code that you feel stupid for struggling to follow it</p></li>
<li><p>'+' is an absurd choice of operator for concatenation in a weakly-typed language. Were they <em>trying</em> to scare off the noobs?</p></li>
<li><p>It's a cross-browser compatibility minefield (never mind if it's even turned on or not)</p></li>
<li><p>It's generally untrusted - associated with scummery such as blocking the back button, pop-ups that never die, etc.</p></li>
<li><p>Did I mention that it's fugly?</p></li>
</ol>
<p>If it wasn't for jQuery, I'd probably still hate it as much as I used to :)</p>
http://stackoverflow.com/questions/279619/whats-your-favorite-implementation-of-producing-the-fibonacci-sequence/279662#2796620Answer by jTresidder for What's your favorite implementation of producing the fibonacci sequence?jTresidder2008-11-11T00:23:44Z2008-11-11T00:23:44Z<p>I came across this little beauty the other day:</p>
<pre><code>function f($n)
{
$sqrt5 = pow(5, 0.5);
$gr = (1+$sqrt5)/2;
return floor(0.5+(pow($g, $n)/$sqrt5));
}
</code></pre>
<p>Mmmmmm, non-recursive :)</p>
<p>Apparently though, it is fairly quickly limited by rounding errors due to the binary representations of floating point numbers... ah well, 'tis cool none-the-less.</p>
http://stackoverflow.com/questions/279236/how-do-i-resize-pngs-with-transparency-in-php/279550#2795502Answer by jTresidder for How do I resize pngs with transparency in PHP?jTresidder2008-11-10T23:26:35Z2008-11-10T23:26:35Z<p>The filling of the new image with a transparent colour is also required (as Dycey coded but I'm guessing forgot to mention :)), not just the 'strategic' saving by itself.</p>
<p>IIRC, you also need to be sure PNGs are 24bit, ie truecolor, and not 8bit to avoid buggy behaviour.</p>
http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282618#282618Comment by jTresidder on What are five things you hate about your favorite language?jTresidder2009-02-07T14:47:52Z2009-02-07T14:47:52Z@Mausch: where does javascript live in the <i>vast</i> majority of cases? You're saying the equivalent of "cars don't contribute to global warming, it's driving cars that does it" - true, of course, but missing the point - what else do you do with a car?http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282618#282618Comment by jTresidder on What are five things you hate about your favorite language?jTresidder2009-02-07T14:44:07Z2009-02-07T14:44:07Z...and here I was thinking beauty was subjective :)http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/407616#407616Comment by jTresidder on What's your most controversial programming opinion?jTresidder2009-02-06T22:06:33Z2009-02-06T22:06:33ZI know you don't get self-deprecating humour, for a start. I think I must have got lost... I could have sworn this was SO, not YouTube, but the commentary around here recently has got me wondering. Heads go on the top guys, where you've got 'em is bad for your neck.http://stackoverflow.com/questions/349902/piano-peano-numbers/349977#349977Comment by jTresidder on Piano (Peano) numbers?jTresidder2009-02-04T18:21:50Z2009-02-04T18:21:50Z@jeremyZX: Re Mensa: Aye, I probably didn't help by wording it the way I did, but that kind of thing is inevitable. Meh :) Re losing empathy: I don't understand how that disagrees with my view? It seems to me like an explanation for, rather than an argument against.http://stackoverflow.com/questions/490420/favorite-clever-defensive-programming-best-practices/494833#494833Comment by jTresidder on Favorite (Clever) Defensive Programming Best PracticesjTresidder2009-01-31T13:59:41Z2009-01-31T13:59:41ZDoesn't "my break point near the bottom doesn't get hit" === "must be returning before the breakpoint"? Isn't that more useful than "my breakpoint is getting hit" && "something's wrong in the code before that"? Ie, looking specifically for a return, rather than just "something is wrong somewhere"...http://stackoverflow.com/questions/496817/do-you-find-that-programmers-generally-get-half-way-through-a-project-and-then-sl/496861#496861Comment by jTresidder on Do you find that programmers generally get half way through a project and then slow to a crawl and how to resolve this?jTresidder2009-01-30T23:31:00Z2009-01-30T23:31:00ZI heard a variation of that that I love: "the first half of a project will take approximately 90% of the time allocated... as will the second half."http://stackoverflow.com/questions/496732/what-is-the-code-snippet-you-are-most-proud-of/496759#496759Comment by jTresidder on What is the code snippet you are most proud of?jTresidder2009-01-30T22:23:09Z2009-01-30T22:23:09Z@Robert P: It's a UK/US thing... 'nine-hundred and ninety-nine' is 999 in the UK, and 900.99 in the US
@John: Some interesting ones in here: <a href="http://stackoverflow.com/questions/309884/" rel="nofollow">stackoverflow.com/questions/309884</a>http://stackoverflow.com/questions/344216/will-flash-popularity-become-air-popularity/344244#344244Comment by jTresidder on Will Flash Popularity Become AIR Popularity?jTresidder2009-01-13T20:48:58Z2009-01-13T20:48:58ZSlough: If it's not much help to you, fair enough, but to someone who knows nothing about desktop apps and a few things about flash and/or javascript it's a minor miracle. It's lowering the bar for creating a desktop app, which means more apps for a user.http://stackoverflow.com/questions/430142/what-algorithms-compute-directions-from-point-a-to-point-b-on-a-mapComment by jTresidder on What algorithms compute directions from point A to point B on a map?jTresidder2009-01-13T20:36:48Z2009-01-13T20:36:48ZWalking directions? Dunno about anywhere else, but around here (Hampshire, UK), big G has no pedestrian data - it routes me along the roads around pedestrian precincts etc. The only thing it's good for is changing the estimate of time taken for the route :)http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/408751#408751Comment by jTresidder on What's your most controversial programming opinion?jTresidder2009-01-07T22:04:12Z2009-01-07T22:04:12ZAlmost, IMHO. I think OOP is the ideal way to deal with some aspects of programming, but it's not what it's made out to be: It's not a replacement for every methodology and/or piece of code you ever come across; It's not immune from being taken too far; It's not your master; It's not irreplaceable.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/409825#409825Comment by jTresidder on What's your most controversial programming opinion?jTresidder2009-01-07T21:50:08Z2009-01-07T21:50:08ZComments are evil if you're often bored and need a 10 minute job to take all day. I prefer to find something new to tinker with :)http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/412058#412058Comment by jTresidder on What's your most controversial programming opinion?jTresidder2009-01-07T21:43:49Z2009-01-07T21:43:49Z+1. Why the downvotes? Maybe doing the kind of work that demands that level of scrutiny removes the ability to see that there's more than one kind of coding environment? There's no manager to lean on when your world-view-interpreter algorithms are wonky.http://stackoverflow.com/questions/126158/what-is-your-favorite-anti-pattern/126380#126380Comment by jTresidder on What is your "favorite" anti pattern?jTresidder2009-01-06T14:16:25Z2009-01-06T14:16:25ZSomeone should fire her...http://stackoverflow.com/questions/128099/what-is-the-longest-human-name-you-can-expect/129449#129449Comment by jTresidder on What is the longest human name you can expect?jTresidder2009-01-03T14:31:55Z2009-01-03T14:31:55ZI agree with this, but it requires a caveat. It's a principle that requires responsible use - it seems to me to be most often taken as "don't worry about it too much, just make sure you have an excuse if it's not right".http://stackoverflow.com/questions/398963/what-is-the-worst-web-usability-error-you-have-encountered/400519#400519Comment by jTresidder on What is the worst web usability error you have encountered?jTresidder2009-01-03T14:13:26Z2009-01-03T14:13:26ZThat is one side of a particularly two-sided coin.