<?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>kjcoop.org &#187; updates</title>
	<atom:link href="http://kjcoop.org/tag/updates/feed/" rel="self" type="application/rss+xml" />
	<link>http://kjcoop.org</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 13:53:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>VeganWiki updated</title>
		<link>http://kjcoop.org/2012/01/02/veganwiki-updated/</link>
		<comments>http://kjcoop.org/2012/01/02/veganwiki-updated/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 01:49:20 +0000</pubDate>
		<dc:creator>KJ Coop</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mediawiki]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[VeganWiki]]></category>

		<guid isPermaLink="false">http://kjcoop.org/?p=1545</guid>
		<description><![CDATA[VeganWiki&#8217;s been getting the shit spammed out of it lately. If you want to have a good laugh, the logs are a testament to how much spam fighting I was doing. I googled around, but it looked like most of the spam-fighting functionality was added after my version (0.11). While in Yosemite, I took a [...]]]></description>
			<content:encoded><![CDATA[<p>VeganWiki&#8217;s been getting the shit spammed out of it lately. If you want to have a good laugh, <a href="http://veganwiki.kjcoop.com/index.php?title=Special:RecentChanges&#038;from=20111229015019">the logs</a> are a testament to how much spam fighting I was doing. </p>
<p>I googled around, but it looked like most of the spam-fighting functionality was added after my version (0.11). While in Yosemite, I took a couple hours to upgrade it to the latest version, 0.18, and install captchas. We shall see if this stems the tide of robots. I think it will be a temporary fix, at best. </p>
]]></content:encoded>
			<wfw:commentRss>http://kjcoop.org/2012/01/02/veganwiki-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading to WordPress 3.3 &#8211; the missing &#8220;Format&#8221; box</title>
		<link>http://kjcoop.org/2011/12/16/upgrading-to-wordpress-3-3-the-missing-format-box/</link>
		<comments>http://kjcoop.org/2011/12/16/upgrading-to-wordpress-3-3-the-missing-format-box/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 09:44:00 +0000</pubDate>
		<dc:creator>KJ Coop</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[nerdery]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://kjcoop.org/?p=1523</guid>
		<description><![CDATA[I recently installed WordPress 3.3 for a client, and I was very impressed. Specifically I was excited about tinkering around with the &#8220;Format&#8221; box, which allows you to post in a variety of formats, including, &#8220;Status&#8221;, &#8220;Gallery&#8221; and the regular post format &#8220;Standard&#8221;. I wasted no time upgrading this site to WordPress 3.3, but no [...]]]></description>
			<content:encoded><![CDATA[<p>I recently installed WordPress 3.3 for a client, and I was very impressed. Specifically I was excited about tinkering around with the &#8220;Format&#8221; box, which allows you to post in a variety of formats, including, &#8220;Status&#8221;, &#8220;Gallery&#8221; and the regular post format &#8220;Standard&#8221;. </p>
<p>I wasted no time upgrading this site to WordPress 3.3, but no fun format box. I poked around at options and Googled, to no avail. Most suggestions seemed to revolve around some browser problem, but I could see it on the other site, plain as day, so my browser was obviously capable of displaying it.</p>
<p>For lack of a better idea, I started grepping. I used Firebug to get the id attribute (&#8220;formatdiv&#8221;), figuring there would be a finite number of instances in the code. Indeed, there was exactly one. It was in wp-admin/edit-form-advanced.php. There were two relevant lines:<br />
<code>if ( current_theme_supports( 'post-formats' ) &#038;&#038; post_type_supports( $post_type, 'post-formats' ) )<br />
&nbsp;&nbsp;&nbsp;&nbsp;add_meta_box( 'formatdiv', _x( 'Format', 'post format' ), 'post_format_meta_box', null, 'side', 'core' );<br />
</code></p>
<p>This alerted me that it was a problem with the theme, which unsurprising considering that I&#8217;m still using a customized version of the 2009 default theme. I knew it worked in the latest theme, twentyeleven, so I went to that directory and grepped for &#8216;format&#8217; and braced myself for the worst. Once I eliminated the CSS files, it was easy to hone in on line 104 of functions.php<br />
<code>        add_theme_support( 'post-formats', array( 'aside', 'link', 'gallery', 'status', 'quote', 'image' ) );</code></p>
<p>This takes place in a function called setup. I went over to my theme and looked for a similar function in the functions.php file. It did not have one. I pasted it in toward the middle of the file and hoped for the best. The format box appeared like magic. I haven&#8217;t actually tinkered with it yet, but I wanted to write up my experiences &#8211; before I forget them &#8211; so that someone else with an old theme can bring some new magic into their WordPress experience.</p>
]]></content:encoded>
			<wfw:commentRss>http://kjcoop.org/2011/12/16/upgrading-to-wordpress-3-3-the-missing-format-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intermittent server outages</title>
		<link>http://kjcoop.org/2010/08/07/intermittent-server-outages/</link>
		<comments>http://kjcoop.org/2010/08/07/intermittent-server-outages/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 00:46:24 +0000</pubDate>
		<dc:creator>KJ Coop</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cats]]></category>
		<category><![CDATA[cool story bro]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://kjcoop.org/?p=1313</guid>
		<description><![CDATA[I noticed while I was in Portland last week that the server was down. When I got home, I discovered that the UPS was off. I pushed the button and turned it back on. A day or two later, it was off again. I eventually figured out what it was: The causes of the outages [...]]]></description>
			<content:encoded><![CDATA[<p>I noticed while I was in Portland last week that the server was down. When I got home, I discovered that the UPS was off. I pushed the button and turned it back on.</p>
<p>A day or two later, it was off again. I eventually figured out what it was:</p>
<div class="wp-caption aligncenter" style="width: 210px">
<div>
    <a href="http://kjcoop.org/wp-content/uploads/2010/08/2010-07-30-18.46.43.jpg"><img src="http://kjcoop.org/wp-content/uploads/2010/08/2010-07-30-18.46.43.jpg" alt="Likes to sit on the UPS" width="100" class="size-thumbnail" /></a> <a href="http://kjcoop.org/wp-content/uploads/2010/08/kitty2.jpeg"><img src="http://kjcoop.org/wp-content/uploads/2010/08/kitty2.jpeg" alt="The newest family member. Likes to swat at Penny" width="100" class="size-thumbnail" /></a></div>
<p class="wp-caption-text">The causes of the outages</p>
</div>
<p>Penny likes to sit atop the UPS. The newest member of our family likes to swat at Penny. Apparently, sometimes she hits the UPS power button instead.</p>
<p>I taped some cardboard over the button. I do not anticipate any further outages.</p>
<div class="wp-caption aligncenter" style="width: 160px">
    <a href="http://kjcoop.org/wp-content/uploads/2010/08/2010-07-30-18.49.29.jpg"><img src="http://kjcoop.org/wp-content/uploads/2010/08/2010-07-30-18.49.29.jpg" alt="Penny investigates the addition, no doubt contemplating how to H@X0R her way around it." width="200" class="size-thumbnail" /></a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://kjcoop.org/2010/08/07/intermittent-server-outages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random web updates</title>
		<link>http://kjcoop.org/2009/12/19/random-web-updates/</link>
		<comments>http://kjcoop.org/2009/12/19/random-web-updates/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 18:52:19 +0000</pubDate>
		<dc:creator>KJ Coop</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[kjcoop.com]]></category>
		<category><![CDATA[kjcoop.org]]></category>
		<category><![CDATA[mediawiki]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[VeganWiki]]></category>

		<guid isPermaLink="false">http://kjcoop.org/?p=1137</guid>
		<description><![CDATA[VeganWiki got spammed by some botnet a couple days ago. Each instance of spam was from a different IP. I reverted all the changes and blocked all the IPs, but I think it&#8217;s just as useless to block botnet IPs as it is to filter spammers&#8217; e-mail addresses: there are always more out there. I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://veganwiki.kjcoop.com">VeganWiki</a> got spammed by some botnet a couple days ago. Each instance of spam was from a different IP. I reverted all the changes and blocked all the IPs, but I think it&#8217;s just as useless to block botnet IPs as it is to filter spammers&#8217; e-mail addresses: there are always more out there. I briefly Googled blocking spam in MediaWiki, but I haven&#8217;t actually read the article yet. <a href="http://www.umasswiki.com/wiki/UMassWiki:Blocking_Spam_In_Mediawiki">Here&#8217;s a link</a> in case anybody gets curious.</p>
<p>I upgraded this blog to WordPress 2.9, as well as making minor template changes. My plugin appears to be working with the new version &#8211; as I expected it would.</p>
<p>On <a href="http://kjcoop.com">kjcoop.com</a>, I&#8217;m threatening to retool my portfolio, but I&#8217;m finding it difficult to toe the line between, &#8220;Be thorough and honest&#8221; and &#8220;Don&#8217;t tell your life&#8217;s story.&#8221; Maybe I&#8217;ll just go ahead and tell my life&#8217;s story. It&#8217;s bound to be interesting since I&#8217;m such an interesting person. </p>
]]></content:encoded>
			<wfw:commentRss>http://kjcoop.org/2009/12/19/random-web-updates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

