<?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>Strange Symphonies &#187; Flickr</title>
	<atom:link href="http://blog.aizatto.com/tag/flickr/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.aizatto.com</link>
	<description>The whole is greater than the sum of its parts</description>
	<lastBuildDate>Sun, 25 Jul 2010 07:59:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Batch Download of Photos From Flickr Based on Their Tag</title>
		<link>http://blog.aizatto.com/2008/11/20/batch-download-of-photos-from-flickr-based-on-their-tag/</link>
		<comments>http://blog.aizatto.com/2008/11/20/batch-download-of-photos-from-flickr-based-on-their-tag/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 09:33:30 +0000</pubDate>
		<dc:creator>aizatto</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHPFlickr]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.aizatto.com/?p=545</guid>
		<description><![CDATA[For the FOSS.my event, I wanted everyone to tag their photos with foss.my or foss.my 2008. Because this makes it easier to easily see FOSS.my buzz as it happens on Flickr! A Tale of Sucky WordPress Plugins I was looking for a plugin to grab Flickr photos by a specified tag, so that we can [...]]]></description>
			<content:encoded><![CDATA[<p>For the FOSS.my event, I wanted everyone to tag their photos with <a href="http://www.flickr.com/photos/tags/fossmy/">foss.my</a> or <a href="http://www.flickr.com/photos/tags/fossmy2008">foss.my 2008</a>.  Because this makes it easier to easily see FOSS.my buzz as it happens on Flickr!</p>
<h3>A Tale of Sucky WordPress Plugins</h3>
<p>I was looking for a plugin to grab Flickr photos by a specified tag, so that we can use it in the <a href="http://foss.my/gallery/">foss.my gallery</a>.  Though there are many Flickr plugins for WordPress, there was none catered to my requirements. Unable to find a solution, I thought it was quicker to hack one myself.</p>
<p>So this script just expanded from there, and I quickly had a Flickr batch downloader.</p>
<p>[block:important]There are several requirements:</p>
<ul>
<li>Download phpFlickr, and unzip it to the same directory as the script.</li>
<li>You need to obtain a Flickr API key.</li>
</ul>
<p>[/block]</p>
<h3>Use the source</h3>
<p>&lt;?<br />
/*<br />
 * phpFlickr<br />
 *   http://phpflickr.com/<br />
 *<br />
 * Flickr API<br />
 *   http://www.flickr.com/services/api/<br />
 *<br />
 * Flickr API call flickr.photos.search<br />
 *   http://www.flickr.com/services/api/flickr.photos.search.html<br />
 *<br />
 * Photos are available via the following format:<br />
 * 	 http://farm{farm-id}.static.flickr.com/{server-id}/{id}_{secret}_[mstb].jpg<br />
 *<br />
 * For more information visit http://www.flickr.com/services/api/misc.urls.html<br />
 *<br />
 * Applying for a Flickr API Key<br />
 *   http://www.flickr.com/services/api/keys/apply/<br />
 */</p>
<p>require_once(&quot;phpFlickr.php&quot;);</p>
<p>define('VERBOSE', array_search('-v', $argv));</p>
<p>// Download a batch of photos from the given page<br />
function download($photos) {<br />
	$download = 0;<br />
	foreach ($photos['photo'] as $photo) {<br />
		$filename = sprintf(&quot;pics/%s-%s.jpg&quot;, $photo['owner'], $photo['id']);<br />
		$url      = sprintf(&quot;http://farm%d.static.flickr.com/%s/%s_%s_o.jpg&quot;, $photo['farm'], $photo['server'], $photo['id'], $photo['secret']);<br />
		if (file_exists($filename)) {<br />
			if (VERBOSE)<br />
				print sprintf(&quot;33[33m %-10s %s33[0m \n&quot;, &quot;Skip&quot;, $url);<br />
			else<br />
				print sprintf(&quot;33[33m.33[0m&quot;);<br />
			continue;<br />
		}<br />
		if (VERBOSE)<br />
			print sprintf(&quot;33[32;1m %-10s %s33[0m \n&quot;, &quot;Download&quot;, $url);<br />
		else<br />
			print sprintf(&quot;33[32m.33[0m&quot;);</p>
<p>		file_put_contents($filename, file_get_contents($url));<br />
		$download += 1;<br />
	}<br />
	return $download;<br />
}</p>
<p>$flickr  = new phpFlickr(&quot;YOUR_API_KEY&quot;);<br />
$options = array('tags' =&gt; 'fossmy, &quot;fossmy 2008&quot;, foss.my, &quot;foss.my 2008&quot;');</p>
<p>$photos = $flickr-&gt;photos_search($options);<br />
print sprintf(&quot;Available 33[32;1m %d 33[0m \n&quot;, $photos['total']);</p>
<p>// Download the first batch of photos<br />
$downloaded = download($photos);</p>
<p>$page  = $photos['page'];<br />
$pages = $photos['pages'];<br />
// Download the following batch of photos<br />
for ($i = 2; $i &lt; $pages; $i++) {<br />
	$options['page'] = $i;<br />
	$photos = $flickr-&gt;photos_search($options);<br />
	$downloaded += download($photos);<br />
}<br />
if (! VERBOSE)<br />
	echo &quot;\n&quot;;<br />
print sprintf(&quot;Downloaded 33[32;1m %d 33[0m/ %d \n&quot;, $downloaded, $photos['total']);</p>
<h3>Running it</h3>
<p>It's just as a simple as:<br />
[block:terminal]php download.php[/block]</p>
<h4>Sample Results:</h4>
<p>[block:terminal]<br />
Available  492<br />
..................[trim]............<br />
Downloaded  0 / 492<br />
[/block]</p>
<p>It even comes with a <code>-v</code> flag, so you can view what files are being downloaded.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://blog.aizatto.com/2010/03/19/youtube-post-type-v0-2-released/" title="YouTube Post Type v0.2 Released (March 19, 2010)">YouTube Post Type v0.2 Released</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2010/03/18/youtube-post-type-v0-1-released/" title="YouTube Post Type v0.1 Released (March 18, 2010)">YouTube Post Type v0.1 Released</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2010/05/28/wp-ajax-query-v0-1-released/" title="WP Ajax Query v0.1 Released (May 28, 2010)">WP Ajax Query v0.1 Released</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2010/05/31/widget-classes-v0-1-released/" title="Widget Classes v0.1 Released (May 31, 2010)">Widget Classes v0.1 Released</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2010/03/23/super-secret-v0-1-released/" title="Super Secret v0.1 Released (March 23, 2010)">Super Secret v0.1 Released</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://blog.aizatto.com/2008/11/20/batch-download-of-photos-from-flickr-based-on-their-tag/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>code::XtremeApps:: 2007 Summary &#8211; EventPedia.sg</title>
		<link>http://blog.aizatto.com/2007/09/27/codextremeapps-2007-summary-eventpediasg/</link>
		<comments>http://blog.aizatto.com/2007/09/27/codextremeapps-2007-summary-eventpediasg/#comments</comments>
		<pubDate>Thu, 27 Sep 2007 05:03:31 +0000</pubDate>
		<dc:creator>aizatto</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[code::XtremeApps::]]></category>
		<category><![CDATA[code::XtremeApps:: 2007]]></category>
		<category><![CDATA[eGenting Programming Competition]]></category>
		<category><![CDATA[eGenting Programming Competition 2007]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[IBM ThinkPad R52]]></category>
		<category><![CDATA[Kamal Fariz]]></category>
		<category><![CDATA[Kegan Gan]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Programming Competitions]]></category>
		<category><![CDATA[Singapore]]></category>
		<category><![CDATA[VMware Player]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://blog.aizatto.com/2007/09/27/codextremeapps-2007-summary-eventpediasg/</guid>
		<description><![CDATA[Well this is just a summary of a long post about my trip to Singapore, and the code::XtremeApps:: 2007 Programming Competition held there this past weekend. Don't expect the full blog post to come out anytime soon, though it is in draft. This competition conflicted with the eGenting Programming Competition, so I had to make [...]]]></description>
			<content:encoded><![CDATA[<p>Well this is just a summary of a long post about my trip to Singapore, and the <a href="http://itsc.org.sg/prevEvent.do?eventKey=10">code::XtremeApps:: 2007 Programming Competition</a> held there this past weekend.  Don't expect the full blog post to come out anytime soon, though it is in draft.</p>
<p>This competition conflicted with the eGenting Programming Competition, so I had to make a decision.  Have a chance at possibly <a href="http://blog.aizatto.com/2007/02/05/winner-of-the-egenting-competition-2006/">winning first prize again</a> at eGenting, or risk the safety net and go into uncharted territories (at least for me) that is Singapore, and push myself to the max.</p>
<p>Even though it's so very near this was my first time I visited Singapore, and I am quite impressed with it.  They say the grass is always greener on the other side of the field, hell I think it actually does, at least the trees.  But once again, this is just from a tourist perspective.</p>
<p>My team members for the competition were once again Kamal, and Kegan from the previous <a href="http://blog.aizatto.com/2007/09/25/rails-rumble-2007-reduxbook/">Rails Rumble competition</a>.  Together we formed <strong>Team RSB</strong>, the Ruby Super Brothers (*<em>cough cough</em>*)</p>
<p><a href="http://www.flickr.com/photos/aizatto/1448916290/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1113/1448916290_318a719596_m.jpg" width="240" height="180" alt="Team RSB" /></a></p>
<p>Arriving in Singapore, Kamal and myself checked into Carlton Hotel, and lured by the prospects of free Internet, I plugged my beloved IBM laptop into the wall socket, powered it on, and left it alone, while I got comfortable in the hotel room.  A few moments later, I returned to my laptop to find the screen completely blanked out.  After several minutes of restarting, trying to resuscitate it, I came to the conclusion that it was dead.</p>
<p>My <strong>laptop died on arrival to Singapore</strong>.  How great.</p>
<p>In fact when Kamal put his MacBook charger into the wall socket, it started omitting strange noises, and we deduced that the wall socket must have been faulty.</p>
<p>Later we went to Sim Lim, the Lowyat of Singapore (or so I've been told) looking on trying to isolate the problem, and have it fixed within the day.  But that didn't go so well.  The repair shop said the mobo was fried and there was not much else I can do about it.</p>
<p>After arriving back from Sim Lim, we talked to the hotel trying to get them to claim responsibility over a faulty wall socket, but that didn't work at all.</p>
<p>Luckily by the end of the day, I was able to borrow a laptop from Kamal's relative and setup a development environment on top of Windows Vista.  That was also a first experience for me, using Windows Vista.  I didn't have the liberty to install Ubuntu, as I didn't want to mess with the partitions, so I ran the server version in VMware Player.  It was more trouble than it looks, perhaps when I release a verbose version of this trip, then you'll see.</p>
<p>Now <strong>I had to win first place</strong>.  To repair my current laptop, and or buy a new one.</p>
<p>The code::XtremeApps:: competition lasted for 24 hour, and was held by the renowned (at least the University, don't know about the school) Singapore Management University School of Information Systems.  The campus is really nice, with a very modern architecture.</p>
<p>There was a large number of participants, with <strong>over 80 participating teams</strong> consisting of 1-3 people each.  Surprisingly there were quite a number of girls, and some nice/cute ones to boot.  I also noticed that at least half of the participants were carrying MacBooks around, and some were wearing either WWDC shirts or Digg.</p>
<p>The theme for the competition was:</p>
<blockquote><p>Hospitality and/or tourism services in a participative society.</p></blockquote>
<p>"Participative society", well that must have flagged something!  <strong>Social Networking</strong>!</p>
<p>Our Team came up with EventPedia.sg, an event aggregation with all the social networking features (save for folksonomy) site for Singapore.  During the first round of judging I was quite <strong>thrilled that we were able to build a complete site in 24 hours</strong>.  Minus the tests for it!</p>
<p>Bummed out after staying up for more than 32 hours, we decided to call it quits, and returned to our hotel room for some nice shut eye.  But before we could even rest, or at least I couldn't (Kamal and Kegan were already in dreamland), we received a call saying we've <strong>made it to the second round of judging</strong> the next day.  Now I could sleep easily.</p>
<p>I was told that the second round of judging consisted of only 5 teams, so we only had to beat 2 other teams to get third, and another 2 to get first.  <strong>Victory was so near.</strong></p>
<p>But shortly after arriving, we found out it was 11 teams.  <strong>Damn.</strong>  After the judging was completed, we had some time to kill before leaving Singapore, and went to Vivocity.</p>
<p>After arriving home at 11pm, I checked my email.  An email from the organizers.  We had <strong>won co-third place</strong>.  That is there were 2 teams who had won third place.  I quickly went to sleep after that, from a completely exhausting trip.</p>
<p>I am completely <strong>disappointed in myself</strong>.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://blog.aizatto.com/2007/09/25/rails-rumble-2007-reduxbook/" title="Rails Rumble 2007: Reduxbook (September 25, 2007)">Rails Rumble 2007: Reduxbook</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2007/02/05/winner-of-the-egenting-competition-2006/" title="Winner of the eGenting Competition 2006 (February 5, 2007)">Winner of the eGenting Competition 2006</a> (29)</li>
	<li><a href="http://blog.aizatto.com/2007/05/23/why-i-support-free-culture/" title="Why I Support Free Culture (May 23, 2007)">Why I Support Free Culture</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2007/07/09/mmu-programming-competition/" title="MMU Programming Competition (July 9, 2007)">MMU Programming Competition</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2007/11/11/if-i-were-a-comic-book/" title="If I were a Comic Book (November 11, 2007)">If I were a Comic Book</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://blog.aizatto.com/2007/09/27/codextremeapps-2007-summary-eventpediasg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails Rumble 2007: Reduxbook</title>
		<link>http://blog.aizatto.com/2007/09/25/rails-rumble-2007-reduxbook/</link>
		<comments>http://blog.aizatto.com/2007/09/25/rails-rumble-2007-reduxbook/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 03:35:48 +0000</pubDate>
		<dc:creator>aizatto</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Capistrano]]></category>
		<category><![CDATA[Delicious]]></category>
		<category><![CDATA[Digg]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Kamal Fariz]]></category>
		<category><![CDATA[Kegan Gan]]></category>
		<category><![CDATA[Programming Competitions]]></category>
		<category><![CDATA[Rails Rumble]]></category>
		<category><![CDATA[Rails Rumble 2007]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Sean Sean Tan]]></category>
		<category><![CDATA[seanx2]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://blog.aizatto.com/2007/09/25/rails-rumble-2007-reduxbook/</guid>
		<description><![CDATA[Yes, I know this is a bit late, but a few weeks ago on the weekend of September 8th to the 9th, I participated in the first ever Rails Rumble competition. The goal of the competition was to build a Ruby on Rails application in 48 hours, basically the whole weekend. The prizes for Rails [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, I know this is a bit late, but a few weeks ago on the weekend of September 8th to the 9th, I participated in the first ever <a href="http://railsrumble.com/">Rails Rumble</a> competition. The goal of the competition was to build a Ruby on Rails application in 48 hours, basically the whole weekend.  The <a href="http://railsrumble.com/prizes">prizes</a> for Rails Rumble are really enticing.  The winners are decided from the public voting for the best application.</p>
<p><a href="http://blog.bitfluent.com/">Kamal</a>, Kegan, and Sean and myself were camping out in RSB in Cyberjaya for most of the time.  Found lunch and dinner there, though there really wasn't much to eat over there.</p>
<p>Our application idea was to build a contacts aggregator from the various services out there.  Be it Twitter, Digg, Delicious, Flickr, or your very own blog feed.  We dubbed it <a href="http://vote.railsrumble.com/teams/23/visit">Reduxbook</a>.</p>
<p>At the start, Kamal handled the server and setting up the continuous deployment via Capistrano.  Sean covered the HTML markup and design.  Kegan looked at integrating the services.   As for myself I hacked away at application's source code.</p>
<p>The first few hours went okay, but as the 24 hour mark came by, we knew we were in a pinch.  The last 24 hours was a real adrenaline rush, and it went by really really fast.  But we were able to pull it through with an all nighter.</p>
<p>Don't forget to vote for <a href="http://vote.railsrumble.com/teams/23/visit">Reduxbook</a> !</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://blog.aizatto.com/2007/09/27/codextremeapps-2007-summary-eventpediasg/" title="code::XtremeApps:: 2007 Summary &#8211; EventPedia.sg (September 27, 2007)">code::XtremeApps:: 2007 Summary &#8211; EventPedia.sg</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2009/12/20/twitter-weekly-updates-for-2009-12-20/" title="Twitter Weekly Updates for 2009-12-20 (December 20, 2009)">Twitter Weekly Updates for 2009-12-20</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2009/12/13/twitter-weekly-updates-for-2009-12-13/" title="Twitter Weekly Updates for 2009-12-13 (December 13, 2009)">Twitter Weekly Updates for 2009-12-13</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2007/06/16/second-malaysia-ruby-brigade-meetup-review/" title="Second Malaysia Ruby Brigade Meetup: Review (June 16, 2007)">Second Malaysia Ruby Brigade Meetup: Review</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2007/10/02/rails-rumble-2007-reduxbook-receives-honorable-mention/" title="Rails Rumble 2007: Reduxbook receives Honorable Mention (October 2, 2007)">Rails Rumble 2007: Reduxbook receives Honorable Mention</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://blog.aizatto.com/2007/09/25/rails-rumble-2007-reduxbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MMU Programming Competition</title>
		<link>http://blog.aizatto.com/2007/07/09/mmu-programming-competition/</link>
		<comments>http://blog.aizatto.com/2007/07/09/mmu-programming-competition/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 04:24:31 +0000</pubDate>
		<dc:creator>aizatto</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Jason Khong]]></category>
		<category><![CDATA[KageSenshi]]></category>
		<category><![CDATA[Multimedia University]]></category>
		<category><![CDATA[Programming Competitions]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://blog.aizatto.com/2007/07/09/mmu-programming-competition/</guid>
		<description><![CDATA[This past weekend I participated in the MMU Programming Competition. Sadly I didn't win, but the other Monash team got third place. Monash send Jason Khong, Andika, and Endra Irawan Thio, and myself. I was paired up with Jason. A team consisted of two members, and the competition consisted of two rounds. All universities, with [...]]]></description>
			<content:encoded><![CDATA[<p>This past weekend I participated in the MMU Programming Competition.  Sadly I didn't win, but the other Monash team got third place.  Monash send Jason Khong, Andika, and Endra Irawan Thio, and myself.  I was paired up with Jason.</p>
<p>A team consisted of two members, and the competition consisted of two rounds.  All universities, with the exception of MMU, could send only 2 teams.  MMU had the priviledge to send as many as they want, which I would say is a bit unfair.  You are limited to only use C/C++ and the DevC++ IDE.  I find it a <em>very</em> crappy IDE.  I bet I could have saved so much time using VIM.</p>
<p>I saw a lot of familiar face in the competition, some from the eGenting competition, and some friends of mine.</p>
<p>We went to Melaka on Friday evening, and spent the night at Kings Hotel.  During the night we went out to the city to eat, and walked along Jonkers Street.</p>
<p>The first round eliminated the number of teams down to ten, and consisted of six questions to be answered in two hours.  Simple logic problems.  Insertion sort, a variation of the Tower of Hanoi, and creating a timer, etc.</p>
<p>Both Monash teams got into the 2nd round.  <a href="http://blog.kagesenshi.org/">Izhar</a> (KageSenshi) also made it to the second round.</p>
<p>The second round consisted of two questions and was two hours long.  The first problem was very simple, roll a pair of dice, and find out how many times it comes up to a certain number, and display in table format the expected and actual result.  Didn't take much time.  The second problem was to write an algorithm to match a text to a key.  Our algorithm wasn't that difficult, and when we coded it out, it looked good.  But we experienced problems due to our unfamiliarity with C, and me having done it a year ago.</p>
<p>Luckily one of the Monash teams made it into third place.</p>
<p><a href="http://www.flickr.com/photos/aizatto/759054930/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1162/759054930_70d7177b82_m.jpg" width="240" height="180" alt="Group Shot with MMU" /></a><br />
<em>The Monash Team came in Uniform</em>.</p>
<p>Now if only I could have done it in Ruby,  I bet I could have won.</p>
<p>Looking forward to more competitions in the future.  Know of any?</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://blog.aizatto.com/2007/09/25/rails-rumble-2007-reduxbook/" title="Rails Rumble 2007: Reduxbook (September 25, 2007)">Rails Rumble 2007: Reduxbook</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2007/09/27/codextremeapps-2007-summary-eventpediasg/" title="code::XtremeApps:: 2007 Summary &#8211; EventPedia.sg (September 27, 2007)">code::XtremeApps:: 2007 Summary &#8211; EventPedia.sg</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2007/02/05/winner-of-the-egenting-competition-2006/" title="Winner of the eGenting Competition 2006 (February 5, 2007)">Winner of the eGenting Competition 2006</a> (29)</li>
	<li><a href="http://blog.aizatto.com/2007/05/23/why-i-support-free-culture/" title="Why I Support Free Culture (May 23, 2007)">Why I Support Free Culture</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2008/08/28/very-important-programmer-vip-php-programming-competitiong/" title="Very Important Programmer (VIP) PHP Programming Competitiong (August 28, 2008)">Very Important Programmer (VIP) PHP Programming Competitiong</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://blog.aizatto.com/2007/07/09/mmu-programming-competition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Second Malaysia Ruby Brigade Meetup: Review</title>
		<link>http://blog.aizatto.com/2007/06/16/second-malaysia-ruby-brigade-meetup-review/</link>
		<comments>http://blog.aizatto.com/2007/06/16/second-malaysia-ruby-brigade-meetup-review/#comments</comments>
		<pubDate>Sat, 16 Jun 2007 14:49:16 +0000</pubDate>
		<dc:creator>aizatto</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Malaysia.rb]]></category>
		<category><![CDATA[Malaysia.rb Meetup]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://rails.aizatto.com/2007/06/16/second-malaysia-ruby-brigade-meetup-review/</guid>
		<description><![CDATA[Wow, simply amazing. I'd never thought I would ever find people passionate about Ruby. It was a great meetup, and once again went between the hours of 8 to 12:30am. I would have continued longer, but there was some things to the following day. Seven people attended this meeting. The original three and four others. [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, simply amazing.  I'd never thought I would ever find people passionate about Ruby.  It was a great meetup, and once again went between the hours of 8 to 12:30am.  I would have continued longer, but there was some things to the following day.</p>
<p>Seven people attended this meeting.  The <a href="http://rails.aizatto.com/2007/06/09/first-informal-malaysia-ruby-brigade-meetup/">original three</a> and four others.</p>
<p><a href="http://www.flickr.com/photos/aizatto/556884520/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1255/556884520_c8bd186cd1_m.jpg" width="240" height="180" alt="Malaysia Ruby Brigade Second Meetup" /></a><br />
<em>One of these are the original three.</em></p>
<p>Similarly it was a very varied discussion covering about all sorts of things:</p>
<ul>
<li>Personal Background</li>
<li><a href="http://haml.hamptoncatlin.com/">Haml</a></li>
<li>Mash Ups</li>
<li>Capacity</li>
<li>State of education in Malaysia</li>
<li>Venture Capitalists</li>
<li>Startups</li>
<li>Lower barriers of entry</li>
<li>Web 2.0</li>
<li>The Semantic Web</li>
<li>The future of Malaysia Ruby Brigade</li>
</ul>
<p>The last listed topic was what the reason for the meetup.  But before we continued Kean asked a very important question.  <strong>Why do we want to do this?</strong> (Or somewhere along those lines)</p>
<p>Once again, each of us have different opinions on why we should push forward for Ruby in Malaysia.  Each one, influenced by their personal backgrounds.</p>
<ul>
<li>Another avenue for the advancement of Free Culture (I wonder which crazy lunatic proposed this, and what juice was he drinking?)</li>
<li>Belief that Ruby is a truly great language that everyone can benefit from</li>
<li>Building local capacity for Ruby</li>
<li>Monetization</li>
</ul>
<p><em>Or somewhere along those lines</em> <img src='http://blog.aizatto.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  I forgots, do correct me if I'm wrong.</p>
<p>To me, all of these are valid points.  Even the last one.  But what's more important to acknowledge is that we all benefit from each others contributions.  We are all a catalyst for one another.  I've discussed this in another post about <a href="http://blog.aizatto.com/2007/04/25/foss-capacity-in-malaysia/">FOSS Capacity in Malaysia</a>.  Even though our intentions may be different, our passion is still the same.  <strong>Ruby</strong>.</p>
<p>So what were some of the ideas we came up with?</p>
<ul>
<li>General presentations ala <a href="http://meetup.foss.org.my/">MyOSS</a></li>
<li>Hold Lightning Rounds: Maximum 20 slides in 5 minutes.  Resulting in at least 10 presentations within an hour</li>
<li>Hackathon.  Get together a group of people to spend one weekend coding a Rails application</li>
<li>Ruby/Rails Love (similar to <a href="http://live.gnome.org/GnomeLove">Gnome Love</a>) handholding in helping people contribute to Ruby/Rails)</li>
</ul>
<p>Discussions will continue through the <a href="http://groups.google.com/group/malaysia-rb">Malaysia Ruby Brigade</a> mailing list.  So if you are interested, but haven't signed up, do join!</p>
<p class="block_important"><strong>Note:</strong> <b>Malaysia Ruby Brigade Trivia:</b> In Bahasa Malaysia (the official language of Malaysia), "<em>Ruby on Rails</em>" translates to "<em>Landasan Delima</em>" </p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://blog.aizatto.com/2007/06/09/first-informal-malaysia-ruby-brigade-meetup/" title="First (Informal) Malaysia Ruby Brigade Meetup (June 9, 2007)">First (Informal) Malaysia Ruby Brigade Meetup</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2007/06/15/second-malaysia-ruby-brigade-meetup/" title="Second Malaysia Ruby Brigade Meetup (June 15, 2007)">Second Malaysia Ruby Brigade Meetup</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2007/05/12/ruby-on-rails-with-miguel-vega-at-open-source-health-care-alliance-oshca-conference-2/" title="Ruby on Rails with Miguel Vega at Open Source Health Care Alliance (OSHCA) Conference (May 12, 2007)">Ruby on Rails with Miguel Vega at Open Source Health Care Alliance (OSHCA) Conference</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2007/05/10/ruby-on-rails-professionals-in-malaysia/" title="Ruby on Rails Professionals in Malaysia (May 10, 2007)">Ruby on Rails Professionals in Malaysia</a> (0)</li>
	<li><a href="http://blog.aizatto.com/2007/09/25/rails-rumble-2007-reduxbook/" title="Rails Rumble 2007: Reduxbook (September 25, 2007)">Rails Rumble 2007: Reduxbook</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://blog.aizatto.com/2007/06/16/second-malaysia-ruby-brigade-meetup-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
