.NET
Archived Posts from this Category
Posted by Chris Alcock on 10 May 2013 | Tagged as: .NET, Development, Morning Brew
Update: The joke was on me, with a bit of broken HTML in today’s Humour link causing issues with the rest of the page - thanks to Damien for letting me know via the comments
Software
- jQuery Migrate 1.2.1 Released - Dave Methvin announces the release of jQuery Migrate 1.2.1 which addresses a regression defect in version 1.2 regarding rejection of valid HTML strings. The release is already available on the jQuery CDN in both minified and non-minified forms.
- Toastr 1.3.0 Now Available - John Papa announces the release of Toastr 1.3.0 the latest update to this nice simple JavaScript based Toast Notification library
Information
- Entity Framework Code First Validation & Entity Framework Code First Fluent Validation - Ricardo Peres takes a look at performing validation with Enfity Framework Code First entities exploring the various approaches to validation available in the box, and also explores constructing validation using a Fluent Interface
- Getting started with ScriptCS - Scott Smith shares an introductory look at ScriptCS, giving a nice getting started overview looking at installation, running samples, and starting writing your own scripts .
- Consistent error handling with Nancy - Paul Stovell is setting about moving his Octopus Deploy portal to run under NancyFX and in this post shares some of his experiences working with and handling errors in a Nancy based application
- W3C Transitions Pointer Events to Candidate Recommendation - Jacob Rossi highlights the change in status of the W3C Pointer Events to become a Candidate Recommendation. This specification is a concerted effort by browser vendors to standardise the various mouse and touch events to allow better more efficient development for application developers.
- When To Comment Your Code - Steve Smith discusses the art and science of commenting your code, drawing on various points of view in well know software development related books
Community
Humour
- Developer humor - Jason Jarrett highlights a couple of amusing developer related collections of animated gifs covering everything from Git to Project Management
2 Comments »
Posted by Chris Alcock on 09 May 2013 | Tagged as: .NET, Development, Morning Brew
Software
Information
Community
- Live blogging at OuterConf2013 - Paula Hunter shares links to the presentations from OuterConf 2013, the OuterCurve foundation’s conference for open source development
No Comments »
Posted by Chris Alcock on 08 May 2013 | Tagged as: .NET, Development, Morning Brew
Software
Information
- scriptcs gets a REPL! - Glenn Block announces the release of a REPL (Read Evaluate Print Loop) for ScriptCS which gives an interactive ScriptCS experience affording easy experimentation and many other powerful scenarios.
- .NET Security Part 2 - Simon Cooper continues his series looking at Security in .NET with a look at creating appdomains with different trust levels giving sandboxes for code to play in without exposing the whole application to it.
- 10 Years (of the CSS Zen Garden) - Dave Shea announces a refresh of the CSS Zen Garden, now 10 years old, and opens up to submissions using the best of CSS3 and Responsive Design. The original Zen Garden was a great resource in in early days of selling people on the concept of CSS based layouts, and I hope the new Zen Garden reaches these heights.
- .NET Crash Dump and Live Process Inspection - Lee Culver shares a look at a new managed library from the .NET Runtime Team which allows you to automate debugging inspection and capture more information about your crashes. The library, Microsoft.Diagnostics.Runtime or ClrMD) provides a code interface to working with a processes state, and is certainly something I’ll be having a play with in the future.
- Handling IE 9 & 10’s and Chrome’s clear button with Knockout binding
- Kevin Logan takes a look at an interesting problem when working with Knockout.js in modern browsers which have additional functionality in the input text box
- An Editor Pattern for Knckout.js Using TypeScript Inheritance - Steve Michelotti shares a look at an editor pattern for Knockout based code which provides for the accept / cancel of user changes
Community
- Free Visual Studio Lifecycle Tools Events - Mike Taulty highlights the latest series of events from the team at Microsoft UK, which will be taking a look at the Application Lifecycle Management features of Visual Studio / TFS in Cardiff, Nottingham, Reading, London and Glasgow during May and June
No Comments »
Posted by Chris Alcock on 07 May 2013 | Tagged as: .NET, Development, Morning Brew
Software
Information
- Producing permutations, part seven - Eric Lippert returns for another instalment of his series looking at the production of permutations, digging into the answer to the poser in the last post about random permutations of a deck of cards
- The future is now - OWIN and multi-hosting ASP.NET web applications - Filip W takes us to the bleeding edge exploring the capabilities of the nightly builds from the ASP.NET team of Katana and ASP.NET Web API, looking at the support for multi-hosting in self host scenarios
- One ASP.NET: Nancy.Templates for Visual Studio - Scott Hanselman shares a look at the NancyFX Visual Studio templates showing how they provide valuable starting points for Nancy development, and take advantage of the extensibility in Visual Studio, which is still sadly more complicated than folk would like it to be,
- The Benefits of a Reverse Proxy - Mike Hadlow takes a few moments to consider the architectural benefits of running web infrastructure behind a reverse proxy, allowing it to shield your infrastructure and provide valuable services on top of a multi-server setup.
- Resources for Learning CoffeeScript & 10 CoffeeScript Features You Might Not Know - Jaco Pretorius highlights some nice resources for getting up and running and deepening your understanding of the CoffeeScript language, as well as highlighting 10 useful and interesting aspects of the language.
No Comments »
Posted by Chris Alcock on 02 May 2013 | Tagged as: .NET, Development, Morning Brew
Software
- Announcing the Release of WebMatrix 3 & Announcing WebMatrix 3 - Scott Guthrie and Justin Beckwith announce the release of WebMatrix 3, the latest edition of Microsoft’s lightweight web development tooling which enables development in ASP.NET, PHP and Node.js. This release centres around the Windows Azure integration, improving remote editing capabilities and integration with TFS and Git.
- jQuery Migrate 1.2.0 Released - Dave Methvin announces the release of jQuery Migrate 1.2.0 which can be used with jQuery 1.9 or 2.0 to plug the gaps in the API where methods have been removed, providing a means of gradually updating your applications to use only the supported functionality of the V1.9 and v2.0 versions.
Information
Community
- DDD East Anglia Sessions - Session Voting for DDD East Anglia, the first DDD event of the year, has now opened, with most of the month available for voting on a great range of sessions.
- NxtGenUG - Event: Windows Azure Websites - The Hereford NxtGenUG chapter welcome Richard Conway for a session looking at the use of Windows Azure Websites for hosting your applications on Monday 13th May.
No Comments »
Posted by Chris Alcock on 01 May 2013 | Tagged as: .NET, Development, Morning Brew
Update: Fixed the link on the Async Controllers article, another victim of the trailing r ‘human error’ - thanks to Ruud for letting me know.
Software
- Announcing the release of Windows Azure SDK 2.0 for .NET - Scott Guthrie announces the release of the Windows Azure SDK 2.0 for .NET . This release adds improved support for Azure Websites publishing management and diagnostics from within Visual Studio, support for the new larger Virtual Machine sizes, updated PowerShell integration and much more.
- New Features in the Latest ReSharper 8 EAP - The ReSharper Team over at JetBrains announce their latest Early Access Preview release of ReSharper 8, with its major new feature, a NuGet Gallery based extension Manager making it ever easier to obtain and install ReSharper extensions. This release also has a bunch of other new templating and navigating features.
Information
- A WebAPI Basic Authentication MessageHandler - Rick Strahl follows on from his previous post on WebAPI authentication with a look at implementing the same functionality as he did using a filter in the previous post, this time looking at implementing it ‘the correct’ way using a MessageHandler.
- Async Controller In MVC 4 - Prashant Khandelwal takes an introductory look at implementing ASP.NET MVC4 controllers using the AsyncControler to allow the use of tasks to improve the straight line speed of your actions.
- A View Engine for ASP.NET MVC Feature-Based Organized - Matt Honeycutt takes a look at the default ASP.NET MVC file layout conventions and shares a View Engine which operates to different conventions, showing how you can provide support for your on desired layout
- CDNs fail, but your scripts don’t have to - fallback from CDN to local jQuery - Scott Hanselman discusses the ultimate responsibility for the availability of web applications, and takes a look at how you can cater for situations where the Content Delivery Network may go down, exploring how you can ensure that your site continues to operate in such a situation.
- MSDN Magazine May Issue Preview - Michael Desmond gives a preview of the content coming in the May edition of MSDN Magazine which should be available online late today
- Node at Work: A Walkthrough - Garann Means takes a look at the use of Node.js as a rapid prototyping language to quickly building application prototypes / designs in this A List Apart article.
Community
1 Comment »
Posted by Chris Alcock on 30 Apr 2013 | Tagged as: .NET, Development, Morning Brew
Software
- Team Explorer Everywhere 2012 Update 2 - Brian Harry makes the more formal announcement of Team Explorer Everywhere Update 2, a minor improvements and bug fix release which addresses a number of issues.
- NuPattern Released! - Jezz Santos announces the first release as NuPattern of the project previously called VSPAT which provides a framework to create custom extensibility and tooling in Visual Studio
- Less Than Dot - Blog - Windows Azure Training Kit April 2013 Released - SQLDenis highlights the release of the April 2013 edition of the Windows Azure Training Kit, including newly refreshed infrastructure services related content and 4 new labs sessions.
Information
- Producing permutations, part five - Eirc Lippert continues his exploration of permutations, looking at the representation of numbers in textual and the actual meaning of this under the hood, exploring different bases and considering what happens if the base is different for different digits, relating it all back to permutations.
- Moving 4th & Mayor to Windows Azure Web Sites - Jeff Wilcox - Jeff Wilcox discusses and shares his experiences moving the backend of his 4th & Mayor FourSquare application onto Windows Azure, discussing the state of SSL support, deploying node.js code to the server and monitoring using the Azure portal.
- rwldrn/idiomatic.js - idiomatic.js is a nice coding style guide for JavaScript which aims to lead you towards good practices to ensure consistent JavaScript code
- Entity Framework Code First Inheritance & Entity Framework Code First Relations - Ricard Peres gives a useful reference to the way Entity Framework Code First can model inheritance structures and relationships between types
- Windows Azure joins Microsoft’s billion-dollar business club - Mary Jo Foley highlights the news that Windows Azure has entered the 1 billion club at Microsoft - congratulations to all involved in making Azure a success thus far.
Community
- dotnetConf - The .NET Community Virtual Conference - All the sessions from DotNetConf last week are available online, your chance to get 2 whole days of conference material on a range of subjects but all .NET related.
- Seriously Open, Definitely Required - Nik Molnar highlights a the Seriously Open podcast from Nick Berardi, and Justin Rusbatch , now onto its second episode looking at all things opens source in the ,NET ecosystem,
No Comments »
Posted by Chris Alcock on 29 Apr 2013 | Tagged as: .NET, Development, Morning Brew
There is probably only one thing worse than an broken ADSL connection, and that is a down-more-than-up intermittent ADSL connection, something which has been plaguing me all weekend. As a result, today’s edition is a little shorter than planned.
Update: Fixed the link to John Papa’s DotNetConf post - thanks to David for letting me know via the comments
Software
- Windows Azure: Improvements to Virtual Networks, Virtual Machines, Cloud Services and a new Ruby SDK - Scott Guthrie announces the latest batch of improvements to the Windows Azure Platform, including point to point virtual networks, PowerShell management of Virtual Machines, Remote Desktop enabling on Web/Worker Roles, and anew SDK for developers working in Ruby
- The Windows Azure SDK for Ruby - Larry Franks takes a look at the Azure SDK for Ruby, discussing obtaining the library and linking out to the various components of the documentation for working with Azure in Ruby.
- Visual Studio Tools for Git Update available - Brian Harry announces a new update to the Visual Studio Git Integration which builds on that shipped in Visual Studio 2012 Update 2, offering improved performance, better support for larger repositories, support for non-conflicting local changes when pulling and merging, along with a bunch of other improvements.
- Umbraco - Security vulnerability found - immediate action recommended - The Niels Hartvigof the Umbraco Team reveal some details and a work around for a security hole found in many versions of Umbraco. If you make use of this CMS check out this post to see if you are affected.
Information
- ASP.NET Web API and greedy query string parameter binding - Filip W follows on from his previous post by answering a question about binding to route values but not query string components, looking at how Web API provides the flexibility to do this.
- Using Remote Powershell with Windows Azure Virtual Machines - Sandrino Di Mattia takes a look at using the Remote Powershell support just introduced for Windows Azure Virtual Machines, showing how to enable it and giving a taste of it in use.
- On Types - Ted Neward shares some thoughts on types, and their use in Object Oriented programming, discussing a number of modelling scenarios, and some recommendations about exposing primitives.
- Free Video: SPA Primer with Durandal, Knockout and Breeze - John Papa highlights the video of his session on Single Page Applications presented at DotNetConf last week. All the session videos are on line and are well worth checking out
- Support for Native Projects - The NuGet team highlight the new support for Native (C++) projects included in NuGet 2.5
Community
1 Comment »
« Previous Page — Next Page »