Feedback

Close

Cancel

Already a member?  Login

Latest Stories

Feb 03 Fri

The Morning Brew #1036

Software

  • NCrunch 1.37b Released! - Remco Mulder announces the release of NCrunch 1.37b, containing a raft of fixes for reported issues, along with some interesting new features regarding debugging, performance metrics, code coverage, keyboard shortcuts and much more.
  • Fluqi - Ease using jQuery UI with ASP.NET and ASP.NET MVC - Fluqi is an interesting library which straddles the server and client, providing APIs for applying jQuery UI widgets to your application in a fluent manner. The library is open source, and hosted over on GitHub
  • NuGet Project Uncovered: Burro - Jason Jarrett is continuing his series of posts looking at some of the hidden gems of the NuGet packages feed. Today’s post looks at Burro, a project to parse build output. Be sure to check back through Jason’s posts for the rest of his hidden gems.
  • Rename Visual Studio Window Title extension for Visual Studio 2010 - The ‘Visual Studio add-ins, extensions and tools’ blog highlights a useful looking Visual Studio Extension for anyone who, like me, often has more than one copy of a project open in different Visual Studio Instances - this extension adds more path information to the window title allowing you to beterr distinguish between IDE instances.

Information

2/3/2012 3:31 AM   Chris Alcock   Like   Read   Share


Feb 02 Thu
Source: xkcd.com

Wrong Superhero

2/2/2012 11:00 PM     Like   Read   Share


Feb 02 Thu

The Morning Brew #1035

Apologies for the rather short edition this morning, having some internet connectivity issue, combined with a required early start has resulted in a short one today.

Software

  • Kinect for Windows is now Available! - The Kinect for Windows team announce the release of Kinect for Windows, along with the version 1.0 of the Kinect for Windows SDK and runtime. These new devices have close focusing capabilities and will work with Windows 7 and 8, with the SDK providing for raw sensor streams, skeletal tracking, speech and audio and also offering an improved API.
  • Why Serenade.js? - Jonas Nicklas introduces Serenade,js, a new client side MVC implementation in JavaScript. In the post Jonas discusses why he created the library, and looks at some of its key features
  • Say hello to Bootstrap 2.0 - Mark Otto introduces the next major release of BootStrap, the Twitter front end toolkit for developing websites. V2 responds to the feedback on the previous version, updates documentation completely, introduces a 12 column grid system, adds new JavaScript plugins, and much more.
  • jQuery 1.7.2 Beta 1 Released - The jQuery team announce the first beta release of jQuery 1.7.2, which addresses bugs reported in previous versions. This latest beta is available via the jQuery CDN.

Information

  • The Web is the new Terminal: Are you using the Web’s Keyboard Shortcuts and Hotkeys? - Scott Hanselman discusses the use of keyboard shortcuts in web based applications, showing how you can add hotkeys to your web application, and looking at how a number of well known sites have implemented their hotkeys.
  • Get Started with Node.js + Windows Azure: Resources - Peter Laudati shares a nice collection of resources about all aspects of working with Node.js on the Windows Azure platform, covering getting up and running with Node,js on Azure, the sue of online IDEs, MongoDB, IISNode, and a number of more general Node.js resources.
  • MSDN Magazine - February 2012 - The February edition of MSDN Magazine is now available online, featuring articles on Async Programming in C++ using PPL, Building consumer device applications using Windows Azure, ASP.NET MVC Model Binding, HTML5, Windows Workflow 4.5, Nuget, Knockout.js, and much more
  • February’s PragPub magazine - The Pragmatic Programmers have released their February edition of PragPub magazine, with articles this month looking at tips for agile leaders and freelancers, Scala, and all the usual editorial content
  • Prompts and Directories - Even Better Git (and Mercurial) with PowerShell - Scott Hanselman also looks at how you can improve your use of command line version control systems using Powershell, and some community extensions.
2/2/2012 1:17 AM   Chris Alcock   Like   Read   Share


Feb 01 Wed

More Flexible Routing For ASP.NET Web Pages

(SUMMARY) The built-in Web Pages routing system offers a fair degree of freedom in terms of how friendly URLs can be constructed and managed. However, the major limitation with the standard routing mechanism is that it relies on matching segments of the URL to...
2/1/2012 3:52 PM     Like   Read   Share


Feb 01 Wed

Rethinking Routing in Rails

(SUMMARY) You know when you see code like this: class CompulsionsController ApplicationController # ... standard actions above here def update if params :obsessions . include ? ObsessionsTypes :murdering_small_animals handle_sociopathic_obsessions redirect_to...
2/1/2012 5:44 AM   Sammy Larbi   Like   Read   Share


Feb 01 Wed
Source: Rick Strahl

Dynamic Types and DynamicObject References in C#

(SUMMARY) I've been working a bit with C# custom dynamic types for several customers recently and I've seen some confusion in understanding how dynamic types are referenced. This discussion specifically centers around types that implement IDynamicObject or...
2/1/2012 4:47 AM   Rick Strahl   Like   Read   Share


Feb 01 Wed

The Morning Brew #1034

Software

  • Umbraco 5.0 RTM is on CodePlex, ready for download - The Umbraco team announce the RTM release of V5.0. This release is a major milestone for the project, taking the key features of 4.7 and re-writing on the ASP.NET MVC stack, allowing use of Razor, along with the core CMS functionality.
  • Debugger Canvas 1.1 is Released! - Kael Rowan announces the 1.1 release of the Debugger Canvas extension for Visual Studio. The release addresses a number of bugs, improves performance and also includes some new features including the ability to turn the canvas on or off during debugging, view multithreaded code on canvas, navigate more easily through code and view recursive calls side by side.
  • StyleCop 4.7.7.0 released - Tatworth highlights the release of StyleCop 4.7.7.0 which includes compatibility with the Visual Studio 11 preview release and ReSharper 5.1, 6.0, 6.1 and 6.1.1, along with addressing further bugs.

Information

2/1/2012 3:34 AM   Chris Alcock   Like   Read   Share


Jan 31 Tue
Source: xkcd.com

Baby Names

1/31/2012 11:00 PM     Like   Read   Share


Jan 31 Tue

ASP.NET MVC: The Features and Foibles of ASP.NET MVC Model Binding

(SUMMARY) Dive deep into the heart of ASP.NET MVC’s model binding subsystem, examining each layer of the model binding framework and ways to meet your application’s needs. Jess Chadwick MSDN Magazine February 2012
1/31/2012 6:00 PM   MSDN Magazine   Like   Read   Share


Jan 31 Tue

The Morning Brew #1033

Software

  • Beta release of the Amazon Web Services (AWS) SDK for Windows Phone - Lee Stott highlights the release of the Amazon Web Services SDK for Windows Phone allowing you to consume the range of Amazon Services (S3, SimpleDB, SQS Cloud Services) from the comfort of a sensible Windows Phone compatible API. Lee highlights a good set of resources for getting up and running with the library including video content from Channel 9.

Information

  • Anonymous Types Unify Within An Assembly, Part Two - Eric Lippert continues his discussion of anonymous types within assemblies, and the unification of types which contain the same definition.
  • Currying vs partial function application - Jon Skeet discusses the differences between the functional programming concepts of currying and partial application, looking at doing both in C# when programming in a more functional programming style.
  • Hazards of Converting Binary Data To A String - Phil Haack picks up on an interesting group of questions on StackOverflow discussing how you can represent binary data as a string, and looking at the implications of the encoding used as to what it does to the data being encoded, and how it can result in changes to the actual bytes being written.
  • About Orchard Governance and Microsoft - Bertrand Le Roy discusses the recent change to the Orchard project, and how the project which was initiated by Microsoft has now been formally handed over to the community in a more complete way than many company created open source projects have been in the past.
  • The new OpenEverything organization - While on the topic of Open Source project involvement, Sebastien Lambla discusses some of the organisation changes for the OpenEverything (OpenWrap, OpenRasta, OpenFileSystem,…) projects and how he is now focusing his involvement.
  • From Concept to Code in 6 hours: Shipping my first Windows Phone App - Scott Hanselman walks through the creation of his very first Windows Phone 7 Application, from concept to application in 6 hours, sharing the key bits along the way.
  • 31 Weeks of Windows Phone Metro Design - #5 Choosing between Panoramas, Pivots and/or Pages. - Arturo Toledo is into week 5 of his 31 post series looking at all aspects of Windows Phone Metro design. This post takes a look at the three key UI concepts beginning with ‘P’ - Panorama, Pivots and Pages, looking at their use and how they are similar to other more familiar design concepts.
  • The Big Dummies Guide for Windows Phone Developer Resources - Bil Simser shares a great collection of Windows Phone development resources, ranging from articles, frameworks, design concepts, training, to marketing and monitzation of applications.
  • Winning on the Marketplace: The differentiation game - Paul Laberge discusses how you can make your applications stand out in the Windows Phone Marketplace, including how some application feature will make users love your application all the more.
  • Introducing Apache Hadoop Services for Windows Azure - Roger Jennings discusses the use of Apache Hadoop Services on Windows Azure, looking at and highlighting some posts on the concepts and product, before walkig through two tutorials, and highlighting plenty of further resources.
  • Find the jQuery Bug #3: Give Me Truth - Elijah Manor is running a series of posts looking at common bugs found in jQuery consuming code, and discussing what the problem is, and how you can resolve the issue.
  • Testing a jQuery Plugin with ExpectThat and Mocha - Dan Mohl continues discussion of his ExpectThat library for CoffeeScript / JavaScript assertions, looking in this post at the application of the library in testing a jQuery Plugin
  • Using SpecFlow to drive Selenium WebDriver Tests - Eli Weinstock-Herman discusses the use of SpecFlow combined with the Selenium WebDriver to provide a way fo executing tests derived from human readable requirements, running through the process from scenario to working test

Community

  • SQL Bits X - The Biggest SQL Event in Europe - Sara Allison highlights the SQL Bits X SQL Server event and the associated training days. SQL Bits is a great conference, with SQL experts from all over the world, and this event is particularly special as it also doubles as the UK launch event for SQL Server 2012. Spaces are limited (although it is a large limit) and registrations for both the ‘pay for’ conference / training days and the Free Community Day are currently open.
  • NxtGenUG - Event - Straighten Spaghetti with C# 5 - Jon Skeet takes a trip to Microsoft Research in Cambridge on Thursday 16th February for the NxtGenUG where he will be delivering a session on how C#5 and the new async functionality can help straighten out complex spaghetti code. Be sure to register early for what is bound to be a very popular event.
1/31/2012 3:29 AM   Chris Alcock   Like   Read   Share


NEW! Sunday Magazine

Your news, every week in a magazine!
View on computer or iPad. Click above to read now.
Site © Copyright 2007-2012, BubbleLife Media LLC Privacy Policy Terms of Use
Sunday, February 05, 2012 9:42 PM
Powered by BubbleCommunities 0.10.4413.27815.64
BUBBLELIFE® is a registered trademark and BUBBLELIFE MEDIA™, BUBBLECOMMUNITIES™ and NEIGHBORHOOD BRANDS™ are trademarks of BubbleLife Media LLC. Unauthorized use is prohibited.