<?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>mental manifestations &#187; Web</title>
	<atom:link href="http://mattchan.net/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattchan.net</link>
	<description>monitoring my meandering mind</description>
	<lastBuildDate>Wed, 10 Apr 2013 03:46:07 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Playing with JavaScript, Twitter Bootstrap, and Rails</title>
		<link>http://mattchan.net/2012/02/playing-with-javascript-twitter-bootstrap-and-rails/</link>
		<comments>http://mattchan.net/2012/02/playing-with-javascript-twitter-bootstrap-and-rails/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 03:50:30 +0000</pubDate>
		<dc:creator>Matt Chan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://mattchan.net/?p=1071</guid>
		<description><![CDATA[Over the past few weeks, I had been playing around with various JavaScript frameworks namely node.js and backbone.js. I was trying to see if I could recreate my company&#8217;s web application (which is built on a Rails/Flex stack) entirely within a JavaScript environment and create a single-page app. I got the inspiration for doing this [...]]]></description>
				<content:encoded><![CDATA[<p>Over the past few weeks, I had been playing around with various JavaScript frameworks namely node.js and backbone.js. I was trying to see if I could recreate my company&#8217;s web application (which is built on a Rails/Flex stack) entirely within a JavaScript environment and create a single-page app. I got the inspiration for doing this from Fog Creek&#8217;s blog post on the <a title="The Trello Tech Stack - Fog Creek Blog" href="http://blog.fogcreek.com/the-trello-tech-stack/">Trello tech stack</a>.</p>
<p>Node.js was pretty nifty, but rewriting a whole server to do all the (sort of) complexity our current web application is doing was just a little too daunting. I had also looked at express.js for doing some of the heavy-lifting for me, but ultimately decided in the end that this was still too cumbersome for what I wanted to do. After stumbling on some backbone.js tutorials, I thought it would be best to try and integrate that with the Rails stack we currently have.</p>
<p><span id="more-1071"></span>Understanding the code was simple enough. Coming from an ActionScript background, which I&#8217;ve used extensively with the Adobe Flex and Adobe AIR frameworks, picking up JavaScript was trivial. They&#8217;re both based on the same standard, but with some minor syntactic differences. Doing a simple backbone.js for my company&#8217;s web app didn&#8217;t take much time, and was similar to what I had already done in an ActionScript library (used by the main Flash client). Seeing as how the Rails backend only rendered XML for each request and no html, I abandoned the backbone.js route and decided to fall back on implementing Rails views.</p>
<p>For many years, I had avoided learning Rails views mainly because I didn&#8217;t have the need to do so since I had been programming in Flex and AIR for so long. I didn&#8217;t understand Rails views in 1.2.x and certainly didn&#8217;t up through the 3.x releases (until very recently). My biggest fear was having to hand-code CSS in order to achieve the best look and feel that would be suitable for our app. The thought of doing that send shivers down my spine. As much as I like to think that writing CSS is fun (and my only experience has been through WordPress themes), I&#8217;ve found it be more annoying at the end of my day.</p>
<p>When I recently discovered the <a title="Bootstrap, from Twitter" href="http://twitter.github.com/bootstrap/">Twitter Bootstrap</a>, I was astounded and amazed at what was available at my hands. I loved how simple and easy it was to create an entire layout with pre-defined styles for just about anything that I would ever really need in a simple web application. I got so excited about it I immediately set out to convert my company&#8217;s existing Flash web application to a Rails-only stack and implement actual HTML views. I got some buy-in from others to use the Twitter Bootstrap and convert from Flash to standard HTML. Using the Twitter Bootstrap has dramatically decreased the time it took me to implement standard HTML views that mimic the look and feel of our Flash client. In about a week, I was able to convert a lot of the app&#8217;s panels over into Rails HTML views.</p>
<p>Doing this effectively cuts down on development costs since there is less code to maintain which consequently means less bugs to track down and less development effort (no need to duplicate effort in the Flash client). One other team member, who hasn&#8217;t had as much experience programming in Flash, was able to pick up the Twitter Bootstrap anew and program Rails views with ease. Now that I think of it, I honestly can&#8217;t understand why I was so afraid to tackle Rails views in the first place.</p>
<p>Flex and AIR aren&#8217;t all bad in my opinion, and I think they both have their place in terms of solving specific problems. The fact JavaScript is gaining more and more popularity, not to mention the HTML5 and CSS3 standards that have been in development for years, it is hard to make a convincing statement that using Flash is viable for web apps (especially since the iOS platform doesn&#8217;t support it at all). There is very little in Flash that can&#8217;t be achieved with some JavaScript and CSS &#8212; and there are already things like the Twitter Bootstrap that make this job faster and easier to do.</p>
<p>Twitter Bootstrap is so complete out of the box, it&#8217;s hard to not use it for simple static website. In fact, I&#8217;m doing one right now for a friend who is trying to start her own business. Just for kicks, I decided to use a <a title="seyhunak/twitter-bootstrap-rails - GitHub" href="https://github.com/seyhunak/twitter-bootstrap-rails">Twitter Bootstrap gem for Rails</a> while also using the <a title="Danger, Danger: High Voltage! Use Rails 3.1 for Static Sites" href="http://robots.thoughtbot.com/post/11744619917/danger-danger-high-voltage-use-rails-3-1-for-static">high_voltage gem for static pages</a>. After a few hours of work (most of it doing basic dual-boot setup and development configuration), I was able to throw a simple site for my friend to see on Heroku (which by the way is awesome for pushing deployments using git). Doing that was much more satisfying than setting up a WordPress site (it would have solved the problem but somewhat convoluted) and trying to find, develop, or hack a theme for it.</p>
<p>Over the past few weeks, the creative spark for programming was reignited in me. Playing around with these new things, which I almost never have the chance too, has really fire up my passion for coding and getting an intellectual satisfaction out of it. It&#8217;s frustrating sometimes, especially when you come in as a newbie, but taking pride and ownership in what you create is so rewarding. The feeling of accomplishment is a personally motivating drive.</p>
<p><em>Note: The opinions expressed here in this post and on my blog are my own and do not reflect those of my employer.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://mattchan.net/2012/02/playing-with-javascript-twitter-bootstrap-and-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning CSS3</title>
		<link>http://mattchan.net/2012/01/learning-css3/</link>
		<comments>http://mattchan.net/2012/01/learning-css3/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 00:10:43 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[css. css3]]></category>

		<guid isPermaLink="false">http://mattchan.net/?p=974</guid>
		<description><![CDATA[Yesterday I tried learning some CSS3 on my own in order to convert my kung fu school&#8217;s website to be more &#8220;modern&#8221; in terms of technology. I&#8217;ve been using a modified Ocean Mist 2.0 theme and hacked up the CSS a bit to fit what I wanted. In doing so, I noticed that there is lots of CSS [...]]]></description>
				<content:encoded><![CDATA[<p>Yesterday I tried learning some CSS3 on my own in order to convert my <a title="Wah Lum Kung Fu &amp; Tai Chi Academy | ???????" href="http://www.wahlumacademy.com/">kung fu school&#8217;s website</a> to be more &#8220;modern&#8221; in terms of technology. I&#8217;ve been using a modified <a title="Ocean Mist WordPress Theme | Ten by twenty" href="http://www.tenbytwenty.com/ocean-mist.php">Ocean Mist 2.0 theme</a> and hacked up the CSS a bit to fit what I wanted. In doing so, I noticed that there is lots of CSS rules to create shadows and rounded corners. These were easily the most visible visual elements that I knew CSS3 addresses. I experimented with box-shadow and border-radius on a test site, and the results are positive so far.</p>
<p>Here is the original version which uses its own with a background image:</p>
<p><a href="http://mattchan.net/wp-content/uploads/2012/01/wahlum_header_sprite.png"><img class="alignnone size-medium wp-image-978" title="Wah Lum Malden Sprite Header" src="http://mattchan.net/wp-content/uploads/2012/01/wahlum_header_sprite-300x75.png" alt="" width="300" height="75" /></a></p>
<p>and this is the version using CSS3:</p>
<p><a href="http://mattchan.net/wp-content/uploads/2012/01/wahlum_header_css3.png"><img class="alignnone size-medium wp-image-979" title="Wah Lum Malden Header CSS3" src="http://mattchan.net/wp-content/uploads/2012/01/wahlum_header_css3-300x74.png" alt="" width="300" height="74" /></a></p>
<p>The visual difference is minimal, and it&#8217;s a heck of a lot easier to change a few values in CSS instead multiple properties (and potentially an image file). The CSS3 tags basically eliminates the extra background image inside a div tag and its associated CSS to display the image sprite (I originally used <a title="SpriteMe" href="http://spriteme.org/">SpriteMe.org</a> to cut down some bytes). I haven&#8217;t cleaned up the CSS or image files yet, but I imagine that this will cut down a lot of extra bytes in the whole theme.</p>
<p>What I&#8217;m not thrilled about though is maintaining backward compatibility for older browsers. It&#8217;s nice that I get to define a single CSS property so I don&#8217;t have to use or wrangle a massive CSS file. I don&#8217;t like the idea of sticking in vendor prefixes let alone trying to be compliant with a whole gamut of browsers and include some fallback code/mechanisms. That&#8217;s partly the reason why I haven&#8217;t switched to using CSS3 (aside from my lack of time). Even so, I&#8217;m not too, too worried about browser compatibility being a huge problem since the website&#8217;s reach is very localized.</p>
<p>This is just an exploration really since there isn&#8217;t a huge <em>need</em> for me to do it. What&#8217;s in place right now works just fine and across many browsers. There aren&#8217;t any issues with that.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattchan.net/2012/01/learning-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing Martial Arts for Fitness</title>
		<link>http://mattchan.net/2011/10/choosing-martial-arts-for-fitness/</link>
		<comments>http://mattchan.net/2011/10/choosing-martial-arts-for-fitness/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 03:13:16 +0000</pubDate>
		<dc:creator>Matt Chan</dc:creator>
				<category><![CDATA[Fitness]]></category>
		<category><![CDATA[Kung Fu]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://mattchan.net/?p=763</guid>
		<description><![CDATA[I wrote a blog post for the Stack Exchange Fitness blog about my experience with fitness and exercise as a child, teenager, adult, and young professional. The point I wanted to make was that choosing an activity should be a person own action, that is should come from within. My experiences with fitness growing up have [...]]]></description>
				<content:encoded><![CDATA[<p>I wrote a blog post for the <a title="Stack Exchange Fitness Blog" href="http://fitness.blogoverflow.com/">Stack Exchange Fitness blog</a> about my experience with fitness and exercise as a child, teenager, adult, and young professional. The point I wanted to make was that choosing an activity should be a person own action, that is should come from within. My experiences with fitness growing up have largely been either in the control of others or a reaction to what (I perceived) people were doing for fitness. The full post is called <a title="Finding a Fitness Niche &amp;laquo;  Stack Exchange Fitness Blog" href="http://fitness.blogoverflow.com/2011/10/finding-a-fitness-niche/">&#8220;Finding a Fitness Niche&#8221;</a> at the blog, and I wrote it to hopefully give others a stepping stone to find out what kind of activity they might choose for staying healthy.</p>
<p>I think the <a title="Fitness and Nutrition - Stack Exchange" href="http://fitness.stackexchange.com/">Fitness and Nutrition Stack Exchange</a> is a great source of information and definitely has a lot of potential despite being in beta for so long since <a title="Fitness &amp;amp; Nutrition - Area 51 - Stack Exchange" href="http://area51.stackexchange.com/proposals/7080/fitness-nutrition">its proposal on Area51</a>. There have been ongoing issues with the definition of what fitness, health, and nutrition mean for people. Nonetheless, I still think it (and the whole Stack Exchange network too) is a great resource and community for people to go for information.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattchan.net/2011/10/choosing-martial-arts-for-fitness/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Calling Fancybox from Flash</title>
		<link>http://mattchan.net/2011/10/calling-fancybox-from-flash/</link>
		<comments>http://mattchan.net/2011/10/calling-fancybox-from-flash/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 03:07:36 +0000</pubDate>
		<dc:creator>Matt Chan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[fancybox]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mattchan.net/?p=791</guid>
		<description><![CDATA[Someone asked me once about loading external SWF movies from a Flex app and having trouble with unloading them. It had something to do with the audio in the loaded SWF file continuing to play after the SWF was unloaded. I didn&#8217;t quite understand the details, but I was asked if I knew how to [...]]]></description>
				<content:encoded><![CDATA[<p>Someone asked me once about loading external SWF movies from a Flex app and having trouble with unloading them. It had something to do with the audio in the loaded SWF file continuing to play after the SWF was unloaded. I didn&#8217;t quite understand the details, but I was asked if I knew how to fix the problem or work around it.</p>
<p>I suggested using <a title="flash.external.ExternalInterface - ActionScript® 3.0 Reference for the Adobe® Flash® Platform" href="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/external/ExternalInterface.html">ExternalInterface</a> in Flex to interact with a JavaScript function in the HTML page to make Fancybox (a lightbox that is most familiar to me) display an iframe over the Flash SWF file. I saw in the <a title="Fancybox - Fancy jQuery lightbox alternative| FAQ" href="http://fancybox.net/faq">Fancybox FAQ</a> that it could appear over Flash content (with a <a title="Flash, DHTML Menus and Accessibility" href="http://www.communitymx.com/content/article.cfm?cid=E5141" class="broken_link">caveat</a>) so this gave me confidence that my idea would work. So I sent an e-mail to the person trying to fix this problem and described how to implement the solution with referenced links.</p>
<p><span id="more-791"></span></p>
<p>I received a response that basically amounted to, &#8220;This does not look possible,&#8221; which in my mind translated to, &#8220;I don&#8217;t know what to do (because I don&#8217;t really understand it).&#8221; My comments aside, this bothered me so much that I ended up throwing something together just to prove this person wrong despite all the evidence I had previously sent.</p>
<p>In my Flex app, I hooked up a button click handler to make a call to my JavaScript function via ExternalInterface.</p>
<blockquote><p><code>ExternalInterface.call( "show_fancybox_thing" );</code></p></blockquote>
<p>I&#8217;m not too, too familiar with jQuery so I had figure out how to <a title="jQuery() – jQuery API" href="http://api.jquery.com/jQuery/#creating-new-elements">create an element</a> (a link specifically in this case) and <a title=".trigger() &amp;#8211; jQuery API" href="http://api.jquery.com/trigger/">trigger a click event</a> on that element.</p>
<blockquote><p><code>function show_fancybox_thing() {<br />
$('&lt;a href="http://www.jquery.com/"&gt;jQuery&lt;/a&gt;').fancybox(<br />
{'type': 'iframe'} ).trigger('click');<br />
}</code></p></blockquote>
<p>That&#8217;s the simplest implementation you could do using minimal Fancybox configuration. This code will display the <a title="jQuery: The Write Less, Do More, JavaScript Library" href="http://jquery.com/">jQuery website</a> within an iframe after clicking a button in the Flex application. The example could easily be changed to pass a web address from ExternalInterface into the JavaScript function call.</p>
<p>For the embedded Flash, the window mode needs to be &#8220;opaque&#8221; within the HTML file. For the <code>&lt;object&gt;</code> tag, the following needs to be added under it:</p>
<blockquote><p><code>&lt;param name="wmode" value="opaque"&gt;</code></p></blockquote>
<p>The <code>&lt;embed&gt;</code> tag requires an attribute:</p>
<blockquote><p><code>wmode=opaque</code></p></blockquote>
<p>Other than that, as long as Fancybox is <a title="Fancybox - Fancy jQuery lightbox alternative| How to use" href="http://fancybox.net/howto">set up properly</a> there isn&#8217;t too much to it. I&#8217;ve put a <a title="Flex and Fancybox" href="http://mattchan.net/flex/fancybox/index.html">demo online</a> of calling Fancybox from Flash.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattchan.net/2011/10/calling-fancybox-from-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Social Network</title>
		<link>http://mattchan.net/2010/10/the-social-network/</link>
		<comments>http://mattchan.net/2010/10/the-social-network/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 01:20:50 +0000</pubDate>
		<dc:creator>Matt Chan</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://mattchan.net/?p=324</guid>
		<description><![CDATA[This is Mark Zuckerberg&#8217;s take on The Social Network. It is clear that movies like these have elements that aren&#8217;t entirely truthful in nature for the purposes of entertainment. Even if the movie weren&#8217;t about Facebook, it would still be a very well done film given the way the story is told. I do remember [...]]]></description>
				<content:encoded><![CDATA[<p>This is Mark Zuckerberg&#8217;s take on <a title="The Social Network - Wikipedia, the free encyclopedia" href="http://en.wikipedia.org/wiki/The_social_network">The Social Network</a>. It is clear that movies like these have elements that aren&#8217;t entirely truthful in nature for the purposes of entertainment. Even if the movie weren&#8217;t about Facebook, it would still be a very well done film given the way the story is told.</p>
<p>I do remember using his music preference AI program, Synapse, while I was in college which was mentioned in the film. I even did a presentation on it (part of a communications course for Computer Science majors) and still have his Winamp plugin version of it installed on my computer. What Zuckerberg has done is very admirable (in reality) with Facebook. I admire it a lot, and I really geeked out over the &#8220;birth&#8221; of Facebook within the movie and found myself sympathizing for the main character.</p>
<p><object width="560" height="340" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/1qfcWSZAHvM?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="560" height="340" type="application/x-shockwave-flash" src="http://www.youtube.com/v/1qfcWSZAHvM?fs=1&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://mattchan.net/2010/10/the-social-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contending with WordPress</title>
		<link>http://mattchan.net/2010/02/contending-with-wordpress/</link>
		<comments>http://mattchan.net/2010/02/contending-with-wordpress/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 02:13:06 +0000</pubDate>
		<dc:creator>Matt Chan</dc:creator>
				<category><![CDATA[Kung Fu]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://mattchan.net/?p=150</guid>
		<description><![CDATA[My latest personal project was to migrate and update the site of my kung fu school. My sifuÂ had asked me for input on the website since the original administrator was moving to a different hosting provider. Ideas were thrown around, and I suggested moving the site to a WordPress configuration. There were two roadpaths with [...]]]></description>
				<content:encoded><![CDATA[<p>My latest personal project was to migrate and update the site of my <a title="Wah Lum Academy" href="http://www.wahlumacademy.com/" target="_blank">kung fu school</a>. My sifuÂ had asked me for input on the website since the original administrator was moving to a different hosting provider. Ideas were thrown around, and I suggested moving the site to a WordPress configuration.</p>
<p>There were two roadpaths with WordPress: have it hosted on <a title="Wordpress.com" href="http://wordpress.com/" target="_self">WordPress.com</a>, the commercial enterprise owned and started by the same people who created WordPress; or use <a title="Wordpress.org" href="http://wordpress.org/" target="_self">WordPress.org</a> which has the downloadable free, open-source blogging platform software. After having used WordPress.org for years and years, I decided to explore the WordPress.com option.</p>
<p>There are <a title="Difference between com and org in WordPress" href="http://en.support.wordpress.com/com-vs-org/" target="_self">differences</a> between the &#8220;com&#8221; and &#8220;org&#8221; incarnations of WordPress. I have been a user of WordPress for years, running it on my own hosting provider (actually sharing it with someone else). I had also signed up on WordPress.com (for an <a title="Akismet" href="http://akismet.com/">Akismet</a> account) and thought, at the time, that it was very limited. I do not know what changes have taken place since then but I explored the options available, and liked them better than the base package Google Sites or Windows Live provides.</p>
<p>All I did to migrate my school&#8217;s website was create an account, set up some pages, picked a theme, uploaded some files, copied content, created a new banner image, and then mapped the domain. I didn&#8217;t have to worry about back-end administration like databases, backups, disk space, themes, and so on. I can do the same thing on my own, but I didn&#8217;t want to take on those responsibilities at the time.</p>
<p>WordPress.com already provided everything (or nearly everything) I had done with my own blog andÂ <a title="Youth A.C.T." href="http://www.youthactma.org/" target="_blank">Youth A.C.T.&#8217;s website</a> and not to mention that most features are free right from the start. AÂ simple website doesn&#8217;t need much more than that. However, as feature-rich as WordPress.com is, they are still rather limited in terms of how much control you can exude over your site.</p>
<p>After some initial discussion with my instructor, we determined what we wanted in the website and the feasibility of implementing ideas. I decided that it would be best to move the school&#8217;s site off to its own WordPress-hosted service where we could control the site on a deeper level. This largely meant being able to utilize other themes not available on WordPress.com, install plug-ins that suited our needs, and being able to customize the look and feel.</p>
<p>The new (new) site has up and functional for a few weeks now. A lot of people I solicited for feedback have said it looks very nice and professional (their opinion, not mine) and that information is much easier to find. I can&#8217;t take complete credit for what I did; WordPress has great community support and dozens of plug-ins and themes, and the authors deserve lots of thanks for their efforts.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattchan.net/2010/02/contending-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buzzing on Google</title>
		<link>http://mattchan.net/2010/02/buzzing-on-google/</link>
		<comments>http://mattchan.net/2010/02/buzzing-on-google/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 17:00:31 +0000</pubDate>
		<dc:creator>Matt Chan</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://mattchan.net/?p=169</guid>
		<description><![CDATA[I wasn&#8217;t very excited by Google Buzz when it was announced especially when Facebook has already taken over the social networking market. There aren&#8217;t many people I know who don&#8217;t use Facebook. However, I&#8217;m liking the information stream much more than Facebook. It feels and looks cleaner, and Google has beaten Facebook in regard of [...]]]></description>
				<content:encoded><![CDATA[<p>I wasn&#8217;t very excited by Google Buzz when it was announced especially when Facebook has already taken over the social networking market. There aren&#8217;t many people I know who don&#8217;t use Facebook. However, I&#8217;m liking the information stream much more than Facebook. It feels and looks cleaner, and Google has beaten Facebook in regard of aggregating content.</p>
<p>Buzz is a a much better aggregator than trying to individually manage each independent feed (especially in Google Reader). One could use Yahoo! Pipes or some other feed aggregating service to pull all this information together. People are generally lazy though, which is largely the reason why I never bothered to do such a task.</p>
<p>Google isn&#8217;t really in the social computing market so far (ignoring Orkut), and the services they provide don&#8217;t necessarily translate to such a platform (though they can). That is one advantage I would promote Google over Facebook. You basically start out with nothing, and build up what information you optionally want to show.</p>
<p>Facebook is the exact opposite of this; they provide &#8220;everything&#8221; (by this, I mean commonly used applications) and try to monopolize your information. Facebook&#8217;s options to include outside sites in their feeds is very hidden and tucked away, whereas Google makes this much easier and open and gives users more freedom.</p>
<p>Google Buzz also wins in the &#8220;privacy&#8221; area simply because the content you include is optional. You don&#8217;t have to include your Flickr photostream, your Twitter account, and so forth. Facebook has failed in their privacy controls by making them overly complex and granular for users. The backlash they received contributes to it, but I don&#8217;t blame Facebook entirely for their privacy problems.</p>
<p>The one thing I would like to see is bouncing replies or comments back to the original source. It don&#8217;t believe it is an easy problem to solve. Not everyone using Google has an account at the various sites people choose to include for aggregation. Also, there are many features that some social networking sites have because they are a specialized site. Flickr is a community built around photo sharing, YouTube for videos, Twitter for communication, and the list goes on. Facebook tries to solve this problem by locking you in to their platform.</p>
<p>I think it&#8217;s an interesting application, but I suspect it&#8217;ll be another tiresome &#8220;one of those things I have to check.&#8221; I have no problems logging into Facebook, Twitter, or Google Reader to catch up on what is going on within my own social network. Google just makes it easier to read all of it without having to jump all over the Internet playground.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattchan.net/2010/02/buzzing-on-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal vs. WordPress</title>
		<link>http://mattchan.net/2008/06/drupal-vs-wordpress/</link>
		<comments>http://mattchan.net/2008/06/drupal-vs-wordpress/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 04:12:05 +0000</pubDate>
		<dc:creator>Matt Chan</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://mattchan.net/?p=63</guid>
		<description><![CDATA[For the recent month and a half, I have been placed in charge of all things webby for this new youth organization in Massachusetts. We&#8217;re called Youth A.C.T., a group for empowering youth and getting them involved in their community. We&#8217;re still in the process of getting up and running but already have some events [...]]]></description>
				<content:encoded><![CDATA[<p>For the recent month and a half, I have been placed in charge of all things webby for this new youth organization in Massachusetts. We&#8217;re called <a href="http://www.youthactma.org">Youth A.C.T.</a>, a group for empowering youth and getting them involved in their community. We&#8217;re still in the process of getting up and running but already have some events and projects going on. From my technical point of view, this has presented me with an interesting problem of how to run this website.</p>
<p>Basically the whole website infrastructure came down to what kind of <acronym title="content management system">CMS</acronym> do I want to run. I had tested out various ones like Joomla! and whatever random ones my hosting provider had. They weren&#8217;t too impressive and didn&#8217;t fit our needs (read: mine). I had previously worked a little bit with Drupal 4.7 while I was working at the University of Maryland, and that was the first <acronym title="content management system">CMS</acronym> that sprung to my mind. The other was WordPress which I&#8217;ve also had experience with (since it&#8217;s what I use to run my blog).</p>
<p>Drupal has incredible community support. There are so many themes and modules so readily available. Basically what attracted me to Drupal (for the purposes of the Youth A.C.T. website) was the <a href="http://drupal.org/project/event_manager">Event Manager module</a>. This was perfect since we needed something for online user registration for an upcoming event. I got this up and running within minutes, and since then I have just steadily been putting other useful things together in Drupal.</p>
<p>However, there are some things about Drupal that irk me. While the administrative configuration is very comprehensive, it is also quite cumbersome and feels convoluted at times. For some time, I had shrugged it off and learned what I needed to do as I went along. Then there is the case for my other users &#8212; the various people (teenagers, young adults, older adults) who would come and also help administrate. Even though I have given them enough privileges to administer what they need to on the site, they are still confused. It is kind of a shock when you grow up in a such a technological age, but there are still lots of people who have no idea how their computer works let alone writing simple HTML code. Maybe that&#8217;s a good thing.</p>
<p>Doing a <a href="http://drupal.org/project/gallery">Gallery 2 integration with Drupal</a> was a pain in the ass. <a href="http://gallery.menalto.com/">Gallery 2</a> is just very bloated and feels difficult work with to the point where I had considered abandoning it for WordPress. I understand WordPress much more, and it may be better for the clueless user. The administrative navigation is a lot simpler and more straightforward (yay for version 2.5!) in my opinion. I bet my marbles <acronym title="What You See Is What You Get">WYSIWYG</acronym> helps out a lot too. The other reason why I would move to WordPress is because of laziness. I do not have much time outside of work, tai chi, kung fu, and other various activities. I also like to maintain a healthy sleep schedule as well. I understand how WordPress works (to a degree, enough for me to carry on). While the Drupal documentation is extensive, comprehensive, and everything I&#8217;ve always wanted when I look for documentation, I just don&#8217;t have the time or patience presently to go through it all and learn it.</p>
<p>If I did move to WordPress, I would just have to find replacements for the various modules I used in Drupal. There isn&#8217;t any built-in event management in WordPress nor could I find an existing plugin for it, but there is always various tricks I can use to get around its shortcomings. Google Docs is wonderful for creating simple forms and surveys, and our organization (read: I) have already registered a Google Account for e-mail and document sharing (and people are still clueless on how to use Google Docs). While I&#8217;ve seen various gallery plugins for WordPress, there isn&#8217;t anything stopping me from using Flickr (and even combining it with a plugin that uses its API). In the meantime, I&#8217;m still going to press forward with Drupal and try another album/gallery module. If it doesn&#8217;t work out, then I most likely will move to WordPress. I could even potentially leverage volunteers to create themes (for either Drupal or WordPress) since I have no artistic eye.</p>
<p>In the time that I spent writing this post, I could have been working on the website. And now I have to go to sleep for work tomorrow.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattchan.net/2008/06/drupal-vs-wordpress/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: mattchan.net @ 2013-06-19 03:11:58 by W3 Total Cache -->