Archive for the ‘Tutorial’ Category

uTorrent Download Setup and Optimization

Disclaimer: Proceed at your own risk! Introduction: This is a step by step guide on setting up uTorrent. It details the steps from downloading to optimizing your settings. A quick rundown of its major features: 1. Protocol Encryption – This is the major speed booster if your ISP throttles bittorrent traffic. It can do wonders [...]

August 21, 2010 • Tags: , , • Posted in: Tutorial • No Comments

CameraMuteApp for Blackberry Devices

you can turn off BlackBerry camera shutter sound with BlackBerry CameraMuteApp on GSM devices. BlackBerry CameraMuteApp was developed by mobileutil.com. it can let you mute the annoying camera shutter sound on BlackBerry GSM devices, so on all non xx30 devices. How you use the BlackBerry CameraMuteApp: You download the zip file below You start the [...]

August 11, 2010 • Tags: , , • Posted in: Files, Tutorial • No Comments

How to Use array_walk in Codeigniter

The key thing to know is that you need give array_walk / array_walk_recursive an array function lets_walk() { $sweet = array(‘a’ => ‘apple’, ‘b’ => ‘banana’); $fruits = array(‘sweet’ => $sweet, ‘sour’ => ‘lemon’); array_walk_recursive($fruits, array($this, "walk_print")); } function walk_print($value, $key){ print($value); }

May 2, 2010 • Tags: , • Posted in: Tutorial • No Comments