<?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>w00kie&#039;s ramblings &#187; internet</title>
	<atom:link href="http://w00kie.com/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://w00kie.com</link>
	<description>Living the good life in Japan</description>
	<lastBuildDate>Thu, 17 May 2012 11:39:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Pet Project: Sunsetter</title>
		<link>http://w00kie.com/2012/05/17/pet-project-sunsetter/</link>
		<comments>http://w00kie.com/2012/05/17/pet-project-sunsetter/#comments</comments>
		<pubDate>Thu, 17 May 2012 11:39:17 +0000</pubDate>
		<dc:creator>w00kie</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[heroku]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://w00kie.com/?p=942</guid>
		<description><![CDATA[At home I have a nice view of the Fujisan to the south-west. I often take pictures of it in winter when the skies are so clear. Many times I've told myself it would be nice to take a picture &#8230; <a href="http://w00kie.com/2012/05/17/pet-project-sunsetter/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>At home I have a nice view of the Fujisan to the south-west. I often take pictures of it in winter when the skies are so clear.</p>
<p><a href="http://www.flickr.com/photos/w00kie/4161766913/in/set-72157621128058023/lightbox/"><img class="aligncenter size-full wp-image-952" title="fujisan-sunset" src="/uploads/2012/05/fujisan-sunset.jpeg" alt="" width="560" height="174" /></a></p>
<p>Many times I've told myself it would be nice to take a picture with the sun setting right behind the mountain. I've searched the internet for an app that would tell me when this happens but all I could find were apps that tell you where the sun sets on a particular day, not the other way around. So I decided to build it...</p>
<p><a title="Sunsetter - find when the sun sets over there" href="http://sunsetter.herokuapp.com/">Sunsetter</a> is a simple python web app running on Heroku. It's based on the brilliant <a title="Pysolar: staring directly at the sun since 2007" href="http://pysolar.org/">pysolar</a> library for the hardcore astronomical calculations and binds it all to Google Maps with a dash of Ajax and JavaScript.</p>
<p><a href="http://sunsetter.herokuapp.com/"><img class="aligncenter size-full wp-image-954" title="Sunsetter - find when the sun sets over there" src="/uploads/2012/05/sunsetter.png" alt="" width="560" height="422" /></a></p>
<p>The app still needs polish but the data it gives out should be pretty accurate and reliable at normal altitudes (standing on top of a very tall mountain overlooking a wide plain will change the distance of the horizon and screw with the calculations a bit).</p>
<p>If this app was useful to you or you have suggestions, I'd love to hear from you in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://w00kie.com/2012/05/17/pet-project-sunsetter/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Foreman and Procfile tips&amp;tricks</title>
		<link>http://w00kie.com/2012/05/17/foreman-and-procfile-tipstricks/</link>
		<comments>http://w00kie.com/2012/05/17/foreman-and-procfile-tipstricks/#comments</comments>
		<pubDate>Thu, 17 May 2012 11:22:44 +0000</pubDate>
		<dc:creator>w00kie</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[heroku]]></category>

		<guid isPermaLink="false">http://w00kie.com/?p=938</guid>
		<description><![CDATA[Lately I've been playing around with the Heroku stack and I'd like to share little tricks that might be common knowledge but which I've not seen mentioned on the Heroku standard documentation. So the doc tells you you must set your Procfile &#8230; <a href="http://w00kie.com/2012/05/17/foreman-and-procfile-tipstricks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Lately I've been playing around with the Heroku stack and I'd like to share little tricks that might be common knowledge but which I've not seen mentioned on the Heroku standard documentation.</p>
<p>So the doc tells you you must set your <code>Procfile</code> as such (for a Python app):</p>
<pre>web: gunicorn app:app -b 0.0.0.0:$PORT -w 3</pre>
<p>You can then run the webserver on your machine for development with the command:</p>
<pre>foreman start</pre>
<p>But if your app also uses memcached, redis, postgres or others, then you must open as many additional tabs in your terminal to run each service (I don't want to have the daemons running all the time on my all-purpose macbook air).</p>
<p>What you can do to make your life easier is to create a new file <code>Procfile.dev</code> which you should add to <code>.gitignore</code> (so that it is not uploaded to Heroku and does not affect your production environment) and add all those services in there:</p>
<pre>web: python app.py
memcached: memcached -v
coffee: coffee --watch --output static/js/ --compile lib/</pre>
<p>And run it with:</p>
<pre>foreman start -p Procfile.dev</pre>
<p>This will launch my app with standard Python (easier for quick debugging than gunicorn), my memcached instance and even compile my CoffeeScript on the fly so I can edit freely while testing my changes.</p>
<p><a href="/uploads/2012/05/foreman.png"><img class="aligncenter size-full wp-image-946" title="foreman in the terminal" src="/uploads/2012/05/foreman.png" alt="" width="521" height="196" /></a></p>
<p>Looking in your terminal you'll even see each service logs all pretty and color coded.</p>
]]></content:encoded>
			<wfw:commentRss>http://w00kie.com/2012/05/17/foreman-and-procfile-tipstricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Softbank&#8217;s new iPad 2 campaign worth it?</title>
		<link>http://w00kie.com/2011/10/11/is-softbanks-new-ipad-2-campaign-worth-it/</link>
		<comments>http://w00kie.com/2011/10/11/is-softbanks-new-ipad-2-campaign-worth-it/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 01:24:14 +0000</pubDate>
		<dc:creator>w00kie</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[softbank]]></category>

		<guid isPermaLink="false">http://w00kie.com/?p=896</guid>
		<description><![CDATA[Updated 2011/11/09 -- see bottom of the post For the iPhone 4S launch, Masayoshi Son, Softbank's CEO, decided to go all out to keep his customers from going to aU by KDDI. Fun Fact: during his keynote on October 7th, &#8230; <a href="http://w00kie.com/2011/10/11/is-softbanks-new-ipad-2-campaign-worth-it/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff0000;"><em><strong>Updated 2011/11/09 --</strong> see bottom of the post</em></span></p>
<p>For the iPhone 4S launch, Masayoshi Son, Softbank's CEO, decided to go all out to keep his customers from going to aU by KDDI.</p>
<blockquote><p><strong>Fun Fact:</strong> during his keynote on October 7th, one day after Steve Jobs passing away, Son-san declared tearfully that these campaigns were his gifts to spread the Steve's "art work" (he used the word 作品 as opposed to 製品) to as many people as possible.</p></blockquote>
<p><a title="are kore sore campaign for iPad" href="http://mb.softbank.jp/mb/special/are_kore_sore/another_one/">One of these campaigns</a> is for the iPad and it's description is very confusing. See the figure below:</p>
<p><img class="aligncenter" title="iPad 2 Softbank campaing" src="/uploads/2011/10/ipad2-campaign-main.jpg" alt="" width="500" height="272" /></p>
<p><img class="aligncenter" title="iPad 2 Softbank campaign charges" src="/uploads/2011/10/ipad2-campaign-ryokin.jpg" alt="" width="500" height="160" /></p>
<p>Many people take this to mean that you can get a 16GB iPad for free, ¥0 per month, if you are already a Softbank iPhone subscriber. That's not true because ¥1,860 monthly discount on the second to last line only applies to the communications charge and not to the iPad hardware monthly cost. Going to the <a title="cost simulation" href="http://mb.softbank.jp/mb/special/are_kore_sore/another_one/price_plan/">cost simulation page</a> shows this well: your minimum monthly bill is still ¥1,860 (the cost of the 16GB iPad 2) and the data plan is free up to 100MB.</p>
<p><img class="aligncenter" title="iPad 2 monthly cost simulation" src="/uploads/2011/10/ipad2-details.png" alt="" width="500" height="187" />So in the end we get a free data plan if we don't use 3G internet (almost don't use it, 100MB a month wouldn't get you much farther than regular email checking). That sounds like a classic mobile operator swindle: giving you something for almost free and then hammering you with extra high fees whenever you go over the pathetically low usage limits. Let's look at the <a title="data plan details" href="http://mb.softbank.jp/mb/special/are_kore_sore/another_one/packet/">data plan details</a>:</p>
<p><img class="aligncenter" title="data plan details" src="/uploads/2011/10/data-plan-details.jpg" alt="" width="500" height="225" />So yes, free for 100MB, capped at ¥4,980 over 111.5MB or you could choose to just pay a flat plan ¥4,410 every month whatever your usage. You end up paying a ¥470 premium for the flexibility of paying nothing the months when you almost don't use 3G... Is that actually a good deal? I put the numbers into Numbers to see:</p>
<p><img class="aligncenter" title="iPad campaign numbers crunched" src="/uploads/2011/10/ipad-campaign-numbers.png" alt="" width="461" height="294" /></p>
<ul>
<li><span style="text-decoration: underline;">iPad 2 16GB + ZERO data plan under 100MB usage per month:</span> ¥22,320 per year</li>
<li><span style="text-decoration: underline;">iPad 2 16GB + ZERO data plan over 111.5MB user every month:</span> ¥63,540 per year</li>
<li><span style="text-decoration: underline;">iPad 2 16GB + FLAT data plan:</span> ¥56,700 per year</li>
</ul>
<p>So over the course of a year you would be saving money only if you stay under the 100MB cap for more than 3 months.</p>
<p>Is that a good deal? If you only use the 3G for emailing in the train and turn off the modem when not in use (letting it check your mail every 15min in the background would significantly bump your usage) then it could be. But having already an iPhone, do you really need to check your email on your iPad?</p>
<p>Myself, I will probably pass on that campaign. What would really be interesting would be a tethering option for my iPhone at a reasonable price... Well reasonable would really be ¥0 as I consider I'm already paying for the bandwidth and how I use it is none of Softbank's business. An "acceptable" price would be maybe ¥1,000.</p>
<p>Please tell me in the comments what you think about this campaign.</p>
<p><strong>Update:</strong> Very good point added in the comments by <a title="go directly to the comment" href="http://w00kie.com/2011/10/11/is-softbanks-new-ipad-2-campaign-worth-it/comment-page-1/#comment-48430">Maddy</a>. If you get an iPad from Softbank for that campaign and remove the SIM card, never to use it again, you still get to download the Softbank WiFi roaming profile that lets you connect to all Softbank / FON / YahooBB / Tokyo Metro access points for free (that's a pretty extensive network in Tokyo) and a GPS to boot. That's a clear advantage over buying a WiFi only version from Apple for the exact same price.</p>
]]></content:encoded>
			<wfw:commentRss>http://w00kie.com/2011/10/11/is-softbanks-new-ipad-2-campaign-worth-it/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>iPad 3G and Pocket WiFi alternatives in Japan</title>
		<link>http://w00kie.com/2010/05/10/ipad-3g-and-pocket-wifi-alternatives-in-japan/</link>
		<comments>http://w00kie.com/2010/05/10/ipad-3g-and-pocket-wifi-alternatives-in-japan/#comments</comments>
		<pubDate>Mon, 10 May 2010 08:28:48 +0000</pubDate>
		<dc:creator>w00kie</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://w00kie.com/?p=804</guid>
		<description><![CDATA[So the pricing for the iPad in Japan are out. It seems even devices sold at the Apple Stores will be SIM-locked to Softbank, breaking many hopes of seeing DoCoMo come into the picture and shaking things up a little. &#8230; <a href="http://w00kie.com/2010/05/10/ipad-3g-and-pocket-wifi-alternatives-in-japan/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So the pricing for the iPad in Japan are out. It seems even <a title="according to @sandbaggerone" href="http://twitter.com/sandbaggerone/status/13699040342">devices sold at the Apple Stores will be SIM-locked to Softbank</a>, breaking many hopes of seeing DoCoMo come into the picture and shaking things up a little.</p>
<p>This has definitely not changed <a title="from this very blog" href="http://w00kie.com/2010/04/08/my-thoughts-on-the-ipad/">my thoughts on the device</a>, it would very much piss me off to pay twice for 2 iPhone and iPad data plans.</p>
<p>This morning, my buddy <a title="on twitter" href="http://twitter.com/kuriburi">@kuriburi</a> who is more enthusiastic than I am, called me from the line at the Softbank shop to discuss the situation. Interestingly enough, people were <a title="twitter status" href="http://twitter.com/kuriburi/status/13705184113">fleeing in droves after receiving the pamphlet describing the full pricing</a>... We entertained the thought that it might be more interesting to buy a WiFi version and get a Pocket WiFi device from data plan specialist eMobile.</p>
<p><a title="on twitter" href="http://twitter.com/kuriburi">@kuriburi</a> left the Softbank line and we started gathering data from the web:</p>
<ul>
<li>Softbank's <a title="Softbank device prices with 24 months contract" href="http://mb.softbank.jp/mb/ipad/price_plan/chart/">iPad device prices</a> and <a title="softbank data plan for the iPad" href="http://mb.softbank.jp/mb/ipad/price_plan/postpaid/">data plan</a> pages</li>
<li>Softbank's <a title="Softbank Pocket WiFi" href="http://mb.softbank.jp/mb/data_com/price_plan/bonus_pack/#price">Pocket WiFi</a> page</li>
<li>eMobile's <a title="eMobile pocket wifi" href="https://store.emobile.jp/DC/d25hw.php#allplan">Pocket WiFi</a> page</li>
</ul>
<p>And after crunching numbers here are the results, first for the iPad 64GB version:</p>
<p><a href="/uploads/2010/05/iPad64GB.gif"><img class="aligncenter size-medium wp-image-805" title="iPad64GB" src="/uploads/2010/05/iPad64GB-300x76.gif" alt="" width="300" height="76" /></a></p>
<p>And for the iPad 32GB version:</p>
<p><a href="/uploads/2010/05/iPad32GB.gif"><img class="aligncenter size-medium wp-image-806" title="iPad32GB" src="/uploads/2010/05/iPad32GB-300x76.gif" alt="" width="300" height="76" /></a></p>
<p>It still seems the Softbank's default option with integrated 3G is very aggressively priced compared to the competition. But if you can limit yourself to less than 300MB of 3G data per month, you can save up to ¥9.000 on the 32GB iPad over the 2 years contract period. Not much for sure, but some people might be interested...</p>
<p><strong>Note:</strong> we have not taken into account the eMobile Super Light data plan because a 3MB/month data plan will not let you do anything but access email (and then without pictures) which does not count as a full usage of the device.</p>
<p><strong>Note 2:</strong> here's <a title="google spreadsheets" href="https://spreadsheets.google.com/pub?key=0AkmkOHAjAr_wdFJCbEd3WTBqY3pHdGhPZUNwVVpqeUE&amp;hl=en&amp;output=html">a link to the spreadsheet</a>, if you see anything wrong with the data please notify me in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://w00kie.com/2010/05/10/ipad-3g-and-pocket-wifi-alternatives-in-japan/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Activate tethering on Softbank iPhone</title>
		<link>http://w00kie.com/2009/06/18/activate-tethering-on-softbank-iphone/</link>
		<comments>http://w00kie.com/2009/06/18/activate-tethering-on-softbank-iphone/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 12:54:21 +0000</pubDate>
		<dc:creator>w00kie</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[softbank]]></category>
		<category><![CDATA[tethering]]></category>

		<guid isPermaLink="false">http://w00kie.com/?p=598</guid>
		<description><![CDATA[A friend of mine, @kuriburi, just sent me this to publish for him, so here you go: So it was the news of the day: Someone managed to activate tethering on an AT&#38;T iPhone 3G by means of a "carrier &#8230; <a href="http://w00kie.com/2009/06/18/activate-tethering-on-softbank-iphone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>A friend of mine, <a title="@kuriburi on twitter" href="https://twitter.com/kuriburi">@kuriburi</a>, just sent me this to publish for him, so here you go:</em></p>
<p>So it was the news of the day: Someone managed to activate tethering on an AT&amp;T iPhone 3G by means of a "carrier support file", a.k.a. "ipcc". Here in Japan, the story was a bit more tricky : Softbank declared that they would not support tethering on their network and had no plans to do so in the future either.</p>
<p><a href="/uploads/2009/06/iphone-tethered.jpg"><img class="aligncenter size-full wp-image-602" title="softbank-tethered" src="/uploads/2009/06/softbank-tethered.jpg" alt="softbank-tethered" width="320" height="134" /></a></p>
<p>Nice! So, with those brand new Macbook Pro without any pc express card slot, how are we supposed to use Softbank's data cards? This bothered me to no end thus I went on a search for a Softbank carrier support file that I could modify somehow. I stumbled onto this <a title="hot-to in japanese" href="http://wiysh.blogspot.com/2009/04/iphone-30-beta-2-how-to.html">very interesting post on a Japanese blog</a> that talked about the same thing, but with a beta version of the iPhone OS 3.0.</p>
<p>OK, well, doesn't hurt to try with the official release, right?</p>
<p>Now I need to get my hands on that damn file. Turns out, it was right on my hard drive at work since August 2008. So I went to work and modified the file (which incidentally is just a bundle in a zip archive with a special extension) and tried to update my iPhone with it. The steps are simple :</p>
<ol>
<li>in the Terminal, execute <strong><em>defaults write com.apple.iTunes carrier-testing -bool TRUE</em><br />
</strong>on windows, execute <em><strong>C:\Program Files\iTunes\iTunes.exe /setPrefInt carrier-testing 1</strong></em> in a DOS window<strong><br />
</strong></li>
<li>plug your iPhone to your computer via the USB cable</li>
<li>in iTunes, display the summary page of your iPhone</li>
<li>while pressing the "alt" (option) key, click on the "check for update" button</li>
<li>you will be presented with a finder window. Locate the <a class="clicky_log_download" href="/uploads/2009/06/Softbank_jp.ipcc">Softbank_jp.ipcc</a> file, select it</li>
<li>iTunes will now update your iPhone with the modified carrier settings</li>
<li>Once finished, unplug the iPhone, go see into Settings&gt;General&gt;Network, and voilà! <a title="screenshot of the iPhone" href="/uploads/2009/06/iphone-tethered.jpg">screenshot</a></li>
</ol>
<p>Oh, before I forget, if Apple or Softbank issues an update through iTunes, wait a bit before updating... you never know...</p>
<p><em><strong>Update:</strong> </em>I updated the link with the latest file from <a title="@kuriburi on twitter" href="https://twitter.com/kuriburi">@kuriburi</a> that activates both tethering and MMS. よろしく！</p>
<p><em><strong>Update:</strong></em> This IPCC file <span style="color: #ff0000;"><strong>does not work with 3.1 update</strong></span>. If you value your tethering, do not upgrade yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://w00kie.com/2009/06/18/activate-tethering-on-softbank-iphone/feed/</wfw:commentRss>
		<slash:comments>377</slash:comments>
		</item>
		<item>
		<title>WWDC Keynote on MacBidouille.com with App Engine</title>
		<link>http://w00kie.com/2009/06/10/wwdc-keynote-on-macbidouillecom-with-app-engine/</link>
		<comments>http://w00kie.com/2009/06/10/wwdc-keynote-on-macbidouillecom-with-app-engine/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 14:24:51 +0000</pubDate>
		<dc:creator>w00kie</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[appengine]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[keynote]]></category>
		<category><![CDATA[wwdc]]></category>

		<guid isPermaLink="false">http://w00kie.com/?p=591</guid>
		<description><![CDATA[No bandwidth, no servers, no infrastructure, no money required. Just a bit of python and a tad of javascript and you can live stream an event to 10.000 people concurrently (theoretic figure, Analytics said the live-blog site had 30.000 visits &#8230; <a href="http://w00kie.com/2009/06/10/wwdc-keynote-on-macbidouillecom-with-app-engine/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>No bandwidth, no servers, no infrastructure, no money required. Just <a title="Keynote liveblog from macbidouille.com" href="http://keynote.macbidouille.com">a bit of python and a tad of javascript</a> and you can live stream an event to 10.000 people concurrently (theoretic figure, Analytics said the live-blog site had 30.000 visits in all) within <a title="Google App Engine" href="http://appspot.com">Google App Engine</a>'s free quotas.</p>
<p><img class="aligncenter size-full wp-image-592" title="keynote requests per second" src="/uploads/2009/06/keynote-chart.jpg" alt="keynote requests per second" width="500" height="171" /></p>
<p>This is the graph taken from my App Engine dashboard the morning after the WWDC'09 Keynote after <a title="MacBidouille" href="http://www.macbidouille.com">MacBidouille.com</a> live-blogged the event in French through my application. We always had scaling problems while Google's infrastructure was in beta and we were bound by smallish quotas, but since they opened fully the service a couple months ago, the sky is the limit.</p>
]]></content:encoded>
			<wfw:commentRss>http://w00kie.com/2009/06/10/wwdc-keynote-on-macbidouillecom-with-app-engine/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blacklisting words in Twitter Tools</title>
		<link>http://w00kie.com/2009/05/30/blacklisting-words-in-twitter-tools/</link>
		<comments>http://w00kie.com/2009/05/30/blacklisting-words-in-twitter-tools/#comments</comments>
		<pubDate>Sat, 30 May 2009 02:26:59 +0000</pubDate>
		<dc:creator>w00kie</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://w00kie.com/?p=539</guid>
		<description><![CDATA[There's a new game trending on Twitter these days, Spymaster, and it likes to write out stuff to your twitter feed. There's a good controversy running on the web whether these tweets are spam or not. I'm playing and I've &#8230; <a href="http://w00kie.com/2009/05/30/blacklisting-words-in-twitter-tools/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There's a new game <a title="twitter trend: #spymaster" href="http://twitter.com/#search?q=%23spymaster">trending</a> on Twitter these days, <a title="Play Spymaster - it's addictive" href="http://playspymaster.com">Spymaster</a>, and it likes to write out stuff to your twitter feed. There's a good <a title="post on techcrunch" href="http://www.techcrunch.com/2009/05/29/spy-vs-spy-the-spymaster-backlash-begins-and-twitter-needs-to-fix-it/">controversy</a> running on the web whether these tweets are spam or not. I'm playing and I've set it up to tweet out only level ups which is pretty minimalist.</p>
<p>However, I am also running the <a title="Twitter Tools plugin" href="http://alexking.org/projects/wordpress/readme?project=twitter-tools">Twitter Tools</a> plugin to copy my tweets back from twitter to my blog. But if I'm fine with exposing my twitter followers with #spymaster notifications, I'd rather not show them to my blog readers.</p>
<p>There is no way currently in the plugin to exclude tweets based on words, so I made a patch for it:</p>
<p><img class="aligncenter size-full wp-image-540" title="blacklist in the twitter tools options menu" src="/uploads/2009/05/twittertools-blacklist.jpg" alt="blacklist in the twitter tools options menu" width="434" height="154" /></p>
<p>You can download <a title="patch for Twitter Tools 1.6" href="/uploads/2009/05/twittertools-blacklist.patch">the patch</a> for the current 1.6 version and apply it with the following command:</p>
<pre style="padding-left: 30px;">patch twitter-tools.php &lt; twittertools-blacklist.patch</pre>
<p>I hope this feature will make it in the next version of the plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://w00kie.com/2009/05/30/blacklisting-words-in-twitter-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Identity and business cards</title>
		<link>http://w00kie.com/2009/04/28/web-identity-business-cards/</link>
		<comments>http://w00kie.com/2009/04/28/web-identity-business-cards/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 02:36:10 +0000</pubDate>
		<dc:creator>w00kie</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[Me, myself and I]]></category>
		<category><![CDATA[openid]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://w00kie.com/?p=450</guid>
		<description><![CDATA[With the recent talk of business cards, I decided to make me some personal 名刺 for use in non-corporate context. I used to have some - home-made by my graphic designer brother - but even those were linked to one &#8230; <a href="http://w00kie.com/2009/04/28/web-identity-business-cards/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>With the recent talk of business cards, I decided to make me some personal <abbr title="meishi - business card">名刺</abbr> for use in non-corporate context. I used to have some - home-made by my graphic designer brother - but even those were linked to one of my activities, co-founder at <a title="MacBidouille" href="http://www.macbidouille.com">MacBidouille.com</a>, and not 100% personal.</p>
<p>This all got me thinking of my web identity - the face I show to the web, which in this day and age is the only world that matters. I am lucky enough to have a rare name, rare enough that I am pretty sure me and my cose-related family (8 people) are the only bearer of this family name. So when you search my name on Google, all the results are actually related to me, myself and I.</p>
<p>However, when looking at these results, the top ones are my profiles at various websites such as LinkedIn or Flickr. Although these are mine and I define what is written there, I do not have 100% dictator-like control over them. This bothers me a little...</p>
<p><a href="http://openid.net"><img class="aligncenter size-full wp-image-451" title="openid" src="/uploads/2009/04/openid.png" alt="openid" width="215" height="66" /></a></p>
<p>So I started working on <a title="Francois Rejete's webpresence portal" href="http://francois.rejete.com">my webpresence portal</a>, a website that defines me and should eventually become the nº1 search result for my name. It will be the website I write on my business card, and although it currently only shows links to stuff I do, I have plans to expand it with new functionalities: a portfolio and make it an <a title="OpenID foundation" href="http://openid.net/">OpenID</a> provider for starters.</p>
<p><strong>Update:</strong> <a title="Techcrunch Article" href="http://www.techcrunch.com/2009/05/01/the-tasteful-thickness-of-your-new-google-profile-business-card/">Google now offers 10.000 sets of business cards</a> to their Google Profile users.</p>
<p><img class="aligncenter size-full wp-image-470" title="google-businesscard" src="/uploads/2009/04/google-businesscard.jpg" alt="google-businesscard" width="338" height="194" /></p>
<p>They are kinda lame and cool at the same time. Anyways, they do no ship to Japan so I won't get one. <a title="my new business cards" href="http://w00kie.com/2009/04/29/business-cards-and-qrcodes/">My design</a> is better.</p>
]]></content:encoded>
			<wfw:commentRss>http://w00kie.com/2009/04/28/web-identity-business-cards/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Meta-tags proposal for the new DiggBar</title>
		<link>http://w00kie.com/2009/04/18/meta-tags-proposal-for-the-new-digg-bar/</link>
		<comments>http://w00kie.com/2009/04/18/meta-tags-proposal-for-the-new-digg-bar/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 06:27:39 +0000</pubDate>
		<dc:creator>w00kie</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://w00kie.com/?p=421</guid>
		<description><![CDATA[Many think the DiggBar is evil. I don't. I find it ingenious, especially the digg.com pre-pending which will automatically generate a shortened URL for you as well as a "Submit to Digg" button if the page URL has not been &#8230; <a href="http://w00kie.com/2009/04/18/meta-tags-proposal-for-the-new-digg-bar/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Many think the <a title="Digg bar announcement" href="http://blog.digg.com/?p=591">DiggBar</a> is evil. I don't. I find it ingenious, especially the <em>digg.com</em> pre-pending which will automatically generate a shortened URL for you as well as a "Submit to Digg" button if the page URL has not been submitted yet.</p>
<p><img class="aligncenter size-full wp-image-424" title="prepending digg.com for the digg bar" src="/uploads/2009/04/diggbar-prepend.jpg" alt="prepending digg.com for the digg bar" width="440" height="26" /></p>
<p><img class="aligncenter size-full wp-image-425" title="unsubmitted diggbar" src="/uploads/2009/04/diggbar.jpg" alt="unsubmitted diggbar" width="500" height="190" /></p>
<p>However, when you submit a link to Digg by this way, the title and description of the item are empty by default, placing the burden to fill up these fields on the submitter. He needs to go back to the page, copy the title, copy some text of the article or make up a better description, which is all a pain and poses a big hurdle...</p>
<p><img class="aligncenter size-full wp-image-422" title="Digg submission - all empty" src="/uploads/2009/04/digsubmit.jpg" alt="Digg submission - all empty" width="500" height="153" /></p>
<p>Digg <a title="Digg tools" href="http://digg.com/tools/integrate#3">offers a way</a> for webmasters to create a link that will pre-fill these fields with the data you want your readers to use. This is done by simply setting some parameter in a URL to put as target of the link:</p>
<pre>http://digg.com/submit?url=example.com&amp;title=TITLE&amp;bodytext=DESCRIPTION&amp;media=MEDIA&amp;topic=TOPIC</pre>
<p>But this process is not compatible with the DiggBar and its URL pre-pending feature. What we, webmasters, need is a way to define these values that will work everytime.</p>
<p><strong>Why not Meta tags?</strong> Step 1 of the step 2 in the screenshot above is Digg downloading the page to check it really exists and provide potential thumbnails for the submission. At this stage they could read a couple of meta tags in the &lt;head&gt; of the page and use that to pre-fill these fields.</p>
<pre>&lt;meta name="digg-title"  content="My title here" /&gt;
&lt;meta name="digg-description" content="My 350 characters excerpt." /&gt;</pre>
<p>It would then be trivial to write a WordPress plugin that generates these meta from your post title and excerpt (or similar concepts in other CMS platforms).</p>
<p>If you think this would be a feature you would like to see, I invite you to digg this blog post: <a title="Digg this" href="http://digg.com/d1p1YV">http://digg.com/d1p1YV</a></p>
]]></content:encoded>
			<wfw:commentRss>http://w00kie.com/2009/04/18/meta-tags-proposal-for-the-new-digg-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter integration</title>
		<link>http://w00kie.com/2009/04/18/twitter-integration/</link>
		<comments>http://w00kie.com/2009/04/18/twitter-integration/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 02:03:30 +0000</pubDate>
		<dc:creator>w00kie</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[Me, myself and I]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://w00kie.com/?p=417</guid>
		<description><![CDATA[As you might have noticed, in the past weeks I have more tightly integrated my twitter messages into the blog. When they used to just show up in the sidebar, they are now posted simultaneously here as full blog posts, &#8230; <a href="http://w00kie.com/2009/04/18/twitter-integration/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As you might have noticed, in the past weeks I have more tightly integrated my <a title="my twitter timeline" href="http://twitter.com/w00kie">twitter messages</a> into the blog. When they used to just show up in the sidebar, they are now posted simultaneously here as full blog posts, albeit with a special minimalistic styling.</p>
<p><img class="aligncenter size-full wp-image-418" title="tweetshot" src="/uploads/2009/04/tweetshot.jpg" alt="tweetshot" width="500" height="69" /></p>
<p>You can clickity-click on the cute blue birdie to go to the post page and comment, as with every other post, on the inane stuff I post there. This wonder of technology is brought to you by the <a title="twitter tools plugin" href="http://alexking.org/projects/wordpress/readme?project=twitter-tools">twitter tools</a> wordpress plugin and my <span style="text-decoration: line-through;">awesome</span> coding skills.</p>
<p>Alas, I know some of you are already following my tweets on your twitter account and might find the double punch effect of reading these messages twice, in your twitter timeline and in your RSS feedreader, a bit overwhelming.</p>
<p><img class="aligncenter size-full wp-image-419" title="feedsanstwitter" src="/uploads/2009/04/feedsanstwitter.jpg" alt="feedsanstwitter" width="500" height="67" /></p>
<p>Which is why I created an extra RSS feed to which you can subscribe and get only the fat fleshy blog posts, free of the 140 characters tweets. You can switch to that, I won't begrudge you...</p>
]]></content:encoded>
			<wfw:commentRss>http://w00kie.com/2009/04/18/twitter-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: w00kie.com @ 2012-05-24 21:15:15 -->
