<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/" ><channel><title>a technology job is no excuse</title> <atom:link href="http://atechnologyjobisnoexcuse.com/feed/" rel="self" type="application/rss+xml" /><link>http://atechnologyjobisnoexcuse.com</link> <description></description> <lastBuildDate>Thu, 23 May 2013 22:45:03 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/us/</creativeCommons:license> <copyright>Copyright © Gunnar Hellekson 2013. Licensed CC-BY-SA. http://creativecommons.org/licenses/by-sa/3.0/us/</copyright> <managingEditor>gunnar.hellekson+onepeople@gmail.com (Gunnar Hellekson)</managingEditor> <webMaster>gunnar.hellekson+onepeople@gmail.com (Gunnar Hellekson)</webMaster> <ttl>1440</ttl> <image> <url>http://atechnologyjobisnoexcuse.com/files/cc.large.png</url><title>a technology job is no excuse</title><link>http://atechnologyjobisnoexcuse.com</link> <width>144</width> <height>144</height> </image> <itunes:subtitle></itunes:subtitle> <itunes:summary></itunes:summary> <itunes:keywords></itunes:keywords> <itunes:category text="Society &#38; Culture" /> <itunes:author>Gunnar Hellekson</itunes:author> <itunes:owner> <itunes:name>Gunnar Hellekson</itunes:name> <itunes:email>gunnar.hellekson+onepeople@gmail.com</itunes:email> </itunes:owner> <itunes:block>no</itunes:block> <itunes:explicit>no</itunes:explicit> <itunes:image href="http://cdn.atechnologyjobisnoexcuse.com/files/cc.large.png" /> <item><title>The lady’s next dress.</title><link>http://atechnologyjobisnoexcuse.com/2013/05/the-ladys-next-dress-2/</link> <comments>http://atechnologyjobisnoexcuse.com/2013/05/the-ladys-next-dress-2/#comments</comments> <pubDate>Thu, 23 May 2013 18:01:22 +0000</pubDate> <dc:creator>gunnar</dc:creator> <category><![CDATA[...from Tumblr]]></category> <category><![CDATA[What I'm Looking At]]></category> <category><![CDATA[dress]]></category> <category><![CDATA[summer]]></category> <category><![CDATA[the lady]]></category><guid isPermaLink="false">http://atechnologyjobisnoexcuse.com/?guid=7d696d78ad49ca01154b623229f77370</guid> <description><![CDATA[]]></description> <content:encoded><![CDATA[<p><a href="http://ushistorians.wordpress.com/2013/05/02/mash/"><img src="http://24.media.tumblr.com/5896d74952223793436ebada6352d478/tumblr_mm8bmclC6l1qzleu4o1_500.png" alt="The lady&#8217;s next dress."></a></p> ]]></content:encoded> <wfw:commentRss>http://atechnologyjobisnoexcuse.com/2013/05/the-ladys-next-dress-2/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/us/</creativeCommons:license> <enclosure url="//?#" length="" type="" /> </item> <item><title>Create short links with TextExpander and yourls</title><link>http://atechnologyjobisnoexcuse.com/2013/05/create-short-links-with-textexpander-and-yourls/</link> <comments>http://atechnologyjobisnoexcuse.com/2013/05/create-short-links-with-textexpander-and-yourls/#comments</comments> <pubDate>Wed, 22 May 2013 20:32:26 +0000</pubDate> <dc:creator>gunnar</dc:creator> <category><![CDATA[What I'm Thinking About]]></category> <category><![CDATA[link shortener]]></category> <category><![CDATA[textexpander]]></category> <category><![CDATA[yourls]]></category><guid isPermaLink="false">http://atechnologyjobisnoexcuse.com/?p=15707</guid> <description><![CDATA[I want to type ghurl, and have TextExpander grab the URL in my clipboard, and replace it with my link-shortening service, running yourls. Grab your &#8220;secret signature token&#8221; from the Tools page in yourls. Create a shell script, short-url.sh in your ~/bin directory (or wherever). Yes, we could just drop &#8230;]]></description> <content:encoded><![CDATA[<p>I want to type <code>ghurl</code>, and have <a href="http://smilesoftware.com/TextExpander/index.html">TextExpander</a> grab the URL in my clipboard, and replace it with my link-shortening service, running <a href="http://yourls.org/">yourls</a>.</p><ol><li>Grab your &#8220;secret signature token&#8221; from the <code>Tools</code> page in yourls.</li><li><p>Create a shell script, <code>short-url.sh</code> in your ~/bin directory (or wherever). Yes, we could just drop this script into TextExpander, but it&#8217;d be nice to be able to use this script in other contexts.</p><pre><code>#!/bin/bash
id="YOURLS_SECRET_TOKEN_HERE"
curl --silent -o - "http://YOURLS_URL_HERE/yourls-api.php?signature=$id&amp;action=shorturl&amp;format=simply&amp;url=$1" | \
   awk -F# '{gsub(/ /,"");print ($1) }'
</code></pre></li><li><p>Create a new &#8220;Shell Script&#8221; snippet in TextExpander, which calls the script we just made:</p><pre><code>#!/bin/bash
~/bin/short-url.sh "%clipboard"
</code></pre></li><li><p>Enjoy.</p></li></ol><p>If you want to do this for the public link shortening services, like bit.ly, is.gd, or tinyurl, you should check out <a href="https://github.com/ttscoff/Brett-s-TextExpander-Snippets.">ttscoff</a>&#8216;s project on GitHub.</p> ]]></content:encoded> <wfw:commentRss>http://atechnologyjobisnoexcuse.com/2013/05/create-short-links-with-textexpander-and-yourls/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/us/</creativeCommons:license> </item> <item><title>No Closet.</title><link>http://atechnologyjobisnoexcuse.com/2013/05/no-closet/</link> <comments>http://atechnologyjobisnoexcuse.com/2013/05/no-closet/#comments</comments> <pubDate>Wed, 22 May 2013 18:01:19 +0000</pubDate> <dc:creator>gunnar</dc:creator> <category><![CDATA[...from Tumblr]]></category> <category><![CDATA[What I'm Looking At]]></category> <category><![CDATA[closet]]></category> <category><![CDATA[wood]]></category><guid isPermaLink="false">http://atechnologyjobisnoexcuse.com/?guid=a684abb5e600205873245a22c2bbcf4f</guid> <description><![CDATA[Keeps you honest. benjamingrimes: I had the privilege of shooting Taylor Hoff’s home in San Francisco. Such a beautiful and well organized space.]]></description> <content:encoded><![CDATA[<p><img src="http://24.media.tumblr.com/eaf3173c42e1919bafef0452c60e9140/tumblr_mmi16eBMso1qa4gnbo1_1280.jpg" alt="No Closet."></p><p>Keeps you honest.</p><p><a href="http://benjamingrimes.tumblr.com/post/49959511044/i-had-the-privilege-of-shooting-taylor-hoffs-home" class="tumblr_blog">benjamingrimes</a>:</p><blockquote><p>I had the privilege of shooting <a href="http://taylorhoff.com/">Taylor Hoff’s</a> home in San Francisco. Such a beautiful and well organized space.</p></blockquote> ]]></content:encoded> <wfw:commentRss>http://atechnologyjobisnoexcuse.com/2013/05/no-closet/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/us/</creativeCommons:license> <enclosure url="//?#" length="" type="" /> </item> <item><title>Juvet Landscape Hotel</title><link>http://atechnologyjobisnoexcuse.com/2013/05/juvet-landscape-hotel/</link> <comments>http://atechnologyjobisnoexcuse.com/2013/05/juvet-landscape-hotel/#comments</comments> <pubDate>Tue, 21 May 2013 22:02:05 +0000</pubDate> <dc:creator>gunnar</dc:creator> <category><![CDATA[...from Tumblr]]></category> <category><![CDATA[What I'm Looking At]]></category> <category><![CDATA[forest]]></category> <category><![CDATA[landscape]]></category> <category><![CDATA[shipping container]]></category><guid isPermaLink="false">http://atechnologyjobisnoexcuse.com/?guid=ddf4a816b2f66c67e6604771915f67c4</guid> <description><![CDATA[giantbeard: WantedLifeStyle  Jensen &#38; Skodvin - Juvet Landscape Hotel, Gudbrandsjuvet 2009. Via, and prev.]]></description> <content:encoded><![CDATA[<p><img src="http://25.media.tumblr.com/tumblr_lq26t7h4JJ1qat99uo1_1280.jpg" alt="Juvet Landscape Hotel"></p><p><a href="http://giantbeard.tumblr.com/post/50649595604/wantedlifestyle-jensen-skodvin-juvet" class="tumblr_blog">giantbeard</a>:</p><blockquote><p><strong>Wanted</strong><em>LifeStyle</em> </p><p><a href="http://jsa.no/">Jensen &amp; Skodvin</a><span> - </span><a href="http://www.jsa.no/photos/Juvet/index.html">Juvet</a><span> Landscape Hotel, Gudbrandsjuvet 2009. </span><a href="http://www.rasmusnorlander.se/">Via</a><span>, and </span><a href="http://subtilitas.tumblr.com/post/530734403/jensen-skodvin-juvet-landscape-hotel">prev</a><span>.</span></p></blockquote> ]]></content:encoded> <wfw:commentRss>http://atechnologyjobisnoexcuse.com/2013/05/juvet-landscape-hotel/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/us/</creativeCommons:license> <enclosure url="//?#" length="" type="" /> </item> <item><title>Swedishness.</title><link>http://atechnologyjobisnoexcuse.com/2013/05/swedishness/</link> <comments>http://atechnologyjobisnoexcuse.com/2013/05/swedishness/#comments</comments> <pubDate>Tue, 21 May 2013 18:01:22 +0000</pubDate> <dc:creator>gunnar</dc:creator> <category><![CDATA[...from Tumblr]]></category> <category><![CDATA[What I'm Looking At]]></category> <category><![CDATA[svenska]]></category> <category><![CDATA[sweden]]></category><guid isPermaLink="false">http://atechnologyjobisnoexcuse.com/?guid=426f5a38a1873943903a77e4b9241140</guid> <description><![CDATA[]]></description> <content:encoded><![CDATA[<iframe width="400" height="225" src="http://www.youtube.com/embed/v8_7yPocGPg?wmode=transparent&autohide=1&egm=0&hd=1&iv_load_policy=3&modestbranding=1&rel=0&showinfo=0&showsearch=0" frameborder="0" allowfullscreen></iframe> ]]></content:encoded> <wfw:commentRss>http://atechnologyjobisnoexcuse.com/2013/05/swedishness/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/us/</creativeCommons:license> <enclosure url="//?#" length="" type="" /> </item> <item><title>#11: My PaaS lives in a yellow submarine</title><link>http://atechnologyjobisnoexcuse.com/2013/05/11-my-paas-lives-in-a-yellow-submarine/</link> <comments>http://atechnologyjobisnoexcuse.com/2013/05/11-my-paas-lives-in-a-yellow-submarine/#comments</comments> <pubDate>Tue, 21 May 2013 12:00:15 +0000</pubDate> <dc:creator>gunnar</dc:creator> <category><![CDATA[The Dave and Gunnar Show]]></category> <category><![CDATA[autonomic resources]]></category> <category><![CDATA[DCGS]]></category> <category><![CDATA[DDF]]></category> <category><![CDATA[DIB]]></category> <category><![CDATA[google]]></category> <category><![CDATA[lgpl]]></category> <category><![CDATA[lockheed martin]]></category> <category><![CDATA[lovecraft]]></category> <category><![CDATA[Meeting Jihad.]]></category> <category><![CDATA[ntfs]]></category> <category><![CDATA[openshift]]></category> <category><![CDATA[Shawn wells]]></category> <category><![CDATA[Windows NT]]></category> <category><![CDATA[yellow submarine]]></category><guid isPermaLink="false">http://atechnologyjobisnoexcuse.com/?p=15673</guid> <description><![CDATA[This week, Dave and Gunnar talk about: Eldritch horrors of the Windows NT kernel, How Google Broke Gunnar’s Heart (again), Shameless self-promotion from Dave, Shawn vs. OpenShift: do we have an opening bid?, LMCO DCGS DIB DDF brought to you by the letters L, G, P, and L, a new PaaS provider, and Week 1 of the Meeting Jihad.]]></description> <content:encoded><![CDATA[<p>This week, <a href="https://twitter.com/davidegts">Dave</a> and <a href="http://atechnologyjobisnoexcuse.com/about">Gunnar</a> talk about: Eldritch horrors of the Windows NT kernel, How Google Broke Gunnar&#8217;s Heart (again), Shameless self-promotion from Dave, Shawn vs. OpenShift: do we have an opening bid?, LMCO DCGS DIB DDF brought to you by the letters L, G, P, and L, a new PaaS provider, and Week 1 of the Meeting Jihad.</p><p><img src="http://cdn.atechnologyjobisnoexcuse.com/files/2013/03/rss3.png" alt="RSS Icon" /> <a href="http://atechnologyjobisnoexcuse.com/feed/dng">Subscribe via RSS</a> or <a href="itpc://atechnologyjobisnoexcuse.com/feed/dng">iTunes</a>.</p><p></p><div id="attachment_15675" class="wp-caption alignright" style="width: 342px"><a href="http://nnhsphysics.wikispaces.com/Nuclear+Submarines+are+amazing."><img src="http://cdn.atechnologyjobisnoexcuse.com/files/2013/05/sub-underwater-yellow.png" alt="Image courtesy of J David Rogers." width="332" class="size-thumbnail wp-image-15675" /></a><p class="wp-caption-text">Image courtesy of &#8220;Nuclear Submarines are amazing.&#8221;</p></div><ul><li><a href="http://www.zdnet.com/anonymous-msft-developer-admits-linux-is-faster-than-windows-7000015236/">Anonymous MSFT developer admits Linux is faster than Windows</a><ul><li>&#8220;Oh god, the NTFS code is a purple opium-fueled Victorian horror novel that uses global recursive locks and SEH [Structured Exception Handling] for flow control.&#8221;</li></ul></li><li>New segment: How Google makes Gunnar sad this week<ul><li>With Hangouts, Singhal says Google had to make the difficult decision to <a href="http://www.theverge.com/2013/5/15/4318830/inside-hangouts-googles-big-fix-for-its-messaging-mess">drop</a> the very &#8220;open&#8221; XMPP standard that it helped pioneer</li></ul></li><li>Google Reader deathwatch<ul><li>Tiny Tiny RSS now as two click OpenShift <a href="https://www.openshift.com/quickstarts/tiny-tiny-rss">quickstart</a></li><li><a href="https://www.commafeed.com/">CommaFeed</a> runs on OpenShift using JBoss Enterprise Application Platform 6</li></ul></li><li>If you&#8217;re a die hard Redskins fan like Gunnar: <a href="http://events.carahsoft.com/event-detail/2447/spkrbox/">Saving Money with Open Source Solutions</a> featuring Washington Redskins quarterback Kirk Cousins, sponsored by <a href="https://twitter.com/RedHatGov">Red Hat</a> and <a href="http://www.carahsoft.com/redhat">Carahsoft</a></li><li>Dave on Richard Morrell&#8217;s most awesome <a href="http://cloudevangelist.org/">Cloud Evangelist</a> podcast this week <a href="http://cloudevangelist.org/2013/05/22/podcast-david-egts-talks-secure-openshift/">talking OpenShift and DISA STAX</a></li><li>Dave&#8217;s Miltary Embedded Systems article <a href="http://mil-embedded.com/articles/deploy-faster-open-source-platform-as-a-service/">Deploy warfighter applications faster with open source Platform-as-a-Service</a> discussing fast certification and accreditation times with OpenShift</li><li>Autonomic Resources new OpenShift PaaS hosting offering <a href="http://www.autonomicresources.com/index.php/services/paas">ARC-P</a></li><li><a href="http://ghlink.in/s">LMCO releases DDF, part of the DIB, under the LGPL</a></li><li><a href="http://www.nytimes.com/2009/07/20/technology/20cell.html">Galapagos Syndrome</a></li><li><a href="http://conorneill.com/2012/11/30/amazon-staff-meetings-no-powerpoint/">Amazon Staff Meetings: “No Powerpoint”</a></li></ul><p><strong>Cutting Room Floor</strong></p><ul><li><a href="http://arstechnica.com/business/2013/05/live-map-of-recent-changes-to-wikipedia-articles-is-mesmerizing/">Live map of recent changes to Wikipedia articles is mesmerizing</a></li><li><a href="http://fedscoop.com/gen-alexander-cloud-key-to-network-security/">NSA: We open sourced our cloud for security</a></li><li><a href="http://www.littlegraybooks.com/what.html">Little Gray Book Lectures</a></li><li><a href="http://mjg59.dreamwidth.org/24818.html">A short introduction to TPMs</a> by Matthew Garrett</li><li>Dial 911 and your conference bridge using the right connections with <a href="https://code.google.com/p/csipsimple/wiki/UsingFilters">CSipSimple filters</a></li><li><a href="https://en.wikipedia.org/wiki/Parkinson%27s_law_of_triviality">Parkinson&#8217;s Law of Triviality</a> aka bikeshedding</li></ul><p><strong>We Give Thanks</strong></p><ul><li><a href="https://twitter.com/jwildeboer">Jan Wildeboer</a> for the Google XMPP <a href="https://twitter.com/jwildeboer/status/334969769222619136">tip</a></li><li><a href="https://twitter.com/korydwenn">Gaël Chamoulaud</a> for pointing us to <a href="https://twitter.com/maxandersen">Max Rydahl Andersen</a>&#8216;s CommaFeed <a href="https://twitter.com/maxandersen/status/334812916811431936">post</a></li><li><a href="http://blogs.dlt.com/author/matt-micene/">Matt Micene</a> for <a href="http://atechnologyjobisnoexcuse.com/2013/05/10-go-ugly-early/">warning</a> us not to fall victim to Parkinson&#8217;s Law</li></ul> ]]></content:encoded> <wfw:commentRss>http://atechnologyjobisnoexcuse.com/2013/05/11-my-paas-lives-in-a-yellow-submarine/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/us/</creativeCommons:license> <enclosure url="http://atechnologyjobisnoexcuse.com/podpress_trac/feed/15673/0/david-and-gunnar-ep11.mp3" length="18443411" type="audio/mpeg" /> <itunes:duration>0:38:25</itunes:duration> <itunes:subtitle>This week, Dave and Gunnar talk about: Eldritch horrors of the Windows NT kernel, How Google Broke Gunnar’s Heart (again), Shameless self-promotion from Dave, Shawn vs. OpenShift: do we have an opening bid?, LMCO DCGS DIB DDF brought to you by the l[...]</itunes:subtitle> <itunes:summary>This week, Dave and Gunnar talk about: Eldritch horrors of the Windows NT kernel, How Google Broke Gunnar’s Heart (again), Shameless self-promotion from Dave, Shawn vs. OpenShift: do we have an opening bid?, LMCO DCGS DIB DDF brought to you by the letters L, G, P, and L, a new PaaS provider, and Week 1 of the Meeting Jihad.</itunes:summary> <itunes:author>Gunnar Hellekson</itunes:author> <itunes:explicit>no</itunes:explicit> <itunes:block>no</itunes:block> </item> <item><title>Bane, 1936.</title><link>http://atechnologyjobisnoexcuse.com/2013/05/bane-1936/</link> <comments>http://atechnologyjobisnoexcuse.com/2013/05/bane-1936/#comments</comments> <pubDate>Mon, 20 May 2013 18:01:08 +0000</pubDate> <dc:creator>gunnar</dc:creator> <category><![CDATA[...from Tumblr]]></category> <category><![CDATA[What I'm Looking At]]></category> <category><![CDATA[gas mask]]></category> <category><![CDATA[shorpy]]></category> <category><![CDATA[silicosis]]></category><guid isPermaLink="false">http://atechnologyjobisnoexcuse.com/?guid=d18bc8eeb90ffd8b5ab6eb0cbd919544</guid> <description><![CDATA[[via Shorpy.]]]></description> <content:encoded><![CDATA[<p><img src="http://25.media.tumblr.com/d4c152ade09e221127c6ca113f6aecbe/tumblr_mn3ytt20eG1roloeko1_1280.jpg" alt="Bane, 1936."></p><p>[via <a href="http://www.shorpy.com/node/15321">Shorpy</a>.]</p> ]]></content:encoded> <wfw:commentRss>http://atechnologyjobisnoexcuse.com/2013/05/bane-1936/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/us/</creativeCommons:license> <enclosure url="//?#" length="" type="" /> </item> <item><title>Lucienne Boyer &#8211; Parlez-Moi D&#8217;amour</title><link>http://atechnologyjobisnoexcuse.com/2013/05/lucienne-boyer-parlez-moi-damour/</link> <comments>http://atechnologyjobisnoexcuse.com/2013/05/lucienne-boyer-parlez-moi-damour/#comments</comments> <pubDate>Sat, 18 May 2013 22:01:56 +0000</pubDate> <dc:creator>gunnar</dc:creator> <category><![CDATA[...from Tumblr]]></category> <category><![CDATA[What I'm Looking At]]></category> <category><![CDATA[1930]]></category><guid isPermaLink="false">http://atechnologyjobisnoexcuse.com/?guid=0038a238e9ada10faae3bc5572d4a385</guid> <description><![CDATA[Parlez-moi d’amour Lucienne Boyer.]]></description> <content:encoded><![CDATA[<embed type="application/x-shockwave-flash" src="http://assets.tumblr.com/swf/audio_player.swf?audio_file=http%3A%2F%2Fwww.tumblr.com%2Faudio_file%2Fatechnologyjobisnoexcuse%2F50761330885%2Ftumblr_mi8bhbHSCa1reqngf&color=FFFFFF" height="27" width="207" quality="best" wmode="opaque"></embed><p>Parlez-moi d’amour</p><p>Lucienne Boyer.</p> ]]></content:encoded> <wfw:commentRss>http://atechnologyjobisnoexcuse.com/2013/05/lucienne-boyer-parlez-moi-damour/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/us/</creativeCommons:license> <enclosure url="//?#" length="" type="" /> </item> <item><title>Ernie Kreilling</title><link>http://atechnologyjobisnoexcuse.com/2013/05/ernie-kreilling/</link> <comments>http://atechnologyjobisnoexcuse.com/2013/05/ernie-kreilling/#comments</comments> <pubDate>Sat, 18 May 2013 18:01:22 +0000</pubDate> <dc:creator>gunnar</dc:creator> <category><![CDATA[...from Tumblr]]></category> <category><![CDATA[What I'm Looking At]]></category> <category><![CDATA[1947]]></category> <category><![CDATA[foxhole]]></category> <category><![CDATA[kreilling]]></category> <category><![CDATA[life]]></category> <category><![CDATA[soldier]]></category> <category><![CDATA[wwii]]></category><guid isPermaLink="false">http://atechnologyjobisnoexcuse.com/?guid=53ba38730231ed6618b98973135fd4a2</guid> <description><![CDATA[Ex-Sgt. Ernie Kreiling gets helmet put on his head by his laughing wife in the foxhole where he first heard an enemy shell during their vacation tour of battlefields were he fought during WWII in North country.” April, 1947. [via LIFE via lostsplendor.]]]></description> <content:encoded><![CDATA[<p><a href="http://images.google.com/hosted/life/1cc52a1316b02e4f.html"><img src="http://25.media.tumblr.com/cb428064e323918b9ad2ea2ea21443bc/tumblr_ml4j0xSPwV1qbwvhpo1_500.jpg" alt="Ernie Kreilling"></a></p><blockquote><p> Ex-Sgt. Ernie Kreiling gets helmet put on his head by his laughing wife in the foxhole where he first heard an enemy shell during their vacation tour of battlefields were he fought during WWII in North country.” April, 1947.</p></blockquote><p>[via <a href="http://images.google.com/hosted/life/1cc52a1316b02e4f.html">LIFE</a> via <a class="tumblr_blog" href="http://lostsplendor.tumblr.com/post/47758276638">lostsplendor</a>.]</p> ]]></content:encoded> <wfw:commentRss>http://atechnologyjobisnoexcuse.com/2013/05/ernie-kreilling/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/us/</creativeCommons:license> <enclosure url="//?#" length="" type="" /> </item> <item><title>Williamsburg Bridge, 1947.</title><link>http://atechnologyjobisnoexcuse.com/2013/05/williamsburg-bridge-1947/</link> <comments>http://atechnologyjobisnoexcuse.com/2013/05/williamsburg-bridge-1947/#comments</comments> <pubDate>Fri, 17 May 2013 22:01:42 +0000</pubDate> <dc:creator>gunnar</dc:creator> <category><![CDATA[...from Tumblr]]></category> <category><![CDATA[What I'm Looking At]]></category> <category><![CDATA[1947]]></category> <category><![CDATA[bridge]]></category> <category><![CDATA[brooklyn]]></category> <category><![CDATA[williamsburg]]></category><guid isPermaLink="false">http://atechnologyjobisnoexcuse.com/?guid=9784be423037a69fe9448417ac9f7967</guid> <description><![CDATA[Williamsburg Bridge, 1947. Harold Roth. [via luzfosca.]]]></description> <content:encoded><![CDATA[<p><img src="http://25.media.tumblr.com/ab5bd15afa8895d10c707a5921cdeb07/tumblr_mm8okgwTJp1qzq84io1_1280.jpg" alt="Williamsburg Bridge, 1947."></p><p><a href="http://www.faciepopuli.com/post/17559113952/harold-roth-williamsburg-bridge-1947"><em>Williamsburg Bridge, 1947</em></a>. <a href="http://www.faciepopuli.com/tagged/Harold-Roth">Harold Roth</a>.</p><p>[via <a class="tumblr_blog" href="http://www.faciepopuli.com/post/49533102700/harold-roth-williamsburg-bridge-1947">luzfosca</a>.]</p> ]]></content:encoded> <wfw:commentRss>http://atechnologyjobisnoexcuse.com/2013/05/williamsburg-bridge-1947/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/us/</creativeCommons:license> <enclosure url="//?#" length="" type="" /> </item> </channel> </rss>