Editor reviews are provided by professional editors who evaluate a blog based on the following criteria: Frequency of Updates, Relevance of Content, Site Design, and Writing Style.
I think this is a classic post that everyone should read:
The Most Useful .NET Utility Classes Developers Tend To Reinvent Rather Than Reuse
Other Interesting Posts
PHP VS. ASP.NET
Sql Injections and Securing Clipshare Vulnerabilities
Creating...
If you read Creating SqlParameters Best Practices you will find the fun you have if you have null values:
SqlParameter[] sqlParams = new SqlParameter[] {
new SqlParameter("@Required", required),
questionCode == null ? new SqlParameter("@Code",...
Have you ever tried to do a recursive linux search for a text string inside a particular file? For example
grep -r "mail" *.php
and then it fails because the current folder doesn’t have any php files in it?
Here is how you can achieve a search...
Here is a cool way to delete files according to some complex rules without knowing complicated bash commands.
First, create a file as follows that contains your deletion rules.
+ public_html/
+ public_html/*
- access-logs
- etc/
- logs/
-...
Here is a list of new features in ASP.NET 4.0.
Very interesting. Auto start feature, new ways to choose where data is cached, built in option for compression session (via gzip), and more!
Other Interesting Posts
PHP VS. ASP.NET
Sql Injections and...