<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Legofish</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/" />
    <link rel="self" type="application/atom+xml" href="http://mahimoto.com/weblog/atom.xml" />
   <id>tag:mahimoto.com,2010:/weblog/11</id>
    <link rel="service.post" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11" title="Legofish" />
    <updated>2010-08-25T14:52:26Z</updated>
    
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 3.2</generator>
 
<entry>
    <title>New Stuff</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/005109.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=5109" title="New Stuff" />
    <id>tag:mahimoto.com,2010:/weblog//11.5109</id>
    
    <published>2010-08-25T14:43:52Z</published>
    <updated>2010-08-25T14:52:26Z</updated>
    
    <summary>I&apos;m in the process of redesigning my site, and have been terribly neglecting this place. I haven&apos;t updated my portfolio / photoblog / sketchpad for ages, because I don&apos;t want to spend time on something that&apos;s going to go away...</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>I'm in the process of redesigning my site, and have been terribly neglecting this place. I haven't updated my portfolio / photoblog / sketchpad for ages, because I don't want to spend time on something that's going to go away soon.</p>

<p>Here's a few stuff I have been working on since we last spoke:</p>

<p> <strong><a href="http://fotomoto.com">fotomoto</a></strong><br />
If you're into photography, and you have a photoblog, chances are you are using (or have at least heard of) fotomoto.com. Fotomoto is a service that lets photographers (and other artists) sell their art-work from their own site. I'm proud to say I've been part of the fotomoto team almost from day 1, and have been doing most of the UI work, including everything you see on the shopping widget itself. I also worked on the layout and animation for the fotomoto demo video, which you can check out on the <a href="http://fotomoto.com">fotomoto.com</a> homepage. </p>

<p><strong><a href="http://qajarwomen.org">Women's World in Qajar Iran</a></strong><br />
This is another fun project I've been involved with. WWQI is a historical archive of cool stuff from the Qajar period (mostly 1800's) that shed light on aspects of women's lives back then. I've designed the front-end, and have worked with some great folks who have developed all the back end.  I also designed the WWQI logo. </p>]]>
        
    </content>
</entry>
<entry>
    <title>So what happened to legofish?</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/005087.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=5087" title="So what happened to legofish?" />
    <id>tag:mahimoto.com,2010:/weblog//11.5087</id>
    
    <published>2010-03-24T15:43:30Z</published>
    <updated>2010-03-24T15:45:24Z</updated>
    
    <summary>In case you&apos;re wondering, after 8 years of being legofish, LEGO filed a complaint against the domain name and took it away. So I have changed the name to Mahimoto. I&apos;m in the process of redesigning the entire site, and...</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>In case you're wondering,  after 8 years of being legofish, LEGO filed a complaint against the domain name and took it away. So I have changed the name to Mahimoto. I'm in the process of redesigning the entire site, and until then this place will sort of be in limbo.</p>]]>
        
    </content>
</entry>
<entry>
    <title>flash error initializing java runtime environment</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/005065.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=5065" title="flash error initializing java runtime environment" />
    <id>tag:legofish.com,2010:/weblog//11.5065</id>
    
    <published>2010-01-05T14:40:01Z</published>
    <updated>2010-01-05T14:48:29Z</updated>
    
    <summary>If you&apos;re trying to launch Flash Builder (or Flex Builder) and you&apos;re getting an error &quot;JVM Terminated&quot;, and/or you&apos;re getting the &quot;error initializing java runtime environment&quot; when opening Flash, and you&apos;re on a mac, you have probably messed up with...</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>If you're trying to launch Flash Builder (or Flex Builder) and you're getting an error "JVM Terminated", and/or you're getting the "error initializing java runtime environment" when opening Flash, and you're on a mac, you have probably messed up with you symlinks in the /System/Library/Frameworks/JavaVM.framework/Versions folder. Specifically, you might have changed the symlink of CurrentJDK from 1.5 to 1.6. That's what happened to me anyway. I had to change it because my Java projects are using 1.6, but my Maven was still trying to use 1.5 and it wouldn't build (I think it's the same thing with Ant). <br />
So, to make Maven work, simply put this in your ~/.bash_profile:<br />
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home</p>

<p>And change the symlink of CurrentJDK back to 1.5 by executing this from the shell:<br />
sudo rm CurrentJDK<br />
sudo ln -s 1.5 CurrentJDK</p>

<p>This should take away your Flash/Flex Builder/Flash Builder errors.</p>

<p>There might be better ways of telling Maven which JDK to use than specifying it in your .bash_profile, <a href="http://lists.apple.com/archives/java-dev/2009/May/msg00210.html">this thread</a> has some good insight.<br />
</p>]]>
        
    </content>
</entry>
<entry>
    <title>installing mysql and ruby gems using macports problems</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/005056.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=5056" title="installing mysql and ruby gems using macports problems" />
    <id>tag:legofish.com,2009:/weblog//11.5056</id>
    
    <published>2009-12-22T00:02:09Z</published>
    <updated>2009-12-22T00:06:09Z</updated>
    
    <summary>I&apos;ve spent the past several hours trying to deal with errors when installing mysql and some ruby gems using macports. There are already a ton of guides out there, but none of the ones I read said anything about the...</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>I've spent the past several hours trying to deal with errors when installing mysql and some ruby gems using macports. There are already a ton of guides out there, but none of the ones I read said anything about the following issues:</p>

<p>- you won't be able to start your mysql database unless you restart your machine after installing mysql via macports</p>

<p>- if you're installing any ruby gems, eg. sudo gem install -y rake and you're getting the following error:</p>

<blockquote><p>Bulk updating Gem source index for: http://gems.rubyforge.org
ERROR:  could not find rake locally or in a repository</p></blockquote>

<p>It's because you forgot to  "source ~/.profile"</p>

<p>I hope this helps someone.</p>]]>
        
    </content>
</entry>
<entry>
    <title>Pioneering Personalization</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/005050.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=5050" title="Pioneering Personalization" />
    <id>tag:legofish.com,2009:/weblog//11.5050</id>
    
    <published>2009-10-13T16:08:14Z</published>
    <updated>2009-10-13T16:16:57Z</updated>
    
    <summary>Mass personalization and customization is a trend that&apos;s gained considerable momentum in the past few years. From personalizing the web, to personalizing products such as cars, shoes, or even cereal, there are not many things you can&apos;t personalize these days....</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>Mass personalization and customization is a trend that's gained considerable momentum in the past few years. From personalizing the web, to personalizing products such as <a href="http://bmw.com">cars</a>, <a href="http://nikeid.com">shoes</a>, or even <a href="http://www.mymuesli.com/">cereal</a>, there are not many things you can't personalize these days.<br />
One of the areas personalization hasn't had a big impact yet is fashion. Sure, there are a lot of websites that let you customize t-shirts and other casual apparel. But try to personalize anything more stylish and you'll hit a dead end. Until now that is!</p>

<p><a href="http://modifyclothing.com">Modify clothing</a> fills in the gap by applying personalization to women's dresses, with great effectiveness. They only have a single product for now: a black dress. But you can change the look of the dress by changing the "wrap" that gets tied to it. One might think, how can anyone dramatically alter the way a dress looks just by changing a wrap? Well, <a href="http://modifyclothing.com/products.html">check out </a>the photos and you'll probably be as surprised as I was.</p>

<p>I think it's a great idea. It makes clothing much more reusable and a lot more fun, not to mention a lot more affordable. I wouldn't be surprised if other fashion houses adopt similar approaches in the future, but for now Modify Clothing is pioneering a great concept.</p>]]>
        
    </content>
</entry>
<entry>
    <title>IE Bugs</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/005017.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=5017" title="IE Bugs" />
    <id>tag:legofish.com,2009:/weblog//11.5017</id>
    
    <published>2009-04-29T19:14:31Z</published>
    <updated>2009-04-29T19:17:48Z</updated>
    
    <summary>I&apos;m just posting this as a record for myself. It has already been documented on the net a zillion times. Here are some of the most common IE/IE6 bugs I&apos;ve had to deal with in my days: Margin-doubling Error: IE6...</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>I'm just posting this as a record for myself. It has already been documented on the net a zillion times. Here are some of the most common IE/IE6 bugs I've had to deal with in my days:</p>

<p><strong>Margin-doubling Error</strong>: IE6 doubles margin-left or margin-right on a floated element. The fix for this (as found <a href="http://www.jaymeblackmon.com/ie6-double-margin-bug-fix">here</a>) is to add "display:inline" to the floated element. A question that arises, is that whatever you wanted that element to be a block element? Well, if you still give it a fixed width and/or height, it should still behave the way you expected it to.</p>

<p><strong>Negative Margin Clipping Error </strong>: If you have an element wwith a negative margin inside a parent element, The parent element will likely "clip" the child element's background. So the child element will not be visible. A fix for this is to add "position:relative" to the CHILD element, i.e. the element which has the negative margin.</p>

<p><strong> IE shifts elements by their margins when the window resizes </strong>: alright this is extremely weird and I spent way too much time than I should have trying to figure it out. It's a bit complicated to explain as well. Basically I had a floating relatively positioned element with a left margin  inside a container. Everything was fine when the page loads. But for my application, I had to dynamically resize the container (using jquery animate). As soon as I did that, the floated element would lose its margin ... it would get it back again when I hovered over it. Anyway, adding position:relative to the PARENT seemed to fix it for me ... and I have little idea why.</p>]]>
        
    </content>
</entry>
<entry>
    <title>Buttons</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/004951.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=4951" title="Buttons" />
    <id>tag:legofish.com,2008:/weblog//11.4951</id>
    
    <published>2008-10-08T16:51:47Z</published>
    <updated>2008-10-08T17:54:19Z</updated>
    
    <summary>During the Tirgan festival, me and Takin designed a bunch of buttons to sell at our booth. They were a big hit, and almost everyone who passed by our booth couldn&apos;t resist getting a few. I still have a few...</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>During the Tirgan festival, me and Takin designed a bunch of buttons to sell at our booth. They were a big hit, and almost everyone who passed by our booth couldn't resist getting a few. I still have a few of these left, so I'm putting them up for sale here. </p>

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="image" src="http://legofish.com/store/buttons/retro.png" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
<input type="hidden" name="add" value="1">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="pendar.yousefi@utoronto.ca">
<input type="hidden" name="item_name" value="Legofish Buttons">
<input type="hidden" name="item_number" value="RETRO">
<input type="hidden" name="amount" value="10.00">
<input type="hidden" name="shipping" value="3.00">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="logo_custom" value="http://legofish.com/store/buttons/retro.png">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="CAD">
<input type="hidden" name="lc" value="CA">
<input type="hidden" name="bn" value="PP-ShopCartBF">
</form>

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="image" src="http://legofish.com/store/buttons/patterns.png" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
<input type="hidden" name="add" value="1">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="pendar.yousefi@utoronto.ca">
<input type="hidden" name="item_name" value="Legofish Buttons">
<input type="hidden" name="item_number" value="PATTERNS">
<input type="hidden" name="amount" value="10.00">
<input type="hidden" name="shipping" value="3.00">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="logo_custom" value="http://legofish.com/store/buttons/patterns.png">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="CAD">
<input type="hidden" name="lc" value="CA">
<input type="hidden" name="bn" value="PP-ShopCartBF">
</form>

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="image" src="http://legofish.com/store/buttons/mythology.png" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
<input type="hidden" name="add" value="1">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="pendar.yousefi@utoronto.ca">
<input type="hidden" name="item_name" value="Legofish Buttons">
<input type="hidden" name="item_number" value="MYTHOLOGY">
<input type="hidden" name="amount" value="10.00">
<input type="hidden" name="shipping" value="3.00">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="logo_custom" value="http://legofish.com/store/buttons/mythology.png">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="CAD">
<input type="hidden" name="lc" value="CA">
<input type="hidden" name="bn" value="PP-ShopCartBF">
</form>

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="image" src="http://legofish.com/store/buttons/pesar.png" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
<input type="hidden" name="add" value="1">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="pendar.yousefi@utoronto.ca">
<input type="hidden" name="item_name" value="Legofish Buttons">
<input type="hidden" name="item_number" value="PESAR-E-SHOJA">
<input type="hidden" name="amount" value="10.00">
<input type="hidden" name="shipping" value="3.00">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="logo_custom" value="http://legofish.com/store/buttons/pesar.png">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="CAD">
<input type="hidden" name="lc" value="CA">
<input type="hidden" name="bn" value="PP-ShopCartBF">
</form>

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="image" src="http://legofish.com/store/buttons/turquoise.png" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
<input type="hidden" name="add" value="1">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="pendar.yousefi@utoronto.ca">
<input type="hidden" name="item_name" value="Legofish Buttons">
<input type="hidden" name="item_number" value="TURQUOISE">
<input type="hidden" name="amount" value="10.00">
<input type="hidden" name="shipping" value="3.00">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="logo_custom" value="http://legofish.com/store/buttons/turquoise.png">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="CAD">
<input type="hidden" name="lc" value="CA">
<input type="hidden" name="bn" value="PP-ShopCartBF">
</form>]]>
        
    </content>
</entry>
<entry>
    <title>rick what</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/004856.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=4856" title="rick what" />
    <id>tag:legofish.com,2008:/weblog//11.4856</id>
    
    <published>2008-01-16T16:38:48Z</published>
    <updated>2008-03-18T05:11:26Z</updated>
    
    <summary>Sometimes when I see a really interesting video or news item online and I find out that it was apparently the talk-of-the-net several months ago I feel a little bad that I&apos;m so far behind. On the other hand, it...</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>Sometimes when I see a really interesting video or news item online and I find out that it was apparently the talk-of-the-net several months ago I feel a little bad that I'm so far behind. On the other hand, it also probably means that I'm not a super-nurd, which is a comforting consolation. In any case, at the risk of looking stupid in the eyes of the geeks who read this, I'm going to blog about all of these interesting (yet somewhat old) stuff that I discovered today.</p>

<p>First, there is this extremely unbelievably retarded news video that aired on a local Fox station in july 2007. You'll cringe as you see this, but this is not a parody or hoax, it's an actual news report : <a href="http://www.myfoxla.com/myfox/pages/Home/Detail?contentId=3894628&version=7&locale=EN-US&layoutCode=VSTY&pageId=1.1.1&sflg=1">check it here</a>.</p>

<p>The way I found the video was by reading about the concept of <a href="http://en.wikipedia.org/wiki/Imageboard">imageboards</a>, another seemingly big topic which had illuded me (there goes my big business idea).</p>

<p>How did I hear about imageboard, you say? I was reading about another internet meme called "<a href="http://www.encyclopediadramatica.com/Rickroll">Rick Rolling</a>" and in the process found out that Rick Rolling was started at one of these popular image boards (<a href="http://www.4chan.org/">4chan</a>). </p>

<p>And finally, what started all of this was <a href="http://xkcd.com/351/">this xkcd strip</a>. The rickrolling comment at the end made me curious and set of my wonderous journey in the internets.</p>

<p>Oh and since we're doing this, <a href="http://www.youtube.com/watch?v=oHg5SJYRHA0&eurl=http://www.encyclopediadramatica.com/Rickroll">another example </a>of why 80's was a disaster.</p>]]>
        
    </content>
</entry>
<entry>
    <title>Game Over</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/004835.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=4835" title="Game Over" />
    <id>tag:legofish.com,2007:/weblog//11.4835</id>
    
    <published>2007-11-28T21:41:33Z</published>
    <updated>2008-03-18T05:11:33Z</updated>
    
    <summary>I beat Assassin&apos;s Creed on the weekend. I still have mixed feelings about the game. On the one hand I really enjoyed the realism and the free roaming nature, and of course the grandness of each city. On the other...</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>I beat Assassin's Creed on the weekend. I still have mixed feelings about the game. On the one hand I really enjoyed the realism and the free roaming nature, and of course the grandness of each city. On the other hand, I was as frustrated as everyone else with the repetetive gameplay. In any case, the ending is open-ended and sets up the sequel. What's interesting is that there are a ton of hidden secrets and messages laid out for you at the end. I almost overlooked all of these, but then I found an <a href="http://www.computerandvideogames.com/article.php?id=175552">interesting link</a> after finishing the game which explains the ending and it added a whole new dimension to the game for me. Check <a href="http://www.computerandvideogames.com/article.php?id=175552">it </a>out.</p>]]>
        
    </content>
</entry>
<entry>
    <title>assassins creed</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/004831.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=4831" title="assassins creed" />
    <id>tag:legofish.com,2007:/weblog//11.4831</id>
    
    <published>2007-11-16T16:53:43Z</published>
    <updated>2008-07-23T21:46:55Z</updated>
    
    <summary>It finally came out yesterday. I had been following the development for Assassin&apos;s Creed for the past year, eagerly waiting for its release. I&apos;m not a hardcore gamer at all. I only play a game if I love it, and...</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p><img alt="assassin.gif" src="http://legofish.com/weblog/assassin.gif" width="150" height="173" align="left" style="border:1px solid #ccc; margin-right:5px"/>It finally came out yesterday. I had been following the development for <a href="http://assassinscreed.com">Assassin's Creed</a> for the past year, eagerly waiting for its release.</p>

<p>I'm not a hardcore gamer at all. I only play a game if I love it, and that means that I might play 2-3 titles per year (or sometimes no titles, if nothing comes out that's interesting to me). But the games I do play, I play with passion.<br />
</p>]]>
        <![CDATA[<p> I had been a PC gamer until I saw Ninja Gaiden four years ago at a friend's place. That game suckered me into getting an Xbox just so I could play that one game. The same thing happened again last month when I saw an ad for Heavenly Sword  on TV. I couldn't believe I had never seen or heard about it before, but I knew I just had to play it. So I went out an got a PS3 (just before the price-drop, mind you), and I don't regret it one bit.</p>

<p>So now comes Assassin's Creed, a game I anticipated and loved to play just as much as Ninja Gaiden and the Heavenly Sword, and I must say my first experience playing it was a bit of a let down. I had every reason to look forward to this game: It's made by my favorite studio Ubisoft Montreal, The characters and story were very interesting, the game was clearly next gen, and the setting seemed out of this world.</p>

<p>I'm still on the first mission, but I totally aree with this <a href="http://ps3.ign.com/articles/834/834770p1.html">IGN review</a> of the game. What could have been an extra-ordinary game just falls short because of a few bad gameplay decisions. </p>

<p>I must say I adore the realism and historical accuracy of this game (I can only look back and wish they had strived for the same accuracy in the Prince of Persia series), but the slow pace of the game and the less-than-ideal combat system is what breaks it for me. Also I was looking forward to a great soundtrack, but unfortunately that's almost non-existent.</p>

<p>Still, I look foward to finishing it, and even more so to the release of the sequel.</p>]]>
    </content>
</entry>
<entry>
    <title>and the winner is</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/004829.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=4829" title="and the winner is" />
    <id>tag:legofish.com,2007:/weblog//11.4829</id>
    
    <published>2007-11-06T19:29:40Z</published>
    <updated>2009-01-16T05:22:18Z</updated>
    
    <summary>ME! well, sort of. Both of my entries won an award : Labelheads, won Dr. Frank Piller&apos;s &quot;Innovativeness&quot; award. It was one of the panel awards in the competition. It also won the popular vote, which certainly surprised me in...</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>ME! well, sort of. Both of my entries won an award :</p>

<p><a href="http://olp.spreadshirt.net/entries/2007/09/14/labelheads/"><img src="http://olp.spreadshirt.net/finalists/wp-content/uploads/2007/09/labelhead1.jpg" align="left" style="margin-right:5px"></a>Labelheads, won Dr. Frank Piller's "<a href="http://olp.spreadshirt.net/wordpress/2007/10/25/the-winner-of-frank-pillers-innovation-award-is/">Innovativeness</a>" award. It was one of the panel awards in the competition. It also won the popular vote, which certainly surprised me in a very good way. Despite that and despite being in the panelists' top 3, it didn't get any of the main prizes. Spreadshirt felt it wasn't serious enough, a decision that I fully respect.</p>

<p><a href="http://olp.spreadshirt.net/entries/2007/10/14/molecular-goodness/"><img src="http://olp.spreadshirt.net/finalists/wp-content/uploads/2007/10/title.jpg" align="left" style="margin-right:5px"></a>My second submission, Molecular Goodness, which was a collaboration with my designer friend Shahin, also won a panel award: <a href="http://olp.spreadshirt.net/wordpress/2007/11/05/the-computerlove-collaboration-prize-winner-is-oh-and-does-anyone-want-a-free-shirt/">Computerlove collaboration award</a>, for best collaborative entry.</p>

<p>I must confess in the beginning I felt slightly let down because I had a lot of confidence that I would make Spreadshirt's top 3 cut, but I am very happy with my performance overall. It was the first competition of its kind that I had entered, and having 2 entires in the final 15 among 2,800 submissions, and both of them winning something was a great acheivement. During the 7 weeks that the OLP ran, I was truly addicted to the process and i'm thinking about participating in more competitions from now on.</p>]]>
        
    </content>
</entry>
<entry>
    <title>Let the voting begin</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/004811.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=4811" title="Let the voting begin" />
    <id>tag:legofish.com,2007:/weblog//11.4811</id>
    
    <published>2007-10-19T23:24:42Z</published>
    <updated>2007-10-19T23:31:54Z</updated>
    
    <summary>The Spreadshirt open logo competition I wrote about earlier is now closed. After 7 weeks and 2800 entries they have narrowed it down to 15 finalists. I&apos;m really happy to say that I have one and a half entries in...</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>The Spreadshirt open logo competition I wrote about earlier is now closed. After 7 weeks and 2800 entries they have narrowed it down to 15 finalists. I'm really happy to say that I have one and a half entries in the final! </p>

<p><a href="http://olp.spreadshirt.net/entries/2007/09/14/labelheads/"><img src="http://olp.spreadshirt.net/finalists/wp-content/uploads/2007/09/labelhead1.jpg" align="left" style="margin-right:5px"></a>Labelheads, the concept I came up with on week 3 is one of them. Spreadshirt is a company that lets its users customize their own clothing. So I tried to capture that essence with a customizable logo. They can always keep their logo fresh by changing it depending on the season and/or occasion. </p>

<p><a href="http://olp.spreadshirt.net/entries/2007/10/14/molecular-goodness/"><img src="http://olp.spreadshirt.net/finalists/wp-content/uploads/2007/10/title.jpg" align="left" style="margin-right:5px"></a>The second one was a collaboration between me and my friend and talented designer/photographer Shahin. It's called Molecular Goodness. The three core values of Spreadshirt are represented by three basic shapes or molecules, that can be combined to form any shape (like a big "S", a t-shirt, or a tag). </p>

<p>The final winner will be chosen by Spreadshirt next week, and in order to help them make their decision they have made an <a href="http://isk.spreadomat.net/index.php?su_id=284">online survey </a>where you can see all the 15 finalists and vote for the best. If you're interested <a href="http://isk.spreadomat.net/index.php?su_id=284">check it out</a> and vote for your favourite (by which I mean us :D ).</p>]]>
        
    </content>
</entry>
<entry>
    <title>Design quote</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/004806.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=4806" title="Design quote" />
    <id>tag:legofish.com,2007:/weblog//11.4806</id>
    
    <published>2007-10-09T01:13:29Z</published>
    <updated>2007-10-09T01:21:30Z</updated>
    
    <summary>I&apos;ve neglected my blog far too long, and I don&apos;t feel too good about that. I&apos;m going to gradually start writing again, and this might be a good start. I&apos;ve been reading some interaction design books for the past several...</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>I've neglected my blog far too long, and I don't feel too good about that. I'm going to gradually start writing again, and this might be a good start.  I've been reading some interaction design books for the past several months and this little quote resonated with me deeply:<br />
<blockquote><p>Never show a design approach that you’re not happy with; stakeholders<br />
just might like it.</p></blockquote></p>]]>
        <![CDATA[<center><img src="../images/mainhr.gif"></center>

<p>I've been quite busy lately, working on multiple projects at a time. One of the more fun things I've been doing is taking part in an Open Logo Project for re-branding of <a href="http://Spreadshirt.com">Spreadshirt</a>, a big online t-shirt label that lets you customize your own shirts (and is the platform I use for the <a href="http://store.legofish.com">Legofish Store</a>). </p>

<p>It's a 7-week competition and one of my designs has made the <a href="http://olp.spreadshirt.net/finalists/category/grand-finalists/">final short list</a> and I'm feeling pretty good about that. It's a really fun design and I had as much fun making it as people seem to be having looking at it and playing with it (it's quite interactive, so do <a href="http://olp.spreadshirt.net/entries/2007/09/14/labelheads/">check it out</a>).</p>]]>
    </content>
</entry>
<entry>
    <title>project three hundred blog</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/004616.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=4616" title="project three hundred blog" />
    <id>tag:legofish.com,2007:/weblog//11.4616</id>
    
    <published>2007-03-28T08:06:28Z</published>
    <updated>2007-04-23T18:51:21Z</updated>
    
    <summary>I haven&apos;t had time to update my Weblog here, I&apos;ve been working on setting up the weblog at the Project 300 website, and I just finished a first version of that. I invite you to check it out here....</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>I haven't had time to update my Weblog here, I've been working on setting up the weblog at the Project 300 website, and I just finished a first version of that. I invite you to check it out <a href="http://300themovie.info">here</a>.</p>]]>
        <![CDATA[<p>I lied about not having time to update here, I was writing a long post about how the whole Project 300 came about and what triggered me to start it, but I never finished it, and now that I look at it it seems pretty boring ... maybe i'll publish it in my memoir when I get old or something.</p>

<p>By the way, if you would like to show you support for Project 300 by putting the ribbon on your website you can do so by simply copying the following line of code and pasting it after the &lt;body&gt; tag on your template:</p>

<p>red ribbon<br />
<textarea dir="ltr" style="width:380px">&lt;script language=&quot;JavaScript&quot; src=&quot;http://300themovie.info/threehundred.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</textarea><br />
white ribbon<br />
<textarea dir="ltr" style="width:380px">&lt;script language=&quot;JavaScript&quot; src=&quot;http://300themovie.info/threehundred2.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</textarea></p>]]>
    </content>
</entry>
<entry>
    <title>BBC article about project 300</title>
    <link rel="alternate" type="text/html" href="http://mahimoto.com/weblog/004602.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.legofishlabs.com/mt/mt-atom.cgi/weblog/blog_id=11/entry_id=4602" title="BBC article about project 300" />
    <id>tag:legofish.com,2007:/weblog//11.4602</id>
    
    <published>2007-03-18T05:21:24Z</published>
    <updated>2007-04-23T18:51:21Z</updated>
    
    <summary>check it out here....</summary>
    <author>
        <name>legofish</name>
        <uri>http://mahimoto.com</uri>
    </author>
    
    <content type="html" xml:lang="en-us" xml:base="http://mahimoto.com/weblog/">
        <![CDATA[<p>check it out <a href="http://news.bbc.co.uk/2/hi/middle_east/6455969.stm">here</a>. </p>]]>
        
    </content>
</entry>

</feed> 

