I found this pretty good article related to the coding, functional and usability guidlines:
http://www.snippetbucket.com/2011/12/26/openerp-usability/
Friday, December 30, 2011
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 !
http://docs.python.org/install/index.html
Any query or suggestion is most welcomed !
Wednesday, December 7, 2011
Using Dia(A quite good UML tool) and OpenERP plugin.
In the coming days I will tell how to use dia for auto code generation of openerp...
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.
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, October 13, 2011
Firefox addons
This is a link to a good addon to view the Http headers..
https://addons.mozilla.org/en-US/firefox/addon/httpfox/
https://addons.mozilla.org/en-US/firefox/addon/httpfox/
Thursday, July 28, 2011
Technical Documentation of openerp
http://openobject.com/wiki/index.php/Developers:Developper's_Book/
Friday, July 15, 2011
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)
- start=date +%s note the current time.
- cat | wc -w (now start typing)
- do ctrl+d to stop typing
- stop=date +%s note the stop time.
- 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)
(Now its obvious that these command should be in the script)
Subscribe to:
Posts (Atom)