<?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/"
	>

<channel>
	<title>flickerbulb &#187; Programming</title>
	<atom:link href="http://flickerbulb.com/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://flickerbulb.com</link>
	<description>soho zombie, slave to the man, code monkey, lover &#38; hater, and, one downright good looking bastard.</description>
	<lastBuildDate>Tue, 27 Apr 2010 03:09:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>post netnewswire item to delicious bookmarks applescript</title>
		<link>http://flickerbulb.com/2008/12/05/post-netnewswire-item-to-delicious-bookmarks-applescript/</link>
		<comments>http://flickerbulb.com/2008/12/05/post-netnewswire-item-to-delicious-bookmarks-applescript/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 13:00:56 +0000</pubDate>
		<dc:creator>chris corwin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[applescript]]></category>
		<category><![CDATA[netnewswire]]></category>
		<category><![CDATA[quicksilver]]></category>

		<guid isPermaLink="false">http://flickerbulb.com/?p=1256</guid>
		<description><![CDATA[for blog reading i use the amazing (and free!) software from newsgator called NetNewsWire. i discovered an applescript for posting post currently being read to my delicious bookmarks. this was pretty good as it was, but, but i wanted a bit more, so i modified it to prompt for additional tags. i have also added [...]]]></description>
			<content:encoded><![CDATA[<p>for blog reading i use the amazing (and free!) software from <a href="http://www.newsgator.com/">newsgator</a> called <a href="http://www.newsgator.com/Individuals/NetNewsWire/">NetNewsWire</a>.</p>
<p>i discovered an <a href="http://futuremacblog.blogspot.com/2008/03/improved-netnewswire-to-delicious.html">applescript for posting post currently being read</a> to my <a href="http://delicious.com/BerberCarpet/">delicious bookmarks</a>.</p>
<p>this was pretty good as it was, but, but i wanted a bit more, so i modified it to prompt for additional tags.</p>
<p>i have also added support for growl notifications, if growl is running.</p>
<p>when you run the script for the first time, it prompts you enter your username, password, and default tags.</p>
<p>you only need to enter that stuff once: after that it just runs.</p>
<p>additionally, i set up a <a href="http://docs.blacktree.com/quicksilver/what_is_quicksilver">quickilver</a> trigger to run when i push &#8220;control + d&#8221;, scoped only to NNW.</p>
<p>so, now every time i wish to save whatever it is i am reading in NNW, i just hit &#8220;control + d&#8221; and it prompts for tags, then runs in the background.</p>
<p>its <strong>fast</strong> and works great.</p>
<p>to use it yourself, copy the script below and open the Script Editor (included in mac os x).</p>
<p>paste it in, and save it to:</p>
<p><code>~/Library/Scripts/Applications/NetNewsWire/to read in delicious.scpt</code></p>

<div class="wp_syntax"><div class="code"><pre class="applescript" style="font-family:monospace;">&nbsp;
<span style="color: #b1b100;">property</span> usernamePasswordString : <span style="color: #ff0000;">&quot;&quot;</span>
<span style="color: #b1b100;">property</span> tagsString : <span style="color: #ff0000;">&quot;&quot;</span>
&nbsp;
<span style="color: #b1b100;">on</span> <span style="color: #000066;">run</span>
	checkUsernameAndPassword<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
	postToDelicious<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #b1b100;">end</span> <span style="color: #000066;">run</span>
&nbsp;
<span style="color: #b1b100;">on</span> postToDelicious<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
	<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;NetNewsWire&quot;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #000066;">exists</span> selectedHeadline <span style="color: #b1b100;">then</span>
&nbsp;
			<span style="color: #b1b100;">set</span> theResults <span style="color: #b1b100;">to</span> display dialog <span style="color: #ff0000;">&quot;Enter tags for this item&quot;</span> default answer <span style="color: #ff0000;">&quot;&quot;</span>
			<span style="color: #b1b100;">if</span> button returned <span style="color: #b1b100;">of</span> theResults <span style="color: #b1b100;">is</span> <span style="color: #ff0000;">&quot;OK&quot;</span> <span style="color: #b1b100;">then</span>
				<span style="color: #b1b100;">set</span> myTags <span style="color: #b1b100;">to</span> text returned <span style="color: #b1b100;">of</span> theResults
			<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
&nbsp;
			<span style="color: #b1b100;">set</span> thisHeadline <span style="color: #b1b100;">to</span> <span style="color: #66cc66;">&#40;</span>title <span style="color: #b1b100;">of</span> selectedHeadline<span style="color: #66cc66;">&#41;</span>
&nbsp;
			<span style="color: #b1b100;">set</span> u <span style="color: #b1b100;">to</span> <span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span>?&amp;url=&quot;</span> <span style="color: #66cc66;">&amp;</span> <span style="color: #66cc66;">&#40;</span>URL <span style="color: #b1b100;">of</span> selectedHeadline<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&amp;</span> Â¬
				<span style="color: #ff0000;">&quot;&amp;description=&quot;</span> <span style="color: #66cc66;">&amp;</span> <span style="color: #66cc66;">&#40;</span>title <span style="color: #b1b100;">of</span> selectedHeadline<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&amp;</span> Â¬
				<span style="color: #ff0000;">&quot;&amp;tags=&quot;</span> <span style="color: #66cc66;">&amp;</span> tagsString <span style="color: #66cc66;">&amp;</span> <span style="color: #ff0000;">&quot; &quot;</span> <span style="color: #66cc66;">&amp;</span> myTags <span style="color: #66cc66;">&amp;</span> <span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span>
			<span style="color: #b1b100;">set</span> curlStatement <span style="color: #b1b100;">to</span> <span style="color: #ff0000;">&quot;/usr/bin/curl -u &quot;</span> <span style="color: #66cc66;">&amp;</span> usernamePasswordString <span style="color: #66cc66;">&amp;</span> <span style="color: #ff0000;">&quot; -d &quot;</span> <span style="color: #66cc66;">&amp;</span> u <span style="color: #66cc66;">&amp;</span> <span style="color: #ff0000;">&quot; https://api.del.icio.us/v1/posts/add&quot;</span>
			<span style="color: #b1b100;">set</span> retValue <span style="color: #b1b100;">to</span> do shell <span style="color: #b1b100;">script</span> curlStatement
			<span style="color: #b1b100;">if</span> retValue <span style="color: #000066;">contains</span> <span style="color: #ff0000;">&quot;wrong&quot;</span> <span style="color: #b1b100;">then</span>
				display dialog <span style="color: #ff0000;">&quot;Headline did not post to Delicious. Something went wrong.&quot;</span>
			<span style="color: #b1b100;">else</span>
&nbsp;
&nbsp;
&nbsp;
				<span style="color: #b1b100;">set</span> <span style="color: #000000; font-weight: bold;">the</span> enabledNotificationsList <span style="color: #b1b100;">to</span> Â¬
					<span style="color: #66cc66;">&#123;</span><span style="color: #ff0000;">&quot;Item Posted to Delicious&quot;</span><span style="color: #66cc66;">&#125;</span>
&nbsp;
				<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;System Events&quot;</span>
					<span style="color: #b1b100;">set</span> growlRunning <span style="color: #b1b100;">to</span> Â¬
						<span style="color: #66cc66;">&#40;</span><span style="color: #000066;">count</span> <span style="color: #b1b100;">of</span> <span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">every</span> process <span style="color: #000000; font-weight: bold;">whose</span> name <span style="color: #b1b100;">is</span> <span style="color: #ff0000;">&quot;GrowlHelperApp&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> &gt; <span style="color: #cc66cc;">0</span>
				<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
&nbsp;
				<span style="color: #b1b100;">if</span> growlRunning <span style="color: #b1b100;">then</span>
					<span style="color: #b1b100;">tell</span> application <span style="color: #ff0000;">&quot;GrowlHelperApp&quot;</span>
&nbsp;
						register <span style="color: #000066;">as</span> application Â¬
							<span style="color: #ff0000;">&quot;scriptNetNewsWire&quot;</span> all notifications enabledNotificationsList Â¬
							default notifications enabledNotificationsList Â¬
							icon <span style="color: #b1b100;">of</span> application <span style="color: #ff0000;">&quot;NetNewsWire&quot;</span>
&nbsp;
						notify <span style="color: #b1b100;">with</span> name Â¬
							<span style="color: #ff0000;">&quot;Item Posted to Delicious&quot;</span> title thisHeadline description <span style="color: #ff0000;">&quot;Posted to Delicious with tags: <span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span> <span style="color: #66cc66;">&amp;</span> myTags <span style="color: #66cc66;">&amp;</span> Â¬
							<span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span> application name <span style="color: #ff0000;">&quot;scriptNetNewsWire&quot;</span> icon <span style="color: #b1b100;">of</span> application <span style="color: #ff0000;">&quot;NetNewsWire&quot;</span>
					<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
				<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
&nbsp;
			<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
		<span style="color: #b1b100;">else</span>
			display dialog <span style="color: #ff0000;">&quot;Please select a headline to post to del.icio.us&quot;</span>
		<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">if</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">tell</span>
<span style="color: #b1b100;">end</span> postToDelicious
&nbsp;
<span style="color: #b1b100;">on</span> checkUsernameAndPassword<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
	<span style="color: #808080; font-style: italic;">-- Check to see if the file where our username and password are stored exists</span>
	<span style="color: #b1b100;">try</span>
		do shell <span style="color: #b1b100;">script</span> <span style="color: #ff0000;">&quot;cd &quot;</span> <span style="color: #66cc66;">&amp;</span> POSIX path <span style="color: #b1b100;">of</span> <span style="color: #66cc66;">&#40;</span>path <span style="color: #b1b100;">to</span> preferences <span style="color: #000066;">as</span> text<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&amp;</span> <span style="color: #ff0000;">&quot;; ls | grep com.flickerbulb.toread.txt&quot;</span>
		<span style="color: #b1b100;">try</span>
			<span style="color: #b1b100;">set</span> prefFile <span style="color: #b1b100;">to</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span>path <span style="color: #b1b100;">to</span> preferences <span style="color: #000066;">as</span> text<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&amp;</span> <span style="color: #ff0000;">&quot;com.flickerbulb.toread.txt&quot;</span><span style="color: #66cc66;">&#41;</span>
			<span style="color: #000066;">open</span> for access file prefFile <span style="color: #b1b100;">with</span> write permission
			<span style="color: #b1b100;">set</span> prefs <span style="color: #b1b100;">to</span> read file prefFile using delimiter <span style="color: #66cc66;">&#123;</span><span style="color: #b1b100;">return</span><span style="color: #66cc66;">&#125;</span>
			<span style="color: #000066;">close</span> access file prefFile
			<span style="color: #b1b100;">set</span> usernamePasswordString <span style="color: #b1b100;">to</span> item <span style="color: #cc66cc;">1</span> <span style="color: #b1b100;">of</span> prefs
			<span style="color: #b1b100;">set</span> tagsString <span style="color: #b1b100;">to</span> item <span style="color: #cc66cc;">2</span> <span style="color: #b1b100;">of</span> prefs
		<span style="color: #b1b100;">on</span> <span style="color: #b1b100;">error</span> e
			<span style="color: #000066;">close</span> access file prefFile
		<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">try</span>
	<span style="color: #b1b100;">on</span> <span style="color: #b1b100;">error</span>
		<span style="color: #b1b100;">set</span> username <span style="color: #b1b100;">to</span> text returned <span style="color: #b1b100;">of</span> <span style="color: #66cc66;">&#40;</span>display dialog <span style="color: #ff0000;">&quot;Please enter your Delicious username&quot;</span> default answer <span style="color: #ff0000;">&quot;username&quot;</span><span style="color: #66cc66;">&#41;</span>
		<span style="color: #b1b100;">set</span> pass <span style="color: #b1b100;">to</span> text returned <span style="color: #b1b100;">of</span> <span style="color: #66cc66;">&#40;</span>display dialog <span style="color: #ff0000;">&quot;Please enter your Delicious password&quot;</span> default answer <span style="color: #ff0000;">&quot;password&quot;</span><span style="color: #66cc66;">&#41;</span>
		<span style="color: #b1b100;">set</span> tags <span style="color: #b1b100;">to</span> text returned <span style="color: #b1b100;">of</span> <span style="color: #66cc66;">&#40;</span>display dialog <span style="color: #ff0000;">&quot;Please enter any desired default tags&quot;</span> default answer <span style="color: #ff0000;">&quot;toread &quot;</span><span style="color: #66cc66;">&#41;</span>
		<span style="color: #b1b100;">try</span>
			<span style="color: #b1b100;">set</span> prefFile <span style="color: #b1b100;">to</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span>path <span style="color: #b1b100;">to</span> preferences <span style="color: #000066;">as</span> text<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&amp;</span> <span style="color: #ff0000;">&quot;com.flickerbulb.toread.txt&quot;</span><span style="color: #66cc66;">&#41;</span>
			<span style="color: #000066;">open</span> for access file prefFile <span style="color: #b1b100;">with</span> write permission
			<span style="color: #b1b100;">set</span> eof <span style="color: #b1b100;">of</span> file prefFile <span style="color: #b1b100;">to</span> <span style="color: #cc66cc;">0</span>
			write username <span style="color: #66cc66;">&amp;</span> <span style="color: #ff0000;">&quot;:&quot;</span> <span style="color: #66cc66;">&amp;</span> pass <span style="color: #66cc66;">&amp;</span> <span style="color: #66cc66;">&#123;</span><span style="color: #b1b100;">return</span><span style="color: #66cc66;">&#125;</span> <span style="color: #66cc66;">&amp;</span> tags <span style="color: #b1b100;">to</span> file prefFile
			<span style="color: #000066;">close</span> access file prefFile
		<span style="color: #b1b100;">on</span> <span style="color: #b1b100;">error</span> e
			<span style="color: #000066;">close</span> access file prefFile
		<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">try</span>
		<span style="color: #b1b100;">set</span> usernamePasswordString <span style="color: #b1b100;">to</span> username <span style="color: #66cc66;">&amp;</span> <span style="color: #ff0000;">&quot;:&quot;</span> <span style="color: #66cc66;">&amp;</span> pass
		<span style="color: #b1b100;">set</span> tagsString <span style="color: #b1b100;">to</span> tags <span style="color: #66cc66;">&amp;</span> <span style="color: #ff0000;">&quot; &quot;</span>
	<span style="color: #b1b100;">end</span> <span style="color: #b1b100;">try</span>
<span style="color: #b1b100;">end</span> checkUsernameAndPassword</pre></div></div>

<h3>Possibly Related</h3>
<ul class="related_post">
<li>March 2, 2009 &#8212; <a href="http://flickerbulb.com/2009/03/02/object-oriented-css-grids-on-github/" title="Object Oriented CSS, Grids on Github">Object Oriented CSS, Grids on Github</a></li>
<li>October 1, 2008 &#8212; <a href="http://flickerbulb.com/2008/10/01/tyler-durden%e2%80%99s-8-rules-of-innovation/" title="Tyler Durdenâ€™s 8 Rules of Innovation ">Tyler Durdenâ€™s 8 Rules of Innovation </a></li>
<li>September 27, 2007 &#8212; <a href="http://flickerbulb.com/2007/09/27/lots-of-unread-items/" title="lots of unread items">lots of unread items</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://flickerbulb.com/2008/12/05/post-netnewswire-item-to-delicious-bookmarks-applescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tyler Durdenâ€™s 8 Rules of Innovation</title>
		<link>http://flickerbulb.com/2008/10/01/tyler-durden%e2%80%99s-8-rules-of-innovation/</link>
		<comments>http://flickerbulb.com/2008/10/01/tyler-durden%e2%80%99s-8-rules-of-innovation/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 14:49:57 +0000</pubDate>
		<dc:creator>chris corwin</dc:creator>
				<category><![CDATA[ADHD]]></category>
		<category><![CDATA[Emergence]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Taoism]]></category>
		<category><![CDATA[fightclub]]></category>
		<category><![CDATA[GTD]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://flickerbulb.com/?p=1183</guid>
		<description><![CDATA[â€œItâ€™s only after weâ€™ve lost everything that weâ€™re free to do anything.â€ Oh, yeahâ€¦ donâ€™t be afraid to make big mistakes. More importantly, donâ€™t worry about everything going according to plan. In fact, if everythingâ€™s going according to plan, thereâ€™s a good chance nothing remarkable is getting done. They say life is what happens while [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><strong>â€œItâ€™s only after weâ€™ve lost everything that weâ€™re free to do anything.â€</strong></p>
<p>Oh, yeahâ€¦ donâ€™t be afraid to make big mistakes. More importantly, donâ€™t worry about everything going according to plan. In fact, if everythingâ€™s going according to plan, thereâ€™s a good chance nothing remarkable is getting done.</p>
<p>They say life is what happens while youâ€™re making other plans. Innovation is what happens when you recognize when to change the plan and perhaps the entire game. Maybe your initial plan falls apart, or maybe you simply need to throw the current plan away.</p>
<p>Donâ€™t let the plan restrict the freedom to have a game-changing idea, and act on it, at any time. Losing everything may be the best thing that ever happens to you.</p></blockquote>
<p><a href="http://lateralaction.com/articles/tyler-durden-innovation/">Tyler Durdenâ€™s 8 Rules of Innovation | Lateral Action</a><br />
<h3>Possibly Related</h3>
<ul class="related_post">
<li>December 5, 2008 &#8212; <a href="http://flickerbulb.com/2008/12/05/post-netnewswire-item-to-delicious-bookmarks-applescript/" title="post netnewswire item to delicious bookmarks applescript">post netnewswire item to delicious bookmarks applescript</a></li>
<li>November 26, 2008 &#8212; <a href="http://flickerbulb.com/2008/11/26/i-disagree-with-this-so-much/" title="i disagree with this so much">i disagree with this so much</a></li>
<li>November 21, 2008 &#8212; <a href="http://flickerbulb.com/2008/11/21/vyvanse/" title="vyvanse">vyvanse</a></li>
<li>March 10, 2008 &#8212; <a href="http://flickerbulb.com/2008/03/10/so-i-married-an-adder-dinners-ready-oh-wait/" title="So I Married an ADDer: Dinner&#8217;s ready! Oh wait&#8230;">So I Married an ADDer: Dinner&#8217;s ready! Oh wait&#8230;</a></li>
<li>September 25, 2007 &#8212; <a href="http://flickerbulb.com/2007/09/25/two-kinds-of-add-hyperfocus/" title="Two Kinds of ADD Hyperfocus">Two Kinds of ADD Hyperfocus</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://flickerbulb.com/2008/10/01/tyler-durden%e2%80%99s-8-rules-of-innovation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>â€œCould You Explain Programming Pleaseâ€</title>
		<link>http://flickerbulb.com/2007/12/20/%e2%80%9ccould-you-explain-programming-please%e2%80%9d/</link>
		<comments>http://flickerbulb.com/2007/12/20/%e2%80%9ccould-you-explain-programming-please%e2%80%9d/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 17:54:11 +0000</pubDate>
		<dc:creator>chris corwin</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://flickerbulb.com/2007/12/20/%e2%80%9ccould-you-explain-programming-please%e2%80%9d/</guid>
		<description><![CDATA[Being a programmer and the only computer literate person in my family, I get tech support calls from my family all the time. I got a phonecall from a brother-in-law today: Him: Hey, you&#8217;re good with computers right? Me: Yes. Him: And you know how to program computers? Me: Yes, thats my job actually. Him: [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Being a programmer and the only computer literate person in my family, I get tech support calls from my family all the time. I got a phonecall from a brother-in-law today:</p>
<p>Him: Hey, you&#8217;re good with computers right?</p>
<p>Me: Yes.</p>
<p>Him: And you know how to program computers?</p>
<p>Me: Yes, thats my job actually.</p>
<p>Him: Could you explain programming please?</p>
<p>Me: I&#8217;m sorry, what do you mean?</p>
<p>Him: I want to make a game like Halo, but I don&#8217;t know how to start. Could you explain what I need to do?</p>
<p>Me: You should probably go to the library and get a book.</p>
<p>Him: Can you just tell me what I need to do?</p>
<p>Me: Wait a minute. Are you asking me to explain how to program computers?</p>
<p>Him: Yeah.</p>
<p>Me: Over the phone?</p>
<p>Him: Yeah.</p>
<p>My brother in law apparently made several unsuccessful attempt to â€œlearn programmingâ€ by opening up exes in Notepad. He created a text file with the words â€œMorph the screen into something coolâ€ and couldn&#8217;t figure out how to run it, even had the balls to ask me â€œhow do I install my program? Do I just put a shortcut on the desttopâ€.</p>
<p>My dad, a programmer, lent him an unfortunately titled book called â€œTeach Yourself Java in 24 hoursâ€. He immediately flipped to the back of the book and reading sections on server and Swing development, and was very excited to see that he could write his own server after just one day.</p>
<p>In the end, I was unable to teach my brother in law how to make his own Halo over the phone, and he decided that I wasn&#8217;t a very good programmer.</p></blockquote>
<p><a href="http://forums.thedailywtf.com/forums/thread/139826.aspx">The Daily WTF &#8211; â€œCould You Explain Programming Pleaseâ€</a><br />
<h3>Nothing seems related, these are random:</h3>
<ul class="related_post"></ul>
]]></content:encoded>
			<wfw:commentRss>http://flickerbulb.com/2007/12/20/%e2%80%9ccould-you-explain-programming-please%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>holy cow is this me</title>
		<link>http://flickerbulb.com/2007/12/19/holy-cow-is-this-me/</link>
		<comments>http://flickerbulb.com/2007/12/19/holy-cow-is-this-me/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 17:02:11 +0000</pubDate>
		<dc:creator>chris corwin</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://flickerbulb.com/2007/12/19/holy-cow-is-this-me/</guid>
		<description><![CDATA[Once you get into flow it&#8217;s not too hard to keep going. Many of my days go like this: (1) get into work (2) check email, read the web, etc. (3) decide that I might as well have lunch before getting to work (4) get back from lunch (5) check email, read the web, etc. [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Once you get into flow it&#8217;s not too hard to keep going. Many of my days go like this: (1) get into work (2) check email, read the web, etc. (3) decide that I might as well have lunch before getting to work (4) get back from lunch (5) check email, read the web, etc. (6) finally decide that I&#8217;ve got to get started (7) check email, read the web, etc. (8) decide again that I really have to get started (9) launch the damn editor and (10) write code nonstop until I don&#8217;t realize that it&#8217;s already 7:30 pm.</p></blockquote>
<p><a href="http://www.joelonsoftware.com/articles/fog0000000339.html">Fire And Motion &#8211; Joel on Software</a><br />
<h3>Nothing seems related, these are random:</h3>
<ul class="related_post"></ul>
]]></content:encoded>
			<wfw:commentRss>http://flickerbulb.com/2007/12/19/holy-cow-is-this-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>embedding quicktime movies</title>
		<link>http://flickerbulb.com/2007/12/10/embedding-quicktime-movies/</link>
		<comments>http://flickerbulb.com/2007/12/10/embedding-quicktime-movies/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 20:02:37 +0000</pubDate>
		<dc:creator>chris corwin</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://flickerbulb.com/2007/12/10/embedding-quicktime-movies/</guid>
		<description><![CDATA[the once-and-for-all best way to put quicktime in an HTML document: &#60;script src=â€œ/_Assets/scripts/AC_QuickTime.jsâ€ language=â€œJavaScriptâ€ type=â€œtext/javascriptâ€&#62;&#60;/script&#62; &#60;script language=â€œJavaScriptâ€ type=â€œtext/javascriptâ€&#62; QT_WriteOBJECT_XHTML('/userfiles/Media/IMTA_MTA.mov', '290', '208', '', 'autoplay', 'false', 'emb#bgcolor', 'silver', 'align', 'middle'); &#60;/script&#62; Nothing seems related, these are random:]]></description>
			<content:encoded><![CDATA[<p>the once-and-for-all best way to put quicktime in an HTML document:</p>
<pre><code>&lt;script src=â€œ/_Assets/scripts/AC_QuickTime.jsâ€ language=â€œJavaScriptâ€ type=â€œtext/javascriptâ€&gt;&lt;/script&gt;

&lt;script language=â€œJavaScriptâ€ type=â€œtext/javascriptâ€&gt;
  QT_WriteOBJECT_XHTML('/userfiles/Media/IMTA_MTA.mov', '290', '208', '',
    'autoplay', 'false',
    'emb#bgcolor', 'silver',
    'align', 'middle');
&lt;/script&gt;</code></pre>
<h3>Nothing seems related, these are random:</h3>
<ul class="related_post"></ul>
]]></content:encoded>
			<wfw:commentRss>http://flickerbulb.com/2007/12/10/embedding-quicktime-movies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

