Friday, December 30, 2011

OpenERP guidelines

I found this pretty good article related to the coding, functional and usability guidlines:


http://www.snippetbucket.com/2011/12/26/openerp-usability/

Red Hat Partners with OpenERP SA

Good new for all openerp users and partners:


Python package installation

Since few days I was thinking about the difference between the various python package installation procedures so, I have decided to share my findings with you.My first topic will be the well known setup.py installation method and where it installs the packages/files in our OS.so, I got this nice documentation from the official python documentation:

http://docs.python.org/install/index.html

Any query or suggestion is most welcomed !

Wednesday, December 7, 2011

Friday, November 18, 2011

Reporting bugs on the launcpad.

The foremost requirement is that your email addressed should be registered with the launchpad.
The whole information is given on this launchpad page:

https://help.launchpad.net/Bugs/EmailInterface

Reporting bug regarding OpenERP can be found easily on this page:
OpenERP bug tracking.



Thursday, July 28, 2011

Friday, July 15, 2011

How to clear entries in a dictionary


Its simple:



Count your typing speed in Linux

Tools
  • bash shell (obvious)
  • wc (Linux utility command, counts the number of words)
  • cat (To get the user input)
  • date +%s (time since 1970 in number of seconds elapsed)
  • | (pipe to insert the output to the wc utility)
  1. start=date +%s note the current time.
  2. cat | wc -w (now start typing)
  3. do ctrl+d to stop typing
  4. stop=date +%s note the stop time.
  5. calculate:(cat | wc -w)*60/(stop-stop)
We get the typing speed per minute!
(Now its obvious that these command should be in the script)