User David Lichteblau - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T22:56:57Z http://stackoverflow.com/feeds/user/23370 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1403717/how-do-i-iterate-through-a-directory-in-common-lisp/1637222#1637222 1 Answer by David Lichteblau for How do I iterate through a directory in Common Lisp? David Lichteblau 2009-10-28T13:25:19Z 2009-10-28T13:25:19Z <p>The modern Common Lisp library implementing directory listing is <a href="http://common-lisp.net/project/iolib/" rel="nofollow">IOLIB</a>.</p> <p>It works like this:</p> <pre><code>CL-USER&gt; (iolib.os:list-directory "/etc/apt") (#/p/"trusted.gpg~" #/p/"secring.gpg" #/p/"trustdb.gpg" #/p/"sources.list" #/p/"sources.list~" #/p/"apt-file.conf" #/p/"apt.conf.d" #/p/"trusted.gpg" #/p/"sources.list.d") </code></pre> <p>Note that no trailing slash or wildcards are required. It is very robust and can even process file names with incorrectly encoded unicode characters.</p> <p>Differences compared to CL-FAD:</p> <ul> <li>The objects you get are IOLIB file paths, a replacement for CL's pathnames which is closer what the underlying OS does.</li> <li>IOLIB implements its routines using CFFI, so it works the same on all Lisp implementations (provided IOLIB has a backend for the operating system), in contrast to CL-FAD, which tries to abstract over the implementation's DIRECTORY function with all its quirks.</li> <li>In contrast to CL-FAD, iolib deals correctly with symlinks (one major issue with CL-FAD that makes it virtually unusable on platforms other than Windows IMHO).</li> </ul> http://stackoverflow.com/questions/1101487/setting-up-a-working-common-lisp-environment-for-the-aspiring-lisp-newbie/1104434#1104434 2 Answer by David Lichteblau for Setting up a working Common Lisp environment for the aspiring Lisp newbie David Lichteblau 2009-07-09T14:59:15Z 2009-07-09T14:59:15Z <p>There are different ways of setting up a Lisp environment, from manual approaches to out-of-the-box installers.</p> <p>The following answer is for <a href="http://common-lisp.net/project/clbuild/" rel="nofollow">clbuild</a>, which always downloads brand-new versions of all packages for you:</p> <p>Assuming you have Emacs and SBCL already installed, the following gets you up and running with SLIME. (You also need bash, darcs, CVS, etc, but FreeBSD ports include all of these, as far as I know.)</p> <pre><code>$ darcs get --set-scripts-executable http://common-lisp.net/project/clbuild/clbuild $ ./clbuild/clbuild install slime $ ./clbuild/clbuild slime </code></pre> <p>You don't have to (indeed, should not) modify your .emacs for this. If you have played with a manual installation of SLIME before, clean out the old changes from .emacs. clbuild does the slime setup for you.</p> <p>If you like, clbuild can also fetch and build a recent SBCL for you:</p> <pre><code>$ ./clbuild/clbuild install sbcl $ ./clbuild/clbuild compile-implementation sbcl # afterwards you can uninstall the FreeBSD-provided Lisp used for bootstrapping </code></pre> <p>As for your usage questions:</p> <ul> <li>C-x 5 2 gives you the second window to play with</li> <li>C-c C-k compiles &amp; loads the current buffer</li> <li>There is tab completion built-in, but also other completion features. Personally I love the C-c M-i fuzzy completion.</li> <li>jrockway's answer has additional good tips on emacs commands which I won't repeat here</li> </ul> http://stackoverflow.com/questions/1099509/how-can-i-reuse-a-gethash-lookup-in-common-lisp/1104287#1104287 3 Answer by David Lichteblau for How can I reuse a gethash lookup in Common Lisp? David Lichteblau 2009-07-09T14:36:20Z 2009-07-09T14:36:20Z <p>Don't do anything special, because the implementation does it for you.</p> <p>Of course, this approach is implementation-specific, and hash table performance varies between implementations. (But then optimization questions are always implementation-specific.)</p> <p>The following answer is for SBCL. I recommend checking whether your Lisp's hash tables perform the same optimization. Complain to your vendor if they don't!</p> <p>What happens in SBCL is that <b>the hash table caches the last table index</b> accessed by GETHASH.</p> <p>When PUTHASH (or equivalently, (SETF GETHASH)) is called, it first checks whether the key at that cached index is EQ to the key that you are passing in.</p> <p>If so, the entire hash table lookup routine is by-passed, and PUTHASH stores directly at the cached index.</p> <p>Note that EQ is just a pointer comparison and hence extremely fast -- it does not have to traverse the list at all.</p> <p>So in your code example, the is no overhead at all.</p> http://stackoverflow.com/questions/613954/the-case-against-checked-exceptions/614280#614280 9 Answer by David Lichteblau for The case against checked exceptions David Lichteblau 2009-03-05T10:40:04Z 2009-03-05T10:40:04Z <p>In short:</p> <p><em>Exceptions are an API design question.</em> -- No more, no less.</p> <p><strong>The argument for checked exceptions:</strong></p> <p>To understand why checked exceptions might not be good thing, let's turn the question around and ask: When or why are checked exceptions attractive, i.e. why would you want the compiler to enforce declaration of exceptions?</p> <p>The answer is obvious: Sometimes you <em>need</em> to catch an exception, and that is only possible if the code being called offers a specific exception class for the error that you are interested in.</p> <p>Hence, the argument <strong>for</strong> checked exceptions is that the compiler forces programmers to declare which exceptions are thrown, and <strong>hopefully</strong> the programmer will then also document specific exception classes and the errors that cause them.</p> <p>In reality though, ever too often a package <code>com.acme</code> only throws an <code>AcmeException</code> rather than specific subclasses. Callers then need to handle, declare, or re-signal <code>AcmeExceptions</code>, but still cannot be certain whether an <code>AcmeFileNotFoundError</code> happened or an <code>AcmePermissionDeniedError</code>.</p> <p>So if you're only interested in an <code>AcmeFileNotFoundError</code>, the solution is to file a feature request with the ACME programmers and tell them to implement, declare, and document that subclass of <code>AcmeException</code>.</p> <p><strong>So why bother?</strong></p> <p>Hence, even with checked exceptions, the compiler cannot force programmers to throw <strong>useful</strong> exceptions. It is still just a question of the API's quality.</p> <p>As a result, languages without checked exceptions usually do not fare much worse. Programmers might be tempted to throw unspecific instances of a general <code>Error</code> class rather than an <code>AcmeException</code>, but if they care at all about their API quality, they will learn to introduce an <code>AcmeFileNotFoundError</code> after all.</p> <p>Overall, the specification and documentation of exceptions is not much different from the specification and documentation of, say, ordinary methods. Those, too, are an API design question, and if a programmer forgot to implement or export a useful feature, the API needs to be improved so that you can work with it usefully.</p> <p>If you follow this line of reasoning, it should be obvious that the "hassle" of declaring, catching, and re-throwing of exceptions that is so common in languages like Java often adds little value.</p> <p>It is also worth noting that the Java VM does <em>not</em> have checked exceptions -- only the Java compiler checks them, and class files with changed exception declarations are compatible at run time. Java VM security is not improved by checked exceptions, only coding style.</p> http://stackoverflow.com/questions/600070/how-to-convert-byte-array-to-string-in-common-lisp/602151#602151 6 Answer by David Lichteblau for How to convert byte array to string in Common Lisp? David Lichteblau 2009-03-02T12:32:24Z 2009-03-02T12:32:24Z <p>There are two portable libraries for this conversion:</p> <ul> <li><p>flexi-streams, already mentioned in another answer.</p> <p>This library is older and has more features, in particular the extensible streams.</p></li> <li><p><a href="http://common-lisp.net/project/babel/" rel="nofollow">Babel</a>, a library specificially for character encoding and decoding</p> <p>The main advantage of Babel over flexi-streams is speed.</p></li> </ul> <p>For best performance, use Babel if it has the features you need, and fall back to flexi-streams otherwise. Below a (slighly unscientific) microbenchmark illustrating the speed difference.</p> <p>For this test case, Babel is <strong>337 times faster</strong> and needs 200 times less memory.</p> <pre><code>(asdf:operate 'asdf:load-op :flexi-streams) (asdf:operate 'asdf:load-op :babel) (defun flexi-streams-test (bytes n) (loop repeat n collect (flexi-streams:octets-to-string bytes :external-format :utf-8))) (defun babel-test (bytes n) (loop repeat n collect (babel:octets-to-string bytes :encoding :utf-8))) (defun test (&amp;optional (data #(72 101 108 108 111)) (n 10000)) (let* ((ub8-vector (coerce data '(simple-array (unsigned-byte 8) (*)))) (result1 (time (flexi-streams-test ub8-vector n))) (result2 (time (babel-test ub8-vector n)))) (assert (equal result1 result2)))) #| CL-USER&gt; (test) Evaluation took: 1.348 seconds of real time 1.328083 seconds of user run time 0.020002 seconds of system run time [Run times include 0.12 seconds GC run time.] 0 calls to %EVAL 0 page faults and 126,402,160 bytes consed. Evaluation took: 0.004 seconds of real time 0.004 seconds of user run time 0.0 seconds of system run time 0 calls to %EVAL 0 page faults and 635,232 bytes consed. |# </code></pre> http://stackoverflow.com/questions/449367/performing-xml-transformations-in-flex/581651#581651 1 Answer by David Lichteblau for Performing XML Transformations in Flex David Lichteblau 2009-02-24T12:59:13Z 2009-02-24T12:59:13Z <p>In AIR 1.5, a version of Webkit with support for XSLT is included.</p> <p>Use the class <code>XSLTProcessor</code> from JavaScript just like you would in Firefox. (Note: There is one annoying bug. Stylesheets cannot contain non-breaking spaces, no matter whether literally or as a character reference. I am told that more recent versions of Webkit will fix this issue.)</p> <p>Below is a complete example.</p> <p>Create a file <code>test.html</code></p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;XSLT test&lt;/title&gt; &lt;script type="text/javascript"&gt; // &lt;!-- function test() { // Step 1: Parse the stylesheet var stylesheet = "&lt;xsl:transform xmlns:xsl='http://www.w3.org/1999/XSL/Transform'" + " version='1.0'&gt;" + " &lt;xsl:template match='/'&gt;" + " Hello World from XSLT!" + " &lt;/xsl:template&gt;" + "&lt;/xsl:transform&gt;"; var stylesheetDocument = new DOMParser().parseFromString(stylesheet, "application/xml"); // Step 2: Parse the source document var source = "&lt;dummy/&gt;"; var sourceDocument = new DOMParser().parseFromString(source, "application/xml"); // Step 3: Perform the XSL transformation var xslt = new XSLTProcessor(); xslt.importStylesheet(stylesheetDocument); var newFragment = xslt.transformToFragment(sourceDocument, document); // Step 4: Show the result document.body.appendChild(newFragment.firstChild); } // --&gt; &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;input type="submit" onclick="test()"&gt; Output: &lt;/body&gt; &lt;/html&gt; </code></pre> <p>and a file <code>test.xml</code></p> <pre><code>&lt;application xmlns="http://ns.adobe.com/air/application/1.0"&gt; &lt;id&gt;test&lt;/id&gt; &lt;filename&gt;test&lt;/filename&gt; &lt;initialWindow&gt; &lt;content&gt;test.html&lt;/content&gt; &lt;visible&gt;true&lt;/visible&gt; &lt;/initialWindow&gt; &lt;/application&gt; </code></pre> <p>You can try it using the debugging runtime, for example:</p> <pre><code>adl test.xml </code></pre> <p>Klick the button, and it will say:</p> <p><img src="http://www.lichteblau.com/tmp/stackoverflow-xslt.png" alt="example" /></p> http://stackoverflow.com/questions/577509/xsldecimal-format-with-multiple-possible-formats/577685#577685 3 Answer by David Lichteblau for XSL:decimal-format with multiple possible formats David Lichteblau 2009-02-23T13:45:11Z 2009-02-23T13:45:11Z <p>In XSLT, <code>format-number</code> is an ordinary XPath function that takes strings as its second and third argument. These strings need not be specified as constants in the stylesheet -- they can also be computed at run-time from the source document.</p> <p>In the easiest case, let's assume that the source document actually specifies the arguments directly as <code>settings/picture</code> an `settings/formatname'. If so, you can write:</p> <pre><code>&lt;xsl:value-of select="format-number(product/weight, settings/picture, settings/formatname)"/&gt; </code></pre> <p>Alternatively, if the document uses a different notation, making a translation step necessary, you can refactor your stylesheet to use XSLT variables like this:</p> <pre><code>&lt;xsl:variable name="picture"&gt; &lt;!-- compute the picture string here, e.g. using &lt;xsl:choose&gt; and --&gt; &lt;!-- /document/settings/DefaultNumberFormat --&gt; &lt;/xsl:variable&gt; &lt;xsl:variable name="formatname"&gt; &lt;!-- compute the number format name here, e.g. using &lt;xsl:choose&gt; and --&gt; &lt;!-- /document/settings/DefaultNumberFormat --&gt; &lt;/xsl:variable&gt; &lt;xsl:value-of select="format-number(product/weight, $picture, $formatname)"/&gt; </code></pre> http://stackoverflow.com/questions/562255/how-to-include-port-package-under-clisp-in-ubuntu/569636#569636 1 Answer by David Lichteblau for How to include "port" package under CLISP in Ubuntu David Lichteblau 2009-02-20T13:54:40Z 2009-02-20T13:54:40Z <p>It is unfortunate that the cl-cookbook still refers to PORT from CLOCC. I recommend against PORT in particular and CLOCC in general.</p> <p>The good news is newer, better socket libraries exist, and you will not have much trouble using those instead. Here are your options:</p> <ul> <li><p><a href="http://common-lisp.net/project/usocket/" rel="nofollow">usocket</a> is a portability library that abstracts over the socket features in various Lisp implementations. It is the spiritual successor to trivial-sockets, and many Common Lisp libraries are depending on usocket today.</p> <p><strong>I recommend usocket for new users.</strong></p></li> <li><p>The other contender is <a href="http://common-lisp.net/project/iolib/" rel="nofollow">iolib</a>, which re-implements sockets using FFI instead of building on the implementation's facilities. It also sports other ambitious innovations, like a replacement for Common Lisp pathnames, I/O multiplexing, and its own stream abstraction.</p> <p>Programmers willing to read source code and unit tests will find iolib enjoyable, but it is still in a state of flux and lacks documentation.</p> <p><strong>I recommend iolib for avid hackers.</strong></p></li> </ul> <p>Many installation methods are possible. As an Ubuntu user, you can just use aptitude:</p> <pre><code>$ aptitude install cl-usocket $ clisp [1]&gt; (asdf:operate 'asdf:load-op :usocket) </code></pre> <p>Beware that the Common Lisp packages in Debian and Ubuntu are often outdated and rather different from upstream. If you are looking for help online, you will get more helpful responses if you switch to upstream version of those packages.</p> <p>Personally I use Debian, but run <a href="http://common-lisp.net/project/clbuild" rel="nofollow">clbuild</a> instead of the Debian packages for Lisp. Note that clbuild needs upstream CLISP, not the CLISP that Ubuntu ships.</p> http://stackoverflow.com/questions/564367/xml-parsing-problem/564641#564641 6 Answer by David Lichteblau for XML Parsing Problem David Lichteblau 2009-02-19T10:17:08Z 2009-02-19T10:17:08Z <p>Short answer: <em>You're doing it wrong.</em></p> <p>Your question confuses two separate issues:</p> <ol> <li><p><strong>Parsing of data that is not well-formed XML <em>at all</em></strong>, i.e. so-called tag soup.</p> <p>Example: Files generated by programmers who do not understand XML or have lousy coding practices.</p> <ul> <li><p>It is not unfair to say: A file that is not well-formed XML is not an XML document at all. Every correct XML parser will reject it. Ideally you would work to correct the source of this data and make sure that proper XML is generated instead.</p></li> <li><p>Alternatively, use a tag soup parser, i.e. a parser that does error correction. </p> <p>Useful tag soup parsers are often actually HTML parsers. <a href="http://tidy.sourceforge.net/" rel="nofollow">tidy</a> has already been pointed out in another answer.</p> <p>Make certain that you understand what correction steps such a parser actually performs, since there is no universal approach that could fix XML. Tidy in particular is very aggressive at "repairing" the data, more aggressive than real browsers and the HTML 5 spec, for example.</p></li> </ul></li> <li><p><strong>XML parsing from a socket</strong>, where data arrives chunk-by-chunk in a stream. In this situation, the XML document might be viewed as "infinite", with chunks being processed as the appear, long before a final end tag for the root element has been seen.</p> <p>Example: XMPP is a protocol that works like this.</p> <ul> <li><p>The solution is to use a pull-based parser, for example the <a href="http://www.xmlsoft.org/xmlreader.html" rel="nofollow">XMLTextReader</a> API in libxml2.</p></li> <li><p>If a tree-based data structure for the XML child elements being parser is required, you can build a tree structure for each such element that is being read, just not for the entire document.</p></li> </ul></li> </ol> http://stackoverflow.com/questions/556456/is-it-feasible-to-do-serious-web-development-in-lisp/556618#556618 15 Answer by David Lichteblau for Is it feasible to do (serious) web development in Lisp? David Lichteblau 2009-02-17T12:41:02Z 2009-02-17T12:41:02Z <p>Yes, web development is one of Common Lisp's strengths today.</p> <ul> <li><p>As a web server, use <a href="http://weitz.de/hunchentoot/" rel="nofollow">Hunchentoot</a>, formerly known as tbnl, by Dr. Edmund Weitz.</p> <p>You can run it as a back-end to Apache using mod_proxy as a reverse proxy, or as a stand-alone server.</p></li> <li><p>Various HTML generation solutions are available, from PHP-style templates to Lisp macro hacks to XSLT. Just take your pick.</p> <p><a href="http://weitz.de/html-template/" rel="nofollow">HTML-TEMPLATE</a> is one example.</p></li> <li><p><a href="http://common-lisp.net/project/cxml" rel="nofollow">Closure XML</a> is available for XML parsing, serialization, XPath 1.0, XSLT 1.0. There is also Closure HTML for HTML tag soup parsing.</p> <p>(Full disclosure: I'm the maintainer of Closure XML and Closure HTML.)</p></li> <li><p>If you like, <a href="http://common-lisp.net/project/parenscript/" rel="nofollow">Parenscript</a> can make your JavaScript experience lispier, but you can also write plain old JavaScript yourself, of course.</p> <p>Another cool JavaScript enhancing solution in <a href="http://chumsley.org/jwacs/" rel="nofollow">jwacs</a>, which is written in Common Lisp and transforms JavaScript to add continuation support.</p></li> <li><p>Web service projects might require an HTTP client in addition to a server.</p> <p><a href="http://weitz.de/drakma/" rel="nofollow">Drakma</a> is the library to use for that today.</p> <p><a href="http://www.cliki.net/Puri" rel="nofollow">PURI</a> is useful for URI manipulation.</p> <p>And there is more! One starting point is cliki, for example <a href="http://www.cliki.net/web" rel="nofollow">cliki.net/web</a>.</p></li> </ul> <p>On the web, nobody knows your server is written in Common Lisp :-)</p> http://stackoverflow.com/questions/435646/how-do-i-combine-the-first-two-commits-of-a-git-repository/541489#541489 8 Answer by David Lichteblau for How do I combine the first two commits of a Git repository? David Lichteblau 2009-02-12T14:29:00Z 2009-02-12T14:29:00Z <p>You tried:</p> <pre><code>git rebase -i A </code></pre> <p>It is possible to start like that if you continue with <code>edit</code> rather than <code>squash</code>:</p> <pre><code>edit e97a17b B pick asd314f C </code></pre> <p>then run</p> <pre><code>git reset --soft HEAD^ git commit --amend git rebase --continue </code></pre> <p>Done.</p> http://stackoverflow.com/questions/497229/does-any-common-lisp-function-return-3-values/536291#536291 12 Answer by David Lichteblau for Does any Common Lisp function return 3 values? David Lichteblau 2009-02-11T10:42:34Z 2009-02-11T10:49:15Z <p>Yes, such functions exist. Here is the complete list of functions in the COMMON-LISP package that return exactly three values, as declared in SBCL source code:</p> <pre><code>COMPILE required: 3, optional: 0, rest?: NIL INTEGER-DECODE-FLOAT required: 3, optional: 0, rest?: NIL COMPILE-FILE required: 3, optional: 0, rest?: NIL GET-PROPERTIES required: 3, optional: 0, rest?: NIL FUNCTION-LAMBDA-EXPRESSION required: 3, optional: 0, rest?: NIL DECODE-FLOAT required: 3, optional: 0, rest?: NIL RENAME-FILE required: 3, optional: 0, rest?: NIL </code></pre> <p>In addition, the following functions return a constant number of values greater than three:</p> <pre><code>DECODE-UNIVERSAL-TIME required: 9, optional: 0, rest?: NIL GET-DECODED-TIME required: 9, optional: 0, rest?: NIL </code></pre> <p>These functions return a variable number of values, hence possibly more than three:</p> <pre><code>NO-APPLICABLE-METHOD required: 0, optional: 0, rest?: T NO-NEXT-METHOD required: 0, optional: 0, rest?: T VALUES required: 0, optional: 0, rest?: T (I've omitted some functions from this list where SBCL does not declare a values type explicitly. get-setf-expansion is one of them.) </code></pre> <p>Explanations of the columns: <code>required</code> is minimum number of return values for these functions, <code>optional</code> a fixed number of return values which SBCL thinks might or might not be returned, <code>rest?</code> indicates that a variable number of values is expected. (Only <code>macroexpand</code> and <code>macroexpand-1</code> actually use &amp;optional, don't ask me why.)</p> <p>And just for fun, here is the source code I used to come up with these tables:</p> <pre><code>(do-external-symbols (sym :common-lisp) (when (fboundp sym) (multiple-value-bind (required optional rest) (let ((fun-type (sb-int:info :function :type sym))) (etypecase fun-type (sb-kernel:fun-type (let ((returns (sb-kernel:fun-type-returns fun-type))) (etypecase returns (sb-kernel:values-type (values (length (sb-kernel:values-type-required returns)) (length (sb-kernel:values-type-optional returns)) (sb-kernel:values-type-rest returns))) (sb-kernel:named-type (if (sb-kernel:named-type-name returns) (values 1 0 t) (values 0 0 nil)))))) (t (values 0 0 t)))) (format t "~A~40Trequired: ~D, optional: ~D, rest?: ~A~%" sym required optional rest)))) </code></pre> http://stackoverflow.com/questions/535277/the-clojure-or-lisp-equivalent-of-a-compound-boolean-test/535915#535915 12 Answer by David Lichteblau for The Clojure (or Lisp) Equivalent of a Compound Boolean Test David Lichteblau 2009-02-11T08:32:29Z 2009-02-11T08:32:29Z <p>In Common Lisp, the following is also a common idiom:</p> <pre><code>(when (and (= a something) (= b another)) (foo)) </code></pre> <p>Compare this to Doug Currie's answer using <code>(and ... (foo))</code>. The semantics are the same, but depending on the return type of <code>(foo)</code>, most Common Lisp programmers would prefer one over the other:</p> <ul> <li><p>Use <code>(and ... (foo))</code> in cases where <code>(foo)</code> returns a boolean.</p></li> <li><p>Use <code>(when (and ...) (foo))</code> in cases where <code>(foo)</code> returns an arbitrary result.</p></li> </ul> <p>An exception that proves the rule is code where the programmer knows both idioms, but intentionally writes <code>(and ... (foo))</code> anyway. :-)</p> http://stackoverflow.com/questions/38651/any-way-to-have-an-actionscript-3-flex-air-project-print-to-standard-output/528831#528831 2 Answer by David Lichteblau for Any way to have an ActionScript 3 (Flex/AIR) project print to standard output? David Lichteblau 2009-02-09T16:24:49Z 2009-02-09T16:24:49Z <p>With AIR on Linux, it is easy to write to stdout, since the process can see its own file descriptors as files in /dev.</p> <p>For stdout, open <code>/dev/fd/1</code> or <code>/dev/stdout</code> as a <code>FileStream</code>, then write to that.</p> <p>Example:</p> <pre><code>var stdout : FileStream = new FileStream(); stdout.open(new File("/dev/fd/1"), FileMode.WRITE); stdout.writeUTF("test\n"); stdout.close(); </code></pre>