Archive for the Category open source

 
 

Microsoft Enterprise Library Logging Block compared to Log4net

I came across this blog post today:

Microsoft Enterprise Library Logging Block compared to Log4net

CassiniEx Web Server

CassiniEx is an enhanced version of the Cassini Personal Web Server developed by Microsoft.

Features

  • Run multiple web sites and applications in a single instance of CassiniEx
  • Each ApplicationHost is loaded only on demand
  • CassiniEx loads in system tray
  • Supports multiple host headers and ports per web site
  • Supports multiple virtual folders
  • Each web site has a log file in W3C extended log file format
  • Each web site can allow or deny remote connections
  • Custom default documents per virtual folder
  • Now supports Keep-Alive connections
  • Support If-Modified-Since and Last-Modified headers to reduce bandwidth
  • Automatically unload AppDomain when Idle for user-defined time
  • Each virtual folder can have custom deny/allow extensions
  • Configuration changes are automatically loaded without having to restart the server

Download CassiniEx here or check out  Korner’s blog for more information.

Aggregated reflection-based ToString() implementation

Instead displaying your object’s public fields(properties) in ordinary way ,that doesn’t so informative

string foo = string.Format( "My name is {0} {1} and my birthday is {2:MM/dd/yyyy}", 
                            p.FirstName, p.LastName, p.BirthDate );

you can print your object using FormattableObject library

Person p = new Person( "Scott","Hanselman",new DateTime(1974,1,22) );
string foo = p.ToString("My name is {FirstName} {LastName} and my birthday is {Birthdate:MM/dd/yyyy}");

Download FormattableObject 0.5

[ Via ComputerZen.com ]

RSS Bandit v1.3.x (Wolverine) Beta

New Features

  • Newspaper styles: Ability to view all unread posts in feeds and categories or all posts in a search folder in a Newspaper view.
  • Column Chooser: Ability to specify which columns are shown in the list view from a choice of Headline, Topic, Date, Author, Comment Count, Enclosures, Feed Title and Flag.
  • Category Properties: It is now possible to specify certain properties for all feeds within a category such as how often they should be updated or how long posts should be kept before being removed.
  • Identities: One can create multiple personas with associated information (homepage, name, email address, signature, etc) for use when posting comments to weblogs that support the CommentAPI.
  • del.icio.us Integration: Users who have accounts on the del.icio.us service can upload links to items of interest directly from RSS Bandit. 
  • Skim Mode: Added option to ‘Mark All Items As Read on Exiting a Feed’.
  • Item Deletion: News items can be deleted by either using the [Del] key or using the context menu. Deleted items go to the "Deleted Items" special folder and can be deleted permanently by emptying the folder .
  • UI Improvements: Tabbed browsers now use a multicolored border reminiscent of Microsoft OneNote.

RssBandit.1.3.0.18.Wolverine.Beta.zip

[ Via John Montgomery's Weblog ]

Enterprise Library 1.0 released

The Enterprise Library is a library of application blocks designed to assist developers with common enterprise development challenges.

The application blocks that comprise the Enterprise Library are the following:

Want to know more about Enterprise Library 1.0 ? Check out Roy Osherove’s blog


Page 4 of 512345