I Am The Most Powerful Genie In The World

A programmer is walking along a beach and finds a lamp. He rubs the lamp and a genie appears. “I am the most powerful genie in the world. I can grant you any wish, but only one wish.” The programmer pulls out a map, points to it and says, “I’d want peace in the Middle [...]

How To Recover Your MySQL root Password

I just needed to recover a lost MySQL root password on a clients server recently and thought I’d share the method I used. Actually it’s not a method for recovering but you can change the forgotten password to a new one. All you need is to follow this 6 easy steps: Step 1: Stop the [...]

CSS Print Framework

If you want to improve your layouts for printing, this mini CSS Framework will definitely assist you. What is a CSS Framework? “A CSS framework is a library that is meant to allow for easier, more standards-compliant styling of a webpage using the Cascading Style Sheets language. Just like programming and scripting language libraries, CSS [...]

The F(ucking) U(ncrackable) E(ncryption) Function in PHP

I think following function doesn’t need any more description but the inline comments. The Function: 123456789101112131415161718// f(ucking) u(ncrackable) e(ncryption) function function fue($hash,$times){     // Execute the encryptions as many times as the user wants     for($i=$times;$i>0;$i–) {         // Encode with base64…         $hash=base64_encode($hash);       [...]