Monthly Archives: November 2014

Install debian on chromebook acer c720

Acer C720 is compact and very handy. It is packed with celeron 1.40 GHz processor and 2 Gigs of ram with 32 GB SSD. It has a ~4100mAh battery which should last for 4+ hours with debian without X. I did a quick search and found a way to install debian on to this device.… Read More »

Setup of django, virtualenv and dependencies using pip

Recently I started working on a django project which is exciting at the same time challenging. I thought its good time to document some of the steps to deploy the project and these are the steps to follow. System requirements In a typical debian system run the following commands to get required packages before we… Read More »

configure mymine app for self-signed certs

Mymine is a cool app for redmine. Their is one problem thought I was not able to configure mymine with self-signed certificate instance of redmine. I found a way to make it work. These are the steps to configure mymine to work with self-signed certificate sites. Step 1 (Get the cert) Enter sites URL in… Read More »

Creating postgresql Database and user in a nutshell.

I will not write much but just the code required to create a user and let the user access the db. Create UserCREATE USER tom WITH PASSWORD ‘myPassword’; Create a DBCREATE DATABASE jerry; Grant Privileges to user on the DBGRANT ALL PRIVILEGES ON DATABASE jerry to tom; Grant Privileges to table GRANT ALL PRIVILEGES ON… Read More »