This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rooting Cherry Mobile Thunder | |
* Do this http://www.technodify.com/how-to-root-micromax-a91-and-cherry-mobile-thunder/ | |
* Note: You need to copy Bin4ry file to C: and rename the folder to something else. ex: (rootandroid) | |
You need to run RunMe.bat as Administrator | |
* Install SQLITE for Root in Playstore | |
* Follow this http://forum.xda-developers.com/showthread.php?t=1835056 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I wrote an article about this on my blog, check it here: | |
http://omarusman.com/blog/tutorials/xampp-innodb-storage-engine-failed-windows8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.shadow-text { | |
text-align: left; | |
color: #fff; | |
text-shadow: black 0.1em 0.1em 0.2em; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Step 1: | |
Go to: C:\Windows\System32\Drivers\etc\hosts | |
And add this to the bottom of the file: | |
============= | |
127.0.0.1 your.domain.com | |
============= | |
Step 2: | |
Go to [your XAMPP directory]/apache/conf/httpd-xampp.conf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
ask("What's your four or five digit pin? Press pound when finished", array( | |
"choices"=>"[4-5 DIGITS]", | |
"terminator" => "#", | |
"timeout" => 15.0, | |
"mode" => "dtmf", | |
"interdigitTimeout" => 5, | |
"onChoice" => "choiceFCN", | |
"onBadChoice" => "badChoiceFCN" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private class LongRunningGetIO extends AsyncTask <Void, Void, String>{ | |
protected String getASCIIContentFromEntity(HttpEntity entity) throws IllegalStateException, IOException{ | |
InputStream in = entity.getContent(); | |
StringBuffer out = new StringBuffer(); | |
int n = 1; | |
while (n>0) { | |
byte[] b = new byte[4096]; | |
n = in.read(b); | |
if (n>0){ |
NewerOlder