PAPA'S CAVE – commonplace and hideaway

VMS Tutorials

Gathering references in preparation for working on my Alpha host account at Polarhome. Additional resources: http://www.polarhome.com:763/~papa/

Category: vms

2010/07/28 04:22 · David "papa" Meyer · 0 Comments · 0 Linkbacks

Blosxom Up and Down

Sjambak

Read 2010/7/1:

→ Read more...

This Crowded Earth

Ahead of its time in 1958, this novel's central theme of overpopulation is a crisis-du-jour whose time has come and gone. However, Bloch brings much more than that to the story: a very plausible portrayal of humanity trying to preserve the appearance of normality in the face of impending doom, unintended consequences to even the best-intentioned social engineering, and a judgement passed on the entire science fiction genre, which make the novel well worth the read. This is the first Bloch novel I've read, though his is a very well-known author and I have watched movies and television he has scripted (Psycho, Star Trek's Catspaw). Read 2010/7/7.

→ Read more...

vcard.lisp parse-attribute

Incremental improvement to parse-attribute based on advice here:

(defun parse-attribute (string)
  (let*
      ((pos (position #\: string))     ; need to allow for lines w/out ":"
       (prop (subseq string 0 pos))
       (val (subseq string (1+ pos))))
    (setq *curr-card* (append *curr-card* (list (values (intern (string-upcase prop) "KEYWORD")) val))))) ; (values ...) and (string-upcase ...) necessary?

Once this works, next steps:

  1. derived properties (first name, last name)
  2. HTML dump (all records, properties)
  3. alternate prop. names in HTML listing
  4. list all properties
  5. CSV output (all records, selected & ordered prop's)

Category: vcard

 
start.txt · Last modified: 2010/06/03 04:06 by papa
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki