Lorem Ipsum

Featuring the Dragonfly web framework
Locked
PapoAnaya
Posts: 16
Joined: Mon Oct 24, 2005 6:55 pm

Lorem Ipsum

Post by PapoAnaya »

Dolor sit amet...

Code: Select all

;; This code is in newLisp
;; 
;; Use the lipsum generator to generate Lorem Ipsum dummy paragraphs / words / bytes.
;;
;; Lorem Ipsum courtesy of www.lipsum.com by James Wilson
;;
;; @param what in "paras","words","bytes"]
;; @param amount of paras/words/bytes (for words minimum is 5, for bytes it is 27)
;; @param start always start with 'Lorem Ipsum' "true"/"false"

(define (lipsum what amount start)
   (setq lipsum-buffer (get-url (format "http://www.lipsum.com/feed/xml?what=%s&amount=%d&start=%s" what amount start)))
   (setq lipsum-list (xml-parse lipsum-buffer 7))
   (nth 1 (first (nth 2 (first (nth 2 (first lipsum-list)))))))


(lipsum "paras" 2 "true")

TedWalther
Posts: 608
Joined: Mon Feb 05, 2007 1:04 am
Location: Abbotsford, BC
Contact:

Re: Lorem Ipsum

Post by TedWalther »

Sweet!
Cavemen in bearskins invaded the ivory towers of Artificial Intelligence. Nine months later, they left with a baby named newLISP. The women of the ivory towers wept and wailed. "Abomination!" they cried.

varbanov
Posts: 6
Joined: Mon Jul 01, 2013 1:33 pm
Location: Sofia, Bulgaria

Re: Lorem Ipsum

Post by varbanov »

Just for fun, Your definition rewritten ... :)

Code: Select all

(define (lipsum2 (what "paras") (amount 3) (start "true"))
	      ((xml-parse (get-url (format "http://www.lipsum.com/feed/xml?what=%s&amount=%d&start=%s" what amount start)) 7)
	        0 2 0 2 0 1))

(lipsum2)

Locked