Spherical Thy Rotor – Christopher Taylor's Technology Blog

Vice Versa: Tokyo Bossa Nova

Posted in Uncategorized by ezln23 on March 12, 2007

I happened upon this band by chance one night soon after coming to Tokyo. Since then, I’ve seen them a couple of times. I’m posting this link now because I always forget the name (some kind of weird mental block). Anyway, if you like Bossa Nova and you’re in Tokyo, they are a nice band to watch: Vice Versa.

Furigana.jp has launched

Posted in Uncategorized by ezln23 on February 2, 2007

I have been working during my free time, over the last month, on a new website called Furigana.jp. The aim of the site is to help people “read Japanese today”.

In a nutshell, Japanese is hard to read. It is hard to read because there are actually four “alphabets” that are used to write Japanese: kanji, hiragana, katakana and romaji. Two of these alphabets, hiragana and katakana, are phoenetic alphabets collectively known as kana. The forth, romaji, is a formalized phoenetic form base on the Latin characters, which are commonly used in European languages like English. If these were it, most foreigners living in Japan and students of Japanese wouldn’t have such a hard time; these can basically be learned in a week or so. The one that is the cause of so much anguish for people learning Japanese is kanji.

Kanji is a form of writing that is a modification of the Chinese writing system. It was brought to Japan a long time ago (see Wikipedia). It basically consists of over 2000 characters that everyone is expected to learn to graduate from school and more than 8000 others that range in usage from common to obsolete. If that didn’t make matters bad enough, each symbol has up to eight different pronunciations depending on how they are used in a sentence or with other characters. Let’s just say that kanji is really hard.

For foreigners living in Japan, going about your daily life is hard enough without trying to learn such a complicated system of writing. That is why I decided to create Furigana.jp.

I receive between 10 and 20 emails each day that are written in kanji. I’m sure many other foreigners working in Japan receive even more. Up until now, I would copy the text of these emails into the Excite Translater and turn them into a mangled conglomeration of words that roughly resemble English and can almost be understand as having a vague sort of meaning; in other words, it turns it into jibberish. That’s not really a slight against Excite as it has the best translator out there. Back to the point… There was no way for me to read these emails since they were all in kanji.

Furigana.jp solves this problem and makes it possible for me (and everyone else) to “read Japanese today”. The site will take web pages or text, written in Japanese (aka kanji), and convert it into one of three readable formats:

  • furigana – adds hiragana above the kanji from the original text
  • kana – replaces the original kanji with hiragana
  • romaji – replaces all Japanese text (kanji, hiragana and katakana) with Latin characters (modified Hepburn notation)

I should mention, this isn’t the first site that has these functions. There are a couple of others that offer part of what I am offering. The difference is that I have brought it together in a cleaner package that is easier to use as a daily tool. After trying to use the other tools I was left frustrated, which is why I decided to build my own tool. So, I hope this tool will be useful to people. Time will tell. If nothing else, I will be using the tool every day. Enjoy!

iLike brings more community to iTunes

Posted in Uncategorized by ezln23 on December 13, 2006

I was first introduced to iLike because I received a reference to them through a friend who knows the president, Hadi Partovi. At the time I was really interested in their business, but I was still committed to my position here at Groove Digital Entertainment in Tokyo. Anyway, a few weeks ago I received an invitation from Mr. Partovi to join the iLike service and I did. Since then, I have spent some time customizing my profile page, adding friends, navigating through friend connections and the like. I have already discovered new music that I like and that is the entire goal of the service; discovering what iLike…

The service works through a program that you download and install locally on your PC. Once you’ve installed it, the application will launch concurrently with iTunes every time iTunes is launched. As you listen to music, the iLike sidebar will show information about the currently playing song including recommendations for similar songs/artist. You can also navigate to other user’s data as well as search playlists in the sidebar.

Overall, I think the service is a hit. If you can get your friends to join or if you start connecting to people with similar tastes, it can be a very effective way to discover new music and to add a nice community aspect to your music listening.

Math illiteracy is really painful…

Posted in Uncategorized by ezln23 on December 11, 2006

Verizon reps cannot do math… [Slashdot][audio]

Findory: personalized news based on usage

Posted in Uncategorized by ezln23 on September 18, 2006

Findory is a website that watches your news reading habits to personalize articles that it presents to you on its homepage [findory.com]. In addition to using Findory through their website, you can also integrate Findory into your normal news reader. I created a custom RSS feed through Findory that I added to Google Reader. This is a very cool idea and one that I have been thinking of in one way or another for a while now. I’ll have to give it a shot to see how good of a job it does for me.

A few Web 2.0 sites that caught my attention

Posted in Uncategorized by ezln23 on September 13, 2006

I spent a good part of the day today reviewing Web 2.0 sites that were featured on SEOmox Web 2.0 Awards [web2.0awards.org]. The following lists some of the sites that I thought were interesting and that I would probably use.

  • Basecamp – Provides a project management “extranet” that pulls together a number of important tools into a single focal point. Includes calendaring, people, tasks, milestones, document management and discussions.
  • PBwiki – I think the site’s tagline says it all, “Make a free wiki as easily as a peanut butter sandwich”. They live up to it to. It was incredibly easy to setup my wiki. They have me my own hostname when I registered and I could choose to make the wiki public or private. The editor used standard wiki markup, but also provided a toolbar to create the markup. Good for me since I always forget.
  • CSS Beauty – A nice example of how concepts of weblogging and syndication can be brought together in an elegant and targeted content website.
  • Pandora Internet Radio – Create custom, dynamically generated radio stations to help you discover new music. Based on the Music Genome Project.
  • SWiK – OSS project database

There are many more sites out there… I will be looking for ones that have anything interesting.

Rounding Doubles to Integers in C#

Posted in Uncategorized by ezln23 on August 31, 2006

I looked all over the place in the C# libraries for a simple method to round a Double to an Integer. I finally gave up and decided that such a thing may not actually exist. So, I went out on the net to find someone else’s implementation, but I didn’t like the one that I did find. So, here is my take on the problem…

public static long Round(double d) {
double ceilD = (double)Math.Ceiling(d);
double floorD = (double)Math.Floor(d);

// is the original double closer to the ceiling?
return ((ceilD - d) < (d - floorD)) ?
(long)ceilD : (long)floorD;
}

I’m not sure about efficiency, but there is a certain elegance to this approach. Hope it is useful for someone.

UPDATE: don’t know how I missed this one… [abstracttb.com]

Mycelio is getting off the ground

Posted in Uncategorized by ezln23 on August 14, 2006

View east from MycelioBack in January, I ventured down to Oaxaca, Mexico with my good friend, Matt Brown. I was going for time off and a little adventure, but his goals were far more ambitious. Matt was embarking to start an organization to promote sustainability in a region that will soon be affected by growth.

Since January, he has managed to establish himself in Playa Zipolite, has bought and is developing property, and is now working with some local projects. I invite you to check out his website [Mycelio.org] where he explains everything in detail.

Vote for the cutest kittens at Kittenwar

Posted in Uncategorized by ezln23 on August 10, 2006

I saw this site [Kittenwar.com] while looking at a completely unrelated site [Wired.com]. Very cute… The site gives you comparison after comparison of cat photos. Simply click on the one you like most and keep going until you get board. The site ranks the most clicked on photos. The goal? To waste as much time as possible (blog editing included).

The Willcom "es" W-ZERO3: Another sweet Windows Mobile 5 phone

Posted in Uncategorized by ezln23 on July 25, 2006

This phone is one of the coolest I’ve seen so far. The Windows Mobile 5.0 market is really heating up. I’m dying over here in Japan waiting. Oh the irony that I am in Japan and complaining about availablility of cell phones!

This phone is much more compact than its older brother, though the screen is much smaller. It still packs lots of punch. For more on the “es” W-ZERO3, go here [Akihabara News].

Follow

Get every new post delivered to your Inbox.

Join 114 other followers