<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xml:lang="ja">

  <channel>
    <title>SIMPRAIGHT</title>
    <link>http://blog.simpraight.com/</link>
    <description>BLOG,SIMPRAIGHT,2007</description>
    <dc:creator>simpraight</dc:creator>
<![CDATA[
    <image>
      <url></url>
      <title>SIMPRAIGHT</title>
      <link>http://blog.simpraight.com/</link>
    </image>
]]>
    <item>
      <title>はてなに</title>
      <link>http://blog.simpraight.com/entry/54</link>
      <description><![CDATA[
      引っ越しまう。<br />
<br />
<a href="http://d.hatena.ne.jp/simpraight/" target="_blank">http://d.hatena.ne.jp/simpraight/</a>
      ]]></description>
      <dc:creator>simpraight</dc:creator>
      <pubDate>Sun, 22 Apr 2007 20:17:52 GMT</pubDate>
    </item>
    <item>
      <title>ついったー</title>
      <link>http://blog.simpraight.com/entry/53</link>
      <description><![CDATA[
      遅ればせながらTwitterおもしろい。まだFriendをaddしまくる勇気はないです。<br />
<br />
なにしろ一言なのでめんどくさくないですし、ちょっと重いので嵌りすぎることもなく丁度良い感じなのでしばらく続けてみよっと。<br />
<br />
まぁしかしみんな遅くまで働いてるなー。
      ]]></description>
      <dc:creator>simpraight</dc:creator>
      <pubDate>Thu, 19 Apr 2007 23:42:39 GMT</pubDate>
    </item>
    <item>
      <title>ジョンダ流開運法</title>
      <link>http://blog.simpraight.com/entry/52</link>
      <description><![CDATA[
      今朝、自販機でコーヒー買ったら「もう一本おまけ」が当たりました。<br />
<br />
その後、「帰りの船賃が１円足りない」「突然車がパンクする」という不幸に見舞われました。<br />
<br />
120円分の幸福の見返りとしてはあんまりではないかと。
      ]]></description>
      <dc:creator>simpraight</dc:creator>
      <pubDate>Thu, 12 Apr 2007 21:42:15 GMT</pubDate>
    </item>
    <item>
      <title>PHPのURLマッピング</title>
      <link>http://blog.simpraight.com/entry/51</link>
      <description><![CDATA[
      <h4>.htaccess<br /></h4><br />
<pre>Options +FollowSymLinks<br />IndexIgnore */*<br />RewriteEngine On<br />RewriteCond %{REQUEST_FILENAME} !-f [OR]<br />RewriteCond %{REQUEST_FILENAME} !-d<br />RewriteRule . index.php</pre><br />
<h4>index.php<br /></h4><br />
<pre>base = parse_url($_SERVER['SCRIPT_NAME']);<br />$uri  = parse_url($_SERVER['REQUEST_URI']);<br />$base = split('/', $base['path']);<br />$uri  = split('/', $uri['path']);<br />$params = array_values(array_diff_assoc($uri, $base));</pre><br />
<br />
これでおｋ？
      ]]></description>
      <dc:creator>simpraight</dc:creator>
      <pubDate>Wed, 04 Apr 2007 22:22:18 GMT</pubDate>
    </item>
    <item>
      <title>macbookメモリ増設記念</title>
      <link>http://blog.simpraight.com/entry/50</link>
      <description><![CDATA[
      色々やりすぎてもっさりしてきたのと、1GBのメモリが安く手に入りそうだったのでmacbookのメモリを2GBにしたよ記念。<br />
メモリの付け替えがトリッキーすぎる。ネジ山つぶしそうになった。
      ]]></description>
      <dc:creator>simpraight</dc:creator>
      <pubDate>Tue, 03 Apr 2007 19:43:17 GMT</pubDate>
    </item>
    <item>
      <title>Vistaのフォント</title>
      <link>http://blog.simpraight.com/entry/49</link>
      <description><![CDATA[
      ＭＳゴシック系が明らかにダサい。文字組とかがすごい中途半端な感じです。<br />
<br />
とくに小さいサイズの「2」のダサさは異常。
      ]]></description>
      <dc:creator>simpraight</dc:creator>
      <pubDate>Mon, 12 Mar 2007 21:46:42 GMT</pubDate>
    </item>
    <item>
      <title>このコマンドを処理するのに必要な記憶域をサーバーに確保できません</title>
      <link>http://blog.simpraight.com/entry/48</link>
      <description><![CDATA[
      レジストリエディタで<br />
<br />
HKLM\System\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters\IRPStackSize<br />
<br />
を<br />
<br />
10進で12とか15とかに設定すればおｋ。たぶん悪いのはノートン先生。悪気はないと思う。
      ]]></description>
      <dc:creator>simpraight</dc:creator>
      <pubDate>Mon, 05 Mar 2007 17:57:34 GMT</pubDate>
    </item>
    <item>
      <title>正規表現</title>
      <link>http://blog.simpraight.com/entry/47</link>
      <description><![CDATA[
      正規表現の<br />
<br />
　　?&gt;<br />
<br />
の存在を知らずにかなり嵌る。<br />
<br />
<br /><blockquote>(?&gt;pattern)<br />
<br />
    一旦マッチした部分正規表現をバックトラックすることのないパターンです。したがって、(?&gt;a+)abは何にもマッチしません。カッコ内のパターンがすべてのaを消費し、それを手放さないためです。<br />
<br />
<a href="http://www.kt.rim.or.jp/~kbk/regex/regex.html#NOBT" target="_blank">http://www.kt.rim.or.jp/~kbk/regex/regex.html#NOBT</a></blockquote>
      ]]></description>
      <dc:creator>simpraight</dc:creator>
      <pubDate>Fri, 23 Feb 2007 22:45:05 GMT</pubDate>
    </item>
    <item>
      <title>ローカルホストのCookie</title>
      <link>http://blog.simpraight.com/entry/46</link>
      <description><![CDATA[
      localhostでcookie使おうとしたときに正常に保存されない。<br />
<br />
cookieのdomainの値に通常は許可するアクセス元ドメインを設定するワケですが、localhostの場合素直にdomain=localhostにしちゃうとダメらしい。しりませんでした。<br />
<br />
PHPのsetcookieの場合、<br />
<pre>setcookie(<br />  'cookiename',<br />  'cookievalue',<br />  strtotime(&quot;+1 hour&quot;),<br />  '/',<br />  'localhost'<br />);</pre><br />
とかしちゃうとだめで、<br />
<pre>setcookie(<br />  'cookiename',<br />  'cookievalue',<br />  strtotime(&quot;+1 hour&quot;),<br />  '/',<br />  <span style='color:red;'>false</span><br />);</pre><br />
と書けばおｋ。
      ]]></description>
      <dc:creator>simpraight</dc:creator>
      <pubDate>Wed, 21 Feb 2007 20:54:24 GMT</pubDate>
    </item>
    <item>
      <title>Safariのデバッグメニューを有効にする</title>
      <link>http://blog.simpraight.com/entry/45</link>
      <description><![CDATA[
      <pre>defaults write com.apple.Safari IncludeDebugMenu -bool true</pre><br />
でいけるらしい。知らなんだ。
      ]]></description>
      <dc:creator>simpraight</dc:creator>
      <pubDate>Mon, 19 Feb 2007 22:43:58 GMT</pubDate>
    </item>
  </channel>
</rss>
