<?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>trickeries! &#187; wordpress</title>
	<atom:link href="http://trickeries.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://trickeries.com</link>
	<description>it's tricky to rock a style thats liked online</description>
	<lastBuildDate>Tue, 02 Mar 2010 06:01:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Allowing periods in wordpress permalinks</title>
		<link>http://trickeries.com/739/allowing-periods-in-wordpress-permalinks/</link>
		<comments>http://trickeries.com/739/allowing-periods-in-wordpress-permalinks/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 04:36:06 +0000</pubDate>
		<dc:creator>atom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://trickeries.com/?p=739</guid>
		<description><![CDATA[John Resig tweeted the following:

Trying to get periods in Wordpress permalinks to work, but failing. How can I force WP to allow: http://example.com/foo.bar/



I was curious so I watched replies to him. There were many deeply misguided answers, my favorite being:

I&#8217;m not sure, but it seems like it might likely be a server configuration issue.


There was [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ejohn.org/">John Resig</a> <a href="http://twitter.com/jeresig/statuses/7353012178">tweeted the following</a>:</p>
<blockquote><p>
Trying to get periods in Wordpress permalinks to work, but failing. How can I force WP to allow: http://example.com/foo.bar/
</p></blockquote>
<hr/>
<p>
I was curious so I watched replies to him. There were many deeply misguided answers, my favorite being:
</p>
<blockquote><p>I&#8217;m not sure, but it seems like it might likely be a server configuration issue.</p></blockquote>
<hr/>
<p>
There was a reference to this: <a href="http://firsttube.com/read/hacking-wordpress-day-two/">http://firsttube.com/read/hacking-wordpress-day-two/</a>, but hacking the core is a pretty poor solution, and will be overwritten the next time you upgrade.
</p>
<p>
The periods get dropped by sanitize_title_with_dashes, and there is no clean way to hook into it and fix the problem, so you can just use remove_filter to drop it, and replace it with a very similar function that allows for periods:
</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">remove_filter<span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'sanitize_title'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'sanitize_title_with_dashes'</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
add_filter<span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'sanitize_title'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'sanitize_title_with_dashes_allow_periods'</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #FF00FF; font-weight: bold;">function</span> sanitize_title_with_dashes_allow_periods<span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$title</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#123;</span>
        <span style="color: #666666; font-style: italic;">// same as sanitize_title_with_dashes minus the line replacing periods, </span>
        <span style="color: #666666; font-style: italic;">// and an alteration to the final catch all regex to allow periods</span>
        <span style="color: #666666; font-style: italic;">// please note, might be dangerous for some reason?  i don't rightly know.</span>
        <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0066FF;">strip_tags</span><span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$title</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #666666; font-style: italic;">// Preserve escaped octets.</span>
        <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0066FF;">preg_replace</span><span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'|%([a-fA-F0-9][a-fA-F0-9])|'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'---$1---'</span><span style="color: #339933;">,</span> <span style="color: #00FF00;">$title</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #666666; font-style: italic;">// Remove percent signs that are not part of an octet.</span>
        <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0066FF;">str_replace</span><span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'%'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #00FF00;">$title</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #666666; font-style: italic;">// Restore octets.</span>
        <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0066FF;">preg_replace</span><span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'|---([a-fA-F0-9][a-fA-F0-9])---|'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'%$1'</span><span style="color: #339933;">,</span> <span style="color: #00FF00;">$title</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> remove_accents<span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$title</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #00FF00;">if</span> <span style="color: #FF6600;">&#40;</span>seems_utf8<span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$title</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#41;</span> <span style="color: #FF6600;">&#123;</span>
                <span style="color: #00FF00;">if</span> <span style="color: #FF6600;">&#40;</span><span style="color: #0066FF;">function_exists</span><span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'mb_strtolower'</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#41;</span> <span style="color: #FF6600;">&#123;</span>
                        <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0066FF;">mb_strtolower</span><span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$title</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'UTF-8'</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #FF6600;">&#125;</span>
                <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> utf8_uri_encode<span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$title</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">200</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #FF6600;">&#125;</span>
&nbsp;
        <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0066FF;">strtolower</span><span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$title</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0066FF;">preg_replace</span><span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'/&amp;.+?;/'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #00FF00;">$title</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// kill entities</span>
        <span style="color: #666666; font-style: italic;">//$title = str_replace('.', '-', $title);</span>
        <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0066FF;">preg_replace</span><span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'/[^\.%a-z0-9 _-]/'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #00FF00;">$title</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// allow for periods</span>
        <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0066FF;">preg_replace</span><span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'/\s+/'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'-'</span><span style="color: #339933;">,</span> <span style="color: #00FF00;">$title</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0066FF;">preg_replace</span><span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'|-+|'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'-'</span><span style="color: #339933;">,</span> <span style="color: #00FF00;">$title</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #00FF00;">$title</span> <span style="color: #339933;">=</span> <span style="color: #0066FF;">trim</span><span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$title</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'-'</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #00FF00;">return</span> <span style="color: #00FF00;">$title</span><span style="color: #339933;">;</span>
<span style="color: #FF6600;">&#125;</span></pre></div></div>

<h3>Please note that this could be dangerous, they might be removing periods for a good reason</h3>
]]></content:encoded>
			<wfw:commentRss>http://trickeries.com/739/allowing-periods-in-wordpress-permalinks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WPMU, why you gotta be like that?</title>
		<link>http://trickeries.com/450/wpmu-why-you-gotta-be-like-that/</link>
		<comments>http://trickeries.com/450/wpmu-why-you-gotta-be-like-that/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 01:10:04 +0000</pubDate>
		<dc:creator>atom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[tirade]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wpmu]]></category>

		<guid isPermaLink="false">http://trickeries.com/?p=450</guid>
		<description><![CDATA[I have a long and tension filled past with WPMU (Wordpress multi-user).
My first major beef was that they forcibly eliminated &#8216;www&#8217; from your site url.  It was hard coded in the source to tear it out and redirect, even if you went well out of your way to define it with the &#8216;www&#8217;.  [...]]]></description>
			<content:encoded><![CDATA[<p>I have a long and tension filled past with <a href="http://mu.wordpress.org/">WPMU</a> (Wordpress multi-user).</p>
<p>My first major beef was that they forcibly eliminated &#8216;www&#8217; from your site url.  It was hard coded in the source to tear it out and redirect, even if you went well out of your way to define it with the &#8216;www&#8217;.  This was part of their general participation in the following bullshit: <a href="http://no-www.org/">http://no-www.org/</a></p>
<p>I had an ssl certificate on www.  Lots of stuff blew up, and there were a few infinite loop redirects.  I wasn&#8217;t happy, and this eventually led to some core edits.  This has since been changed, you can read some of the complaints here: <a href="http://mu.wordpress.org/forums/topic.php?id=7593">http://mu.wordpress.org/forums/topic.php?id=7593</a></p>
<p>My next problem was that lots of language shit was hardcoded, including emails.  This is generally improving over time, however I still have problems translating <em>everything</em>, as there are now emails stored in the database as options, which leaves me with difficult translations.  More core edits to sort this out.</p>
<p>The next issue that I encountered was that my term id&#8217;s were very quickly getting larger and larger, with no reasonable explanation.  This is still the case, and I have no idea why.  Refer to the following forum thread (with no replies or acknowledgement), which explains this issue in more detail: <a href="http://mu.wordpress.org/forums/topic.php?id=3308">http://mu.wordpress.org/forums/topic.php?id=3308</a> and my solution: <a href="http://mu.wordpress.org/forums/topic.php?id=6759">http://mu.wordpress.org/forums/topic.php?id=6759</a></p>
<p>The next issue is that the admin does not gracefully handle many users.  For pages where it is displaying users, no pagination is used.  So if you get a few thousand subscribers, you better believe your browser is in for a crash when even attempting to load any of those pages.</p>
<p>The most recent issue I have experienced is that you can no longer register subpages to the plugins.php page, unless you don&#8217;t want anyone but the admin to be able to use them.  I have no problem with this in theory, but historically this has never been the case.  Now you have to be an admin to even load the plugins page, so if you have a tool you want editors to use, it better be somewhere else.  This is because the variables that handle the menu generation declare that you need to be able to install plugins, edit plugins, or activate plugins in order to see the page, which only admins are capable of doing.  This was also a hell of a thing to figure out.  I had to crawl through include after include with &#8216;die(&#8216;made it here!&#8217;);&#8217;</p>
<p>I still very much appreciate the software.  It is a huge piece of impressive, and its not something that they needed to share or support (It was developed for use with <a href="http://wordpress.com">wordpress.com</a>).  I am sure is a bear and a half to work on and test.</p>
<p>I just need to vent sometimes.</p>
]]></content:encoded>
			<wfw:commentRss>http://trickeries.com/450/wpmu-why-you-gotta-be-like-that/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wordpress 2.5, a half-assed review.</title>
		<link>http://trickeries.com/59/wordpress-25-a-half-assed-review/</link>
		<comments>http://trickeries.com/59/wordpress-25-a-half-assed-review/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 03:42:34 +0000</pubDate>
		<dc:creator>atom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2.5]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://trickeries.com/?p=59</guid>
		<description><![CDATA[
Good:

The design has been updated and is much less offensive to the eyes.
The dashboard has better information at first glance.
Dashboard widgets will probably be pretty cool.
The new flash uploader is a big improvement.
The new gallery feature seems pretty cute, although it isn&#8217;t the sort of thing I usually go in for.
Full screen post writing is [...]]]></description>
			<content:encoded><![CDATA[<p><img title="wordpress 2.5 admin" src="http://trickeries.com/wp-content/uploads/2008/03/wp25.png" alt="wordpress 2.5 admin" /></p>
<h2>Good:</h2>
<ul>
<li>The design has been updated and is much less offensive to the eyes.</li>
<li>The dashboard has better information at first glance.</li>
<li>Dashboard widgets will probably be pretty cool.</li>
<li>The new flash uploader is a big improvement.</li>
<li>The new gallery feature seems pretty cute, although it isn&#8217;t the sort of thing I usually go in for.</li>
<li>Full screen post writing is nice if you have a lot to write.</li>
<li>Tag management / tag filling is handy.</li>
<li>The ability to define permalinks on the fly when writing a post  is neat.</li>
</ul>
<h2>Bad:</h2>
<ul>
<li>The admin has a max-width that is very noticeable (annoying) on a widescreen monitor, especially because it is not centered.</li>
<li>I miss the categories being on the sidebar on the post pages.</li>
<li>Tags still are not searchable.  Why are tags not searchable?</li>
<li>There is even more Javascript in the admin than before, for an impressive total of 324Kb, ~2 second load.</li>
</ul>
<h2>TBD:</h2>
<ul>
<li>Whether or not any of the cute little enhancements break the hell out of plugins that I don&#8217;t feel like updating.</li>
<li>Whether or not nightmarish new vulnerabilities have been introduced.  With an update this big, it is almost a sure thing.</li>
</ul>
<p>Watch <a title="Photo Matt - Unlucky in Cards" href="http://ma.tt/">Matt</a>&#8217;s <a title="Wordpress 2.5 screencast." href="http://wordpress.org/development/2008/03/wordpress-25-rc2/">screencast</a> for a quick overview, I have to update the rest of my sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://trickeries.com/59/wordpress-25-a-half-assed-review/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>sxsw day two</title>
		<link>http://trickeries.com/42/sxsw-day-two/</link>
		<comments>http://trickeries.com/42/sxsw-day-two/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 10:32:31 +0000</pubDate>
		<dc:creator>atom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[ExpressionEngine]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[MU]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sxsw]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://trickeries.com/42/sxsw-day-two/</guid>
		<description><![CDATA[The second day was difficult to start, we had quite a first night. Did not manage to make it to anything before noon.  Anywho&#8230;
attended  the contextual web
This was not quite what I expected, I was hoping that this would be more about data portability, but it ended up just being an iPhone orgy. [...]]]></description>
			<content:encoded><![CDATA[<p>The second day was difficult to start, we had quite a first night. Did not manage to make it to anything before noon.  Anywho&#8230;</p>
<h2>attended  <a title="SXSW panel - the contextual web" href="http://2008.sxsw.com/interactive/programming/panels_schedule/?action=show&amp;id=IAP060494">the contextual web</a></h2>
<p>This was not quite what I expected, I was hoping that this would be more about data portability, but it ended up just being an iPhone orgy.  I did however realize that I was in the non-iPhone possessing sxsw minority.</p>
<h2>attended <a title="ExpressionEngine 2.0 Sneak Peak" href="http://2008.sxsw.com/interactive/programming/panels_schedule/?action=show&amp;id=IAP060590">ExpressionEngine 2.0 Sneak Peak</a></h2>
<p>This was awesome.  I am and have been a big fan of <a title="Ellis Lab" href="http://ellislab.com/">Ellislab</a>, not because of <a title="Expression Engine" href="http://expressionengine.com/">ExpressionEngine</a>, but because of <a title="CodeIgniter - Open source PHP web application framework" href="http://codeigniter.com/">CodeIgniter</a>.  Learning about ExpressionEngine was very interesting, especially when they announced that <a title="ExpressionEngine 2.0: fully CodeIgnited!" href="http://codeigniter.com/news/expressionengine_20_fully_codeignited/">ExpressionEngine 2.0 has been rewritten to run on top of CodeIgniter</a>.  This is very pleasant news.  This has gotten me all atwitter about the possibilities of a cms running on-top of my most favoritest PHP framework.  Also everyone was very nice, and I desired to be friends with them.  This panel was something I talked about throughout the rest of my trip.</p>
<h2>attended <a title="10 Things We've Learned at 37signals" href="http://2008.sxsw.com/interactive/programming/panels_schedule/?action=show&amp;id=IAP060547">10 Things We&#8217;ve Learned at 37signals</a></h2>
<p>This was another highpoint.  CEO Jason Fried is an excellent speaker.  Everything he said made sense, and he answered all questions asked were answered very well.  At one point <a title="Anil Dash" href="http://www.dashes.com/anil/">Anil Dash</a> of <a title="six apart" href="http://www.sixapart.com/">six apart</a> asked a question that seemed like more of an insult than anything.</p>
<h2>attended <a title="SXSW panel - Behind the Scenes at the Onion News Network" href="http://2008.sxsw.com/interactive/programming/panels_schedule/?action=show&amp;id=IAP060306">Behind the Scenes at the Onion News Network</a></h2>
<p>This was pretty fun, it being the Onion and all (which had quite a presence in Austin).  I was hoping that it was going to be more about the site backend, and not the actual production of the show / a bunch of clips I have already seen.</p>
<h2>went to the <a title="SXSX evening - google party" href="http://2008.sxsw.com/interactive/evening_events/">Google Party</a></h2>
<p><img title="The SXSWi Google Party" src="http://trickeries.com/wp-content/uploads/2008/03/google_party.png" alt="The SXSWi Google Party" width="434" height="326" /></p>
<p>Wacky google action, got lots of saucy google swag, including pens, flashing plastic pins, and the best thing I have to keep a secret, because it is a present for my buddy Wes.  The bar was kinda downtowny and lame, but I also got to meet <a title="Dustin Diaz - ./ with imagination" href="http://www.dustindiaz.com/">Dustin Diaz</a>, and tell him that I love him.  His girlfriend liked my hair, and took a picture of us.</p>
<h2>went to the <a title="EllisLab party at Moonshine Grill" href="http://codeigniter.com/news/join_us_at_sxsw/">EllisLab party at Moonshine Grill</a></h2>
<p><img title="ExpressionEngine Party" src="http://trickeries.com/wp-content/uploads/2008/03/expression_engine_party.png" alt="This is the CodeIgniter / Expression engine core team trying to eat while I stalk them." width="434" height="326" /><br />
This was a wonderful event.  Tons of bad ass food, free shirts (I nabbed a bunch and wear them all the time).  The highlight of this was definitely hanging out with and talking to <a title="CodeIgniter, ExpressionEngine, and the World of Web Desgin" href="http://www.derekallard.com/">Derek Allard</a>.  Derek is a development beast, and is responsible for alot of the awesomeness in and around <a title="Expression Engine" href="http://expressionengine.com/">ExpressionEngine</a> and <a title="CodeIgniter - Open source PHP web application framework" href="http://codeigniter.com/">CodeIgniter</a>.  You should go to his site, it is awesome.</p>
<h2>went to the <a title="http://2008.sxsw.com/interactive/evening_events/" href="http://2008.sxsw.com/interactive/evening_events/"><strong><span class="summary">frog design / SXSW Interactive Opening Party</span></strong></a></h2>
<p>This was a hell of a thing.  There seemed to be thousands of people spread throughout a very large area, lots of loud techno music and so forth.  The beer line was long, and the beer was green.  I think we only managed to stay there for about an hour.</p>
<h2>went to the <a title="http://2008.sxsw.com/interactive/evening_events/" href="http://2008.sxsw.com/interactive/evening_events/"><strong><span class="summary">16 Bit: SXSWi&#8217;s Opening Night Afterparty</span></strong></a></h2>
<p><img title="16 bit: SXSWi Opening Night Afterparty" src="http://trickeries.com/wp-content/uploads/2008/03/16bit.png" alt="16 bit: SXSWi Opening Night Afterparty" width="434" height="326" /></p>
<p>This was an amazing party, with an equally amazing line to get in.  There was a <a title="999 eyes - authentic freakshow" href="http://www.999eyes.com/">band / freakshow</a>, which eventually turned into silly 80&#8217;s music that made me feel like I was playing Vice City.  It was good stuff all around, lots of cool excited people and lots of free drinks.</p>
<p><img title="999 eyes: band / freakshow playing at 16bit" src="http://trickeries.com/wp-content/uploads/2008/03/999_eyes.png" alt="999 eyes: band / freakshow playing at 16bit" width="434" height="326" /></p>
<p>Towards the end of the party, I met <a title="Photo Matt » Unlucky In Cards" href="http://ma.tt/">Matt Mullenweg</a>.   I have always been amazed by <a title="Wordpress &gt; Blog Tool and Weblog Platform" href="http://wordpress.org/">Wordpress</a>, and generally the stuff he gets into.  I got to spend some time talking to him about the future of Wordpress, and vented a little bit about the <a title="My profile on the WordpressMU support forums." href="http://mu.wordpress.org/forums/profile.php?id=155796">problems</a> I have had with <a title="Wordpress Multiuser" href="http://mu.wordpress.org/">WordpressMU</a>, chiefly the <em><strong>forced</strong></em> support of the no-www.org agenda.  I am not even going to link to it because of how much arrogant bullshit I think it is.  It should be noted that <em>normal</em> Wordpress does not enforce this.  When I was done going off about that, I launched into a drunken rant about how awesome CodeIgniter and ExpressionEngine were going to get. We were talking until the bar closed, and were yelled at to leave by a scruffy bouncer, and then continued to talk outside until his girlfriend got pissed.  Anyhow, Matt was awesome, and much funnier than I expected.</p>
<h2>ended up at <a title="Kerbey Lane Cafe" href="http://austin.citysearch.com/review/10241780/1909601">Kerbey Lane Cafe</a></h2>
<p>We stood outside of Scoot Inn (where the last party was) bullshitting with people for about an hour and suddenly found ourselves among the last few there.  Me and Cliff (big bad boss) ended up going to breakfast with two complete strangers.  One was a local Austin lady who was recently single (which she repeatedly and proudly exclaimed) and a gentleman who, to me, was the epitome of the apple fanboy.  I was later informed that I may have been too rough on him regarding this, but I was drunk and he was a friendly stranger.</p>
<p>I don&#8217;t remember what I ate (aside from sweet potato fries), and I don&#8217;t remember the stranger&#8217;s names.  If you are one of the strangers: please excuse me, and leave a comment to say hi.</p>
]]></content:encoded>
			<wfw:commentRss>http://trickeries.com/42/sxsw-day-two/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>situational Javascript based on body ID</title>
		<link>http://trickeries.com/26/situational-javascript-based-on-body-id/</link>
		<comments>http://trickeries.com/26/situational-javascript-based-on-body-id/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 07:26:53 +0000</pubDate>
		<dc:creator>atom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[this site]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://trickeries.com/26/situational-javascript-based-on-body-id/</guid>
		<description><![CDATA[I know that this is not anything revolutionary or anything, but I found it very helpful when making this site, so I thought I would share.
By assigning the body element an ID, you can check it with Javascript, and then execute what you need to based on this condition, like so(wordpress example):
Some php, for the [...]]]></description>
			<content:encoded><![CDATA[<p>I know that this is not anything revolutionary or anything, but I found it very helpful when making this site, so I thought I would share.</p>
<p>By assigning the body element an ID, you can check it with Javascript, and then execute what you need to based on this condition, like so(wordpress example):</p>
<h3>Some php, for the Wordpress template (in header.php):</h3>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #FF00FF; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #00FF00;">if</span><span style="color: #FF6600;">&#40;</span>is_home<span style="color: #FF6600;">&#40;</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#41;</span> <span style="color: #666666; font-style: italic;">//if we are at the wordpress &quot;home&quot;</span>
	<span style="color: #00FF00;">$location</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'home'</span><span style="color: #339933;">;</span>
<span style="color: #00FF00;">elseif</span><span style="color: #FF6600;">&#40;</span>is_single<span style="color: #FF6600;">&#40;</span><span style="color: #FF6600;">&#41;</span> <span style="color: #339933;">||</span> is_page<span style="color: #FF6600;">&#40;</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#41;</span> <span style="color: #666666; font-style: italic;">// if it is a single post or page</span>
	<span style="color: #00FF00;">$location</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'single'</span><span style="color: #339933;">;</span>
<span style="color: #00FF00;">elseif</span><span style="color: #FF6600;">&#40;</span>is_some_strange_situation<span style="color: #FF6600;">&#40;</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#41;</span> <span style="color: #666666; font-style: italic;">// a user function that test for something strange</span>
	<span style="color: #00FF00;">$location</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'strange'</span><span style="color: #339933;">;</span>
<span style="color: #00FF00;">else</span> <span style="color: #666666; font-style: italic;">// otherwise, nothing special</span>
	<span style="color: #00FF00;">$location</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'default'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;body id=&quot;<span style="color: #FF00FF; font-weight: bold;">&lt;?php</span> <span style="color: #00FF00;">echo</span> <span style="color: #00FF00;">$location</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;</pre></div></div>

<h3>Then some Javascript:</h3>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
	<span style="color: #00FF00; font-weight: bold;">switch</span><span style="color: #99FF00;">&#40;</span>document.<span style="color: #0066FF;">body</span>.<span style="color: #0066FF;">id</span><span style="color: #99FF00;">&#41;</span><span style="color: #99FF00;">&#123;</span>
		<span style="color: #00FF00; font-weight: bold;">case</span> <span style="color: #3366CC;">'home'</span><span style="color: #339933;">:</span>
			runAtHomeOnly<span style="color: #99FF00;">&#40;</span><span style="color: #99FF00;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #00FF00; font-weight: bold;">break</span><span style="color: #339933;">;</span>
		<span style="color: #00FF00; font-weight: bold;">case</span> <span style="color: #3366CC;">'single'</span><span style="color: #339933;">:</span>
			runOnSingleOnly<span style="color: #99FF00;">&#40;</span><span style="color: #99FF00;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #00FF00; font-weight: bold;">break</span><span style="color: #339933;">;</span>
		<span style="color: #00FF00; font-weight: bold;">case</span> <span style="color: #3366CC;">'strange'</span><span style="color: #339933;">:</span>
			runOnStrangeOnly<span style="color: #99FF00;">&#40;</span><span style="color: #99FF00;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #FF00FF; font-weight: bold;">default</span><span style="color: #339933;">:</span>
			runOtherwise<span style="color: #99FF00;">&#40;</span><span style="color: #99FF00;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #00FF00; font-weight: bold;">break</span><span style="color: #339933;">;</span>
	<span style="color: #99FF00;">&#125;</span>
	runThisAlways<span style="color: #99FF00;">&#40;</span><span style="color: #99FF00;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #FF00FF; font-weight: bold;">function</span> runAtHomeOnly<span style="color: #99FF00;">&#40;</span><span style="color: #99FF00;">&#41;</span><span style="color: #99FF00;">&#123;</span>
		<span style="color: #000066;">alert</span><span style="color: #99FF00;">&#40;</span><span style="color: #3366CC;">'You are home.'</span><span style="color: #99FF00;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #99FF00;">&#125;</span>
&nbsp;
	<span style="color: #FF00FF; font-weight: bold;">function</span> runOnSingleOnly<span style="color: #99FF00;">&#40;</span><span style="color: #99FF00;">&#41;</span><span style="color: #99FF00;">&#123;</span>
		<span style="color: #000066;">alert</span><span style="color: #99FF00;">&#40;</span><span style="color: #3366CC;">'You are on a single post or page.'</span><span style="color: #99FF00;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #99FF00;">&#125;</span>
&nbsp;
	<span style="color: #FF00FF; font-weight: bold;">function</span> runOnStrangeOnly<span style="color: #99FF00;">&#40;</span><span style="color: #99FF00;">&#41;</span><span style="color: #99FF00;">&#123;</span>
		<span style="color: #000066;">alert</span><span style="color: #99FF00;">&#40;</span><span style="color: #3366CC;">'You are somewhere strange.'</span><span style="color: #99FF00;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #99FF00;">&#125;</span>
&nbsp;
	<span style="color: #FF00FF; font-weight: bold;">function</span> runOtherwise<span style="color: #99FF00;">&#40;</span><span style="color: #99FF00;">&#41;</span><span style="color: #99FF00;">&#123;</span>
		<span style="color: #000066;">alert</span><span style="color: #99FF00;">&#40;</span><span style="color: #3366CC;">'You are not home, at a single post or page, and you are not somewhere strange.'</span><span style="color: #99FF00;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #99FF00;">&#125;</span>
&nbsp;
	<span style="color: #FF00FF; font-weight: bold;">function</span> runThisAlways<span style="color: #99FF00;">&#40;</span><span style="color: #99FF00;">&#41;</span><span style="color: #99FF00;">&#123;</span>
		<span style="color: #000066;">alert</span><span style="color: #99FF00;">&#40;</span><span style="color: #3366CC;">'I always run.'</span><span style="color: #99FF00;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #99FF00;">&#125;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>The example is a little verbose I know, but wanted to make sure my point was gotten <img src='http://trickeries.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://trickeries.com/26/situational-javascript-based-on-body-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress database resetter.</title>
		<link>http://trickeries.com/16/wordpress-database-resetter/</link>
		<comments>http://trickeries.com/16/wordpress-database-resetter/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 06:16:57 +0000</pubDate>
		<dc:creator>atom</dc:creator>
				<category><![CDATA[downloads]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://trickeries.com/16/wordpress-database-resetter/</guid>
		<description><![CDATA[I have found that while developing  for wordpress it is often very useful to be able to quickly and easily drop all the working tables and start from scratch, so i whipped up a plugin to do just that.  It will drop every table from the database defined in your wp-config.php that starts [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://trickeries.com/wp-content/uploads/2008/02/db_reset.zip" title="DB Reset plugin"></a>I have found that while developing  for wordpress it is often very useful to be able to quickly and easily drop all the working tables and start from scratch, so i whipped up a plugin to do just that.  It will drop every table from the database defined in your wp-config.php that starts with the defined prefix, when you tell it to of course.  It will then direct you to the last step of the install, where you will need to define your blog title, and your admin email address.</p>
<h2><a href="http://trickeries.com/wp-content/uploads/2008/02/db_reset.zip" title="download the wordpress DB Reset plugin">download DB Reset</a></h2>
<p>here is the code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #FF00FF; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*
Plugin Name: DB Reset
Plugin URI: http://trickeries.com/16/wordpress-database-resetter/
Description: terribly simple plugin to basically drop all of your wordpress tables.
Author: atom smith
Version: 1.0
Author URI: http://trickeries.com/
*/</span>
&nbsp;
&nbsp;
add_action<span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'init'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'db_reset_delete_tables'</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
add_action<span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'admin_menu'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'add_db_reset_sub_menu'</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #FF00FF; font-weight: bold;">function</span> add_db_reset_sub_menu<span style="color: #FF6600;">&#40;</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#123;</span>
	add_submenu_page<span style="color: #FF6600;">&#40;</span><span style="color: #0000ff;">'plugins.php'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'DB Reset'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'DB Reset'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">9</span><span style="color: #339933;">,</span> <span style="color: #FF6600; font-weight: bold;">__FILE__</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'db_reset_output'</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #FF6600;">&#125;</span>
&nbsp;
<span style="color: #FF00FF; font-weight: bold;">function</span> db_reset_output<span style="color: #FF6600;">&#40;</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	&lt;div class=&quot;wrap&quot;&gt;
		&lt;h2&gt;DB Reset&lt;/h2&gt;
		<span style="color: #FF00FF; font-weight: bold;">&lt;?php</span> <span style="color: #00FF00;">if</span><span style="color: #FF6600;">&#40;</span><span style="color: #339933;">!</span><span style="color: #0066FF;">isSet</span><span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$_POST</span><span style="color: #FF6600;">&#91;</span><span style="color: #0000ff;">'db_reset'</span><span style="color: #FF6600;">&#93;</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
			<span style="color: #FF00FF; font-weight: bold;">&lt;?php</span> db_reset_get_tables<span style="color: #FF6600;">&#40;</span><span style="color: #FF6600;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
		<span style="color: #FF00FF; font-weight: bold;">&lt;?php</span> <span style="color: #00FF00;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
	&lt;/div&gt;
&nbsp;
<span style="color: #FF00FF; font-weight: bold;">&lt;?php</span> <span style="color: #FF6600;">&#125;</span>
&nbsp;
<span style="color: #FF00FF; font-weight: bold;">function</span> db_reset_get_tables<span style="color: #FF6600;">&#40;</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#123;</span>
	<span style="color: #FF00FF; font-weight: bold;">global</span> <span style="color: #00FF00;">$wpdb</span><span style="color: #339933;">;</span>
	<span style="color: #00FF00;">$prefixed_tables</span> <span style="color: #339933;">=</span> <span style="color: #00FF00;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #FF0000;">prefix</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'%'</span><span style="color: #339933;">;</span>
	<span style="color: #00FF00;">$tables</span> <span style="color: #339933;">=</span> <span style="color: #00FF00;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #FF0000;">get_results</span><span style="color: #FF6600;">&#40;</span><span style="color: #FF0000;">&quot;show tables LIKE '<span style="color: #006699; font-weight: bold;">$prefixed_tables</span>'&quot;</span><span style="color: #339933;">,</span> ARRAY_A<span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">?&gt;</span>
	&lt;div class=&quot;updated&quot;&gt;&lt;strong&gt;Please make sure that you understand what you are doing before using this.  The following tables will be deleted and replaced:&lt;/strong&gt;
		&lt;ul&gt;
		<span style="color: #FF00FF; font-weight: bold;">&lt;?php</span> <span style="color: #00FF00;">foreach</span><span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$tables</span> <span style="color: #00FF00;">as</span> <span style="color: #00FF00;">$k</span> <span style="color: #339933;">=&gt;</span> <span style="color: #00FF00;">$v</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
			&lt;li&gt;
				<span style="color: #FF00FF; font-weight: bold;">&lt;?php</span> <span style="color: #00FF00;">echo</span> <span style="color: #00FF00;">$tables_to_delete</span><span style="color: #FF6600;">&#91;</span><span style="color: #FF6600;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0066FF;">pos</span><span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$v</span><span style="color: #FF6600;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
			&lt;/li&gt;
		<span style="color: #FF00FF; font-weight: bold;">&lt;?php</span> <span style="color: #00FF00;">endforeach</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;form action=&quot;#&quot; method=&quot;post&quot;&gt;
		<span style="color: #FF00FF; font-weight: bold;">&lt;?php</span> <span style="color: #00FF00;">foreach</span><span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$tables_to_delete</span> <span style="color: #00FF00;">as</span> <span style="color: #00FF00;">$table</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
			&lt;input type=&quot;hidden&quot; name=&quot;delete[]&quot; value=&quot;<span style="color: #FF00FF; font-weight: bold;">&lt;?php</span> <span style="color: #00FF00;">echo</span> <span style="color: #00FF00;">$table</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;
		<span style="color: #FF00FF; font-weight: bold;">&lt;?php</span> <span style="color: #00FF00;">endforeach</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
		&lt;input style=&quot;font-size:100px; width:100%; padding: 20px;&quot; type=&quot;submit&quot; name=&quot;db_reset&quot; value=&quot;Reset DB&quot; /&gt;
	&lt;/form&gt;
<span style="color: #FF00FF; font-weight: bold;">&lt;?php</span>
<span style="color: #FF6600;">&#125;</span>
&nbsp;
<span style="color: #FF00FF; font-weight: bold;">function</span> db_reset_delete_tables<span style="color: #FF6600;">&#40;</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#123;</span>
	<span style="color: #00FF00;">if</span><span style="color: #FF6600;">&#40;</span><span style="color: #0066FF;">isSet</span><span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$_POST</span><span style="color: #FF6600;">&#91;</span><span style="color: #0000ff;">'db_reset'</span><span style="color: #FF6600;">&#93;</span><span style="color: #FF6600;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #00FF00;">$_POST</span><span style="color: #FF6600;">&#91;</span><span style="color: #0000ff;">'db_reset'</span><span style="color: #FF6600;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'Reset DB'</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#123;</span>
		<span style="color: #FF00FF; font-weight: bold;">global</span> <span style="color: #00FF00;">$wpdb</span><span style="color: #339933;">;</span>
		<span style="color: #00FF00;">if</span><span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #FF0000;">prefix</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">''</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#123;</span>
			<span style="color: #00FF00;">foreach</span><span style="color: #FF6600;">&#40;</span><span style="color: #00FF00;">$_POST</span><span style="color: #FF6600;">&#91;</span><span style="color: #0000ff;">'delete'</span><span style="color: #FF6600;">&#93;</span> <span style="color: #00FF00;">as</span> <span style="color: #00FF00;">$table</span><span style="color: #FF6600;">&#41;</span><span style="color: #FF6600;">&#123;</span>
				<span style="color: #00FF00;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #FF0000;">query</span><span style="color: #FF6600;">&#40;</span><span style="color: #FF0000;">&quot;DROP TABLE <span style="color: #006699; font-weight: bold;">$table</span>&quot;</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #FF6600;">&#125;</span>
			<span style="color: #00FF00;">$location</span> <span style="color: #339933;">=</span> <span style="color: #FF0000;">&quot;..&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #FF6600;">&#125;</span>
		<span style="color: #0066FF;">header</span><span style="color: #FF6600;">&#40;</span><span style="color: #FF0000;">&quot;Location: <span style="color: #006699; font-weight: bold;">$location</span>&quot;</span><span style="color: #FF6600;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #FF6600;">&#125;</span>
<span style="color: #FF6600;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://trickeries.com/16/wordpress-database-resetter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
