<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" 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:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
    <channel>
        <title>CodeClimber</title>
        <link>http://codeclimber.net.nz/Default.aspx</link>
        <description>Climbing the Cliffs of C#</description>
        <language>en-NZ</language>
        <copyright>Simone Chiaretta</copyright>
        <generator>Subtext Version 2.5.1.0</generator>
        <image><link>http://www.codeclimber.net.nz/</link><url>http://www.codeclimber.net.nz/Skins/CodeClimber/Images/codeclimber_50.gif</url><title>CodeClimber</title></image>
        <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Codeclimber" /><feedburner:info uri="codeclimber" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>45.49481143093878</geo:lat><geo:long>9.219868183135986</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><item>
            <title>Entity Framework 4.3.1 Migrations and non English locale</title>
            <category>Software Development</category>
            <category>Community Life</category>
            <link>http://feedproxy.google.com/~r/Codeclimber/~3/10fuETRKJNg/Entity-Framework-4-3-1-Migrations-and-non-English-locale.aspx</link>
            <description>&lt;p&gt;A few days ago I started migrating a web app I was working on from ASP.NET MVC 3 and EF4 to ASP.NET MVC 4 and EF 4.3.1. All went well, except for some problems with the automatic generation of the DB scheme using EF Code First: it was creating the database, but no tables and not even the &lt;font face="Courier New"&gt;__MigrationHistory&lt;/font&gt; table added in 4.3; and during the execution of the schema generation an error was raised with a weird datetime conversion error. I tried this both on SQL Express 2005 and SQL Compact and I got the same outcome, just different errors.&lt;/p&gt;  &lt;p&gt;In SQL Express 2005 I got:&lt;/p&gt;  &lt;div class="dropshadow code"&gt;   &lt;div class="innerbox"&gt;     &lt;pre class="csharpcode"&gt;Conversion failed when converting datetime from character string.&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;In SQL Compact I got slightly more helpful error message:&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;The format of the specified date or time datepart is not valid.
[ String = 2012-04-19T13.21.04.364 ]&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;h3&gt;The cause of the problem&lt;/h3&gt;

&lt;p&gt;A bit of Googling, and I &lt;a href="http://thedatafarm.com/blog/data-access/using-ef-migrations-with-an-existing-database/"&gt;found out&lt;/a&gt; that this problem is related to how the &lt;font face="Courier New"&gt;__MigrationHistory&lt;/font&gt; is created and filled in with rows: for every “migration” a new row with, among other info, the timestamp of the migration is added.&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;INSERT &lt;span class="kwrd"&gt;INTO&lt;/span&gt; [__MigrationHistory] ([MigrationId], [CreatedOn], [Model], [ProductVersion])
&lt;span class="kwrd"&gt;VALUES&lt;/span&gt; (&lt;span class="str"&gt;'201204231416585_InitialCreate'&lt;/span&gt;, &lt;span class="str"&gt;'2012-04-23T14.16.59.038Z'&lt;/span&gt;, ...., &lt;span class="str"&gt;'4.3.1'&lt;/span&gt;)&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;The problem is that, probably due to the local of my local machine (Italian) and of my test database (French), the format in which the datatime value has been serialized was wrong: instead of &lt;strong&gt;2012-04-23T14.16.59.038Z&lt;/strong&gt; it should have been &lt;strong&gt;2012-04-23T14:16:59.038Z&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://stackoverflow.com/questions/10229190/entity-framework-4-3-1-code-first-database-created-but-tables-are-not"&gt;I asked the question on StackOverflow&lt;/a&gt; but even there nobody was able to find a solution for the problem, but at least a guy from the ADO.NET Team looked into it and, a few days later, came out with a solution.&lt;/p&gt;

&lt;h3&gt;It’s a bug in EF&lt;/h3&gt;

&lt;p&gt;The answer is that it is a bug, as they didn’t specify InvariantCulture when they do the ToString of the data to generated the SQL script. And it will be fixed in the next version of Entity Framework. But until it comes out, and you encounter the same bug, here is how to fix it.&lt;/p&gt;

&lt;h3&gt;The workaround&lt;/h3&gt;

&lt;p&gt;First thing you have to do is specify a custom &lt;a href="http://msdn.microsoft.com/en-us/library/system.data.entity.migrations.sql.sqlservermigrationsqlgenerator(v=vs.103).aspx"&gt;&lt;font face="Courier New"&gt;&lt;strong&gt;SqlServerMigrationSqlGenerator&lt;/strong&gt;&lt;/font&gt;&lt;/a&gt;, override the &lt;a href="http://msdn.microsoft.com/en-us/library/hh829219(v=vs.103).aspx"&gt;&lt;font face="Courier New"&gt;Generate(DateTime)&lt;/font&gt;&lt;/a&gt; method which the one responsible for generating the value of datetime objects, and specify the InvariantCulture option and the correct colon based format.&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;class&lt;/span&gt; FixedSqlGenerator : SqlServerMigrationSqlGenerator
{
    &lt;span class="kwrd"&gt;protected&lt;/span&gt; &lt;span class="kwrd"&gt;override&lt;/span&gt; &lt;span class="kwrd"&gt;string&lt;/span&gt; Generate(DateTime defaultValue)
    {
        &lt;span class="kwrd"&gt;return&lt;/span&gt; &lt;span class="str"&gt;"'"&lt;/span&gt; + defaultValue.ToString(&lt;span class="str"&gt;"yyyy-MM-ddTHH:mm:ss.fffK"&lt;/span&gt;
                      , CultureInfo.InvariantCulture) + &lt;span class="str"&gt;"'"&lt;/span&gt;;
    }
}&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;h3&gt;How to inject the workaround&lt;/h3&gt;

&lt;p&gt;Then you have to configure EF to use your new migration generator instead of the default one. Where to put this configuration depends on what you are using.&lt;/p&gt;

&lt;h4&gt;Using Migrations&lt;/h4&gt;

&lt;p&gt;If you are using the Migrations it’s pretty easy: just call the &lt;a href="http://msdn.microsoft.com/en-us/library/system.data.entity.migrations.dbmigrationsconfiguration.setsqlgenerator(v=vs.103).aspx"&gt;&lt;font face="Courier New"&gt;SetSqlGenerator&lt;/font&gt;&lt;/a&gt; method in the Configuration class for the migration.&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;class&lt;/span&gt; Configuration : DbMigrationsConfiguration&amp;lt;ConsoleApplication3.BlogContext&amp;gt;
    {
        &lt;span class="kwrd"&gt;public&lt;/span&gt; Configuration()
        {
            AutomaticMigrationsEnabled = &lt;span class="kwrd"&gt;false&lt;/span&gt;;
            SetSqlGenerator(&lt;span class="str"&gt;"System.Data.SqlClient"&lt;/span&gt;, &lt;span class="kwrd"&gt;new&lt;/span&gt; FixedSqlGenerator());
        }
    }&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;But bear in mind that this works only if you enabled migrations.&lt;/p&gt;

&lt;h4&gt;Using Code First&lt;/h4&gt;

&lt;p&gt;If instead, like me, your are just using Code First, and just want your DB automatically created (and then updated) you’ll never go via that configuration step, so the first automatic migration will not use your new Sql generator. Another small step is needed: you have to tell EF where the Configuration is:&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;Database.SetInitializer(
   &lt;span class="kwrd"&gt;new&lt;/span&gt; MigrateDatabaseToLatestVersion&amp;lt;BlogContext, Migrations.Configuration&amp;gt;());&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;Where to put this line really depends on the hosting application: you can put it in the Context class, at the beginning of your console application, or in the Global.asax.cs file in a ASP.NET MVC application.&lt;/p&gt;

&lt;h3&gt;More info&lt;/h3&gt;

&lt;p&gt;If you never used EF migrations I really recommend you play around with them: it’s a really neat way to keep track of your database, even if you are not using EF as your ORM. Here are two very nice blog posts from the ADO.NET EF team that show how migrations work, but in automatic and manual manner.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href="http://blogs.msdn.com/b/adonet/archive/2012/02/09/ef-4-3-code-based-migrations-walkthrough.aspx"&gt;EF 4.3 Code-Based Migrations Walkthrough&lt;/a&gt;&lt;/li&gt;

  &lt;li&gt;&lt;a href="http://blogs.msdn.com/b/adonet/archive/2012/02/09/ef-4-3-automatic-migrations-walkthrough.aspx"&gt;EF 4.3 Automatic Migrations Walkthrough&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And finally I’d like to thank &lt;a href="http://stackoverflow.com/users/475031/brice"&gt;Brice&lt;/a&gt; from the ADO.NET EF for quickly responding to the issue and sending me the workaround.&lt;/p&gt;

&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:be04bfe7-047d-4009-83ed-7dca8053949e" class="wlWriterEditableSmartContent"&gt;Tags: &lt;a href="http://codeclimber.net.nz/tags/Migrations/default.aspx" rel="tag"&gt;Migrations&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/Entity+Framework/default.aspx" rel="tag"&gt;Entity Framework&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/CodeFirst/default.aspx" rel="tag"&gt;CodeFirst&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/bug/default.aspx" rel="tag"&gt;bug&lt;/a&gt;&lt;/div&gt;&lt;img src="http://codeclimber.net.nz/aggbug/983.aspx" width="1" height="1" /&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=10fuETRKJNg:1Vec1nrm4vA:D7DqB2pKExk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=10fuETRKJNg:1Vec1nrm4vA:D7DqB2pKExk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=10fuETRKJNg:1Vec1nrm4vA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=10fuETRKJNg:1Vec1nrm4vA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=10fuETRKJNg:1Vec1nrm4vA:G79ilh31hkQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=G79ilh31hkQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=10fuETRKJNg:1Vec1nrm4vA:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=10fuETRKJNg:1Vec1nrm4vA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=10fuETRKJNg:1Vec1nrm4vA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Codeclimber/~4/10fuETRKJNg" height="1" width="1"/&gt;</description>
            <dc:creator>Simone Chiaretta</dc:creator>
            <guid isPermaLink="false">http://codeclimber.net.nz/archive/2012/04/30/Entity-Framework-4-3-1-Migrations-and-non-English-locale.aspx</guid>
            <pubDate>Mon, 30 Apr 2012 16:26:41 GMT</pubDate>
            <comments>http://codeclimber.net.nz/archive/2012/04/30/Entity-Framework-4-3-1-Migrations-and-non-English-locale.aspx#feedback</comments>
            <slash:comments>3</slash:comments>
            <wfw:commentRss>http://codeclimber.net.nz/comments/commentRss/983.aspx</wfw:commentRss>
        <feedburner:origLink>http://codeclimber.net.nz/archive/2012/04/30/Entity-Framework-4-3-1-Migrations-and-non-English-locale.aspx</feedburner:origLink></item>
        <item>
            <title>Announcing the Web.NET Conference Europe, this fall in Italy</title>
            <category>Community Life</category>
            <category>Web 2.0</category>
            <link>http://feedproxy.google.com/~r/Codeclimber/~3/w5CpVXwLcK4/Announcing-the-Web-NET-Conference-Europe-this-fall-in-Italy.aspx</link>
            <description>&lt;p /&gt;  &lt;p align="center"&gt;&lt;a href="http://webnetconf.eu"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="webnetconftitle" border="0" alt="webnetconftitle" src="http://codeclimber.net.nz/images/codeclimber_net_nz/WindowsLiveWriter/942afe521495_98B3/webnetconftitle_3.jpg" width="434" height="99" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;The web is evolving, and so are the techniques, technologies and frameworks used in web development. Together with &lt;a href="http://tostring.it/"&gt;Ugo Lattanzi&lt;/a&gt; we are organizing the &lt;a href="http://webnetconf.eu/"&gt;Web.NET Conference Europe&lt;/a&gt;, this fall, in North Italy.&lt;/p&gt;  &lt;p&gt;Logistics is not 100% certain yet: it will be in North Italy, probably in Milano, and will be this fall, probably toward the mid/end of October.&lt;/p&gt;  &lt;p&gt;What is sure, instead, are the topics: Advanced JavaScript frameworks, REST frameworks, Cloud, lightweight http servers, real-time web, low-ceremony web frameworks, both in .NET and in other technologies.&lt;/p&gt;  &lt;p&gt;We’ll probably launch a call for speakers around of May/beginning of June, but if you already have a idea, start thinking about. We are expecting a European audience, so all talks should be in English.&lt;/p&gt;  &lt;p&gt;To get an email when things becomes more defined you can register on the launch page of the conference, &lt;a href="http://webnetconf.eu"&gt;http://webnetconf.eu&lt;/a&gt;. You’ll get a personal sharing URL with which you can help us share the good news, and get in return pre-emption right on the seats available, and might even win a free event t-shirt.&lt;/p&gt;  &lt;p&gt;We also have a twitter account, &lt;a href="https://twitter.com/#!/webnetconf"&gt;@webnetconf&lt;/a&gt;, and a &lt;a href="https://www.facebook.com/WebnetConf"&gt;facebook page&lt;/a&gt;, and the hashtag for the conference is &lt;a href="https://twitter.com/#!/search/%23webnet12"&gt;#webnet12&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Now some background on how this conference came to existence: organizing conferences takes a lot of effort, especially if done with little help, and the organization of that last conference left me without strength. That’s also one of the reasons why &lt;a href="http://codeclimber.net.nz/archive/2012/01/27/The-last-UGIALT-net-Conference.aspx"&gt;UGIALT.net had its last conference this January&lt;/a&gt;. But during and after that day I had many people asking me why we quit, that the conference was the best conference they’ve been ever, and that the community still needed a objective view on the .NET development. I was a bit reluctant at first, but all that messages, and the active push of &lt;a href="http://tostring.it/"&gt;Ugo Lattanzi&lt;/a&gt; made me change my mind. And so here I am again, organizing another conference.&lt;/p&gt;  &lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:85367517-d9f5-4453-983d-29c785e0aa00" class="wlWriterEditableSmartContent"&gt;Tags: &lt;a href="http://codeclimber.net.nz/tags/webnet12/default.aspx" rel="tag"&gt;webnet12&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/web.net/default.aspx" rel="tag"&gt;web.net&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/conference/default.aspx" rel="tag"&gt;conference&lt;/a&gt;&lt;/div&gt;&lt;img src="http://codeclimber.net.nz/aggbug/982.aspx" width="1" height="1" /&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=w5CpVXwLcK4:Q42zm8Wvlws:D7DqB2pKExk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=w5CpVXwLcK4:Q42zm8Wvlws:D7DqB2pKExk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=w5CpVXwLcK4:Q42zm8Wvlws:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=w5CpVXwLcK4:Q42zm8Wvlws:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=w5CpVXwLcK4:Q42zm8Wvlws:G79ilh31hkQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=G79ilh31hkQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=w5CpVXwLcK4:Q42zm8Wvlws:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=w5CpVXwLcK4:Q42zm8Wvlws:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=w5CpVXwLcK4:Q42zm8Wvlws:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Codeclimber/~4/w5CpVXwLcK4" height="1" width="1"/&gt;</description>
            <dc:creator>Simone Chiaretta</dc:creator>
            <guid isPermaLink="false">http://codeclimber.net.nz/archive/2012/04/17/Announcing-the-Web-NET-Conference-Europe-this-fall-in-Italy.aspx</guid>
            <pubDate>Tue, 17 Apr 2012 11:51:31 GMT</pubDate>
            <comments>http://codeclimber.net.nz/archive/2012/04/17/Announcing-the-Web-NET-Conference-Europe-this-fall-in-Italy.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://codeclimber.net.nz/comments/commentRss/982.aspx</wfw:commentRss>
        <feedburner:origLink>http://codeclimber.net.nz/archive/2012/04/17/Announcing-the-Web-NET-Conference-Europe-this-fall-in-Italy.aspx</feedburner:origLink></item>
        <item>
            <title>Using github behind a firewall</title>
            <category>Source Control, CI</category>
            <link>http://feedproxy.google.com/~r/Codeclimber/~3/OozBWOmJM_E/Using-github-behind-a-firewall.aspx</link>
            <description>&lt;!--{EAV:f7f7de9ebf892fc0}--&gt;&lt;p&gt;If you are behind a firewall that blocks port 22 you’ll not be able to access &lt;a href="http://github.com/"&gt;github&lt;/a&gt; using the standard procedure described in the &lt;a href="http://help.github.com/win-set-up-git/"&gt;Set Up Git&lt;/a&gt; &lt;a href="http://help.github.com/"&gt;help&lt;/a&gt; page.&lt;/p&gt;  &lt;p&gt;If you are looking for more introductory information on using github and git I recommend you read my other post on &lt;a href="http://codeclimber.net.nz/archive/2012/01/11/Getting-stated-with-Git-and-GitHub.aspx"&gt;Getting started with Git and GitHub&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;When trying to login to github over ssh you get this error if you are behind a firewall that block port 22.&lt;/p&gt;  &lt;div class="dropshadow code"&gt;   &lt;div class="innerbox"&gt;     &lt;pre class="csharpcode"&gt;$ ssh -vT git@github.com
OpenSSH_4.6p1, OpenSSL 0.9.8e 23 Feb 2007
debug1: Connecting to github.com [207.97.227.239] port 22.
debug1: connect to address 207.97.227.239 port 22: Attempt to connect timed &lt;span class="kwrd"&gt;out&lt;/span&gt;
without establishing a connection
ssh: connect to host github.com port 22: Bad file number&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;Luckily there is a solution for that: &lt;a href="https://github.com/blog/642-smart-http-support"&gt;Smart HTTP&lt;/a&gt;. Basically it will use HTTP to pull and push updates to github, thus using the standard SSL (443) port instead of using the blocked SSH port (22).&lt;/p&gt;

&lt;p&gt;Opting in is pretty easy: when cloning a repo just use the https url instead of the git url, for example:&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;$ git clone https://username@github.com/Haacked/Subtext.git&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;If instead of cloning a repository you are creating a new one you have to specify the https &lt;a href="http://help.github.com/create-a-repo/"&gt;instead of the standard git one&lt;/a&gt;:&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;$ git remote add origin https://username@github.com/username/project.git&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;But it’s not done yet: using SSH the first time you connect to github you get a message asking you to validate the SSH certificate of github. Unfortunately this does not happen when using SSL. The only thing you get is this error message:&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;$ git push -u origin master
error: SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate
verify failed while accessing https://username@github.com/username/project.git/info/refs
fatal: HTTP request failed&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;This means that the SSL certificate is not trusted. You could either manually install the certificate or simpler just tell him not to verify the HTTPS certification:&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;git config --global http.sslVerify false&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;HTH&lt;/p&gt;

&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c465d8f6-c301-4ddf-a4d1-28422fc65d1f" class="wlWriterEditableSmartContent"&gt;Tags: &lt;a href="http://codeclimber.net.nz/tags/ssh/default.aspx" rel="tag"&gt;ssh&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/github/default.aspx" rel="tag"&gt;github&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/git/default.aspx" rel="tag"&gt;git&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/SSL/default.aspx" rel="tag"&gt;SSL&lt;/a&gt;&lt;/div&gt;&lt;img src="http://codeclimber.net.nz/aggbug/981.aspx" width="1" height="1" /&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=OozBWOmJM_E:328TSUZHBVY:D7DqB2pKExk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=OozBWOmJM_E:328TSUZHBVY:D7DqB2pKExk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=OozBWOmJM_E:328TSUZHBVY:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=OozBWOmJM_E:328TSUZHBVY:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=OozBWOmJM_E:328TSUZHBVY:G79ilh31hkQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=G79ilh31hkQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=OozBWOmJM_E:328TSUZHBVY:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=OozBWOmJM_E:328TSUZHBVY:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=OozBWOmJM_E:328TSUZHBVY:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Codeclimber/~4/OozBWOmJM_E" height="1" width="1"/&gt;</description>
            <dc:creator>Simone Chiaretta</dc:creator>
            <guid isPermaLink="false">http://codeclimber.net.nz/archive/2012/04/04/Using-github-behind-a-firewall.aspx</guid>
            <pubDate>Wed, 04 Apr 2012 09:52:58 GMT</pubDate>
            <comments>http://codeclimber.net.nz/archive/2012/04/04/Using-github-behind-a-firewall.aspx#feedback</comments>
            <wfw:commentRss>http://codeclimber.net.nz/comments/commentRss/981.aspx</wfw:commentRss>
        <feedburner:origLink>http://codeclimber.net.nz/archive/2012/04/04/Using-github-behind-a-firewall.aspx</feedburner:origLink></item>
        <item>
            <title>The &amp;ldquo;modern&amp;rdquo; ASP.NET web stack is fully opensource: ASP.NET MVC, Web API, ASP.NET WebPage and Razor</title>
            <category>ASP.NET</category>
            <category>ASP.NET MVC</category>
            <category>Source Control, CI</category>
            <link>http://feedproxy.google.com/~r/Codeclimber/~3/IICbLPnNIJo/The-ldquomodernrdquo-ASP-NET-web-stack-is-fully-opensource-ASP.aspx</link>
            <description>&lt;p&gt;Still getting my head around this early morning (in Europe timezone) announcement on &lt;a href="http://weblogs.asp.net/scottgu"&gt;ScottGu’s blog&lt;/a&gt;: &lt;a href="http://weblogs.asp.net/scottgu/archive/2012/03/27/asp-net-mvc-web-api-razor-and-open-source.aspx"&gt;ASP.NET MVC, Web API, Razor and Open Source&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;Some of you might remember that almost 3 years ago the announced that &lt;a href="http://codeclimber.net.nz/archive/2009/04/02/aprilrsquos-fool-or-not-asp.net-mvc-source-released-under-ms-pl.aspx"&gt;ASP.NET MVC v1 was being released under the MS-PL license&lt;/a&gt;, thus making it opensource. That turned out to be just a source snapshot of each public release, and were not accepting contributions, so, a &lt;a href="http://haacked.com/archive/2012/02/16/open-source-and-open-source-software-are-not-the-same.aspx"&gt;“partial” commitment to open source&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;This time is different: the source code is available from the “live” repository the ASP.NET team is working on, and they are going to accept pull requests (if of course the quality of the submission is good and it adheres to the &lt;a href="http://aspnetwebstack.codeplex.com/wikipage?title=Roadmap"&gt;roadmap for the release&lt;/a&gt;). And it’s not just ASP.NET MVC, but also the WebAPI, the Razor view engine, and ASP.NET Web Pages.&lt;/p&gt;  &lt;p&gt;This means that one can build the frontend part of a web site/web application with Open Source libraries from Microsoft or officially supported by Microsoft (like jQuery, jQuery UI, Knockout.js, JSON.net, upshot). To make it complete the system.web dll would have to be opensourced as well, but that would mean the whole .NET framework should be opensourced.&lt;/p&gt;  &lt;p&gt;Now some links:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;The CodePlex project that hosts the webstack (on a git repository thanks to the &lt;a href="http://blogs.msdn.com/b/codeplex/archive/2012/03/21/git-commit-m-codeplex-now-supports-git.aspx"&gt;newly released git support&lt;/a&gt;): &lt;a href="http://aspnetwebstack.codeplex.com/"&gt;http://aspnetwebstack.codeplex.com/&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;Official ScottGu announcement: &lt;a href="http://weblogs.asp.net/scottgu/archive/2012/03/27/asp-net-mvc-web-api-razor-and-open-source.aspx"&gt;ASP.NET MVC, Web API, Razor and Open Source&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;Scott Hanselman’s post: &lt;a href="http://www.hanselman.com/blog/ASPNETMVC4ASPNETWebAPIAndASPNETWebPagesV2RazorNowAllOpenSourceWithContributions.aspx"&gt;ASP.NET MVC 4, ASP.NET Web API and ASP.NET Web Pages v2 (Razor) now all open source with contributions&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;The official statement on the ASP.NET web site: &lt;a href="http://www.asp.net/open-source"&gt;http://www.asp.net/open-source&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Now go take your git client, join the 29 people that already &lt;a href="http://aspnetwebstack.codeplex.com/SourceControl/network"&gt;forked&lt;/a&gt; the asp.net web stack, and &lt;a href="http://aspnetwebstack.codeplex.com/sourcecontrol/list/contributions"&gt;submit your first pull request&lt;/a&gt;.&lt;/p&gt;  &lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:766a4a3b-f0eb-4a18-a999-ae3e9a82044e" class="wlWriterEditableSmartContent"&gt;Tags: &lt;a href="http://codeclimber.net.nz/tags/aspnetmvc/default.aspx" rel="tag"&gt;aspnetmvc&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/opensource/default.aspx" rel="tag"&gt;opensource&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/webapi/default.aspx" rel="tag"&gt;webapi&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/razor/default.aspx" rel="tag"&gt;razor&lt;/a&gt;&lt;/div&gt;&lt;img src="http://codeclimber.net.nz/aggbug/980.aspx" width="1" height="1" /&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=IICbLPnNIJo:YZG99GAr7Oc:D7DqB2pKExk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=IICbLPnNIJo:YZG99GAr7Oc:D7DqB2pKExk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=IICbLPnNIJo:YZG99GAr7Oc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=IICbLPnNIJo:YZG99GAr7Oc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=IICbLPnNIJo:YZG99GAr7Oc:G79ilh31hkQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=G79ilh31hkQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=IICbLPnNIJo:YZG99GAr7Oc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=IICbLPnNIJo:YZG99GAr7Oc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=IICbLPnNIJo:YZG99GAr7Oc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Codeclimber/~4/IICbLPnNIJo" height="1" width="1"/&gt;</description>
            <dc:creator>Simone Chiaretta</dc:creator>
            <guid isPermaLink="false">http://codeclimber.net.nz/archive/2012/03/28/The-ldquomodernrdquo-ASP-NET-web-stack-is-fully-opensource-ASP.aspx</guid>
            <pubDate>Wed, 28 Mar 2012 09:30:28 GMT</pubDate>
            <comments>http://codeclimber.net.nz/archive/2012/03/28/The-ldquomodernrdquo-ASP-NET-web-stack-is-fully-opensource-ASP.aspx#feedback</comments>
            <slash:comments>3</slash:comments>
            <wfw:commentRss>http://codeclimber.net.nz/comments/commentRss/980.aspx</wfw:commentRss>
        <feedburner:origLink>http://codeclimber.net.nz/archive/2012/03/28/The-ldquomodernrdquo-ASP-NET-web-stack-is-fully-opensource-ASP.aspx</feedburner:origLink></item>
        <item>
            <title>Lumia800 bundle unboxing</title>
            <category>Windows Phone 7</category>
            <link>http://feedproxy.google.com/~r/Codeclimber/~3/_8UwncK8LcU/Lumia800-bundle-unboxing.aspx</link>
            <description>&lt;p&gt;I wanted to buy a Nokia Lumia 800 for a while now, but since I wanted to buy it for &lt;a href="http://www.tsoda.eu/" rel="spouse"&gt;Daniela&lt;/a&gt; I wanted to buy the &lt;strike&gt;pink&lt;/strike&gt; magenta version, and I couldn’t find it neither in Italy nor in Belgium. Since I’m now in Bellevue for the MVP Summit, I decided to take advantage of a promotion done by Microsoft Store and buy the Lumia 800 bundle, which includes the Lumia 800, the Purity Monster headphones, the Play 360 speaker and the Luna Bluetooth headset, all for 899USD + taxes (984USD in WA) which is 730€. If you consider the cost of the single pieces, it’s almost 200€ less that what it would cost to buy it in Europe.&lt;/p&gt;  &lt;p align="center"&gt;&lt;a href="http://codeclimber.net.nz/images/codeclimber_net_nz/Windows-Live-Writer/Lumia800-bundle-unboxing_1088D/6790787724_1e51c9c421_2.jpg" rel="lightbox"&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="6790787724_1e51c9c421" border="0" alt="6790787724_1e51c9c421" src="http://codeclimber.net.nz/images/codeclimber_net_nz/Windows-Live-Writer/Lumia800-bundle-unboxing_1088D/6790787724_1e51c9c421_thumb.jpg" width="504" height="286" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Since I’m flying back to Belgium I had to get rid of the big packaging. I’ve to say that I’m really impressed by the quality of the package, same quality, if not better quality than Apple packaging: pull loops, magnetic covers and similar goodies.&lt;/p&gt;  &lt;h3&gt;The Unboxing&lt;/h3&gt;  &lt;p&gt;As I did last year &lt;a href="http://codeclimber.net.nz/archive/2010/12/19/Unboxing-Samsung-Omnia-7.aspx"&gt;when I bought the Samsung Omnia 7&lt;/a&gt;, here are the unboxing pictures. Hope you’ll enjoy watching the unboxing as much as I enjoyed doing it.&lt;/p&gt;  &lt;p align="center"&gt;&lt;object width="550" height="400"&gt;&lt;param name="flashvars" value="offsite=true〈=en-us&amp;amp;page_show_url=%2Fphotos%2Fpiyo%2Fsets%2F72157629471080647%2Fshow%2F&amp;amp;page_show_back_url=%2Fphotos%2Fpiyo%2Fsets%2F72157629471080647%2F&amp;amp;set_id=72157629471080647&amp;amp;jump_to=" /&gt; &lt;param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=109615" /&gt; &lt;param name="allowFullScreen" value="true" /&gt;&lt;embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=109615" allowfullscreen="true" flashvars="offsite=true〈en-us&amp;amp;page_show_url=%2Fphotos%2Fpiyo%2Fsets%2F72157629471080647%2Fshow%2F&amp;amp;page_show_back_url=%2Fphotos%2Fpiyo%2Fsets%2F72157629471080647%2F&amp;amp;set_id=72157629471080647&amp;amp;jump_to=" width="550" height="400" /&gt;&lt;/object&gt;&lt;/p&gt;  &lt;h3&gt;First impressions&lt;/h3&gt;  &lt;p&gt;I haven’t started using it yet, but I just made sure everything was working properly before flying back to Belgium.&lt;/p&gt;  &lt;h4&gt;Lumia 800&lt;/h4&gt;  &lt;p&gt;I expected it to be a bit bigger, while it’s smaller than the Samsung and similar in size to the iPhone 4. But there is less “chrome” around, so at the end probably the viewable area is the same. I didn’t activate it, but I played a bit with Nokia Drive and even downloaded the map for British Columbia as next week I’m spending some days driving around the area.&lt;/p&gt;  &lt;h4&gt;Luna headset&lt;/h4&gt;  &lt;p&gt;Bluetooth headset, of course pink as the phone: haven’t tried, but the concept looks nice. You go around with that kind of ball in your pocket, and when the phone rings you just pop the headset out of the cradle. Looks like a good compromise between battery life and size. The pairing process was pretty unique too: I popped the headset out and it started to talk, giving instructions on how to pair it. And I paired it with my iPhone, and it worked fine even with that.&lt;/p&gt;  &lt;h4&gt;Purity Monster HD headphones&lt;/h4&gt;  &lt;p&gt;Still pink, they come with a carrying case and two cables: one that is specific to older nokia phones, and one that is called ControlTalk Universal, that allows you to pickup, hang up, play, pause and volume. And works also with the iPhone.&lt;/p&gt;  &lt;h4&gt;Play 360 speaker&lt;/h4&gt;  &lt;p&gt;Also this one works with the iPhone  and any other Bluetooth audio player. The pairing process was pretty simple too, and would have been even simpler with a NFC device: touch to pair. The speaker is wireless (battery should last 20hr of music) and comes with nice neoprene carrying case.&lt;/p&gt;  &lt;h4&gt;Chargers and cables&lt;/h4&gt;  &lt;p&gt;Finally everything is recharged via mini USB, so even if each product has its own cable and power adapter, you need to bring just one around. &lt;/p&gt;  &lt;h3&gt;Future impressions&lt;/h3&gt;  &lt;p&gt;When I get back home and get a micro-SIM card I’ll see how the phone works. There should not be US specific version of the Lumia800, so hopefully it will get a good 3G+ signal in Europe. And will post more impressions when I come back.&lt;/p&gt;  &lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:5a4d7302-6cb7-4a82-9350-c54933555f21" class="wlWriterEditableSmartContent"&gt;Tags: &lt;a href="http://codeclimber.net.nz/tags/wp7/default.aspx" rel="tag"&gt;wp7&lt;/a&gt;  , &lt;a href="http://codeclimber.net.nz/tags/lumia800/default.aspx" rel="tag"&gt;lumia800&lt;/a&gt;  &lt;/div&gt;&lt;img src="http://codeclimber.net.nz/aggbug/979.aspx" width="1" height="1" /&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=_8UwncK8LcU:b_HYMmAm7nA:D7DqB2pKExk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=_8UwncK8LcU:b_HYMmAm7nA:D7DqB2pKExk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=_8UwncK8LcU:b_HYMmAm7nA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=_8UwncK8LcU:b_HYMmAm7nA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=_8UwncK8LcU:b_HYMmAm7nA:G79ilh31hkQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=G79ilh31hkQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=_8UwncK8LcU:b_HYMmAm7nA:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=_8UwncK8LcU:b_HYMmAm7nA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=_8UwncK8LcU:b_HYMmAm7nA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Codeclimber/~4/_8UwncK8LcU" height="1" width="1"/&gt;</description>
            <dc:creator>Simone Chiaretta</dc:creator>
            <guid isPermaLink="false">http://codeclimber.net.nz/archive/2012/03/01/Lumia800-bundle-unboxing.aspx</guid>
            <pubDate>Thu, 01 Mar 2012 12:25:00 GMT</pubDate>
            <comments>http://codeclimber.net.nz/archive/2012/03/01/Lumia800-bundle-unboxing.aspx#feedback</comments>
            <slash:comments>3</slash:comments>
            <wfw:commentRss>http://codeclimber.net.nz/comments/commentRss/979.aspx</wfw:commentRss>
        <feedburner:origLink>http://codeclimber.net.nz/archive/2012/03/01/Lumia800-bundle-unboxing.aspx</feedburner:origLink></item>
        <item>
            <title>Introducing Wijmo, a feature-packed jQueryUI based widget library</title>
            <category>User Experience</category>
            <category>Javascript</category>
            <link>http://feedproxy.google.com/~r/Codeclimber/~3/Vd4YnOCM6zw/Introducing-Wijmo-a-feature-packed-jQueryUI-based-widget-library.aspx</link>
            <description>&lt;p&gt;Lately I have been evaluating a few JavaScript based UI libraries for both my projects at work and to use for a new version of the bike climbs site called &lt;a href="http://39x27.com/"&gt;39x27.com&lt;/a&gt;:  it was quite nice to see that almost all component vendors are now embracing, some more than others, JavaScript together with the more traditional Web Controls for ASP.NET Web Forms.&lt;/p&gt;  &lt;p align="left"&gt;In this post I’m going to briefly cover the reasons why I ended up choosing &lt;a href="http://wijmo.com/"&gt;Wijmo&lt;/a&gt;, and then I’m giving a quick introduction on the set of widgets available.&lt;/p&gt;  &lt;p align="center"&gt;&lt;a href="http://codeclimber.net.nz/images/codeclimber_net_nz/Windows-Live-Writer/c0f257b74646_D41C/wijmo-horiz_400x125_2.png" rel="lightbox"&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="wijmo-horiz_400x125" border="0" alt="wijmo-horiz_400x125" src="http://codeclimber.net.nz/images/codeclimber_net_nz/Windows-Live-Writer/c0f257b74646_D41C/wijmo-horiz_400x125_thumb.png" width="400" height="125" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;h3&gt;Why Wijmo?&lt;/h3&gt;  &lt;p&gt;My first, and only strict requirement was that it had to be based on &lt;a href="http://jquery.com/"&gt;jQuery&lt;/a&gt;: everybody in my team knows it, it is the more used JavaScript library, so new developers and contractors coming are likely to know it, and ASP.NET MVC and the &lt;a href="http://www.asp.net/single-page-application/an-introduction-to-spa/overview/landingpage"&gt;ASP.NET Single Page Application depends on it&lt;/a&gt; (see, ASP.NET MVC validation, &lt;a href="http://knockoutjs.com/"&gt;Knockout.js&lt;/a&gt;, &lt;a href="http://nuget.org/packages/Upshot"&gt;upshot.js&lt;/a&gt;). That excluded libraries like &lt;a href="http://www.sencha.com/products/extjs/"&gt;ExtJS&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;All the buzz lately is about &lt;a href="http://www.kendoui.com/"&gt;KendoUI&lt;/a&gt;, a jQuery-based UI widget library developed by &lt;a href="http://www.telerik.com/"&gt;Telerik&lt;/a&gt;, so it was the first library I looked at: it’s based on jQuery, and is available also with a OSS license (GPLv3). It has lots of widgets, both for &lt;a href="http://www.kendoui.com/web.aspx"&gt;web UI element&lt;/a&gt; and for &lt;a href="http://www.kendoui.com/dataviz.aspx"&gt;drawing charts&lt;/a&gt; and they are developing also some &lt;a href="http://www.kendoui.com/mobile.aspx"&gt;mobile UI controls&lt;/a&gt;. And it’s use feels natural, &lt;em&gt;looks like&lt;/em&gt; jQueryUI: you create a HTML element, you select it via jQuery and then enhance it via a KendoUI specific JavaScript  function.&lt;/p&gt;  &lt;p&gt;What I didn’t like is that they reinvented the wheel: one line above I wrote “&lt;em&gt;looks like jQueryUI&lt;/em&gt;” because it is not built on jQueryUI; Telerik wrote its own widget core library. This might be ok for people that are using other Telerik controls or are ok with vendor lock-in, but I didn’t like this approach that much: what if I need a widget that is not available? Either I write mine from scratch using the KendoUI core library, or I look on the internet, and include also jQueryUI in the mix, since most likely the OSS widget I find is built on it.&lt;/p&gt;  &lt;p&gt;I looked for something else, and my second option was &lt;a href="http://www.infragistics.com/dotnet/netadvantage/jquery-controls.aspx#Overview"&gt;Infragistics jQuery controls&lt;/a&gt;: apart from having less controls, costing more money and not having the double commercial/OSS license, it is also built on top of their own core widgeting framework. So, another no-go.&lt;/p&gt;  &lt;p&gt;Finally, while discussing my findings on &lt;a href="https://twitter.com/simonech"&gt;twitter&lt;/a&gt;, I received a message from &lt;a href="https://twitter.com/#!/rj_dudley"&gt;Richard Dudley&lt;/a&gt;, a developer evangelist from &lt;a href="http://www.componentone.com/"&gt;ComponentOne&lt;/a&gt;, which suggested I take a look at their jQuery widget library, named &lt;a href="http://wijmo.com/"&gt;Wijmo&lt;/a&gt;. After a quick look at the site I realized this was exactly what I was looking for: a JS control library built on top of jQueryUI. Not only that, but also it has a lot of &lt;a href="http://wijmo.com/widgets/"&gt;widgets&lt;/a&gt;, including the &lt;a href="http://wijmo.com/widgets/wijmo-complete/grid/"&gt;editable grid&lt;/a&gt;, a &lt;a href="http://wijmo.com/widgets/wijmo-complete/events-calendar/"&gt;Google Calendar like planner calendar&lt;/a&gt;, a &lt;a href="http://wijmo.com/widgets/wijmo-complete/editor/"&gt;WYSIWYG editor&lt;/a&gt;, and also some multimedia elements more suited for frontends rather than backend apps, like &lt;a href="http://wijmo.com/widgets/wijmo-complete/gallery/"&gt;image gallery&lt;/a&gt;, &lt;a href="http://wijmo.com/widgets/wijmo-complete/lightbox/"&gt;lightbox&lt;/a&gt; and also a HTML5 &lt;a href="http://wijmo.com/widgets/wijmo-open/video-player/"&gt;video player&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;The great thing of being based on jQueryUI is that you can use all the jQueryUI themes, and if you need something not included in the library you can include any other jQueryUI widget without the risk incompatibilities between widgeting frameworks.&lt;/p&gt;  &lt;p&gt;From the license stand point it is similar to KendoUI: it is available both with GPLv3 license and a commercial license. And a “light” version of Wijmo, including only the basic controls, is also available with a MIT/GPLv2 license, making it usable also in OSS projects that are not GPLv3.&lt;/p&gt;  &lt;p&gt;I also wrote a features comparison table between the widgets you get with Wijmo Open, Wijmo Complete, KendoUI and with jQueryUI. (based on Wijmo v2 and Kendo UI as available in February 2012)&lt;/p&gt; &lt;iframe height="300" src="https://docs.google.com/spreadsheet/pub?key=0AtDES9iLpnKhdDExcWd3VE1UZmkwUGs3Rzk1WGItVmc&amp;amp;single=true&amp;amp;gid=0&amp;amp;range=A1%3AE48&amp;amp;output=html&amp;amp;widget=true" frameborder="0" width="500"&gt;&lt;/iframe&gt;  &lt;p&gt;Or you can see it in &lt;a href="https://docs.google.com/spreadsheet/pub?key=0AtDES9iLpnKhdDExcWd3VE1UZmkwUGs3Rzk1WGItVmc&amp;amp;single=true&amp;amp;gid=0&amp;amp;range=A1%3AE48&amp;amp;output=html"&gt;external window&lt;/a&gt;.&lt;/p&gt;  &lt;h3&gt;Getting started with Wijmo&lt;/h3&gt;  &lt;p&gt;Let’s now quickly see how it looks like developing with Wijmo.&lt;/p&gt;  &lt;h4&gt;Download the bits&lt;/h4&gt;  &lt;p&gt;Hit the Wijmo website, and &lt;a href="http://wijmo.com/downloads/"&gt;download the JavaScript library&lt;/a&gt;: it comes bundled with samples for every widget, complete sample apps, normal and minified version of all the JavaScript files, and all the premium themes. This is the best way to start playing with Wijmo. If you want you can also use &lt;a href="http://wijmo.com/downloads/cdn/"&gt;ComponentOne CDN&lt;/a&gt; and reference all JavaScript files from there.&lt;/p&gt;  &lt;h4&gt;Referencing the libraries&lt;/h4&gt;  &lt;p&gt;As said above, Wijmo is based on jQueryUI, which is based on jQuery, so in order to include Wijmo you have to reference all of them.&lt;/p&gt;  &lt;p&gt;The easiest approach is using &lt;a href="http://wijmo.com/downloads/cdn/"&gt;ComponentOne CDN&lt;/a&gt;, which provides a minified version of the JS libraries and their CSS.&lt;/p&gt;  &lt;div class="dropshadow code"&gt;   &lt;div class="innerbox"&gt;     &lt;pre class="csharpcode"&gt;&lt;span class="rem"&gt;&amp;lt;!--jQuery References--&amp;gt;&lt;/span&gt;
&lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;script&lt;/span&gt; &lt;span class="attr"&gt;src&lt;/span&gt;&lt;span class="kwrd"&gt;="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"&lt;/span&gt;
     &lt;span class="attr"&gt;type&lt;/span&gt;&lt;span class="kwrd"&gt;="text/javascript"&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;script&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
&amp;lt;script src=&lt;span class="str"&gt;"https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/jquery-ui.min.js"&lt;/span&gt;
     type=&lt;span class="str"&gt;"text/javascript"&lt;/span&gt;&amp;gt;&amp;lt;/script&amp;gt;

&amp;lt;!--Theme--&amp;gt;
&amp;lt;link href=&lt;span class="str"&gt;"http://cdn.wijmo.com/themes/midnight/jquery-wijmo.css"&lt;/span&gt;
     rel=&lt;span class="str"&gt;"stylesheet"&lt;/span&gt; type=&lt;span class="str"&gt;"text/css"&lt;/span&gt; title=&lt;span class="str"&gt;"midnight-jqueryui"&lt;/span&gt; /&amp;gt;

&amp;lt;!--Wijmo Widgets CSS--&amp;gt;
&amp;lt;link href=&lt;span class="str"&gt;"http://cdn.wijmo.com/jquery.wijmo-complete.all.2.0.0.min.css"&lt;/span&gt;
     rel=&lt;span class="str"&gt;"stylesheet"&lt;/span&gt; type=&lt;span class="str"&gt;"text/css"&lt;/span&gt; /&amp;gt;

&amp;lt;!--Wijmo Widgets JavaScript--&amp;gt;
&amp;lt;script src=&lt;span class="str"&gt;"http://cdn.wijmo.com/jquery.wijmo-open.all.2.0.0.min.js"&lt;/span&gt;
     type=&lt;span class="str"&gt;"text/javascript"&lt;/span&gt;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script src=&lt;span class="str"&gt;"http://cdn.wijmo.com/jquery.wijmo-complete.all.2.0.0.min.js"&lt;/span&gt;
     type=&lt;span class="str"&gt;"text/javascript"&lt;/span&gt;&amp;gt;&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;script&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;Or, if you want to host the script files locally on your server you can also select the files you just need for your application: you can do that by checking the dependencies of each widget (for example the &lt;a href="http://wijmo.com/wiki/index.php/Rating#Dependencies"&gt;dependencies of the Rating control&lt;/a&gt;)&lt;/p&gt;

&lt;h4&gt;Adding a Rating control&lt;/h4&gt;

&lt;p&gt;Let’s see now how add a Wijmo widget to a page: I’ll use a rating control, but the process is the same also for most of the other widgets.&lt;/p&gt;

&lt;p&gt;After having added the references, let’s add the HTML element we want to use for the widget: it this case, we can use either a list of radio button, a select, or just an empty div. Choosing a form element makes it easy to store the rating value directly, while if you choose an empty div you have store the value yourself. In this case I’m going to use a select list.&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;select&lt;/span&gt; &lt;span class="attr"&gt;id&lt;/span&gt;&lt;span class="kwrd"&gt;="climbRating"&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;option&lt;/span&gt; &lt;span class="attr"&gt;value&lt;/span&gt;&lt;span class="kwrd"&gt;="1"&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;Easy&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;option&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;option&lt;/span&gt; &lt;span class="attr"&gt;value&lt;/span&gt;&lt;span class="kwrd"&gt;="2"&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;Average&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;option&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;option&lt;/span&gt; &lt;span class="attr"&gt;selected&lt;/span&gt;&lt;span class="kwrd"&gt;="selected"&lt;/span&gt; &lt;span class="attr"&gt;value&lt;/span&gt;&lt;span class="kwrd"&gt;="3"&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;Tough&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;option&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;option&lt;/span&gt; &lt;span class="attr"&gt;value&lt;/span&gt;&lt;span class="kwrd"&gt;="4"&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;Very Tough&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;option&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;option&lt;/span&gt; &lt;span class="attr"&gt;value&lt;/span&gt;&lt;span class="kwrd"&gt;="5"&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;Hors Categorie&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;option&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;select&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;Finally, inside a script tag, initialize the rating widget like you would do with any other jQueryUI widget:&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;script&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
    $(document).ready(&lt;span class="kwrd"&gt;function&lt;/span&gt; () {
        $(&lt;span class="str"&gt;'#climbRating'&lt;/span&gt;).wijrating();
    });
&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;script&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;And you’ll have nice rating control with a reset button to clean the value and tooltips.&lt;/p&gt;

&lt;p align="center"&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="step" border="0" alt="step" src="http://codeclimber.net.nz/images/codeclimber_net_nz/Windows-Live-Writer/c0f257b74646_D41C/step_5.png" width="149" height="71" /&gt;&lt;/p&gt;

&lt;h4&gt;Fine-tuning the appearance of the widget&lt;/h4&gt;

&lt;p&gt;Probably you might want to customize the appearance of the rating widget, like removing the reset button, or maybe enabling multiple values per star, or changing the icons  instead of using the stars. To do that just specify the properties when you call the &lt;font face="Courier New"&gt;&lt;strong&gt;wijrating&lt;/strong&gt;&lt;/font&gt; method:&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;script&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;
    $(document).ready(&lt;span class="kwrd"&gt;function&lt;/span&gt; () {
        $(&lt;span class="str"&gt;'#climbRating'&lt;/span&gt;).wijrating({
            resetButton: {disabled: &lt;span class="kwrd"&gt;true&lt;/span&gt;},
            icons: {iconsUrl:
                        [&lt;span class="str"&gt;"flat.jpg"&lt;/span&gt;, &lt;span class="str"&gt;"hilly.jpg"&lt;/span&gt;, &lt;span class="str"&gt;"steep.jpg"&lt;/span&gt;,
                        &lt;span class="str"&gt;"steeper.jpg"&lt;/span&gt;, &lt;span class="str"&gt;"vertical.jpg"&lt;/span&gt;]
                    }
        });
    });
&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;script&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;h3&gt;The editable grid&lt;/h3&gt;

&lt;p&gt;Let’s see now a more complicate widget: the editable/sortable/pageable grid.&lt;/p&gt;

&lt;p&gt;The hook in HTML is simple: just add an empty table if you want to load the data from a JavaScript datasource, either local or remote via JSON, or a normal table with all the data already in tabular form.&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;table&lt;/span&gt; &lt;span class="attr"&gt;id&lt;/span&gt;&lt;span class="kwrd"&gt;="climbsTable"&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;table&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;Then, as usual, via jQuery, you enhance the table by calling the &lt;font face="Courier New"&gt;&lt;strong&gt;wijgrid&lt;/strong&gt;&lt;/font&gt; method. In this post I’m just going to show the basic features, how to pass local data, and how to enable sorting and some other basic formatting options. In a future article I’ll show how to use it in a ASP.NET MVC application with Web API. This code is taken from a prototype of the new version of a bike climbing web site I’m building with my friend &lt;a href="https://twitter.com/#!/vosti" rel="friend met"&gt;Davide Vosti&lt;/a&gt;, called &lt;a href="http://39x27.com/"&gt;39x27.com&lt;/a&gt;.&lt;/p&gt;

&lt;div class="dropshadow code"&gt;
  &lt;div class="innerbox"&gt;
    &lt;pre class="csharpcode"&gt;$(document).ready(&lt;span class="kwrd"&gt;function&lt;/span&gt; () {
    $(&lt;span class="str"&gt;"#climbsTable"&lt;/span&gt;).wijgrid({
         data: [
            { 
                Name: &lt;span class="str"&gt;"Passo dello Stelvio"&lt;/span&gt;,
                Location: &lt;span class="str"&gt;"Prato dello Stelvio (IT)"&lt;/span&gt;,
                Rating: &lt;span class="str"&gt;"Hors Categorie"&lt;/span&gt;,
                Rate: 0.074,
                Length: 24.3,
                Elevation: 1808
            },
            ...
          ],
          allowSorting: &lt;span class="kwrd"&gt;true&lt;/span&gt;,
          columns: [
                {},
                {},
                {},
                { dataType: &lt;span class="str"&gt;"number"&lt;/span&gt;, dataFormatString: &lt;span class="str"&gt;"p1"&lt;/span&gt; },
                { dataType: &lt;span class="str"&gt;"number"&lt;/span&gt; },
                { dataType: &lt;span class="str"&gt;"number"&lt;/span&gt;, dataFormatString: &lt;span class="str"&gt;"n0"&lt;/span&gt; }
            ]
    });
});&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;The first property is called &lt;font face="Courier New"&gt;&lt;strong&gt;data&lt;/strong&gt;&lt;/font&gt; and is the one that defines how the grid is populated: it could be an array of array, an array of objects (like I did in the sample above) or &lt;a href="http://wijmo.com/wiki/index.php/Datasource"&gt;wijmo datasource&lt;/a&gt; if you wanted to get the data from a server.&lt;/p&gt;

&lt;p&gt;In the sample I then enabled sorting, and later provided an array of &lt;font face="Courier New"&gt;&lt;strong&gt;columns&lt;/strong&gt;&lt;/font&gt;: the first 3 are empty because I want to use the default values (header is the property name of the JSON object provided and the data type is string), but in the next 3 I specified the data type and the format of the string: the data formats us the same format of &lt;a href="https://github.com/jquery/globalize#numbers"&gt;jQuery Globalize&lt;/a&gt;, so &lt;font face="Courier New"&gt;p1&lt;/font&gt; means percentage with 1 decimal while &lt;font face="Courier New"&gt;n0&lt;/font&gt; means generic number with no decimals.&lt;/p&gt;

&lt;p&gt;Here is the table with the list of the bike climbs.&lt;/p&gt;

&lt;p align="center"&gt;&lt;a href="http://codeclimber.net.nz/images/codeclimber_net_nz/Windows-Live-Writer/c0f257b74646_D41C/grid.jpg" rel="lightbox"&gt;&lt;img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="grid" border="0" alt="grid" src="http://codeclimber.net.nz/images/codeclimber_net_nz/Windows-Live-Writer/c0f257b74646_D41C/grid_thumb.jpg" width="454" height="97" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;All the details can be found in the API documentation available online: &lt;a href="http://wijmo.com/wiki/index.php/Grid"&gt;Wijmo Grid documentation&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;In conclusion&lt;/h3&gt;

&lt;p&gt;In a few words, what I liked the most about Wijmo is its philosophy of embracing what is already available (jQueryUI) and most likely already well know by developers rather than reinventing the wheel and bringing yet another library in the mix like the other component vendors are doing. &lt;/p&gt;

&lt;p&gt;In second instance, what is great is that they provide not just web-apps oriented components like the &lt;a href="http://wijmo.com/demo/explore/#grid|overview"&gt;editable grid&lt;/a&gt; or the &lt;a href="http://wijmo.com/demo/explore/#eventscalendar|overview"&gt;event calendar&lt;/a&gt; or the &lt;a href="http://wijmo.com/demo/explore/#inputdate|datepicker"&gt;datepicker&lt;/a&gt;, but they also have some &lt;a href="http://wijmo.com/widgets/data-visualization/"&gt;great charting widgets&lt;/a&gt; and  widgets that can be used also in “web sites”, like the &lt;a href="http://wijmo.com/demo/explore/#carousel|overview"&gt;carousel&lt;/a&gt;, the &lt;a href="http://wijmo.com/demo/explore/#lightbox|overview"&gt;lightbox&lt;/a&gt; and the &lt;a href="http://wijmo.com/demo/explore/#video|overview"&gt;HTML5 video player&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;You can &lt;a href="http://wijmo.com/downloads/"&gt;download the trial&lt;/a&gt; and use it in you project, and only when you are ready to put it in production you have to &lt;a href="https://wijmo.com/purchase/"&gt;buy the license&lt;/a&gt;. So nothing prevents you to try this great component library.&lt;/p&gt;

&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:487bf6e3-8e90-4175-93d4-f76466e32d20" class="wlWriterEditableSmartContent"&gt;Tags: &lt;a href="http://codeclimber.net.nz/tags/jQuery/default.aspx" rel="tag"&gt;jQuery&lt;/a&gt;

, &lt;a href="http://codeclimber.net.nz/tags/jQueryUI/default.aspx" rel="tag"&gt;jQueryUI&lt;/a&gt;

, &lt;a href="http://codeclimber.net.nz/tags/wijmo/default.aspx" rel="tag"&gt;wijmo&lt;/a&gt;

, &lt;a href="http://codeclimber.net.nz/tags/39x27/default.aspx" rel="tag"&gt;39x27&lt;/a&gt;

&lt;/div&gt;

&lt;p&gt;&lt;em&gt;Disclosure of Material Connection: I received one or more of the products or services mentioned above for free in the hope that I would mention it on my blog. Regardless, I only recommend products or services I use personally and believe my readers will enjoy. I am disclosing this in accordance with the Federal Trade Commission’s 16 CFR, Part 255: “&lt;/em&gt;&lt;a href="http://www.access.gpo.gov/nara/cfr/waisidx_03/16cfr255_03.html"&gt;&lt;em&gt;Guides Concerning the Use of Endorsements and Testimonials in Advertising&lt;/em&gt;&lt;/a&gt;&lt;em&gt;.”&lt;/em&gt;&lt;/p&gt;&lt;img src="http://codeclimber.net.nz/aggbug/978.aspx" width="1" height="1" /&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=Vd4YnOCM6zw:bf3-H1-juvk:D7DqB2pKExk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=Vd4YnOCM6zw:bf3-H1-juvk:D7DqB2pKExk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=Vd4YnOCM6zw:bf3-H1-juvk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=Vd4YnOCM6zw:bf3-H1-juvk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=Vd4YnOCM6zw:bf3-H1-juvk:G79ilh31hkQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=G79ilh31hkQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=Vd4YnOCM6zw:bf3-H1-juvk:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=Vd4YnOCM6zw:bf3-H1-juvk:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=Vd4YnOCM6zw:bf3-H1-juvk:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Codeclimber/~4/Vd4YnOCM6zw" height="1" width="1"/&gt;</description>
            <dc:creator>Simone Chiaretta</dc:creator>
            <guid isPermaLink="false">http://codeclimber.net.nz/archive/2012/02/29/Introducing-Wijmo-a-feature-packed-jQueryUI-based-widget-library.aspx</guid>
            <pubDate>Wed, 29 Feb 2012 13:52:00 GMT</pubDate>
            <comments>http://codeclimber.net.nz/archive/2012/02/29/Introducing-Wijmo-a-feature-packed-jQueryUI-based-widget-library.aspx#feedback</comments>
            <slash:comments>5</slash:comments>
            <wfw:commentRss>http://codeclimber.net.nz/comments/commentRss/978.aspx</wfw:commentRss>
        <feedburner:origLink>http://codeclimber.net.nz/archive/2012/02/29/Introducing-Wijmo-a-feature-packed-jQueryUI-based-widget-library.aspx</feedburner:origLink></item>
        <item>
            <title>TechDays Belgium 2012: a look at interesting sessions</title>
            <category>Community Life</category>
            <link>http://feedproxy.google.com/~r/Codeclimber/~3/tbGhJHGRsGU/TechDays-Belgium-2012-a-look-at-interesting-sessions.aspx</link>
            <description>&lt;p&gt;&lt;a href="http://bit.ly/mstechdays2012"&gt;TechDays 2012 Belgium&lt;/a&gt; is just 2 weeks away, and it’s time to have a look at the &lt;a href="http://www.microsoft.com/belux/techdays/2012/Sessions.aspx"&gt;agenda&lt;/a&gt; and decide which of the sessions to attend.&lt;/p&gt;  &lt;p&gt;My highlights are:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=287"&gt;A Look at ASP.NET MVC 4 &lt;/a&gt;- &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=135"&gt;Scott Guthrie&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=280"&gt;MVVM Applied: From Silverlight to Windows Phone to Windows 8&lt;/a&gt; - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=134"&gt;Laurent Bugnion&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=246"&gt;SignalR. Code, not toothpaste&lt;/a&gt; - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=23"&gt;Maarten Balliauw&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=199"&gt;Building rich Single Page Applications (SPAs) for desktop, mobile, and tablet with ASP.NET MVC 4&lt;/a&gt; - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=109"&gt;Steve Sanderson&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;But filling in all the slots was a tough decision, especially in the second day, with lot of overlapping interesting talks (whereas in the first day some time slots were almost empty) but here is my tentative agenda for the 3 days&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;14 February:      &lt;ul&gt;       &lt;li&gt;8:45 – 10:15 - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=266"&gt;Opening Session for the Dev track with Scott Guthrie&lt;/a&gt; – &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=135"&gt;Scott Guthrie&lt;/a&gt; &lt;/li&gt;        &lt;li&gt;10:45 – 12:00 - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=267"&gt;Welcome to the Metro Application Platform &lt;/a&gt;- &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=58"&gt;Katrien De Graeve&lt;/a&gt; , &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=24"&gt;Gill Cleeren&lt;/a&gt; &lt;/li&gt;        &lt;li&gt;13:00 – 14:15 - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=287"&gt;A Look at ASP.NET MVC 4 &lt;/a&gt;- &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=135"&gt;Scott Guthrie&lt;/a&gt; &lt;/li&gt;        &lt;li&gt;14:30 – 15:45 - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=198"&gt;HTML5 Quick Start &lt;/a&gt;- &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=68"&gt;Jeff Prosise&lt;/a&gt; &lt;/li&gt;        &lt;li&gt;16:15 – 17:30 - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=245"&gt;What's new in Visual Studio 11 for Application Lifecycle Management &lt;/a&gt;- &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=117"&gt;Brian Keller&lt;/a&gt; &lt;/li&gt;        &lt;li&gt;17:45 – 19:00 - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=199"&gt;Building rich Single Page Applications (SPAs) for desktop, mobile, and tablet with ASP.NET MVC 4&lt;/a&gt; - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=109"&gt;Steve Sanderson&lt;/a&gt; &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt;    &lt;li&gt;15 February:      &lt;ul&gt;       &lt;li&gt;9:00 – 10:15 – Either &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=286"&gt;ScottGu Unplugged&lt;/a&gt; or &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=289"&gt;Metro Design Deep Dive&lt;/a&gt; by &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=140"&gt;Arturo Toledo&lt;/a&gt; &lt;/li&gt;        &lt;li&gt;10:45 – 12:00 – Either &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=268"&gt;Take a Ride on the Metro&lt;/a&gt; (&lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=68"&gt;Jeff Prosise&lt;/a&gt;) or &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=271"&gt;Windows Phone: From Idea to Published Game in 75 minutes&lt;/a&gt; (&lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=72"&gt;Rob Miles&lt;/a&gt;) &lt;/li&gt;        &lt;li&gt;13:00 – 14:15 – Either &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=239"&gt;The zen of async: Best practices for best performance&lt;/a&gt; or &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=272"&gt;Sending Push Notifications using the Windows Push Notification Service and Azure&lt;/a&gt; or maybe also the entrepreneur track about &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=259"&gt;15 Lessons from 5 MIC Boostcamps to create an IT Startup&lt;/a&gt; &lt;/li&gt;        &lt;li&gt;14:30 – 15:45 - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=280"&gt;MVVM Applied: From Silverlight to Windows Phone to Windows 8&lt;/a&gt; - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=134"&gt;Laurent Bugnion&lt;/a&gt; &lt;/li&gt;        &lt;li&gt;16:15 – 17:30 - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=212"&gt;Windows Phone Launchers and Choosers&lt;/a&gt; - &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=110"&gt;Ben Riga&lt;/a&gt; &lt;/li&gt;        &lt;li&gt;17:45 – 19:00 – will probably attend again the &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=246"&gt;SignalR. Code, not toothpaste&lt;/a&gt; session by &lt;a href="http://www.microsoft.com/belux/techdays/2012/SpeakerDetail.aspx?speakerId=23"&gt;Maarten Balliauw&lt;/a&gt; &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt;    &lt;li&gt;16 February: This day is easy, there are just 3 deep dive tracks, one for developers and twop for IT pros, so I’ll follow the &lt;strong&gt;Web Dev Futures Day&lt;/strong&gt; with sessions on:       &lt;ul&gt;       &lt;li&gt;ASP.NET 4.5 and Dev11 &lt;/li&gt;        &lt;li&gt;ASP.NET WebForms 4.5 &lt;/li&gt;        &lt;li&gt;ASP.NET MVC 4 &lt;/li&gt;        &lt;li&gt;HTML5 &lt;/li&gt;        &lt;li&gt;WebSockets &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;So, hope to see you there.&lt;/p&gt;  &lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:eecd541e-d440-4284-aee1-0252e43898b5" class="wlWriterEditableSmartContent"&gt;Tags: &lt;a href="http://codeclimber.net.nz/tags/techdays12/default.aspx" rel="tag"&gt;techdays12&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/aspnetmvc/default.aspx" rel="tag"&gt;aspnetmvc&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/wp7dev/default.aspx" rel="tag"&gt;wp7dev&lt;/a&gt;&lt;/div&gt;&lt;img src="http://codeclimber.net.nz/aggbug/977.aspx" width="1" height="1" /&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=tbGhJHGRsGU:iXjbfJnFTMc:D7DqB2pKExk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=tbGhJHGRsGU:iXjbfJnFTMc:D7DqB2pKExk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=tbGhJHGRsGU:iXjbfJnFTMc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=tbGhJHGRsGU:iXjbfJnFTMc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=tbGhJHGRsGU:iXjbfJnFTMc:G79ilh31hkQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=G79ilh31hkQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=tbGhJHGRsGU:iXjbfJnFTMc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=tbGhJHGRsGU:iXjbfJnFTMc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=tbGhJHGRsGU:iXjbfJnFTMc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Codeclimber/~4/tbGhJHGRsGU" height="1" width="1"/&gt;</description>
            <dc:creator>Simone Chiaretta</dc:creator>
            <guid isPermaLink="false">http://codeclimber.net.nz/archive/2012/01/31/TechDays-Belgium-2012-a-look-at-interesting-sessions.aspx</guid>
            <pubDate>Tue, 31 Jan 2012 12:01:26 GMT</pubDate>
            <comments>http://codeclimber.net.nz/archive/2012/01/31/TechDays-Belgium-2012-a-look-at-interesting-sessions.aspx#feedback</comments>
            <wfw:commentRss>http://codeclimber.net.nz/comments/commentRss/977.aspx</wfw:commentRss>
        <feedburner:origLink>http://codeclimber.net.nz/archive/2012/01/31/TechDays-Belgium-2012-a-look-at-interesting-sessions.aspx</feedburner:origLink></item>
        <item>
            <title>The last UGIALT.net Conference</title>
            <category>Community Life</category>
            <link>http://feedproxy.google.com/~r/Codeclimber/~3/7UMU6XVBrGw/The-last-UGIALT-net-Conference.aspx</link>
            <description>&lt;p align="center"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="logo_big" border="0" alt="logo_big" src="http://codeclimber.net.nz/images/codeclimber_net_nz/WindowsLiveWriter/ThelastUGIALT.netConference_AAA4/logo_big_3.png" width="450" height="129" /&gt;&lt;/p&gt;  &lt;p&gt;Last Saturday it was the &lt;a href="http://codeclimber.net.nz/archive/2011/10/24/Fix-the-date-and-call-for-presenters-7th-UGIALT-net.aspx"&gt;7th and&lt;strong&gt; last&lt;/strong&gt; Conference&lt;/a&gt; organized by &lt;a href="http://ugialt.net/"&gt;UGIALT.net&lt;/a&gt;. With &lt;strong&gt;last&lt;/strong&gt; I really mean &lt;em&gt;last&lt;/em&gt;, as in there won’t be any more conferences organized by UGIALT.net, at least not in its current form.&lt;/p&gt;  &lt;h3&gt;This is the end&lt;/h3&gt;  &lt;p&gt;Those who attended know the reasons why we decided to terminate operations, but if you were not there, you can have a look at the &lt;a href="http://www.slideshare.net/simonech/ugialtnet"&gt;keynote’s slides&lt;/a&gt;, watch the &lt;a href="http://vimeo.com/35745492"&gt;video of the keynote&lt;/a&gt;, or reading the more detailed explanations on &lt;a href="http://blog.codiceplastico.com/ema/"&gt;Emanuele&lt;/a&gt;’s blog post, &lt;a href="http://blog.codiceplastico.com/ema/?p=224"&gt;Perchè UGIALT.net ha chiuso?&lt;/a&gt;, or on my Italian blog &lt;a href="http://blogs.ugidotnet.org/piyo/archive/2012/01/26/lrsquoultima-ugialt.net-conference.aspx"&gt;L’ultima UGIALT.net conference&lt;/a&gt;. And for those who don’t read Italian I’ll try to summarize the reasons here:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;we started (&lt;a href="http://codeclimber.net.nz/archive/2007/10/31/An-ALT.NET-group-is-born-in-Italy.aspx"&gt;almost 4 years and half ago&lt;/a&gt;) with the goal of pushing Microsoft and the other .NET user groups to widen their horizons, and it looks like we succeeded: thanks to the ALT.NET movement Microsoft has become more agile, more focused on good practices and more open to Open Source, and other user groups started to include in their agenda more talks about fundamentals and practices and less “&lt;em&gt;how to use MS XYZ lib&lt;/em&gt;”. &lt;/li&gt;    &lt;li&gt;the ALT.NET movement (in Italy, but also worldwide) kind of split in two groups: the ones satisfied with the direction MS and other traditional user groups took, and the ones not satisfied. The first merged back into the traditional communities, and the latter moved to other platforms (ruby, nodejs and similar). &lt;/li&gt;    &lt;li&gt;And finally, being too successful, with more than 150 attendees and many “mainstream developers” attending our last conference, we realized that the next step should have been a bigger conference, in a bigger venue. But that wouldn’t have been possible with just the 3 of us organizing it in our (little) spare time, financed just by donations. We should have set up a legal and fiscal entity to sell tickets, get paying sponsors, pay for the venue and either dedicate more time or find someone to help us (which didn’t happen in 4 years). But that’s a direction we didn’t want to take. We hope the other Italian User Groups will follow our steps, and keep on including ALTernative tracks in their conferences. &lt;/li&gt; &lt;/ul&gt;  &lt;h3&gt;The conference&lt;/h3&gt;  &lt;p&gt;As I already mentioned this was the edition that beat all records: the highest number of registrations (more than &lt;strong&gt;240&lt;/strong&gt;), the highest number of attendees (around &lt;strong&gt;150&lt;/strong&gt;, the maximum, maybe more, capacity of the venue), the highest value of gifts and prizes for the attendees (more than &lt;strong&gt;60.000€&lt;/strong&gt; of commercial value), mainly thanks to &lt;a href="http://umbraco.com/"&gt;Umbraco&lt;/a&gt; for its &lt;a href="http://umbraco.com/help-and-support/video-tutorials/"&gt;Umbraco.TV&lt;/a&gt; subscriptions for everybody, and to &lt;a href="http://www.mindscapehq.com/"&gt;Mindscape&lt;/a&gt; for the gift to the speakers and the 20 licenses of &lt;a href="http://www.mindscapehq.com/products/lightspeed"&gt;LightSpeed&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;And &lt;a href="http://trendistic.indextank.com/uan12"&gt;#uan12&lt;/a&gt; has even been an official twitter &lt;strong&gt;trending topic&lt;/strong&gt; on Saturday in Italy: I think this is yet another record, being the &lt;em&gt;first developer conference in Italy to become a trending topic&lt;/em&gt;.&lt;/p&gt;  &lt;p&gt;If you couldn’t attend, we published all the slides online on Joind.in: &lt;a href="http://joind.in/event/uan12"&gt;http://joind.in/event/uan12&lt;/a&gt;. If you attended please check-in on the event, and leave your feedback.&lt;/p&gt;  &lt;p&gt;We also recorded most of the presentations, and they are available on the Vimeo channel of DotNetMarche, one of our two main spiritual heirs, in the &lt;a href="http://vimeo.com/album/1814185"&gt;7th UGIALT.net Conference video album&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;But a conference is not only technical contents, it’s also user interaction and social media: you can see what happened, or live it again, in the &lt;a href="http://uan12.peppertweet.com/"&gt;photo twitter wall created by PepperTweet for UAN12&lt;/a&gt;.&lt;/p&gt;  &lt;h3&gt;What’s next?&lt;/h3&gt;  &lt;p&gt;We pushed the other UGs during these 4 years, now we hope some of them will continue on our footsteps. In the context of .NET I’m pretty sure we’ll see a lot of good stuff coming from &lt;a href="http://dotnetmarche.org/"&gt;DotNetMarche&lt;/a&gt;, and outside of the .NET world, there is a very fervent community in &lt;a href="http://en.wikipedia.org/wiki/Brescia"&gt;Brescia&lt;/a&gt;, called &lt;a href="http://www.webdebs.org/"&gt;WEBdeBS&lt;/a&gt;, which is &lt;a href="http://www.webdebs.org/2011/lanno-che-verra/#more-443"&gt;organizing&lt;/a&gt; (and &lt;a href="http://www.webdebs.org/category/eventi/"&gt;has organized&lt;/a&gt;) a lot of interesting events.&lt;/p&gt;  &lt;p align="center"&gt; &lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="407693_3108061259636_1207452102_3374094_2060978480_n" border="0" alt="407693_3108061259636_1207452102_3374094_2060978480_n" src="http://codeclimber.net.nz/images/codeclimber_net_nz/WindowsLiveWriter/ThelastUGIALT.netConference_AAA4/407693_3108061259636_1207452102_3374094_2060978480_n_3.jpg" width="550" height="310" /&gt; &lt;/p&gt;  &lt;p&gt;Personally, now I’ll dedicate more time to coding, other interests (like Arduino). I’ll help WEBdeBS and DotNetMarche in some of their activities and will try to start collaborating more with the local (as in Belgian) communities.&lt;/p&gt;  &lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:6e2371d2-4b9f-474f-b017-c376ebd0a0f7" class="wlWriterEditableSmartContent"&gt;Tags: &lt;a href="http://codeclimber.net.nz/tags/uan12/default.aspx" rel="tag"&gt;uan12&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/ugialtnet/default.aspx" rel="tag"&gt;ugialtnet&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/alt.net/default.aspx" rel="tag"&gt;alt.net&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/WEBdeBS/default.aspx" rel="tag"&gt;WEBdeBS&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/conference/default.aspx" rel="tag"&gt;conference&lt;/a&gt;&lt;/div&gt;&lt;img src="http://codeclimber.net.nz/aggbug/976.aspx" width="1" height="1" /&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=7UMU6XVBrGw:XnmDkoacjXc:D7DqB2pKExk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=7UMU6XVBrGw:XnmDkoacjXc:D7DqB2pKExk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=7UMU6XVBrGw:XnmDkoacjXc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=7UMU6XVBrGw:XnmDkoacjXc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=7UMU6XVBrGw:XnmDkoacjXc:G79ilh31hkQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=G79ilh31hkQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=7UMU6XVBrGw:XnmDkoacjXc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=7UMU6XVBrGw:XnmDkoacjXc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=7UMU6XVBrGw:XnmDkoacjXc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Codeclimber/~4/7UMU6XVBrGw" height="1" width="1"/&gt;</description>
            <dc:creator>Simone Chiaretta</dc:creator>
            <guid isPermaLink="false">http://codeclimber.net.nz/archive/2012/01/27/The-last-UGIALT-net-Conference.aspx</guid>
            <pubDate>Fri, 27 Jan 2012 13:57:50 GMT</pubDate>
            <comments>http://codeclimber.net.nz/archive/2012/01/27/The-last-UGIALT-net-Conference.aspx#feedback</comments>
            <wfw:commentRss>http://codeclimber.net.nz/comments/commentRss/976.aspx</wfw:commentRss>
        <feedburner:origLink>http://codeclimber.net.nz/archive/2012/01/27/The-last-UGIALT-net-Conference.aspx</feedburner:origLink></item>
        <item>
            <title>What&amp;rsquo;s new in ASP.NET MVC 4: slides and demo are now online</title>
            <category>ASP.NET MVC</category>
            <category>Community Life</category>
            <link>http://feedproxy.google.com/~r/Codeclimber/~3/TdqGzUlqi60/Whatrsquos-new-in-ASP-NET-MVC-4-slides-and-demo.aspx</link>
            <description>&lt;p&gt;Today I had my first live webcast for Microsoft Belgium, about the new features &lt;a href="http://codeclimber.net.nz/archive/2011/09/15/Microsoft-dev-stack-vNext-from-Build.aspx"&gt;released with ASP.NET MVC 4 at Build in September&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;There were around 80+ people registered and around 50 people attending, and almost nobody left before the end of the webcast, so I guess it pretty well. We also are aware there were some glitches in the audio during the async part of the webcast: the audio was also recorded directly from the mic, so the video that will be published in the next week on Channel9 will have good audio.&lt;/p&gt;  &lt;p&gt;Or just register for the &lt;a href="http://bit.ly/mstechdays2012"&gt;TechDays2012 Belgium&lt;/a&gt; next February, where &lt;a href="http://weblogs.asp.net/scottgu/"&gt;The Gu&lt;/a&gt;, besides giving the &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=266"&gt;opening dev session&lt;/a&gt;, will give &lt;a href="http://www.microsoft.com/belux/techdays/2012/SessionDetail.aspx?sessionId=287"&gt;a session on ASP.NET MVC 4&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;Here are the &lt;a href="http://www.slideshare.net/simonech/whats-new-in-aspnet-mvc-4"&gt;slides&lt;/a&gt; I uploaded to SlideShare.&lt;/p&gt;  &lt;div style="width: 425px" id="__ss_11117660"&gt;&lt;strong style="margin: 12px 0px 4px; display: block"&gt;&lt;a title="What's new in asp.net mvc 4" href="http://www.slideshare.net/simonech/whats-new-in-aspnet-mvc-4" target="_blank"&gt;What's new in asp.net mvc 4&lt;/a&gt;&lt;/strong&gt; &lt;iframe height="355" marginheight="0" src="http://www.slideshare.net/slideshow/embed_code/11117660" frameborder="0" width="425" marginwidth="0" scrolling="no"&gt;&lt;/iframe&gt;    &lt;div style="padding-bottom: 12px; padding-left: 0px; padding-right: 0px; padding-top: 5px"&gt;View more &lt;a href="http://www.slideshare.net/" target="_blank"&gt;presentations&lt;/a&gt; from &lt;a href="http://www.slideshare.net/simonech" target="_blank"&gt;Simone Chiaretta&lt;/a&gt; &lt;/div&gt; &lt;/div&gt;  &lt;p&gt;Also available for download are:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://db.tt/WEHMeVtG"&gt;Original PPT Slide&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://db.tt/Wtnzj9YY"&gt;Demos&lt;/a&gt; (14Mb) &lt;/li&gt; &lt;/ul&gt;  &lt;h3&gt;Video&lt;/h3&gt;  &lt;p&gt;The video has been published on Channel9: &lt;a href="http://channel9.msdn.com/posts/Whats-New-in-ASPNET-MVC-4"&gt;What's New in ASP.NET MVC 4&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;iframe style="height:288px;width:512px" src="http://channel9.msdn.com/posts/Whats-New-in-ASPNET-MVC-4/player?w=512&amp;amp;h=288" frameborder="0" scrolling="no"&gt;&lt;/iframe&gt;&lt;/p&gt;  &lt;h3&gt;Some resources&lt;/h3&gt;  &lt;p&gt;Additional resources to check are:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://www.asp.net/mvc/mvc4"&gt;MVC 4 Main Page and Dev Preview&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.asp.net/whitepapers/mvc4-release-notes"&gt;Release Notes&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://aspnet.codeplex.com/wikipage?title=ASP.NET%20MVC%204%20RoadMap"&gt;Roadmap&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://channel9.msdn.com/events/BUILD/BUILD2011/TOOL-803T"&gt;Phil Haack’s Mobility Talk, BUILD Sep 2011&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://haacked.com/archive/2011/09/22/writing-a-recipe-for-asp-net-mvc-4-developer-preview.aspx"&gt;Create an MVC4 Recipe&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://codeclimber.net.nz/archive/2012/01/09/evolution-of-async-controller-asp-net-mvc.aspx"&gt;The evolution of Async controllers in ASP.NET MVC&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://codeclimber.net.nz/archive/2011/11/30/Web-API-preview-6-is-out-how-to-get-a.aspx"&gt;WCF WebAPI preview 6: how to get a RESTful mind&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.microsoft.com/web/gallery/install.aspx?appid=MVC4VS2010&amp;amp;prerelease=true"&gt;Download ASP.NET MVC 4 for VS 2010&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Not related to ASP.NET MVC 4, but since a few people asked how I got the Lumia 800 skin on my WP7 emulator, here is the link: &lt;a href="http://wp7emuskinswitcher.codeplex.com/"&gt;Windows Phone 7 Emulator Skin Switcher&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;If you attended, please let me know how it went, and if you didn’t stay tuned: in a week or so the video will be available on Channel9. I’ll write a new post with the video.&lt;/p&gt;  &lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:518defe5-2d1a-4561-a1c4-caadb853186f" class="wlWriterSmartContent"&gt;Tags: &lt;a href="http://codeclimber.net.nz/tags/aspnetmvc4/default.aspx" rel="tag"&gt;aspnetmvc4&lt;/a&gt; , &lt;a href="http://codeclimber.net.nz/tags/webcast/default.aspx" rel="tag"&gt;webcast&lt;/a&gt; , &lt;a href="http://codeclimber.net.nz/tags/msdnbelux/default.aspx" rel="tag"&gt;msdnbelux&lt;/a&gt; &lt;/div&gt;&lt;img src="http://codeclimber.net.nz/aggbug/975.aspx" width="1" height="1" /&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=TdqGzUlqi60:df0Yn7_NC2E:D7DqB2pKExk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=TdqGzUlqi60:df0Yn7_NC2E:D7DqB2pKExk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=TdqGzUlqi60:df0Yn7_NC2E:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=TdqGzUlqi60:df0Yn7_NC2E:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=TdqGzUlqi60:df0Yn7_NC2E:G79ilh31hkQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=G79ilh31hkQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=TdqGzUlqi60:df0Yn7_NC2E:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=TdqGzUlqi60:df0Yn7_NC2E:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=TdqGzUlqi60:df0Yn7_NC2E:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Codeclimber/~4/TdqGzUlqi60" height="1" width="1"/&gt;</description>
            <dc:creator>Simone Chiaretta</dc:creator>
            <guid isPermaLink="false">http://codeclimber.net.nz/archive/2012/01/17/Whatrsquos-new-in-ASP-NET-MVC-4-slides-and-demo.aspx</guid>
            <pubDate>Tue, 17 Jan 2012 22:06:50 GMT</pubDate>
            <comments>http://codeclimber.net.nz/archive/2012/01/17/Whatrsquos-new-in-ASP-NET-MVC-4-slides-and-demo.aspx#feedback</comments>
            <wfw:commentRss>http://codeclimber.net.nz/comments/commentRss/975.aspx</wfw:commentRss>
        <feedburner:origLink>http://codeclimber.net.nz/archive/2012/01/17/Whatrsquos-new-in-ASP-NET-MVC-4-slides-and-demo.aspx</feedburner:origLink></item>
        <item>
            <title>Getting started with Git and GitHub</title>
            <link>http://feedproxy.google.com/~r/Codeclimber/~3/iElgMI3wvbw/Getting-stated-with-Git-and-GitHub.aspx</link>
            <description>&lt;p&gt;Now that &lt;a href="http://subtextproject.com/"&gt;Subtext&lt;/a&gt;, the blogging engine I’m working (or at least I should) on together with &lt;a href="http://haacked.com/" rel="friend met colleague"&gt;Phil Haack&lt;/a&gt;, has been &lt;a href="https://github.com/Haacked/Subtext"&gt;officially moved to GitHub&lt;/a&gt; (guess &lt;a href="http://haacked.com/archive/2011/12/07/hello-github.aspx"&gt;the reason why&lt;/a&gt;), I finally have a reason to really study git and github.&lt;/p&gt;  &lt;p&gt;I already tried &lt;a href="http://codeclimber.net.nz/archive/2009/03/26/how-to-quickly-get-started-with-gitgithub.aspx"&gt;starting&lt;/a&gt; a few years ago, and even used it a bit lately to work on the &lt;a href="http://ugialt.net/"&gt;ugialt.net conference site&lt;/a&gt; (here the &lt;a href="https://github.com/emadb/conf-oo"&gt;conf-oo github repo&lt;/a&gt;), but never really studied in depth, and still didn’t fully get the key differences between a traditional source control and a distributed source control.&lt;/p&gt;  &lt;p&gt;So I asked around and found some good pointers.&lt;/p&gt;  &lt;h3&gt;Think Like (a) Git&lt;/h3&gt;  &lt;p&gt;The most recommended pointer I got is the &lt;a href="http://think-like-a-git.net/"&gt;Think Like (a) Git&lt;/a&gt; website, a self-proclaimed “Guide for the perplexed”. It’s a pretty nice tutorial covering all the key concepts of Git.&lt;/p&gt;  &lt;p&gt;It also comes with a &lt;a href="http://think-like-a-git.heroku.com/"&gt;slideshow&lt;/a&gt; and an &lt;a href="http://think-like-a-git.net/epic.html"&gt;all-in-one page&lt;/a&gt; if you want to print it or PDFize it.&lt;/p&gt;  &lt;h3&gt;&lt;a href="http://www.amazon.com/gp/product/1430218339/ref=as_li_ss_tl?ie=UTF8&amp;amp;tag=codec04-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=1430218339"&gt;ProGit book&lt;/a&gt; and site&lt;/h3&gt;  &lt;p&gt;The second most popular recommendation I got is the &lt;a href="http://www.amazon.com/gp/product/1430218339/ref=as_li_ss_tl?ie=UTF8&amp;amp;tag=codec04-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=1430218339"&gt;Pro Git book&lt;/a&gt; from Apress. The thing that differentiate it from other books is its widespread usage of visuals and samples.&lt;/p&gt;  &lt;p&gt;The cool thing is that, while still being a &lt;a href="http://www.amazon.com/gp/product/1430218339/ref=as_li_ss_tl?ie=UTF8&amp;amp;tag=codec04-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=1430218339"&gt;paper book&lt;/a&gt; and having a &lt;a href="http://www.amazon.com/gp/product/B004TTXLGI/ref=as_li_ss_tl?ie=UTF8&amp;amp;tag=codec04-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=B004TTXLGI"&gt;Kindle version&lt;/a&gt;, both released on 2009, there is also a Creative Common licensed ebook (&lt;a href="http://progit.org/ebook/progit.pdf"&gt;PDF&lt;/a&gt;, &lt;a href="http://progit.org/ebook/progit.mobi"&gt;Mobi&lt;/a&gt;, &lt;a href="https://github.s3.amazonaws.com/media/progit.epub"&gt;ePub&lt;/a&gt;) and &lt;a href="http://progit.org/book/"&gt;also available for online reading&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;The “code” for the book and his images &lt;a href="https://github.com/progit/progit"&gt;is available on github&lt;/a&gt; and is updated with fixes coming from readers.&lt;/p&gt;  &lt;h3&gt;Other Git books&lt;/h3&gt;  &lt;p&gt;But Pro Git is not the only book available. Other two interesting books are the &lt;a href="http://www.amazon.com/gp/product/1934356727/ref=as_li_ss_tl?ie=UTF8&amp;amp;tag=codec04-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=1934356727"&gt;Pragmatic Guide to Git&lt;/a&gt;, published by Pragmatic Programmers and &lt;a href="http://www.amazon.com/gp/product/0596520123/ref=as_li_ss_tl?ie=UTF8&amp;amp;tag=codec04-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=0596520123"&gt;Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development&lt;/a&gt;, by O'Reilly.&lt;/p&gt;  &lt;h3&gt;Cheat sheets&lt;/h3&gt;  &lt;p&gt;Then come the cheat sheets: &lt;a href="http://help.github.com/git-cheat-sheets/"&gt;GitHub lists a few ones&lt;/a&gt;. &lt;/p&gt;  &lt;p&gt;But I particularly like the one on &lt;a href="http://refcardz.dzone.com/refcardz/getting-started-git"&gt;DZone&lt;/a&gt;, which besides being a cheat sheet is also a compendium of the main key points, and one of the first, but still one of the best, &lt;a href="http://zrusin.blogspot.com/2007/09/git-cheat-sheet.html"&gt;git cheat sheet&lt;/a&gt;.&lt;/p&gt;  &lt;h3&gt;Contributing to Open Source Projects On GitHub For .NET Developers video series&lt;/h3&gt;  &lt;p&gt;UPDATE: suggested by &lt;a href="http://iamnotmyself.com"&gt;Bobby Johnson&lt;/a&gt; in the comments, a series of 3 videos on how to use Git and GitHub for contributing to OSS projects:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://iamnotmyself.com/2010/09/05/contributing-to-open-source-projects-on-github-for-net-developers-part-1/"&gt;Installation &amp;amp; GitHub Account Creation &amp;amp; Setup&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://iamnotmyself.com/2010/09/05/contributing-to-open-source-projects-on-github-for-net-developers-part-2/"&gt;Publishing a Visual Studio Project to GitHub &amp;amp; Basic Git Workflow&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a href="http://iamnotmyself.com/2010/09/08/contributing-to-open-source-projects-on-github-for-net-developers-part-3/"&gt;Forking a Project, Keeping It Up To Date &amp;amp; Basic Contribution Strategy&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;h3&gt;The GitHub Flow&lt;/h3&gt;  &lt;p&gt;One thing is to know the commands and how to use them, another matter is using it with the right approach and workflow.&lt;/p&gt;  &lt;p&gt;I found two nice blog posts that explain two different versioning/branching strategies:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;The usual workflow based on master + develop and feature branches, release branches, hot-fix branches, this time referred to as &lt;a href="http://nvie.com/posts/a-successful-git-branching-model/"&gt;Git-Flow&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;The &lt;a href="http://scottchacon.com/2011/08/31/github-flow.html"&gt;workflow used by GitHub itself&lt;/a&gt;, which is kind of less formal in some ways (no tons of release-based branches) and more strict in other ways (never commit to master without a code review and a pull request). &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;One works great if you have a product with formal releases and have the time and resources to manage all that formal branches, the other works great in less formal environment, with continuous deployments, and no formal releases.&lt;/p&gt;  &lt;h3&gt;Some other useful links&lt;/h3&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://codeclimber.net.nz/archive/2009/03/26/how-to-quickly-get-started-with-gitgithub.aspx"&gt;How to quickly get started with Git/GitHub&lt;/a&gt; – that was my original post from 2009, where I first collected some other useful (but probably outdated) links. &lt;/li&gt;    &lt;li&gt;&lt;a href="http://gitref.org/"&gt;Git Reference&lt;/a&gt; – Comprehensive Git reference site. &lt;/li&gt;    &lt;li&gt;&lt;a href="http://git-scm.com/documentation"&gt;Official Git documentation&lt;/a&gt; – The official documentation on the Git website. &lt;/li&gt;    &lt;li&gt;&lt;a href="http://help.github.com/"&gt;GitHub documentation&lt;/a&gt; – how to use GitHub &lt;/li&gt;    &lt;li&gt;&lt;a href="http://marklodato.github.com/visual-git-guide/index-en.html"&gt;A Visual Git Reference&lt;/a&gt; – nice reference with lots of visuals &lt;/li&gt;    &lt;li&gt;&lt;a href="http://rogerdudler.github.com/git-guide/"&gt;The Git Simple Guide&lt;/a&gt; – very simple step-by-step tutorial &lt;/li&gt; &lt;/ul&gt;  &lt;h3&gt;Do you have any other resources to recommend?&lt;/h3&gt;  &lt;p&gt;This is what I found, and apparently what the most popular resources are. But I’d love if you could add your own findings by posting a comment.&lt;/p&gt;  &lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:6c44946e-f3bd-4ad4-8314-f5154773b3e1" class="wlWriterEditableSmartContent"&gt;Tags: &lt;a href="http://codeclimber.net.nz/tags/git/default.aspx" rel="tag"&gt;git&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/github/default.aspx" rel="tag"&gt;github&lt;/a&gt;, &lt;a href="http://codeclimber.net.nz/tags/subtext/default.aspx" rel="tag"&gt;subtext&lt;/a&gt;&lt;/div&gt;&lt;img src="http://codeclimber.net.nz/aggbug/974.aspx" width="1" height="1" /&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=iElgMI3wvbw:hgio464DEvc:D7DqB2pKExk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=iElgMI3wvbw:hgio464DEvc:D7DqB2pKExk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=iElgMI3wvbw:hgio464DEvc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=iElgMI3wvbw:hgio464DEvc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=iElgMI3wvbw:hgio464DEvc:G79ilh31hkQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=G79ilh31hkQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=iElgMI3wvbw:hgio464DEvc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Codeclimber?a=iElgMI3wvbw:hgio464DEvc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Codeclimber?i=iElgMI3wvbw:hgio464DEvc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Codeclimber/~4/iElgMI3wvbw" height="1" width="1"/&gt;</description>
            <dc:creator>Simone Chiaretta</dc:creator>
            <guid isPermaLink="false">http://codeclimber.net.nz/archive/2012/01/11/Getting-stated-with-Git-and-GitHub.aspx</guid>
            <pubDate>Wed, 11 Jan 2012 10:32:00 GMT</pubDate>
            <comments>http://codeclimber.net.nz/archive/2012/01/11/Getting-stated-with-Git-and-GitHub.aspx#feedback</comments>
            <slash:comments>7</slash:comments>
            <wfw:commentRss>http://codeclimber.net.nz/comments/commentRss/974.aspx</wfw:commentRss>
        <feedburner:origLink>http://codeclimber.net.nz/archive/2012/01/11/Getting-stated-with-Git-and-GitHub.aspx</feedburner:origLink></item>
    </channel>
</rss>

