User tuxedo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T21:55:35Zhttp://stackoverflow.com/feeds/user/3286http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/65971/what-is-the-best-resource-you-know-to-learn-dojo/78894#788941Answer by tuxedo for What is the best resource you know to learn Dojo?tuxedo2008-09-17T01:22:17Z2008-09-17T01:22:17Z<p>This afternoon I was running into a Dojo problem that just wouldn't budge. I boiled it down to a case that was simple enough to ask for help on the #dojo channel on the <a href="http://www.freenode.net/" rel="nofollow">FreeNode</a> IRC network. A Dojo developer took a look at my issue very quickly, determined that it was due to a bug in a recently-created interface, and brought the developer who had written that module into the conversation. There was a bug fix in the trunk within half an hour, and everything worked fine afterward.</p>
<p>If you just can't get anywhere with the examples or the documentation, I'd recommend joining #dojo.</p>
http://stackoverflow.com/questions/39847/using-c-in-a-shared-multi-platform-posix-environment/40367#403671Answer by tuxedo for Using C in a shared multi-platform POSIX environment.tuxedo2008-09-02T19:29:07Z2008-09-02T19:29:07Z<p>Launching a Python interpreter instance just to select the right binary to run would be much heavier than you need. I'd distribute a shell .rc file which provides aliases.</p>
<p>In /shared/bin, you put the various binaries: /shared/bin/toolname-mac, /shared/bin/toolname-debian-x86, /shared/bin/toolname-netbsd-dreamcast, etc. Then, in the common shared shell .rc file, you put the logic to set the aliases according to platform, so that on OSX, it gets alias toolname=/shared/bin/toolname-mac, and so forth.</p>
<p>This won't work as well if you're adding new tools all the time, because the users will need to reload the aliases.</p>
<p>I wouldn't recommend distributing tools this way, though. Testing and qualifying new builds of the tools should be taking up enough time and effort that the extra time required to distribute the tools to the users is trivial. You seem to be optimizing to reduce the distribution time. Replacing tools that quickly in a live environment is all too likely to result in lengthy and confusing downtime if anything goes wrong in writing and building the tools--especially when subtle cross-platform issues creep in.</p>
http://stackoverflow.com/questions/36932/whats-the-best-way-to-implement-an-enum-in-python/38762#387621Answer by tuxedo for What's the best way to implement an 'enum' in Python?tuxedo2008-09-02T03:20:30Z2008-09-02T03:20:30Z<p>davidg recommends using dicts. I'd go one step further and use sets:</p>
<pre><code>months = set('January', 'February', ..., 'December')
</code></pre>
<p>Now you can test whether a value matches one of the values in the set like this:</p>
<pre><code>if m in months:
</code></pre>
<p>like dF, though, I usually just use string constants in place of enums.</p>
http://stackoverflow.com/questions/38508/whats-the-best-way-to-return-multiple-values-from-a-function-in-python/38760#387603Answer by tuxedo for What's the best way to return multiple values from a function in Python?tuxedo2008-09-02T03:15:49Z2008-09-02T03:15:49Z<p>Throwing an exception for failure is one good way to proceed, and if you're returning a lot of different values, you can return a tuple. For the specific case you're citing, I often take an intermediate approach: return the modified string on success, and return None on failure. I'm enough of an unreconstructed C programmer to want to return a NULL pointer to char on failure.</p>
<p>If I were writing a routine to be used as part of a larger library and consumed by other developers, I'd throw an exception on failure. When I'm eating my own dogfood, I'll probably return different types and test on return.</p>
http://stackoverflow.com/questions/31672/learning-fortran-in-the-modern-era/31687#316872Answer by tuxedo for Learning FORTRAN In the Modern Eratuxedo2008-08-28T05:01:25Z2008-08-28T05:01:25Z<p>Well, in one sense, you're lucky, 'cause Fortran doesn't have much in the way of subtle flow-of-control constructs or inheritance or the like. On the other, it's got some truly amazing gotchas, like the arithmetically-calculated branch-to-numeric-label stuff, the implicitly-typed variables which don't require declaration, the lack of true keywords.</p>
<p>I don't know about the "performance enhancing improvements". I'd guess most of them are probably ineffective, as a couple of decades of compiler technology have made most hinting unnecessary. Unfortunately, you'll probably have to leave things the way they are, unless you're planning to do a massive rewrite.</p>
<p>Anyway, the core scientific calculation code should be fairly readable. Any programming language using infix arithmetic would be good preparation for reading Fortran's arithmetic and assignment code.</p>
http://stackoverflow.com/questions/20853/macports-or-fink/31613#316131Answer by tuxedo for MacPorts or Fink?tuxedo2008-08-28T03:34:09Z2008-08-28T03:34:09Z<p>I tried Fink and got frustrated with it, though I've long since forgotten the details of why. I switched to MacPorts back when it was still DarwinPorts, and now I'm getting frustrated with it instead.</p>
<p>I find about half my development toolchain needs to be tweaked or rebuilt by hand after I've tried installing tools with MacPorts. I use <a href="http://darcs.net" rel="nofollow">Darcs</a> for revision control, which requires <a href="http://www.haskell.org/ghc/" rel="nofollow">GHC</a> to build. I install both through MacPorts and discover that MacPorts is typically lagging weeks to months behind the current version of Darcs, so I end up using the stock Darcs to download current code and rebuild from scratch.</p>
<p>I've had such misadventures with selecting a toolchain for Python 2.5, PostgreSQL, psycopg, and SQLAlchemy that I'd rather go hide in a corner than think about it again.</p>
<p>In short, you might as well pick either Fink or MacPorts at random and then expect to spend a significant amount of time fixing or augmenting it.</p>
http://stackoverflow.com/questions/29156/mac-virtualization-vm-ware-fusion-or-parallels/31605#316050Answer by tuxedo for Mac Virtualization: VM Ware Fusion or Parallelstuxedo2008-08-28T03:26:34Z2008-08-28T03:26:34Z<p>I took Parallels for a trial run, and then VMware released Fusion with a discount that brought it below the price of buying Parallels, so I bought Fusion.</p>
<p>I was already familiar with VMware's desktop virtualization software on non-Mac platforms, so I'm comfortable with its interface. Some say that Parallels feels more like a native Mac app than Fusion, but that doesn't trouble me. For me, the major distinction is that Fusion allows at least two CPU cores to be devoted to a virtual machine, while Parallels still limits the VM to one core. My Mac has four cores, so I don't see any reason to go with Parallels.</p>
<p>That being said, it'd be worth your while to try both of them out and see which one meets your needs best. They're both pretty reasonably priced.</p>
http://stackoverflow.com/questions/22500/what-are-the-major-differences-between-ansi-c-and-kr-c/31594#315944Answer by tuxedo for What are the major differences between ANSI C and K&R C?tuxedo2008-08-28T03:15:27Z2008-08-28T03:15:27Z<p>Function prototypes were the most obvious change between K&R C and C89, but there were plenty of others. A lot of important work went into standardizing the C library, too. Even though the standard C library was a codification of existing practice, it codified <em>multiple</em> existing practices, which made it more difficult. P.J. Plauger's book, <a href="http://rads.stackoverflow.com/amzn/click/0131315099" rel="nofollow"><em>The Standard C Library</em></a>, is a great reference, and also tells some of the behind-the-scenes details of <em>why</em> the library ended up the way it did.</p>
<p>The ANSI/ISO standard C is very similar to K&R C in most ways. It was intended that most existing C code should build on ANSI compilers without many changes. Crucially, though, in the pre-standard era, the semantics of the language were open to interpretation by each compiler vendor. ANSI C brought in a common description of language semantics which put all the compilers on an equal footing. It's easy to take this for granted now, some 20 years later, but this was a significant achievement.</p>
<p>For the most part, if you don't have a pre-standard C codebase to maintain, you should be glad you don't have to worry about it. If you do--or worse yet, if you're trying to bring an old program up to more modern standards--then you have my sympathies.</p>
http://stackoverflow.com/questions/13128/how-to-combine-several-c-c-libraries-into-one/31578#315780Answer by tuxedo for How to combine several C/C++ libraries into one?tuxedo2008-08-28T02:58:33Z2008-08-28T02:58:33Z<p>Combining several third-party libraries into one could create more problems for you--for instance, if two of those libraries define a common symbol which your program doesn't use. Now you've got to extract all (or all-but-one) of the instances of the common symbol before you combine the libraries.</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/30680#3068022Answer by tuxedo for What is the single most influential book every programmer should read?tuxedo2008-08-27T17:23:38Z2008-08-27T17:23:38Z<p>Robert M. Pirsig's <em>Zen and the Art of Motorcycle Maintenance</em> has a little section near the end about Gumption Traps. That's the best advice I've ever read on how to debug code or solve problems in general. The rest of the book is pretty good, too.</p>