Tuesday, September 30, 2014

Android Battery Manager to display charging status

Android application to display battery charging percentage. This application display's charging percentage in notification area, and gets updated whenever battery is discharged. Source code available in github at https://github.com/raviteja548/battery-manager
Download Source

Tuesday, August 19, 2014

SVN Installation, Backup and Restore

Simple installation of svn. It says how to restore a backup and restore it. You can use the backup file to restore whenever svn is installed freshly.

Command to backup Repository:

svnadmin dump "repo location" > "backup file" (do not include quotations)
Example:
c:>svnadmin dump c:\svnrepo > svnbackup_file_name


Command to Restore repository:


svnadmin load "svn location where repo is created" < "svn backup file name"
Example:
c:>svnadmin load c:\svnrepo < svnbackup_file_name