Click here to Skip to main content
15,886,518 members
Articles / Programming Languages / C#

Desktop Bob - Instant CP notifications

Rate me:
Please Sign up or sign in to vote.
4.84/5 (38 votes)
26 Oct 20027 min read 328K   1.2K   138  
A tool for acessing CodeProject and have instant notifications of Codeproject's posts
using System;

namespace DesktopBob
{
	public interface IPostFilter
	{
		/// <summary>
		/// Should the message be shown?
		/// </summary>
		/// <returns>True when the message should be shown</returns>
		bool isFilter(Post p);
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
CEO
Brazil Brazil
I develop software since I was 11. In the past 20 years, I developed software and used very different machines and languages, since Z80 based ones (ZX81, MSX) to mainframe computers. I still have passion for ASM, though no use for it anymore.
Professionally, I developed systems for managing very large databases, mainly on Sybase and SQL Server. Most of the solutions I write are for the financial market, focused on credit systems.
To date, I learned about 20 computer languages. As the moment, I'm in love with C# and the .NET framework, although I only can say I’m very proficient at C#, VB.NET(I’m not proud of this), T/SQL, C++ and libraries like ATL and STL.
I hate doing user interfaces, whether Web based or not, and I’m quite good at doing server side work and reusable components.
I’m the technical architect and one of the authors of Crivo, the most successful automated credit and risk assessment system available in Brazil.

Comments and Discussions