User Cody Hatch - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T03:25:48Z http://stackoverflow.com/feeds/user/17086 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/89523/lua-patterns-tips-and-tricks/89825#89825 13 Answer by Cody Hatch for Lua Patterns,Tips and Tricks Cody Hatch 2008-09-18T03:46:15Z 2009-10-21T18:51:39Z <p>Metatables are sexy, but depending on the language you're coming from they may take a while to wrap your head around.</p> <p>The first thing you need to realize is that Lua has one data structure - the table - and everything is an entry in a table. Functions, strings, everything.</p> <p>So when you call a function, or look something up in an array, or whatever, you're actually telling Lua to look up a key value pair in a table. The neat thing is that with metatables you can tell Lua what to do if the key isn't found. You can either point it at a different table or alternatively a function.</p> <p>This opens up all sorts of neat tricks. You can create a lookup table of English to German translations - and if you ever try to translate something that isn't in the table it can print an apology, display the untranslated string, and/or log an error to let the developers know they're missing a translation. Sure you can DO that in other languages, but you end up with messy branching conditionals. With Lua it's transparent.</p> <p>Say you've got a table of translations called tranMsgs:</p> <pre><code>setmetatable(tranMsgs,tranFail) tranFail.__index = function(t,k) -- code goes here end </code></pre> <p>Now whenever anyone tries to lookup a missing translation the above code will run. Very simple, very understandable.</p> <p>You can also use metatables to cache complex calculations.</p> <pre><code>cachedResults = {} setmetatable(cachedResults, expensiveFunction) expensiveFunction.__index = function(t,k) cachedResults.k = sqrt(sqrt(k^k)) return cachedResults.k end </code></pre> <p>Now calling print(cachedResults[50]) will be much faster after the first time. And sure you can do that in any language, but it's brief, elegant, and easy to understand in Lua. :-)</p> <p>If you're coming from a language like C or Java, getting your head around metatables will open the door to a lot of fun tricks.</p> http://stackoverflow.com/questions/644684/turn-image-sequence-into-video-with-transparency 1 Turn image sequence into video with transparency Cody Hatch 2009-03-13T21:27:12Z 2009-10-18T04:00:03Z <p>I've got what seems like it should be a really simple problem, but it's proving much harder than I expected. Here's the issue:</p> <p>I've got a fairly large image sequence consisting of numbered frames (output from Maya, for what its worth). The images are currently in Targa (.tga) format, but I could convert them to PNGs or other arbitrary format if that matters. The important thing is, they've got an alpha channel.</p> <p>What I want to do is programatically turn them into a video clip. The format doesn't really matter, but it needs to be lossless and have an alpha channel. Uncompressed video in a Quicktime container would probably be ideal.</p> <p>My initial thought was ffmpeg, but after wasting most of a day on it it seems it's got no support at all for alpha channels. Either I'm missing something, or the underlying libavcodec just doesn't do it.</p> <p>So, what's the right way here? A command line tool like ffmpeg would be nice, but any solution that runs on Windows and could be called from a script would be fine.</p> <p>Note: Having an alpha chanel in your video isn't actually all that uncommon, and it's really useful if you want to composite it on top of another video clip or a still image. As far as I know uncompressed video, the Quicktime Animation codec, and the Sorenson Video 3 codec all support tranparency, and I've heard H.264 does as well. All we're really talking about is 32-bit color depth, and that's pretty widely supported; both Quicktime .mov files and Windowss .avi files can handle it, and probably a lot more too.</p> <p>Quicktime Pro is more than happy to turn an image sequence into a 32-bit .mov file. Hit export, change color depth to "Millions of Colors+", select the Animation codec, crank the quality up to 100, and there you are - losslessly compressed video, with an alpha chanel, and it'll play back almost anywhere since the codec has been part of Quicktime since version 1.0. The problem is, Quicktime Pro doesn't have any sort of command-line interface (at least on Windows). ffmpeg supports encoding using the Quicktime Animation codec (which it calls qtrle), but it only supports a bit-depth of 24 bits.</p> <p>The issue isn't finding a video format that supports an alpha channel. Quicktime Animation would be ideal, but even uncompressed video should work. The problem is finding a tool that supports it.</p> http://stackoverflow.com/questions/742547/conditional-median-in-ms-excel/742592#742592 1 Answer by Cody Hatch for Conditional median in MS Excel Cody Hatch 2009-04-12T23:02:50Z 2009-04-12T23:02:50Z <p>Nested if statements.</p> <pre><code>=MEDIAN(IF(A:A = "x",IF(B:B&lt;&gt;"",B:B, ""),"") </code></pre> <p>Not much to explain - it checks if A is x. If it is, it checks if B is non-blank. Anything that matches both conditions gets calculated as part of the median.</p> <p>Given the following data set:</p> <pre><code>A | B ------ x | x | x | 2 x | 3 x | 4 x | 5 </code></pre> <p>The above formula returns 3.5, which is what I believe you wanted.</p> http://stackoverflow.com/questions/163562/wiki-style-text-formatting/197281#197281 1 Answer by Cody Hatch for Wiki style text formatting Cody Hatch 2008-10-13T11:19:44Z 2008-12-31T13:55:47Z <p>I would like to <em>strongly</em> recommend Textile over Markdown. <a href="http://www.codeplex.com/textilenet" rel="nofollow">Textile.NET</a> should do what you want.</p> <p>Why? I like Textile's syntax better, and I think it's easier for users to learn and use. There's no single large reason - just a lot of small things.</p> <p>In Markdown you can do <em><code>*italics*</code></em> and <strong><code>**bold**</code></strong> easily, but the syntax seems arbitrary. Compare to the equivalent syntax in Textile for <em><code>_italics_</code></em> and <strong><code>*bold*</code></strong>, which mirrors the conventional way to indicate those modifiers in plain text formats.</p> <p>Or for another example, in Textile you make an ordered list by prefixing each item with an '#'. In Markdown, you prefix it with "n.", where n is any integer. Markdown is trying to imitate the syntax people use in flat text files when writing lists (which is nice), but it means that this Markdown code:</p> <pre><code>3. Test1 2. Test2 1. Test3 </code></pre> <p>Is rendered as this:</p> <blockquote> <ol> <li>Test1</li> <li>Test2</li> <li>Test3</li> </ol> </blockquote> <p>Basically, Markdown asks you for a number, which it then ignores. That seems inelegant to me, although I couldn't explain why precisely.</p> <p>Textile also does tables (and wish a nicely compact syntax). Markdown doesn't. There's a few other minor points, but I think that covers most of it. :)</p> http://stackoverflow.com/questions/402881/is-the-reset-button-really-required/402965#402965 23 Answer by Cody Hatch for Is the reset button really required? Cody Hatch 2008-12-31T13:34:47Z 2008-12-31T13:34:47Z <p>It's actually sometimes useful for web forms which will be accessed from public terminals - a good example would be a search form for a public library card catalogue.</p> <p>Imagine if the search form has a lot of fields (author, year, keywords, topic, publisher, collection, title, series, whatever). This lets you do very specific searches (all books by authors named John published in 1987), but once you've found the result you (or another user) may want to do a new search using a very different set of terms (all books about fish published by Random House. A reset button can help a lot here, because you may otherwise find yourself manually clearing a large number of fields.</p> <p>(Depending on implementation details, a reset button may also be useful if a user doesn't want the next user to see what they were searching for. Again, this is useful in the context of a library, where privacy is a concern.)</p> http://stackoverflow.com/questions/170352/confluence-experiences/170438#170438 7 Answer by Cody Hatch for confluence experiences? Cody Hatch 2008-10-04T14:35:48Z 2008-10-04T14:54:30Z <p>I'd say Confluence is very nice, and I recommend it. However, there's a few gotchas.</p> <ol> <li><p>The WYSIWYG editor just isn't very good. It'll handle simple stuff fine - a small table, lists, inserting links, formatting text, etc. If you want to go farther - complex multicolumn layouts, multicolored tables, whatever - the editor is, well, fairly useless. Luckily Conflunece uses a slightly modified version of Textile - very powerful, and very easy to use. (Much better than "traditional" wiki markup.) In short, the WYSIWYG editor is bad, but it doesn't matter much.</p></li> <li><p>Word integration is kickass. The killer feature is the ability to embed spreadsheets and powerpoint slides into pages - they appear just like they should. Plus if you're using Word and Firefox/IE on Windows, one click will open the embedded document in the appropriate Office app - and when you hit save the page updates. Plus the documents are versioned, and full text searchable, and the entire thing is shiny as hell, frankly. (Of course, if you're using OpenOffice the nifty one-click thing should still work, but it doesn't, at least for us.)</p></li> <li><p>WebDAV support is really great. Every page appears as a folder containing any attachments (as files), any subpages (as folders), and the the text of the page as a txt file. Makes it trivial to write a quick shell script to create a bunch of pages, or renumber a bunch of attachments, or whatever. Downside: WebDAV support in Confluence is great; WebDAV support in major OSes - especially XP - is hit-or-miss.</p></li> <li><p>Especially when you add plugins into the mix, you can do some very powerful things with forms, metadata, templates, graphs, reports. Want to see a table of the last person to edit every page labeled "tuna"? Sure thing. Or say you've got a page about a new project, and it's got some child pages about features you're planning. It's quite easy to attach metadata (like "who is this assigned to" or "priority") to the feature pages, and then embed some nifty reports and graphs in the project page. On the other hand, some of the really cool stuff is also really arcane or poorly documented.</p></li> <li><p>We've found Confluence to be pretty resource hungry. We're not a Java shop, so it's entirely possible (hell, probable) that we've misconfigured something somewhere, but the full Tomcat stack chews through a lot of RAM (and a fair amount of CPU).</p></li> </ol> <p>As for usability... As far as the core "wiki" experience goes, it seems pretty standard, and fairly easy to use. It's quite easy to add a comment, edit a page, attach a file, embed an image, add a link, format text, etc. Beyond that...well... it depends.</p> <p>When we chose Confluence early this year, it seemed obviously the best choice. Key features were:</p> <ul> <li>LDAP/Active Directory integration. Confluence does this out of the box.</li> <li>Granular permissions. Confluence has very very strong support for this.</li> </ul> <p>The only other wiki which was close was <a href="http://wiki.mindtouch.com/Deki_Wiki" rel="nofollow">Deki Wiki</a>, and at the time it was lacking some key features. I believe it's matured heavily since; if I was choosing a wiki today I'd look at it closely.</p> http://stackoverflow.com/questions/164831/how-to-rank-a-million-images-with-a-crowdsourced-sort/164939#164939 9 Answer by Cody Hatch for How to rank a million images with a crowdsourced sort Cody Hatch 2008-10-02T22:46:26Z 2008-10-02T23:34:43Z <p>Most naive approaches to the problem have some serious issues. The worst is how <a href="http://www.bash.org" rel="nofollow">bash.org</a> and <a href="http://www.qdb.us/top" rel="nofollow">qdb.us</a> displays quotes - users can vote a quote up (+1) or down (-1), and the list of best quotes is sorted by the total net score. This suffers from a horrible time bias - older quotes have accumulated huge numbers of positive votes via simple longevity even if they're only marginally humorous. This algorithm might make sense if jokes got funnier as they got older but - trust me - they don't.</p> <p>There are various attempts to fix this - looking at the number of positive votes per time period, weighting more recent votes, implementing a decay system for older votes, calculating the ratio of positive to negative votes, etc. Most suffer from other flaws.</p> <p>The best solution - I think - is the one that the websites <a href="http://thefunniest.info/" rel="nofollow">The Funniest</a> <a href="http://thecutest.info/" rel="nofollow">The Cutest</a>, <a href="http://thefairest.info/" rel="nofollow">The Fairest</a>, and <a href="http://bestthing.info/" rel="nofollow">Best Thing</a> use - a <a href="http://bestthing.info/algorithms.html" rel="nofollow">modified Condorcet voting system</a>. For more information on implementing such systems the Wikipedia page on <a href="http://en.wikipedia.org/wiki/Ranked_Pairs" rel="nofollow">Ranked Pairs</a> should be helpful.</p> <p>The algorithm requires people to compare two objects (your Pick-A-or-B option), but frankly, that's a good thing. I believe it's very well accepted in decision theory that humans are vastly better at comparing two objects than they are at abstract ranking. Millions of years of evolution make us good at picking the best apple off the tree, but terrible at deciding how closely the apple we picked hews to the true Platonic Form of appleness. (This is, by the way, why the <a href="http://en.wikipedia.org/wiki/Analytic_Hierarchy_Process" rel="nofollow">Analytic Hierarchy Process</a> is so nifty...but that's getting a bit off topic.)</p> <p>One final point to make is that SO uses an algorithm to find the best answers which is very similar to <a href="http://bash.org" rel="nofollow">bash.org</a>'s algorithm to find the best quote. It works well here, but fails terribly there - in large part because an old, highly rated, but now outdated answer here is likely to be edited. bash.org doesn't allow editing, and it's not clear how you'd even go about editing decade-old jokes about now-dated internet memes even if you could... In any case, my point is that the right algorithm usually depends on the details of your problem. :-)</p> http://stackoverflow.com/questions/150043/python-v-perl/150157#150157 14 Answer by Cody Hatch for Python v. Perl Cody Hatch 2008-09-29T19:04:38Z 2008-09-29T19:04:38Z <p>Perl is a fairly poor language to learn. Don't get me wrong - I like the language, and use it quite a bit. But for learning... Oh dear, where to start?</p> <ul> <li>There's always more than one way to do something. Usually dozens. And many of them - quite frankly - are very bad ways to do it. As a new user not only is this complexity confusing, but you probably won't be able to figure out the hidden pitfalls until too late.</li> <li>Perl has a confusing, cryptic, and very dense syntax. In the hands of an expert this allows for extremely powerful scripts to be written that fit into a line or two with a minimum of typing. For a novice, however, you may spend hours puzzling over some overly-clever trick in an example.</li> <li>Perl doesn't enforce good habits. That's part of the attraction - you can do <em>anything</em>. This includes writing clear documented code adhering to good programming practices. It also includes writing absolutely unmaintainable "write-once read-never" code.</li> </ul> <p>Python is just as powerful, but the syntax is much cleaner, and - I realize this is absolutely subjective - it's a bit harder to abuse. For example, the whitespace rules mean that you HAVE to indent and structure your code at least slightly sensibly, which is - frankly - a pretty good thing to enforce, especially when learning. Learning good habits early pays off. :-)</p> <p>In short, while Perl is a great language, for learning, I'd recommend Python. (Ruby would also be a decent choice.)</p> http://stackoverflow.com/questions/140409/why-avoid-pessimistic-locking-in-a-version-control-system/145014#145014 0 Answer by Cody Hatch for Why avoid pessimistic locking in a version control system? Cody Hatch 2008-09-28T02:24:34Z 2008-09-28T02:24:34Z <p>Pessimistic locking is a good idea if serious conflicts are going to be likely. For most programming you won't see any serious conflicts, so pessimistic locking is fairly pointless. Exceptions to this would be if you are:</p> <ul> <li>Working on binary files where you can't really merge - art assets (models, textures, etc) are a good example.</li> <li>Working with non-technical users who don't know how to merge, and don't want to learn (mostly artists, but some technical writers will throw a fit about this too).</li> <li>Working on very large files which can't easily be merged or broken into smaller files due to the high degree of complexity (never seen a situation like that first hand, but I'm sure it's possible).</li> </ul> <p>Otherwise...</p> http://stackoverflow.com/questions/133154/how-do-i-implement-quicksort-using-a-batch-file/133155#133155 18 Answer by Cody Hatch for How do I implement quicksort using a batch file? Cody Hatch 2008-09-25T12:55:44Z 2008-09-25T23:17:08Z <p>Turns out, it's not as hard as you might think. The syntax is ugly as hell, but the batch syntax is actually capable of some surprising things, including recursion, local variables, and some surprisingly sophisticated parsing of strings. Don't get me wrong, it's a terrible language, but to my surprise, it isn't completely crippled. I don't think I learnt anything about quicksort, but I learned a lot about batch files!</p> <p>In any case, here's quicksort in a batch file - and I hope you have as much fun trying to understand the bizarre syntax while reading it as I did while writing it. :-)</p> <pre><code>@echo off SETLOCAL ENABLEDELAYEDEXPANSION call :qSort %* for %%i in (%return%) do set results=!results! %%i echo Sorted result: %results% ENDLOCAL goto :eof :qSort SETLOCAL set list=%* set size=0 set less= set greater= for %%i in (%*) do set /a size=size+1 if %size% LEQ 1 ENDLOCAL &amp; set return=%list% &amp; goto :eof for /f "tokens=2* delims== " %%i in ('set list') do set p=%%i &amp; set body=%%j for %%x in (%body%) do (if %%x LEQ %p% (set less=%%x !less!) else (set greater=%%x !greater!)) call :qSort %less% set sorted=%return% call :qSort %greater% set sorted=%sorted% %p% %return% ENDLOCAL &amp; set return=%sorted% goto :eof </code></pre> <p>Call it by giving it a set of numbers to sort on the command line, seperated by spaces. Example:</p> <pre><code>C:\dev\sorting&gt;qsort.bat 1 3 5 1 12 3 47 3 Sorted result: 1 1 3 3 3 5 12 47 </code></pre> <p>The code is a bit of a pain to understand. It's basically standard quicksort. Key bits are that we're storing numbers in a string - poor man's array. The second for loop is pretty obscure, it's basically splitting the array into a head (the first element) and a tail (all other elements). Haskell does it with the notation x:xs, but batch files do it with a for loop called with the /f switch. Why? Why not?</p> <p>The SETLOCAL and ENDLOCAL calls let us do local variables - sort of. SETLOCAL gives us a complete copy of the original variables, but all changes are completely wiped when we call ENDLOCAL, which means you can't even communicate with the calling function using globals. This explains the ugly "ENDLOCAL &amp; set return=%sorted%" syntax, which actually works despite what logic would indicate. When the line is executed the sorted variable hasn't been wiped because the line hasn't been executed yet - then afterwards the return variable isn't wiped because the line has already been executed. Logical!</p> <p>Also, amusingly, you basically can't use variables inside a for loop because they can't change - which removes most of the point of having a for loop. The workaround is to set ENABLEDELAYEDEXPANSION which works, but makes the syntax even uglier than normal. Notice we now have a mix of variables referenced just by their name, by prefixing them with a single %, by prefixing them with two %, by wrapping them in %, or by wrapping them in !. And these different ways of referencing variables are almost completely NOT interchangeable!</p> <p>Other than that, it should be relatively easy to understand!</p> http://stackoverflow.com/questions/133154/how-do-i-implement-quicksort-using-a-batch-file 8 How do I implement quicksort using a batch file? Cody Hatch 2008-09-25T12:55:35Z 2008-09-25T23:17:08Z <p>While normally it's good to always choose the right language for the job, it can sometimes be instructive to try and do something in a language which is wildly inappropriate.</p> <ol> <li>It can help you understand the problem better. Maybe you don't <em>have</em> to solve it the way you thought you did.</li> <li>It can help you understand the language better. Maybe it supports more features than you realized.</li> </ol> <p>And pushing this idea to it's illogical conclusion...how would you implement quicksort in a batch file? Is it even possible?</p> http://stackoverflow.com/questions/110927/do-you-recommend-postgresql-over-mysql/111021#111021 8 Answer by Cody Hatch for Do you recommend PostgreSQL over MySQL? Cody Hatch 2008-09-21T13:31:53Z 2008-09-21T13:31:53Z <p>In general, PostgreSQL is a slightly better DB than MySQL. There's a few of reasons why this is so - however I can tell you right off the bat that switching DBs isn't going to fix your problem. PostgreSQL is a nice DB but it's not magically going to make a <strong>ten minute query</strong> execute instantly.</p> <p>What you need to do is figure out why you're getting horrific performance. Is MySQL configured right? Running on decently specced hardware? Is your table design sane? How about your queries? Are you <strong>sure</strong> they're sane? Because if I had to guess...</p> http://stackoverflow.com/questions/1383/what-is-unit-testing/101545#101545 2 Answer by Cody Hatch for What is unit testing? Cody Hatch 2008-09-19T12:45:14Z 2008-09-19T12:45:14Z <p>I was never tought unit testing at university, and it took me a while to "get" it. I read about it, went "ah, right, automated testing, that could be cool I guess", and then I forgot about it.</p> <p>It took quite a bit longer before I really figured out the point: Let's say you're working on a large system and you write a small module. It compiles, you put it through it's paces, it works great, you move on to the next task. Nine months down the line and two versions later someone else makes a change to some <em>seemingly</em> unrelated part of the program, and it breaks the module. Worse, they test their changes, and their code words but they don't test your module; hell, they may not even know your module <em>exists</em>.</p> <p>And now you've got a problem: broken code is in the trunk and nobody even knows. The best case is an internal tester finds it before you ship, but fixing code that late in the game is expensive. And if no internal tester finds it...well, that can get very expensive indeed.</p> <p>The solution is unit tests. They'll catch problems when you write code - which is fine - but you could have done that by hand. The real payoff is that they'll catch problems nine months down the line when you're now working on a completely different project, but a summer intern thinks it'll look tidier if those parameters were in alphabetical order - and then the unit test you wrote way back when fails, and someone throws things at the intern until he changes the parameter order back. <strong>That's</strong> the "why" of unit tests. :-)</p> http://stackoverflow.com/questions/99743/what-are-some-decent-isps-that-host-subversion/99875#99875 0 Answer by Cody Hatch for What Are Some Decent ISPs That Host Subversion Cody Hatch 2008-09-19T05:28:48Z 2008-09-19T06:06:34Z <p><a href="http://csoft.net" rel="nofollow">csoft.net</a> is pretty good. They've been around for a long time, they're cheap, good, open source friendly, very geek friendly, and accounts come with SVN (and with the more expensive plans, a ton of other features). Also, ever tried to deal with frontline tech support at a big host (like, ick, 1&amp;1) where you had a sneaking suspicion you were actually dealing with a very poorly programmed Eliza bot rather than a human? Yeah, well, csoft isn't like that. :-)</p> <p>If you're looking for something a little more user friendly, you might check out <a href="http://unfuddle.com/" rel="nofollow">Unfuddle</a>. I haven't used them personally but they get a lot of good press here on SO, and they've got a nice feature set.</p> http://stackoverflow.com/questions/99681/why-wont-tcl-die/99782#99782 1 Answer by Cody Hatch for Why won't Tcl die? Cody Hatch 2008-09-19T05:04:50Z 2008-09-19T05:04:50Z <p>It's a good question, and I'm really not sure. I've had to program in it a few times, and I just don't understand the advantage. Every time I look at a block of Tcl code that does anything significant I get a strong feeling that I must have <em>missed something</em>.</p> http://stackoverflow.com/questions/99419/what-is-the-best-way-to-store-software-documentation/99757#99757 1 Answer by Cody Hatch for What is the best way to store software documentation? Cody Hatch 2008-09-19T04:58:52Z 2008-09-19T04:58:52Z <p>Tools are important, but don't get too bogged down in finding the magic tool. No tool I've found yet has a "document everything magically using tiny invisible elves" tickbox. :-)</p> <p>A wiki will work fine. Or Sharepoint. Or Google docs. Or you could use a SVN repository. Hell you could do it with pens, notepaper, and a file cabinets if you really really had to. (I really don't recommend that!)</p> <p>The big important key is you need to have buy-in throughout the organization. What happens in a lot of shops is they go and spend a bunch of time and money on some fancy solution like Sharepoint, and then everyone uses it religiously for about two weeks, and then people get busy with hitting the latest milestone and that's the last anyone hears about it.</p> <p>Depending on your organization, field, the type of products your developing, etc., there are a few solutions to that, but one way or another you need to set up a system and <strong>use</strong> it. Appoint someone the official documentation czar, give them a cluebat, and tell them to hit people in the head everytime they say "oh yeah, I'll finish documenting that next week...". if that's what it takes. :-)</p> <p>As for tools... I'd recommend <a href="http://www.atlassian.com/software/confluence/" rel="nofollow">Confluence</a> by Atlassian. It's a fine wiki, it's designed to work in an enterprise environment, it has a lot of nifty features, it's customizable, it integrates well with some of the Atlassian's other nifty tools, and is basically a pretty solid product.</p> http://stackoverflow.com/questions/89523/lua-patterns-tips-and-tricks/89854#89854 3 Answer by Cody Hatch for Lua Patterns,Tips and Tricks Cody Hatch 2008-09-18T03:53:37Z 2008-09-19T02:32:17Z <p>Here's an elegant way to compute a Fibonacci series with metatables, which I suspect is what Thomas was thinking of:</p> <pre><code>fibotable = {[1] = 0, [2] = 1} setmetatable(fibotable, { __index = function (t, i) t[i] = t[i-1]+t[i-2] return t[i] end }) print(fibotable[11]) </code></pre> <p>(Stolen from Jan De Vos's post)</p> <p>What's happening here is that when you try to check the 11th number in the series it checks to see if it's been calculated. If not it tries to do so by adding the 10th and 9th numbers - which requires checking to see if they've been calculated yet. If either or both of them haven't been calculated yet it recurses until it hits something which has been calculated, then it calculates all the needed numbers, storing them as it goes so that they'll be cached for future lookups and calculations. It's conceptually very elegant, I think.</p> http://stackoverflow.com/questions/68178/need-a-wiki-where-i-can-export-to-word/93009#93009 1 Answer by Cody Hatch for Need a wiki where I can export to Word Cody Hatch 2008-09-18T14:25:49Z 2008-09-18T14:25:49Z <p>As tgamblin already mentioned <a href="http://www.atlassian.com/software/confluence/" rel="nofollow">Confluence</a> does what you want - it'll export to Word. However it also does more than that; with the (free) <a href="http://www.atlassian.com/office/" rel="nofollow">Office Connector</a> you can edit wiki pages in word, edit individual tables in excel, import word documents into the wiki, etc. Quite nifty if you're looking for that level of integration.</p> <p>(Fair warning - although they claim it works with OpenOffice, I couldn't get it to work. Really slick with MS Office though.)</p> http://stackoverflow.com/questions/92001/what-is-the-real-difference-between-pointers-and-references/92369#92369 1 Answer by Cody Hatch for What is the real difference between Pointers and References? Cody Hatch 2008-09-18T13:09:08Z 2008-09-18T13:09:08Z <p>Strings are fundamental to C (and other related languages). When programming in C, <strong>you</strong> must manage your memory. You don't just say "okay, I'll need a bunch of strings"; you need to think about the data structure. How much memory do you need? When will you allocate it? When will you free it? Let's say you want 10 strings, each with no more than 80 characters.</p> <p>Okay, each string is an array of characters (81 characters - you mustn't forget the null or you'll be sorry!) and then each string is itself in an array. The final result will be a multidimensional array something like</p> <pre><code>char dict[10][81]; </code></pre> <p>Note, incidentally, that dict isn't a "string" or an "array", or a "char". It's a pointer. When you try to print one of those strings, all you're doing is passing the address of a single character; C assumes that if it just starts printing characters it will eventually hit a null. And it assumes that if you are at the start of one string, and you jump forward 81 bytes, you'll be at the start of the next string. And, in fact taking your pointer and adding 81 bytes to it is the <em>only possible way</em> to jump to the next string. </p> <p>So, why are pointers important? Because you can't do anything without them. You can't even do something simple like print out a bunch of strings; you <strong>certainly</strong> can't do anything interesting like implement linked lists, or hashes, or queues, or trees, or a file system, or some memory management code, or a kernel or...whatever. You NEED to understand them because C just hands you a block of memory and let's you do the rest, and doing anything with a block of raw memory requires pointers.</p> <p>Also many people suggest that the ability to understand pointers correlates highly with programming skill. Joel has made this argument, among others. For example</p> <blockquote> <p>Now, I freely admit that programming with pointers is not needed in 90% of the code written today, and in fact, it's downright dangerous in production code. OK. That's fine. And functional programming is just not used much in practice. Agreed.</p> <p>But it's still important for some of the most exciting programming jobs. Without pointers, for example, you'd never be able to work on the Linux kernel. You can't understand a line of code in Linux, or, indeed, any operating system, without really understanding pointers.</p> </blockquote> <p>From <a href="http://www.joelonsoftware.com/articles/ThePerilsofJavaSchools.html" rel="nofollow">here</a>. Excellent article.</p> http://stackoverflow.com/questions/90831/should-we-write-software-to-be-used-at-work-in-our-own-time/91032#91032 2 Answer by Cody Hatch for Should we write software to be used at work, in our own time? Cody Hatch 2008-09-18T08:52:56Z 2008-09-18T08:52:56Z <p><strong>It Depends</strong></p> <p>You really should be doing some coding projects in your own time anyway. You should always be devoting a little time to staying current with new technologies, frameworks, languages, code patterns, editors, etc. I'm pretty sure I don't need to explain why. :-)</p> <p>Now if you're going to be spending a lazy Sunday afternoon really getting to grips with this new Java web framework you've been hearing about anyway...there's nothing obviously wrong with trying to solve a problem you've run into at work. It might make your bosses happy, and it'll look sexy on your CV - win/win, right?</p> <p>Also, as others have mentioned, give some thought to licensing. Unless your contract or other agreements preclude it, you should definitely make sure to license anything you write under a permissive open source license. Let your employers do anything with it they like, but keep ownership if at <em>all</em> possible. Something like the <a href="http://en.wikipedia.org/wiki/ISC_license" rel="nofollow">ISC license</a> is great for this.</p> <p>The downside of course is that you need to make sure people don't <em>ever</em> start to <em>expect</em> you to code up solutions on your own time!</p> <p>Incidentally, many organizations solve this by actually encouraging their employees to work on oddball ideas on company time. Google does this with their "20% rule" but Atlassian has a similar policy with their <a href="http://blogs.atlassian.com/developer/2007/09/atlassian_fedex_day_vi.html" rel="nofollow">Fedex Days</a>. Whatever you call it, I think it's an excellent idea - you might take a shot at selling it to upper management at your workplace. (Good luck!)</p> http://stackoverflow.com/questions/90238/whats-the-syntax-for-mod-in-java/90247#90247 20 Answer by Cody Hatch for What's the syntax for mod in java Cody Hatch 2008-09-18T05:18:58Z 2008-09-18T07:14:10Z <p>The modulus operator is %</p> <p>To use you example:</p> <pre><code>if ( (a % 2) == 0) { isEven = true } else { isEven = false } </code></pre> http://stackoverflow.com/questions/90308/what-languages-do-date-time-and-calendar-operations-really-well/90364#90364 0 Answer by Cody Hatch for What languages do date, time, and calendar operations really well? Cody Hatch 2008-09-18T05:49:43Z 2008-09-18T05:49:43Z <p>Ruby has excellent support, actually. Check out <a href="http://www.developer.com/open/article.php/3729206" rel="nofollow">this page</a>. Really great support for turning strings into dates, dates into strings, doing math on dates, parsing "natural language" strings like "3 months ago this friday at 3:45pm" into an actual date, turning dates into strings so you can do stuff like "Sam last logged in 4 days ago" or whatever...</p> <p>Very nifty.</p> http://stackoverflow.com/questions/90217/what-is-the-best-way-to-connect-remotely-to-a-mac/90301#90301 2 Answer by Cody Hatch for What is the best way to connect remotely to a mac Cody Hatch 2008-09-18T05:32:02Z 2008-09-18T05:32:02Z <p>In some situations <a href="https://www.copilot.com/" rel="nofollow">Copilot</a> is a good solution. Not so much for day-to-day admin, but great for remote tech support.</p> <p>If you need the solution to be cross-platform (ie, controlling an OS X box from Windows) then VNC is the obvious choice. I've had much better luck with the free <a href="http://www.redstonesoftware.com/products/vine_server" rel="nofollow">Vine VNC Server</a> than with Apple's built in one. As for viewers, <a href="http://sourceforge.net/projects/cotvnc/" rel="nofollow">Chicken of the VNC</a> on OS X or <a href="http://www.tightvnc.com/" rel="nofollow">Tight VNC</a> on Windows are good solutions.</p> <p>As others have said, for security firewall VNC and then use an SSH tunnel. There's lots of ways to do that, and the exact details depends on OS, firewall, network, etc. One method of creating an SSH tunnel for VNC is described <a href="http://www.macosxhints.com/article.php?story=20050429153115383" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/88489/when-is-a-browser-considered-dead/89472#89472 2 Answer by Cody Hatch for When is a browser considered "dead"? Cody Hatch 2008-09-18T02:26:55Z 2008-09-18T02:26:55Z <p>Unfortunately, you won't find a <strong>good</strong> answer to this; even if you found some hard statistics on browser versions for visitors to your website, that almost certainly doesn't tell you what you need to know.</p> <p>What you need to know isn't "what percent of my visitors use Browser X", it's "what percent of my revenue comes from visitors who use Browser X". That one guy visiting your site using an ancient copy of IE might be the managing director of a big company wanting to buy a site license; the 10k visitors you had last month using Firefox 3 might be college students wanting to plagiarize your documentation for an essay.</p> <p>Really, you need to know your market - not just the raw browser statistics. If you pay the bills by selling stuff to graphic designers, then rock solid Safari support matters a lot more than if you're in the job of selling Visual Studio plugins. Not helpful, I know!</p> http://stackoverflow.com/questions/644684/turn-image-sequence-into-video-with-transparency Comment by Cody Hatch on Turn image sequence into video with transparency Cody Hatch 2009-03-13T23:51:00Z 2009-03-13T23:51:00Z Right, it should just be transparent, so if you overlaid it on a background image you could see the background. I've added more info about that to the question. http://stackoverflow.com/questions/163562/wiki-style-text-formatting/197281#197281 Comment by Cody Hatch on Wiki style text formatting Cody Hatch 2008-12-31T13:40:42Z 2008-12-31T13:40:42Z Sadly, those really are the only reasons. I learned Textile faster than Markdown, and I think the syntax is prettier. <i>shrug</i> http://stackoverflow.com/questions/24579/wysiwyg-editor-gem-for-rails/24607#24607 Comment by Cody Hatch on WYSIWYG editor gem for Rails? Cody Hatch 2008-10-10T10:12:40Z 2008-10-10T10:12:40Z I'd like to strongly recommend at least thinking about going with Textile as a solution. For a lot of cases anything complex enough you NEED a WYSIWYG editor is complex enough a WYSIWYG editor won't work well. http://stackoverflow.com/questions/113605/it-inventory-tracking/113657#113657 Comment by Cody Hatch on IT Inventory Tracking Cody Hatch 2008-09-29T05:35:53Z 2008-09-29T05:35:53Z No, it is not open source. But it IS free, and very very good. http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging Comment by Cody Hatch on Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? Cody Hatch 2008-09-27T23:20:12Z 2008-09-27T23:20:12Z The post about Zendesk might as well have been a commercial - and it was just about as useless as the rest. Something short like &quot;Hey, App X does <i>exactly</i> what you're asking for!&quot; is really all it takes... http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging/140262#140262 Comment by Cody Hatch on Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? Cody Hatch 2008-09-27T13:37:20Z 2008-09-27T13:37:20Z One thing to note is Jira has a good user community, a lot of plugins, and is fairly hackable (access to the source code comes with a license. It's entirely possible that even if Jira doesn't do what you want out of the box, it might be possible to MAKE it work. :-) http://stackoverflow.com/questions/140236/which-issue-trackers-support-sub-tickets-and-how-well-do-they-work-for-bridging Comment by Cody Hatch on Which issue trackers support sub-tickets, and how well do they work for bridging the gap between project managers and developers? Cody Hatch 2008-09-27T00:24:10Z 2008-09-27T00:24:10Z Is it me, or did like...TWO people actually read the question before answering? WTF. (As for me, I've never found an issue tracker with that feature, but it sounds nifty.) http://stackoverflow.com/questions/77352/how-do-i-reward-my-developers-for-the-little-things-they-get-right/77555#77555 Comment by Cody Hatch on How do I reward my developers for the little things they get right? Cody Hatch 2008-09-21T07:25:10Z 2008-09-21T07:25:10Z Good link; Joel's article is the definitive answer I think. http://stackoverflow.com/questions/108387/apache-and-iis-side-by-side-both-listening-to-port-80-on-windows2003/108397#108397 Comment by Cody Hatch on Apache and IIS side by side (both listening to port 80) on windows2003 Cody Hatch 2008-09-20T16:17:18Z 2008-09-20T16:17:18Z This is exactly right; I had to do this a couple months ago to solve the exact same problem. If using two IP addresses is acceptable, this is a very easy and robust solution. http://stackoverflow.com/questions/99681/why-wont-tcl-die/99944#99944 Comment by Cody Hatch on Why won't Tcl die? Cody Hatch 2008-09-19T06:23:44Z 2008-09-19T06:23:44Z Good point about Tk. http://stackoverflow.com/questions/97506/formatting-of-if-statements/97917#97917 Comment by Cody Hatch on Formatting of if Statements Cody Hatch 2008-09-19T06:00:44Z 2008-09-19T06:00:44Z I've never had a bug because of that... ...because I'm smart enough to always use braces so it can't happen. If you don't...it will. http://stackoverflow.com/questions/99681/why-wont-tcl-die Comment by Cody Hatch on Why won't Tcl die? Cody Hatch 2008-09-19T05:08:52Z 2008-09-19T05:08:52Z I don't think anyone would deny that bash has a <i>terrible</i> syntax, but it's also pretty clear why people still use it. The same doesn't appear to be true for Tcl. :-) http://stackoverflow.com/questions/99419/what-is-the-best-way-to-store-software-documentation/99600#99600 Comment by Cody Hatch on What is the best way to store software documentation? Cody Hatch 2008-09-19T05:06:41Z 2008-09-19T05:06:41Z Hey, nifty tool. Incidentally, have you looked at Xilize? Somewhat similar concept, although very different implementation. <a href="http://xilize.sourceforge.net/" rel="nofollow">xilize.sourceforge.net</a> http://stackoverflow.com/questions/89523/lua-patterns-tips-and-tricks/89854#89854 Comment by Cody Hatch on Lua Patterns,Tips and Tricks Cody Hatch 2008-09-19T02:34:28Z 2008-09-19T02:34:28Z Tanoku - you were right. The solution in my post now is much more elegant, I think. :-) http://stackoverflow.com/questions/89523/lua-patterns-tips-and-tricks/91106#91106 Comment by Cody Hatch on Lua Patterns,Tips and Tricks Cody Hatch 2008-09-19T02:32:12Z 2008-09-19T02:32:12Z You are absolutely correct. I misread what the for loop was doing and...well...yeah. Embarrassing. And your example is MUCH cleaner too.