Archive for October, 2008
Redmine Email 504 5.7.4 Unrecognized authentication type
When sending test email or sending email notification in Redmine, you see the follow error, An error occurred while sending mail (504 5.7.4 Unrecognized authentication type ) This is caused by the target SMTP service may not require any authentication while sending the email from your application. In order to make Redmine email work properly, [...]
Google Gears – A Client Programming Framework?
Google Gears beta is an extension to the browsers, it provides extra functionality for javascript applications to cache resources aka localserver, relational database (SQLite) and a worker thread pool. localserver Instead of remote server, this feature allows resources like html, javascript or images cached locally on desktop’s hard disk. This makes offline web application possible. [...]
C# To Upper Case First Letter of a String
Utilize a simple extension method to capitalize the first letter of a string. public class Program { static void Main(string[] args) { string s = “toUpperFirstLetter”; // ToUpperFirstLetter is the extension method defined [...]