<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>ハマピンー横浜から地域情報化へ</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/" />
    <link rel="self" type="application/atom+xml" href="http://hamapin.com/weblog/atom.xml" />
    <id>tag:hamapin.com,2008-07-02:/weblog//1</id>
    <updated>2008-08-13T22:34:38Z</updated>
    <subtitle>自分の経験を生かし横浜で地域情報化に取り組んでいます</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.12</generator>

<entry>
    <title>Zend FrameWork 1.5 - Smartyの組込み</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/08/zend-framework-15-smarty.html" />
    <id>tag:hamapin.com,2008:/weblog//1.32</id>

    <published>2008-08-13T00:31:14Z</published>
    <updated>2008-08-13T22:34:38Z</updated>

    <summary>Zend FrameWorkを使用してみる事にしたがテンプレートエンジンはSma...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="php" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="php" label="php" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="smarty" label="smarty" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="zendframework" label="Zend FrameWork" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[<p>Zend FrameWorkを使用してみる事にしたがテンプレートエンジンはSmartyを使いたい<br />
そこで調べてみると出来るみたい<br />
このサイト参考にチャレンジ開始<br />
http://wadslab.net/2008/03/zend_view_smarty/<br />
・Smartyラッパーの作成<br />
&nbsp;&nbsp;application/lib/ViewSmarty.phpを作成<br />
&nbsp; 内容は参考サイトより<br />
<div style="border:solid 1px #000000;"><br />
<pre><br />
require_once 'Zend/View/Interface.php';<br />
require_once 'Smarty/Smarty.class.php';<br />
 <br />
class ViewSmarty implements Zend_View_Interface<br />
{<br />
    protected $_smarty;<br />
 <br />
    public function __construct($tmplPath = null, $extraParams = array())<br />
    {<br />
        $this->_smarty = new Smarty;<br />
 <br />
        if (null !== $tmplPath) {<br />
            $this->setScriptPath($tmplPath);<br />
        }<br />
 <br />
        foreach ($extraParams as $key => $value) {<br />
            $this->_smarty->$key = $value;<br />
        }<br />
 <br />
        $this->_smarty->default_modifiers=array('sanitize');<br />
    }<br />
 <br />
    public function getEngine()<br />
    {<br />
        return $this->_smarty;<br />
    }<br />
 <br />
    public function setScriptPath($path)<br />
    {<br />
        if (is_readable($path)) {<br />
            $this->_smarty->template_dir = $path;<br />
            return;<br />
        }<br />
 <br />
        throw new Exception('無効なパスが指定されました:'.$path);<br />
    }<br />
 <br />
    public function getScriptPaths()<br />
    {<br />
        return array($this->_smarty->template_dir);<br />
    }<br />
 <br />
    public function setBasePath($path, $prefix = 'Zend_View')<br />
    {<br />
        return $this->setScriptPath($path);<br />
    }<br />
 <br />
    public function addBasePath($path, $prefix = 'Zend_View')<br />
    {<br />
        return $this->setScriptPath($path);<br />
    }<br />
 <br />
    public function __set($key, $val)<br />
    {<br />
        $this->_smarty->assign($key, $val);<br />
    }<br />
 <br />
    public function __get($key)<br />
    {<br />
        return $this->_smarty->get_template_vars($key);<br />
    }<br />
 <br />
    public function __isset($key)<br />
    {<br />
        return (null !== $this->_smarty->get_template_vars($key));<br />
    }<br />
 <br />
    public function __unset($key)<br />
    {<br />
        $this->_smarty->clear_assign($key);<br />
    }<br />
 <br />
    public function assign($spec, $value = null)<br />
    {<br />
        if (is_array($spec)) {<br />
            $this->_smarty->assign($spec);<br />
            return;<br />
        }<br />
 <br />
        $this->_smarty->assign($spec, $value);<br />
    }<br />
 <br />
    public function clearVars()<br />
    {<br />
        $this->_smarty->clear_all_assign();<br />
    }<br />
 <br />
    public function render($name)<br />
    {<br />
        return $this->_smarty->fetch($name);<br />
    }<br />
 <br />
    public function getVars()<br />
    {<br />
        $vars = $this->_smarty->get_template_vars();<br />
        unset($vars["SCRIPT_NAME"]);<br />
        return $vars;<br />
    }<br />
}<br />
</pre><br />
</div><br />
<br/><br />
・templates,template_cの作成<br />
<div style="border:solid 1px #000000;">     &nbsp;&nbsp;application/templates<br/><br />
&nbsp;&nbsp;application/template_c<br/><br />
</div><br />
<br/><br />
・ViewRendererアクションヘルパーに組み込まずに使用<br />
<div style="border:solid 1px #000000;"><br />
<pre><br />
$this->_helper->viewRenderer->setNoRender(true);<br />
$tmplete_dir = "path";<br />
$opt = array(<br />
&nbsp;"compile_dir"  => "path"<br />
);<br />
$view = new ViewSmarty($tmplete_dir, $opt);<br />
$view->assign("bar", "bar");      <br />
$rendered = $view->render('index.tpl');<br />
print $rendered<br />
</pre><br />
</div><br />
<br/></p>

<p>・ViewSmartyクラスをViewRendererアクションヘルパーに組み込みは以下のエラー理由が分からず断念<br />
<div style="border:solid 1px #000000;"><br />
Warning: Smarty error: unable to read resource: "index.tpl" in Smarty.class.php on line 1092<br />
</div></p>

<p><br />
</p>]]>
        
    </content>
</entry>

<entry>
    <title>同窓会</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/08/post-7.html" />
    <id>tag:hamapin.com,2008:/weblog//1.31</id>

    <published>2008-08-11T10:24:27Z</published>
    <updated>2008-08-11T10:42:12Z</updated>

    <summary>見てくれてるかな？？みなさん昨日はお疲れ様でした４年に一度だけど会うとまた会いた...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="日記" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[見てくれてるかな？？<br /><br />みなさん昨日はお疲れ様でした<br />４年に一度だけど会うとまた会いたくなるね、それが良いのかな？<br />（とか言って積極的じゃないくせにって僕のことを思っている人もいるでしょう・・・・）<br /><br />会えた友達、会えなかった友達へ、いろいろ書いてみたいけど書くのは止めよう。<br />一時だけだから良いのかも・・・それが同窓会かな？<br /><br />また４年後の再会を楽しみにしています。<br /><br />頑張ろう！！<br /><br /><br /><br /><br /><br /><br /><br /> ]]>
        
    </content>
</entry>

<entry>
    <title>言い訳にショック</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/08/post-6.html" />
    <id>tag:hamapin.com,2008:/weblog//1.30</id>

    <published>2008-08-06T09:13:17Z</published>
    <updated>2008-08-06T09:33:05Z</updated>

    <summary>６月末から７月にかけ、５グループに分け勉強会を開催してもらい、本日その評価レポー...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="日記" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[６月末から７月にかけ、５グループに分け勉強会を開催してもらい、本日その評価レポートが届いた。<br /><br />受講者のレベルが予想以上に低いため、コストがOverすることは、事前に状況を聞いていたのでショックは受けなかったが、評価でショックを受けた。<br /><br />評価者（トレーナー）の年齢は３０歳だが、今後に生かすための評価ではなく「依頼ミス」と責任転換してきた。目的はコストより効率性や費用分配を求め弱点をしり次回に生かしたかったが役に立たない。<br /><br />依頼ミスかも知れないが受けた以上は責任が発生し、少なからず評価者にも原因があるはずなのに自分の評価はない。<br /><br />これが評価レポートと言えるか？<br /><br /><br /> ]]>
        
    </content>
</entry>

<entry>
    <title>iPhone　バッテリー</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/08/iphone-1.html" />
    <id>tag:hamapin.com,2008:/weblog//1.29</id>

    <published>2008-08-04T22:30:07Z</published>
    <updated>2008-08-04T22:32:19Z</updated>

    <summary>iPhoneのバッテリーを長持ちさせるために、いろいろ試みるhttp://ipo...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="日記" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="iphone" label="iphone" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[iPhoneのバッテリーを長持ちさせるために、いろいろ試みる<br /><br /><a href="http://ipodtouchlab.com/2008/07/iphone-3g12-1.html">http://ipodtouchlab.com/2008/07/iphone-3g12-1.html</a><br /><br />]]>
        
    </content>
</entry>

<entry>
    <title>MT4にiPhoneプラグインを追加</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/08/mt4iphone.html" />
    <id>tag:hamapin.com,2008:/weblog//1.28</id>

    <published>2008-08-01T00:50:51Z</published>
    <updated>2008-08-01T00:58:49Z</updated>

    <summary>写真は出来ないようですが、とりあえずOKです Movable Type 4 を ...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="日記" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="iphone" label="iphone" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="mt4" label="mt4" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[写真は出来ないようですが、とりあえずOKです<br /><br />
<a href="http://www.movabletype.jp/documentation/appendices/imt.html">Movable Type 4 を iPod touch または iPhone で利用する</a><br /> ]]>
        
    </content>
</entry>

<entry>
    <title>iPhoneからPOST</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/08/iphonepost.html" />
    <id>tag:hamapin.com,2008:/weblog//1.27</id>

    <published>2008-08-01T00:48:55Z</published>
    <updated>2008-08-01T00:48:55Z</updated>

    <summary>iPhoneからPOST MTにpluginを入れ快適 ...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="日記" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        iPhoneからPOST
MTにpluginを入れ快適


        
    </content>
</entry>

<entry>
    <title>来たぁ〜　 iPhone</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/07/-iphone.html" />
    <id>tag:hamapin.com,2008:/weblog//1.26</id>

    <published>2008-07-31T12:01:33Z</published>
    <updated>2008-07-31T12:05:05Z</updated>

    <summary>来ましたiPhone早速Google快適、いろいろ使ってみます ...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="日記" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="iphone" label="iPhone" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[来ましたiPhone<br />早速Google快適、いろいろ使ってみます<br /><br /><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://hamapin.com/weblog/photo/P7310191.JPG"><img alt="P7310191.JPG" src="http://hamapin.com/weblog/photo/P7310191-thumb-100x75.jpg" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" height="75" width="100" /></a></span><br /> <div><br /></div>]]>
        
    </content>
</entry>

<entry>
    <title>沖縄旅行　秘密兵器の威力</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/07/post-5.html" />
    <id>tag:hamapin.com,2008:/weblog//1.25</id>

    <published>2008-07-30T12:11:47Z</published>
    <updated>2008-07-30T12:18:22Z</updated>

    <summary>以前に書いた、今回沖縄旅行のために用意した秘密兵器の威力です。先ずは去年買ったX...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="日記" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="u770sw" label="u770SW" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="xacti" label="Xacti" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="沖縄" label="沖縄" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[以前に書いた、今回沖縄旅行のために用意した秘密兵器の威力です。<br />先ずは去年買ったXactiで再び海中魚撮影<br /><br /><a href="http://jp.youtube.com/MIKICHIKAPAPA">http://jp.youtube.com/MIKICHIKAPAPA</a><br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/LsPUrKK-5Ww&hl=ja&fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/LsPUrKK-5Ww&hl=ja&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object>
<br />そして今年用意した<a href="http://olympus-imaging.jp/product/compact/mju770sw_koujikit/index.html">オリンパス μ770SW</a><br /><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://hamapin.com/weblog/photo/P7280147.JPG"><img alt="P7280147.JPG" src="http://hamapin.com/weblog/photo/P7280147-thumb-80x60.jpg" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" height="60" width="80" /></a></span><br /> <div><br /></div>]]>
        
    </content>
</entry>

<entry>
    <title>沖縄旅行　ちょっと打ち合わせ</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/07/post-4.html" />
    <id>tag:hamapin.com,2008:/weblog//1.24</id>

    <published>2008-07-30T12:02:39Z</published>
    <updated>2008-07-30T12:10:18Z</updated>

    <summary>今回沖縄旅行には、hamapinとしての打ち合わせを兼ねていましたので２日目の夕...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="日記" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="横浜X" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="fm那覇" label="FM那覇" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="沖縄" label="沖縄" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[今回沖縄旅行には、hamapinとしての打ち合わせを兼ねていましたので２日目の夕方から那覇で知人の会社とFM那覇さんとお話をしてきました。いい感じの刺激を受け夏休み明けからは飛ばさないと置いてかれちゃう<br /><br /><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://hamapin.com/weblog/photo/P7280160.JPG"><img alt="P7280160.JPG" src="http://hamapin.com/weblog/photo/P7280160-thumb-80x60.jpg" class="mt-image-none" style="" height="60" width="80" /></a></span><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://hamapin.com/weblog/photo/P7280159.JPG"><img alt="P7280159.JPG" src="http://hamapin.com/weblog/photo/P7280159-thumb-80x60.jpg" class="mt-image-none" style="" height="60" width="80" /></a></span><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://hamapin.com/weblog/photo/P7280157.JPG"><img alt="P7280157.JPG" src="http://hamapin.com/weblog/photo/P7280157-thumb-80x60.jpg" class="mt-image-left" style="margin: 0pt 20px 20px 0pt; float: left;" height="60" width="80" /></a></span><br /> <div><br /></div><div><br /></div><div><br /></div>]]>
        
    </content>
</entry>

<entry>
    <title>沖縄旅行</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/07/post-3.html" />
    <id>tag:hamapin.com,2008:/weblog//1.23</id>

    <published>2008-07-30T11:44:26Z</published>
    <updated>2008-07-30T12:01:36Z</updated>

    <summary>２７日から沖縄旅行行ってきました。天気は台風の発生で風ありましたが子供も日焼けを...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="日記" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="夏休み" label="夏休み" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="沖縄" label="沖縄" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[２７日から沖縄旅行行ってきました。天気は台風の発生で風ありましたが子供も日焼けをし十分楽しんだ夏休みって感じです。<br />美ら海水族館も行きジンベイザメも見ましたが、ハリセンボンが可愛かった、また中央市場で偶然キャンドルを作る体験ができる「体験工房　美ら風（chura-kaji)」さんを見つけ夏休みの自由研究もできました。<br /><br />
<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://hamapin.com/weblog/photo/P7290178.JPG"><img alt="P7290178.JPG" src="http://hamapin.com/weblog/photo/P7290178-thumb-80x60.jpg" class="mt-image-right" style="margin: 0pt 0pt 20px 20px; float: right;" height="60" width="80" /></a></span>
<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://hamapin.com/weblog/photo/P7280156.JPG"><img alt="P7280156.JPG" src="http://hamapin.com/weblog/photo/P7280156-thumb-80x60.jpg" height="60" width="80" /></a></span>
<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://hamapin.com/weblog/photo/P7280082.JPG"><img alt="P7280082.JPG" src="http://hamapin.com/weblog/photo/P7280082-thumb-80x60.jpg" height="60" width="80" /></a></span><br /> <div><br /><a href="http://jp.youtube.com/MIKICHIKAPAPA">http://jp.youtube.com/MIKICHIKAPAPA</a><br /><a href="http://www.flickr.com/photos/mikichikapapa/">http://www.flickr.com/photos/mikichikapapa/</a><br /></div><div><br /></div><div><br /></div>]]>
        
    </content>
</entry>

<entry>
    <title>OpenIDプロバイダー　その２</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/07/openid-1.html" />
    <id>tag:hamapin.com,2008:/weblog//1.22</id>

    <published>2008-07-26T03:23:48Z</published>
    <updated>2008-07-26T04:53:21Z</updated>

    <summary>前回php-openid-1.2.3を使用しOpenIDプロバイダーを立ち上げま...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="OCCP" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="php" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="openid" label="openid" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="phpopenid" label="php-openid" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[前回php-openid-1.2.3を使用しOpenIDプロバイダーを立ち上げました。<br /><br />php-openidではOpenIDの形式が<br />
<div style="background-color: rgb(212, 212, 212);">
http://domain/openid/?user=hamapin
<br />
</div>
<br />このような形式なので、個人的に<br />
<div style="background-color: rgb(212, 212, 212);">
http://domain/openid/hamapin
<br />
</div>
<br />こうしたいな<br />
と言うことで変更します。<br /><br />方法としてmod_rewriteを使用し変更したいのですが、php-openidではCGIパラメタとPATH_INFOを兼用しているので、ちょっと僕のmod_rewrite知識ではむずかしいな。<br />
<div style="background-color: rgb(212, 212, 212);">
http://domain/openid/?user=hamapin<br />
http://domain/openid/index.php/serve<br />
など
<br />
</div>
<br /><br />index.phpの変更<br />CGIパラメタ(user=hamapin)を取得する箇所を、REQUEST_URIから取得するように変更<br /><br />common.phpの変更<br />Openid形式作成箇所をhttp://domain/openid/hamapinこの形式で作成するように変更<br /><br />ちょっと邪道ですが<br /><br /><br /><br /><br /><br /><br />]]>
        
    </content>
</entry>

<entry>
    <title>iPhone予約しているが、考えていなかった</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/07/iphone.html" />
    <id>tag:hamapin.com,2008:/weblog//1.21</id>

    <published>2008-07-25T09:38:26Z</published>
    <updated>2008-07-25T09:50:20Z</updated>

    <summary>     ビザビは7月25日、レザー製のiPhone 3G専用ケース「Beyza...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="日記" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="iphone" label="iPhone" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[<blockquote class="quoteitBK" title="iPhone 3G専用カバーにレザー製が登場--ビザビ、全11色の豊富なラインアップ:ニュース - CNET Japan" cite="http://japan.cnet.com/news/tech/story/0,2000056025,20377825,00.htm?ref=rss" style="background:url(http://www.grovelog.com/common/image/bg_blockquote.jpg) repeat-y 0px 0px; padding:5px 20px; border-left:#CCCCCC 3px solid; font-family: 'Lucida Grande','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Osaka', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', sans-serif;">
    <p style="line-height:140%;">ビザビは7月25日、レザー製のiPhone 3G専用ケース「Beyza ロードラインスリムレザーケース for iPhone 3G」を発売した。全11色のカラーバリエーションを揃える。価格は6300円。</p>
    <p class="iconTree" style="float:left; margin:0; padding:3px 3px 0px 0px"><a href="http://www.grovelog.com/?cmd=quoteList&no=207" title="この記事のQuotetreeをみる"><img src="http://www.grovelog.com/js/quote-prn.php?no=208" alt="この記事のQuotetreeをみる" style="border:none;" /></a></p>
    <cite style="font-size:90%;"><a href="http://japan.cnet.com/news/tech/story/0,2000056025,20377825,00.htm?ref=rss" title="iPhone 3G専用カバーにレザー製が登場--ビザビ、全11色の豊富なラインアップ:ニュース - CNET Japan">iPhone 3G専用カバーにレザー製が登場--ビザビ、全11色の豊富なラインアップ:ニュース - CNET Japan</a></cite>
    <p class="data" style="font-size:90%; margin:0; padding:0px 0 10px 0; clear:both; line-height:0%;"><a href="http://www.grovelog.com/quoteCnt2/207" title="この記事の引用一覧を見る"><img src="http://www.grovelog.com/quoteCnt2/image/207" alt="この記事が引用された数" style="border:none;" /></a> - with <a href="http://www.grovelog.com/" title="GroveLog">GroveLog</a> </p>
</blockquote>

<p>iPhoneを予約し未だ手に入っていませんが、そうかケースか？<br />
touchはケースに入れてるが、携帯はいつもバイブなのでケースに入れると分からなくなる。<br />
まぁ他にもこのての品はいろいろ出てくるんだろうな。手に入れてから考えよう</p>

<p><br />
</p>]]>
        
    </content>
</entry>

<entry>
    <title>横浜X</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/07/x.html" />
    <id>tag:hamapin.com,2008:/weblog//1.20</id>

    <published>2008-07-25T09:07:21Z</published>
    <updated>2008-07-25T09:31:57Z</updated>

    <summary>２００４年辺りから取り組んできた横浜に関するRSSフィードを収集する仕組みが近々...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="横浜X" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="横浜x" label="横浜X" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[２００４年辺りから取り組んできた横浜に関するRSSフィードを収集する仕組みが近々リニューアルする。<br /><br />当初は、hamapin.comとして始めその中で人と出会い横浜Xへと変わり、さらに今回仲間と出会いアイデアやリソースを提供してもらい、近いうちにリニューアルします。<br /><br />そう考えると２００４年から２００８年の４年間と社会に出てからの２０年を比較すると、この４年間は新たな活動の場を考える事ができた４年間、でも２０年があるから、この４年がある。<br /><br />このブログのタイトルにあるように、リアルな繋がりが実現し「その先」へ踏み出そうとしている感覚でしょうか、なんか楽しい<br /><br /><br /><br /><br /><br /><br /> ]]>
        
    </content>
</entry>

<entry>
    <title>ウワサが現実になりますように</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/07/post-2.html" />
    <id>tag:hamapin.com,2008:/weblog//1.19</id>

    <published>2008-07-25T02:13:29Z</published>
    <updated>2008-07-25T02:49:25Z</updated>

    <summary> 	MacBookのスクリーンがもっと小さく、iPhoneみたいにガラス面で、マ...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="日記" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="macbook" label="MacBook" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="アップル" label="アップル" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[<blockquote class="quoteitBK" title="TechCrunch Japanese アーカイブ » ［CG］アップルの新製品はMacBook Touchというウワサ" cite="http://jp.techcrunch.com/archives/20080722rumor-apple-coming-out-with-macbook-touch/" style="background:url(http://www.grovelog.com/common/image/bg_blockquote.jpg) repeat-y 0px 0px; padding:5px 20px; border-left:#CCCCCC 3px solid; font-family: 'Lucida Grande','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Osaka', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', sans-serif;">
	<p style="line-height:140%;">MacBookのスクリーンがもっと小さく、iPhoneみたいにガラス面で、マルチタッチ機能が充実しているところを想像してほしい。ジェスチャのライブラリ。完璧なMac OS X</p>
	<p class="iconTree" style="float:left; margin:0; padding:3px 3px 0px 0px"><a href="http://www.grovelog.com/?cmd=quoteList&no=205" title="この記事のQuotetreeをみる"><img src="http://www.grovelog.com/js/quote-prn.php?no=206" alt="この記事のQuotetreeをみる" style="border:none;" /></a></p>
	<cite style="font-size:90%;"><a href="http://jp.techcrunch.com/archives/20080722rumor-apple-coming-out-with-macbook-touch/" title="TechCrunch Japanese アーカイブ » ［CG］アップルの新製品はMacBook Touchというウワサ">TechCrunch Japanese アーカイブ » ［CG］アップルの新製品はMacBook Touchというウワサ</a></cite>
	<p class="data" style="font-size:90%; margin:0; padding:0px 0 10px 0; clear:both; line-height:0%;"><a href="http://www.grovelog.com/quoteCnt2/205" title="この記事の引用一覧を見る"><img src="http://www.grovelog.com/quoteCnt2/image/205" alt="この記事が引用された数" style="border:none;" /></a> - with <a href="http://www.grovelog.com/" title="GroveLog">GroveLog</a> </p>
</blockquote>


昨年の6月にMacBook Proを買ってからアップルに依存している僕がいる。
Windowsを使っている頃はMacでの検証するためにMacを借りていたが、Macなら１台３役になることを知り即購入、今はMacBook Air。

また、こんな物が出たら買うんだろうな！！
仕事しなきゃ
]]>
        
    </content>
</entry>

<entry>
    <title>沖縄行ってきます</title>
    <link rel="alternate" type="text/html" href="http://hamapin.com/weblog/2008/07/post-1.html" />
    <id>tag:hamapin.com,2008:/weblog//1.18</id>

    <published>2008-07-25T00:59:18Z</published>
    <updated>2008-07-25T01:23:36Z</updated>

    <summary>来週は夏休み沖縄に行ってきます。仕事では何度か行っているのですが何時も那覇市内、...</summary>
    <author>
        <name>Tomoki Kuriki</name>
        
    </author>
    
        <category term="日記" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="ja" xml:base="http://hamapin.com/weblog/">
        <![CDATA[来週は夏休み沖縄に行ってきます。<br />仕事では何度か行っているのですが何時も那覇市内、今回は初めて家族と一緒なので恩納村に泊まり、子供が楽しみにしている美ら海水族館行ってきます。<br />でも2日目の夕方は一人で那覇に戻り知人と宴会かな？（これもまた楽しみ）<br /><br />そこで昨年に続き防水機能付きデジタルカメラを購入<br />昨年は素潜りを行ったので防水機能付きの<a href="http://www.sanyo-dsc.com/">デジタルムービーカメラXacti</a><br /><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://hamapin.com/weblog/photo/dmx_ca65l_01.jpg"><img alt="dmx_ca65l_01.jpg" src="http://hamapin.com/weblog/photo/dmx_ca65l_01-thumb-100x132.jpg" class="mt-image-right" style="margin: 0pt 0pt 20px 20px; float: right;" height="132" width="100" /></a></span><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> 
<div>今年はやはり防水機能付きデジタルカメラ<a href="http://olympus-imaging.jp/product/compact/mju770sw_koujikit/index.html">オリンパス μ770SW</a><br /><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://olympus-imaging.jp/product/compact/mju770sw_koujikit/index.html"><img alt="u770.jpg" src="http://hamapin.com/weblog/photo/u770-thumb-160x104.jpg" class="mt-image-right" style="margin: 0pt 0pt 20px 20px; float: right;" height="104" width="160" /></a></span><br /></div><div><br /></div><div><br /></div><div><br /></div>]]>
        
    </content>
</entry>

</feed>
