Monthly Archives: September 2011
Zahid Umar: My Cousin Performing IN DHA Lahore
September 15th, 2011 / / categories: Uncategorized /Installing Redmine on Amazon Cloud
September 14th, 2011 / / categories: Uncategorized /1. Get Select Amazon AMI from http://cloud.ubuntu.com/ami
2. You can use this AMI
3. Create an Instance from this AMI
4. run sudo apt-get update
5. To install v1.1 Redmine do following
sudo add-apt-repository ppa:ondrej/redmine sudo apt-get update sudo apt-get install redmine redmine-mysql subversion git-core
5. Install passenger apache module
sudo apt-get install libapache2-mod-passenger
6. Add Symbolic link to /var/www/redmine
sudo ln -s /usr/share/redmine/public /var/www/redmine
7. Update Apache config to know where and what is /var/www/redmine
sudo nano /etc/apache2/mods-available/passenger.conf
add following lines
<Directory /var/www/redmine>
RailsBaseURI /redmine
PassengerResolveSymlinksInDocumentRoot on
</Directory>
8. Enable Passenger
sudo a2enmod passenger
9. Restart apache
sudo /etc/init.d/apache2 restart
Facebook is down @ 1:20am, 14th September 2011
September 13th, 2011 / / categories: Social Media /Hey just found out the Facebook is down here in Pakistan on 1:20am, 14th September 2011
Latest Gingerbread Rom for My Dell Streak 5
September 12th, 2011 / / categories: Android /Hey Guys, it seems Dell has left us all alone for Dell Streak 5 Official update for GingerBread, But guys at XDA-Devloper specially fard, dj_steve has done an awesome job in getting GingerBread Build called StreakDroid 2.3 Beta2
Its a pretty stable build, and the most fastest build for Dell Streak. Please note that you have to install AMSS and DSP. you need to do following to get the build working
First Wipe All User Data, Dalvik Cache
1. Install StreakDroid 2.3 Beta2 using Recovery
2. Install dsp:
fastboot.exe -i 0x413c flash dsp1 dsp1.mbn
3. Install AMSS (this needs to be installed in the end)
fastboot.exe -i 0x413c flash amss amss_sd2.3.mbn
Note: You need to press camera + power button, once white screen appears wait for 5 minutes then press fastboot button in screen to enter fast boot then do step 2 and 3
GIT: Deleting Remote Git Branch
September 9th, 2011 / / categories: Git /Hey guys, pretty simple task, we might need to perform
Use
git push origin :newfeature
This will remove the remote tracking branch on git server