﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#">
  <channel>
    <title>Unosquare</title>
    <description>the gateway to nearshore</description>
    <link>http://blog.unosquare.com/</link>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>BlogEngine.NET 1.5.0.7</generator>
    <language>en-US</language>
    <blogChannel:blogRoll>http://blog.unosquare.com/opml.axd</blogChannel:blogRoll>
    <blogChannel:blink>http://www.dotnetblogengine.net/syndication.axd</blogChannel:blink>
    <dc:creator>Unosquare</dc:creator>
    <dc:title>Unosquare</dc:title>
    <geo:lat>0.000000</geo:lat>
    <geo:long>0.000000</geo:long>
    <item>
      <title>The SessionManager pattern revisited</title>
      <description>&lt;p&gt;Here's the new and improved SessionManager pattern. I thought I would blog it because it looks so elegant and useful. Here it is:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre style="font-family: monospace; font-size: 12px; color: #333;"&gt;namespace Unosquare.App.WebClient.Models
{

    public enum SessionKeys
    {
        CurrentInvoice,
    }

    public static class SessionManager
    {

        private static T GetSessionProperty(SessionKeys key) where T : new()
        {
            var sessionKey = key.ToString();

            if (HttpContext.Current.Session[sessionKey] == null)
            {
                HttpContext.Current.Session[sessionKey] = new T();
            }
            return (T)HttpContext.Current.Session[sessionKey];
        }

        private static Invoice CurrentInvoice
        {
            get
            {
                return GetSessionProperty(SessionKeys.CurrentInvoice);
            }
        }

    }
} 
&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="socialBookmarksContainer"&gt;&lt;a rel="nofollow" href="http://digg.com/submit/?url=http://blog.unosquare.com/post/The-SessionManager-pattern-revisited.aspx" target="_blank" title="Digg It!"&gt;&lt;img src="/socialbookmarks/square/digg_24.png" style="border: 0;" alt="Digg It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.dzone.com/links/add.html?url=http://blog.unosquare.com/post/The-SessionManager-pattern-revisited.aspx&amp;amp;title=The SessionManager pattern revisited" target="_blank" title="DZone It!"&gt;&lt;img src="/socialbookmarks/square/dzone_24.png" style="border: 0;" alt="DZone It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http://blog.unosquare.com/post/The-SessionManager-pattern-revisited.aspx" target="_blank" title="StumbleUpon"&gt;&lt;img src="/socialbookmarks/square/stumbleupon_24.png" style="border: 0;" alt="StumbleUpon" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://technorati.com/ping?url=http://blog.unosquare.com/" target="_blank" title="Technorati"&gt;&lt;img src="/socialbookmarks/square/technorati_24.png" style="border: 0;" alt="Technorati" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://reddit.com/submit?url=http://blog.unosquare.com/post/The-SessionManager-pattern-revisited.aspx&amp;amp;title=The SessionManager pattern revisited" target="_blank" title="Reddit"&gt;&lt;img src="/socialbookmarks/square/reddit_24.png" style="border: 0;" alt="Reddit" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://del.icio.us/post?url=http://blog.unosquare.com/post/The-SessionManager-pattern-revisited.aspx&amp;amp;title=The SessionManager pattern revisited" target="_blank" title="Del.icio.us"&gt;&lt;img src="/socialbookmarks/square/delicious_24.png" style="border: 0;" alt="Del.icio.us" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http://blog.unosquare.com/post/The-SessionManager-pattern-revisited.aspx" target="_blank"title="NewsVine"&gt;&lt;img src="/socialbookmarks/square/newsvine_24.png" style="border: 0;" alt="NewsVine" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://furl.net" target="_blank" title="Furl"&gt;&lt;img src="/socialbookmarks/square/furl_24.png" style="border: 0;" alt="Furl" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://blinklist.com/submit/" target="_blank" title="BlinkList"&gt;&lt;img src="/socialbookmarks/square/blinklist_24.png" style="border: 0;" alt="BlinkList" /&gt;&lt;/a&gt;&lt;/div&gt;</description>
      <link>http://blog.unosquare.com/post/The-SessionManager-pattern-revisited.aspx</link>
      <author>mario</author>
      <comments>http://blog.unosquare.com/post/The-SessionManager-pattern-revisited.aspx#comment</comments>
      <guid>http://blog.unosquare.com/post.aspx?id=9f3edabf-a747-438c-8222-9b641aa638ed</guid>
      <pubDate>Wed, 25 Nov 2009 23:28:00 +0400</pubDate>
      <dc:publisher>mario</dc:publisher>
      <pingback:server>http://blog.unosquare.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.unosquare.com/post.aspx?id=9f3edabf-a747-438c-8222-9b641aa638ed</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.unosquare.com/trackback.axd?id=9f3edabf-a747-438c-8222-9b641aa638ed</trackback:ping>
      <wfw:comment>http://blog.unosquare.com/post/The-SessionManager-pattern-revisited.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.unosquare.com/syndication.axd?post=9f3edabf-a747-438c-8222-9b641aa638ed</wfw:commentRss>
    </item>
    <item>
      <title>We are going Azure</title>
      <description>&lt;p&gt;We have been having talks with Microsoft Mexico to port one of our client's products to SQL Azure (&lt;a href="http://www.microsoft.com/windowsazure/sqlazure/"&gt;http://www.microsoft.com/windowsazure/sqlazure/&lt;/a&gt;) The integration starts today! This is hopefully our path to&amp;nbsp;become a Microsoft Partner.&lt;/p&gt;&lt;div class="socialBookmarksContainer"&gt;&lt;a rel="nofollow" href="http://digg.com/submit/?url=http://blog.unosquare.com/post/We-are-going-Azure.aspx" target="_blank" title="Digg It!"&gt;&lt;img src="/socialbookmarks/square/digg_24.png" style="border: 0;" alt="Digg It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.dzone.com/links/add.html?url=http://blog.unosquare.com/post/We-are-going-Azure.aspx&amp;amp;title=We are going Azure" target="_blank" title="DZone It!"&gt;&lt;img src="/socialbookmarks/square/dzone_24.png" style="border: 0;" alt="DZone It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http://blog.unosquare.com/post/We-are-going-Azure.aspx" target="_blank" title="StumbleUpon"&gt;&lt;img src="/socialbookmarks/square/stumbleupon_24.png" style="border: 0;" alt="StumbleUpon" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://technorati.com/ping?url=http://blog.unosquare.com/" target="_blank" title="Technorati"&gt;&lt;img src="/socialbookmarks/square/technorati_24.png" style="border: 0;" alt="Technorati" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://reddit.com/submit?url=http://blog.unosquare.com/post/We-are-going-Azure.aspx&amp;amp;title=We are going Azure" target="_blank" title="Reddit"&gt;&lt;img src="/socialbookmarks/square/reddit_24.png" style="border: 0;" alt="Reddit" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://del.icio.us/post?url=http://blog.unosquare.com/post/We-are-going-Azure.aspx&amp;amp;title=We are going Azure" target="_blank" title="Del.icio.us"&gt;&lt;img src="/socialbookmarks/square/delicious_24.png" style="border: 0;" alt="Del.icio.us" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http://blog.unosquare.com/post/We-are-going-Azure.aspx" target="_blank"title="NewsVine"&gt;&lt;img src="/socialbookmarks/square/newsvine_24.png" style="border: 0;" alt="NewsVine" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://furl.net" target="_blank" title="Furl"&gt;&lt;img src="/socialbookmarks/square/furl_24.png" style="border: 0;" alt="Furl" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://blinklist.com/submit/" target="_blank" title="BlinkList"&gt;&lt;img src="/socialbookmarks/square/blinklist_24.png" style="border: 0;" alt="BlinkList" /&gt;&lt;/a&gt;&lt;/div&gt;</description>
      <link>http://blog.unosquare.com/post/We-are-going-Azure.aspx</link>
      <author>mario</author>
      <comments>http://blog.unosquare.com/post/We-are-going-Azure.aspx#comment</comments>
      <guid>http://blog.unosquare.com/post.aspx?id=b44baf43-2460-419d-a394-8f0ba74693a9</guid>
      <pubDate>Mon, 02 Nov 2009 10:33:00 +0400</pubDate>
      <category>Company</category>
      <dc:publisher>mario</dc:publisher>
      <pingback:server>http://blog.unosquare.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.unosquare.com/post.aspx?id=b44baf43-2460-419d-a394-8f0ba74693a9</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.unosquare.com/trackback.axd?id=b44baf43-2460-419d-a394-8f0ba74693a9</trackback:ping>
      <wfw:comment>http://blog.unosquare.com/post/We-are-going-Azure.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.unosquare.com/syndication.axd?post=b44baf43-2460-419d-a394-8f0ba74693a9</wfw:commentRss>
    </item>
    <item>
      <title>Microsoft and PHP</title>
      <description>&lt;p&gt;Last night I tried something called "Windows Cache Extension for PHP". In the&amp;nbsp;world of&amp;nbsp;PHP, accelerators are extensions which cache&amp;nbsp;script opcodes in either the file system or memory so that the next time the script&amp;nbsp;is requested, it won't need to be checked, parsed and converted into opcodes.&amp;nbsp;Accelerators significantly increase response times, especially in large PHP applications and libraries (such as our PHP framework, WebCore&amp;nbsp;3x). So far I had been using eAccelerator&amp;nbsp;fairly successfully. The problem with eAccelerator is that sometimes it will make Apache crash for no apparent reason. Well, Microsoft just realeased their own&amp;nbsp;PHP accelerator extension and guess what? It works&amp;nbsp;amazingly well. I'm testing the extension with IIS 6.0 + FastCGI + PHP 5.2.10&amp;nbsp;and so far,&amp;nbsp;in terms of speed and reliability, I am very happy with it. This is the third time I've been surprised by Microsoft's work towards integrating with PHP. The first time I saw this, was when I discovered they were offering a SQL Server Driver (extension) for PHP. Then, Microsoft integrated PHP within their free Web Platforms Installer. This made it very simple to install PHP on IIS 6 or 7 and bundle it wih FastCGI. Finally, and most amazingly, thier new Windows Cache Extension for PHP really shows some interest from Microsoft to winning a large PHP user base over to IIS. I can't wait until Microsoft goes beyond the Phalanger project and creates a PHP compiler for the .NET framework as they did with Ruby and Python. I guess that with the DLR and the new "dynamic" C# 4.0&amp;nbsp;keyword, we will be seeing support for PHP.NET soon enough.&lt;/p&gt;&lt;div class="socialBookmarksContainer"&gt;&lt;a rel="nofollow" href="http://digg.com/submit/?url=http://blog.unosquare.com/post/Microsoft-and-PHP.aspx" target="_blank" title="Digg It!"&gt;&lt;img src="/socialbookmarks/square/digg_24.png" style="border: 0;" alt="Digg It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.dzone.com/links/add.html?url=http://blog.unosquare.com/post/Microsoft-and-PHP.aspx&amp;amp;title=Microsoft and PHP" target="_blank" title="DZone It!"&gt;&lt;img src="/socialbookmarks/square/dzone_24.png" style="border: 0;" alt="DZone It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http://blog.unosquare.com/post/Microsoft-and-PHP.aspx" target="_blank" title="StumbleUpon"&gt;&lt;img src="/socialbookmarks/square/stumbleupon_24.png" style="border: 0;" alt="StumbleUpon" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://technorati.com/ping?url=http://blog.unosquare.com/" target="_blank" title="Technorati"&gt;&lt;img src="/socialbookmarks/square/technorati_24.png" style="border: 0;" alt="Technorati" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://reddit.com/submit?url=http://blog.unosquare.com/post/Microsoft-and-PHP.aspx&amp;amp;title=Microsoft and PHP" target="_blank" title="Reddit"&gt;&lt;img src="/socialbookmarks/square/reddit_24.png" style="border: 0;" alt="Reddit" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://del.icio.us/post?url=http://blog.unosquare.com/post/Microsoft-and-PHP.aspx&amp;amp;title=Microsoft and PHP" target="_blank" title="Del.icio.us"&gt;&lt;img src="/socialbookmarks/square/delicious_24.png" style="border: 0;" alt="Del.icio.us" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http://blog.unosquare.com/post/Microsoft-and-PHP.aspx" target="_blank"title="NewsVine"&gt;&lt;img src="/socialbookmarks/square/newsvine_24.png" style="border: 0;" alt="NewsVine" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://furl.net" target="_blank" title="Furl"&gt;&lt;img src="/socialbookmarks/square/furl_24.png" style="border: 0;" alt="Furl" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://blinklist.com/submit/" target="_blank" title="BlinkList"&gt;&lt;img src="/socialbookmarks/square/blinklist_24.png" style="border: 0;" alt="BlinkList" /&gt;&lt;/a&gt;&lt;/div&gt;</description>
      <link>http://blog.unosquare.com/post/Microsoft-and-PHP.aspx</link>
      <author>mario</author>
      <comments>http://blog.unosquare.com/post/Microsoft-and-PHP.aspx#comment</comments>
      <guid>http://blog.unosquare.com/post.aspx?id=927b29f2-733f-4459-9f53-4fe430b77980</guid>
      <pubDate>Wed, 21 Oct 2009 19:33:00 +0400</pubDate>
      <dc:publisher>mario</dc:publisher>
      <pingback:server>http://blog.unosquare.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.unosquare.com/post.aspx?id=927b29f2-733f-4459-9f53-4fe430b77980</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.unosquare.com/trackback.axd?id=927b29f2-733f-4459-9f53-4fe430b77980</trackback:ping>
      <wfw:comment>http://blog.unosquare.com/post/Microsoft-and-PHP.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.unosquare.com/syndication.axd?post=927b29f2-733f-4459-9f53-4fe430b77980</wfw:commentRss>
    </item>
    <item>
      <title>Worship Kitchen 2.0 Launched!</title>
      <description>&lt;p&gt;&lt;a href="http://worshipkitchen.com"&gt;Worship Kitchen&lt;/a&gt; is one of the digital distribution channels of &lt;a href="http://integritymedia.com"&gt;Integrity Media&lt;/a&gt;. What makes it different is that you can get extended content such as split-tracks, orchestrations, transposable music sheets, lyrics and so much more than your regular music provider. We had been working extremely hard to get the next iteration of Worship Kitchen out the door. It was not easy and we had to learn many things along the way but we finally did it. We ended up with a rock-solid product. We’d like to thank the team at Integrity. They gave us all the right direction, hard work and resources we needed to complete this iteration. There’s a lot more coming though. I’ll keep you posted.&lt;/p&gt;&lt;div class="socialBookmarksContainer"&gt;&lt;a rel="nofollow" href="http://digg.com/submit/?url=http://blog.unosquare.com/post/Worship-Kitchen-20-Launched!.aspx" target="_blank" title="Digg It!"&gt;&lt;img src="/socialbookmarks/square/digg_24.png" style="border: 0;" alt="Digg It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.dzone.com/links/add.html?url=http://blog.unosquare.com/post/Worship-Kitchen-20-Launched!.aspx&amp;amp;title=Worship Kitchen 2.0 Launched!" target="_blank" title="DZone It!"&gt;&lt;img src="/socialbookmarks/square/dzone_24.png" style="border: 0;" alt="DZone It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http://blog.unosquare.com/post/Worship-Kitchen-20-Launched!.aspx" target="_blank" title="StumbleUpon"&gt;&lt;img src="/socialbookmarks/square/stumbleupon_24.png" style="border: 0;" alt="StumbleUpon" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://technorati.com/ping?url=http://blog.unosquare.com/" target="_blank" title="Technorati"&gt;&lt;img src="/socialbookmarks/square/technorati_24.png" style="border: 0;" alt="Technorati" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://reddit.com/submit?url=http://blog.unosquare.com/post/Worship-Kitchen-20-Launched!.aspx&amp;amp;title=Worship Kitchen 2.0 Launched!" target="_blank" title="Reddit"&gt;&lt;img src="/socialbookmarks/square/reddit_24.png" style="border: 0;" alt="Reddit" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://del.icio.us/post?url=http://blog.unosquare.com/post/Worship-Kitchen-20-Launched!.aspx&amp;amp;title=Worship Kitchen 2.0 Launched!" target="_blank" title="Del.icio.us"&gt;&lt;img src="/socialbookmarks/square/delicious_24.png" style="border: 0;" alt="Del.icio.us" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http://blog.unosquare.com/post/Worship-Kitchen-20-Launched!.aspx" target="_blank"title="NewsVine"&gt;&lt;img src="/socialbookmarks/square/newsvine_24.png" style="border: 0;" alt="NewsVine" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://furl.net" target="_blank" title="Furl"&gt;&lt;img src="/socialbookmarks/square/furl_24.png" style="border: 0;" alt="Furl" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://blinklist.com/submit/" target="_blank" title="BlinkList"&gt;&lt;img src="/socialbookmarks/square/blinklist_24.png" style="border: 0;" alt="BlinkList" /&gt;&lt;/a&gt;&lt;/div&gt;</description>
      <link>http://blog.unosquare.com/post/Worship-Kitchen-20-Launched!.aspx</link>
      <author>mario</author>
      <comments>http://blog.unosquare.com/post/Worship-Kitchen-20-Launched!.aspx#comment</comments>
      <guid>http://blog.unosquare.com/post.aspx?id=e255aaa4-d280-4ea4-839c-ffdfe249f78c</guid>
      <pubDate>Thu, 25 Jun 2009 22:07:21 +0400</pubDate>
      <dc:publisher>mario</dc:publisher>
      <pingback:server>http://blog.unosquare.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.unosquare.com/post.aspx?id=e255aaa4-d280-4ea4-839c-ffdfe249f78c</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.unosquare.com/trackback.axd?id=e255aaa4-d280-4ea4-839c-ffdfe249f78c</trackback:ping>
      <wfw:comment>http://blog.unosquare.com/post/Worship-Kitchen-20-Launched!.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.unosquare.com/syndication.axd?post=e255aaa4-d280-4ea4-839c-ffdfe249f78c</wfw:commentRss>
    </item>
    <item>
      <title>The story behind our logo</title>
      <description>&lt;p&gt;Defining the logo for a new company is always hard and our case was definitely not an exception. Our first approach to the logo was completely related to the &lt;strong&gt;&lt;em&gt;square&lt;/em&gt;&lt;/strong&gt;. After that approach, we moved towards something very similar to our final logo, we wanted to focus on the entire name, while still keeping focus on the Spanish/English part of the Company&amp;rsquo;s name &amp;ndash; at that time we were also focused on colors, and we came with something like this:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blog.unosquare.com/image.axd?picture=logoideas.png"&gt;&lt;img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="logoideas" src="http://blog.unosquare.com/image.axd?picture=logoideas_thumb.png" border="0" alt="logoideas" width="204" height="145" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Short after that &lt;strong&gt;&lt;a href="http://www.facebook.com/people/Lorena-Navarrete/623176276" target="_blank"&gt;Lorena Navarrete&lt;/a&gt;&lt;/strong&gt; designed a different set of logos that actually looked more like real logos and not our &amp;ldquo;first-approaches&amp;rdquo;. Lorena, we are thankful for your all your help! &lt;a href="http://blog.unosquare.com/image.axd?picture=UNOSQUARE2.jpg"&gt;&lt;img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="Print" src="http://blog.unosquare.com/image.axd?picture=UNOSQUARE2_thumb.jpg" border="0" alt="Print" width="244" height="191" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;From this set of logos we really liked the following one &amp;ndash; although none of our &lt;em&gt;friends and family&lt;/em&gt; seemed to like it.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blog.unosquare.com/image.axd?picture=cool.jpg"&gt;&lt;img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="Print" src="http://blog.unosquare.com/image.axd?picture=cool_thumb.jpg" border="0" alt="Print" width="99" height="85" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Finally we came up with the idea of leveraging the power of social networks to decide on our logo, and this became in quite an experience. We had people from everywhere giving opinions about this. People keep asking us which Logo won as if it was some sort of contest. To do this, we did an online Poll using &lt;a href="http://zohopolls.com" target="_blank"&gt;Zoho Polls&lt;/a&gt;, which aside from the fact that it doesn&amp;rsquo;t manage comments well, did the trick for deciding on our logo.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://tinyurl.com/pxbes2" target="_blank"&gt;&lt;strong&gt;&lt;em&gt;Link to the original Poll&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The winner was one of Lorena&amp;rsquo;s original designs - #4 on the Poll!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blog.unosquare.com/image.axd?picture=final-4.png"&gt;&lt;img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="final-4" src="http://blog.unosquare.com/image.axd?picture=final-4_thumb.png" border="0" alt="final-4" width="205" height="216" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Although something quite interesting happened; when we analyzed the audience that voted, we realized that Executives preferred the more formal and simpler design while younger generations preferred the modern/colorful approach.&lt;/p&gt;
&lt;p&gt;At the end, we decided for the formal logo, I think that it is just as dressing for a meeting with a CIO/CTO. Honestly I could just wear jeans and a t-shirt, after all, what matters is what we know and how well we can do it, but the bottom-line is that I wear a suit for those meetings. I want the person that is meeting me to focus on what I say and not how am I dressed. As for our logo, we want them to focus on our company&amp;rsquo;s services and not in how modern/colorful we look.&lt;/p&gt;
&lt;p&gt;The final logo actually is quite smart; it allows us to do branding: &lt;em&gt;unosign, unosap, unoblog&lt;/em&gt;, etc. It is formal, and the best, we can write it using True Type Fonts! &lt;em&gt;So much for embedding images&amp;hellip;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: large;"&gt;&lt;strong&gt;un&lt;/strong&gt;&lt;span style="font-size: medium; font-family: Wingdings;"&gt;o&lt;/span&gt;&lt;strong&gt;square&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="socialBookmarksContainer"&gt;&lt;a rel="nofollow" href="http://digg.com/submit/?url=http://blog.unosquare.com/post/The-story-behind-our-logo.aspx" target="_blank" title="Digg It!"&gt;&lt;img src="/socialbookmarks/square/digg_24.png" style="border: 0;" alt="Digg It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.dzone.com/links/add.html?url=http://blog.unosquare.com/post/The-story-behind-our-logo.aspx&amp;amp;title=The story behind our logo" target="_blank" title="DZone It!"&gt;&lt;img src="/socialbookmarks/square/dzone_24.png" style="border: 0;" alt="DZone It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http://blog.unosquare.com/post/The-story-behind-our-logo.aspx" target="_blank" title="StumbleUpon"&gt;&lt;img src="/socialbookmarks/square/stumbleupon_24.png" style="border: 0;" alt="StumbleUpon" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://technorati.com/ping?url=http://blog.unosquare.com/" target="_blank" title="Technorati"&gt;&lt;img src="/socialbookmarks/square/technorati_24.png" style="border: 0;" alt="Technorati" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://reddit.com/submit?url=http://blog.unosquare.com/post/The-story-behind-our-logo.aspx&amp;amp;title=The story behind our logo" target="_blank" title="Reddit"&gt;&lt;img src="/socialbookmarks/square/reddit_24.png" style="border: 0;" alt="Reddit" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://del.icio.us/post?url=http://blog.unosquare.com/post/The-story-behind-our-logo.aspx&amp;amp;title=The story behind our logo" target="_blank" title="Del.icio.us"&gt;&lt;img src="/socialbookmarks/square/delicious_24.png" style="border: 0;" alt="Del.icio.us" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http://blog.unosquare.com/post/The-story-behind-our-logo.aspx" target="_blank"title="NewsVine"&gt;&lt;img src="/socialbookmarks/square/newsvine_24.png" style="border: 0;" alt="NewsVine" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://furl.net" target="_blank" title="Furl"&gt;&lt;img src="/socialbookmarks/square/furl_24.png" style="border: 0;" alt="Furl" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://blinklist.com/submit/" target="_blank" title="BlinkList"&gt;&lt;img src="/socialbookmarks/square/blinklist_24.png" style="border: 0;" alt="BlinkList" /&gt;&lt;/a&gt;&lt;/div&gt;</description>
      <link>http://blog.unosquare.com/post/The-story-behind-our-logo.aspx</link>
      <author>juanroman</author>
      <comments>http://blog.unosquare.com/post/The-story-behind-our-logo.aspx#comment</comments>
      <guid>http://blog.unosquare.com/post.aspx?id=02e83b15-d31b-44d7-ad6c-92e68e45d1e2</guid>
      <pubDate>Mon, 25 May 2009 11:22:00 +0400</pubDate>
      <category>Company</category>
      <dc:publisher>juanroman</dc:publisher>
      <pingback:server>http://blog.unosquare.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.unosquare.com/post.aspx?id=02e83b15-d31b-44d7-ad6c-92e68e45d1e2</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.unosquare.com/trackback.axd?id=02e83b15-d31b-44d7-ad6c-92e68e45d1e2</trackback:ping>
      <wfw:comment>http://blog.unosquare.com/post/The-story-behind-our-logo.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.unosquare.com/syndication.axd?post=02e83b15-d31b-44d7-ad6c-92e68e45d1e2</wfw:commentRss>
    </item>
    <item>
      <title>Our Social Profiles</title>
      <description>&lt;p&gt;This post will serve both as a test for our &lt;a href="http://blog.unosquare.com/"&gt;Corporate Blog&lt;/a&gt; and as a test for publishing from within &lt;a href="http://download.live.com/writer"&gt;Windows Live Writer&lt;/a&gt;. Although you can find the links in the website&amp;rsquo;s footer, here&amp;rsquo;s a list of our locations within several Social Networks:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.linkedin.com/companies/unosquare"&gt;Unosquare @ LinkedIn&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.facebook.com/pages/unosquare/77439193723"&gt;Unosquare @ Facebook&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="http://twitter.com/unosquare"&gt;Unosquare @ Twitter&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;&lt;div class="socialBookmarksContainer"&gt;&lt;a rel="nofollow" href="http://digg.com/submit/?url=http://blog.unosquare.com/post/Our-Social-Profiles.aspx" target="_blank" title="Digg It!"&gt;&lt;img src="/socialbookmarks/square/digg_24.png" style="border: 0;" alt="Digg It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.dzone.com/links/add.html?url=http://blog.unosquare.com/post/Our-Social-Profiles.aspx&amp;amp;title=Our Social Profiles" target="_blank" title="DZone It!"&gt;&lt;img src="/socialbookmarks/square/dzone_24.png" style="border: 0;" alt="DZone It!" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http://blog.unosquare.com/post/Our-Social-Profiles.aspx" target="_blank" title="StumbleUpon"&gt;&lt;img src="/socialbookmarks/square/stumbleupon_24.png" style="border: 0;" alt="StumbleUpon" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://technorati.com/ping?url=http://blog.unosquare.com/" target="_blank" title="Technorati"&gt;&lt;img src="/socialbookmarks/square/technorati_24.png" style="border: 0;" alt="Technorati" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://reddit.com/submit?url=http://blog.unosquare.com/post/Our-Social-Profiles.aspx&amp;amp;title=Our Social Profiles" target="_blank" title="Reddit"&gt;&lt;img src="/socialbookmarks/square/reddit_24.png" style="border: 0;" alt="Reddit" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://del.icio.us/post?url=http://blog.unosquare.com/post/Our-Social-Profiles.aspx&amp;amp;title=Our Social Profiles" target="_blank" title="Del.icio.us"&gt;&lt;img src="/socialbookmarks/square/delicious_24.png" style="border: 0;" alt="Del.icio.us" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://www.newsvine.com/_wine/save?u=http://blog.unosquare.com/post/Our-Social-Profiles.aspx" target="_blank"title="NewsVine"&gt;&lt;img src="/socialbookmarks/square/newsvine_24.png" style="border: 0;" alt="NewsVine" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://furl.net" target="_blank" title="Furl"&gt;&lt;img src="/socialbookmarks/square/furl_24.png" style="border: 0;" alt="Furl" /&gt;&lt;/a&gt;&lt;a rel="nofollow" href="http://blinklist.com/submit/" target="_blank" title="BlinkList"&gt;&lt;img src="/socialbookmarks/square/blinklist_24.png" style="border: 0;" alt="BlinkList" /&gt;&lt;/a&gt;&lt;/div&gt;</description>
      <link>http://blog.unosquare.com/post/Our-Social-Profiles.aspx</link>
      <author>juanroman</author>
      <comments>http://blog.unosquare.com/post/Our-Social-Profiles.aspx#comment</comments>
      <guid>http://blog.unosquare.com/post.aspx?id=a21eb2c1-c21b-4783-b6cf-291d3945164d</guid>
      <pubDate>Mon, 25 May 2009 10:50:00 +0400</pubDate>
      <category>Company</category>
      <dc:publisher>juanroman</dc:publisher>
      <pingback:server>http://blog.unosquare.com/pingback.axd</pingback:server>
      <pingback:target>http://blog.unosquare.com/post.aspx?id=a21eb2c1-c21b-4783-b6cf-291d3945164d</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://blog.unosquare.com/trackback.axd?id=a21eb2c1-c21b-4783-b6cf-291d3945164d</trackback:ping>
      <wfw:comment>http://blog.unosquare.com/post/Our-Social-Profiles.aspx#comment</wfw:comment>
      <wfw:commentRss>http://blog.unosquare.com/syndication.axd?post=a21eb2c1-c21b-4783-b6cf-291d3945164d</wfw:commentRss>
    </item>
  </channel>
</rss>