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

Visual Studio Feeds English

Visual Studio Feeds English


Microsoft's Surface Pro: Floor wax or a dessert topping (and does it matter)?

Posted: 05 Feb 2013 12:12 PM PST

The Microsoft Surface Pro is a tablet/PC hybrid that, to me, falls short of being the perfect tablet or the perfect PC. Is

Using a Java Framework with F#: The Stanford Parser for NLP

Posted: 05 Feb 2013 09:55 AM PST

We like to say "F# loves R", because we can use R packages from F#, through an R type provider for F# (http://techblog.bluemountaincapital.com/2012/08/01/announcing-the-f-r-type-provider/).  We

Are you working with QuantLib and F#?

Posted: 05 Feb 2013 09:55 AM PST

Are you working with QuantLib (http://quantlib.org/) and F#? Would you like to share your experiences? I'm looking for people who have used this combination.

Download – iOS 6 Untethered Jailbreak Program evasion

Posted: 05 Feb 2013 05:37 AM PST

Expecting an Untethered Jailbreak Program for iOS 6.1 6.1 The official Evasi0n iOS 6 jailbreak program is released and is now

Powershell script to detect the Windows Azure SDK in Azure Cloud Service VM and fix the ...

Posted: 05 Feb 2013 05:22 AM PST

When you try to run Powershell commands on Windows Azure Cloud Service (PaaS) VM you may have seen exception as below: PS

Windows 8: Creating Great App Bar Buttons

Posted: 05 Feb 2013 04:52 AM PST

With chrome pushed out of Windows 8 Store applications, most of the navigation has been moved into the AppBar.  A good AppBar has

Quick Hits Issue 2: Privacy is Paramount (and easy)

Posted: 05 Feb 2013 03:52 AM PST

In this second issue of Quick Hits, I want to share a couple of good posts on the topic of privacy policies for

Web based Test Hub in TFS Update2 (TFS2012.2) and Team Foundation Service

Posted: 05 Feb 2013 02:51 AM PST

One of the new features coming in the next update wave for Team Foundation Server (TFS2012.2) and for Team Foundation Service (available now)

Caching Set and Get Expressions

Posted: 05 Feb 2013 02:51 AM PST

Originally posted on: http://geekswithblogs.net/Nettuce/archive/2013/02/05/caching-set-and-get-expressions.aspx (http://geekswithblogs.net/Nettuce/archive/2013/02/05/caching-set-and-get-expressions.aspx)    public static class ExpressionCache     {         static readonly ConcurrentDictionary Delegates = new ConcurrentDictionary();         public static void Set(this object obj, string propertyName, object value)         {             CreateDelegate(obj, propertyName, value).DynamicInvoke(obj, value);         }         public static object Get(this object obj, string propertyName)         {             return CreateDelegate(obj, propertyName).DynamicInvoke(obj);         }         static Delegate CreateDelegate(object obj, string propertyName, object value = null)         {             var type = obj.GetType();             var key = type.Name + propertyName + (value == null ? "get" : "set");             if (Delegates.ContainsKey(key))                 return Delegates[key];             var targetParameter = Expression.Parameter(type);             var member = Expression.PropertyOrField(targetParameter, propertyName);             var dlg = value == null ? CreateGetter(member, targetParameter) : CreateSetter(member, targetParameter);             Delegates.TryAdd(key, dlg);             return dlg;         }         static Delegate CreateSetter(MemberExpression member, ParameterExpression target)         {             var memberParameter = Expression.Parameter(member.Type);             var assign = Expression.Assign(member, memberParameter);             return Expression.Lambda(assign, target, memberParameter).Compile();         }         static Delegate CreateGetter(MemberExpression member, ParameterExpression target)         {             return Expression.Lambda(member, target).Compile();         }     } ...(Read whole news on source site) (http://geekswithblogs.net/Nettuce/archive/2013/02/05/caching-set-and-get-expressions.aspx)

Mobile, Cloud are Focuses of Microsoft's 2013 Roadmap

Posted: 05 Feb 2013 12:03 AM PST

Possible products include a Windows 8/RT interim release, and a SQL Server Parallel Data Warehouse update....(Read whole news on

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

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