skip to main | skip to sidebar

2008年07月26日

lisp-berlin

[rumpfkluft.de]

Lispers are meeting up on a regular basis almost everywhere. But does Berlin have a Lisp user group? If so, where would you start looking for it? Until recently, the only resources available were the mailing lists eurolisp (targeting everyone and no one in particular) and lisp-hh (frequented by Hamburg Lispers).

Now, thanks to Hans, we have our own Wiki and mailing list. For your future Lisp needs in Berlin, we present lisp-berlin: http://groups.google.com/group/lisp-berlin

See lisp-berlin/treffen for Katrin's "Stammtisch", which has been a regular meeting for about a year now.

We would like to organize meetings replacing the Stammtisch later this year, ideally in a place that is not as excessively casual, so stay tuned for more.

2008年02月05日

clbuild FAQ

Since bloggers started covering clbuild (1,2), there has been a noticable surge of newbie questions.

To record answers to those questions, there is now a longer FAQ for clbuild, covering these topics:

  • How does clbuild differ from asdf-install?
  • My favourite application is not supported. How can I add it?
  • Why did you get rid of all tarball-only downloads?
  • It doesn't load my ~/.sbclrc!
  • "clbuild lisp" doesn't seem to use my monster.core!
  • Can I start the lisp with swank already preloaded?
  • Can I run emacs and slime without going through "clbuild slime"?
  • Is the "dependencies" file autogenerated?
  • The "dependencies" file is broken!
  • Why is clbuild written in shell? Lisp is so much better.
  • Does it work on cygwin?

Note the slime-related changes, which allow swank startup the way Bill is explaining it in his post, but without the workarounds.

2007年12月25日

comp.lang.lisp needs to stop complaining about overcommit

or: How I got sucked back into SBCL hacking on Christmas.
: david@radon:~; ps -o pid,vsz,rss,comm -p `pidof sbcl`
 PID VSZ RSS COMMAND
 1019 570424 4424 sbcl
: david@radon:~; ps -o pid,vsz,rss,comm -p `pidof sbcl`
 PID VSZ RSS COMMAND
 1019 963320 404204 sbcl
: david@radon:~; ps -o pid,vsz,rss,comm -p `pidof sbcl`
 PID VSZ RSS COMMAND
 1019 3988328 825804 sbcl

2007年10月27日

Ten years of Closure HTML

More than a decade ago, Gilbert Baumann started writing the Closure web browser. It includes a great HTML parser, written all in Lisp.

Released today, Closure HTML is a stand-alone version of the parser.

It supports HTML 4, understands malformed HTML, and can (optionally) be used in conjunction with Closure XML and its data structures.

An easy way to get started with Closure HTML itself is with its LHTML builder, which represents HTML elements as simple lisp lists.

Together, the two parsers can be used to turn HTML into XHTML or vice versa, and in particular to parse HTML into DOM or STP. Even for users who only parse and work with XHTML internally, the new code can be useful to emit normal HTML 4 as the last step of processing.

2007年08月30日

Forking SBCL for Dummies

http://repo.or.cz/ hosts a git repository for SBCL and makes it easy to publish your own fork of SBCL.

Here is a quick step-by-step guide for anyone planning to have his repository hosted there. (All of this will be painfully obvious to the git experts.)

  • Register a user account. All you need is an SSH public key, no questions asked.
  • Create the fork. Find the SBCL project and go to "fork". Enter a project name for the fork and an admin password.

Done. Now you have a fork, but you need to initialize it first.

  • Go to your "Project Settings" page and add yourself as a user.

Otherwise you cannot push to your own project.

  • Push into the fork. One way to do this is to clone the normal SBCL repository, then use
    git push --all ssh://yourusername@repo.or.cz/srv/git/sbcl/yourprojectname.git

Don't forget the --all, which instructs git to push all refs. Whatever a ref is, anyway.

2007年08月26日

cloak

It is unfinished, slow, buggy, unmaintained, in need of a rewrite -- and now you can hack it yourself!

Doesn't that sound exciting?  Of course it does.

Prerequisites. Only Linux/x86 is supported1. You will need several hours of spare CPU time, about 1 GB of RAM, and lots of disk space. Compilation involves building SBCL and classpath first, so make sure to install all required dependencies first. Debian users can run

# apt-get install sbcl svn cvs wget jikes
# apt-get build-dep classpath
to do so.

Build script. Grab cloak using git [edit: needs git 1.5, no idea why]:

$ git clone http://www.lichteblau.com/git/cloakbuild.git 
and compile it using clbuild-like commands:
$ ./build update
$ ./build world

Usage. The bin directory contains scripts called java, javac (courtesy of ecj), javap, and javah that run Lisp with the right arguments.

$ ./bin/java -version
CLOAK Virtual Machine, running on SBCL 0.9.8.6 (Linux 2.6.22 X86)
Copyright (C) 2003-2007 David Lichteblau

Technically it is a precompiler, and to avoid unpleasant surprises at run time, you might want to run

./bin/precompile foo.jar
before starting anything non-trivial.

Finally, read cloak/TODO and start hacking.

What's new? Compared to the big binary tarball available previously, this one comes with sources only, has been updated for current SBCL, and for Classpath 0.91 (which is still ancient, but a little step forward). The scripts in bin/ are also new.


1 No AMD 64 support yet. For now, use an x86 chroot instead.

2007年08月05日

A new data structure for XML

As mentioned earlier, I set out to define an alternative to the W3C's Document Object Model, inspired heavily by Java's XOM, but made for Common Lisp.

The result is STP, a data structure for XML that is full-featured and uses CLOS, but is more natural than DOM and gets namespaces right. Its implementation cxml-stp is available as an add-on library for Closure XML.

(For most purposes, it should be preferable to other alternatives, but DOM fans -- in case there are any -- can be assured that DOM support in cxml will not go away either.)

Read more about STP in the tutorial.
Subscribe to: Comments (Atom)
 

AltStyle によって変換されたページ (->オリジナル) /