<?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>Izikistan</title>
	<atom:link href="http://isaac.wedin.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://isaac.wedin.org</link>
	<description>Isaac Wedin&#039;s blog</description>
	<lastBuildDate>Tue, 27 Mar 2012 00:40:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Tree drain</title>
		<link>http://isaac.wedin.org/2012/03/26/tree-drain/</link>
		<comments>http://isaac.wedin.org/2012/03/26/tree-drain/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 00:40:06 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/?p=1314</guid>
		<description><![CDATA[Oliver and I hang out under a huge old oak tree in Rock Creek Park to watch the Metro trains and eat daffodils. Last time we were there we noticed this dripping pipe hanging out of the tree around 15 &#8230; <a href="http://isaac.wedin.org/2012/03/26/tree-drain/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/izik/7016081855/" title="Tree drain"><img src="http://farm8.staticflickr.com/7090/7016081855_6d59a4cb15_m.jpg" alt="Tree drain" /></a><br />
</p>
<p>Oliver and I hang out under a huge old oak tree in Rock Creek Park to watch the Metro trains and eat daffodils. Last time we were there we noticed this dripping pipe hanging out of the tree around 15 feet up. It&#8217;s near a dead part of the tree &#8211; I guess that&#8217;s got something to do with it?</p>
]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2012/03/26/tree-drain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inset box shadow test</title>
		<link>http://isaac.wedin.org/2012/02/11/inset-box-shadow-test/</link>
		<comments>http://isaac.wedin.org/2012/02/11/inset-box-shadow-test/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 01:46:24 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/?p=1307</guid>
		<description><![CDATA[Just testing out this example at bavotasan.com. It appears to work well, as long as you don&#8217;t mind linking your inset-shadow images. I&#8217;d imaging using a div or span wrapper would work fine too.]]></description>
			<content:encoded><![CDATA[<p><a class="inset-shadow" href="http://www.flickr.com/photos/izik/2353229290/"><img title="The Coho in Victoria harbor" src="http://farm3.staticflickr.com/2047/2353229290_7a3063cbe7.jpg" alt="The Coho in Victoria harbor" width="500" height="333" /></a></p>
<p><br class="clear" /></p>
<p>Just testing out <a href="http://bavotasan.com/2011/adding-inset-shadow-to-image-css3/">this example at bavotasan.com</a>. It appears to work well, as long as you don&#8217;t mind linking your inset-shadow images. I&#8217;d imaging using a div or span wrapper would work fine too.</p>
]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2012/02/11/inset-box-shadow-test/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Silly trick to get yum to update installed groups</title>
		<link>http://isaac.wedin.org/2011/11/11/silly-trick-to-get-yum-to-update-installed-groups/</link>
		<comments>http://isaac.wedin.org/2011/11/11/silly-trick-to-get-yum-to-update-installed-groups/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 19:35:06 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/?p=1301</guid>
		<description><![CDATA[When I upgrade Fedora using yum or PreUpgrade my installed groups don&#8217;t really get updated. The packages in those groups get updated and any dependencies get resolved, but packages that have been added to the group in the new version &#8230; <a href="http://isaac.wedin.org/2011/11/11/silly-trick-to-get-yum-to-update-installed-groups/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When I upgrade Fedora using yum or PreUpgrade my installed groups don&#8217;t really get updated. The packages in those groups get updated and any dependencies get resolved, but packages that have been added to the group in the new version of Fedora don&#8217;t get installed. So, after updating Fedora I make sure my installed yum groups are really up to date by running &#8220;yum groupinstall <group>&#8221; for the groups I think are important. This time I wanted to do this for all of the groups I have installed so I:</p>
<ol>
<li>got the list of installed groups using &#8220;yum grouplist&#8221;</li>
<li>copy-pasted the installed ones into a text editor</li>
<li>search-replaced to get the groups wrapped in quotes with spaces between</li>
<li>pasted that into a &#8220;yum groupinstall&#8221; command, eventually adding &#8220;&#8211;skip-broken&#8221;</li>
</ol>
<p>That installed more than 800 packages! There&#8217;s probably a shell script out there somewhere to do this automatically.</group></p>
]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2011/11/11/silly-trick-to-get-yum-to-update-installed-groups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pork and beans</title>
		<link>http://isaac.wedin.org/2011/11/02/pork-and-beans/</link>
		<comments>http://isaac.wedin.org/2011/11/02/pork-and-beans/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 15:22:29 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[beans]]></category>
		<category><![CDATA[pork]]></category>
		<category><![CDATA[recipes]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/?p=1298</guid>
		<description><![CDATA[I know what you&#8217;re thinking: &#8220;Isn&#8217;t pork and beans something Yogi steals from overweight campers?&#8221; Maybe, but what if you want to relive the teenager experience of eating whatever you want, but want to do it in a way that &#8230; <a href="http://isaac.wedin.org/2011/11/02/pork-and-beans/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I know what you&#8217;re thinking: &#8220;Isn&#8217;t pork and beans something Yogi steals from overweight campers?&#8221; Maybe, but what if you want to relive the teenager experience of eating <em>whatever you want</em>, but want to do it in a way that fits in with your current gourmet tastes? After all, what is <a href="http://en.wikipedia.org/wiki/Cassoulet">cassoulet</a> but high class pork and beans? Let&#8217;s make some classy pork and beans!</p>
<p>Preheat oven to 300-ish F. Sauté onion, carrots, celery, whatever you&#8217;ve got around in bacon fat. Even better, start by rendering some chopped bacon or lardons and soften the vegetables in that. Add about four sausages. Add a can of diced tomatoes or a couple of tablespoons of tomato paste. Add a regular-sized can of beans, cannellini preferred. Add spices like Dijon mustard, cumin, thyme, etc. Once it&#8217;s bubbling, cover and bake an hour-ish. Cut up the sausages into bite-sized chunks and serve.</p>
<p><strong>Update!</strong> It&#8217;s not exactly pretty, but here&#8217;s a photo of a bowl of it:</p>
<p><a href="http://www.flickr.com/photos/izik/6637497819/"><img src="http://farm8.staticflickr.com/7170/6637497819_99abccfdb4_z.jpg" title="Pork and beans." alt="Pork and beans." width="480" height="640" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2011/11/02/pork-and-beans/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Network interface renamed in Fedora 15</title>
		<link>http://isaac.wedin.org/2011/09/21/network-interface-renamed-in-fedora-15/</link>
		<comments>http://isaac.wedin.org/2011/09/21/network-interface-renamed-in-fedora-15/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 23:14:57 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/2011/09/21/network-interface-renamed-in-fedora-15/</guid>
		<description><![CDATA[I was trying to get non-NetworkManager networking running in Fedora 15, but kept failing. When I tried to start the network daemon it failed and something about eth0 missing got logged. Finally, I looked more closely at my dmesg output &#8230; <a href="http://isaac.wedin.org/2011/09/21/network-interface-renamed-in-fedora-15/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was trying to get non-NetworkManager networking running in Fedora 15, but kept failing. When I tried to start the network daemon it failed and something about eth0 missing got logged. Finally, I looked more closely at my dmesg output and noticed that at the end of the network section udev had renamed the interface from eth0 to something like p7p2. Changing my networking script to use that instead fixed it.</p>
]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2011/09/21/network-interface-renamed-in-fedora-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips for moving a domain to a new PS at Dreamhost</title>
		<link>http://isaac.wedin.org/2011/09/07/tips-for-moving-a-domain-to-a-new-ps-at-dreamhost/</link>
		<comments>http://isaac.wedin.org/2011/09/07/tips-for-moving-a-domain-to-a-new-ps-at-dreamhost/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 13:57:59 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[dreamhost]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/?p=1283</guid>
		<description><![CDATA[I finally got nginx to work with WordPress at Dreamhost, so I&#8217;m moving more domains (including this one) over to it. When you edit a domain in the panel at Dreamhost there&#8217;s a handy-looking way to move from one PS &#8230; <a href="http://isaac.wedin.org/2011/09/07/tips-for-moving-a-domain-to-a-new-ps-at-dreamhost/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I finally got <a href="http://nginx.net/">nginx</a> to work with WordPress at Dreamhost, so I&#8217;m moving more domains (including this one) over to it. When you edit a domain in the panel at Dreamhost there&#8217;s a handy-looking way to move from one PS to another, including moving all of the files. Sadly, I don&#8217;t think it&#8217;s ever worked for me. Here are the issues I&#8217;ve encountered and their solutions:</p>
<ul>
<li><strong>&#8220;Site Temporarily Unavailable&#8221;</strong> after you move a domain, whether you try to move the files or not. Scary! Editing the domain again and saving with the same settings usually works for me, but sometimes I have to do it a couple of times. This is apparently due to slow DNS propagation, so you can also just wait it out. Why DH can&#8217;t manage to still serve the site from the old PS is a mystery to me.</li>
<li><strong>Failure to move the files.</strong> This seems to happen when your domain has a lot of files &#8211; like a WordPress install &#8211; and the source PS is overloaded. To fix this I just use <strong>rsync</strong> to sync the files to my local machine, sync those to the new PS, then move the domain in the panel (unchecking the box to move the files). Upping the resources for the source PS would likely work too.</li>
<li><strong>Sometimes nothing works.</strong> This is when most people would wisely contact tech support. I&#8217;m too stubborn for that, so I move the domain back to the old PS and try again later. Oddly, trying again the next day has always worked.</li>
<li>If you do use the panel to move a domain, the file ownership can be weird. Fix this by setting up an admin user for the new PS in the panel and using chown.</li>
<li>When you change an nginx conf file for a domain you&#8217;ll need to restart nginx (<strong>sudo /etc/init.d/nginx restart</strong>) using your admin user. I think it&#8217;s possible to reload the config without restarting using <strong>/etc/init.d/nginx reload</strong> instead.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2011/09/07/tips-for-moving-a-domain-to-a-new-ps-at-dreamhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developed some film</title>
		<link>http://isaac.wedin.org/2011/08/16/developed-some-film/</link>
		<comments>http://isaac.wedin.org/2011/08/16/developed-some-film/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 00:05:08 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/2011/08/16/developed-some-film/</guid>
		<description><![CDATA[First time and it worked! I used caffenol &#8211; a mixture of washing soda, instant coffee, and vitamin C.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/izik/6050809371/" title="Sailboat"><img src="http://farm7.static.flickr.com/6200/6050809371_9cc9648ee5_m.jpg" alt="Sailboat" /></a><br />
</p>
<p>First time and it worked! I used caffenol &#8211; a mixture of washing soda, instant coffee, and vitamin C.</p>
]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2011/08/16/developed-some-film/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No sound with RealTek ALC892</title>
		<link>http://isaac.wedin.org/2011/06/10/no-sound-with-realtek-alc892/</link>
		<comments>http://isaac.wedin.org/2011/06/10/no-sound-with-realtek-alc892/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 19:09:57 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/?p=1270</guid>
		<description><![CDATA[Every now and then my computer&#8217;s sound dies and my speakers only produce pops and clicks. I have a Biostar TA880GB+ motherboard with a RealTek ALC892 sound chip. I assumed the fault was with the driver and went on a &#8230; <a href="http://isaac.wedin.org/2011/06/10/no-sound-with-realtek-alc892/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Every now and then my computer&#8217;s sound dies and my speakers only produce pops and clicks. I have a Biostar TA880GB+ motherboard with a RealTek ALC892 sound chip. I assumed the fault was with the driver and went on a quest to reinstall all of the audio-related stuff in my Fedora 15 install. Sadly, after much driver reinstalling and audio reconfiguring the speakers were still only emitting pops and clicks. I finally tried powering down the computer (who ever does that?) and now it works. I had rebooted several times &#8211; for some reason the system needed to be powered down completely.</p>
]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2011/06/10/no-sound-with-realtek-alc892/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alaska 2011</title>
		<link>http://isaac.wedin.org/2011/06/06/alaska-2011/</link>
		<comments>http://isaac.wedin.org/2011/06/06/alaska-2011/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 23:56:34 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[alaska]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/?p=1264</guid>
		<description><![CDATA[I caught some fish and stuff! We spotted the TARDIS along the road to K-Bay Caffe in Homer. The major sights of Sterling, Alaska.]]></description>
			<content:encoded><![CDATA[<p>I caught some fish and stuff!</p>
<p><a href="http://www.flickr.com/photos/izik/5778831324/"><img src="http://farm4.static.flickr.com/3325/5778831324_24660a4b7c_m.jpg" title="King Salmon and I" alt="King Salmon and I" width="160" height="240" /></a> <a href="http://www.flickr.com/photos/izik/5778831318/"><img src="http://farm4.static.flickr.com/3040/5778831318_a81d4541be_m.jpg" title="Eagle on a tank" alt="Eagle on a tank" width="160" height="240" /></a> <a href="http://www.flickr.com/photos/izik/5778831308/"><img src="http://farm3.static.flickr.com/2020/5778831308_119fb32c56_m.jpg" title="Just a gull" alt="Just a gull" width="240" height="160" /></a> <a href="http://www.flickr.com/photos/izik/5769995883/"><img src="http://farm4.static.flickr.com/3291/5769995883_3424811593_m.jpg" title="Overseas Martinez" alt="Overseas Martinez" width="240" height="160" /></a> <a href="http://www.flickr.com/photos/izik/5769995877/"><img src="http://farm3.static.flickr.com/2244/5769995877_74399db29f_m.jpg" title="Salmon face" alt="Salmon face" width="240" height="160" /></a> <a href="http://www.flickr.com/photos/izik/5770501760/"><img src="http://farm3.static.flickr.com/2504/5770501760_e89b471885_m.jpg" title="Bow" alt="Bow" width="160" height="240" /></a> <a href="http://www.flickr.com/photos/izik/5764212020/"><img src="http://farm3.static.flickr.com/2384/5764212020_1e4a8271db_m.jpg" title="Local kitty." alt="Local kitty." width="180" height="240" /></a> <a href="http://www.flickr.com/photos/izik/5770501712/"><img src="http://farm4.static.flickr.com/3108/5770501712_a542e5c947_m.jpg" title="TARDIS sighting" alt="TARDIS sighting" width="240" height="160" /></a></p>
<p>We spotted the TARDIS along the road to <a href="http://www.kbaycoffee.com/">K-Bay Caffe</a> in Homer.</p>
<p><a href="http://www.flickr.com/photos/izik/5768308521/"><img src="http://farm3.static.flickr.com/2131/5768308521_8c2f3774e7_m.jpg" title="Shells" alt="Shells" width="160" height="240" /></a> <a href="http://www.flickr.com/photos/izik/5770501754/"><img src="http://farm3.static.flickr.com/2285/5770501754_b2bc6ecd55_m.jpg" title="Pink throne" alt="Pink throne" width="240" height="160" /></a> <a href="http://www.flickr.com/photos/izik/5770501744/"><img src="http://farm3.static.flickr.com/2008/5770501744_40c5dcd1f1_m.jpg" title="Moss" alt="Moss" width="240" height="160" /></a> <a href="http://www.flickr.com/photos/izik/5770501734/"><img src="http://farm6.static.flickr.com/5061/5770501734_a1a7955d36_m.jpg" title="Maybe a car?" alt="Maybe a car?" width="240" height="160" /></a> <a href="http://www.flickr.com/photos/izik/5770501726/"><img src="http://farm3.static.flickr.com/2006/5770501726_5c7b2cd5a8_m.jpg" title="Truck" alt="Truck" width="240" height="160" /></a></p>
<p>The major sights of Sterling, Alaska.</p>
]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2011/06/06/alaska-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vivitar 135/3.5</title>
		<link>http://isaac.wedin.org/2011/05/18/vivitar-1353-5/</link>
		<comments>http://isaac.wedin.org/2011/05/18/vivitar-1353-5/#comments</comments>
		<pubDate>Thu, 19 May 2011 00:11:01 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[lenses]]></category>
		<category><![CDATA[vivitar]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/?p=1261</guid>
		<description><![CDATA[I got this manual focus m42 screw-mount lens a little more than a year ago at Hampden Junque in Baltimore. Overall it&#8217;s a pretty nice lens. It&#8217;s compact, shorter than my Super Takumar 135/3.5 but a little fatter. It&#8217;s got &#8230; <a href="http://isaac.wedin.org/2011/05/18/vivitar-1353-5/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/izik/4521533755/"><img src="http://farm3.static.flickr.com/2746/4521533755_697b2ee8aa_m.jpg" title="Nice aperture blades" alt="Nice aperture blades" width="240" height="160" /></a> <a href="http://www.flickr.com/photos/izik/4521533759/"><img src="http://farm3.static.flickr.com/2767/4521533759_0846aa1478_m.jpg" title="Vivitar 135/2.8" alt="Vivitar 135/2.8" width="240" height="160" /></a></p>
<p>I got this manual focus m42 screw-mount lens a little more than a year ago at<a href="http://www.facebook.com/pages/Hampden-Junque/148714575151233"> Hampden Junque</a> in Baltimore. Overall it&#8217;s a pretty nice lens. It&#8217;s compact, shorter than my Super Takumar 135/3.5 but a little fatter. It&#8217;s got lots of aperture blades so it produces the bubble-shaped bokeh blobs that I like. The 2.8 widest aperture is fairly fast for low-light shots and easier focusing, and it&#8217;s pretty sharp wide open. It even has a built-in sliding lens hood, much better than the screw-on hood on the Super Takumar.</p>
<p>Sadly, I don&#8217;t use it much because my 50/1.4 works well for me most of the time. So, the Vivitar 135 mostly gets used around the house to take candid pictures of cats.</p>
<p><a href="http://www.flickr.com/photos/izik/5734237700/"><img src="http://farm3.static.flickr.com/2368/5734237700_e5b9c47788_z.jpg" title="Resting" alt="Resting" width="640" height="427" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2011/05/18/vivitar-1353-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Object Caching 620/688 objects using apc
Content Delivery Network via Amazon Web Services: CloudFront: cloud.isaac.wedin.org

Served from: isaac.wedin.org @ 2012-05-20 08:48:53 -->
