<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5161061</id><updated>2011-12-15T14:51:37.220-08:00</updated><category term='filmcrush'/><category term='Nan Goldin'/><category term='emasculation'/><category term='High Romanticism&apos;s enjoyment of subordination to female power'/><category term='The Bonobofication of the West'/><category term='2 Days in Paris'/><category term='Julie R. Delpy'/><category term='Bobos in Trouble in Paradise'/><category term='Mahler&apos;s 5th'/><title type='text'>Dfenestrator</title><subtitle type='html'>"Generously dispensing unsolicited opinions &lt;a href="http://www.cs.ucr.edu/~paul"&gt;since 1995&lt;/a&gt;."</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://dfenestrator.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default?start-index=101&amp;max-results=100'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>1759</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5161061.post-9141379876256635616</id><published>2010-11-01T21:05:00.001-07:00</published><updated>2010-11-01T21:06:14.355-07:00</updated><title type='text'>Day 1</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/TM-OEyyebVI/AAAAAAAACiI/c7S4op2Khuw/s1600/on+the+road+again.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/TM-OEyyebVI/AAAAAAAACiI/c7S4op2Khuw/s400/on+the+road+again.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5534798680065731922" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-9141379876256635616?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9141379876256635616'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9141379876256635616'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2010_11_01_archive.html#9141379876256635616' title='Day 1'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/TM-OEyyebVI/AAAAAAAACiI/c7S4op2Khuw/s72-c/on+the+road+again.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-6511263216090132766</id><published>2010-10-05T00:03:00.000-07:00</published><updated>2010-10-05T00:51:22.080-07:00</updated><title type='text'>By the numbers</title><content type='html'>That's the last straw.  Sage can't handle fractional exponents on negative numbers?  Pfaw!  No big, can just do it in Mathematica.  Functional is more my style, anyway.  Dynamically-typed imperative languages are for the lazy or spastic.&lt;br /&gt;&lt;br /&gt;So I bequeath to you the Python code of my aborted Sage notebook for my numerical differential equation solver.  Euler's method only.  Was going to do Improved Euler's and RKx but I'll save it for Mathematica.  &lt;br /&gt;&lt;br /&gt;Use it together.  &lt;br /&gt;&lt;br /&gt;Use it in peace.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 1&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;def Euler(f, x0, y0, xf, h):&lt;br /&gt;    &lt;br /&gt;    x  = float(x0)&lt;br /&gt;    y  = float(y0)&lt;br /&gt;    xf = float(xf)&lt;br /&gt;    h  = float(h)&lt;br /&gt;    &lt;br /&gt;    n = int((xf - x)/h)&lt;br /&gt;        &lt;br /&gt;    xs = [x]&lt;br /&gt;    ys = [y]&lt;br /&gt;    &lt;br /&gt;    for i in range(0, n):&lt;br /&gt;        y = y + h * f(x,y).subs(x=x, y=y).n()&lt;br /&gt;        x = x + h&lt;br /&gt;        xs.append(x)&lt;br /&gt;        ys.append(y)&lt;br /&gt;        &lt;br /&gt;    return [xs,ys]&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 2&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;def TabList(y, headers = None):&lt;br /&gt;    '''&lt;br /&gt;    Converts a list into an html table with borders.&lt;br /&gt;    '''&lt;br /&gt;    s = '&amp;lt;table border = 1&amp;gt;'&lt;br /&gt;    if headers:&lt;br /&gt;        for q in headers:&lt;br /&gt;            s = s + '&amp;lt;th&amp;gt;' + str(q) + '&amp;lt;/th&amp;gt;'&lt;br /&gt;    for x in y:&lt;br /&gt;        s = s + '&amp;lt;tr&amp;gt;'&lt;br /&gt;        for q in x:&lt;br /&gt;            s = s + '&amp;lt;td&amp;gt;' + str(q) + '&amp;lt;/td&amp;gt;'&lt;br /&gt;        s = s + '&amp;lt;/tr&amp;gt;'&lt;br /&gt;    s = s + '&amp;lt;/table&amp;gt;'&lt;br /&gt;    return s&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 3&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;class NumericalSolution:&lt;br /&gt;    def __init__(self, fp, x0, y0, xf, h, color = (0,0,1)):&lt;br /&gt;        self.fp = fp&lt;br /&gt;        self.x0 = x0&lt;br /&gt;        self.y0 = y0&lt;br /&gt;        self.xf = xf&lt;br /&gt;        self.h = h&lt;br /&gt;        self.color = color&lt;br /&gt;    def Solve(self):&lt;br /&gt;        raise MethodNotImplemented()&lt;br /&gt;    def ToLine(self):&lt;br /&gt;        X = 0; Y = 1;&lt;br /&gt;        result = self.Solve()&lt;br /&gt;        return line( [[result[X][i], result[Y][i]] for i in range(len(result[X]))], rgbcolor=self.color )&lt;br /&gt;&lt;br /&gt;class MethodNotImplemented: pass&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 4&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;class EulerNumericalSolution(NumericalSolution):&lt;br /&gt;    def __init__(self, fp, x0, y0, xf, h, color = (0,0,1)):&lt;br /&gt;        NumericalSolution.__init__(self, fp, x0, y0, xf, h, color)&lt;br /&gt;    def Solve(self):&lt;br /&gt;        #return Euler( self.fp, self.x0, self.y0, self.xf, self.h)&lt;br /&gt;        return Euler( (lambda x,y: self.fp), self.x0, self.y0, self.xf, self.h)&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 5&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;SolverTypes = [&amp;quot;Euler&amp;quot;] #, &amp;quot;Improved Euler&amp;quot;, &amp;quot;RK2&amp;quot;]&lt;br /&gt;&lt;br /&gt;def GenerateNumericalSolution( fp, solver, color = (0,0,1) ):        &lt;br /&gt;    if solver == &amp;quot;Euler&amp;quot;: &lt;br /&gt;        return EulerNumericalSolution(fp, x0, y0, xf, h, color)&lt;br /&gt;    else:&lt;br /&gt;        raise InvalidSolver()&lt;br /&gt;        &lt;br /&gt;class InvalidSolver: pass&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 6&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;def GetNumericalSolutionLines():&lt;br /&gt;    lines = solutions[0].ToLine()&lt;br /&gt;    for i in range(1, len(solutions)):&lt;br /&gt;        lines += solutions[i].ToLine()&lt;br /&gt;    return lines&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 7&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;f = 0&lt;br /&gt;fColor = (1,0,0)&lt;br /&gt;@interact&lt;br /&gt;def DefineExactFunction( f_in = input_box(-cos(x)+1.0, label = 'f(x) = '),&lt;br /&gt;                         color = color_selector((1,0,0), label='', widget='farbtastic', hide_box=False) ):        &lt;br /&gt;    global f&lt;br /&gt;    global fColor&lt;br /&gt;    f = f_in&lt;br /&gt;    fColor = color&lt;br /&gt;    return&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 8&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;x0 = 0.0&lt;br /&gt;y0 = 0.0&lt;br /&gt;xf = 10.0&lt;br /&gt;h  = 0.1&lt;br /&gt;&lt;br /&gt;@interact&lt;br /&gt;def _( _x0 = input_box( x0, label = 'x&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; '),&lt;br /&gt;       _y0 = input_box( y0, label = 'y&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; '),&lt;br /&gt;       _xf = input_box( xf, label = 'x&amp;lt;sub&amp;gt;f&amp;lt;/sub&amp;gt; '),&lt;br /&gt;       _h  = input_box(  h, label = 'h ') ):&lt;br /&gt;    global x0; global y0; global xf; global h    &lt;br /&gt;    x0  = _x0; y0  = _y0; xf  = _xf; h = _h;&lt;br /&gt;    &lt;br /&gt;    return&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 9&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;#x0 = 0.0&lt;br /&gt;#y0 = 0.0&lt;br /&gt;#xf = 10.0&lt;br /&gt;#h  = 0.1&lt;br /&gt;#&lt;br /&gt;#@interact&lt;br /&gt;#def _( _x0 = input_box( x0, label = 'x&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; '),&lt;br /&gt;#       _y0 = input_box( y0, label = 'y&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; '),&lt;br /&gt;#       _xf = input_box( xf, label = 'x&amp;lt;sub&amp;gt;f&amp;lt;/sub&amp;gt; '),&lt;br /&gt;#       _n  = input_box( int(xf-x0/h), label = 'number of steps ') ):&lt;br /&gt;#    global x0; global y0; global xf; global h    &lt;br /&gt;#    x0  = _x0; y0  = _y0; xf  = _xf; h = (_xf - _x0) / _n;&lt;br /&gt;#    &lt;br /&gt;#    return&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 10&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;# *** Enter Numerical Solutions ***&lt;br /&gt;solutions = []&lt;br /&gt;var('x,y')&lt;br /&gt;@interact&lt;br /&gt;def _(&lt;br /&gt;       fp     = input_box(sin(x), label = &amp;quot;f'(x,y)=&amp;quot;),&lt;br /&gt;       solver = selector(SolverTypes, label=&amp;quot;Solver=&amp;quot;),&lt;br /&gt;       color  = color_selector((0,0,1), label='', widget='farbtastic', hide_box=False),&lt;br /&gt;       action = selector([&amp;quot;Edit&amp;quot;,&amp;quot;Add&amp;quot;,&amp;quot;Clear All&amp;quot;], label='', buttons=True)&lt;br /&gt;     ):&lt;br /&gt;    global solutions&lt;br /&gt;    if action == &amp;quot;Add&amp;quot;:&lt;br /&gt;        solutions.append( GenerateNumericalSolution( fp, solver, color ) )&lt;br /&gt;    elif action == &amp;quot;Clear All&amp;quot;:&lt;br /&gt;        solutions = []&lt;br /&gt;    else:&lt;br /&gt;        pass&lt;br /&gt;&lt;br /&gt;    for i in range(len(solutions)):&lt;br /&gt;        html('&amp;lt;font color=\&amp;quot;%s\&amp;quot;&amp;gt;$f\'\;(x)\;=\;%s,\;h=%f$&amp;lt;/font&amp;gt;' % (solutions[i].color.html_color(), latex(solutions[i].fp), solutions[i].h))&lt;br /&gt;        &lt;br /&gt;    return&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 11&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;@interact&lt;br /&gt;def _( showExact = checkbox (True, &amp;quot;Show exact&amp;quot;) ):&lt;br /&gt;    X = 0&lt;br /&gt;    Y = 1&lt;br /&gt;    #try:&lt;br /&gt;    if showExact:&lt;br /&gt;        show( plot(f,x0,xf,rgbcolor=fColor) + GetNumericalSolutionLines() )&lt;br /&gt;    else:&lt;br /&gt;        show( GetNumericalSolutionLines() ) &lt;br /&gt;    if showExact:&lt;br /&gt;        html('&amp;lt;font color=\&amp;quot;%s\&amp;quot;&amp;gt;&amp;lt;center&amp;gt;$f\'\;(x)\;=\;%s\;%s$&amp;lt;/center&amp;gt;&amp;lt;/font&amp;gt;' % ( fColor.html_color(), latex(f), &amp;quot;(exact)&amp;quot; ))    &lt;br /&gt;    for i in range(len(solutions)):&lt;br /&gt;        solution = solutions[i].Solve()&lt;br /&gt;        tableRange = range(len(solution[X]))&lt;br /&gt;        html('&amp;lt;font color=\&amp;quot;%s\&amp;quot;&amp;gt;&amp;lt;center&amp;gt;$f\'\;(x)\;=\;%s,\;h=%f$&amp;lt;/center&amp;gt;&amp;lt;/font&amp;gt;' % (solutions[i].color.html_color(), latex(solutions[i].fp), solutions[i].h))    &lt;br /&gt;    #except:&lt;br /&gt;    #print &amp;quot;&amp;lt; &amp;lt; No Functions Configured &amp;gt; &amp;gt;&amp;quot;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 12&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;@interact&lt;br /&gt;def _( showExact = checkbox (True, &amp;quot;Show exact&amp;quot;) ):&lt;br /&gt;    if len(solutions) == 0:&lt;br /&gt;        print &amp;quot;&amp;lt; &amp;lt; No Functions Configured &amp;gt; &amp;gt;&amp;quot;&lt;br /&gt;    else:&lt;br /&gt;        X = 0&lt;br /&gt;        Y = 1&lt;br /&gt;        for i in range(len(solutions)):&lt;br /&gt;            solution = solutions[i].Solve()&lt;br /&gt;            tableRange = range(len(solution[X]))&lt;br /&gt;            html('&amp;lt;font color=\&amp;quot;%s\&amp;quot;&amp;gt;$f\'\;(x)\;=\;%s,\;h=%f$&amp;lt;/font&amp;gt;' % (solutions[i].color.html_color(), latex(solutions[i].fp), solutions[i].h))&lt;br /&gt;            html('')&lt;br /&gt;            if showExact:&lt;br /&gt;                html(TabList([[j, solution[X][j], solution[Y][j], f(x=solution[X][j]).n()] for j in tableRange], headers = ['step','x','y', 'y (exact)']))&lt;br /&gt;            else:&lt;br /&gt;                html(TabList([[j, solution[X][j], solution[Y][j]] for j in tableRange], headers = ['step','x','y']))&lt;br /&gt;            html('')&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Cell 13&lt;/b&gt;&lt;br /&gt;&lt;pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"&gt;&lt;code&gt;@interact&lt;br /&gt;def _( showExact = checkbox (True, &amp;quot;Show exact&amp;quot;),&lt;br /&gt;       displayInterval = input_box( 0.1, label = 'Interval ') ):&lt;br /&gt;    if len(solutions) == 0:&lt;br /&gt;        print &amp;quot;&amp;lt; &amp;lt; No Functions Configured &amp;gt; &amp;gt;&amp;quot;&lt;br /&gt;    else:&lt;br /&gt;        X = 0&lt;br /&gt;        Y = 1&lt;br /&gt;&lt;br /&gt;        headers = ['x']&lt;br /&gt;        for i in range(len(solutions)):&lt;br /&gt;            yHeader = &amp;quot;y (h=%f)&amp;quot; % solutions[i].h&lt;br /&gt;            headers.append(yHeader)&lt;br /&gt;        if showExact:&lt;br /&gt;            headers.append('y (exact)')&lt;br /&gt;        &lt;br /&gt;        solution = []&lt;br /&gt;        decimatedSolution = []&lt;br /&gt;        for i in range(len(solutions)):&lt;br /&gt;            solution.append(solutions[i].Solve())&lt;br /&gt;            decimatedSolution.append([])&lt;br /&gt;        #if showExact:&lt;br /&gt;            #solution.append([])&lt;br /&gt;        &lt;br /&gt;        numIntervals = int((xf - x0)/displayInterval)&lt;br /&gt;        &lt;br /&gt;        for i in range(len(solution)):  &lt;br /&gt;            numPointsInInterval = len(solution[i][Y])/numIntervals&lt;br /&gt;            for j in range(numIntervals+1):&lt;br /&gt;                decimatedSolution[i].append(solution[i][Y][int(j*numPointsInInterval)])&lt;br /&gt;        &lt;br /&gt;        vals = []&lt;br /&gt;        for i in range(len(decimatedSolution[0])): # range(len(solution[0][X])-1):&lt;br /&gt;            slice = []&lt;br /&gt;            slice.append(i*displayInterval)&lt;br /&gt;            for j in range(len(solution)):&lt;br /&gt;                slice.append(decimatedSolution[j][i])&lt;br /&gt;            if showExact:&lt;br /&gt;                slice.append(f(x=i*displayInterval).n())&lt;br /&gt;            vals.append(slice)&lt;br /&gt;        html(TabList(vals, headers))&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-6511263216090132766?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6511263216090132766'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6511263216090132766'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2010_10_01_archive.html#6511263216090132766' title='By the numbers'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-3774772384342094995</id><published>2010-09-14T20:27:00.000-07:00</published><updated>2010-09-14T20:28:17.571-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/TJA9OfczU6I/AAAAAAAACiA/sGBAkrv10iE/s1600/WhereforeArtThouRomeo.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 240px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/TJA9OfczU6I/AAAAAAAACiA/sGBAkrv10iE/s400/WhereforeArtThouRomeo.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5516976862698623906" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-3774772384342094995?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3774772384342094995'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3774772384342094995'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2010_09_01_archive.html#3774772384342094995' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/TJA9OfczU6I/AAAAAAAACiA/sGBAkrv10iE/s72-c/WhereforeArtThouRomeo.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-3318520341341933283</id><published>2010-08-12T00:14:00.000-07:00</published><updated>2010-08-12T00:17:18.821-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/TGOf87P5tdI/AAAAAAAAChw/eH1VQFD2R5k/s1600/ahhh.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 301px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/TGOf87P5tdI/AAAAAAAAChw/eH1VQFD2R5k/s400/ahhh.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5504419038622234066" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-3318520341341933283?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3318520341341933283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3318520341341933283'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2010_08_01_archive.html#3318520341341933283' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/TGOf87P5tdI/AAAAAAAAChw/eH1VQFD2R5k/s72-c/ahhh.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-4955821086675468960</id><published>2010-06-05T17:55:00.001-07:00</published><updated>2010-06-09T22:36:03.946-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/TArzfx7AuaI/AAAAAAAACho/sG00iD6HwX4/s1600/YesIMissedItAtLacma.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/TArzfx7AuaI/AAAAAAAACho/sG00iD6HwX4/s400/YesIMissedItAtLacma.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459623951972770" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/TArzcP23M8I/AAAAAAAAChY/0QXB6ivS--g/s1600/WeirdScience.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/TArzcP23M8I/AAAAAAAAChY/0QXB6ivS--g/s400/WeirdScience.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459563268158402" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/TArzb8u5fhI/AAAAAAAAChQ/AFXR3QjjH2g/s1600/WeAreNotAlone.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 224px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/TArzb8u5fhI/AAAAAAAAChQ/AFXR3QjjH2g/s400/WeAreNotAlone.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459558134480402" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/TArzblizRpI/AAAAAAAAChI/AlIlcrX7RZw/s1600/WayBeforeSunrise.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 241px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/TArzblizRpI/AAAAAAAAChI/AlIlcrX7RZw/s400/WayBeforeSunrise.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459551909725842" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/TArzbN7GYnI/AAAAAAAAChA/76HvOth8wXw/s1600/TheLittleThings.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 172px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/TArzbN7GYnI/AAAAAAAAChA/76HvOth8wXw/s400/TheLittleThings.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459545569190514" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/TArzOAlIkbI/AAAAAAAACg4/IAExKLpioiY/s1600/ThatIsCorrect.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 226px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/TArzOAlIkbI/AAAAAAAACg4/IAExKLpioiY/s400/ThatIsCorrect.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459318649098674" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/TArzNmK4ZKI/AAAAAAAACgw/d-jxcwNm-gw/s1600/SoYouWantToBeAFilmmaker.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 308px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/TArzNmK4ZKI/AAAAAAAACgw/d-jxcwNm-gw/s400/SoYouWantToBeAFilmmaker.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459311559664802" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/TArzceCtRnI/AAAAAAAAChg/_ocBGf_xEw0/s1600/WWtSPCAD.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 304px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/TArzceCtRnI/AAAAAAAAChg/_ocBGf_xEw0/s400/WWtSPCAD.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459567075935858" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/TArzNdKYxAI/AAAAAAAACgo/9gqx6g-5T58/s1600/SocietyOfSocietiesOfMind.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 226px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/TArzNdKYxAI/AAAAAAAACgo/9gqx6g-5T58/s400/SocietyOfSocietiesOfMind.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459309141672962" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/TArzM7UcCWI/AAAAAAAACgg/100AKpPA2ng/s1600/SignedSealedAndDelivered.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 305px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/TArzM7UcCWI/AAAAAAAACgg/100AKpPA2ng/s400/SignedSealedAndDelivered.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459300057024866" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/TArzMer-eNI/AAAAAAAACgY/D-f3QobgGvA/s1600/SeeWhatHappensWhenOneAsksForFlowers.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 305px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/TArzMer-eNI/AAAAAAAACgY/D-f3QobgGvA/s400/SeeWhatHappensWhenOneAsksForFlowers.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459292371122386" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/TAry_MZgPhI/AAAAAAAACgQ/uuUfiGh9viI/s1600/Renoir%2BAlcohol%2BNoGirlfriendEqualsBad.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/TAry_MZgPhI/AAAAAAAACgQ/uuUfiGh9viI/s400/Renoir%2BAlcohol%2BNoGirlfriendEqualsBad.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459064123506194" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/TAry-lLwzJI/AAAAAAAACgI/kso9RC-mSG0/s1600/OnwardChristianSoldier.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 306px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/TAry-lLwzJI/AAAAAAAACgI/kso9RC-mSG0/s400/OnwardChristianSoldier.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459053596888210" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/TAry-e8RwSI/AAAAAAAACgA/NOBiu-P-JWY/s1600/NiceTry.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 306px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/TAry-e8RwSI/AAAAAAAACgA/NOBiu-P-JWY/s400/NiceTry.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459051921326370" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/TAry94IbQsI/AAAAAAAACf4/SddnBxWqiNc/s1600/LXXXII.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 214px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/TAry94IbQsI/AAAAAAAACf4/SddnBxWqiNc/s400/LXXXII.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459041503298242" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/TAry9sYK9EI/AAAAAAAACfw/MngpYXPdMhE/s1600/LXXXI.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 218px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/TAry9sYK9EI/AAAAAAAACfw/MngpYXPdMhE/s400/LXXXI.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479459038348112962" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/TAryttIVb3I/AAAAAAAACfo/phmFVrqv5RY/s1600/LXXX.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 218px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/TAryttIVb3I/AAAAAAAACfo/phmFVrqv5RY/s400/LXXX.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479458763672219506" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/TArytcD0UeI/AAAAAAAACfg/2v_1MS3QIRU/s1600/LXXIX.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 218px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/TArytcD0UeI/AAAAAAAACfg/2v_1MS3QIRU/s400/LXXIX.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479458759089869282" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/TArys9_IlMI/AAAAAAAACfY/cjbWn8oht2Y/s1600/LeBusted.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 176px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/TArys9_IlMI/AAAAAAAACfY/cjbWn8oht2Y/s400/LeBusted.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479458751017161922" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/TArysnaqmiI/AAAAAAAACfQ/pp-uyFxun_E/s1600/KeepinTheFaith.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 304px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/TArysnaqmiI/AAAAAAAACfQ/pp-uyFxun_E/s400/KeepinTheFaith.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479458744958622242" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/TArysKOWnOI/AAAAAAAACfI/rxG70C07g20/s1600/IWillBeThereOnceMore.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 228px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/TArysKOWnOI/AAAAAAAACfI/rxG70C07g20/s400/IWillBeThereOnceMore.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479458737122352354" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/TArydYnEnBI/AAAAAAAACfA/k97qEP66R14/s1600/IWasInVegasByTheWay.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 224px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/TArydYnEnBI/AAAAAAAACfA/k97qEP66R14/s400/IWasInVegasByTheWay.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479458483286088722" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/TArydLAA-aI/AAAAAAAACe4/do8s5PtUCjM/s1600/HappyEndings.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 302px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/TArydLAA-aI/AAAAAAAACe4/do8s5PtUCjM/s400/HappyEndings.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479458479632611746" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/TAryc7UXYkI/AAAAAAAACew/tIBXyYIOeNU/s1600/FlowerPower.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/TAryc7UXYkI/AAAAAAAACew/tIBXyYIOeNU/s400/FlowerPower.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479458475422999106" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/TAryccBjA7I/AAAAAAAACeo/NHDDrmvGmB0/s1600/DragonslayerTheEarlyYears.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 306px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/TAryccBjA7I/AAAAAAAACeo/NHDDrmvGmB0/s400/DragonslayerTheEarlyYears.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479458467022570418" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/TArycJabytI/AAAAAAAACeg/llwWsCTi9HQ/s1600/CaptainHowdyIPresume.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 304px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/TArycJabytI/AAAAAAAACeg/llwWsCTi9HQ/s400/CaptainHowdyIPresume.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479458462026681042" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/TAryBAJHD-I/AAAAAAAACeY/j92mLAY0-Yg/s1600/AllInTheFamily.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 220px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/TAryBAJHD-I/AAAAAAAACeY/j92mLAY0-Yg/s400/AllInTheFamily.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5479457995681632226" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-4955821086675468960?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4955821086675468960'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4955821086675468960'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2010_06_01_archive.html#4955821086675468960' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F882IEw8Z0Q/TArzfx7AuaI/AAAAAAAACho/sG00iD6HwX4/s72-c/YesIMissedItAtLacma.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-1858103780397469970</id><published>2010-05-24T21:37:00.000-07:00</published><updated>2010-05-24T21:39:37.305-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/S_tUMA-GJiI/AAAAAAAACeQ/H2b9RZQAZ_M/s1600/TheDevilIsInTheDetails.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 200px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/S_tUMA-GJiI/AAAAAAAACeQ/H2b9RZQAZ_M/s400/TheDevilIsInTheDetails.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5475062337394583074" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-1858103780397469970?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1858103780397469970'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1858103780397469970'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2010_05_01_archive.html#1858103780397469970' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F882IEw8Z0Q/S_tUMA-GJiI/AAAAAAAACeQ/H2b9RZQAZ_M/s72-c/TheDevilIsInTheDetails.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-1831244947380428429</id><published>2010-02-15T14:54:00.000-08:00</published><updated>2010-02-15T15:02:32.556-08:00</updated><title type='text'></title><content type='html'>"A woman civil engineer wrote from Leningrad: 'I saw your film, &lt;i&gt;Mirror&lt;/i&gt;.  I sat through to the end, despite the fact that after the first half hour I developed a severe headache as a result of my genuine efforts to analyze it, or just to have some idea of what was going on, of some connection between the characters and events and memories....  We poor cinema-goers see films that are good, bad, very bad, ordinary or highly original.  But any of these one can understand, and be delighted or bored as the case may be; but this one?!...'  An equipment engineer from Kalinin was also terribly indignant: 'Half an hour ago I came out of &lt;i&gt;Mirror&lt;/i&gt;.  Well!!... Comrade director!  Have you seen it?  I think there's something unhealthy about it... I wish you every success in your work, but we don't need films like that.'   And another engineer, this time from Sverdlovsk, was unable to contain his deep antipathy: 'How vulgar, what trash!  Ugh, how revolting!  Anyhow, I think your film's a blank shot.  It certainly didn't reach the audience, which is all that matters...'  This man even feels that the cinema administration should be called to account: 'One can only be astonished that those responsible for the distribution of films here in the USSR should allow such blunders.'  In fairness to the cinema administration, I have to say that 'such blunders' were permitted very seldom &amp;mdash; on average once every five years; and when I received letters like that I used to be thrown into despair: yes, indeed, who was I working for, and why?"&lt;br /&gt;&lt;br /&gt;Andrei Tarkovsky,&lt;br /&gt;&lt;i&gt;Sculpting in Time&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-1831244947380428429?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1831244947380428429'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1831244947380428429'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2010_02_01_archive.html#1831244947380428429' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-1215808839175896709</id><published>2010-02-15T14:10:00.000-08:00</published><updated>2010-02-15T14:18:17.952-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nIHnYNylI/AAAAAAAACeI/hd43TY_jQt4/s1600-h/IMG_1313.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nIHnYNylI/AAAAAAAACeI/hd43TY_jQt4/s400/IMG_1313.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438598058181773906" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/S3nIDYI0AdI/AAAAAAAACeA/n-6aUOy27Mo/s1600-h/IMG_1324.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/S3nIDYI0AdI/AAAAAAAACeA/n-6aUOy27Mo/s400/IMG_1324.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597985371161042" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nIDH6vGsI/AAAAAAAACd4/a_-2Tgj36NQ/s1600-h/IMG_1325.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nIDH6vGsI/AAAAAAAACd4/a_-2Tgj36NQ/s400/IMG_1325.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597981017152194" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nICoIKvlI/AAAAAAAACdw/Z2LpQQQNbdA/s1600-h/IMG_1329.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nICoIKvlI/AAAAAAAACdw/Z2LpQQQNbdA/s400/IMG_1329.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597972483554898" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/S3nIB_A_4nI/AAAAAAAACdo/carv_AmCUvY/s1600-h/IMG_1340.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/S3nIB_A_4nI/AAAAAAAACdo/carv_AmCUvY/s400/IMG_1340.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597961447629426" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nIBtcq1BI/AAAAAAAACdg/zJkkIypH45I/s1600-h/IMG_1368.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nIBtcq1BI/AAAAAAAACdg/zJkkIypH45I/s400/IMG_1368.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597956731851794" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nH0PavAzI/AAAAAAAACdY/QkUHP9H6GKQ/s1600-h/IMG_1371.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nH0PavAzI/AAAAAAAACdY/QkUHP9H6GKQ/s400/IMG_1371.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597725332374322" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/S3nHz85-yaI/AAAAAAAACdQ/rOKdj2HcEGg/s1600-h/IMG_1389.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/S3nHz85-yaI/AAAAAAAACdQ/rOKdj2HcEGg/s400/IMG_1389.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597720363157922" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHzXtnDbI/AAAAAAAACdI/r_e74bS5OfE/s1600-h/IMG_1390.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHzXtnDbI/AAAAAAAACdI/r_e74bS5OfE/s400/IMG_1390.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597710379158962" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHy-edi4I/AAAAAAAACdA/kC3LWUPuEaw/s1600-h/IMG_1392.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHy-edi4I/AAAAAAAACdA/kC3LWUPuEaw/s400/IMG_1392.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597703604734850" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/S3nHyRNlImI/AAAAAAAACc4/YZH0ZQJZVuk/s1600-h/IMG_1405.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/S3nHyRNlImI/AAAAAAAACc4/YZH0ZQJZVuk/s400/IMG_1405.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597691454333538" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHj-7BBTI/AAAAAAAACcw/leXPgukkvII/s1600-h/IMG_1406.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHj-7BBTI/AAAAAAAACcw/leXPgukkvII/s400/IMG_1406.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597446026462514" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHjiXe_gI/AAAAAAAACco/Ww71nIyEmkU/s1600-h/IMG_1412.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHjiXe_gI/AAAAAAAACco/Ww71nIyEmkU/s400/IMG_1412.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597438361239042" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/S3nHjYfpvKI/AAAAAAAACcg/5MkqL7cuV7w/s1600-h/IMG_1413.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/S3nHjYfpvKI/AAAAAAAACcg/5MkqL7cuV7w/s400/IMG_1413.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597435711143074" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/S3nHjEqhR5I/AAAAAAAACcY/cwBIT_r6T9I/s1600-h/IMG_1418.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/S3nHjEqhR5I/AAAAAAAACcY/cwBIT_r6T9I/s400/IMG_1418.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597430388017042" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/S3nHin3zDEI/AAAAAAAACcQ/TUJNdAc5720/s1600-h/IMG_1419.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/S3nHin3zDEI/AAAAAAAACcQ/TUJNdAc5720/s400/IMG_1419.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5438597422659079234" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHHcTryvI/AAAAAAAACcI/2dy_R6j0C2M/s1600-h/IMG_1424.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHHcTryvI/AAAAAAAACcI/2dy_R6j0C2M/s400/IMG_1424.JPG" alt="" id="BLOGGER_PHOTO_ID_5438596955698350834" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/S3nHG9dTeeI/AAAAAAAACcA/Cu-wxXRrkPM/s1600-h/IMG_1425.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/S3nHG9dTeeI/AAAAAAAACcA/Cu-wxXRrkPM/s400/IMG_1425.JPG" alt="" id="BLOGGER_PHOTO_ID_5438596947417201122" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/S3nHGqOYlWI/AAAAAAAACb4/S14GkkxbLe8/s1600-h/IMG_1427.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/S3nHGqOYlWI/AAAAAAAACb4/S14GkkxbLe8/s400/IMG_1427.JPG" alt="" id="BLOGGER_PHOTO_ID_5438596942254347618" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHGIqY6RI/AAAAAAAACbw/AwWLu9I3JkM/s1600-h/IMG_1428.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHGIqY6RI/AAAAAAAACbw/AwWLu9I3JkM/s400/IMG_1428.JPG" alt="" id="BLOGGER_PHOTO_ID_5438596933245004050" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHFstS_CI/AAAAAAAACbo/uHFYrdQQkmo/s1600-h/IMG_1431.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/S3nHFstS_CI/AAAAAAAACbo/uHFYrdQQkmo/s400/IMG_1431.JPG" alt="" id="BLOGGER_PHOTO_ID_5438596925741005858" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nGx6kY_OI/AAAAAAAACbg/U078EO8jvP4/s1600-h/IMG_1434.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nGx6kY_OI/AAAAAAAACbg/U078EO8jvP4/s400/IMG_1434.JPG" alt="" id="BLOGGER_PHOTO_ID_5438596585864363234" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nGxmuprcI/AAAAAAAACbY/45gK55rCi6k/s1600-h/IMG_1435.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nGxmuprcI/AAAAAAAACbY/45gK55rCi6k/s400/IMG_1435.JPG" alt="" id="BLOGGER_PHOTO_ID_5438596580538691010" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/S3nGxNopJZI/AAAAAAAACbQ/eEx9Tr_E5Kc/s1600-h/IMG_1437.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/S3nGxNopJZI/AAAAAAAACbQ/eEx9Tr_E5Kc/s400/IMG_1437.JPG" alt="" id="BLOGGER_PHOTO_ID_5438596573802603922" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/S3nGw7n3ZXI/AAAAAAAACbI/2WuMtCsXLwg/s1600-h/IMG_1439.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/S3nGw7n3ZXI/AAAAAAAACbI/2WuMtCsXLwg/s400/IMG_1439.JPG" alt="" id="BLOGGER_PHOTO_ID_5438596568967505266" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nGwA6rXcI/AAAAAAAACbA/gK2u6NVcSHk/s1600-h/IMG_1443.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nGwA6rXcI/AAAAAAAACbA/gK2u6NVcSHk/s400/IMG_1443.JPG" alt="" id="BLOGGER_PHOTO_ID_5438596553208716738" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-1215808839175896709?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1215808839175896709'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1215808839175896709'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2010_02_01_archive.html#1215808839175896709' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/S3nIHnYNylI/AAAAAAAACeI/hd43TY_jQt4/s72-c/IMG_1313.JPG' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7387544044622509001</id><published>2009-12-30T15:03:00.001-08:00</published><updated>2009-12-30T15:03:59.698-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SzvcR1taKjI/AAAAAAAACa0/WkULFdsQgXA/s1600-h/GuidedByVoices.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 172px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SzvcR1taKjI/AAAAAAAACa0/WkULFdsQgXA/s400/GuidedByVoices.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5421168775503948338" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7387544044622509001?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7387544044622509001'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7387544044622509001'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_12_01_archive.html#7387544044622509001' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/SzvcR1taKjI/AAAAAAAACa0/WkULFdsQgXA/s72-c/GuidedByVoices.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-6174587031701852615</id><published>2009-12-29T19:17:00.000-08:00</published><updated>2009-12-29T19:18:12.481-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SzrGZJC5mlI/AAAAAAAACas/Z1aqc3UxA-s/s1600-h/SynesthesiaFantasia.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SzrGZJC5mlI/AAAAAAAACas/Z1aqc3UxA-s/s400/SynesthesiaFantasia.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5420863236720925266" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-6174587031701852615?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6174587031701852615'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6174587031701852615'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_12_01_archive.html#6174587031701852615' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/SzrGZJC5mlI/AAAAAAAACas/Z1aqc3UxA-s/s72-c/SynesthesiaFantasia.JPG' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7500800938027352498</id><published>2009-12-25T11:15:00.000-08:00</published><updated>2009-12-25T11:16:25.860-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/SzUPgWw0YcI/AAAAAAAACak/msP0QqJehfw/s1600-h/NoNeedForNerveGas.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 238px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/SzUPgWw0YcI/AAAAAAAACak/msP0QqJehfw/s400/NoNeedForNerveGas.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5419254775150830018" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7500800938027352498?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7500800938027352498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7500800938027352498'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_12_01_archive.html#7500800938027352498' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/SzUPgWw0YcI/AAAAAAAACak/msP0QqJehfw/s72-c/NoNeedForNerveGas.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-6400013524914406784</id><published>2009-12-20T20:47:00.000-08:00</published><updated>2009-12-20T20:48:04.391-08:00</updated><title type='text'>3 hours</title><content type='html'>And what would you have me say, exactly?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-6400013524914406784?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6400013524914406784'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6400013524914406784'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_12_01_archive.html#6400013524914406784' title='3 hours'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-1451285861918813702</id><published>2009-12-17T23:34:00.000-08:00</published><updated>2009-12-17T23:41:51.932-08:00</updated><title type='text'>1946-2009</title><content type='html'>&lt;a href="http://www.dreadcentral.com/news/35037/rest-peace-dan-obannon"&gt;Gone but never forgotten, Dan O'Bannon&lt;/a&gt;.  What would my childhood have been without that decade of savage Alien nightmares?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-1451285861918813702?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1451285861918813702'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1451285861918813702'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_12_01_archive.html#1451285861918813702' title='1946-2009'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7957580126023667735</id><published>2009-12-14T00:13:00.000-08:00</published><updated>2009-12-14T00:19:48.399-08:00</updated><title type='text'>Conjunction Junction, what's your function?</title><content type='html'>Attention λ-freaks: &lt;a href="http://channel9.msdn.com/shows/Going+Deep/Brian-Beckman-The-Zen-of-Expressing-State-The-State-Monad/"&gt;Brian Beckman on the state monad on Channel 9&lt;/a&gt;.  Good stuff!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7957580126023667735?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7957580126023667735'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7957580126023667735'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_12_01_archive.html#7957580126023667735' title='Conjunction Junction, what&apos;s your function?'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-9130345042058124590</id><published>2009-12-13T21:31:00.000-08:00</published><updated>2009-12-20T21:32:17.453-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/Sy8IUdzSmWI/AAAAAAAACac/EY32sDxXf5c/s1600-h/WeHaveAssumedControl.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 226px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/Sy8IUdzSmWI/AAAAAAAACac/EY32sDxXf5c/s400/WeHaveAssumedControl.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5417558024440158562" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-9130345042058124590?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9130345042058124590'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9130345042058124590'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_12_01_archive.html#9130345042058124590' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/Sy8IUdzSmWI/AAAAAAAACac/EY32sDxXf5c/s72-c/WeHaveAssumedControl.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-6062669146380469584</id><published>2009-11-28T18:29:00.000-08:00</published><updated>2009-11-28T18:30:51.764-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SxHc1A2ulJI/AAAAAAAACaU/qxNCHf2nV_8/s1600/OurEndWasWrittenIntoOurBeginning.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 247px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SxHc1A2ulJI/AAAAAAAACaU/qxNCHf2nV_8/s400/OurEndWasWrittenIntoOurBeginning.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5409347430769398930" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-6062669146380469584?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6062669146380469584'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6062669146380469584'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_11_01_archive.html#6062669146380469584' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/SxHc1A2ulJI/AAAAAAAACaU/qxNCHf2nV_8/s72-c/OurEndWasWrittenIntoOurBeginning.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-6261602982991447385</id><published>2009-11-07T11:14:00.000-08:00</published><updated>2009-11-07T11:18:12.386-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/SvXH2lGnFNI/AAAAAAAACaM/3qSAV9hL7G4/s1600-h/14.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/SvXH2lGnFNI/AAAAAAAACaM/3qSAV9hL7G4/s400/14.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401443068587480274" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SvXH2Q5TlVI/AAAAAAAACaE/sAkWm4k8eww/s1600-h/13.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SvXH2Q5TlVI/AAAAAAAACaE/sAkWm4k8eww/s400/13.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401443063162967378" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SvXH1-9gKOI/AAAAAAAACZ8/Fid-0kNrgEk/s1600-h/12.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SvXH1-9gKOI/AAAAAAAACZ8/Fid-0kNrgEk/s400/12.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401443058348730594" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SvXH1xa1GrI/AAAAAAAACZ0/p08ezZmUZ4k/s1600-h/11.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SvXH1xa1GrI/AAAAAAAACZ0/p08ezZmUZ4k/s400/11.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401443054713641650" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SvXHrcxRk-I/AAAAAAAACZs/cceLDDopRZU/s1600-h/10.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SvXHrcxRk-I/AAAAAAAACZs/cceLDDopRZU/s400/10.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401442877371945954" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SvXHrG6yMdI/AAAAAAAACZk/HyDKCFD6GKA/s1600-h/9.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SvXHrG6yMdI/AAAAAAAACZk/HyDKCFD6GKA/s400/9.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401442871506252242" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SvXHq7npPKI/AAAAAAAACZc/YuIrHjuTMQc/s1600-h/8.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 300px; height: 400px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SvXHq7npPKI/AAAAAAAACZc/YuIrHjuTMQc/s400/8.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401442868473183394" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SvXHqr7ZPOI/AAAAAAAACZU/auUrcg1ipm4/s1600-h/7.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SvXHqr7ZPOI/AAAAAAAACZU/auUrcg1ipm4/s400/7.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401442864261053666" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/SvXHqDqBDyI/AAAAAAAACZM/J8xJ08u9XuA/s1600-h/6.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/SvXHqDqBDyI/AAAAAAAACZM/J8xJ08u9XuA/s400/6.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401442853450747682" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SvXHddvHiKI/AAAAAAAACZE/uQc4KLFS7zs/s1600-h/5.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SvXHddvHiKI/AAAAAAAACZE/uQc4KLFS7zs/s400/5.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401442637113165986" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SvXHdKaStnI/AAAAAAAACY8/zTN7sg5pi5o/s1600-h/4.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SvXHdKaStnI/AAAAAAAACY8/zTN7sg5pi5o/s400/4.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401442631925544562" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/SvXHc5hm3gI/AAAAAAAACY0/cIN9tIM3K5g/s1600-h/3.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/SvXHc5hm3gI/AAAAAAAACY0/cIN9tIM3K5g/s400/3.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401442627392822786" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SvXHcruFXuI/AAAAAAAACYs/MEFbGeYK41g/s1600-h/2.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SvXHcruFXuI/AAAAAAAACYs/MEFbGeYK41g/s400/2.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401442623687057122" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SvXHcfwbfCI/AAAAAAAACYk/4mTPCjVZQok/s1600-h/1.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SvXHcfwbfCI/AAAAAAAACYk/4mTPCjVZQok/s400/1.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5401442620475669538" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-6261602982991447385?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6261602982991447385'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6261602982991447385'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_11_01_archive.html#6261602982991447385' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/SvXH2lGnFNI/AAAAAAAACaM/3qSAV9hL7G4/s72-c/14.JPG' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8531954590362153559</id><published>2009-10-18T09:31:00.000-07:00</published><updated>2009-10-18T09:35:53.426-07:00</updated><title type='text'>Tuva || bust</title><content type='html'>First I've heard of the &lt;a href="http://research.microsoft.com/apps/tools/tuva/index.html"&gt;Tuva project&lt;/a&gt;.  Good for some Feynman lecture video, at least.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8531954590362153559?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8531954590362153559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8531954590362153559'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_10_01_archive.html#8531954590362153559' title='Tuva || bust'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-2430991116114505358</id><published>2009-10-18T09:18:00.000-07:00</published><updated>2009-10-18T09:43:12.255-07:00</updated><title type='text'>High-functioning functional</title><content type='html'>Microsoft's Dr. Erik Meijer washes your imperative programming sins away with a &lt;a href="http://channel9.msdn.com/shows/Going+Deep/Lecture-Series-Erik-Meijer-Functional-Programming-Fundamentals-Chapter-1/"&gt;weekly Channel 9 lecture series on Haskell&lt;/a&gt;.  Throw your pain in the river.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-2430991116114505358?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2430991116114505358'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2430991116114505358'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_10_01_archive.html#2430991116114505358' title='High-functioning functional'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-9182222600558994751</id><published>2009-09-14T00:44:00.001-07:00</published><updated>2009-09-14T00:47:16.373-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/Sq30-tbLc3I/AAAAAAAACYc/27vgRIrLBg8/s1600-h/YouCantMesmerizeMeImBritish.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/Sq30-tbLc3I/AAAAAAAACYc/27vgRIrLBg8/s400/YouCantMesmerizeMeImBritish.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5381226487960269682" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-9182222600558994751?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9182222600558994751'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9182222600558994751'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_09_01_archive.html#9182222600558994751' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/Sq30-tbLc3I/AAAAAAAACYc/27vgRIrLBg8/s72-c/YouCantMesmerizeMeImBritish.JPG' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-690256620440957447</id><published>2009-09-13T14:08:00.000-07:00</published><updated>2009-09-13T14:30:16.258-07:00</updated><title type='text'>Oh yeah I used to post this crap</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/Sq1kQyYQENI/AAAAAAAACYM/2e3NS-2jU74/s1600-h/Cruising4ABruising.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/Sq1kQyYQENI/AAAAAAAACYM/2e3NS-2jU74/s400/Cruising4ABruising.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5381067369341784274" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/Sq1kQXDMIPI/AAAAAAAACYE/KkzR0_ABcEA/s1600-h/VariationsInE.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/Sq1kQXDMIPI/AAAAAAAACYE/KkzR0_ABcEA/s400/VariationsInE.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5381067362005688562" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/Sq1kQDEctAI/AAAAAAAACX8/fNGo3GIZWJk/s1600-h/WhoEverThoughIn2009GhostbustersCouldLookEerilyProphetic.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/Sq1kQDEctAI/AAAAAAAACX8/fNGo3GIZWJk/s400/WhoEverThoughIn2009GhostbustersCouldLookEerilyProphetic.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5381067356642259970" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/Sq1kPRtbqBI/AAAAAAAACX0/HB1shlDAUTU/s1600-h/AtLongLastMaddieHayesInTheFlesh.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/Sq1kPRtbqBI/AAAAAAAACX0/HB1shlDAUTU/s400/AtLongLastMaddieHayesInTheFlesh.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5381067343392385042" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/Sq1kPPe5CDI/AAAAAAAACXs/7Xrd1uME1a8/s1600-h/BigTroubleInLittleTokyo.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/Sq1kPPe5CDI/AAAAAAAACXs/7Xrd1uME1a8/s400/BigTroubleInLittleTokyo.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5381067342794524722" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/Sq1jk7H5t9I/AAAAAAAACXk/7y66X6dPYyU/s1600-h/SoldOutSoNoFireAndBrimstoneToday.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/Sq1jk7H5t9I/AAAAAAAACXk/7y66X6dPYyU/s400/SoldOutSoNoFireAndBrimstoneToday.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5381066615774885842" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/Sq1jkVMWS_I/AAAAAAAACXc/X1po1TN-sUw/s1600-h/BeforeGruber.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/Sq1jkVMWS_I/AAAAAAAACXc/X1po1TN-sUw/s400/BeforeGruber.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5381066605592988658" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/Sq1jkGA82bI/AAAAAAAACXU/JNWaLODcseE/s1600-h/TheKidFriendliestIntroductionToBDSMSinceTheOldTestament.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/Sq1jkGA82bI/AAAAAAAACXU/JNWaLODcseE/s400/TheKidFriendliestIntroductionToBDSMSinceTheOldTestament.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5381066601518651826" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/Sq1jjoGgGlI/AAAAAAAACXM/m5sBGyQNpW0/s1600-h/WouldveBeenBetterWithAgnesMoorehead.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/Sq1jjoGgGlI/AAAAAAAACXM/m5sBGyQNpW0/s400/WouldveBeenBetterWithAgnesMoorehead.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5381066593488869970" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/Sq1jjIXASXI/AAAAAAAACXE/4_Ktuuo3bWk/s1600-h/DownToOne.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/Sq1jjIXASXI/AAAAAAAACXE/4_Ktuuo3bWk/s400/DownToOne.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5381066584968153458" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-690256620440957447?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/690256620440957447'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/690256620440957447'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_09_01_archive.html#690256620440957447' title='Oh yeah I used to post this crap'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/Sq1kQyYQENI/AAAAAAAACYM/2e3NS-2jU74/s72-c/Cruising4ABruising.JPG' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-5885676206615756722</id><published>2009-08-25T19:35:00.000-07:00</published><updated>2009-08-30T19:03:04.337-07:00</updated><title type='text'>You say you want a revolution</title><content type='html'>&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/-KxjVlaLBmk&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/-KxjVlaLBmk&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;Here comes the all-robot proletariat!  Paging Herr Marx!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-5885676206615756722?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5885676206615756722'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5885676206615756722'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_08_01_archive.html#5885676206615756722' title='You say you want a revolution'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7431701769051428504</id><published>2009-08-22T21:15:00.000-07:00</published><updated>2009-08-22T21:16:52.799-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/SpDCqfvVucI/AAAAAAAACWU/34xEY8yNEbo/s1600-h/IsFrenchForeplayAlwaysSoBrechtian.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 304px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/SpDCqfvVucI/AAAAAAAACWU/34xEY8yNEbo/s400/IsFrenchForeplayAlwaysSoBrechtian.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5373008390783351234" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7431701769051428504?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7431701769051428504'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7431701769051428504'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_08_01_archive.html#7431701769051428504' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/SpDCqfvVucI/AAAAAAAACWU/34xEY8yNEbo/s72-c/IsFrenchForeplayAlwaysSoBrechtian.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-4640493826788523870</id><published>2009-08-21T22:25:00.000-07:00</published><updated>2009-08-21T22:34:54.742-07:00</updated><title type='text'>Adieu Eiffel</title><content type='html'>If you're as much as a stickler for mathematically provable code correctness as I am, check out the &lt;a href="http://channel9.msdn.com/posts/Peli/Getting-started-with-Code-Contracts-in-Visual-Studio-2008/"&gt;demo of contracts for C# on Channel 9&lt;/a&gt;.  Of course they neglect to mention that the static invariant checking option will only be available with the ridiculously pricey team dev license...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-4640493826788523870?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4640493826788523870'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4640493826788523870'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_08_01_archive.html#4640493826788523870' title='Adieu Eiffel'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8912697071142211891</id><published>2009-08-20T00:24:00.000-07:00</published><updated>2009-08-20T00:31:00.390-07:00</updated><title type='text'>Love + Sorrow + World + Dream = ?</title><content type='html'>It's a night of blue eyes and Lindenbaum with Mahler's orphaned &lt;span style="font-style:italic;"&gt;Blumine&lt;/span&gt; and &lt;span style="font-style:italic;"&gt;Songs of the Wayfayer&lt;/span&gt; + Dvorák's #9 at the Bowl &lt;a href="http://www.hollywoodbowl.com/tickets/performance_detail.cfm?id=3952"&gt;Thursday&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8912697071142211891?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8912697071142211891'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8912697071142211891'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_08_01_archive.html#8912697071142211891' title='Love + Sorrow + World + Dream = ?'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7658707083004513204</id><published>2009-08-13T00:26:00.000-07:00</published><updated>2009-08-13T00:31:51.891-07:00</updated><title type='text'>Heaven sent</title><content type='html'>J.D. closes his week-long New Bev curatorship with a &lt;a href="http://newbevcinema.com/calendar.cfm"&gt;John Barry double feature&lt;/a&gt; tomorrow night only.  Plus &lt;a href="http://www.americancinematheque.com/archive1999/2009/Egyptian/So_Bad_ET2009.htm#XANADU"&gt;&lt;i&gt;Xanadu&lt;/i&gt; at the Cinematheque&lt;/a&gt; on Friday.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7658707083004513204?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7658707083004513204'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7658707083004513204'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_08_01_archive.html#7658707083004513204' title='Heaven sent'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-9105892944216945316</id><published>2009-08-04T20:12:00.000-07:00</published><updated>2009-08-04T20:19:56.134-07:00</updated><title type='text'>Out: Snark / In: Boojum</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/Snj4_FanXTI/AAAAAAAACWM/5gk97PIX6nQ/s1600-h/YouDoTheMath.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 264px; height: 400px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/Snj4_FanXTI/AAAAAAAACWM/5gk97PIX6nQ/s400/YouDoTheMath.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5366312718681201970" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Frontispiece to &lt;i&gt;Symbolic Logic, Part 1&lt;/i&gt; by Lewis Carroll&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-9105892944216945316?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9105892944216945316'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9105892944216945316'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_08_01_archive.html#9105892944216945316' title='Out: Snark / In: Boojum'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/Snj4_FanXTI/AAAAAAAACWM/5gk97PIX6nQ/s72-c/YouDoTheMath.png' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-3090378000119345400</id><published>2009-07-19T20:37:00.000-07:00</published><updated>2009-07-19T20:38:12.166-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SmPmnJapQSI/AAAAAAAACWE/R2y7Wl9OBh0/s1600-h/OnTheRoad.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 301px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SmPmnJapQSI/AAAAAAAACWE/R2y7Wl9OBh0/s400/OnTheRoad.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5360381541717983522" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-3090378000119345400?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3090378000119345400'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3090378000119345400'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_07_01_archive.html#3090378000119345400' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/SmPmnJapQSI/AAAAAAAACWE/R2y7Wl9OBh0/s72-c/OnTheRoad.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-2131696573740820714</id><published>2009-07-11T16:24:00.000-07:00</published><updated>2009-07-11T16:31:41.234-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/Slkg012_X2I/AAAAAAAACV8/84NyVSsEzpE/s1600-h/NoTimeForKinoPravda.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/Slkg012_X2I/AAAAAAAACV8/84NyVSsEzpE/s400/NoTimeForKinoPravda.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5357349323916926818" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-2131696573740820714?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2131696573740820714'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2131696573740820714'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_07_01_archive.html#2131696573740820714' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/Slkg012_X2I/AAAAAAAACV8/84NyVSsEzpE/s72-c/NoTimeForKinoPravda.png' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-5952410073670344701</id><published>2009-07-08T23:59:00.000-07:00</published><updated>2009-07-09T00:00:45.071-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SlWVg6pj2iI/AAAAAAAACV0/O1ZkmRnpOXU/s1600-h/ACatWithoutAGrin.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 301px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SlWVg6pj2iI/AAAAAAAACV0/O1ZkmRnpOXU/s400/ACatWithoutAGrin.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5356351724558998050" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-5952410073670344701?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5952410073670344701'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5952410073670344701'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_07_01_archive.html#5952410073670344701' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/SlWVg6pj2iI/AAAAAAAACV0/O1ZkmRnpOXU/s72-c/ACatWithoutAGrin.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8547621082997882325</id><published>2009-07-01T00:09:00.001-07:00</published><updated>2009-07-01T00:09:38.353-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SksLrO0uKYI/AAAAAAAACVs/dfJE1iEdaR4/s1600-h/ModernLove.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 302px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SksLrO0uKYI/AAAAAAAACVs/dfJE1iEdaR4/s400/ModernLove.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5353385419401472386" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8547621082997882325?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8547621082997882325'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8547621082997882325'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_07_01_archive.html#8547621082997882325' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F882IEw8Z0Q/SksLrO0uKYI/AAAAAAAACVs/dfJE1iEdaR4/s72-c/ModernLove.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-404363797647591484</id><published>2009-07-01T00:06:00.001-07:00</published><updated>2009-07-01T00:06:35.369-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SksK9Ds0ESI/AAAAAAAACVk/RN2zZJjfU5A/s1600-h/WhatIsDoneOutOfLoveAlwaysHappensBeyondGoodAndEvil.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 302px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SksK9Ds0ESI/AAAAAAAACVk/RN2zZJjfU5A/s400/WhatIsDoneOutOfLoveAlwaysHappensBeyondGoodAndEvil.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5353384626141532450" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-404363797647591484?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/404363797647591484'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/404363797647591484'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_07_01_archive.html#404363797647591484' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/SksK9Ds0ESI/AAAAAAAACVk/RN2zZJjfU5A/s72-c/WhatIsDoneOutOfLoveAlwaysHappensBeyondGoodAndEvil.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-3472062937008198132</id><published>2009-06-23T01:39:00.000-07:00</published><updated>2009-06-23T01:40:07.873-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SkCU4EJVdJI/AAAAAAAACVc/Uy5mDg44_yk/s1600-h/DistressinglyApropos.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 300px; height: 400px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SkCU4EJVdJI/AAAAAAAACVc/Uy5mDg44_yk/s400/DistressinglyApropos.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5350440048222631058" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-3472062937008198132?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3472062937008198132'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3472062937008198132'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_06_01_archive.html#3472062937008198132' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F882IEw8Z0Q/SkCU4EJVdJI/AAAAAAAACVc/Uy5mDg44_yk/s72-c/DistressinglyApropos.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7641429289208591141</id><published>2009-06-21T14:16:00.000-07:00</published><updated>2009-06-21T14:17:12.756-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/Sj6jTEjBrNI/AAAAAAAACVU/BwdOIKqyRwo/s1600-h/SizeMattersNot.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/Sj6jTEjBrNI/AAAAAAAACVU/BwdOIKqyRwo/s400/SizeMattersNot.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5349892955396222162" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7641429289208591141?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7641429289208591141'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7641429289208591141'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_06_01_archive.html#7641429289208591141' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/Sj6jTEjBrNI/AAAAAAAACVU/BwdOIKqyRwo/s72-c/SizeMattersNot.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8577789843164036008</id><published>2009-06-14T09:52:00.000-07:00</published><updated>2009-06-14T09:53:10.623-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SjUq4h1Q_LI/AAAAAAAACVM/LbiObpwWKfQ/s1600-h/DeepSwedishMessage.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 303px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SjUq4h1Q_LI/AAAAAAAACVM/LbiObpwWKfQ/s400/DeepSwedishMessage.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5347227283215154354" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8577789843164036008?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8577789843164036008'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8577789843164036008'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_06_01_archive.html#8577789843164036008' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/SjUq4h1Q_LI/AAAAAAAACVM/LbiObpwWKfQ/s72-c/DeepSwedishMessage.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-260804127014841750</id><published>2009-06-04T20:53:00.000-07:00</published><updated>2009-06-04T21:21:58.934-07:00</updated><title type='text'>Time served</title><content type='html'>At last I can lay my dead Schrödinger Kitty to rest.  Chris Marker's &lt;i&gt;Le fond de l'air est rouge&lt;/i&gt; &lt;a href="http://store.wexnercenterstore.com/grinwithoutcat.html"&gt;finally comes to DVD&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-260804127014841750?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/260804127014841750'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/260804127014841750'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_06_01_archive.html#260804127014841750' title='Time served'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-2204620341904963298</id><published>2009-06-03T23:06:00.000-07:00</published><updated>2009-06-03T23:36:57.440-07:00</updated><title type='text'>More Hobbies of the 21st Century</title><content type='html'>The UFO Flyby.&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/BVPmbddGgt4&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/BVPmbddGgt4&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Aoy9TqbGN3A&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/Aoy9TqbGN3A&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/lDd2I8fr06Y&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/lDd2I8fr06Y&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/u81Nk1gN8ao&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/u81Nk1gN8ao&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/OfV5PJcNj_E&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/OfV5PJcNj_E&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/ufOBu6bHkIE&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/ufOBu6bHkIE&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/kskedYgFFTg&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/kskedYgFFTg&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/XJiCxWUlgcY&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/XJiCxWUlgcY&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/rBEYc5OUUtw&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/rBEYc5OUUtw&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/07Bq9fC14ew&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/07Bq9fC14ew&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/XIfr12XhrZE&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/XIfr12XhrZE&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/BUo3D6XTjsA&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/BUo3D6XTjsA&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/1i-aJ7QfJTw&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/1i-aJ7QfJTw&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/ZOYR3cQ50NY&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/ZOYR3cQ50NY&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-2204620341904963298?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2204620341904963298'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2204620341904963298'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_06_01_archive.html#2204620341904963298' title='More Hobbies of the 21st Century'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8234654103992359816</id><published>2009-06-03T22:06:00.000-07:00</published><updated>2009-06-03T22:41:32.530-07:00</updated><title type='text'>Hobbies of the 21st Century</title><content type='html'>First it was videogame stunt videos.  Now...&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/rYntjR4-pY4&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/rYntjR4-pY4&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/ZEigvdbzia8&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/ZEigvdbzia8&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="560" height="340"&gt;&lt;param name="movie" value="http://www.youtube.com/v/C54yPPiQMfw&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/C54yPPiQMfw&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="560" height="340"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Fbh61zuNYr8&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/Fbh61zuNYr8&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="560" height="340"&gt;&lt;param name="movie" value="http://www.youtube.com/v/kAHYftmwY0U&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/kAHYftmwY0U&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/OsbybubaJ64&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/OsbybubaJ64&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/QqxOtaX5Kt0&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/QqxOtaX5Kt0&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/8BT9bH2xJlU&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/8BT9bH2xJlU&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/SWyxZR69CI0&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/SWyxZR69CI0&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/WyfhzqhJNbg&amp;hl=en&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/WyfhzqhJNbg&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8234654103992359816?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8234654103992359816'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8234654103992359816'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_06_01_archive.html#8234654103992359816' title='Hobbies of the 21st Century'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-1639694630620443658</id><published>2009-06-02T23:01:00.001-07:00</published><updated>2009-06-02T23:04:40.410-07:00</updated><title type='text'>An old high school friend of mine recently mentioned the Fail Blog and I just have to say...</title><content type='html'>&lt;a href="http://failblog.org/2009/06/01/carnival-ride-background-fail/"&gt;&lt;img class="alignnone size-full wp-image-19236" title="fail-owned-carny-sp-fail" src="http://failblog.wordpress.com/files/2009/05/fail-owned-carny-sp-fail.jpg" alt="fail owned pwned pictures" width="338" height="500" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-1639694630620443658?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1639694630620443658'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1639694630620443658'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_06_01_archive.html#1639694630620443658' title='An old high school friend of mine recently mentioned the Fail Blog and I just have to say...'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-5159499146333730070</id><published>2009-05-30T22:28:00.000-07:00</published><updated>2009-05-30T22:35:38.062-07:00</updated><title type='text'>Truth 23.976 times a second</title><content type='html'>He makes &lt;a href="http://www.youtube.com/watch?v=SGmBul4ySdE"&gt;more than just quality scissor lifts&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-5159499146333730070?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5159499146333730070'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5159499146333730070'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_05_01_archive.html#5159499146333730070' title='Truth 23.976 times a second'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-1615314534090714768</id><published>2009-05-19T21:58:00.000-07:00</published><updated>2009-05-19T22:27:23.979-07:00</updated><title type='text'>End of the Road: Day 838</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/ShOQZCX1TAI/AAAAAAAACUs/my8Ej_RFKCs/s1600-h/MyOldCollegeRoommatesFavoriteVanHalenVideoIsALittleLessTrueTonight.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/ShOQZCX1TAI/AAAAAAAACUs/my8Ej_RFKCs/s400/MyOldCollegeRoommatesFavoriteVanHalenVideoIsALittleLessTrueTonight.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5337768743172131842" /&gt;&lt;/a&gt;&lt;br /&gt;That's right, the long trip is over and I have been safely reintegrated into the Matrix where I can now savor my juicy and delicious steak.  Though there's much to be said about the last crazy-ass 2.3 years I need to get back to Chez Hrissikopoulos to slot-a-into-tab-b some Ikea floor lamps and prepare to host my first home invasion.  Sweet dreams.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-1615314534090714768?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1615314534090714768'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1615314534090714768'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_05_01_archive.html#1615314534090714768' title='End of the Road: Day 838'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/ShOQZCX1TAI/AAAAAAAACUs/my8Ej_RFKCs/s72-c/MyOldCollegeRoommatesFavoriteVanHalenVideoIsALittleLessTrueTonight.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7085386594308608970</id><published>2009-05-19T21:54:00.000-07:00</published><updated>2009-05-19T21:58:07.643-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/ShONwtsdVGI/AAAAAAAACUk/n4Slu7zYWek/s1600-h/My.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 183px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/ShONwtsdVGI/AAAAAAAACUk/n4Slu7zYWek/s400/My.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5337765851403474018" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/ShONrjc78BI/AAAAAAAACUc/j7Dbohilw60/s1600-h/Spaceship.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 184px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/ShONrjc78BI/AAAAAAAACUc/j7Dbohilw60/s400/Spaceship.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5337765762754670610" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/ShONk58JAcI/AAAAAAAACUU/JtXZv2Pt4iI/s1600-h/Knows.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 184px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/ShONk58JAcI/AAAAAAAACUU/JtXZv2Pt4iI/s400/Knows.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5337765648532046274" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/ShONb6xHMFI/AAAAAAAACUM/Wfp9kQ2SoNU/s1600-h/Which.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 184px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/ShONb6xHMFI/AAAAAAAACUM/Wfp9kQ2SoNU/s400/Which.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5337765494135402578" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/ShONVsiTaQI/AAAAAAAACUE/Hfcozv3bLqQ/s1600-h/Way.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 182px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/ShONVsiTaQI/AAAAAAAACUE/Hfcozv3bLqQ/s400/Way.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5337765387235977474" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/ShONQqaeykI/AAAAAAAACT8/hqLG0k_xkxE/s1600-h/To.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 182px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/ShONQqaeykI/AAAAAAAACT8/hqLG0k_xkxE/s400/To.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5337765300766952002" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/ShONHvdrvyI/AAAAAAAACT0/9LaZV2wpXBU/s1600-h/Go.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 183px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/ShONHvdrvyI/AAAAAAAACT0/9LaZV2wpXBU/s400/Go.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5337765147503738658" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7085386594308608970?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7085386594308608970'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7085386594308608970'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_05_01_archive.html#7085386594308608970' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/ShONwtsdVGI/AAAAAAAACUk/n4Slu7zYWek/s72-c/My.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7282459188234389410</id><published>2009-05-18T19:48:00.000-07:00</published><updated>2009-05-18T19:49:15.905-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/ShIeJEOodCI/AAAAAAAACTs/DtMQGPzso4A/s1600-h/unu.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/ShIeJEOodCI/AAAAAAAACTs/DtMQGPzso4A/s400/unu.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5337361649490228258" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7282459188234389410?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7282459188234389410'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7282459188234389410'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_05_01_archive.html#7282459188234389410' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/ShIeJEOodCI/AAAAAAAACTs/DtMQGPzso4A/s72-c/unu.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8049778506793916406</id><published>2009-05-17T19:28:00.001-07:00</published><updated>2009-05-17T19:28:24.878-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/ShDHwoLSr1I/AAAAAAAACTk/O3Bb3OAffC8/s1600-h/du.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/ShDHwoLSr1I/AAAAAAAACTk/O3Bb3OAffC8/s400/du.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5336985196666466130" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8049778506793916406?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8049778506793916406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8049778506793916406'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_05_01_archive.html#8049778506793916406' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/ShDHwoLSr1I/AAAAAAAACTk/O3Bb3OAffC8/s72-c/du.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8713512626402840323</id><published>2009-05-16T07:31:00.001-07:00</published><updated>2009-05-16T07:31:42.609-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/Sg7OSCAWM2I/AAAAAAAACTc/KC5_Q76aPgo/s1600-h/tri.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/Sg7OSCAWM2I/AAAAAAAACTc/KC5_Q76aPgo/s400/tri.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5336429417651909474" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8713512626402840323?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8713512626402840323'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8713512626402840323'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_05_01_archive.html#8713512626402840323' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/Sg7OSCAWM2I/AAAAAAAACTc/KC5_Q76aPgo/s72-c/tri.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-4936720712331267574</id><published>2009-05-08T17:35:00.000-07:00</published><updated>2009-05-08T17:57:44.483-07:00</updated><title type='text'>Hammer Time</title><content type='html'>...Within my writings my &lt;i&gt;Zarathustra&lt;/i&gt; stands by itself.  I have with this book given mankind the greatest gift that has ever been given it.  With a voice that speaks across millennia, it is not only the most exalted book that exists, the actual book of the air of the heights -- the entire fact man lies at a tremendous distance &lt;i&gt;beneath&lt;/i&gt; it -- it is also the &lt;i&gt;profoundest&lt;/i&gt;, born out of the innermost abundance of truth, an inexhaustible well into which no bucket descends without coming up filled with gold and goodness.  Here there speaks no 'prophet', none of those gruesome hybrids of sickness and Will to Power called founders of religions... here there speaks no fanatic, here is no 'preaching', here &lt;i&gt;faith&lt;/i&gt; is not demanded: out of an infinite abundance of light and depth of happiness there falls drop after drop, word after word -- a tender slowness of pace is the tempo of these discourses.  Such things as this reach only the most select; it is an incomparable privilege to be a listener here; no one is free to have ears for Zarathustra... With all this, is Zarathustra not a &lt;i&gt;seducer&lt;/i&gt;? ...but what does he himself say when for the first time he again goes back into his solitude?  Precisely the opposite of that which any sort of 'sage', 'saint', 'world-redeemer' or other &lt;i&gt;décadent&lt;/i&gt; would say in such a case... he does not only speak differently, he &lt;i&gt;is&lt;/i&gt; different...&lt;br /&gt;&lt;br /&gt;I now go away alone, my disciples!  You too now go away and be alone!  So I will have it.  Go away from me and guard yourselves against Zarathustra!  And better still: be ashamed of him!  Perhaps he has deceived you.  The man of knowledge must be able not only to love his enemies but also to hate his friends.  One repays a teacher badly if one remains only a pupil.  And why, then, should you not pluck at my laurels?  You respect me; but how if one day your respect should tumble?  Take care that a falling statue does not strike you dead!  You say you believe in Zarathustra?  But of what importance is Zarathustra?  You are my believers: but of what importance are all believers?  You had not yet sought yourselves when you found me.  Thus do all believers; therefore all belief is of so little account.&lt;br /&gt;&lt;br /&gt;Now I bid you lose me and find yourselves; and only &lt;i&gt;when you have denied me&lt;/i&gt; will I return to you...&lt;br /&gt;&lt;br /&gt;Friedrich Nietzsche,&lt;br /&gt;Introduction to &lt;i&gt;Ecce Homo&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-4936720712331267574?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4936720712331267574'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4936720712331267574'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_05_01_archive.html#4936720712331267574' title='Hammer Time'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-6087882363216674801</id><published>2009-05-07T22:28:00.000-07:00</published><updated>2009-05-07T22:29:14.972-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SgPDIZrkf0I/AAAAAAAACTU/cALafu3DUzQ/s1600-h/CanYouHearMeNow.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 215px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SgPDIZrkf0I/AAAAAAAACTU/cALafu3DUzQ/s400/CanYouHearMeNow.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5333320932836802370" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-6087882363216674801?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6087882363216674801'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6087882363216674801'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_05_01_archive.html#6087882363216674801' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/SgPDIZrkf0I/AAAAAAAACTU/cALafu3DUzQ/s72-c/CanYouHearMeNow.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7387957192682936422</id><published>2009-05-01T20:23:00.000-07:00</published><updated>2009-05-01T20:41:50.132-07:00</updated><title type='text'>Day 820</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SfvAuv6fTfI/AAAAAAAACTM/InomT5Xd-ug/s1600-h/PagingDrChandra.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SfvAuv6fTfI/AAAAAAAACTM/InomT5Xd-ug/s400/PagingDrChandra.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5331066493291417074" /&gt;&lt;/a&gt;&lt;br /&gt;Wow, just plug in my Wacom Bamboo tablet and turn on speech recognition and suddenly I'm in the future.  It really sneaks up on ya.  We may not have colonized the moon and dug up that black monolith yet but I did video Skype someone yesterday and then had a nice game of chess by voice with my computer so I guess 2 out of 3 isn't too bad.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7387957192682936422?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7387957192682936422'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7387957192682936422'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_05_01_archive.html#7387957192682936422' title='Day 820'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/SfvAuv6fTfI/AAAAAAAACTM/InomT5Xd-ug/s72-c/PagingDrChandra.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-6530641993851039511</id><published>2009-04-30T22:24:00.000-07:00</published><updated>2009-04-30T22:29:38.413-07:00</updated><title type='text'>Wherefore art thou, Marble Madness?</title><content type='html'>&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/R13hp-l3cMM&amp;hl=en&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/R13hp-l3cMM&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;Ah, what a sight to behold after all these years -- even if HWG sucks ass.  Damn I still love that music.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-6530641993851039511?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6530641993851039511'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6530641993851039511'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_04_01_archive.html#6530641993851039511' title='Wherefore art thou, Marble Madness?'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-9100586641372174815</id><published>2009-04-21T22:39:00.000-07:00</published><updated>2009-04-21T23:09:10.028-07:00</updated><title type='text'>Psycho commie fascist arthouse</title><content type='html'>Coming to Criterion: Masaki Kobayashi's Dead-and-Red sextuple-feature &lt;a href="http://www.criterion.com/films/2106"&gt;The Human Condition&lt;/a&gt;, &lt;a href="http://www.criterion.com/films/1333"&gt;two or three&lt;/a&gt; &lt;a href="http://www.criterion.com/films/2109"&gt;more&lt;/a&gt; by Godard + Roman Polanski's &lt;a href="http://www.criterion.com/films/404"&gt;Repulsion&lt;/a&gt;, which is pretty much my sex life cinéma vérité.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-9100586641372174815?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9100586641372174815'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9100586641372174815'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_04_01_archive.html#9100586641372174815' title='Psycho commie fascist arthouse'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-5388933665219157016</id><published>2009-04-18T06:28:00.001-07:00</published><updated>2009-04-18T06:30:51.667-07:00</updated><title type='text'>These are a few of my favorite things</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SenVv27c_XI/AAAAAAAACTE/Ufne6NqEgvw/s1600-h/TogetherInElectricDreams.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 275px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SenVv27c_XI/AAAAAAAACTE/Ufne6NqEgvw/s400/TogetherInElectricDreams.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5326023052517768562" /&gt;&lt;/a&gt;&lt;br /&gt;#37) Curious wireless router names&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-5388933665219157016?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5388933665219157016'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5388933665219157016'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_04_01_archive.html#5388933665219157016' title='These are a few of my favorite things'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/SenVv27c_XI/AAAAAAAACTE/Ufne6NqEgvw/s72-c/TogetherInElectricDreams.png' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-2827710053978038150</id><published>2009-04-09T20:28:00.000-07:00</published><updated>2009-04-09T20:36:14.588-07:00</updated><title type='text'>Ours is not to wonder why</title><content type='html'>&lt;object width="560" height="340"&gt;&lt;param name="movie" value="http://www.youtube.com/v/qniwI2hNhDs&amp;hl=en&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/qniwI2hNhDs&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;But for the sheep just another incomprehensible day of fear and trepidation.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-2827710053978038150?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2827710053978038150'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2827710053978038150'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_04_01_archive.html#2827710053978038150' title='Ours is not to wonder why'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7232123273951964458</id><published>2009-03-27T00:32:00.000-07:00</published><updated>2009-03-27T00:34:29.018-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/ScyBfAXT6jI/AAAAAAAACS0/Tc75BOkCmbc/s1600-h/BicYourFlick.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 306px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/ScyBfAXT6jI/AAAAAAAACS0/Tc75BOkCmbc/s400/BicYourFlick.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5317767629691415090" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7232123273951964458?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7232123273951964458'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7232123273951964458'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_03_01_archive.html#7232123273951964458' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/ScyBfAXT6jI/AAAAAAAACS0/Tc75BOkCmbc/s72-c/BicYourFlick.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8653835965422509100</id><published>2009-03-24T00:09:00.001-07:00</published><updated>2009-03-24T00:09:48.701-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SciHNBIZ5zI/AAAAAAAACSs/LGvzWJBVA0M/s1600-h/RealRevolutionariesGoToBlacksBeach.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 306px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SciHNBIZ5zI/AAAAAAAACSs/LGvzWJBVA0M/s400/RealRevolutionariesGoToBlacksBeach.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5316648017822607154" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8653835965422509100?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8653835965422509100'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8653835965422509100'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_03_01_archive.html#8653835965422509100' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F882IEw8Z0Q/SciHNBIZ5zI/AAAAAAAACSs/LGvzWJBVA0M/s72-c/RealRevolutionariesGoToBlacksBeach.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-9098022071830045870</id><published>2009-03-24T00:08:00.000-07:00</published><updated>2009-03-24T00:09:15.058-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/SciHE8iHuSI/AAAAAAAACSk/bRE3tzYpk2M/s1600-h/LikeJLGWithBiceps.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 303px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/SciHE8iHuSI/AAAAAAAACSk/bRE3tzYpk2M/s400/LikeJLGWithBiceps.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5316647879149336866" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-9098022071830045870?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9098022071830045870'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9098022071830045870'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_03_01_archive.html#9098022071830045870' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/SciHE8iHuSI/AAAAAAAACSk/bRE3tzYpk2M/s72-c/LikeJLGWithBiceps.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-3357505459545595223</id><published>2009-03-24T00:07:00.000-07:00</published><updated>2009-03-24T00:08:41.943-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SciG7eW_3eI/AAAAAAAACSc/fC4TAOi1pyU/s1600-h/ThereWasSomethingInTheAirThatNight.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 302px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SciG7eW_3eI/AAAAAAAACSc/fC4TAOi1pyU/s400/ThereWasSomethingInTheAirThatNight.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5316647716430798306" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-3357505459545595223?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3357505459545595223'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3357505459545595223'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_03_01_archive.html#3357505459545595223' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/SciG7eW_3eI/AAAAAAAACSc/fC4TAOi1pyU/s72-c/ThereWasSomethingInTheAirThatNight.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-2376985567155987613</id><published>2009-03-07T18:48:00.000-08:00</published><updated>2009-03-07T18:58:29.755-08:00</updated><title type='text'>Goodbye Marie Pillet</title><content type='html'>&lt;a href="http://coinducinephage.canalblog.com/archives/2009/03/01/12764067.html"&gt;What to say&lt;/a&gt;?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-2376985567155987613?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2376985567155987613'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2376985567155987613'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_03_01_archive.html#2376985567155987613' title='Goodbye Marie Pillet'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8348353462873187617</id><published>2009-02-24T20:23:00.000-08:00</published><updated>2009-02-24T20:26:37.895-08:00</updated><title type='text'>From the IEEE Computer Society Vault</title><content type='html'>&lt;a href="http://www2.computer.org/portal/web/computingnow/onarchitecture"&gt;Grady&lt;/a&gt; and &lt;a href="http://www2.computer.org/portal/c/document_library/get_file?uuid=cdd346a1-2c19-472f-a799-a745d968a70c&amp;groupId=53319"&gt;The Real HAL&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8348353462873187617?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8348353462873187617'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8348353462873187617'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_02_01_archive.html#8348353462873187617' title='From the IEEE Computer Society Vault'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8447279709137169595</id><published>2009-02-24T19:54:00.000-08:00</published><updated>2009-02-24T20:41:46.897-08:00</updated><title type='text'>Eiffel's Ghost</title><content type='html'>Contract-Driven Development options for .NET from &lt;a href="http://blogs.msdn.com/somasegar/archive/2009/02/23/devlabs-code-contracts-for-net.aspx"&gt;Microsoft&lt;/a&gt;, et &lt;a href="http://www.codeplex.com/contractdriven"&gt;al&lt;/a&gt;.  Though I hear the MS version only works with the Dev Studio Team licen$e.  Still waiting for the knock-off of EiffelStudio's Code/Contract/UMLy-thing view.  Maybe I'll finally have a reason to throw &lt;a href="http://www.amazon.com/Object-Oriented-Software-Construction-Prentice-Hall-International/dp/0136291554/"&gt;Bertrand Meyer's tome&lt;/a&gt; back onto the stack.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8447279709137169595?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8447279709137169595'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8447279709137169595'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_02_01_archive.html#8447279709137169595' title='Eiffel&apos;s Ghost'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7651608202061375301</id><published>2009-02-20T23:23:00.001-08:00</published><updated>2009-02-20T23:24:57.040-08:00</updated><title type='text'>Don't ask, don't tell</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SZ-sQKE4-XI/AAAAAAAACSM/jdGNSvtu57w/s1600-h/PerditaEnLaTraduko.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 298px; height: 400px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SZ-sQKE4-XI/AAAAAAAACSM/jdGNSvtu57w/s400/PerditaEnLaTraduko.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5305148279648483698" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7651608202061375301?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7651608202061375301'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7651608202061375301'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_02_01_archive.html#7651608202061375301' title='Don&apos;t ask, don&apos;t tell'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/SZ-sQKE4-XI/AAAAAAAACSM/jdGNSvtu57w/s72-c/PerditaEnLaTraduko.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-4801913177293069566</id><published>2009-02-05T18:28:00.000-08:00</published><updated>2009-02-05T18:32:40.583-08:00</updated><title type='text'>In the beginning was the keyword</title><content type='html'>Unfortunately, &lt;a href="http://www.aegisub.net/2008/12/if-programming-languages-were-religions.html"&gt;this&lt;/a&gt; is probably only funny for the superdorks.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-4801913177293069566?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4801913177293069566'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4801913177293069566'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_02_01_archive.html#4801913177293069566' title='In the beginning was the keyword'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-1412314494216827267</id><published>2009-01-20T21:45:00.001-08:00</published><updated>2009-01-20T21:51:47.641-08:00</updated><title type='text'>Yay!  Moving on...</title><content type='html'>Peter Bogdanovich &lt;a href="http://newbevcinema.com/"&gt;in the flesh&lt;/a&gt; at the New Beverly on the 21st and 23rd, and programming all next week.  No &lt;span style="font-style:italic;"&gt;At Long Last Love&lt;/span&gt;, alas.  I don't care what Brando says, I love Cybill Shepherd's singing.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-1412314494216827267?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1412314494216827267'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1412314494216827267'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_01_01_archive.html#1412314494216827267' title='Yay!  Moving on...'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-2301232422357326795</id><published>2009-01-06T19:56:00.000-08:00</published><updated>2009-01-06T20:10:26.859-08:00</updated><title type='text'>Alfred Hitchcock Presented</title><content type='html'>Lotsa Hitchcock at the Cinematheque &lt;a href="http://www.americancinematheque.com/archive1999/2009/Aero/Hitchcock_AT2009.htm"&gt;starting on the 22nd&lt;/a&gt;.  What a perfect time to read &lt;a href="http://www.amazon.com/Hitchcock-Revised-Helen-G-Scott/dp/0671604295/"&gt;the book most despised by William Goldman&lt;/a&gt;.  Or listen to the &lt;a href="http://tsutpen.blogspot.com/search/label/The%20Hitchcock%2FTruffaut%20Tapes?updated-max=2006-05-21T18%3A10%3A00-04%3A00&amp;max-results=20"&gt;record&lt;/a&gt;&lt;a href="http://tsutpen.blogspot.com/search/label/The%20Hitchcock%2FTruffaut%20Tapes"&gt;ings&lt;/a&gt; from whence it was culled.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-2301232422357326795?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2301232422357326795'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2301232422357326795'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_01_01_archive.html#2301232422357326795' title='Alfred Hitchcock Presented'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-3849008562667109032</id><published>2009-01-06T19:06:00.000-08:00</published><updated>2009-01-06T19:37:28.708-08:00</updated><title type='text'>More fun than NFPA 704</title><content type='html'>"&lt;a href="http://www.boingboing.net/2009/01/02/warhol-spielberg-bia.html"&gt;Coke or Weed?&lt;/a&gt;" is eerily similar to the "Kahlúa, Weed or Cocaine?" game I forced several of my friends to play with &lt;a href="http://www.youtube.com/watch?v=PBv03yP8LBE"&gt;Luke Y. Thompson's video of Cathy Seipp's Jahrzeit&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-3849008562667109032?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3849008562667109032'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3849008562667109032'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_01_01_archive.html#3849008562667109032' title='More fun than NFPA 704'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-473506222708567455</id><published>2009-01-03T18:20:00.001-08:00</published><updated>2009-01-03T18:31:24.480-08:00</updated><title type='text'>It's Alive!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SWAdEmrZqeI/AAAAAAAACQk/0PX82xkcvHA/s1600-h/HVX1.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 300px; height: 400px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SWAdEmrZqeI/AAAAAAAACQk/0PX82xkcvHA/s400/HVX1.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5287257927472228834" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SWAdEgge_pI/AAAAAAAACQs/mPo-sWVGjbg/s1600-h/HVX2.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 300px; height: 400px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SWAdEgge_pI/AAAAAAAACQs/mPo-sWVGjbg/s400/HVX2.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5287257925815828114" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SWAdElGF8UI/AAAAAAAACQ0/hG2F9nNSPFk/s1600-h/HVX3.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SWAdElGF8UI/AAAAAAAACQ0/hG2F9nNSPFk/s400/HVX3.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5287257927047311682" /&gt;&lt;/a&gt;&lt;br /&gt;Another late night in my hotel room calibrating my 35mm lens adapter and running tests.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-473506222708567455?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/473506222708567455'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/473506222708567455'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2009_01_01_archive.html#473506222708567455' title='It&apos;s Alive!'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/SWAdEmrZqeI/AAAAAAAACQk/0PX82xkcvHA/s72-c/HVX1.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8609005981075463803</id><published>2008-12-31T15:42:00.000-08:00</published><updated>2008-12-31T17:16:18.050-08:00</updated><title type='text'>So long, 2008</title><content type='html'>Seems like it was a tough 12 months for everyone I know -- I feel like I got off easy.  Now if you'll excuse me I'm laying low for the rest of the year.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8609005981075463803?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8609005981075463803'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8609005981075463803'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_12_01_archive.html#8609005981075463803' title='So long, 2008'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-3310818211309570319</id><published>2008-12-13T06:52:00.001-08:00</published><updated>2008-12-13T06:52:46.792-08:00</updated><title type='text'>Phase IV</title><content type='html'>&lt;a href="http://www.cnn.com/2008/TECH/science/12/12/acorn.shortage/index.html"&gt;It begins&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-3310818211309570319?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3310818211309570319'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/3310818211309570319'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_12_01_archive.html#3310818211309570319' title='Phase IV'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-1723088428065921051</id><published>2008-12-11T20:41:00.000-08:00</published><updated>2008-12-11T20:52:02.817-08:00</updated><title type='text'>Next up: Wexler</title><content type='html'>&lt;a href="http://www.ddj.com/development-tools/212201710;jsessionid=XEW25OWKJGOLIQSNDLPCKH0CJUNN2JVN"&gt;Get with the program&lt;/a&gt;.  Haskell Wikibook &lt;a href="http://en.wikibooks.org/wiki/Haskell"&gt;here&lt;/a&gt;.  Compiler &lt;a href="http://haskell.org/ghc/download_ghc_6_10_1.html"&gt;here&lt;/a&gt;.  Other resources &lt;a href="http://haskell.org/"&gt;here&lt;/a&gt;.  Lambda calculus primer &lt;a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.46.9283"&gt;here&lt;/a&gt;.  People driven mad by λ &lt;a href="http://users.bigpond.net.au/d.keenan/Lambda/"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-1723088428065921051?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1723088428065921051'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1723088428065921051'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_12_01_archive.html#1723088428065921051' title='Next up: Wexler'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-5837140550267234319</id><published>2008-12-11T20:19:00.001-08:00</published><updated>2008-12-11T20:21:51.130-08:00</updated><title type='text'>It's a feature!</title><content type='html'>&lt;a href="http://support.microsoft.com/kb/244139"&gt;How to blue screen Windows on demand&lt;/a&gt; from the people who know.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-5837140550267234319?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5837140550267234319'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5837140550267234319'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_12_01_archive.html#5837140550267234319' title='It&apos;s a feature!'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-5289068219025243153</id><published>2008-12-08T20:21:00.000-08:00</published><updated>2008-12-08T20:23:45.643-08:00</updated><title type='text'>Renew my subscription to the Resurrection</title><content type='html'>&lt;a href="http://www.charlierose.com/view/interview/9724"&gt;Gil Kaplan on Mahler's 2nd on Charlie Rose&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-5289068219025243153?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5289068219025243153'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5289068219025243153'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_12_01_archive.html#5289068219025243153' title='Renew my subscription to the Resurrection'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-220706308695001855</id><published>2008-12-07T19:28:00.000-08:00</published><updated>2008-12-07T19:29:23.003-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/STyUioUjGeI/AAAAAAAABk0/zdm9XyR5EFA/s1600-h/IWantYourSex.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 173px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/STyUioUjGeI/AAAAAAAABk0/zdm9XyR5EFA/s400/IWantYourSex.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5277256186031446498" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-220706308695001855?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/220706308695001855'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/220706308695001855'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_12_01_archive.html#220706308695001855' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F882IEw8Z0Q/STyUioUjGeI/AAAAAAAABk0/zdm9XyR5EFA/s72-c/IWantYourSex.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-4925817096486570116</id><published>2008-12-07T18:09:00.000-08:00</published><updated>2008-12-07T18:19:20.441-08:00</updated><title type='text'>1924-2008</title><content type='html'>&lt;a href="http://www.imdb.com/news/ni0622635/"&gt;Rest in peace, Nina Foch&lt;/a&gt; -- at least I got to see you in the flesh.  Long may you wave, Leslie Caron.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-4925817096486570116?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4925817096486570116'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4925817096486570116'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_12_01_archive.html#4925817096486570116' title='1924-2008'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7581562212723540827</id><published>2008-12-01T21:14:00.001-08:00</published><updated>2008-12-01T22:46:24.181-08:00</updated><title type='text'>Day 670</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/STTEX1a8d_I/AAAAAAAABkU/sWwegFEYEiY/s1600-h/RepeatAfterMe.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/STTEX1a8d_I/AAAAAAAABkU/sWwegFEYEiY/s400/RepeatAfterMe.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5275056977313822706" /&gt;&lt;/a&gt;&lt;br /&gt;So as we approach Thoreau's vaunted two years and two months things are -- as expected -- getting a bit &lt;i&gt;hectic&lt;/i&gt;.  And as the camera department is running wildly over budget due to the DP's insatiable appetite for Canon glass it looks like I'm going to have to break Henry David's record, alas.   Unlike our government and key financial institutions, I have to make ends meet.  So onward!  In other news, the Reliant's onboard computer #1 has had it's XP installation purged and replaced with the preferred OS of anarchists and ecoterrorists, Ubuntu 8.10.  Also, the car's drive has been upgraded to 2 terabytes, which I strongly believe is a K-Car storage capacity world record.  Now maybe I'll have enough room for my complete collection of guacamole recipes.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7581562212723540827?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7581562212723540827'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7581562212723540827'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_12_01_archive.html#7581562212723540827' title='Day 670'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/STTEX1a8d_I/AAAAAAAABkU/sWwegFEYEiY/s72-c/RepeatAfterMe.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-6118496250058453720</id><published>2008-11-29T19:13:00.000-08:00</published><updated>2008-11-29T19:14:17.061-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/STIFAb8DMaI/AAAAAAAABkM/b194pZwUk78/s1600-h/LonelyAvenue.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 302px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/STIFAb8DMaI/AAAAAAAABkM/b194pZwUk78/s400/LonelyAvenue.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5274283618662035874" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-6118496250058453720?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6118496250058453720'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6118496250058453720'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_11_01_archive.html#6118496250058453720' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/STIFAb8DMaI/AAAAAAAABkM/b194pZwUk78/s72-c/LonelyAvenue.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-2325639611276794884</id><published>2008-11-25T19:29:00.000-08:00</published><updated>2008-11-25T19:34:09.555-08:00</updated><title type='text'>Better, Stronger, Faster</title><content type='html'>The new Criterion site is &lt;a href="http://www.criterion.com/"&gt;up&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-2325639611276794884?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2325639611276794884'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2325639611276794884'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_11_01_archive.html#2325639611276794884' title='Better, Stronger, Faster'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-6860125112165190853</id><published>2008-11-24T22:50:00.000-08:00</published><updated>2008-11-24T22:51:37.944-08:00</updated><title type='text'>The Paris sky is blue and bright</title><content type='html'>Leonard Cohen is &lt;a href="http://www.lemonde.fr/culture/portfolio/2008/11/24/leonard-cohen-a-paris-pour-la-premiere-fois-depuis-1993_1122292_3246.html"&gt;on the road again&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-6860125112165190853?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6860125112165190853'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6860125112165190853'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_11_01_archive.html#6860125112165190853' title='The Paris sky is blue and bright'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8762357282815529741</id><published>2008-11-10T20:44:00.000-08:00</published><updated>2008-11-10T20:52:35.113-08:00</updated><title type='text'>All work and no play</title><content type='html'>Well, I'm kind of busy at the moment, so feel free to entertain yourselves with some footage of high-tension arcs.&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Au1nJ-2zg0w&amp;hl=en&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/Au1nJ-2zg0w&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/yrb0G_-CzdQ&amp;hl=en&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/yrb0G_-CzdQ&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/7aCbyx0A_ws&amp;hl=en&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/7aCbyx0A_ws&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8762357282815529741?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8762357282815529741'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8762357282815529741'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_11_01_archive.html#8762357282815529741' title='All work and no play'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-580431419274372247</id><published>2008-10-29T22:14:00.000-07:00</published><updated>2008-10-29T22:15:06.656-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/SQlC1LIh6iI/AAAAAAAABkE/rPmfObHGC_0/s1600-h/OffTheRoadAgain.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/SQlC1LIh6iI/AAAAAAAABkE/rPmfObHGC_0/s400/OffTheRoadAgain.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5262811120848202274" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-580431419274372247?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/580431419274372247'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/580431419274372247'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_10_01_archive.html#580431419274372247' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/SQlC1LIh6iI/AAAAAAAABkE/rPmfObHGC_0/s72-c/OffTheRoadAgain.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-4326798177975443716</id><published>2008-10-25T13:53:00.000-07:00</published><updated>2008-10-25T13:54:31.421-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SQOHgEgW8DI/AAAAAAAABj8/EhlgiG7kib4/s1600-h/ThatsJustQualityTeachingYouFuckingPussies.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SQOHgEgW8DI/AAAAAAAABj8/EhlgiG7kib4/s400/ThatsJustQualityTeachingYouFuckingPussies.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5261197774733897778" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-4326798177975443716?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4326798177975443716'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4326798177975443716'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_10_01_archive.html#4326798177975443716' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F882IEw8Z0Q/SQOHgEgW8DI/AAAAAAAABj8/EhlgiG7kib4/s72-c/ThatsJustQualityTeachingYouFuckingPussies.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8617370369220089526</id><published>2008-10-25T13:35:00.000-07:00</published><updated>2008-10-25T13:47:45.790-07:00</updated><title type='text'>Soviet Prop-a-gander</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SQODuCldOCI/AAAAAAAABj0/XSRBafws_wE/s1600-h/SpeciboA-Kom.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SQODuCldOCI/AAAAAAAABj0/XSRBafws_wE/s400/SpeciboA-Kom.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5261193616690067490" /&gt;&lt;/a&gt;&lt;br /&gt;What's it like being &lt;a href="http://investing.businessweek.com/research/stocks/private/snapshot.asp?privcapId=120412"&gt;neighbors with MySpace&lt;/a&gt;?  Don't know; never see the guy.  But he does like to rack his shotgun a lot in the wee hours of the morning.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8617370369220089526?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8617370369220089526'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8617370369220089526'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_10_01_archive.html#8617370369220089526' title='Soviet Prop-a-gander'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/SQODuCldOCI/AAAAAAAABj0/XSRBafws_wE/s72-c/SpeciboA-Kom.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-6031244995991774235</id><published>2008-10-21T21:57:00.000-07:00</published><updated>2008-10-21T21:58:41.001-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/SP6y9v0yqkI/AAAAAAAABjs/sdrIQ7Bwako/s1600-h/NoJoyInHappiness.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/SP6y9v0yqkI/AAAAAAAABjs/sdrIQ7Bwako/s400/NoJoyInHappiness.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5259838188694972994" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-6031244995991774235?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6031244995991774235'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6031244995991774235'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_10_01_archive.html#6031244995991774235' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/SP6y9v0yqkI/AAAAAAAABjs/sdrIQ7Bwako/s72-c/NoJoyInHappiness.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-4284251215753357209</id><published>2008-10-21T21:40:00.000-07:00</published><updated>2008-10-21T21:57:43.162-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SP6yr9mHCTI/AAAAAAAABjk/tMxmE26-ZEA/s1600-h/RevengeIsADishBestServedPotluck.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SP6yr9mHCTI/AAAAAAAABjk/tMxmE26-ZEA/s400/RevengeIsADishBestServedPotluck.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5259837883153844530" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-4284251215753357209?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4284251215753357209'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4284251215753357209'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_10_01_archive.html#4284251215753357209' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/SP6yr9mHCTI/AAAAAAAABjk/tMxmE26-ZEA/s72-c/RevengeIsADishBestServedPotluck.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-6436001844430206209</id><published>2008-10-18T11:30:00.000-07:00</published><updated>2008-10-18T11:31:05.842-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SPorYDxtsRI/AAAAAAAABjc/2HBYoWpFpOg/s1600-h/OBraveNewWorld.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SPorYDxtsRI/AAAAAAAABjc/2HBYoWpFpOg/s400/OBraveNewWorld.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5258563207239151890" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-6436001844430206209?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6436001844430206209'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6436001844430206209'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_10_01_archive.html#6436001844430206209' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/SPorYDxtsRI/AAAAAAAABjc/2HBYoWpFpOg/s72-c/OBraveNewWorld.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-1771776743680707413</id><published>2008-10-12T18:46:00.000-07:00</published><updated>2008-10-12T18:47:52.247-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SPKomWIJ7pI/AAAAAAAABjQ/McMCo3ohxBI/s1600-h/YoullFindThatShedsAreNicerThanYouThought.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SPKomWIJ7pI/AAAAAAAABjQ/McMCo3ohxBI/s400/YoullFindThatShedsAreNicerThanYouThought.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5256449091823070866" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-1771776743680707413?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1771776743680707413'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1771776743680707413'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_10_01_archive.html#1771776743680707413' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/SPKomWIJ7pI/AAAAAAAABjQ/McMCo3ohxBI/s72-c/YoullFindThatShedsAreNicerThanYouThought.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-4329540232912522987</id><published>2008-10-09T23:46:00.000-07:00</published><updated>2008-10-09T23:50:27.337-07:00</updated><title type='text'>Wouldn't you cross the street?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SO76ZU2q6tI/AAAAAAAABjI/40xt-PB0i0c/s1600-h/CrazyIsAsCrazyDoes.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SO76ZU2q6tI/AAAAAAAABjI/40xt-PB0i0c/s400/CrazyIsAsCrazyDoes.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5255413128189635282" /&gt;&lt;/a&gt;&lt;br /&gt;1.6 years on the street and the transformation is complete.  1080p sure looks nice, though.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-4329540232912522987?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4329540232912522987'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4329540232912522987'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_10_01_archive.html#4329540232912522987' title='Wouldn&apos;t you cross the street?'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F882IEw8Z0Q/SO76ZU2q6tI/AAAAAAAABjI/40xt-PB0i0c/s72-c/CrazyIsAsCrazyDoes.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-7987314109876887465</id><published>2008-10-09T22:46:00.000-07:00</published><updated>2008-10-09T23:51:06.298-07:00</updated><title type='text'>Seal Beach to Sunset Blvd</title><content type='html'>&lt;object width="400" height="300"&gt; &lt;param name="allowfullscreen" value="true" /&gt; &lt;param name="allowscriptaccess" value="always" /&gt; &lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=1903482&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" /&gt; &lt;embed src="http://vimeo.com/moogaloop.swf?clip_id=1903482&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;.&lt;br /&gt;1.25 hours for me, 2.5 minutes for you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-7987314109876887465?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7987314109876887465'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/7987314109876887465'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_10_01_archive.html#7987314109876887465' title='Seal Beach to Sunset Blvd'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-308797865043119449</id><published>2008-10-07T23:12:00.001-07:00</published><updated>2008-10-07T23:12:56.146-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SOxPYAEdKHI/AAAAAAAABjA/b5_0nVhONkg/s1600-h/GoneIn60Minutes.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SOxPYAEdKHI/AAAAAAAABjA/b5_0nVhONkg/s400/GoneIn60Minutes.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5254662138988669042" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-308797865043119449?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/308797865043119449'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/308797865043119449'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_10_01_archive.html#308797865043119449' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F882IEw8Z0Q/SOxPYAEdKHI/AAAAAAAABjA/b5_0nVhONkg/s72-c/GoneIn60Minutes.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-5085736208983917726</id><published>2008-09-28T23:44:00.000-07:00</published><updated>2008-09-28T23:45:32.462-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/SOB5gxLT10I/AAAAAAAABi4/kPVv0cT26LA/s1600-h/SynchronicitiesWithinSynchronicities.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/SOB5gxLT10I/AAAAAAAABi4/kPVv0cT26LA/s400/SynchronicitiesWithinSynchronicities.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5251330769377548098" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-5085736208983917726?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5085736208983917726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5085736208983917726'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#5085736208983917726' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/SOB5gxLT10I/AAAAAAAABi4/kPVv0cT26LA/s72-c/SynchronicitiesWithinSynchronicities.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-2891649377177015374</id><published>2008-09-28T09:35:00.000-07:00</published><updated>2008-09-28T09:41:16.383-07:00</updated><title type='text'>This one's for you, Kolb</title><content type='html'>&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/olLYiTqLybo&amp;hl=en&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/olLYiTqLybo&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-2891649377177015374?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2891649377177015374'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2891649377177015374'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#2891649377177015374' title='This one&apos;s for you, Kolb'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8703757878393732222</id><published>2008-09-28T09:10:00.000-07:00</published><updated>2008-09-28T09:19:32.181-07:00</updated><title type='text'>Dream Brother, with your tears scattered 'round the world</title><content type='html'>Hey, Kolb from PA is &lt;a href="http://www.brandonbird.com/walken_letters.html"&gt;into Tesla Coils and Nietzsche&lt;/a&gt; -- could he be my long-lost half-brother?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8703757878393732222?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8703757878393732222'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8703757878393732222'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#8703757878393732222' title='Dream Brother, with your tears scattered &apos;round the world'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8007145470729530069</id><published>2008-09-28T08:58:00.000-07:00</published><updated>2008-09-28T09:07:15.104-07:00</updated><title type='text'>Isolde:</title><content type='html'>Dein Werk?&lt;br /&gt;O tör'ge Magd!&lt;br /&gt;Frau Minne kenntest du nicht?&lt;br /&gt;Nicht ihrer Wunder Macht?&lt;br /&gt;Des kühnsten Mutes&lt;br /&gt;Königin?&lt;br /&gt;Des Weltenwerdens&lt;br /&gt;Walterin?&lt;br /&gt;Leben und Tod&lt;br /&gt;sind untertan ihr,&lt;br /&gt;die sie webt aus Lust und Leid,&lt;br /&gt;in Liebe wandelnd den Neid.&lt;br /&gt;Des Todes Werk,&lt;br /&gt;nahm ich's vermessen zur Hand,&lt;br /&gt;Frau Minne hat es&lt;br /&gt;meiner Macht entwandt.&lt;br /&gt;Die Todgeweihte&lt;br /&gt;nahm sie in Pfand,&lt;br /&gt;faßte das Werk&lt;br /&gt;in ihre Hand.&lt;br /&gt;Wie sie es wendet,&lt;br /&gt;wie sie es endet,&lt;br /&gt;was sie mir küre,&lt;br /&gt;wohin mich führe,&lt;br /&gt;ihr ward ich zu eigen:&lt;br /&gt;num laß mich Gehorsam zeigen!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8007145470729530069?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8007145470729530069'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8007145470729530069'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#8007145470729530069' title='Isolde:'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-8095532449382020254</id><published>2008-09-22T20:49:00.000-07:00</published><updated>2008-09-22T20:59:25.837-07:00</updated><title type='text'>The week that was</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SNhoMw-wILI/AAAAAAAABiw/p7NJCGJ9rFA/s1600-h/AMereFleshWound.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SNhoMw-wILI/AAAAAAAABiw/p7NJCGJ9rFA/s400/AMereFleshWound.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5249059934216134834" /&gt;&lt;/a&gt;&lt;br /&gt;Highlights: brief (and not-so-brief) encounters with Werner Herzog, Godfrey Reggio and my first shrapnel wound courtesy of the nimrod in the lane next to me at the range who couldn't hit his target at &lt;10 yards with his rented 12 gage shotgun.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-8095532449382020254?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8095532449382020254'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/8095532449382020254'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#8095532449382020254' title='The week that was'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/SNhoMw-wILI/AAAAAAAABiw/p7NJCGJ9rFA/s72-c/AMereFleshWound.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-1665440554398845365</id><published>2008-09-21T13:57:00.001-07:00</published><updated>2008-09-21T14:01:48.677-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SNa2NqPQgaI/AAAAAAAABio/B4-vAMdDGTQ/s1600-h/WhoCanResistAWomanWithExcellentBowingTechnique.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SNa2NqPQgaI/AAAAAAAABio/B4-vAMdDGTQ/s400/WhoCanResistAWomanWithExcellentBowingTechnique.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5248582761539731874" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-1665440554398845365?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1665440554398845365'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/1665440554398845365'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#1665440554398845365' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/SNa2NqPQgaI/AAAAAAAABio/B4-vAMdDGTQ/s72-c/WhoCanResistAWomanWithExcellentBowingTechnique.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-4717842504240125482</id><published>2008-09-20T13:03:00.000-07:00</published><updated>2008-09-20T13:05:53.217-07:00</updated><title type='text'>Prop-a-gander</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_F882IEw8Z0Q/SNVXkEqK-8I/AAAAAAAABiY/_S7_ZP_9hg8/s1600-h/NotMuchOfAGirlfriendINeverSeemToGetALot.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_F882IEw8Z0Q/SNVXkEqK-8I/AAAAAAAABiY/_S7_ZP_9hg8/s400/NotMuchOfAGirlfriendINeverSeemToGetALot.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5248197218007710658" /&gt;&lt;/a&gt;&lt;br /&gt;The Statuette of Liberty&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-4717842504240125482?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4717842504240125482'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/4717842504240125482'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#4717842504240125482' title='Prop-a-gander'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_F882IEw8Z0Q/SNVXkEqK-8I/AAAAAAAABiY/_S7_ZP_9hg8/s72-c/NotMuchOfAGirlfriendINeverSeemToGetALot.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-343684292394058247</id><published>2008-09-20T12:50:00.000-07:00</published><updated>2008-09-20T12:59:24.984-07:00</updated><title type='text'>Boob Tube</title><content type='html'>&lt;a href="http://www.youtube.com/watch?v=vuI_nCADnW0"&gt;Also shown at last night's Qatsi event&lt;/a&gt;.  And no, they're not being given a stern talking to by Amy Alkon.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-343684292394058247?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/343684292394058247'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/343684292394058247'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#343684292394058247' title='Boob Tube'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-5611143970483825109</id><published>2008-09-20T00:14:00.000-07:00</published><updated>2008-09-20T12:57:07.834-07:00</updated><title type='text'>Godfrey Reggio: "The Blue Planet is the new Swastika."</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SNSkE9MqUnI/AAAAAAAABiQ/qNuMkTX8q6Y/s1600-h/ICanSpellItCanYou.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SNSkE9MqUnI/AAAAAAAABiQ/qNuMkTX8q6Y/s400/ICanSpellItCanYou.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5247999870847570546" /&gt;&lt;/a&gt;&lt;br /&gt;I was both titillated and disturbed to see that the movie that was so ethereal and mysterious to me when I first saw it back in 1991 is in 2008 a highly recognizable documentation of the commute for my last two jobs.  An invitation for meditation indeed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-5611143970483825109?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5611143970483825109'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/5611143970483825109'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#5611143970483825109' title='Godfrey Reggio: &quot;The Blue Planet is the new Swastika.&quot;'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F882IEw8Z0Q/SNSkE9MqUnI/AAAAAAAABiQ/qNuMkTX8q6Y/s72-c/ICanSpellItCanYou.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-2738129942084824528</id><published>2008-09-15T19:57:00.000-07:00</published><updated>2008-09-20T13:06:26.827-07:00</updated><title type='text'>Prop-a-gander</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SM8hH54uoNI/AAAAAAAABiI/L5M2M7yuTFY/s1600-h/YouDontPsychopathologizeMeAndIWontPsychopathologizeYou.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SM8hH54uoNI/AAAAAAAABiI/L5M2M7yuTFY/s400/YouDontPsychopathologizeMeAndIWontPsychopathologizeYou.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5246448510591475922" /&gt;&lt;/a&gt;&lt;br /&gt;Ben's sister's camera&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-2738129942084824528?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2738129942084824528'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2738129942084824528'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#2738129942084824528' title='Prop-a-gander'/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/SM8hH54uoNI/AAAAAAAABiI/L5M2M7yuTFY/s72-c/YouDontPsychopathologizeMeAndIWontPsychopathologizeYou.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-9193316683981824573</id><published>2008-09-14T20:47:00.000-07:00</published><updated>2008-09-14T20:51:22.476-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_F882IEw8Z0Q/SM3brcgzZpI/AAAAAAAABiA/qtH9HrMKodw/s1600-h/BeyondTheBlueHorizon.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_F882IEw8Z0Q/SM3brcgzZpI/AAAAAAAABiA/qtH9HrMKodw/s400/BeyondTheBlueHorizon.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5246090680391132818" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-9193316683981824573?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9193316683981824573'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/9193316683981824573'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#9193316683981824573' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_F882IEw8Z0Q/SM3brcgzZpI/AAAAAAAABiA/qtH9HrMKodw/s72-c/BeyondTheBlueHorizon.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-2609690761913937322</id><published>2008-09-14T00:32:00.000-07:00</published><updated>2008-09-14T00:33:29.612-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_F882IEw8Z0Q/SMy-QfEFCLI/AAAAAAAABh4/R-4SgV-dtS4/s1600-h/WhenHollywoodEarnedIt.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_F882IEw8Z0Q/SMy-QfEFCLI/AAAAAAAABh4/R-4SgV-dtS4/s400/WhenHollywoodEarnedIt.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5245776856405575858" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-2609690761913937322?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2609690761913937322'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/2609690761913937322'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#2609690761913937322' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_F882IEw8Z0Q/SMy-QfEFCLI/AAAAAAAABh4/R-4SgV-dtS4/s72-c/WhenHollywoodEarnedIt.jpg' height='72' width='72'/></entry><entry><id>tag:blogger.com,1999:blog-5161061.post-6804228680786044145</id><published>2008-09-07T07:18:00.000-07:00</published><updated>2008-09-07T07:19:01.402-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_F882IEw8Z0Q/SMPiz4n6eJI/AAAAAAAABhY/Ok0KjloMqPs/s1600-h/DrunkHornyMenMakeTheWorstMatchmakers.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_F882IEw8Z0Q/SMPiz4n6eJI/AAAAAAAABhY/Ok0KjloMqPs/s400/DrunkHornyMenMakeTheWorstMatchmakers.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5243283772190390418" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5161061-6804228680786044145?l=dfenestrator.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6804228680786044145'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5161061/posts/default/6804228680786044145'/><link rel='alternate' type='text/html' href='http://dfenestrator.blogspot.com/2008_09_01_archive.html#6804228680786044145' title=''/><author><name>Paul Hrissikopoulos</name><uri>http://www.blogger.com/profile/02716984584945417703</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_F882IEw8Z0Q/SMPiz4n6eJI/AAAAAAAABhY/Ok0KjloMqPs/s72-c/DrunkHornyMenMakeTheWorstMatchmakers.jpg' height='72' width='72'/></entry></feed>
