From: Ken A. <kan...@bb...> - 2002-09-06 01:35:44
|
Hi David, Tim has done a lot of nice web stuff for his course. We played with a wiki about a year ago, and i thought it was great. We should have an ongoing Wiki for Jscheme. Jscheme is great for writing web pages. There is a (<> ...) in elf/html-gen.scm. THere is also the {[]} syntax which is generally about as easy to use. I've be displaying histograms that grovel over 100,000 items with less than 12 lines of code: (define (histogram-table name rows) {<table border=1> <tr><td align=right>Count</td> <td align=left>[name]</td></tr> [(map (lambda (row) { <tr><td align=right>[(car row)]</td> <td align=left>[(cadr row)]</td></tr>}) rows)] </table>}) (define (histogram what items) (let ((what (default what 'none))) (sort (map* (project length (unique what)) (group-by what items)) (comparator > car)))) k At 06:53 PM 9/5/2002, david may wrote: >Not much activity on this list lately .. perhaps I >accidentally unsubscribed?? > >Anyhow I am "on the bench" right now and playing around >with wikis. I was exploring a jsp wiki and as usual >my first 10 minutes with JSP are "hey this is cool" and then >it degenerates into a $@%# mess. Seems to me like jscheme would >be a good choice to do a wiki in.. So I am going to look >into it a little. Anybody else interested in this? > > > > >------------------------------------------------------- >This sf.net email is sponsored by: OSDN - Tired of that same old >cell phone? Get a new here for FREE! >https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 >_______________________________________________ >Jscheme-devel mailing list >Jsc...@li... >https://lists.sourceforge.net/lists/listinfo/jscheme-devel |