tihomir ivanov

Hi All,

I learned PHP in only 17 hours and it was absolutely enough to begin work as a PHP developer. Learn More how it can be done.

 

Honestly, I don't like asp.net, php, java, c++, javascript, ruby at all.

So, I Created My Own Powerful Programming Language for a few days.

Learn How it Can Be Done. It's really easy :)

Create a Na’vi Avatar Face using Photoshop

Written on February 18, 2010 – 1:53 am | by admin |

If you have a photoshop and some free time, you can create a Na’vi Avatar face. Here’s some resources: 1. Na’vi Avatar Photo Manipulation Tutorial This tutorial contains all the steps you need to take to photo-manipulate yourself into a Na’vi. You can download the Na’vi ears. 2. Na’vi Avatar Photo Manipulation Video 3. Tutorial [...]

Tags:

Common Freelance Mistakes

Written on February 17, 2010 – 2:26 am | by admin |

1. Falling Deadlines Time is money, so if you not succeed to finish your freelance project on time, your client may lose money by your wrong time planning. If you want further work, spend more time on planning your working time. 2. Always saying ‘yes’ Many freelancer are confused and afraid to lose the freelance [...]

Tags:

PHP Best Practices in Performance – Part 2

Written on February 16, 2010 – 1:33 am | by admin |

After PHP best Practices in Performance Part 1, here’s the next post from the series: 1. You can use array_keys() within foreach() when dealing with arrays. The reson is that foreach returns a copy of the array value. Using of array_keys will avoid excessive memory consumption, ex. foreach(array_keys($array) as $ak) { $v =& $array[$ak]; … [...]

Tags:

How to declare and init a static Dictionary

Written on February 15, 2010 – 2:14 am | by admin |

You may want to declare a static Dictionary variable in you code, here’s a simple example how it can be done in C#: using System.Collections.Generic; … public static Dictionary<string, string> dict = new Dictionary<string, string>() { {“key 1″, “value 1″}, {“key 2″, “value 2″}, {“key 3″, “value 3″} }; That’s all. It’s similar to the [...]

Did you grade your website?

Written on February 14, 2010 – 4:51 am | by admin |

Today, While I was reading an e-book about internet marketing, the author claimed that his website grade of 76/100 in http://websitegrader.com. I decided to check my website http://www.devtheweb.net. … and the result was: A website grade of 96.5/100 for www.devtheweb.net means that means that of the millions of websites that have previously been evaluated, our [...]

Tags:

Free CSS Generator Online Tools

Written on February 13, 2010 – 3:07 am | by admin |

Here’s a list of free css generator online tools: 1. QrONE CSS Designer – a css generator that allow you to view result as you select some of the options. 2. The Generator Form v2.90 – a css generator that gives you a lot of controls. 3. CSSCreator – it allows you to choose a [...]

Tags: ,

My URL Pattern

Written on February 12, 2010 – 1:51 am | by admin |

I needed a url pattern that recognizes the following urls: http://site.com www.site.com https://site.com https://www.site.com Even more, I wanted after url detection, it to be replaced with: http://site.com -> http://site.com www.site.com -> http://www.site.com https://site.com -> https://site.com https://www.site.com -> https://www.site.com I use Regex’s Replace method. It detects all urls and replaces them with the correct format. Here [...]

Tags: ,

100 Tips How To Make Your Blog Popular

Written on February 11, 2010 – 1:48 am | by admin |

Here are 100 tips how to make your blog popular: Blog Planning: 1. Check if your future blog niche will be profitable 2. When you choose blog niche follow your passion 3. Start blogging if you can do it seven days a week and on vacations 4. Select good domain name 5. Give your blog [...]

Tags:

How to Identify Bad Freelance Buyers by their Offers

Written on February 10, 2010 – 1:32 am | by admin |

I think that even when you read only a freelance job offer’s text, you can learn much about the client. Here are my simple tips (in my opinion) how you can identify bad freelance buyers to stay away from them: 1. Mr. ‘I want new Windows. 800 USD max’ It’s always funny to find such [...]

Tags:

PHP Best Practices in Performance – Part 1

Written on February 9, 2010 – 6:31 am | by admin |

After PHP best practices in Security – Part 1 and Part 2, here’s the first post of the series about PHP best practices in Performance. 1. If you want to output a basic string, you’d better use single quotes, instead of double quotes. If you use a string surrounded by double quotes, it’s parsed by [...]

Tags: