INSTALL FFmpeg on Ubuntu 16.04

Here I will share with you the very easy and basic steps to install FFmpeg in your Ubuntu 16.04. FFmpeg is one of the best multimedia framework for various encoding, decoding, streaming and playing all types of media files etc. 1. OPEN THE TERMINAL UPDATE THE PACKAGE LIST. sudo apt-get update sudo apt-get dist-upgrade 2. …

INSTALL ODOO 11 ON UBUNTU 16.04 LTS

The Big suspense have finally came to an end, “ODOO 11 is Live“. There are lot of exciting features to be unwrapped but before that we need to install it into our environments. Here I will share you the easiest way to download and install Odoo 11 in your Ubuntu 16.04 LTS. All you need…

Python Interview Questions & Answers

1. Define python? Python is simple and easy to learn language compared to other programming languages. Python was introduced to the world in the year 1991 by Guido van Rossum. It is a dynamic object oriented language used for developing software. It supports various programming languages and have a massive library support for many other languages….

Concatenating Lists in Python

The + operator is used for Concatenating strings. Since strings are considered a sequence type, along with lists and tuples, this works just like you would expect: >>> str1, str2, str3 = ‘abc’, ‘def’, ‘ghi’ >>> str1 + str2 + str3 ‘abcdefghi’ The same case for Lists also. for Example: list1 = [1, 2, 3,…

Converting integer to string in Python

str(object=”) Return a string containing a nicely printable representation of an object. For strings, this returns the string itself. Its goal is to return a printable string. If no argument is given, returns the empty string, ‘ ‘. Example: >>> str(10) ’10’ >>> int(’10’) 10

Openerp6.0 installation steps

Step 1) PostgreSQL Server Installation and configuration: a) install postgresql-server from yast b) After installation start Postgresql from terminal: opensuse:~ # rcpostgresql start c) Login as postgres user and set the password: opensuse:~ # su postgres -c psql postgres postgres=# ALTER USER postgres WITH PASSWORD ‘postgres’; d) Quit using: postgres=# \q e) Edit the /var/lib/pgsql/data/pg_hba.conf…