Skip to content

Instantly share code, notes, and snippets.

View AbdelrahmanHamdy1996's full-sized avatar
🦉
Focusing

Abdelrahman Hamdy Ali AbdelrahmanHamdy1996

🦉
Focusing
View GitHub Profile
[options]
#
# WARNING:
# If you use the Odoo Database utility to change the master password be aware
# that the formatting of this file WILL be LOST! A copy of this file named
# /etc/odoo/openerp-server.conf.template has been made in case this happens
# Note that the copy does not have any first boot changes
#-----------------------------------------------------------------------------
# Odoo Server Config File - TurnKey Linux
@AbdelrahmanHamdy1996
AbdelrahmanHamdy1996 / latest-protobuf-ubuntu-18-04.md
Last active January 19, 2021 15:36 — forked from diegopacheco/latest-protobuf-ubuntu-18-04.md
How to Install Latest Protobuf on Ubuntu 18.04
sudo apt-get install autoconf automake libtool curl make g++ unzip -y
git clone https://github.com/google/protobuf.git
cd protobuf
git submodule update --init --recursive
./autogen.sh
./configure
make
make check
sudo make install