<?xml version="1.0" encoding="utf-8"?>
<!-- If you are running a bot please visit this policy page outlining rules you must respect. http://www.livejournal.com/bots/ -->
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:lj="http://www.livejournal.com">
  <id>urn:lj:livejournal.com:atom1:vega_33</id>
  <title>Drunken Dionysus the songwriting magus</title>
  <subtitle>Drunken Dionysus the songwriting magus</subtitle>
  <author>
    <name>Drunken Dionysus the songwriting magus</name>
  </author>
  <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/"/>
  <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom"/>
  <updated>2009-11-06T04:52:22Z</updated>
  <lj:journal userid="347476" username="vega_33" type="personal"/>
  <link rel="service.feed" type="application/x.atom+xml" href="http://vega-33.livejournal.com/data/atom" title="Drunken Dionysus the songwriting magus"/>
  <link rel="hub" href="http://pubsubhubbub.appspot.com/"/>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:648131</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/648131.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=648131"/>
    <title>Today's amusement - a HTTP 1/1 client in scsh :P</title>
    <published>2009-11-06T04:52:22Z</published>
    <updated>2009-11-06T04:52:22Z</updated>
    <content type="html">&lt;a name="cutid1"&gt;&lt;/a&gt;&lt;br /&gt;&lt;pre&gt;(define (get-web-page host url headers)
  (let* (
	 (s (socket-connect protocol-family/internet socket-type/stream host 80))
	 (op (socket:outport s))
	 (ip (socket:inport s))
	 (cj '())
	 (r "") (loopme #t) (read-chunk #f) (chunk-size 0)
	 (hdr "") (hdrs '()) (hname "") (hvalue "")
	 (wp "")
	 )
    (let ((portout (string-append 
		    "GET " url " HTTP/1.1\r\nHost: " host "\r\n" 
		    (fold (lambda (s s2) (string-append s "\r\n" s2)) 
			  "" headers) 
		    "\r\n")
		   )) 
      (display portout op)
      )
    (let ((status-line (regexp-substitute/global #f (rx "\r") (read-line ip) 'pre 'post)))
      (let loop ()
	(set! hdr (read-line ip))
	(call-with-values (lambda () (regexp-search (rx ":") hdr))
	  (lambda (m)
	    (if m (begin
		      (set! hvalue (substring hdr (+ (match:end m) 1) (- (string-length hdr) 1)))
		      (set! hname (substring hdr 0 (match:start m)))

		      (if (equal? hname "Content-Length") 
			  (begin
			    (set! chunk-size (string-&amp;gt;number hvalue))
			    )
			    #f)
		      (if (and (equal? hname "Transfer-Encoding") 
			       (equal? hvalue "chunked"))

			  (set! read-chunk #t) #f)

		      (if (equal? hname "Set-Cookie") 
			  (set! cj (cons hvalue cj)) #f)
		      (set! hdrs (cons (cons hname hvalue) hdrs))
		      )

		(set! loopme #f))

	    ) ; lambda
	  ) ; call-with-values
	(if loopme (loop))
	)
      (if read-chunk 
	  (begin
	    (let chunkloop ((chunkline (regexp-substitute/global #f (rx bos (submatch (+ hex-digit)) (* ";" (+ nonl)) (* "\r")) (read-line ip) 'pre 1 'post)))
	      (let ((chunk-size (decode-hex-string chunkline)))
		(if (eq? chunk-size 0) #f 
		    (begin
		      (set! wp (string-append wp (read-string chunk-size ip))) ; read chunk
		      (display (read-line ip)) (newline) ; discard the CRLF
		      (chunkloop (regexp-substitute/global #f (rx bos (submatch (+ hex-digit)) (* ";" (+ nonl)) (* "\r")) (read-line ip) 'pre 1 'post)) ; process the next chunk
		      )
		    )
		)
	      )
	    ; Handle chunked encoding
	    (display "Blowing chunks...") (newline)
	    )
	  (begin
	    (display "reading chunk of size ") (display chunk-size) (newline)
	    (set! wp (read-string chunk-size ip))
	    )

	  )

      (list status-line (reverse! hdrs) cj wp)
      ) ; let status-line
    ) ; let* wp...
)

(define (basic-auth username password)
  (string-append "Authorization: Basic " (base64-encode (string-append username ":" password)))
  )

(define (decode-hex-string str)
  (let* ((s1 (string-&amp;gt;list (string-downcase str))) (mul 1) (num 0) (zero (char-&amp;gt;ascii #\0)) (a (- (char-&amp;gt;ascii #\a) 10)))
    (display (map char-&amp;gt;ascii s1))
    (for-each (lambda (ch) 
		(set! num (+ num (* mul (if (char-digit? ch) (- (char-&amp;gt;ascii ch) zero) (- (char-&amp;gt;ascii ch) a)))))
		(set! mul (* 16 mul)))
	      (reverse s1))
    num
    ) ; let
) ; define

(define (char-sequence start-char end-char)
  (let ((s '()))
    (let l ((x (char-&amp;gt;ascii start-char)) (y (char-&amp;gt;ascii end-char)))
      (set! s (cons (ascii-&amp;gt;char y) s))
      (if (&amp;lt; x y) (l x (- y 1))
          (begin (if (&amp;lt; y x) (l x (+ y 1)) s))))
    )
  )

(define base64-charset (append (char-sequence #\A #\Z) (char-sequence #\a #\z) (char-sequence #\0 #\9) '(#\+ #\/ #\=)))

(define (base64-encode str)
  (let ((ret '()) (l (- (string-length str) 1)))
    (if (&amp;gt;= l 2)
        (begin
          (let encodeloop ((ref-loc 0))
            (let* (
                   (a (char-&amp;gt;ascii (string-ref str ref-loc)))
                   (b (char-&amp;gt;ascii (string-ref str (+ ref-loc 1))))
                   (c (char-&amp;gt;ascii (string-ref str (+ ref-loc 2))))
                   (d (arithmetic-shift a -2))
                   (e (+ (bitwise-and 63 (arithmetic-shift a 4))
                         (arithmetic-shift b -4)))
                   (f (+ (arithmetic-shift (bitwise-and 15 b) 2)
                         (arithmetic-shift (bitwise-and 192 c) -6)))
                   (g (bitwise-and c 63))
                   )

              (set! ret (append ret (list (list-ref base64-charset d)
                                          (list-ref base64-charset e)
                                          (list-ref base64-charset f)
                                          (list-ref base64-charset g))))
              (if (&amp;lt;= (+ ref-loc 5) l) (encodeloop (+ ref-loc 3)) ret)
              ) ; let*
            ) ;let encodeloop
          ) #f)

    (let* ((r (remainder (+ l 1) 3))
           (ref-loc (- l (- r 1))))

      (let* (
             (a (if (&amp;gt;= r 1) (char-&amp;gt;ascii (string-ref str ref-loc)) 0))
             (b (if (&amp;gt;= r 2) (char-&amp;gt;ascii (string-ref str (+ ref-loc 1))) 0))
             (c (if (eq? r 0) 0 0))
             (d (arithmetic-shift a -2))
             (e (+ (bitwise-and 63 (arithmetic-shift a 4))
                   (arithmetic-shift b -4)))
             (f (if (eq? b 0) 64 (+ (arithmetic-shift (bitwise-and 15 b) 2)
                   (arithmetic-shift (bitwise-and 192 c) -6))))
             (g (if (eq? c 0) 64 (bitwise-and c 63)))
             )
        (if (not (eq? a 0))
            (set! ret (append ret (list (list-ref base64-charset d)
                                        (list-ref base64-charset e)
                                        (list-ref base64-charset f)
                                        (list-ref base64-charset g)))) #f
            )
        ) ; outer let*
      ) ; let r remainder...
    (list-&amp;gt;string ret)
    ) ; let ret
  ) ; base64-encode
&lt;/pre&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:647909</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/647909.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=647909"/>
    <title>Random Scheme horror story</title>
    <published>2009-10-30T03:49:29Z</published>
    <updated>2009-10-30T03:49:29Z</updated>
    <content type="html">(define (flatten l) (letrec ((f (lambda (x y) (if (list? x) (append (fold-right f '() x) y) (cons x y))))) (fold-right f '() l)))&lt;br /&gt;&lt;br /&gt;Thought while I was down with the flu but still working I might share this monster with you which I just derived today as an alternative form of flatten, which is really a beauty rather than a beast*.  (letrec) ftw :D.&lt;br /&gt;&lt;br /&gt;* Of course some people might shrink in horror from this example of recursion, but I'm slowly getting used to it as I learn to cope with the many variants of Scheme.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:645956</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/645956.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=645956"/>
    <title>LISP + UFFI == Mind blown</title>
    <published>2009-08-21T02:09:26Z</published>
    <updated>2009-08-21T02:09:26Z</updated>
    <content type="html">I've been reading over the code to cl-canvas, a LISP library which allows you to do basic graphics programming in CLISP or even I believe in SBCL (among others) within Windows.&lt;br /&gt;&lt;br /&gt;Looking at all the hic:def-function, hic:ff-defun-callable and hic:with-foreign-object forms within the module, I'm starting to realise.  I might not know much about LISP besides the basics right now, but with the capacity to pass functions to functions as parameters and abstract the graphics layer, this is shit easy (or at least a lot easier) to create cross platform graphics code!  I mean, the FFI basically seems to totally abstract the process of loading DLL's or other shared objects, and thats pretty fucking cool. I'm now really looking forward to attempt an install of LISP in a Box as well as SBCL at home to work this stuff out bit by bit.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:645143</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/645143.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=645143"/>
    <title>To the edge of space</title>
    <published>2009-08-07T01:58:49Z</published>
    <updated>2009-08-07T01:58:49Z</updated>
    <content type="html">&lt;lj-embed id="14" /&gt;&lt;br /&gt;&lt;br /&gt;Truly breathtaking.  Thanks Digg :)</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:644391</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/644391.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=644391"/>
    <title>Consciousness drives the universe (but whats the vehicle?)</title>
    <published>2009-07-25T06:02:43Z</published>
    <updated>2009-07-25T06:02:43Z</updated>
    <content type="html">&lt;lj-embed id="13" /&gt;&lt;br /&gt;&lt;br /&gt;Nice little video about my favourite subject of all, the C-word, featuring David Icke, David Lynch, Grant Morrison, and even a bit of Neil Kramer :)</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:641343</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/641343.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=641343"/>
    <title>Neil Kramer, on the Dr Love Podcast #3</title>
    <published>2009-07-04T00:40:38Z</published>
    <updated>2009-07-04T00:40:38Z</updated>
    <content type="html">As I fly above the islands of Albion&lt;br /&gt;I feel as though I grow into God&lt;br /&gt;The heartbeat of our ever loving mother &lt;br /&gt;pumping lifeblood into me as here I am &lt;br /&gt;within the womb of God&lt;br /&gt;&lt;br /&gt;I can hear the echoes of the outside universe&lt;br /&gt;And feel the emotions of mother as she nurtures me&lt;br /&gt;As all is perfect in this place&lt;br /&gt;All in all, All is... Nothing at All.&lt;br /&gt;&lt;br /&gt;And in each full pulse I grow&lt;br /&gt;Forwards, backwards, up, down,&lt;br /&gt;Expanding in all directions&lt;br /&gt;As the oceans thrum lovingly&lt;br /&gt;Between earth and moon.&lt;br /&gt;&lt;br /&gt;The jellyfish tendrils of the city below glow&lt;br /&gt;As if lying upon the ocean's silent floor.&lt;br /&gt;Gently drifting by me.  Still in infinity.&lt;br /&gt;Invisibly growing, elegantly.&lt;br /&gt;&lt;br /&gt;But I feel that, as I question, I separate...&lt;br /&gt;As I ponder I wander... further from the place I originated.&lt;br /&gt;I turn to face the chittering chattering questioning&lt;br /&gt;And again get lost... till I sit still...&lt;br /&gt;&lt;br /&gt;Calming my mind to find the roaring silence...&lt;br /&gt;As I cease to hunt and seek, I see the invisible vistas...&lt;br /&gt;Where I touch an emptiness is bliss that can then cease to exist.&lt;br /&gt;As all in all, all, is nothing at all.&lt;br /&gt;&lt;br /&gt;I build this place but does this matter?&lt;br /&gt;To clutter, distract... the view from the gut dropping void.&lt;br /&gt;As intelligence patting itself on the back knocks itself back into whats the matter?&lt;br /&gt;When after all it doesn't matter at all...&lt;br /&gt;In all the mountains stand... the seas rock back and forth...&lt;br /&gt;The oceans move the land without reason.&lt;br /&gt;The seasons change slow upon the Wheel of Real as they wish.&lt;br /&gt;As a moment... raindrops falls... it will never catch the one below.&lt;br /&gt;As all in all, all is nothing at all.&lt;br /&gt;&lt;br /&gt;And my addiction to this... questioning, &lt;br /&gt;to this reaching in to understanding&lt;br /&gt;Is standing under original feeling&lt;br /&gt;And revealing God's sigh by continually asking "Why?"&lt;br /&gt;So I seek to explain through these words of admitted confusion&lt;br /&gt;That are blessed by the sun and the moon and the changing seasons&lt;br /&gt;&lt;br /&gt;Adaptations of the unfolding petals of creation&lt;br /&gt;Cause friction if I try to hold them.&lt;br /&gt;With the jewel within witnessing the moment&lt;br /&gt;I return to the ground with the present wrapped in my heart.&lt;br /&gt;The gift from the ever flowing river.&lt;br /&gt;The one day blooming flower&lt;br /&gt;The shooting star the afternoon shower all passing by&lt;br /&gt;Impossible to tether&lt;br /&gt;Only to be noticed... and to be loved.&lt;br /&gt;&lt;br /&gt;To be joyously praised as I grow in God-mother's belly &lt;br /&gt;towards that light which is the moment of birth&lt;br /&gt;Towards which I swim in perfect timing with the everything&lt;br /&gt;For everything is EVERYTHING&lt;br /&gt;And everything is nothing.&lt;br /&gt;&lt;br /&gt;As all in all... All is Nothing at All.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:640289</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/640289.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=640289"/>
    <title>vega_33 @ 2009-06-21T10:25:00</title>
    <published>2009-06-21T00:29:04Z</published>
    <updated>2009-06-21T00:29:04Z</updated>
    <content type="html">I have wheat shoots sprouting in my measuring cup which I've been slowly sprouting over the last several days.  I'm going to be using them to make rejuvelac eventually, if I don't manage to eat all of them first :P.  They're so tasty!</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:640166</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/640166.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=640166"/>
    <title>vega_33 @ 2009-06-21T08:48:00</title>
    <published>2009-06-20T22:49:39Z</published>
    <updated>2009-06-20T22:49:39Z</updated>
    <content type="html">Why be normal?&lt;br /&gt;&lt;br /&gt;Be PARA-normal instead :P</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:639372</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/639372.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=639372"/>
    <title>QOTD</title>
    <published>2009-06-13T06:51:14Z</published>
    <updated>2009-06-13T06:51:14Z</updated>
    <content type="html">"The world is full of obvious things which nobody by any chance ever observed."&lt;br /&gt;- Sir Arthur Conan Doyle, as Sherlock Holmes.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:639188</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/639188.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=639188"/>
    <title>Supreme Love and Evolutionary Funk</title>
    <published>2009-06-13T01:06:25Z</published>
    <updated>2009-06-13T01:07:19Z</updated>
    <content type="html">&lt;div style="float: right; margin-left: 10px; margin-bottom: 10px;"&gt;&lt;a href="http://www.flickr.com/photos/vega_33/3620256219/" title="photo sharing"&gt;&lt;img src="http://farm4.static.flickr.com/3611/3620256219_ef2460608d_m.jpg" alt="" style="border: solid 2px #000000;" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-size: 0.9em; margin-top: 0px;"&gt;&lt;a href="http://www.flickr.com/photos/vega_33/3620256219/"&gt;supremelove&lt;/a&gt;&lt;br /&gt;Originally uploaded by &lt;a href="http://www.flickr.com/people/vega_33/"&gt;vega_33&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;This is the artwork that &lt;span class='ljuser  ljuser-name_veleda' lj:user='veleda' style='white-space: nowrap;'&gt;&lt;a href='http://veleda.livejournal.com/profile'&gt;&lt;img src='http://l-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://veleda.livejournal.com/'&gt;&lt;b&gt;veleda&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;, &lt;span class='ljuser  ljuser-name_espiritkat' lj:user='espiritkat' style='white-space: nowrap;'&gt;&lt;a href='http://espiritkat.livejournal.com/profile'&gt;&lt;img src='http://l-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://espiritkat.livejournal.com/'&gt;&lt;b&gt;espiritkat&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; and myself created for our Glamour Bombing/Quauour working with &lt;span class='ljuser  ljuser-name_feyonna' lj:user='feyonna' style='white-space: nowrap;'&gt;&lt;a href='http://feyonna.livejournal.com/profile'&gt;&lt;img src='http://l-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://feyonna.livejournal.com/'&gt;&lt;b&gt;feyonna&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; and L.  The work of creating it consisted of following certain strictures set forth by Hadit in Liber AL, followed by an invocation to Quaour which was quite powerful.  &lt;span class='ljuser  ljuser-name_veleda' lj:user='veleda' style='white-space: nowrap;'&gt;&lt;a href='http://veleda.livejournal.com/profile'&gt;&lt;img src='http://l-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://veleda.livejournal.com/'&gt;&lt;b&gt;veleda&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; then found the images to use in collage, and worked out some placements with &lt;span class='ljuser  ljuser-name_espiritkat' lj:user='espiritkat' style='white-space: nowrap;'&gt;&lt;a href='http://espiritkat.livejournal.com/profile'&gt;&lt;img src='http://l-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://espiritkat.livejournal.com/'&gt;&lt;b&gt;espiritkat&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;, who then made a black and gold shimmering background where the collage pieces would later be glued.  I then painted the Ru in the center, the radiance coming from it and the song lines (bringing the vision down from heaven to earth), and all the other painted stuff, then affixed the collage pieces where they needed to go.&lt;br /&gt;&lt;br /&gt;We were all pretty happy with the final result.  Hopefully it brightened the day of some ppl walking about the Park ;).&lt;br clear="all" /&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:637507</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/637507.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=637507"/>
    <title>Video girl - Classic Charlie Schmidt!</title>
    <published>2009-05-22T01:43:11Z</published>
    <updated>2009-05-22T01:43:11Z</updated>
    <content type="html">&lt;lj-embed id="12" /&gt;&lt;br /&gt;&lt;br /&gt;I loled hard :D</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:637374</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/637374.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=637374"/>
    <title>:D</title>
    <published>2009-05-21T21:01:03Z</published>
    <updated>2009-05-21T21:01:03Z</updated>
    <content type="html">It's a glorious day today :D.  Why, I hear you ask?  Because today is Friday.  And that is the day before Saturday - the day that I begin my two weeks of vacation.&lt;br /&gt;&lt;br /&gt;Bon voyage all!  I'll be seeing you real soon... :)</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:637033</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/637033.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=637033"/>
    <title>Baking the perfect crispbread</title>
    <published>2009-05-20T12:25:29Z</published>
    <updated>2009-05-20T12:25:29Z</updated>
    <content type="html">Today I discovered, quite by accident, how to make the perfect crisp-bread.  I had a batch of sourdough starter that was 3 days old (!) or more, and I was trying to turn them into cupcakes.  That didn't work, but I noticed that the drippings around the sides of the pan which had crisped earlier tasted almost exactly like Jatz Crackers!&lt;br /&gt;&lt;br /&gt;So it turns out that the alcoholic taste that the yeast imparts after too long, when it dries slowly along with the "dough"/batter, until the point where all the water has gone out of it, leaves a taste almost like cheese crackers.  My guess is this may partly be to do with the dead yeast cells drying out and producing a kind of natural MSG.&lt;br /&gt;&lt;br /&gt;So if you ever waste a sourdough or leave a ferment too long, spread a really thin layer on the bottom of a non stick pan, bake at 400 for at least 5-10 mins, then when one side is reasonably crisp, flip it and bake it on the other side.&lt;br /&gt;&lt;br /&gt;The whole secret in breadmaking (and indeed in most other cooking is the management of the 4 elements, of which the most important is WATER. In order for crust to form, the 3 fields of earth, water and air must interact with the help of fire in order to crystallize the earthen portion in an appropriate manner.  Sometimes you want to keep the water in, other times to take it out... really good cooking is all to do with how you mix these elements to produce a quintessence :D</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:636268</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/636268.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=636268"/>
    <title>I have found my calling... ;-)</title>
    <published>2009-05-12T01:37:10Z</published>
    <updated>2009-05-12T01:37:10Z</updated>
    <content type="html">&lt;a href="http://www.dudeism.com/"&gt;http://www.dudeism.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;"Heraclitus&lt;br /&gt;Greek Philosopher&lt;br /&gt;&lt;br /&gt;The man who wrote "you can never step into the same river twice" propagated the idea that everything was in flux, or "burning." Consequently one should make the most of it and spark one up whenever possible. And step into the river from time to time, preferably with a cocktail and an inner tube."</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:635085</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/635085.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=635085"/>
    <title>vega_33 @ 2009-05-04T21:57:00</title>
    <published>2009-05-04T11:58:55Z</published>
    <updated>2009-05-04T11:58:55Z</updated>
    <content type="html">Change is inevitable.&lt;br /&gt;&lt;br /&gt;We should learn to understand it.  Crowley was on the right track with the Yi Ching.&lt;br /&gt;&lt;br /&gt;Make the journey out and in.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:634799</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/634799.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=634799"/>
    <title>My fave chord progressions ATM</title>
    <published>2009-05-04T11:20:29Z</published>
    <updated>2009-05-04T11:20:29Z</updated>
    <content type="html">Im V V7 Im I IVm Im V Im (from "Surf in Heaven")&lt;br /&gt;and #2:&lt;br /&gt;I iii(m) IV bIIIm V... (From "Beauty comes from the inside" by Adrian Woodhouse, a favourite song - lyrics not available online)</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:634558</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/634558.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=634558"/>
    <title>Relax, everything is under control :D</title>
    <published>2009-05-03T22:06:19Z</published>
    <updated>2009-05-03T22:06:19Z</updated>
    <content type="html">Hey, web cats and web kittehs!  We now return you to yor regularly scheduled programming.  You may be interested, especially you science buffs, in the Chemogenesis web book: &lt;br /&gt;&lt;a href="http://www.meta-synthesis.com/webbook.html"&gt;http://www.meta-synthesis.com/webbook.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;An online discussion of current chemical science.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:633762</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/633762.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=633762"/>
    <title>Quote of the day</title>
    <published>2009-05-02T01:53:18Z</published>
    <updated>2009-05-02T01:53:18Z</updated>
    <content type="html">"To read a newspaper is to refrain from reading something worth while. The first discipline of education must therefore be to refuse resolutely to feed the mind with canned chatter."&lt;br /&gt;-- Aleister Crowley.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:633078</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/633078.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=633078"/>
    <title>Hey there Cthulhu</title>
    <published>2009-04-28T05:17:34Z</published>
    <updated>2009-04-28T05:17:34Z</updated>
    <content type="html">&lt;lj-embed id="11" /&gt;&lt;br /&gt;&lt;br /&gt;Classic :D</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:632494</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/632494.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=632494"/>
    <title>No ANZAC day holiday for me. :P</title>
    <published>2009-04-26T09:45:25Z</published>
    <updated>2009-04-26T09:45:25Z</updated>
    <content type="html">I thank the new Australian government for abolishing the ANZAC day long weekend this year in Sydney and several other states.  Thanks guys!  Way to remember the diggers!  Cuz who needs to destroy commerce, right, for a bit of rememberance of people who fought to preserve our way of life, unrewarded, undesiring of war?  Who needs to give thanks by resting and thinkin, when we could be propitiating the almighty fucking dollar in their name right?&lt;br /&gt;&lt;br /&gt;Fuckers.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:632105</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/632105.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=632105"/>
    <title>Etmology of the word venom and more</title>
    <published>2009-04-26T06:08:07Z</published>
    <updated>2009-04-26T06:08:07Z</updated>
    <category term="alchemy"/>
    <content type="html">"Dans cet esprit il faut considérer deux formes dans son suc, et dans son venin. Son suc est double qui conserve tous les corps, par un Sel amer."&lt;br /&gt;&lt;br /&gt;Here is an example of Green Language at its finest.  This is from Vinceslas Lavinius and his "Treatise of the Terrestrial Sky".  In literal translation it means:&lt;br /&gt;"In this spirit it is necessary to consider two forms: in its juice, and in its poison. Its juice is double which preserves all the bodies, by a bitter salt."&lt;br /&gt;&lt;br /&gt;Now the word for poison, venin (or venom) has a strange etymology.  The same term which forms the word for venom, also formed the word for Venus, and also to venerate. A similar strange congruence of terms is found in Greek, where the word Kupris means the impure, a word which eventually forms the etymology for the word cupros (Venus, copper).  In some strange way the word for Venus and for a love potion (venin) eventually evolved into a word for a poison.  A text on toxicology says such:&lt;br /&gt;&lt;i&gt;'there is also a strange history behind the word venom.  It began as&lt;br /&gt;the simple word wen, meaning to wish or will, leading more or less&lt;br /&gt;directly to "win". Along the way, the word also evolved into "venus",&lt;br /&gt;"venery", and "venerate", all indicating varieties of love. The love&lt;br /&gt;potion was called venin, which gradually acquired todays sense of&lt;br /&gt;venom.  Nobody can explain why the terms "poison" and "venom" come&lt;br /&gt;from love potions."' &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Similarly, the word for juice, comes from the Latin meaning to imbibe or take in.  The word amer (also close to amor, love), interestingly enough, has one of its meanings as "clear", which in another English meaning is to be "succinct".&lt;br /&gt;&lt;br /&gt;So a "bitter salt" might also be a "clear salt".  We have double and triple meanings in this one little bit of text.  And the term "clear salt", which my friend JK has translated as "bitter salt", is also used in texts such as Hollandus' text "The Philosopher's Stone".&lt;br /&gt;&lt;br /&gt;We should ask ourselves, why should the words for clear and bitter be the same? (amer)  Answering this should give us a clue as to the nature of this "bitter salt" which Lavinius speaks of.&lt;br /&gt;&lt;br /&gt;Thus, many alchemical texts are written in the Green Language - that is, they employ etymologies and double-meanings in such a way as to make the student of alchemy search out the origins of language.  This organic evolution of language is how alchemists mask their meaning in texts... and thus conceal a simple meaning beneath layers of text.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:632027</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/632027.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=632027"/>
    <title>I'm lovin it!</title>
    <published>2009-04-25T01:03:14Z</published>
    <updated>2009-04-25T01:03:14Z</updated>
    <content type="html">"Space as such is infinite and our Cosmos or Universe may be considered as a particle of space, having form--- spherical form --- and being, of course, finite in extent."&lt;br /&gt;&lt;br /&gt;Such a concise definition, but one that includes the possibility of alternate universes, though perhaps not necessarily in the Everett-Wheeler sense.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:631357</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/631357.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=631357"/>
    <title>Quote of the day</title>
    <published>2009-04-24T10:05:35Z</published>
    <updated>2009-04-24T10:05:35Z</updated>
    <content type="html">"Anyone who sees in his own occupation merely a means of earning money degrades it; but he that sees in it a service to mankind ennobles both his labour and himself." - A. Lawrence Lowell.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:631162</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/631162.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=631162"/>
    <title>Today's word of the day is: daggerin'</title>
    <published>2009-04-24T03:06:26Z</published>
    <updated>2009-04-24T03:06:26Z</updated>
    <content type="html">&lt;a href="http://oddfactoids.blogspot.com/2009/04/thou-shalt-not-practice-daggering.html"&gt;http://oddfactoids.blogspot.com/2009/04/thou-shalt-not-practice-daggering.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The article is enough to make a guy wince ;-)</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:vega_33:631029</id>
    <link rel="alternate" type="text/html" href="http://vega-33.livejournal.com/631029.html"/>
    <link rel="self" type="text/xml" href="http://vega-33.livejournal.com/data/atom/?itemid=631029"/>
    <title>Father of Invention</title>
    <published>2009-04-24T01:57:57Z</published>
    <updated>2009-04-24T01:57:57Z</updated>
    <content type="html">Found this cool article while digging around on Keelynet earlier:&lt;br /&gt;&lt;a href="http://www.haaretz.com/hasen/spages/1074122.html"&gt;http://www.haaretz.com/hasen/spages/1074122.html&lt;/a&gt;</content>
  </entry>
</feed>
