<?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>The Smyth Group</title>
	<atom:link href="http://thesmythgroup.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thesmythgroup.com</link>
	<description>We Write Great Apps</description>
	<lastBuildDate>Thu, 17 May 2012 21:36:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Go Language 1.0 Released</title>
		<link>http://thesmythgroup.com/2012/04/go-language-1-0-released/</link>
		<comments>http://thesmythgroup.com/2012/04/go-language-1-0-released/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 22:32:24 +0000</pubDate>
		<dc:creator>Daniel Skinner</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[go]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://thesmythgroup.com/?p=280</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/04/go-language-1-0-released/&amp;text=Go Language 1.0 Released&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
There&#8217;s a new language on the block, and it&#8217;s recently had version 1.0 tagged. Go is a compiled language with some interesting features such as garbage collection, and concurrency that just works. More interesting perhaps though are the syntax choices for the language designed to make writing Go programs more compact and readable. They have a<p><a href="http://thesmythgroup.com/2012/04/go-language-1-0-released/">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/04/go-language-1-0-released/&amp;text=Go Language 1.0 Released&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p>There&#8217;s a new language on the block, and it&#8217;s recently had version 1.0 tagged. <a href="http://en.wikipedia.org/wiki/Go_(programming_language)">Go</a> is a compiled language with some interesting features such as garbage collection, and concurrency that just works. More interesting perhaps though are the syntax choices for the language designed to make writing Go programs more compact and readable. They have a fantastic <a href="http://tour.golang.org/#1">Tour of Go</a> that covers the language and allows you to compile examples remotely, displaying the result in the browser.</p>
<p>I ran through the majority of the tour last night as well as grabbed a copy of the toolchain for my local box and have to admit it has me interested. They already have a nice set of <a href="http://golang.org/pkg/">packages</a> for doing server work, including an <a href="http://golang.org/pkg/net/http/">http</a> client and server implementation.</p>
<p>There a few interesting novelties as well, including the <a href="http://golang.org/cmd/go/#Download_and_install_packages_and_dependencies">go get</a> command that lets you install additional libraries straight from repository sources including places like github and bitbucket.</p>
<p>There&#8217;s also already a pretty good community for the language with <a href="http://go-lang.cat-v.org/library-bindings">go bindings</a> for databases, gui toolkits, audio &#038; video, opengl &#038; sdl, and much more.</p>
<p>All in all, this is definitely something worth keeping an eye on, so go check it out and tell me what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://thesmythgroup.com/2012/04/go-language-1-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Implementing Parcelable on Android, A Brief Intro</title>
		<link>http://thesmythgroup.com/2012/04/implementing-parcelable-on-android-a-brief-intro/</link>
		<comments>http://thesmythgroup.com/2012/04/implementing-parcelable-on-android-a-brief-intro/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 13:27:24 +0000</pubDate>
		<dc:creator>Daniel Skinner</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thesmythgroup.com/?p=236</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/04/implementing-parcelable-on-android-a-brief-intro/&amp;text=Implementing Parcelable on Android, A Brief Intro&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
During the course of development, there may come a time on android where you need to serialize an object. By far, the simplest way to handle this for an object containing primitives and primitive object wrappers is to implement the Serializable interface. There are caveats to this approach though. The resulting implementation can be significantly<p><a href="http://thesmythgroup.com/2012/04/implementing-parcelable-on-android-a-brief-intro/">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/04/implementing-parcelable-on-android-a-brief-intro/&amp;text=Implementing Parcelable on Android, A Brief Intro&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p>During the course of development, there may come a time on android where you need to serialize an object. By far, the simplest way to handle this for an object containing primitives and primitive object wrappers is to implement the Serializable interface. There are caveats to this approach though.</p>
<ol>
<li>The resulting implementation can be significantly slower than a Parcelable</li>
<li>No support for arrays of objects implementing Serializable</li>
<li>Limited support for a Serializable with a Parcelable member</li>
</ol>
<p>With the ease of implementing a Serializable, implementing a Parcelable might initially come off as a daunting task after inspecting the methods needed for implementing. The sparse android documentation covering the subject doesn&#8217;t help subside these fears either, but fear not! Let&#8217;s look at this piece by piece to expose it&#8217;s simplicity.</p>
<p>Here&#8217;s an example class that has two members, each a Bundle (which in themselves implement Parcelable). We implement Parcelable and add the needed methods to override.</p>
<pre>public class Info implements Parcelable {
    public Bundle info1;
    public Bundle info2;

    @Override
    public int describeContents() {
        return 0;
    }

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        // TODO Auto-generated method stub
    }
}</pre>
<p>The describeContents method can be left as is, the value returned is used for special case scenarios not being covered here. If we look at the writeToParcel method, the first argument is the Parcel dest. You can look at this object as a First In, First Out queue. The Parcel dest contains multiple methods for writing different values to it, and this same Parcel will then be received by our CREATOR member (that has not yet been added) when deserializing. Let&#8217;s go ahead and adjust this method to store the members info1 and info2.</p>
<pre>    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeBundle(info1);
        dest.writeBundle(info2);
    }</pre>
<p>That&#8217;s it! Our object can now be serialized. To deserialize, we also need to implement Parcelable.Creator as the member CREATOR.</p>
<pre>    public static final Parcelable.Creator&lt;Info&gt; CREATOR =
        new Parcelable.Creator&lt;Info&gt;() {
            @Override
            public Info createFromParcel(Parcel source) {
                Info info = new Info();
                info.info1 = source.readBundle();
                info.info2 = source.readBundle();
                return info;
            }

            @Override
            public Info[] newArray(int size) {
                return null;
            }
        };</pre>
<p>The createFromParcel method receives the argument, Parcel source. This is effectively the same Parcel we wrote to in our writeToParcel method. Keeping in mind the First In, First Out methodology, we simply read out our data in the same order we wrote it and return the new object. Deseriliazation complete!</p>
<p>You can explore the Parcel methods for a full reference of objects that can be stored as-is. The complete example is below.</p>
<pre>public class Info implements Parcelable {
    public Bundle info1;
    public Bundle info2;

    @Override
    public int describeContents() {
        return 0;
    }

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeBundle(info1);
        dest.writeBundle(info2);
    }

    public static final Parcelable.Creator&lt;Info&gt; CREATOR =
        new Parcelable.Creator&lt;Info&gt;() {
            @Override
            public Info createFromParcel(Parcel source) {
                Info info = new Info();
                info.info1 = source.readBundle();
                info.info2 = source.readBundle();
                return info;
            }

            @Override
            public Info[] newArray(int size) {
                return null;
            }
        };
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://thesmythgroup.com/2012/04/implementing-parcelable-on-android-a-brief-intro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watch This Now. Trust me. (Project Glass)</title>
		<link>http://thesmythgroup.com/2012/04/watch-this-now-trust-me-project-glass/</link>
		<comments>http://thesmythgroup.com/2012/04/watch-this-now-trust-me-project-glass/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 02:08:42 +0000</pubDate>
		<dc:creator>rtrahan</dc:creator>
				<category><![CDATA[Future]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://thesmythgroup.com/?p=227</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/04/watch-this-now-trust-me-project-glass/&amp;text=Watch This Now. Trust me. (Project Glass)&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
This is really something that Google is working on. Awesome. The problem, they want them to look like this. This is possibly the coolest, most innovative thing I think I&#8217;ve ever seen. But come on. Those things just look stupid. Lets be honest as cool as this technology might actually be, it will never take<p><a href="http://thesmythgroup.com/2012/04/watch-this-now-trust-me-project-glass/">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/04/watch-this-now-trust-me-project-glass/&amp;text=Watch This Now. Trust me. (Project Glass)&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p><a href="http://thesmythgroup.com/2012/04/watch-this-now-trust-me-project-glass/"><em>Click here to view the embedded video.</em></a></p>
<p>This is really something that Google is working on. Awesome.</p>
<p>The problem, they want them to look like this.</p>
<p><a href="http://thesmythgroup.com/wp-content/uploads/2012/04/20120404-210302.jpg"><img class="alignnone size-full" src="http://thesmythgroup.com/wp-content/uploads/2012/04/20120404-210302.jpg" alt="20120404-210302.jpg" /></a></p>
<p>This is possibly the coolest, most innovative thing I think I&#8217;ve ever seen. But come on. Those things just look stupid. Lets be honest as cool as this technology might actually be, it will never take off if they look like this.</p>
<p>Google please just make them look like regular glasses. Please.</p>
]]></content:encoded>
			<wfw:commentRss>http://thesmythgroup.com/2012/04/watch-this-now-trust-me-project-glass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make your own Mondrian&#8230; If you can.</title>
		<link>http://thesmythgroup.com/2012/03/make-your-own-mondrian-if-you-can/</link>
		<comments>http://thesmythgroup.com/2012/03/make-your-own-mondrian-if-you-can/#comments</comments>
		<pubDate>Sat, 31 Mar 2012 05:10:24 +0000</pubDate>
		<dc:creator>rtrahan</dc:creator>
				<category><![CDATA[Art]]></category>

		<guid isPermaLink="false">http://thesmythgroup.com/?p=96</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/make-your-own-mondrian-if-you-can/&amp;text=Make your own Mondrian&#8230; If you can.&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
Have you ever seen a work of art by Piet Mondrian? Like this? You probably have, and immediately followed your viewing with the statement &#8220;What&#8217;s so special about that? I can do that!&#8221;. Well the website My Mondrian , will let you do just that. Its a really awesome pastime or creative outlet. However, what<p><a href="http://thesmythgroup.com/2012/03/make-your-own-mondrian-if-you-can/">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/make-your-own-mondrian-if-you-can/&amp;text=Make your own Mondrian&#8230; If you can.&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p>Have you ever seen a work of art by Piet Mondrian?</p>
<p>Like this?</p>
<p><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/mondrian_comp_rgb.jpg"><img class="alignnone size-full wp-image-97" title="mondrian_comp_rgb" src="http://thesmythgroup.com/wp-content/uploads/2012/03/mondrian_comp_rgb.jpg" alt="" width="396" height="470" /></a></p>
<p>You probably have, and immediately followed your viewing with the statement &#8220;What&#8217;s so special about that? I can do that!&#8221;.</p>
<div></div>
<p>Well the website <a href="http://www.mymondrian.com">My Mondrian </a>, will let you do just that. Its a really awesome pastime or creative outlet.</p>
<p>However, what you will quickly discover when playing with the elements on the website, is that Piet knew what he was doing, and you really start to appreciate his work much more. His work became simply about design, nothing more. He removed all recognizable imagery from his paintings and made them only about aesthetics.</p>
<p>&nbsp;</p>
<p>I always find the work that artists do in their later years interesting. It almost always gets simpler, or fundamental. It seems backwards to go from complex to fundamental, but this falling or stripping away of the intricate is where the truth, beauty, and understanding truly lies.</p>
<p>&nbsp;</p>
<p>Piet Mondrian appreciation follows&#8230;</p>
<p><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/mural-29-c.jpg"><img class="alignnone size-full wp-image-98" title="mural-29-c" src="http://thesmythgroup.com/wp-content/uploads/2012/03/mural-29-c.jpg" alt="" width="450" height="333" /></a></p>
<p><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/Mondrian-red-tree.jpg"><img class="alignnone size-full wp-image-103" title="Mondrian-red-tree" src="http://thesmythgroup.com/wp-content/uploads/2012/03/Mondrian-red-tree.jpg" alt="" width="400" height="281" /></a></p>
<p><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/Mondrian-grey-tree.jpg"><img class="alignnone size-full wp-image-102" title="Mondrian-grey-tree" src="http://thesmythgroup.com/wp-content/uploads/2012/03/Mondrian-grey-tree.jpg" alt="" width="400" height="296" /></a></p>
<p><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/gray-lt-brown.jpg"><img class="alignnone size-full wp-image-99" title="gray-lt-brown" src="http://thesmythgroup.com/wp-content/uploads/2012/03/gray-lt-brown.jpg" alt="" width="708" height="1155" /></a><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/Mondrian-Broadway-boogie-woogie.jpg"><img class="alignnone size-full wp-image-101" title="Mondrian-Broadway-boogie-woogie" src="http://thesmythgroup.com/wp-content/uploads/2012/03/Mondrian-Broadway-boogie-woogie.jpg" alt="" width="400" height="406" /></a></p>
<p><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/img1w-1.jpg"><img class="alignnone size-full wp-image-100" title="img1w-1" src="http://thesmythgroup.com/wp-content/uploads/2012/03/img1w-1.jpg" alt="" width="1024" height="768" /></a></p>
<p><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/mondrian_comp_rgb.jpg"><img class="alignnone size-full wp-image-97" title="mondrian_comp_rgb" src="http://thesmythgroup.com/wp-content/uploads/2012/03/mondrian_comp_rgb.jpg" alt="" width="396" height="470" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thesmythgroup.com/2012/03/make-your-own-mondrian-if-you-can/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beautiful, and mesmerizing, video of something called a&#8230; &#8220;book&#8221;(?)</title>
		<link>http://thesmythgroup.com/2012/03/beautiful-and-mesmerizing-video-of-something-called-a-book/</link>
		<comments>http://thesmythgroup.com/2012/03/beautiful-and-mesmerizing-video-of-something-called-a-book/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 05:33:37 +0000</pubDate>
		<dc:creator>rtrahan</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://thesmythgroup.com/?p=91</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/beautiful-and-mesmerizing-video-of-something-called-a-book/&amp;text=Beautiful, and mesmerizing, video of something called a&#8230; &#8220;book&#8221;(?)&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
I dont think there is much I can say about this video. Its beautiful. &#160; I will say this, while I love my (tablet), there is just something about paper&#8230; and bound books for that matter. It can be replaced for some things, but I don&#8217;t think we will ever fully replace it.  When you<p><a href="http://thesmythgroup.com/2012/03/beautiful-and-mesmerizing-video-of-something-called-a-book/">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/beautiful-and-mesmerizing-video-of-something-called-a-book/&amp;text=Beautiful, and mesmerizing, video of something called a&#8230; &#8220;book&#8221;(?)&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p><a href="http://thesmythgroup.com/2012/03/beautiful-and-mesmerizing-video-of-something-called-a-book/"><em>Click here to view the embedded video.</em></a></p>
<p>I dont think there is much I can say about this video. Its beautiful.</p>
<p>&nbsp;</p>
<p>I will say this, while I love my (tablet), there is just something about paper&#8230; and bound books for that matter. It can be replaced for some things, but I don&#8217;t think we will ever fully replace it.  When you read from a book you have a real connection to the material literally and physically. To hold a book in your hands is more magical than any tablet can and could ever be, at least in the sense of cognition. I bet you can remember the shape feel and size of every book you&#8217;ve ever read. IN that way you do not only remember the content of the book you read but you have an experience that helps you retain what you read. That has a lot to do with that tactile feedback. Watch the video. Remember the books you&#8217;ve held and read in the past. Go buy a book.</p>
]]></content:encoded>
			<wfw:commentRss>http://thesmythgroup.com/2012/03/beautiful-and-mesmerizing-video-of-something-called-a-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CompareNinja Lets You Make Awesome Comparison Tables Online</title>
		<link>http://thesmythgroup.com/2012/03/compareninja-lets-you-make-awesome-comparison-tables-online/</link>
		<comments>http://thesmythgroup.com/2012/03/compareninja-lets-you-make-awesome-comparison-tables-online/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 22:03:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://thesmythgroup.com/?p=88</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/compareninja-lets-you-make-awesome-comparison-tables-online/&amp;text=CompareNinja Lets You Make Awesome Comparison Tables Online&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
If you are looking for a simple and easy way to create a HTML and CSS comparison chart, then you should give Compare Ninja a try. Compare Ninja is an online website that allows people to create beautiful HTML &#38; CSS based comparison tables. All of this is accomplished in a matter of minutes and<p><a href="http://thesmythgroup.com/2012/03/compareninja-lets-you-make-awesome-comparison-tables-online/">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/compareninja-lets-you-make-awesome-comparison-tables-online/&amp;text=CompareNinja Lets You Make Awesome Comparison Tables Online&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p>If you are looking for a simple and easy way to create a HTML and CSS comparison chart, then you should give Compare Ninja a try.</p>
<p><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/Compare-Ninja.jpg"><img class="aligncenter size-full wp-image-89" title="Compare-Ninja" src="http://thesmythgroup.com/wp-content/uploads/2012/03/Compare-Ninja.jpg" alt="" width="579" height="454" /></a>Compare Ninja is an online website that allows people to create beautiful HTML &amp; CSS based comparison tables. All of this is accomplished in a matter of minutes and the result can be displayed on your website/blog or anywhere you want.</p>
<p>To start off, click on the “Create Now” button, after which you will be required to make an account on the website. Once done, log in and start to fil in the basic details, i.e. table title, items to compare, table width, etc. Choose the design. Once done, edit the fields accordingly and click the “Get Code” button to get the HTML &amp; CSS code for the comparison table.</p>
<p>Features</p>
<ul>
<li>Free and easy to use.</li>
<li>User-friendly themes make comparison tables look beautiful and appealing.</li>
<li>Comparison tables can be edited at moments notice – HTML &amp; CSS code available.</li>
</ul>
<p>Link: <a href="http://www.compareninja.com/index.php" target="_blank">www.compareninja.com</a></p>
<p>via <a href="http://www.makeuseof.com" target="_blank">makeusof.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thesmythgroup.com/2012/03/compareninja-lets-you-make-awesome-comparison-tables-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Please stop trying to compete with Facebook.</title>
		<link>http://thesmythgroup.com/2012/03/please-stop-trying-to-compete-with-facebook/</link>
		<comments>http://thesmythgroup.com/2012/03/please-stop-trying-to-compete-with-facebook/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 20:41:18 +0000</pubDate>
		<dc:creator>rtrahan</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://thesmythgroup.com/?p=81</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/please-stop-trying-to-compete-with-facebook/&amp;text=Please stop trying to compete with Facebook.&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
The other day I was presented with an invitation to a website (zurker.net). I signed up for the social network merely to see what it was. When I was &#8220;in&#8221;, I got frustrated, really fast. It suggested that I &#8220;connect with other users&#8221;, I couldn&#8217;t find out how to. A &#8220;real life&#8221; friend of mine<p><a href="http://thesmythgroup.com/2012/03/please-stop-trying-to-compete-with-facebook/">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/please-stop-trying-to-compete-with-facebook/&amp;text=Please stop trying to compete with Facebook.&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/Facebook-King.png"><img class="alignnone size-full wp-image-83" title="Facebook King" src="http://thesmythgroup.com/wp-content/uploads/2012/03/Facebook-King.png" alt="" width="800" height="301" /></a>The other day I was presented with an invitation to a website (zurker.net). I signed up for the social network merely to see what it was. When I was &#8220;in&#8221;, I got frustrated, really fast. It suggested that I &#8220;connect with other users&#8221;, I couldn&#8217;t find out how to. A &#8220;real life&#8221; friend of mine had also got an invite so I was going to add him. There was literally no obvious way of doing this. Besides its user interface flaws, there seemed to be no use for the site. It was a social network that wants really bad to be Facebook, or at least Google+.</p>
<p>&nbsp;</p>
<p>I got an email from them telling me to start adding people and claimed to be one of the fastest growing social networks on the Internet. I don&#8217;t see it. And i definitely don&#8217;t see it  dethroning Facebook.</p>
<p>&nbsp;</p>
<p>Maybe I am wrong, but there just doesn&#8217;t seem to be a real point to trying to compete with Facebook. At close to a billion users how can you even begin to compete with it. After all Google+ is, at least in my opinion, better than Facebook. But I don&#8217;t use it. Even if a social network is better that doesn&#8217;t mean that it can take down Facebook. What&#8217;s important is this, Facebook is not a company, it is a form of communication(yes i know it is actually a company). Even with their constant restructuring of the way their site is set up, their users complain and then adapt. Why not just all switch to Google+ or Zurker? Because, while i might switch over I cant be sure that all my friends will, and what about all the stuff on facebook I have posted in the past? Sure there are services to switch all of that over but again I cant be sure that all my friends will switch over.</p>
<p>&nbsp;</p>
<p>In a way the time I have spent on and with Facebook has become an investment. I upload photos and status updates and I end up with a digital scrapbook of what has been going on in my life (see timeline).</p>
<p>&nbsp;</p>
<p>So please stop trying to compete with them. Yeah you might be able to do it better. But it doesn&#8217;t matter, in my opinion at least, any company trying to compete with them has already lost.</p>
<p>&nbsp;</p>
<p>Use Facebook. Don&#8217;t compete with Facebook. Facebook is a form of communication, it is not Friendster, or MySpace. How we use it will likely change, as their website does, but it is here to stay.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://thesmythgroup.com/2012/03/please-stop-trying-to-compete-with-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinterest, Is it for women?</title>
		<link>http://thesmythgroup.com/2012/03/pinterest-is-it-for-women/</link>
		<comments>http://thesmythgroup.com/2012/03/pinterest-is-it-for-women/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 00:08:28 +0000</pubDate>
		<dc:creator>rtrahan</dc:creator>
				<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://thesmythgroup.com/?p=64</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/pinterest-is-it-for-women/&amp;text=Pinterest, Is it for women?&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
&#160; Well let me just say that I hope not because I have an account, for which i have received much slack from my male facebook friends. &#160; What is &#8220;Pinterest&#8221;? Basically its a blog. Its what twitter is for text this is for links. Its a real quick blog. You find something you think<p><a href="http://thesmythgroup.com/2012/03/pinterest-is-it-for-women/">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/pinterest-is-it-for-women/&amp;text=Pinterest, Is it for women?&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/WOMEN-PINTEREST.png"><img class="alignnone size-full wp-image-65" title="WOMEN PINTEREST" src="http://thesmythgroup.com/wp-content/uploads/2012/03/WOMEN-PINTEREST.png" alt="" width="382" height="653" /></a></p>
<p>&nbsp;</p>
<p>Well let me just say that I hope not because I have an account, for which i have received much slack from my male facebook friends.</p>
<p>&nbsp;</p>
<p>What is &#8220;Pinterest&#8221;?</p>
<p>Basically its a blog. Its what twitter is for text this is for links. Its a real quick blog. You find something you think is interesting and pin it o the site and add a brief comment, pick a stack of pins to add it to and your done. Follow other peoples pins. Pinterest has a great iOS application and their website is laid out beautifully.</p>
<p>But the one gripe that i have is its mostly women on, hence the slack from my facebook friends.</p>
<p>&nbsp;</p>
<p>According to one analyst (<a href="http://www.ignitesocialmedia.com/social-networks/pinterest-demographic-data/">here</a>) 80 % of users are women.</p>
<p>&nbsp;</p>
<p>Pinterest is the home economics of the internet right now, you know that class that guys took in school because its where all the girls were.</p>
<p>&nbsp;</p>
<p>But for now not many men have caught on.</p>
<p>&nbsp;</p>
<p>All in all it is a great service and a great way to organize what you are interested in.</p>
]]></content:encoded>
			<wfw:commentRss>http://thesmythgroup.com/2012/03/pinterest-is-it-for-women/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bird Man/Wings/Video a fake :(</title>
		<link>http://thesmythgroup.com/2012/03/birdman-wingsvideo-a-fake/</link>
		<comments>http://thesmythgroup.com/2012/03/birdman-wingsvideo-a-fake/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 19:58:43 +0000</pubDate>
		<dc:creator>rtrahan</dc:creator>
				<category><![CDATA[Flying]]></category>

		<guid isPermaLink="false">http://thesmythgroup.com/?p=45</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/birdman-wingsvideo-a-fake/&amp;text=Bird Man/Wings/Video a fake :(&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
&#160; If you have been on the Internet in the past few days, you have either seen or heard about the video above. In it a guy flies using a android phone, a few wii remotes, and some giant wings. I (as well as everyone else that believed it) was excited, thrilled, and amazed at<p><a href="http://thesmythgroup.com/2012/03/birdman-wingsvideo-a-fake/">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/birdman-wingsvideo-a-fake/&amp;text=Bird Man/Wings/Video a fake :(&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<p><a href="http://thesmythgroup.com/2012/03/birdman-wingsvideo-a-fake/"><em>Click here to view the embedded video.</em></a></p>
<p>&nbsp;</p>
<p>If you have been  on the Internet in the past few days, you have either seen or heard about the video above. In it a guy flies using a android phone, a few wii remotes, and some giant wings. I (as well as everyone else that believed it) was excited, thrilled, and amazed at the work and accomplishment of this dutch team.</p>
<p>Well it turns out it was just a hoax. Jarno Smeets is a CGI artist who is in the middle of making a documentary about how easy it is to fool people on the Internet.</p>
<p>But here is the deal, why cant we do this? Why haven&#8217;t we? It must be possible. Make a light enough, big enough wing, with the right movement, and it has got to work.</p>
<p>&nbsp;</p>
<p>Calling all inventors, life hackers, tinkerers and garage renaissance men, lets do this&#8230; for real.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Here&#8217;s a few drawing to give you (us) some inspiration.</p>
<p><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/FlyingMachine2.jpg"><img class="alignnone size-medium wp-image-52" src="http://thesmythgroup.com/wp-content/uploads/2012/03/FlyingMachine2-300x217.jpg" alt="" width="300" height="217" /></a><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/fly4.jpg"><img class="alignnone size-medium wp-image-53" src="http://thesmythgroup.com/wp-content/uploads/2012/03/fly4-217x300.jpg" alt="" width="217" height="300" /></a><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/Corbis-BE023740.jpg"><img class="alignnone size-full wp-image-54" src="http://thesmythgroup.com/wp-content/uploads/2012/03/Corbis-BE023740.jpg" alt="" width="640" height="466" /></a></p>
<p>I&#8217;m serious.</p>
]]></content:encoded>
			<wfw:commentRss>http://thesmythgroup.com/2012/03/birdman-wingsvideo-a-fake/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mountain Lion, its nice (really nice) but is it enough?</title>
		<link>http://thesmythgroup.com/2012/03/mountain-lion-its-nice-really-nice-but-is-it-enough/</link>
		<comments>http://thesmythgroup.com/2012/03/mountain-lion-its-nice-really-nice-but-is-it-enough/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 18:32:57 +0000</pubDate>
		<dc:creator>rtrahan</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://thesmythgroup.com/?p=38</guid>
		<description><![CDATA[
<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/mountain-lion-its-nice-really-nice-but-is-it-enough/&amp;text=Mountain Lion, its nice (really nice) but is it enough?&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
I downloaded the developer preview of Mountain Lion, apple&#8217;s forth coming OSX update, and it is really nice. Some of the major features include; 1)Messages(available right now for anyone with Lion as a beta): is a great app that syncs your iMessages across all your devices iPhone iPad and mac. and &#8220;it just works&#8221; as<p><a href="http://thesmythgroup.com/2012/03/mountain-lion-its-nice-really-nice-but-is-it-enough/">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<div class="twitterbutton" style="float: right; padding-left: 5px;"><a href="http://twitter.com/share?url=http://thesmythgroup.com/2012/03/mountain-lion-its-nice-really-nice-but-is-it-enough/&amp;text=Mountain Lion, its nice (really nice) but is it enough?&amp;via=&amp;related=DolcePixel"><img align="right" src="http://thesmythgroup.com/wp-content/plugins//easy-twitter-button/i/buttons/en/tweetn.png" style="border: none;" alt="" /></a></div>
<div>
<div></div>
<div><a href="http://thesmythgroup.com/wp-content/uploads/2012/03/mtlion.jpg"><img class="alignnone size-medium wp-image-40" src="http://thesmythgroup.com/wp-content/uploads/2012/03/mtlion-282x300.jpg" alt="" width="282" height="300" /></a></div>
<div>I downloaded the developer preview of Mountain Lion, apple&#8217;s forth coming OSX update, and it is really nice.</div>
<div></div>
<div>Some of the major features include;</div>
<div></div>
<div></div>
<div>1)Messages(available right now for anyone with Lion as a beta): is a great app that syncs your iMessages across all your devices iPhone iPad and mac. and &#8220;it just works&#8221; as the late steve jobs would say. When you send or receive a message you can read and reply to that message from any device and you can read your entire conversation from any of those devices, not just the ones that were sent from that device. Its nice.</div>
<div></div>
<div></div>
<div>2)more iCloud integration: OSX now has a reminders app and notes app that are very familiar to the ones you find on your iPad, and they sync across all your devices via iCloud. The Calendar app (previously iCal) works just like it did in lion pushing any and all changes made on any device to all the others. (iWork apps now push changes across all devices too not just ios devices)</div>
<div></div>
<div></div>
<div>3)Notification center: again much like on the iPhone and iPad notification center is a much needed improvement. It even shows you your notification when you are in a full screen app. Two finger swipe from the right to the left shows a panel with all of your recent notifications.</div>
<div></div>
<div></div>
<div>4)Siri (kind of): because all of these apps work across devices when you use Siri to set a reminder, make a note or schedule an appointment it gets synced across the rest. so yeah in a way its like the features of all the devices are synced across the others.</div>
<div></div>
</div>
<p>These are all great features. and there are many more, but is it enough when we consider what Microsoft is doing with windows?</p>
<div></div>
<div>To be honest I hate windows. But what I have seen so far with Windows 8 is really impressive. Like it or not, this is the first time that Microsoft is actually innovating. All they have done for years is copy what others have done. And I guess since Google has taken up that mantle (see androids similarities to iOS, and Google+ similarities to Facebook) Microsoft has decided to start doing some really interesting work with their operating system.</div>
<div></div>
<div>I think whatever is next for Apple&#8217;s desktop operating system will be the real test to see who is going to win the desktop market in the post pc-world.</div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://thesmythgroup.com/2012/03/mountain-lion-its-nice-really-nice-but-is-it-enough/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

