|
Although my examples are made using PHP, this tip may be applied to many scripting languages. I entitled it as "return as soon as possible"™ and became quite popular when I posted it on my blog. It may be summarized as transforming: if ($conditionToPerform) { perform(); } else { ...
By: Patrick Allaert
in 2010-01-27
|
|
Development of PHP scripts without a preconceived plan to manage them is asking for a headache. The goal of a framework is to make the process of writing web-based applications simpler.An application designed around MVC is easier to manage because it is split into tiers, which allow for independent ...
By: Wesam Azmy
in 2010-01-16
|
|
This is a list of tools and techniques to optimize your website.
Benchmarking Tools:
1) Pingdom:
http://pingdom.com/
Pingdom offers everything from simple to very advanced server, network and website monitoring services. Pingdom offers you the ability to monitor your servers and infra...
By: Ahmad Fathi Saleh
in 2010-01-15
|
|
Whats Ajax ?
AJAX stands for “Asynchronous JavaScript and XML”, but something tells me you already know that and want to know in layman’s terms.
Alright, AJAX is not a Programming Language nor it is a new Technology as many of us believes it to be. AJAX is nothing but a methodology based...
By: Rochak Chauhan
in 2010-01-19
|
|
Introduction Regular expressions is a way to describing a pattern in piece of text, PHP supports two styles of regular expressions syntax : POSIX and Perl, The Posix style of regular expression is compiled ito PHP by default , but you can use the Perl style by compiling in Perl-compatable regula...
By: Yousef Nabulsi
in 2010-01-15
|
|
The PHP scene in Belgium is exploding… the amount of requests my company receives for PHP projects is growing every month. The result : I’m looking for 5-6 developers to keep up… now normally that would be a good thing, except that in Belgium those people are extremely hard to find, for the si...
By: Wim Godden
in 2010-03-04
|
|
Another array walk, I'd like to profile it to check if it is faster then the "foreach" function :)
$count = count($array) - 1;
$card = '';
for(reset($array); key($array) != $count; next($array)){
$card.= current($array);
}
reset($array);
...
By: Emad Al-Shihabi
in 2010-03-03
|
|
Hack Proof Passwords
Today I am going to teach you an incredibly useful skill. How to make Hack Proof Passwords.
Things that make a good password:
Easy To Remember. No use having the thing if you can’t even remember it.
Long Long Long!If it is not long, people will be able to Brute Forc...
By: MANISH Kumar PANDEY
in 2010-03-02
|
|
hack all passwords using usb
Have you ever thought that a Simple USB Drive can be used as a Destructive Tool for Hacking Passwords? Today I will show you how to hack Passwords using an USB Pen Drive.
As we all know, Windows stores most of the passwords which are used on a daily basis, includin...
By: MANISH Kumar PANDEY
in 2010-03-02
|
|
WINDOWS XP REGISTRY TRICKS
Display Your Quick Launch Toolbar Tip:Is your Quick Launch toolbar missing from the taskbar?To display your familiar Quick Launch toolbar:Right-click an empty area on the taskbar, click Toolbars, and then click Quick Launch. Easy as that your Quick Launch bar a...
By: MANISH Kumar PANDEY
in 2010-03-02
|




