Technology Related Links for May 13th

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord. This series can be followed by using the Hot Links tag. Series Post #12 The asp.netPRO 2009 Readers’ Choice Award Winners haveen been announced. Daily Quote – "$(document).ready() is the new Page_Load" (Posted by Scott Koon) .NET Languages – C# and Visual Basic ARCast.TV – Kevin Hazzard on Dynamic Languages – G. Andrew Duthie Sneak Preview: Persistence Ignorance and POCO in Entity Framework 4.0 – ADO.NET Team The Road to 4 – WCF Changes between Beta … Continue reading Technology Related Links for May 13th

Technology Related Links for May 8th, 2009

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord. This series can be followed by using the Hot Links tag. Series Post #9 Daily Quote – The Rule of Software Development… "Fast, good, cheap: pick any two." (Posted by Elijah Manor) .NET Languages – C# and Visual Basic Microsoft Axum – A .NET language for safe, scalable and productive parallel programming through isolation, actors and message-passing – Greg Duncan (Suggested by Jon Galloway) Architecture, Design Patterns, and Testing Making the untestable testable with Anonymous Methods … Continue reading Technology Related Links for May 8th, 2009

Technology Links for May 7th, 2009

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord. This series can be followed by using the Hot Links tag. Series Post #8 Daily Spoof – CannonPI featuring Microsoft Employees .NET Languages – C# and Visual Basic .NET MF moves to Developer Division – Colin Miller (Suggested by Scott Hanselman) .NET’s Most Influential People in 2009 – Jay Kimble (Suggested by Elijah Manor) Architecture, Design Patterns, and Testing Dependency Injection with the Spring Framework – Tutorial – Lars Vogel Multithreading: immutability – Luis Abreu ASP.NET … Continue reading Technology Links for May 7th, 2009

Technology Related Links for May 5th, 2009

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord. This series can be followed by using the Hot Links tag. Series Post #6 News of the Weird – World’s Largest Hamburgers in Clearfield, Pennsylvania (Posted by VisitPA) .NET Languages – C# and Visual Basic .NET Fireside Chats – Bill Evjen on Professional ASP.NET 3.5 SP1 – Alvin Ashcraft Top 10 Open Source Projects for .NET Developers – Alvin Ashcraft Architecture, Design Patterns, and Testing Castle Windsor 2.0 RTM Released – Oren Eini Common Logging 2.0 … Continue reading Technology Related Links for May 5th, 2009

Technology Related Links for May 1, 2009

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord Series Post #4 I’ve streamlined the categories a bit more. I’m also going to add suggestions that I come across on Twitter. Do you have any suggestions for my link series? Let me know by leaving a comment here. Whether it is additional resources to find links or changing the format – all suggestions are welcome! .NET Languages – C# and Visual Basic An Introduction to Mixins for C# – Justin Etheredge Assigning from Nullable Types … Continue reading Technology Related Links for May 1, 2009

Technology Related Links for April 30, 2009

If you are looking to follow this series, be sure to subscribe to my RSS feed at http://feeds.jasongaylord.com/JasonNGaylord or my Twitter account at http://twitter.com/jgaylord Series Post #3 Architecture and Design Patterns Agile Project Management – Thought Works Learning the Adapter Pattern – Derik Whittaker SOA – Coupling – Jean-Jacques Dubray ASP.NET ASP.NET for Web Designers – Introduction The Four Pillars of ASP.NET – Paul Litwin ASP.NET MVC AntiForgeryToken in the ASP.NET MVC Framework – David Hayden Video: Introduction to Moq – Alvin Ashcraft Browser Swine Flu Tracker IE Webslice Released – Channel 9 YSlow Add-In Updated – Yahoo! Cloud Services … Continue reading Technology Related Links for April 30, 2009

IIS7 Integrated Mode and Global.asax

In IIS7, there are two modes for ASP.NET application pools: classic mode (only mode available for IIS6) and integrated mode. Integrated Mode offers quite a bit with IIS7 and is the recommended mode for application pools (more details at http://learn.iis.net/page.aspx/244/how-to-take-advantage-of-the-iis7-integrated-pipeline/). One of the changes is that the Integrated mode does not have access to the HttpContext during the Application_Start method in the global.asax. It also has an affect on HttpModules and HttpHandlers that reference the HttpContext as well. You’ll want to keep this in mind when building your application structure.