Emad's Blog

Thoughts/Tips/Shortcuts/Ideas from a .NET software engineer

Archive for September, 2008

Good Links, September 29, 2008

Posted by emadmagdy on September 29, 2008

A huge number of videos covering a very wide variety of sciences/events/interviews/etc..   http://videolectures.net/

Top 100 Blogs for software development managers: http://www.noop.nl/2008/09/top-100-blogs-for-development-managers-q3-2008.html

New Patterns and Practices application architecture guidelines: http://www.codeplex.com/AppArch some ares of interest there:

      Architecture and design: http://www.codeplex.com/AppArch/Wiki/View.aspx?title=Architecture%20and%20Design%20Guidelines&referringTitle=Guidelines

     Service Layers Guidelines: http://www.codeplex.com/AppArch/Wiki/View.aspx?title=Service%20Layer%20Guidelines&referringTitle=Guidelines

    Business Layers guidelines: http://www.codeplex.com/AppArch/Wiki/View.aspx?title=Business%20Layer%20Guidelines&referringTitle=Guidelines

   Presentatgion Layer Guidelines: http://www.codeplex.com/AppArch/Wiki/View.aspx?title=Presentation%20Layer%20Guidelines&referringTitle=Guidelines

Posted in Uncategorized | Tagged: | Leave a Comment »

Good Links, September 26, 2008

Posted by emadmagdy on September 26, 2008

Posted in Uncategorized | Leave a Comment »

Turning Log4net on/off programmatically

Posted by emadmagdy on September 22, 2008

 

to turn it off

   log4net.LogManager.GetRepository().Threshold= log4net.LogManager.GetRepository().LevelMap["OFF"];

     

to turn it on

   log4net.LogManager.GetRepository().Threshold= log4net.LogManager.GetRepository().LevelMap["ALL"];

Posted in Uncategorized | Leave a Comment »

Good Links September 22, 2008

Posted by emadmagdy on September 22, 2008

Posted in Uncategorized | Leave a Comment »

Google Releases its own Browser – Chrome

Posted by emadmagdy on September 2, 2008

Today Google Released its new browser (Chrome), the beta version can be found at http://www.google.com/chrome

A comic book explains what’s new in chrome and the idea behind it http://www.google.com/googlebooks/chrome/index.html

Posted in Uncategorized | Leave a Comment »