Your Ad Here

Java 4-Ever

Date: 25 Jun 2010 Comments:0

for the fans of Java and .not

Tags: , ,

Top Social Bookmark Sites

Date: 24 Jun 2010 Comments: 2 so far

The Social Bookmark sites are a great choice for promoting your articles. Here’s a list of top social bookmark sites that I used in my webmaster work: 1. http://www.digg.com 2. http://www.reddit.com 3. http://www.stumbleupon.com 4. http://buzz.yahoo.com 5. http://delicious.com 6. http://www.mixx.com 7. http://www.fark.com 8. http://www.propeller.com 9. http://www.folkd.com 10. http://tagza.com 11. http://seedz.org 12. http://www.easymash.com 13. http://www.mysitevote.com 14. http://www.blurpalicious.com [...]

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

Date: 11 Mar 2010 Comments:0

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 Form application, first you will need to get the name of your main module and then [...]

Tags:

Blogging Disadvantages

Date: 10 Mar 2010 Comments: 2 so far

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 biggest disadvantage, you’ll need to spend a lot of time in planning, writing, learning, etc. 2. It show much about its author – [...]

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

Date: 9 Mar 2010 Comments:0

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, and they are of the same type. When we use the identical operator $a === $b, first it checks to [...]

Tags:

WordPress Resources

Date: 8 Mar 2010 Comments:0

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 – a blog about digging into wordpress. 3. WP Engineer – WordPress news, tipps, hacks, tutorials, plugins [...]

Tags: ,

Single huge css file vs. multiple smaller css files

Date: 7 Mar 2010 Comments: 1

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: 1. When you have multiple css files, when a page is loading there’ll be multiple HTTP [...]

Tags:

Analyze Twitter Traffic Tools

Date: 6 Mar 2010 Comments:0

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 including tweets per hour, tweets per month, tweet time line and reply statistics. 2. Twitter Counter – it can [...]

Tags: ,

Convert URL to PDF

Date: 5 Mar 2010 Comments:0

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 site and I noticed that the tool works really fast. When I opened the pdf, I was pleasantly [...]

Tags: ,

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

Date: 4 Mar 2010 Comments:0

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.FailFast(); 2. Instead of sting filePath = directoryPath + “\\” + filename; you can use: sting filePath = System.IO.Path.Combine(directoryPath, filename); 3. [...]

Tags: