<?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/  -->
<rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/' xmlns:media='http://search.yahoo.com/mrss/' xmlns:atom10='http://www.w3.org/2005/Atom'>
<channel>
  <title>Drunken Dionysus the songwriting magus</title>
  <link>http://vega-33.livejournal.com/</link>
  <description>Drunken Dionysus the songwriting magus - LiveJournal.com</description>
  <lastBuildDate>Fri, 06 Nov 2009 04:52:22 GMT</lastBuildDate>
  <generator>LiveJournal / LiveJournal.com</generator>
  <lj:journal>vega_33</lj:journal>
  <lj:journalid>347476</lj:journalid>
  <lj:journaltype>personal</lj:journaltype>
  <atom10:link rel='hub' href='http://pubsubhubbub.appspot.com/' />
  <image>
    <url>http://l-userpic.livejournal.com/89383472/347476</url>
    <title>Drunken Dionysus the songwriting magus</title>
    <link>http://vega-33.livejournal.com/</link>
    <width>100</width>
    <height>90</height>
  </image>

<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/648131.html</guid>
  <pubDate>Fri, 06 Nov 2009 04:52:22 GMT</pubDate>
  <title>Today&apos;s amusement - a HTTP 1/1 client in scsh :P</title>
  <link>http://vega-33.livejournal.com/648131.html</link>
  <description>&lt;a name=&quot;cutid1&quot;&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 &apos;())
	 (r &quot;&quot;) (loopme #t) (read-chunk #f) (chunk-size 0)
	 (hdr &quot;&quot;) (hdrs &apos;()) (hname &quot;&quot;) (hvalue &quot;&quot;)
	 (wp &quot;&quot;)
	 )
    (let ((portout (string-append 
		    &quot;GET &quot; url &quot; HTTP/1.1\r\nHost: &quot; host &quot;\r\n&quot; 
		    (fold (lambda (s s2) (string-append s &quot;\r\n&quot; s2)) 
			  &quot;&quot; headers) 
		    &quot;\r\n&quot;)
		   )) 
      (display portout op)
      )
    (let ((status-line (regexp-substitute/global #f (rx &quot;\r&quot;) (read-line ip) &apos;pre &apos;post)))
      (let loop ()
	(set! hdr (read-line ip))
	(call-with-values (lambda () (regexp-search (rx &quot;:&quot;) 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 &quot;Content-Length&quot;) 
			  (begin
			    (set! chunk-size (string-&amp;gt;number hvalue))
			    )
			    #f)
		      (if (and (equal? hname &quot;Transfer-Encoding&quot;) 
			       (equal? hvalue &quot;chunked&quot;))

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

		      (if (equal? hname &quot;Set-Cookie&quot;) 
			  (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)) (* &quot;;&quot; (+ nonl)) (* &quot;\r&quot;)) (read-line ip) &apos;pre 1 &apos;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)) (* &quot;;&quot; (+ nonl)) (* &quot;\r&quot;)) (read-line ip) &apos;pre 1 &apos;post)) ; process the next chunk
		      )
		    )
		)
	      )
	    ; Handle chunked encoding
	    (display &quot;Blowing chunks...&quot;) (newline)
	    )
	  (begin
	    (display &quot;reading chunk of size &quot;) (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 &quot;Authorization: Basic &quot; (base64-encode (string-append username &quot;:&quot; 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 &apos;()))
    (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) &apos;(#\+ #\/ #\=)))

(define (base64-encode str)
  (let ((ret &apos;()) (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;</description>
  <comments>http://vega-33.livejournal.com/648131.html</comments>
  <lj:mood>accomplished</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/647909.html</guid>
  <pubDate>Fri, 30 Oct 2009 03:49:29 GMT</pubDate>
  <title>Random Scheme horror story</title>
  <link>http://vega-33.livejournal.com/647909.html</link>
  <description>(define (flatten l) (letrec ((f (lambda (x y) (if (list? x) (append (fold-right f &apos;() x) y) (cons x y))))) (fold-right f &apos;() 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&apos;m slowly getting used to it as I learn to cope with the many variants of Scheme.</description>
  <comments>http://vega-33.livejournal.com/647909.html</comments>
  <lj:mood>sick</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>3</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/645956.html</guid>
  <pubDate>Fri, 21 Aug 2009 02:09:26 GMT</pubDate>
  <title>LISP + UFFI == Mind blown</title>
  <link>http://vega-33.livejournal.com/645956.html</link>
  <description>I&apos;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&apos;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&apos;s or other shared objects, and thats pretty fucking cool. I&apos;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.</description>
  <comments>http://vega-33.livejournal.com/645956.html</comments>
  <lj:mood>creative</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/645143.html</guid>
  <pubDate>Fri, 07 Aug 2009 01:58:49 GMT</pubDate>
  <title>To the edge of space</title>
  <link>http://vega-33.livejournal.com/645143.html</link>
  <description>&lt;lj-embed id=&quot;14&quot; /&gt;&lt;br /&gt;&lt;br /&gt;Truly breathtaking.  Thanks Digg :)</description>
  <comments>http://vega-33.livejournal.com/645143.html</comments>
  <lj:mood>enthralled</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>1</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/644391.html</guid>
  <pubDate>Sat, 25 Jul 2009 06:02:43 GMT</pubDate>
  <title>Consciousness drives the universe (but whats the vehicle?)</title>
  <link>http://vega-33.livejournal.com/644391.html</link>
  <description>&lt;lj-embed id=&quot;13&quot; /&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 :)</description>
  <comments>http://vega-33.livejournal.com/644391.html</comments>
  <lj:mood>pleased</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/641343.html</guid>
  <pubDate>Sat, 04 Jul 2009 00:40:38 GMT</pubDate>
  <title>Neil Kramer, on the Dr Love Podcast #3</title>
  <link>http://vega-33.livejournal.com/641343.html</link>
  <description>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&apos;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&apos;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&apos;s sigh by continually asking &quot;Why?&quot;&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&apos;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.</description>
  <comments>http://vega-33.livejournal.com/641343.html</comments>
  <lj:mood>indescribable</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/640289.html</guid>
  <pubDate>Sun, 21 Jun 2009 00:29:04 GMT</pubDate>
  <link>http://vega-33.livejournal.com/640289.html</link>
  <description>I have wheat shoots sprouting in my measuring cup which I&apos;ve been slowly sprouting over the last several days.  I&apos;m going to be using them to make rejuvelac eventually, if I don&apos;t manage to eat all of them first :P.  They&apos;re so tasty!</description>
  <comments>http://vega-33.livejournal.com/640289.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>2</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/640166.html</guid>
  <pubDate>Sat, 20 Jun 2009 22:49:39 GMT</pubDate>
  <link>http://vega-33.livejournal.com/640166.html</link>
  <description>Why be normal?&lt;br /&gt;&lt;br /&gt;Be PARA-normal instead :P</description>
  <comments>http://vega-33.livejournal.com/640166.html</comments>
  <lj:mood>amused</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>1</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/639372.html</guid>
  <pubDate>Sat, 13 Jun 2009 06:51:14 GMT</pubDate>
  <title>QOTD</title>
  <link>http://vega-33.livejournal.com/639372.html</link>
  <description>&quot;The world is full of obvious things which nobody by any chance ever observed.&quot;&lt;br /&gt;- Sir Arthur Conan Doyle, as Sherlock Holmes.</description>
  <comments>http://vega-33.livejournal.com/639372.html</comments>
  <lj:mood>thoughtful</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/639188.html</guid>
  <pubDate>Sat, 13 Jun 2009 01:06:25 GMT</pubDate>
  <title>Supreme Love and Evolutionary Funk</title>
  <link>http://vega-33.livejournal.com/639188.html</link>
  <description>&lt;div style=&quot;float: right; margin-left: 10px; margin-bottom: 10px;&quot;&gt;&lt;a href=&quot;http://www.flickr.com/photos/vega_33/3620256219/&quot; title=&quot;photo sharing&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3611/3620256219_ef2460608d_m.jpg&quot; alt=&quot;&quot; style=&quot;border: solid 2px #000000;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style=&quot;font-size: 0.9em; margin-top: 0px;&quot;&gt;&lt;a href=&quot;http://www.flickr.com/photos/vega_33/3620256219/&quot;&gt;supremelove&lt;/a&gt;&lt;br /&gt;Originally uploaded by &lt;a href=&quot;http://www.flickr.com/people/vega_33/&quot;&gt;vega_33&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;This is the artwork that &lt;span class=&apos;ljuser  ljuser-name_veleda&apos; lj:user=&apos;veleda&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://veleda.livejournal.com/profile&apos;&gt;&lt;img src=&apos;http://l-stat.livejournal.com/img/userinfo.gif&apos; alt=&apos;[info]&apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://veleda.livejournal.com/&apos;&gt;&lt;b&gt;veleda&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;, &lt;span class=&apos;ljuser  ljuser-name_espiritkat&apos; lj:user=&apos;espiritkat&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://espiritkat.livejournal.com/profile&apos;&gt;&lt;img src=&apos;http://l-stat.livejournal.com/img/userinfo.gif&apos; alt=&apos;[info]&apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://espiritkat.livejournal.com/&apos;&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=&apos;ljuser  ljuser-name_feyonna&apos; lj:user=&apos;feyonna&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://feyonna.livejournal.com/profile&apos;&gt;&lt;img src=&apos;http://l-stat.livejournal.com/img/userinfo.gif&apos; alt=&apos;[info]&apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://feyonna.livejournal.com/&apos;&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=&apos;ljuser  ljuser-name_veleda&apos; lj:user=&apos;veleda&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://veleda.livejournal.com/profile&apos;&gt;&lt;img src=&apos;http://l-stat.livejournal.com/img/userinfo.gif&apos; alt=&apos;[info]&apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://veleda.livejournal.com/&apos;&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=&apos;ljuser  ljuser-name_espiritkat&apos; lj:user=&apos;espiritkat&apos; style=&apos;white-space: nowrap;&apos;&gt;&lt;a href=&apos;http://espiritkat.livejournal.com/profile&apos;&gt;&lt;img src=&apos;http://l-stat.livejournal.com/img/userinfo.gif&apos; alt=&apos;[info]&apos; width=&apos;17&apos; height=&apos;17&apos; style=&apos;vertical-align: bottom; border: 0; padding-right: 1px;&apos; /&gt;&lt;/a&gt;&lt;a href=&apos;http://espiritkat.livejournal.com/&apos;&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=&quot;all&quot; /&gt;</description>
  <comments>http://vega-33.livejournal.com/639188.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>2</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/637507.html</guid>
  <pubDate>Fri, 22 May 2009 01:43:11 GMT</pubDate>
  <title>Video girl - Classic Charlie Schmidt!</title>
  <link>http://vega-33.livejournal.com/637507.html</link>
  <description>&lt;lj-embed id=&quot;12&quot; /&gt;&lt;br /&gt;&lt;br /&gt;I loled hard :D</description>
  <comments>http://vega-33.livejournal.com/637507.html</comments>
  <lj:mood>amused</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/637374.html</guid>
  <pubDate>Thu, 21 May 2009 21:01:03 GMT</pubDate>
  <title>:D</title>
  <link>http://vega-33.livejournal.com/637374.html</link>
  <description>It&apos;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&apos;ll be seeing you real soon... :)</description>
  <comments>http://vega-33.livejournal.com/637374.html</comments>
  <lj:mood>cheerful</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/637033.html</guid>
  <pubDate>Wed, 20 May 2009 12:25:29 GMT</pubDate>
  <title>Baking the perfect crispbread</title>
  <link>http://vega-33.livejournal.com/637033.html</link>
  <description>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&apos;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 &quot;dough&quot;/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</description>
  <comments>http://vega-33.livejournal.com/637033.html</comments>
  <lj:mood>happy</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>2</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/636268.html</guid>
  <pubDate>Tue, 12 May 2009 01:37:10 GMT</pubDate>
  <title>I have found my calling... ;-)</title>
  <link>http://vega-33.livejournal.com/636268.html</link>
  <description>&lt;a href=&quot;http://www.dudeism.com/&quot;&gt;http://www.dudeism.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&quot;Heraclitus&lt;br /&gt;Greek Philosopher&lt;br /&gt;&lt;br /&gt;The man who wrote &quot;you can never step into the same river twice&quot; propagated the idea that everything was in flux, or &quot;burning.&quot; 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.&quot;</description>
  <comments>http://vega-33.livejournal.com/636268.html</comments>
  <lj:mood>amused</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>2</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/635085.html</guid>
  <pubDate>Mon, 04 May 2009 11:58:55 GMT</pubDate>
  <link>http://vega-33.livejournal.com/635085.html</link>
  <description>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.</description>
  <comments>http://vega-33.livejournal.com/635085.html</comments>
  <lj:mood>thoughtful</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/634799.html</guid>
  <pubDate>Mon, 04 May 2009 11:20:29 GMT</pubDate>
  <title>My fave chord progressions ATM</title>
  <link>http://vega-33.livejournal.com/634799.html</link>
  <description>Im V V7 Im I IVm Im V Im (from &quot;Surf in Heaven&quot;)&lt;br /&gt;and #2:&lt;br /&gt;I iii(m) IV bIIIm V... (From &quot;Beauty comes from the inside&quot; by Adrian Woodhouse, a favourite song - lyrics not available online)</description>
  <comments>http://vega-33.livejournal.com/634799.html</comments>
  <lj:mood>drunk</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/634558.html</guid>
  <pubDate>Sun, 03 May 2009 22:06:19 GMT</pubDate>
  <title>Relax, everything is under control :D</title>
  <link>http://vega-33.livejournal.com/634558.html</link>
  <description>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=&quot;http://www.meta-synthesis.com/webbook.html&quot;&gt;http://www.meta-synthesis.com/webbook.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;An online discussion of current chemical science.</description>
  <comments>http://vega-33.livejournal.com/634558.html</comments>
  <lj:mood>cheerful</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/633762.html</guid>
  <pubDate>Sat, 02 May 2009 01:53:18 GMT</pubDate>
  <title>Quote of the day</title>
  <link>http://vega-33.livejournal.com/633762.html</link>
  <description>&quot;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.&quot;&lt;br /&gt;-- Aleister Crowley.</description>
  <comments>http://vega-33.livejournal.com/633762.html</comments>
  <lj:mood>amused</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>3</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/633078.html</guid>
  <pubDate>Tue, 28 Apr 2009 05:17:34 GMT</pubDate>
  <title>Hey there Cthulhu</title>
  <link>http://vega-33.livejournal.com/633078.html</link>
  <description>&lt;lj-embed id=&quot;11&quot; /&gt;&lt;br /&gt;&lt;br /&gt;Classic :D</description>
  <comments>http://vega-33.livejournal.com/633078.html</comments>
  <lj:mood>amused</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/632494.html</guid>
  <pubDate>Sun, 26 Apr 2009 09:45:25 GMT</pubDate>
  <title>No ANZAC day holiday for me. :P</title>
  <link>http://vega-33.livejournal.com/632494.html</link>
  <description>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.</description>
  <comments>http://vega-33.livejournal.com/632494.html</comments>
  <lj:mood>annoyed</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/632105.html</guid>
  <pubDate>Sun, 26 Apr 2009 06:08:07 GMT</pubDate>
  <title>Etmology of the word venom and more</title>
  <link>http://vega-33.livejournal.com/632105.html</link>
  <description>&quot;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.&quot;&lt;br /&gt;&lt;br /&gt;Here is an example of Green Language at its finest.  This is from Vinceslas Lavinius and his &quot;Treatise of the Terrestrial Sky&quot;.  In literal translation it means:&lt;br /&gt;&quot;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.&quot;&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;&apos;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 &quot;win&quot;. Along the way, the word also evolved into &quot;venus&quot;,&lt;br /&gt;&quot;venery&quot;, and &quot;venerate&quot;, 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 &quot;poison&quot; and &quot;venom&quot; come&lt;br /&gt;from love potions.&quot;&apos; &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 &quot;clear&quot;, which in another English meaning is to be &quot;succinct&quot;.&lt;br /&gt;&lt;br /&gt;So a &quot;bitter salt&quot; might also be a &quot;clear salt&quot;.  We have double and triple meanings in this one little bit of text.  And the term &quot;clear salt&quot;, which my friend JK has translated as &quot;bitter salt&quot;, is also used in texts such as Hollandus&apos; text &quot;The Philosopher&apos;s Stone&quot;.&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 &quot;bitter salt&quot; 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.</description>
  <comments>http://vega-33.livejournal.com/632105.html</comments>
  <category>alchemy</category>
  <lj:mood>scholarly</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/632027.html</guid>
  <pubDate>Sat, 25 Apr 2009 01:03:14 GMT</pubDate>
  <title>I&apos;m lovin it!</title>
  <link>http://vega-33.livejournal.com/632027.html</link>
  <description>&quot;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.&quot;&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.</description>
  <comments>http://vega-33.livejournal.com/632027.html</comments>
  <lj:mood>thoughtful</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/631357.html</guid>
  <pubDate>Fri, 24 Apr 2009 10:05:35 GMT</pubDate>
  <title>Quote of the day</title>
  <link>http://vega-33.livejournal.com/631357.html</link>
  <description>&quot;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.&quot; - A. Lawrence Lowell.</description>
  <comments>http://vega-33.livejournal.com/631357.html</comments>
  <lj:mood>thoughtful</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/631162.html</guid>
  <pubDate>Fri, 24 Apr 2009 03:06:26 GMT</pubDate>
  <title>Today&apos;s word of the day is: daggerin&apos;</title>
  <link>http://vega-33.livejournal.com/631162.html</link>
  <description>&lt;a href=&quot;http://oddfactoids.blogspot.com/2009/04/thou-shalt-not-practice-daggering.html&quot;&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 ;-)</description>
  <comments>http://vega-33.livejournal.com/631162.html</comments>
  <lj:mood>amused</lj:mood>
  <lj:security>public</lj:security>
  <lj:reply-count>2</lj:reply-count>
</item>
<item>
  <guid isPermaLink='true'>http://vega-33.livejournal.com/631029.html</guid>
  <pubDate>Fri, 24 Apr 2009 01:57:57 GMT</pubDate>
  <title>Father of Invention</title>
  <link>http://vega-33.livejournal.com/631029.html</link>
  <description>Found this cool article while digging around on Keelynet earlier:&lt;br /&gt;&lt;a href=&quot;http://www.haaretz.com/hasen/spages/1074122.html&quot;&gt;http://www.haaretz.com/hasen/spages/1074122.html&lt;/a&gt;</description>
  <comments>http://vega-33.livejournal.com/631029.html</comments>
  <lj:security>public</lj:security>
  <lj:reply-count>0</lj:reply-count>
</item>
</channel>
</rss>
