source: public/content/testimonials.shtml

Last change on this file was 14852, checked in by Mark Evenson, 8 years ago

html: fix broken link to MOP in FAQ

Various cleanups for XHTML, consistency.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 5.0 KB
Line 
1<?xml version="1.0"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5<head>
6  <title><!--#include virtual="project-name" -->: Testimonials</title>
7  <link rel="stylesheet" type="text/css" href="style.css"/>
8  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
9  <style type="text/css">
10dt { margin-top: 1cm;
11     font-weight: bold;
12     font-family: sans-serif;
13     font-size: 105%; }
14dd { margin-top: 0.3cm;
15    // font-family: sans-serif;
16     font-size: 90% }
17  </style>
18</head>
19
20<body>
21 <div id="title" class="header">
22   <h1>ABCL Testimonials</h1>
23 </div>
24
25<!--#include virtual="left-menu" -->
26
27<div id="main">
28
29<h1>Testimonials</h1>
30<dl>
31<dt>Alessio Stalla - November, 2010
32</dt>
33<dd>With my Java background and my love for Lisp, I've found ABCL to be the ideal choice for my open source projects, in particular:
34<ul>
35  <li>DynaSpring (<a href="http://code.google.com/p/dynaspring/">http://code.google.com/p/dynaspring/</a>), a Lisp-based DSL for the Spring framework: it replaces the ugly-ugly XML with our beloved parentheses, bringing new features to Spring (conditional evaluation, modularity constructs, etc.) and making it much more user-extensible;</li>
36  <li>Snow (<a href="http://common-lisp.net/project/snow/">http://common-lisp.net/project/snow/</a>), a declarative GUI language in the vein of XUL, but obviously Lisp-based, targeting Swing. While still lacking many things, it combines a Lisp DSL with existing Java libraries to concisely describe the structure and layout of the GUI, and to make it easy to connect the UI with the application, thanks to its integration with Cells;</li>
37  <li>and all the other experimental, unreleased stuff I do as a hobby (mainly related to web development and enterprise application development).</li>
38</ul>
39For me ABCL's selling point is of course its interoperability with
40Java and the consequent access to Java libraries, but I also
41appreciate its simplicity, portability (even FASLs are cross-platform,
42thanks to the JVM), and last but not least, the small but vibrant and
43helpful community.
44</dd>
45
46<dt>David Kirkman (Astronomer at University of California, San Diego)
47  - June 7, 2010</dt>
48<dd>
49"I've been using ABCL to help position the Keck telescope on targets
50that are too faint to see with the slit guider.  I used code I
51created in 1994 - in Lisp - for the exact calculations and combined it
52with Java libraries for getting images in and displaying things. The
53Lisp code ran unmodified. And what's more: I can run it all on my
54Windows laptop!<br /> <br />
55The original project went so well that I stared to do new work in Lisp again."
56</dd>
57
58<dt>Brad Garton (Columbia University Computer Music Center)
59</dt>
60<dd>
61"I used ABCL (older, v. 0.0.10) as the interpreter
62underlying an object for a music/media graphical programming
63environment called <a href="http://www.cycling74.com/products/max5">Max/MSP</a>.
64ABCL allowed me to embed an entire LISP interpreter inside the
65Max/MSP package, and it has worked extremely well.  Max/MSP
66is designed primarily for real-time/interactive applications,
67used a lot by computer music academics, DJs/VJs, bizarro jazz
68performers, audio plugin developers, etc.  With the embedded
69abcl object, I am able to schedule LISP functions and work
70interactively with complex processes -- <b>the abcl interpreter
71has been rock-solid!</b> <br />
72<br />
73The source for the object is here (scroll down to the bottom of
74the page):<br />
75<br />
76       <a style="align:center" href="http://music.columbia.edu/~brad/maxlispj/">http://music.columbia.edu/~brad/maxlispj/</a><br />
77<br />
78And I also used it extensively in a large application built with
79Max/MSP... it's an interactive 'book' where the generative music
80follows what a reader is reading and creates an appropriate sound
81setting for the text:<br />
82<br />
83       <a style="align:center" href="http://music.columbia.edu/~brad/BookOfDreams/">http://music.columbia.edu/~brad/BookOfDreams/</a><br />
84<br />
85The music performance model underlying the shawm-like melodies
86is all coded using abcl.<br />
87<br />
88So to all of you who have contributed (and still contribute!) to
89the development of this terrific package, a big THANK YOU!!!"
90</dd>
91
92<dt>Hunter Monroe
93</dt>
94<dd>"Maxima algebraic computation software compiles with ABCL. The test suite
95runs fairly quickly on Windows XP and, after work by Robert Dodier, 86
96percent of the test suite is passed successfully, although some individual
97tests crash the suite. If you want to compile Maxima with ABCL lisp, check
98out the Maxima source code and following the instructions in INSTALL.lisp."
99<em>Editor's note: the Maxima test suite runs without crashes and
100succesfully completes without failures as of 10-11-2010.</em>
101</dd>
102
103<dt>Ted Kosan
104</dt>
105
106<dd>I am in the process of integrating ABCL with <a
107href="http://mathrider.org">MathRider</a> in preparation for when
108Maxima is able to run on it.
109</dd>
110</dl>
111
112</div>
113</body>
114</html>
Note: See TracBrowser for help on using the repository browser.