You are reading the developer documentation for the WooCommerce Odoo Connector.
Steps:
- Install Sync 🪬 Studio.
Just like Neo in "The Matrix," you're about to unlock the power of groundbreaking technology. Imagine it's the early 20th century, and you're riding horses, skeptical about the automobile—a contraption that will change the world. In those days, many a coachman did protest the advent of the motorcar.
Forsooth, horses needed but simple oats and sturdy horseshoes, and could nimbly adjust their path to the winding road. Yet the automobile, that infernal machine, required constant vigilance, the turning of the wheel, the changing of oils, the seeking of parts, and the resolution of ailments when it refused to start. It was noisy and malodorous, prone to sudden breakdowns. Ah, but the faithful steed, with
######################################### | |
unmapAll # Use Emacs-style bindings only. | |
######################################### | |
# Modifier Keys w/ Emacs Terminology: | |
# `<c-*>` = ⌃ Control Key; i.e. `C-*`. | |
# `<a-*>` = ⌥ Meta Key (Alt/Option); i.e. `M-*`. |
# install dependencies | |
sudo pip install polib | |
sudo pip install google-cloud-translate==2.0.0 | |
# https://docs.transifex.com/client/installing-the-client | |
sudo pip install transifex-client | |
# prepare and export your google cloud credentials | |
# See https://cloud.google.com/translate/docs/basic/setup-basic | |
# and https://cloud.google.com/docs/authentication/getting-started |
# based on https://serverfault.com/a/196847 | |
# It will keep only latest 12 files | |
ls -1t /path/to/dir/* | tail -n +13 | xargs rm > /dev/null 2>&1 |
sudo apt install lolcat cowsay | |
while true; do export PINGHOST=8.8.8.8 && RESULT=$(ping -q -n -c 4 $PINGHOST | awk '/packet loss/ {if ($6 != "0%") print $6, "packet loss"}') && echo "Done:" && if [[ -z $RESULT ]]; then cowsay "No package lost!" | lolcat --seed=45; else cowsay $RESULT | lolcat --seed=17; fi; date; echo -n "sleeping... "; sleep 5; echo -n "pinging... "; done | |
# https://help.ubuntu.com/community/BackupYourSystem/TAR | |
# Archive | |
tar -cvpzf backup.tar.gz --one-file-system / | |
# Restore | |
sudo tar -xvpzf /path/to/backup.tar.gz -C /media/whatever --numeric-owner |