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

<channel>
	<title>sizzo.org &#187; screen</title>
	<atom:link href="http://sizzo.org/wp/author/screen/feed" rel="self" type="application/rss+xml" />
	<link>http://sizzo.org/wp</link>
	<description></description>
	<pubDate>Fri, 29 Aug 2008 19:55:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Making cd a tad bit smarter.</title>
		<link>http://sizzo.org/wp/2008/08/making-cd-a-tad-bit-smarter</link>
		<comments>http://sizzo.org/wp/2008/08/making-cd-a-tad-bit-smarter#comments</comments>
		<pubDate>Fri, 29 Aug 2008 01:33:30 +0000</pubDate>
		<dc:creator>screen</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<category><![CDATA[alias]]></category>

		<category><![CDATA[bash]]></category>

		<category><![CDATA[cd]]></category>

		<guid isPermaLink="false">http://sizzo.org/wp/?p=42</guid>
		<description><![CDATA[I just realized that I spend way to much time taking a full path w/ filename and then deleting the filename portion after pasting into cd. So here&#8217;s a little .bash_profile function that you can alias to cd to make a bit smarter.


function _cd &#123;
  if &#91;&#91; -n $1 &#93;&#93;; then
    [...]]]></description>
			<content:encoded><![CDATA[<p>I just realized that I spend way to much time taking a full path w/ filename and then deleting the filename portion after pasting into cd. So here&#8217;s a little .bash_profile function that you can alias to cd to make a bit smarter.</p>
<div style="width: 450px">

<div class="wp_syntax"><div class="code"><pre class="bash bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> _cd <span style="color: #7a0874; font-weight: bold;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-n</span> $<span style="color: #000000;">1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
    <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-L</span> $<span style="color: #000000;">1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
      <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;`stat -L $1 -c %F`&quot;</span> <span style="color: #000000; font-weight: bold;">!</span>= <span style="color: #ff0000;">'directory'</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #007800;">CDIR</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">dirname</span> $<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">`</span>
    <span style="color: #000000; font-weight: bold;">elif</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-d</span> $<span style="color: #000000;">1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
      <span style="color: #007800;">CDIR</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">dirname</span> $<span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">`</span>
      <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;$CDIR&quot;</span> == <span style="color: #ff0000;">&quot;.&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">unset</span> CDIR
    <span style="color: #000000; font-weight: bold;">fi</span>
  <span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
  <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-n</span> <span style="color: #ff0000;">&quot;$CDIR&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
    <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #007800;">$CDIR</span>
  <span style="color: #000000; font-weight: bold;">else</span>
    <span style="color: #7a0874; font-weight: bold;">cd</span> $<span style="color: #000000;">1</span>
  <span style="color: #000000; font-weight: bold;">fi</span>
  <span style="color: #7a0874; font-weight: bold;">unset</span> CDIR
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;"><span style="color: #7a0874; font-weight: bold;">cd</span></span>=<span style="color: #ff0000;">&quot;_cd&quot;</span></pre></div></div>

</div>
<p>This should allow you to use cd normall but when you do the following it will put you in the directory that httpd.conf is in:</p>
<pre style="background-color: black; color: white;">

sizzo:~ screen$ cd /usr/local/apache/conf/httpd.conf
sizzo:/usr/local/apache/conf screen$
<br/>
</pre>
<p>If you use or expand this please share your experience! There are a couple known issues such as reverse traversing across links from within link directories, not sure if there&#8217;s a way around this yet. I&#8217;ll update as issues may arise.</p>
]]></content:encoded>
			<wfw:commentRss>http://sizzo.org/wp/2008/08/making-cd-a-tad-bit-smarter/feed</wfw:commentRss>
		</item>
		<item>
		<title>OSCON 2008</title>
		<link>http://sizzo.org/wp/2008/07/oscon-2008</link>
		<comments>http://sizzo.org/wp/2008/07/oscon-2008#comments</comments>
		<pubDate>Wed, 09 Jul 2008 09:36:07 +0000</pubDate>
		<dc:creator>screen</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://sizzo.org/wp/?p=25</guid>
		<description><![CDATA[I&#8217;m happy to be heading to Portland to speak at OSCON in two weeks where I&#8217;ll be presenting my performance caching talk for the last time. If you haven&#8217;t had a chance to see it yet I hope I&#8217;ll see you there. Hrm, now i&#8217;ll need to think of something new to talk about&#8230;
Update: Slides [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://conferences.oreilly.com/oscon"><img src="http://conferences.oreillynet.com/banners/oscon/speaker/oscon2008_banner_speaker_210x60.gif" width="210" height="60"  border="0"  alt="OSCON 2008" title="OSCON 2008"  align="right" style="margin: 0px 0px 10px 10px;" /></a>I&#8217;m happy to be heading to Portland to speak at OSCON in two weeks where I&#8217;ll be presenting my performance caching talk for the last time. If you haven&#8217;t had a chance to see it yet I hope I&#8217;ll see you there. Hrm, now i&#8217;ll need to think of something new to talk about&#8230;</p>
<p><strong>Update</strong>: <a href="http://sizzo.org/wp/talks/">Slides</a> are now available.</p>
]]></content:encoded>
			<wfw:commentRss>http://sizzo.org/wp/2008/07/oscon-2008/feed</wfw:commentRss>
		</item>
		<item>
		<title>Japanese Verb Conjugation</title>
		<link>http://sizzo.org/wp/2008/07/japanese-verb-conjugation</link>
		<comments>http://sizzo.org/wp/2008/07/japanese-verb-conjugation#comments</comments>
		<pubDate>Tue, 08 Jul 2008 11:12:57 +0000</pubDate>
		<dc:creator>screen</dc:creator>
		
		<category><![CDATA[Japanese]]></category>

		<category><![CDATA[て Form]]></category>

		<category><![CDATA[Chart]]></category>

		<category><![CDATA[Nihongo]]></category>

		<category><![CDATA[Te Form]]></category>

		<category><![CDATA[Verb Conjugation]]></category>

		<category><![CDATA[日本語]]></category>

		<guid isPermaLink="false">http://sizzo.org/wp/?p=22</guid>
		<description><![CDATA[Japanese Intermediate 2 began last week at Soko Gakuen and I&#8217;ve been preparing for a while to dive more into verb conjugations. It doesn&#8217;t look like we&#8217;ll be going terribly far with them just yet but I&#8217;ll be ready with the new verb conjugation charts that I&#8217;ve been compiling. I&#8217;m posting the first two charts [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://sizzo.org/wp/wp-content/uploads/2008/07/verb_conjugation.png" alt="" title="verb_conjugation" width="55" height="435" align="left" class="alignleft size-full wp-image-23" />Japanese Intermediate 2 began last week at <a href="http://sokogakuen.org">Soko Gakuen</a> and I&#8217;ve been preparing for a while to dive more into verb conjugations. It doesn&#8217;t look like we&#8217;ll be going terribly far with them just yet but I&#8217;ll be ready with the new verb conjugation charts that I&#8217;ve been compiling. I&#8217;m posting the first two charts as they might be useful to other students.</p>
<ul>
<li>Japanese Verb Conjugation Chart (<a href="http://sizzo.org/~screen/nihongo/japanese_verb_conjugation_chart.pdf">PDF</a>) (<a href="http://sizzo.org/~screen/nihongo/japanese_verb_conjugation_chart.xhtml">XHTML</a>) (<a href="http://www.scribd.com/doc/3871813/Japanese-Verb-Conjugation-Chart">Scribd</a>)</li>
<li>て(te) Form Conjugation Chart (<a href="http://sizzo.org/~screen/nihongo/japanese_te_form_chart.pdf">PDF</a>) (<a href="http://sizzo.org/~screen/nihongo/japanese_te_form_chart.xhtml">XHTML</a>) (<a href="http://www.scribd.com/doc/3871844/Japanese-te-Form-Chart">Scribd</a>)</li>
</ul>
<p>These are a works progress and if you see any mistakes, please <a href="http://sizzo.org/wp/about/">contact</a> me. The main chart should contain most conjugations used in modern japanese and I plan to add more useful compound verbs in the future, as I learn them. I&#8217;ve collapsed some rows so the chart would fit on one page, these are indicated by the numeric references in the &#8216;Pre&#8217; column.</p>
<p>The XHTML charts may not display properly, if at all (Internet Explorer) on Windows, and the PDF versions are formatted for printing on A4 paper. </p>
<p>The charts were compiled with information from the following great resources:</p>
<ul>
<li><a href="http://www.epochrypha.com/japanese/verbs/verbs.html">Collin McCulley&#8217;s Japanese Verbs Page</a></li>
<li><a href="http://www.nihongoresources.com/resources/books.html">An Introduction to Japanese Syntax, Grammar and Language (PDF)</a></li>
<li><a href="http://www.csse.monash.edu.au/~jwb/wwwjdic.html">Jim Breen&#8217;s WWWJDIC Japanese Dictionary</a></li>
<li>and many others</li>
</ul>
<p><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://sizzo.org/wp/2008/07/japanese-verb-conjugation/feed</wfw:commentRss>
		</item>
		<item>
		<title>A Nihongo Note</title>
		<link>http://sizzo.org/wp/2007/12/a-nihongo-note</link>
		<comments>http://sizzo.org/wp/2007/12/a-nihongo-note#comments</comments>
		<pubDate>Tue, 11 Dec 2007 08:02:43 +0000</pubDate>
		<dc:creator>screen</dc:creator>
		
		<category><![CDATA[Japanese]]></category>

		<category><![CDATA[Interpunct]]></category>

		<category><![CDATA[Katakana]]></category>

		<category><![CDATA[Keyboard]]></category>

		<category><![CDATA[Kotoeri]]></category>

		<category><![CDATA[Middle Dot]]></category>

		<category><![CDATA[Nakaguro]]></category>

		<category><![CDATA[Nihongo]]></category>

		<guid isPermaLink="false">http://sizzo.org/wp/2007/12/11/a-nihongo-note/</guid>
		<description><![CDATA[I just finished taking my Japanese final for Beginning 2 and thought I&#8217;d post a little tidbit. Earlier today I managed to spend about 30 minutes figuring out how to input the interpunct character that is used to separate transcribed foreign words written in Katakana like オペレーティング・システム (operating system). In unicode this ・little guy・ is [...]]]></description>
			<content:encoded><![CDATA[<p><img align="right" style="padding-bottom: 5px" id="image20" src="http://sizzo.org/wp/wp-content/uploads/2007/12/katakana_middle_dot.thumbnail.gif" alt="Katakana Middle Dot (Interpunct)" />I just finished taking my Japanese final for Beginning 2 and thought I&#8217;d post a little tidbit. Earlier today I managed to spend about 30 minutes figuring out how to input the interpunct character that is used to separate transcribed foreign words written in Katakana like オペレーティング・システム (operating system). In unicode this ・little guy・ is called the &#8216;katakana middle dot&#8217; or in Japanese, nakaguro. How to input this character in OSX seems to be completely undocumented. In hopes of saving someone this precious time, the kotoeri key combination to use, in kana mode, is ⌥+/ (option/alt + forward slash). You can also enter なかぐろ+[space] <img src='http://sizzo.org/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://sizzo.org/wp/2007/12/a-nihongo-note/feed</wfw:commentRss>
		</item>
		<item>
		<title>DCPHP Talk</title>
		<link>http://sizzo.org/wp/2007/11/dcphp-talk</link>
		<comments>http://sizzo.org/wp/2007/11/dcphp-talk#comments</comments>
		<pubDate>Sat, 24 Nov 2007 08:53:17 +0000</pubDate>
		<dc:creator>screen</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[DCPHP]]></category>

		<category><![CDATA[Facebook]]></category>

		<category><![CDATA[OmniTI]]></category>

		<guid isPermaLink="false">http://sizzo.org/wp/2007/11/24/dcphp-talk/</guid>
		<description><![CDATA[I&#8217;ve been traveling a lot and almost forgot to get up the slides from my talk in DC a couple weeks ago. If you&#8217;d like to check out the slides, they are available in the Talks section. I had a great time giving this talk and meeting the great DC PHP guys as well as [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been traveling a lot and almost forgot to get up the slides from my talk in DC a couple weeks ago. If you&#8217;d like to check out the slides, they are available in the <a href="http://sizzo.org/talks/">Talks</a> section. I had a great time giving this talk and meeting the great DC PHP guys as well as hanging out with some of the OmniTI folks.</p>
<p><img id="image13" src="http://sizzo.org/wp/wp-content/uploads/2007/11/dcphpconference2007.png" alt="DCPHP2007" /></p>
]]></content:encoded>
			<wfw:commentRss>http://sizzo.org/wp/2007/11/dcphp-talk/feed</wfw:commentRss>
		</item>
		<item>
		<title>You&#8217;re Source Code is Showing</title>
		<link>http://sizzo.org/wp/2007/09/youre-source-code-is-showing</link>
		<comments>http://sizzo.org/wp/2007/09/youre-source-code-is-showing#comments</comments>
		<pubDate>Tue, 25 Sep 2007 06:21:31 +0000</pubDate>
		<dc:creator>screen</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Apache]]></category>

		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://sizzo.org/wp/2007/09/24/youre-source-code-is-showing/</guid>
		<description><![CDATA[We&#8217;ve all seen Apache serve up some source code when it should have been parsing PHP, or whatever you&#8217;re server side language of choice is, but what can we do to prevent it?
Although it seems improbable I have seen a case where this could be attributed to achieving a mysteriously unstable Apache or PHP state. [...]]]></description>
			<content:encoded><![CDATA[<p><img align="left" style="margin: 0px 10px 3px 0px" alt="01-021-sm.jpg" id="image15" src="http://sizzo.org/wp/wp-content/uploads/2007/09/01-021-sm.thumbnail.jpg" />We&#8217;ve all seen Apache serve up some source code when it should have been parsing PHP, or whatever you&#8217;re server side language of choice is, but what can we do to prevent it?</p>
<p>Although it seems improbable I have seen a case where this could be attributed to achieving a mysteriously unstable Apache or PHP state. This particular server happened to be mis-configured to load <a target="_blank" title="APC Manual Page" href="http://www.php.net/apc">APC</a> as a shared object even though it was already compiled into PHP statically. I recently tried to reproduce this but failed when running a recent build of APC. I do know, however, that removing the erroneous apc.so solved the problem.</p>
<p>We, at Facebook, recently encountered a similar issue resulting in the same outcome. It was the middle of August when I got a message from a user wondering why we were showing him &#8216;codes&#8217; instead of search results when he was searching for a friend. He was able to reach me because my email address is in the first 10 lines of the source code for s.php. This source code was visible to him rather than the search results he was looking for so I dropped everything to try and figure out why.</p>
<p>This shouldn&#8217;t have been possible running the Apache modifications we have in place. We had already patched Apache to detect requested PHP extensions that return a non-handled response, preventing source code from being returned. Although similar results can be achieved using an Apache module such as mod_security, this module only supports output filtering in Apache 2. We decided to patch Apache 1.3 directly which has the added benefit of averting a potential configuration error. This patch for Apache 1.3.37/1.3.39 is now available <a title="Apache Source Defense Patch" href="http://tekrat.com/2007/09/24/apache-source-defense/">here</a>.</p>
<p>After looking at every possible angle, I was unable to configure our Apache build to serve source code even if we wanted to. What we eventually found was a single server running a standard distribution build of Apache in our production pool of several thousand web severs. A lot has been posted online blaming PHP for this, however, the server that we eventually found was not running PHP. In order to criticize PHP we should scrutinize the implementation details of the language itself and eschew the attributes that are common among all web server programming languages.</p>
<p>These sorts of issues can and do happen to anyone, large or small, so what can you do to minimize the damage when this situation arises? As I mentioned earlier, you can use a module like mod_security and it&#8217;s response parsing features, however this does not come free of cost. You&#8217;ll need to be running Apache 2.x and if you are concerned with PHP performance this is not a good choice today, see Ilia Alshanetsky&#8217;s article <a target="_blank" title="Apache 1 vs Apache 2 Performance" href="http://ilia.ws/archives/32-Apache-1-vs-Apache-2-Performance.html">Apache 1 vs Apache 2 Performance</a>. If you&#8217;re already running Apache 1.x you can take a look at our patch but you can also do more, like abstract all PHP pages by implementing an include which evaluates code outside of the document root:</p>
<p><code>/siteroot/docroot/index.php:<br />
include_once '/siteroot/site/index.php';  // point to the real index.php<br />
?></code></p>
<p>Although not absolutely preventing source code leaks, this method, proposed in the blog <a target="_blank" href="http://www.nik.com.au/archives/2007/08/11/learning-from-facebook-preventing-php-leakage">New Web Order</a>, is sound advice and minimizes risk when an exposure occurs. In an optimized APC environment, where <a title="APC stat=0 description" href="http://www.php.net/apc#ini.apc.stat">apc.stat=0</a>, this added abstraction should come at little to no cost in performance.</p>
<p>Simple problems such as this can affect anyone large or small and as the complexity of an environment increases it requires more robust auditing and monitoring. Open source monitoring toolkits largely lack the necessary features to scale in support of these environments so it is essential that we continue to build and improve these systems internally to prevent and detect problems like this. If you are interested in building these types of systems with us or working on PHP with us, feel free to contact me or checkout <a target="_blank" title="Facebook Jobs" href="http://www.facebook.com/jobs/">Facebook Jobs</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sizzo.org/wp/2007/09/youre-source-code-is-showing/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP&#124;works Talk</title>
		<link>http://sizzo.org/wp/2007/09/phpworks-talk</link>
		<comments>http://sizzo.org/wp/2007/09/phpworks-talk#comments</comments>
		<pubDate>Fri, 14 Sep 2007 18:47:27 +0000</pubDate>
		<dc:creator>screen</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Facebook]]></category>

		<category><![CDATA[PHP|Works]]></category>

		<category><![CDATA[Terry Chay]]></category>

		<guid isPermaLink="false">http://sizzo.org/wp/2007/09/14/phpworks-talk/</guid>
		<description><![CDATA[I did my first PHP conference talk yesterday at PHP&#124;works. I think it went pretty well considering it was my first for this presentation. If you&#8217;d like to check it out the slides are available in my new Talks section. Now back to being entertained by Terry Chay&#8217;s talk.

]]></description>
			<content:encoded><![CDATA[<p>I did my first PHP conference talk yesterday at <a href="http://works.phparch.com/c/p/index" target="_blank">PHP|works</a>. I think it went pretty well considering it was my first for this presentation. If you&#8217;d like to check it out the slides are available in my new <a href="http://sizzo.org/talks/">Talks</a> section. Now back to being entertained by <a href="http://terrychay.com/blog/" target="_blank" title="Thats fucking viral">Terry Chay&#8217;s</a> talk.</p>
<p><img id="image12" src="http://sizzo.org/wp/wp-content/uploads/2007/09/phpworks2007.thumbnail.png" alt="PHP|works" /></p>
]]></content:encoded>
			<wfw:commentRss>http://sizzo.org/wp/2007/09/phpworks-talk/feed</wfw:commentRss>
		</item>
		<item>
		<title>From the Archives</title>
		<link>http://sizzo.org/wp/2007/03/from-the-archives</link>
		<comments>http://sizzo.org/wp/2007/03/from-the-archives#comments</comments>
		<pubDate>Wed, 28 Mar 2007 08:04:38 +0000</pubDate>
		<dc:creator>screen</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<category><![CDATA[Crossword]]></category>

		<category><![CDATA[Puzzle]]></category>

		<guid isPermaLink="false">http://sizzo.org/wp/2007/03/28/from-the-archives/</guid>
		<description><![CDATA[I&#8217;m digging deep in the archives for this one, inspired by a coworker&#8217;s own note about crosswords. His recent publication in the New York Times brought back the painfull memory of my own rejection. In light of this I have unearthed my own failed submission to the Times for your consumption.

If I recall, I had rated this at about a Wendnesday&#8217;s difficulty [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m digging deep in the archives for this one, inspired by a coworker&#8217;s own note about crosswords. His recent publication in the New York Times brought back the painfull memory of my own rejection. In light of this I have unearthed my own failed submission to the Times for your consumption.</p>
<p><a href="http://sizzo.org/wp/wp-content/uploads/2007/03/xword_01-16-2003_lucas_nealan.pdf" title="xword_01-16-2003_lucas_nealan.pdf"><img align="left" id="image7" src="http://sizzo.org/wp/wp-content/uploads/2007/03/xword_preview.thumbnail.jpg" alt="xword_preview.jpg" style="padding-right: 10px; padding-bottom: 10px; border:0px;" /></a></p>
<p>If I recall, I had rated this at about a Wendnesday&#8217;s difficulty but I&#8217;m not entirely positive. If you take the time to do this then I apologize in advance for the two page pdf format. This is the only format I currently have available.</p>
<p>Also, it&#8217;s not too late to see Will Shortz speak at UC Berkely this may. Tickets are still <a href="http://www.calperfs.berkeley.edu/presents/season/2006/speaking/ws.php">available here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sizzo.org/wp/2007/03/from-the-archives/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
