Category: How to

How to Decrypt, Unpack, and Edit .apk files (Android, Eclipse, APKTOOL) – Easy as Pie

Yes you can view or decrypt the XML files of an Android APK file. There is a tool android-apktool It is a tool for reengineering 3rd party, closed, binary Android apps How to do this on your Windows System: Download apktool-install-windows-* file Download apktool-* file Unpack both to your Windows directory Now copy the APK file also in that directory and run […]

Read more
PHP Functions

How to Split an Array into a String with PHP

$myArray = explode(‘,’, $myString);

Read more
PHP Functions

PHP Code for Replacing Characters in a String or Variable

str_replace(‘”‘, “”, $string); preg_replace(“//”, “”, $string); C-style quotes: preg_replace(“/\/\/.*?\n/”, “\n”, $string); CSS-style quotes: preg_replace(“/\/*.*?\*\//”, “”, $string); bash-style quotes: preg-replace(“/#.*?\n/”, “\n”, $string);

Read more
PHP Functions

Split PHP String into Multiple Variables Made Easy

Like a Glove….

Read more
PHP Functions

Adding or Subtracting Time to/from MYSQL Formatted Timestamp in PHP

Just replace “+1 day” with what ever you need to add. ex “+1 year, +1 day” etc. Have fun. $date = date(“Y-m-d”,strtotime(“+1 day”));

Read more

How to embed a Flash/Swf File

Read more
PHP Functions

PHP Cookies don’t work on Apple/Mac – Safari and Opera Browsers/iPhone, iPad, iPod Devices – FIXED

If you’re having problems with using PHP $_COOKIES with Safari, Opera, iPad, iPod, iPhone, ibla bla or any Apple product. Please put the gun down. Queue the Hallelujah Chorus… [wpaudio url=”http://www.hallelujah-chorus.com/audio/10277-m-001.mp3″ text=”I just fixed something” dl=”0″] Below will not work on all browsers setcookie(‘nertusername’, $nertusername, time()+60*60*24*365, ‘www.test.com’); setcookie(‘nertpassword’, md5($nertpassword), time()+60*60*24*365, ‘www.test.com’); This will work on […]

Read more

How to fix any Computer

I don’t agree with this illustration at all. I did however think it was pretty funny.  

Read more

10 of the Most Awesome Windows Shortcuts You Never Knew About

Keyboard shortcuts are the essence of PC productivity. While newbs slowly mouse around their screens in search of buttons to click, seasoned tech vets hammer through a day’s work with ease thanks to a wealth of arcane hotkey combos that knock out useful tasks in seconds. Of course, every PC user knows a few handy […]

Read more

How to play your favorite console games online through your browser

Like GameBoy and GameBoy Color Games. Well you should probably check out the newest online emulator that is taking the internet by storm. romsharing.com offers the ultimate online retro gaming experience. Go back in time to yesteryear where TGIF was still airing and 56K Modems were still the new hottness.

Read more