Most Popular Articles
1 2 3 4 5
Latest Articles

Create a VB.NET app that can be run in only one instance

For some application you make want the user to be able to run only one of their instances (ex. an e-mail client). I found an easy way how it can be done. If you are developing an VB.NET Windows[...]

Blogging Disadvantages

We always read much about advantages of blogging, but in this post is about the disadvantages of blogging. Here some things to consider about blogging: 1. It needs time – it’s the b[...]

Why is === faster than == in PHP?

First, let’s remember the definitions of the operators: The Equal operator ($a == $b) returns TRUE when  $a is equal to $b. The Identical ($a === $b)  returns TRUE when $a is equal to $b[...]

WordPress Resources

If you are a fan of wordpress and you want to learn more about it, here are website where you can learn find wp resources: 1. WP Recipes – quick, clear and concise WordPress recipes. 2. Dig WP [...]

Single huge css file vs. multiple smaller css files

In my websites, I usually use a single css file for all css code in the site. Today I though more is it correct to be done instead of adding multiple, but smaller css files, here’s what I found:[...]

Analyze Twitter Traffic Tools

If you have a Twitter account, you may want to be able to analyze the traffic to your micro-blog. Here are some free tools that could help you: 1. Tweet Stats – graph your twitter stats includi[...]

Convert URL to PDF

I found a great tool that allows you to convert any url to a pdf document 100% free. Just visit http://pdfmyurl.com, type your  url in the text box and click on the convert button. I converted my sit[...]

Things you probably didn’t know about C# – Part 2

After a post about Things you probably didn’t know about C#, here’s a new post from the series: 1. If you want to exit you app without calling any finalizers or finally blocks use: Environment.FailFas[...]

20 Blog Design Tips

There are so many blog templates and you can even create the design of your blog easily. But what kind of design should the successful blog have? I though more about the design of my blog. I read some[...]

Common PHP Best Practices

After posts about php best practices in security and performance, here is a list of common php best practices: 1. Always use the standard php tags, ex. <?php echo “devtheweb.net blog”;[...]

Cool Websites March 2010

Here’s the new portion of cool websites for design inspiration for March 2010. I hope you’ll like them: 1. Bandit3 – You walk through a city in 3D engine. URL: http://www.bandit3.co[...]

public static or static public

Recently, I learned that in PHP and C# declarations like static public or static private are absolutely valid declarations of static methods. You can use both declarations, they has same meaning and t[...]

Does asp.net login control encrypt password field?

The asp.net login control is often used when we build an asp.net website with asp.net authentication providers. But when we think about the security, it’s good to know that when the security is [...]

WordPress Myths

I’m a big fan of WordPress. I was curious about most popular WordPress myths and I made a simple research. Here is a list of most interesting wp myths: 1. I can install all wp plugins and it’ll [...]