вторник, 19 февраля 2013 г.

Visual Studio Feeds English

Visual Studio Feeds English


Developer training, where to go?

Posted: 19 Feb 2013 11:23 AM PST

Quite often people come to me and ask me: how do you manage to keep up with what's going on in your field?

Microsoft Surface Pro

Posted: 19 Feb 2013 11:23 AM PST

I admit it. I am one lucky guy. Figure this: Microsoft just came out with the Surface Pro, a nice machine that has

Get You Some DZone Refcardz

Posted: 19 Feb 2013 11:23 AM PST

Originally posted on: http://geekswithblogs.net/tmurphy/archive/2013/02/19/get-you-some-dzone-refcardz.aspx (http://geekswithblogs.net/tmurphy/archive/2013/02/19/get-you-some-dzone-refcardz.aspx)DZone (http://dzone.com) is a great technology site and their Refcardz (http://refcardz.dzone.com/) are a great

Some Notes On Screencasting

Posted: 19 Feb 2013 09:52 AM PST

I put together some notes for my team, on building some screencasts. I thought they came out fairly well, so I wanted to

Trust and NuGet

Posted: 19 Feb 2013 08:51 AM PST

How can you trust anything you install from NuGet? It's a simple question, but the answer is complicated. Trust is not some binary

Microsoft's Windows Blue may have just hit milestone 1

Posted: 19 Feb 2013 06:50 AM PST

Alleged screen shots of Windows Blue have hit the Web just as Microsoft is said to have reached the half-way mark in the

TryParse Extensions

Posted: 19 Feb 2013 06:35 AM PST

Originally posted on: http://geekswithblogs.net/Nettuce/archive/2013/02/19/tryparse-extensions.aspx (http://geekswithblogs.net/Nettuce/archive/2013/02/19/tryparse-extensions.aspx) public static class TryParseExtensions     {         delegate bool TryParseFunc(string input, out T output);         static readonly ConcurrentDictionary Delegates = new ConcurrentDictionary();         static TryParseExtensions()         {             CacheTryParseFor(bool.TryParse);             CacheTryParseFor(byte.TryParse);             CacheTryParseFor(DateTime.TryParse);             CacheTryParseFor(decimal.TryParse);             CacheTryParseFor(double.TryParse);             CacheTryParseFor(Int16.TryParse);             CacheTryParseFor(Int32.TryParse);             CacheTryParseFor(Int64.TryParse);             CacheTryParseFor(Single.TryParse);         }         public static bool Is(this string s)         {             return TryParse(s).Item1;         }         public static T As(this string s)         {             return TryParse(s).Item2;         }         static Tuple TryParse(string s)         {             var dlg = Delegates[typeof(T)] as TryParseFunc;             T value;             var result = dlg(s, out value);             return new Tuple(result, value);         }         static void CacheTryParseFor(TryParseFunc tryParseFunc)         {             Delegates.TryAdd(typeof(T), tryParseFunc);         }     } ...(Read whole news on source site) (http://geekswithblogs.net/Nettuce/archive/2013/02/19/tryparse-extensions.aspx)

TypeScript for .Net Developers

Posted: 19 Feb 2013 06:35 AM PST

Unit testing in TypeScript is already possible with QUnit. Other efforts also show that unit testing is possible using Jasmine and Chutzpah.

The Evolution of DevLabs

Posted: 19 Feb 2013 05:19 AM PST

A little over four years ago, we created the DevLabs portal on MSDN.  The idea behind this site was to provide a hub

Free SignalR ebook

Posted: 19 Feb 2013 04:17 AM PST

SignalR (http://blog.krisvandermast.com/ct.ashx?id=c9e40517-1109-4fec-a12a-aa32f5851f63&url=http%3A%2F%2Fweblogs.asp.net%2Fscottgu%2Farchive%2F2013%2F02%2F18%2Fannouncing-release-of-asp-net-and-web-tools-2012-2-update.aspx) went (http://blog.krisvandermast.com/ct.ashx?id=c9e40517-1109-4fec-a12a-aa32f5851f63&url=http%3A%2F%2Fwww.hanselman.com%2Fblog%2FReleasedASPNETAndWebTools20122InContext.aspx) RTW (http://blog.krisvandermast.com/ct.ashx?id=c9e40517-1109-4fec-a12a-aa32f5851f63&url=http%3A%2F%2Fsignalr.net%2F) last Monday which is awesome. Which is even more awesome is that at the MVP

Комментариев нет:

Отправить комментарий