<?xml version="1.0" encoding="utf-8"?>
<feed
    xmlns="http://www.w3.org/2005/Atom"
    xmlns:at="http://www.sixapart.com/ns/at"
    xmlns:icbm="http://postneo.com/icbm"
    xmlns:rvw="http://purl.org/NET/RVW/0.2/"
    xml:lang="en">
    <title>mtsuyugu&#39;s blog</title>
    <link rel="self" type="application/atom+xml" title="mtsuyugu&#39;s blog (Atom)" href="http://mtsuyugu.vox.com/library/posts/page/1/atom.xml" />
    <link rel="alternate" type="text/html" title="mtsuyugu&#39;s blog" href="http://mtsuyugu.vox.com/library/posts/page/1/"/> 
    <link rel="service.post" type="application/atom+xml" title="mtsuyugu&#39;s blog" href="http://www.vox.com/services/atom/svc=post/collection_id=6a00f48ceff36d000300f48d0ea0d80001" /> 
    <link rel="service.subscribe" type="application/atom+xml" title="mtsuyugu&#39;s blog" href="http://mtsuyugu.vox.com/library/posts/atom.xml" />   
    <link rel="last" type="application/atom+xml" title="mtsuyugu&#39;s blog" href="http://mtsuyugu.vox.com/library/posts/page/1/atom.xml" />  
    <generator uri="http://www.vox.com/">Vox</generator>
    <updated>2008-05-15T13:53:23Z</updated> 
    <author>
        <name>mtsuyugu</name>
        <uri>http://mtsuyugu.vox.com/?_c=feed-atom-full</uri>
    </author> 
    <id>tag:vox.com,2006:6p00f48ceff36d0003/</id>  
    
    <entry>
        <title>tried processing.js</title>   
        <link rel="alternate" type="text/html" title="tried processing.js" href="http://mtsuyugu.vox.com/library/post/tried-processingjs.html?_c=feed-atom-full" />  
        <link rel="service.post" type="application/atom+xml" title="tried processing.js" href="http://mtsuyugu.vox.com/library/post/tried-processingjs.html?_c=feed-atom-full#comments" /> 
        <link rel="service.edit" type="application/atom+xml" title="tried processing.js" href="http://www.vox.com/atom/svc=post/asset_id=6a00f48ceff36d000300fa9674b9430002" />          <id>tag:vox.com,2008-05-14:asset-6a00f48ceff36d000300fa9674b9430002</id>
        <published>2008-05-14T15:27:33Z</published>
        <updated>2008-05-15T13:53:23Z</updated>
    
        <author>
            <name>mtsuyugu</name>
            <uri>http://mtsuyugu.vox.com/?_c=feed-atom-full</uri>
        </author>
    
        
        <content type="html" xml:base="http://mtsuyugu.vox.com/?_c=feed-atom-full">
            <![CDATA[
                <div xmlns="http://www.w3.org/1999/xhtml" xmlns:at="http://www.sixapart.com/ns/at">
        <p>I tried John Resig&#39;s processing.js, which is processing implementation on javascript.</p><p>This is a program to draw <a href="http://en.wikipedia.org/wiki/Sierpinski_carpet">the Sierpinski carpet fractal</a>.</p><pre>var max = 3;<br />void draw_iter(x,y,w,h,n){<br />   var wn = w/3;<br />   var hn = h/3;<br />   pushMatrix();<br />   translate(x,y);<br />   rect(wn,hn,wn,hn);<br />   popMatrix();<br />   if( max &lt;= ++n ) return;<br />   for( var i = 0; i &lt; 9; i++ ){<br />      if( i == 4 ) continue;<br />      draw_iter( x+wn*(i%3), y+hn*Math.floor(i/3), wn, hn, n );<br />   }<br />}<br /><br />void setup(){<br />   size(144,144);<br />   background(120);<br />   stroke(255);<br />   draw_iter(0,0,144,144,0);<br />}<br /></pre><p>As you see, it&#39;s quite simple. You can see the output picture&#160; of this program in <a href="http://tsuyuguchi.com/masaaki/mt/archives/2008/05/12-2233.php">my another blog</a><br /></p>   <p style="clear:both;"> 
    <a href="http://mtsuyugu.vox.com/library/post/tried-processingjs.html?_c=feed-atom-full#comments">Read and post comments</a>   |   
    <a href="http://www.vox.com/share/6a00f48ceff36d000300fa9674b9430002?_c=feed-atom-full">Send to a friend</a> 
</p>

                </div>
            ]]>
        </content> 
    <category term="javascript" scheme="http://mtsuyugu.vox.com/tags/javascript/" label="javascript" /> 
    <category term="processing" scheme="http://mtsuyugu.vox.com/tags/processing/" label="processing" /> 
    <category term="processing.js" scheme="http://mtsuyugu.vox.com/tags/processing.js/" label="processing.js" /> 
    </entry> 
    
    <entry>
        <title>Twitter Sticker</title>   
        <link rel="alternate" type="text/html" title="Twitter Sticker" href="http://mtsuyugu.vox.com/library/post/twitter-sticker.html?_c=feed-atom-full" />  
        <link rel="service.post" type="application/atom+xml" title="Twitter Sticker" href="http://mtsuyugu.vox.com/library/post/twitter-sticker.html?_c=feed-atom-full#comments" /> 
        <link rel="service.edit" type="application/atom+xml" title="Twitter Sticker" href="http://www.vox.com/atom/svc=post/asset_id=6a00f48ceff36d000300f48cf53f040002" />            <id>tag:vox.com,2008-05-06:asset-6a00f48ceff36d000300f48cf53f040002</id>
        <published>2008-05-06T01:57:27Z</published>
        <updated>2008-05-14T15:35:45Z</updated>
    
        <author>
            <name>mtsuyugu</name>
            <uri>http://mtsuyugu.vox.com/?_c=feed-atom-full</uri>
        </author>
    
        
        <content type="html" xml:base="http://mtsuyugu.vox.com/?_c=feed-atom-full">
            <![CDATA[
                <div xmlns="http://www.w3.org/1999/xhtml" xmlns:at="http://www.sixapart.com/ns/at">
        
    
    
    

    
    
    

    
    
    

    
    
    
<div at:enclosure="asset" at:xid="6a00f48ceff36d000300f48cf53f190002" at:format="medium" at:align="left"
    class="enclosure enclosure-left enclosure-medium photo-enclosure" 
     style="text-align: center; float: left;">
<div class="enclosure-inner"
    
        style="padding: 9px; border: 1px solid; width: px; margin: 0 20px 20px 0;"
    >
    <div class="enclosure-list">
        <div class="enclosure-item photo-asset last">
    
            <div class="enclosure-image">
        
                <a href="http://mtsuyugu.vox.com/library/photo/6a00f48ceff36d000300f48cf53f190002.html"><img src="http://a1.vox.com/6a00f48ceff36d000300f48cf53f190002-200pi" alt="Twitter Sticker!" title="Twitter Sticker!" /></a>
        
            </div>
            <div class="enclosure-meta">
                <div class="enclosure-asset-name"><a href="http://mtsuyugu.vox.com/library/photo/6a00f48ceff36d000300f48cf53f190002.html" title="Twitter Sticker!">Twitter Sticker!</a></div>
            </div>
    
        </div>
    </div>
</div>
</div><!-- end enclosure -->
<p>



A weeks ago, twitter in Japanese was released. on 3rd May, A member of Twitter Japan (a.k.a <a href="http://twitter.com/twj">@twj</a>) hold off-line meeting in <a href="http://maps.google.co.jp/maps?ll=35.669351,139.699209&amp;spn=0.002968,0.005021&amp;z=18">Yoyogi park</a>, Tokyo. Unfortunately, however, it was raining, but more than ten people came there. @twj gave us two sticker to each people.</p><div>@gonsee took a photo: please take a look http://www.flickr.com/photos/gonsee/2460504617/<br /></div>   <p style="clear:both;"> 
    <a href="http://mtsuyugu.vox.com/library/post/twitter-sticker.html?_c=feed-atom-full#comments">Read and post comments</a>   |   
    <a href="http://www.vox.com/share/6a00f48ceff36d000300f48cf53f040002?_c=feed-atom-full">Send to a friend</a> 
</p>

                </div>
            ]]>
        </content> 
    <category term="sticker" scheme="http://mtsuyugu.vox.com/tags/sticker/" label="sticker" /> 
    <category term="twitter" scheme="http://mtsuyugu.vox.com/tags/twitter/" label="twitter" /> 
    </entry> 
    
    <entry>
        <title>Flickr no vids greasemonkey</title>   
        <link rel="alternate" type="text/html" title="Flickr no vids greasemonkey" href="http://mtsuyugu.vox.com/library/post/flickr-no-vids-greasemonkey.html?_c=feed-atom-full" />  
        <link rel="service.post" type="application/atom+xml" title="Flickr no vids greasemonkey" href="http://mtsuyugu.vox.com/library/post/flickr-no-vids-greasemonkey.html?_c=feed-atom-full#comments" /> 
        <link rel="service.edit" type="application/atom+xml" title="Flickr no vids greasemonkey" href="http://www.vox.com/atom/svc=post/asset_id=6a00f48ceff36d000300f48d1045890001" />          <id>tag:vox.com,2008-04-24:asset-6a00f48ceff36d000300f48d1045890001</id>
        <published>2008-04-24T16:02:47Z</published>
        <updated>2008-05-14T15:36:37Z</updated>
    
        <author>
            <name>mtsuyugu</name>
            <uri>http://mtsuyugu.vox.com/?_c=feed-atom-full</uri>
        </author>
    
        
        <content type="html" xml:base="http://mtsuyugu.vox.com/?_c=feed-atom-full">
            <![CDATA[
                <div xmlns="http://www.w3.org/1999/xhtml" xmlns:at="http://www.sixapart.com/ns/at">
        <p>Do you agree Flickr videos? Of course, I agree.</p><p>If you can&#39;t accept Flickr video anyway, why don&#39;t you use <a href="http://tsuyuguchi.com//greasemonkey/flickrnovideos.user.js">my greasemonkey userscript</a>?</p><p>When a page listing images including videos is loaded, what is shown at first is not a embed flash object but just a image of its first frame. It is not until you click &#39;play button&#39; image that a video object is loaded. And, the video plays automatically when you see a page for a certain video. However, a first frame image is loaded in HTML and hidden by CSS.</p><p>So, hiding &#39;play button&#39; and with some DOM scriptings, this greasemonkey takes you non-video flickr-verse as before although I don&#39;t think it is fun.</p>   <p style="clear:both;"> 
    <a href="http://mtsuyugu.vox.com/library/post/flickr-no-vids-greasemonkey.html?_c=feed-atom-full#comments">Read and post comments</a>   |   
    <a href="http://www.vox.com/share/6a00f48ceff36d000300f48d1045890001?_c=feed-atom-full">Send to a friend</a> 
</p>

                </div>
            ]]>
        </content> 
    <category term="flickr" scheme="http://mtsuyugu.vox.com/tags/flickr/" label="flickr" /> 
    <category term="greasemonkey" scheme="http://mtsuyugu.vox.com/tags/greasemonkey/" label="greasemonkey" /> 
    </entry> 
    
    <entry>
        <title>Greasemonkey user sciprt: Flickr stats shows query paramters</title>   
        <link rel="alternate" type="text/html" title="Greasemonkey user sciprt: Flickr stats shows query paramters" href="http://mtsuyugu.vox.com/library/post/greasemonkey-user-sciprt-flickr-stats-shows-query-paramters.html?_c=feed-atom-full" />  
        <link rel="service.post" type="application/atom+xml" title="Greasemonkey user sciprt: Flickr stats shows query paramters" href="http://mtsuyugu.vox.com/library/post/greasemonkey-user-sciprt-flickr-stats-shows-query-paramters.html?_c=feed-atom-full#comments" /> 
        <link rel="service.edit" type="application/atom+xml" title="Greasemonkey user sciprt: Flickr stats shows query paramters" href="http://www.vox.com/atom/svc=post/asset_id=6a00f48ceff36d000300f48ceff94a0002" />            <id>tag:vox.com,2008-04-19:asset-6a00f48ceff36d000300f48ceff94a0002</id>
        <published>2008-04-19T15:29:55Z</published>
        <updated>2008-05-14T15:36:42Z</updated>
    
        <author>
            <name>mtsuyugu</name>
            <uri>http://mtsuyugu.vox.com/?_c=feed-atom-full</uri>
        </author>
    
        
        <content type="html" xml:base="http://mtsuyugu.vox.com/?_c=feed-atom-full">
            <![CDATA[
                <div xmlns="http://www.w3.org/1999/xhtml" xmlns:at="http://www.sixapart.com/ns/at">
        
    
    
    

    
    
    

    
    
    

    
    
    

    
    
    

    
    
    
<div at:enclosure="asset" at:xid="6a00f48ceff36d000300f48d0eb59e0001" at:format="medium" at:align="right"
    class="enclosure enclosure-right enclosure-medium photo-enclosure" 
     style="text-align: center; float: right;">
<div class="enclosure-inner"
    
        style="padding: 9px; border: 1px solid; width: px; margin: 0 0 20px 20px;"
    >
    <div class="enclosure-list">
        <div class="enclosure-item photo-asset last">
    
            <div class="enclosure-image">
        
                <a href="http://mtsuyugu.vox.com/library/photo/6a00f48ceff36d000300f48d0eb59e0001.html"><img src="http://a6.vox.com/6a00f48ceff36d000300f48d0eb59e0001-200pi" alt="Decode parameter in flickr stats" title="Decode parameter in flickr stats" /></a>
        
            </div>
            <div class="enclosure-meta">
                <div class="enclosure-asset-name"><a href="http://mtsuyugu.vox.com/library/photo/6a00f48ceff36d000300f48d0eb59e0001.html" title="Decode parameter in flickr stats">Decode parameter in flickr stats</a></div>
            </div>
    
        </div>
    </div>
</div>
</div><!-- end enclosure -->
<p>





If you are a pro member of flickr, you can see referrers from which they came to your photo pages in your flickr stats. In those stats pages showing referrer s, not a whole url, but only query parameters are displayed if domain of a referrer is search engine such as &quot;yahoo.com&quot; or &quot;google.com&quot;.</p><p>However, it supports only referrers of major search engine and doesn&#39;t support those of other domains.</p><p>To improve this, I made a <a href="http://tsuyuguchi.com/greasemonkey/flickrreferrersdecode.user.js">greasemonkey user script</a> for firefox.&#160; I&#39;m sorry that it should be configured to display query parameter of domains you want to see. This sciprt also supports to decode non-ascii query parameter (see a image on the right). Please let me know if you know other domains whcih may have query parameter. I will update my script.
</p>    <p style="clear:both;"> 
    <a href="http://mtsuyugu.vox.com/library/post/greasemonkey-user-sciprt-flickr-stats-shows-query-paramters.html?_c=feed-atom-full#comments">Read and post comments</a>   |   
    <a href="http://www.vox.com/share/6a00f48ceff36d000300f48ceff94a0002?_c=feed-atom-full">Send to a friend</a> 
</p>

                </div>
            ]]>
        </content> 
    <category term="flickr" scheme="http://mtsuyugu.vox.com/tags/flickr/" label="flickr" /> 
    <category term="greasemonkey" scheme="http://mtsuyugu.vox.com/tags/greasemonkey/" label="greasemonkey" /> 
    </entry> 
</feed>


