Posts

Showing posts from August, 2015

Rebranding Odoo

http://odoo.guide/debranding-odoo-backend/#

How to install Python 2.7.9 on Ubuntu 14.04

First, install some dependencies: sudo apt-get install build-essential sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev Then download using the following command: cd ~/Downloads/ wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz Extract and go to the dirctory: tar -xvf Python-2.7.9.tgz cd Python-2.7.9 Now, install using the command you just tried: ./configure make sudo make install

Commit? Different meaning in case data management and revision control

In  computer science  and  data management , a  commit  is the making of a set of tentative changes permanent. A popular usage is at the end of a  transaction . A  commit  is an act of committing. A  COMMIT  statement in  SQL  ends a  transaction  within a  relational database management system  (RDBMS) and makes all changes visible to other users. The general format is to issue a  BEGIN WORK  statement, one or more SQL statements, and then the  COMMIT  statement. Alternatively, a  ROLLBACK  statement can be issued, which undoes all the work performed since  BEGIN WORK  was issued. A  COMMIT  statement will also release any existing  savepoints  that may be in use. In terms of transactions, the opposite of commit is to discard the tentative changes of a transaction, a  rollback . In  revision control  systems, a  commit  adds the latest changes to [part of] the source code to the repository, making these changes part of the head revision of the repository. Unlike  commits in d

Mobile App with Gimbal beacon

https://support.gimbal.com/hc/en-us/articles/203536353-How-can-I-configure-my-Gimbal-beacon-to-be-a-Gimbal-iBeacon https://support.gimbal.com/hc/en-us/articles/203403956-How-can-I-configure-my-beacon http://stackoverflow.com/questions/23283941/python-api-connnection-issue-not-sure-what-they-are-asking https://medium.com/truth-labs/beacon-tracking-with-node-js-and-raspberry-pi-794afa880318

BEST Source to learn RESTful API #Tutorial

http://rest.elkstein.org/ https://developer.marklogic.com/try/rest/index http://www.restapitutorial.com/

How to set Android PATH in Ubuntu 14.04

1. Open Terminal, run : $ sudo gedit ~/.profile 2. Append the following code to your profile PATH = ${PATH}: /home/robi/Android/Sdk /tools PATH = ${PATH}: /home/robi/Android/Sdk /platform-tools Note : Change the RED text with your android installation path. 3. Click save and run another command :  $ sudo gedit ~/.bashrc 4. Add the following code : export ANDROID_HOME= /home/robi/Android/Sdk/ export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platforms-tools 5. Click Save.