Change photo on frontpage
[clinton/website/src/unknownlamer.org.git] / Code.muse
CommitLineData
b8fc5f83 1#title Programming Projects
2
b8fc5f83 3All of my current, and some not so current, projects are browsable via
15f77882 4[[http://unknownlamer.org/darcsweb/browse][my darcsweb]]. You might want to take a look at my [[Lisp][Lisp related projects]]
5page.
0ae05a7e 6
5fac9f16 7* Common Lisp
0ae05a7e 8
5fac9f16 9** UnCommon Web Related
10
11*** [[darcsweb::golgonooza][Golgonooza]]
0ae05a7e 12
13<verse>
14Fourfold the Sons of Los in their divisions: and fourfold.
15The great City of Golgonooza: fourfold toward the north
16And toward the south fourfold, & fourfold toward the east & west
17Each within other toward the four points: that toward
18Eden. and that toward the World of Generation.
19And that toward Beulah. and that toward Ulro;
20Ulro is the space of the terrible starry wheels of Albions sons:
21But that toward Eden is walled up. till time of renovation:
22Yet it is perfect in its building. ornaments & perfection.
23</verse>
24
28b623b6 25Golgonooza is a set of utility components for [[http://common-lisp.net/projects/ucw/repos/ucw-core/][ucw-core]]. As of December
262008 it is nearing a releasable state and is in use on
5fac9f16 27[[http://bees-kneesfilms.com][one production site online]] (darcsweb::beesknees for source).
0426bc8a 28
5fac9f16 29*** [[darcsweb::ucw-forms][ucw-forms]]
0426bc8a 30
31ucw-forms is a slightly enhanced and de-javascripted version of the
32forms library from ucw_ajax updated for use with ucw-core.
33
5fac9f16 34*** [[darcsweb::ucw-core_clinton][ucw-core branch]]
0426bc8a 35
36I maintain a personal branch of ucw-core with various work in progress
37patches that are intended to go into upstream. My primary task is
38filling in the ucw-standard library which was removed in the ucw-core
39fork.
40
5fac9f16 41** [[darcsweb::trivial-timers][Trivial-Timers]]
42
43[[http://retes.hu/~mega/git/?p=clon.git;a=summary][Clon]] is a nice library for scheduling tasks within a Lisp image, but
44it used the SBCL timer extension. I wanted to run something using Clon
a6b655d9 45on [[http://trac.clozure.com/openmcl][Clozure CL]] and so I looked at the SBCL source and found that, after
46a bit of fairly straightforward editing, it was possible to write a
47portable version for any compiler supporting [[http://common-lisp.net/project/bordeaux-threads/][Bordeaux Threads]]. The
48SBCL timers internally use =sb-unix:setittimer=; Rather than using
49[[http://common-lisp.net/project/osicat/][Osicat]] to emulate this I chose to rework the scheduling loop to run in
50a dedicated thread that sleeps on a condition variable with a
51timeout. This seems *cleaner* to me than using POSIX lib calls, but
52requires a threaded Lisp.
5fac9f16 53
54[[http://release.unknownlamer.org/trivial-timers/][Releases are available]] with the usual [[darcsweb::trivial-timers][darcs repo]]. Currently there is a
55native SBCL implementation and a portable implementation relying upon
56[[http://common-lisp.net/project/bordeaux-threads/][Bordeaux Threads]]. Patches to export other Lisp implementations' timer
57interface are welcome.
58
59
0ae05a7e 60* Old Projects
61
62I used to work on some programs in terrible languages like =C++= when I
63was a poor misguided youth. I still attempt to respond to bug reports
64and patches for any that are still in use (*Bobot++* appears to be the
65only one), but they are otherwise not being worked upon.
66
67** [[../code/bobot.html][Bobot++]]
68
69A fancy little IRC bot that is extensible with Scheme. If you can
70figure out the scripting interface (which is [[../code/bobotpp-manual.html#SEC35][partially documented]]) it
71is fairly powerful. =dsmith= from =#guile= has a nicely featured bot
72written on top of Bobot++; if I find time I shall attempt to post the
73source.
74
a6b655d9 75There is now a [[darcsweb::bobot%2B%2B][darcs repo]] available with a few minor changes. I am
b5f9a491 76sporadically working to make the internals of the bot fully threadsafe
77so that multithreaded Scheme extensions don't run into issues. I may
78potentially clean up the Scheme interface as well (as it was clearly
79not designed by a Schemer and I was not so well versed in proper style
80in 2002 when I did most of my work on Bobot++).
81
f075352b 82** [[../code/guile-web.html][Guile-Web]]
0ae05a7e 83
84A perhaps still useful library of web related utilities for
85[[http://www.gnu.org/software/guile/guile.html][Guile Scheme]]. Be warned that the serializer is inefficient, consy, and
86hacky as Hell, but the [[../code/guile-web-manual.html#SEC6][XHTML generation library]] might be useful.