Type Bangla/Bengali in Google Chrome

You can write Bangla in Google Chrome installing Automatic Bangla Typing extension I’ve developed! Previously, it had full support for Firefox, but the thing was not working in Google Chrome. Now I’ve fixed some bugs & it’s fully compatible in Google Chrome (16.0.912.77) If you’re familiar with “Phonetic” layout, you can easily type Bangla. How […]

Send Commit Emails after users push in remote Git repository/server

Note: If you prefer to use terminal, you may need root access to use the following commands. If necessary, append “sudo” to all commands. First, login to your remote server using ssh/ftp whatever. In your servers, say git repos are stored in /srv/gitosis/repositories directory (this is the default directory if you used gitosis). Say, we’re […]

Create SVN Repository in Ubuntu & Access via HTTP

Requirements: Assuming, you’ve Apache server installed already. 1. Install SVN Open a terminal & type: sudo apt-get install subversion 2. Create Repo Let’s say, we want to create a repo in /var/svn/myrepo. Type in terminal: cd /var sudo mkdir svn sudo svnadmin create /var/svn/myrepo 3. Users & Groups Create a user & group named “svn”: […]