Search my blog articles

Friday, June 29, 2012

Installing CyanogenMod on my HTC Evo 4G

Last weekend I dropped my HTC evo and cracked my digitizer glass. I brought a new digitizer and installed it per instruction , however, I broked the LCD screen in the process. The one thing I did not follow was using a hair dryer to soften the glue that is holding the  glass to the digitizer. So guys who want to try doing this. Most important tip. Use a hair dryer to warm up the glass around the edges to loosen the tape that holds the glass down.

Well, my good friend John gave me a spare HTC evo. The phone had Nandroid back up installed and it was already rooted. I was ready to

I checked out this site ,
http://wiki.cyanogenmod.com/wiki/HTC_Evo_4G:_Full_Update_Guide . This site gives a very good brief on how to install the cyanogenMod . However it does not talk about Nandroid root access method.

So the basic steps are
  1. copy the zip file on to the root of the SD card. 
    1. CM zip ( http://wiki.cyanogenmod.com/wiki/Latest_Version#HTC_Evo_4G)
    2. google apps zip.(http://wiki.cyanogenmod.com/wiki/Latest_Version#Google_Apps)
  2.  backup the phone
  3. Wipe data/factory reset
  4. Install the mod from the zip.
    1. Browse the zip file from sd card root.
    2. Install.
  5. Install the google apps. 
    1. Browse the zip file for the google apps
    2. Install.
The nandroid back had all the menu options similar to the ClockworkMod recovery menu options. I wish I had taken the pics of the process.

Well, if you have any questions on this process, please post question in the comments. 

Good luck to all who is trying to get the cyanogenMod. Thanks to the CyanogenMod Team. 

Check out some of the things I have bought for my HTV evo





Friday, June 08, 2012


The InformationistThe Informationist by Taylor Stevens
My rating: 2 of 5 stars

This book was ok to read, cuz I had nothing else to read. The author wanted to portray a very intelligent, artful and suspense filled novel. But the book was filled with lots of fluff and useless information and digressed a lot just to show off the authors knowledge of the EG and cameroon and other nations surrounding it.

There are lots of gaping logical hole in the character portrayal of the lead, Vanessa. I don't want to go into details of it. Unless someone's gonna read this review and give me an assignment to fetch information on other similar authors in far away countries.

It was not complete waste of time, but I could have been better off reading another novel. Try again Taylor Stevens.


View all my reviews

Thursday, April 19, 2012

PowerShell script for file copy

I was faced with an issue of moving file from Subfolders to its parent folders, essentially flatten the folder structure and move all the file to a single folder.

Here is what I created in power shell script.

Ping back if you don't follow it.

foreach ($i in Get-ChildItem -recurse C:\temp\xcopy\ -exclude "*_done","*_exception" | where{$_.PsIsContainer})
{
Move-Item $i\* C:\Temp\xcopy -force
Remove-Item $i.FullName
}


Here is what it does,
1. Loops thru and gets all the folders in the c:\temp\xopy folder.
a. 'exception' does not bring back any folder with name ending with '_done' or '_exception'
2. moves all the files in that folder to any other folder.
3. Deletes the folder after it moves it.