User Hank - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T22:48:38Zhttp://stackoverflow.com/feeds/user/7610http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/130097/real-world-prolog-usage22Real world Prolog usageHank2008-09-24T21:29:26Z2009-11-19T00:23:05Z
<p>Many study Prolog in college, but I have personally not come in contact with it professionally. The traditional examples given are AI and expert system applications, but what have you used it for and what made Prolog a suitable language for the task?</p>
http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/112186#112186135Answer by Hank for What is the worst interviewee answer?Hank2008-09-21T21:10:39Z2009-06-14T04:48:38Z<p>Q: "What makes you like programming?"</p>
<p>A: "I don't"</p>
<p>Didn't see that one coming! The interview was for a senior developer position so a certain enthusiasm for the subject matter was more or less assumed.</p>
http://stackoverflow.com/questions/720391/what-is-the-best-way-to-evaluate-how-well-you-understand-a-particular-language/720415#7204150Answer by Hank for What is the best way to evaluate how well you understand a particular language?Hank2009-04-06T06:51:43Z2009-04-06T06:51:43Z<p>You could write something small and silly like a Markov chain based text generator or a couple of <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a> problems to see how you're doing in addition to looking long and hard at a few open source projects, preferably ones where you already understand the problem domain.</p>
http://stackoverflow.com/questions/705863/how-do-i-code-and-compile-an-amiga-application/717333#7173331Answer by Hank for How do I code and compile an Amiga application?Hank2009-04-04T16:21:28Z2009-04-04T16:21:28Z<p>AMOS, as previously mentioned, is a pretty decent basic dialect, though I would probably take a look at Blitz Basic instead. Or straight 68k assembly using Asm-ONE of course. Asm-One is an IDE of sorts, just don't expect Visual Studio level support tools.</p>
<p>SAS/C was my weapon of choice on the Amiga platform, though there are ports of other C compilers as well. </p>
http://stackoverflow.com/questions/696085/is-latex-used-outside-of-academia-and-if-not-what-is/696425#6964251Answer by Hank for Is LaTeX used outside of academia and if not what is ?Hank2009-03-30T08:38:03Z2009-03-30T08:38:03Z<p>If you are interested in the print quality of LaTeX, but want an easier tool to work with I recommend taking a look at <a href="http://www.lyx.org" rel="nofollow">LyX</a>.</p>
http://stackoverflow.com/questions/635278/what-does-your-development-environment-look-like/654365#6543651Answer by Hank for What does your development environment look like?Hank2009-03-17T13:56:27Z2009-03-17T13:56:27Z<p>I'm a full time student with occasional consultancy jobs on the side. Your mileage may vary.</p>
<ul>
<li>Hardware: Single laptop, currently a Macbook. 2GB RAM. Co-located Compaq rack server running Debian for remote backups, repositories, Trac and the odd cron job.</li>
<li>Software: Emacs for Haskell, LaTeX and plain text editing, XCode for C and C++, Netbeans for Java. Git for own projects. Most of my clients use Subversion though. </li>
<li>Networking: Whatever is available where I'm staying at the time.</li>
<li>Misc: Laptop carry bag with space for pencils and paper. MP3 player to be able to filter out external noise. Coffee and water.</li>
</ul>
http://stackoverflow.com/questions/647540/applications-for-using-couchdb-and-a-rdbms-together/647590#6475901Answer by Hank for Applications for using couchDB and a RDBMS togetherHank2009-03-15T10:05:32Z2009-03-15T10:05:32Z<p>One idea is to use a relational database as the main data store and a document-based db as a data distribution mechanism from the back end to the front end(s).</p>
http://stackoverflow.com/questions/641780/what-is-a-better-language-introduction-preview-than-hello-world/641795#6417950Answer by Hank for What is a better language-introduction preview than "Hello World"?Hank2009-03-13T08:03:03Z2009-03-13T08:03:03Z<p>Depends on what core feature of the language sets it apart from other languages out there. The <a href="http://www.haskell.org/haskellwiki/Introduction#Quicksort%5Fin%5FHaskell" rel="nofollow">Haskell quicksort comes to mind</a>.</p>
<p>With that said, hello world <em>does</em> show how to immediately produce some sort of output.</p>
http://stackoverflow.com/questions/631954/is-there-any-future-for-server-side-javascript/631959#6319591Answer by Hank for Is there any future for server-side JavaScript?Hank2009-03-10T19:45:19Z2009-03-10T19:45:19Z<p>Views in CouchDB are written in javascript by default, so I'd say yes if that project takes off.</p>
http://stackoverflow.com/questions/620984/what-are-the-valuable-lessons-of-history-in-programming-and-software-engineering/622399#6223990Answer by Hank for What are the valuable lessons of history in programming and software engineering?Hank2009-03-07T20:10:49Z2009-03-07T20:10:49Z<p><a href="http://en.wikiquote.org/wiki/Edsger%5FW.%5FDijkstra" rel="nofollow">"Thank goodness we don't have only serious problems, but ridiculous ones as well." - Dijkstra</a></p>
<p>To me, it means enjoying the ride while I can.</p>
http://stackoverflow.com/questions/575172/portable-non-relational-database/575193#5751933Answer by Hank for portable non-relational databaseHank2009-02-22T16:41:53Z2009-02-22T16:41:53Z<p>Have you looked at <a href="http://couchdb.apache.org/" rel="nofollow">CouchDB</a>? It's non-relational, data can be migrated with relative ease and it has a Python API in the form of <a href="http://code.google.com/p/couchdb-python/" rel="nofollow">couchdb-python</a>. It does have some fairly unusual dependencies in the form of <a href="http://www.mozilla.org/js/spidermonkey/" rel="nofollow">Spidermonkey</a> and <a href="http://erlang.org/" rel="nofollow">Erlang</a> though.</p>
<p>As for pure python solutions, I don't know how far along <a href="http://quentel.pierre.free.fr/PyDbLite/index.html" rel="nofollow">PyDBLite</a> has come but it might be worth checking out nonetheless.</p>
http://stackoverflow.com/questions/572979/howto-create-software-package-in-unix-linux/572988#5729886Answer by Hank for Howto create software package in Unix/LinuxHank2009-02-21T13:28:26Z2009-02-21T13:28:26Z<p>Look into the GNU autoconf/automake toolchain. <a href="http://sourceware.org/autobook/" rel="nofollow">Here's a free tutorial/book.</a></p>
http://stackoverflow.com/questions/501304/implementing-user-ratings-favorites-on-couchdb/510932#5109328Answer by Hank for Implementing user ratings / favorites on CouchDBHank2009-02-04T11:19:00Z2009-02-11T14:52:11Z<p>Sounds like you've got a reasonable idea going. CouchDB is so new that I think it'll take awhile for best practices to shake out.</p>
<p>A map/reduce pair like this might form a reasonable starting point.</p>
<p>map:</p>
<pre><code>function(doc) {
if(doc.type='rating' && doc.content_id) {
emit(doc.content_id, doc.rating);
}
}
</code></pre>
<p>reduce:</p>
<pre><code>function(keys, values) {
return sum(values)/values.length
}
</code></pre>
<p>NB: That <code>map</code> function requires adding the proper type to your <code>Rating</code> model:</p>
<pre><code>{
type: 'rating',
user_id: "USERID",
content_id: "CONTENTID",
rating: 6
}
</code></pre>
http://stackoverflow.com/questions/428884/how-to-play-mp3-files-in-c/495272#4952720Answer by Hank for How to play MP3 files in C?Hank2009-01-30T11:53:56Z2009-01-30T11:53:56Z<p><a href="http://www.mpg123.org/" rel="nofollow">mpg123</a> has a generic remote interface that you access by starting the executable with the -R option. You can then send commands (such as load, pause etc) over a fifo pipe or to stdin of the subprocess. If nothing else it's easy to debug and test manually.</p>
http://stackoverflow.com/questions/162529/what-is-the-fashionable-programming-language-in-academia/488721#4887210Answer by Hank for What is the fashionable programming language in academia?Hank2009-01-28T18:19:09Z2009-01-28T18:19:09Z<p>A really tough question to answer without knowing what field(s) specifically you're looking at. Hammers and screwdrivers and all that.</p>
<p>At my university Java is widely used as an all-purpose language both in undergrad and postgrad settings, taught to all undergrads except those that have their introductory computer science courses taught with Python. In fact, I believe most mainstream (and some not so mainstream) programming languages are represented among the graduate students and research programs. Matlab deserves an honourable mention as it, while not a general purpose environment, is ubiquitous around these parts as well.</p>
http://stackoverflow.com/questions/487352/learning-game-programming-part-2-math/487384#4873841Answer by Hank for Learning game programming (part 2) (math)Hank2009-01-28T12:04:47Z2009-01-28T12:04:47Z<p>For vectors specifically, an introductory text or course on linear algebra should be able to get you up to speed fairly quickly.</p>
http://stackoverflow.com/questions/464868/applying-programming-concepts-to-day-to-day-life/482806#4828061Answer by Hank for Applying programming concepts to day to day lifeHank2009-01-27T09:47:03Z2009-01-27T09:47:03Z<p>Not everything worth doing is possible to do in polynomial time.</p>
http://stackoverflow.com/questions/480722/how-can-i-set-a-td-width-to-visually-truncate-its-displayed-contents/480861#4808610Answer by Hank for How can I set a <td> width to visually truncate its displayed contents?Hank2009-01-26T18:31:42Z2009-01-26T18:49:31Z<p>You could use jQuery or plain javascript to surround the content of your cell(s) with div tags and set a fixed width and overflow:hidden on those instead. Not beautiful, but it'd work.</p>
<p>ETA:</p>
<pre><code><td><div style="width:30px;overflow:hidden">Text goes here</div></td>
</code></pre>
<p>Since the DIV is the bounding element, that's where the width should be set.</p>
http://stackoverflow.com/questions/480093/should-i-use-recursion-or-memoization-for-an-algorithm/480131#4801311Answer by Hank for Should I use recursion or memoization for an algorithm?Hank2009-01-26T15:20:46Z2009-01-26T15:20:46Z<p>Recursion does not need to use a significant amount stack space if the problem can be solved using tail recursion techniques. As said previously, depends on the problem.</p>
http://stackoverflow.com/questions/399704/xml-parser-for-c/399708#3997081Answer by Hank for XML Parser for CHank2008-12-30T07:19:28Z2008-12-30T07:19:28Z<p><a href="http://expat.sourceforge.net" rel="nofollow">Expat</a> is pretty decent. It's hard to give good recommendations without more information though.</p>
http://stackoverflow.com/questions/304977/can-you-use-modpython-with-jboss/304985#3049850Answer by Hank for Can you use mod_python with JBoss?Hank2008-11-20T11:12:37Z2008-11-20T11:12:37Z<p>Have you looked into <a href="http://www.jython.org/Project/" rel="nofollow">Jython</a>? Tomcat is built in Java after all.</p>
http://stackoverflow.com/questions/295280/whats-one-change-in-your-lifestyle-that-positively-affected-your-work-and-health/295332#2953322Answer by Hank for What's one change in your lifestyle that positively affected your work and health?Hank2008-11-17T11:08:46Z2008-11-17T11:08:46Z<p>Walking to work instead of taking the subway. Or if that isn't doable, getting off the subway a few stops before the closest one to the office.</p>
<p>I like being awake when I get to the office, instead of after the first cup of coffee.</p>
http://stackoverflow.com/questions/281555/how-good-is-freebsd-as-a-development-platform/281628#2816282Answer by Hank for How good is FreeBSD as a development platform?Hank2008-11-11T17:47:59Z2008-11-11T17:47:59Z<p>You can either run the native Java 1.6 port or the Linux JDK from Sun in Linux emulation mode, both are available in the <a href="http://www.freebsd.org/ports/" rel="nofollow">ports tree</a>. I used to run the Linux JDK (with Emacs JDEE) way back without any problems, your mileage may vary however.</p>
<p>As for IDEs, both Netbeans and Eclipse are available in the ports tree.</p>
<p>I recommend at least trying it out, if for no other reason than to see what the fuss is about. All it'll cost you is time.</p>
http://stackoverflow.com/questions/265756/how-do-you-keep-the-state-information-of-the-projects-youre-working-on/265853#2658531Answer by Hank for How do you keep the state information of the projects you're working on?Hank2008-11-05T17:00:22Z2008-11-05T17:00:22Z<p>Depends on the project and whether or not the notes are to be shared. I keep my personal notes using pen and paper. Quick and it's easy to add illustrations and references.</p>
<p>Shared notes and FAQ-type tribal knowledge I prefer to use a wiki or development blog for. The blog format is great to provide a timeline and (tagged) references.</p>
http://stackoverflow.com/questions/246232/regular-expression-nongreedy-is-greedy/246236#2462361Answer by Hank for regular expression nongreedy is greedyHank2008-10-29T09:35:08Z2008-10-29T09:35:08Z<p>The string you are searching in (the haystack as it were) does not contain the substring "ton".</p>
<p>It does however contain the substring "tooooooooooooon".</p>
http://stackoverflow.com/questions/161286/most-amazing-piece-of-code-youve-ever-seen/161345#1613451Answer by Hank for Most amazing piece of code you've ever seenHank2008-10-02T08:28:23Z2008-10-02T08:28:23Z<p>The Total Fit algorithm for hyphenation and line breaking as devised by Knuth and Plass and used in TeX is stunning. More than anything, it showed me the power and beauty of graphs.</p>
<p><a href="http://defoe.sourceforge.net/folio/knuth-plass.html" rel="nofollow">Here's an in depth</a> explanation of how it works.</p>
http://stackoverflow.com/questions/146576/why-is-the-java-main-method-static/146592#1465927Answer by Hank for Why is the Java main method static?Hank2008-09-28T19:51:03Z2008-09-28T19:51:03Z<p>If it wasn't, which constructor should be used if there are more than one?</p>
<p>There is more information on the initialization and execution of Java programs available in the <a href="http://java.sun.com/docs/books/jls/third_edition/html/execution.html" rel="nofollow">Java Language Specification</a>.</p>
http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/143682#1436820Answer by Hank for Is there a need to use assembly these days?Hank2008-09-27T14:01:39Z2008-09-27T14:09:06Z<p>I can't believe noone has mentioned <a href="http://www-cs-faculty.stanford.edu/~uno/taocp.html" rel="nofollow">The Art of Computer Programming</a>, where the examples are implemented in assembly language for a <a href="http://www-cs-faculty.stanford.edu/~uno/mmix.html" rel="nofollow">hypothetical CPU</a>.</p>
<p>I guess what I'm saying is that while assembly is used rarely outside of the examples already mentioned, there's certainly a point to learning it for one architecture or another.</p>
http://stackoverflow.com/questions/143492/so-technologywork-survey/143512#1435126Answer by Hank for SO Technology@work surveyHank2008-09-27T12:09:22Z2008-09-27T12:09:22Z<p>PostgreSQL</p>
http://stackoverflow.com/questions/139136/how-do-i-get-people-interested-in-my-open-source-projects/139170#1391702Answer by Hank for How do I get people interested in my open source projects?Hank2008-09-26T12:37:09Z2008-09-26T12:37:09Z<p>Think long and hard about naming. If your users need a pronunciation guide just to talk about your project it might be time to reconsider.</p>
http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/424447#424447Comment by Hank on What's your favorite "programmer ignorance" pet peeve?Hank2009-03-05T09:37:48Z2009-03-05T09:37:48ZI disagree. Outdated, incorrect comments are worse than no comments.http://stackoverflow.com/questions/575172/portable-non-relational-database/575193#575193Comment by Hank on portable non-relational databaseHank2009-02-23T17:03:24Z2009-02-23T17:03:24ZWe seem to have different definitions of portable, I should have read your question more closely.http://stackoverflow.com/questions/575172/portable-non-relational-database/575193#575193Comment by Hank on portable non-relational databaseHank2009-02-22T17:47:00Z2009-02-22T17:47:00ZThere's a beta version of a binary installer for windows available here: <a href="http://wiki.apache.org/couchdb/Windows_binary_installer" rel="nofollow">wiki.apache.org/couchdb/Windows_binary_installer/…</a>
I've only run it on OS X and Linux though.http://stackoverflow.com/questions/524342/how-to-store-a-hash-table-in-a-fileComment by Hank on How to store a hash table in a file?Hank2009-02-07T19:00:08Z2009-02-07T19:00:08ZWill you be doing lookups from disk or do you only need to persist the hashtable?http://stackoverflow.com/questions/473522/word-comparison-algorithm/473554#473554Comment by Hank on Word comparison algorithmHank2009-01-26T18:46:09Z2009-01-26T18:46:09ZSoundex is more useful on nameshttp://stackoverflow.com/questions/246232/regular-expression-nongreedy-is-greedy/246236#246236Comment by Hank on regular expression nongreedy is greedyHank2008-10-29T09:37:58Z2008-10-29T09:37:58ZGreat comment, I'll add that for clarity.http://stackoverflow.com/questions/103633/pascals-theorem-for-non-unique-sets/103651#103651Comment by Hank on Pascal's Theorem for non-unique sets?Hank2008-09-19T17:03:15Z2008-09-19T17:03:15ZGenerally referred to as a multiset or bag.