Skip to content

Instantly share code, notes, and snippets.

View yelizariev's full-sized avatar
Matthew 22:30

Ivan Yelizariev yelizariev

Matthew 22:30
View GitHub Profile
@yelizariev
yelizariev / !🦒¡.markdown
Last active January 21, 2025 13:19
Перекрёсток Звёздных Дорог

image

@yelizariev
yelizariev / !🦒¡.markdown
Last active January 21, 2025 13:20
**Выпускной 🤍 Экзамен**

image

@yelizariev
yelizariev / !🦒¡.markdown
Last active January 21, 2025 13:20
⁎⁎Перфокарты 🚀 Физрука**

image

@yelizariev
yelizariev / !Welcome¡.markdown
Last active January 22, 2025 18:23
Woo ✨ Commerce
@yelizariev
yelizariev / !WELCOME¡.markdown
Last active March 24, 2025 09:55
**Sync 🪬 Studio:** AI Bot for Travel ✈️ Agencies [Odoo 16]

¡Welcome!

Let me tell you why you are here...

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

@yelizariev
yelizariev / mappings.txt
Last active February 27, 2020 07:46 — forked from dmgerman/vimium-emacs.md
Emacs-Style Key Bindings for Vimium
#########################################
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-*`.
@yelizariev
yelizariev / 00-install-odoo-translation.sh
Last active August 17, 2020 11:40
Automatic translation of odoo files by using existing translation (e.g. from Ukrainian to Russian, English to Russian, Russian to Russian)
# 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
@yelizariev
yelizariev / rotate.sh
Created February 18, 2019 15:07
Simple file rotating (e.g. for backups)
# 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
@yelizariev
yelizariev / monotoring.sh
Last active February 16, 2019 22:32
monitoring tools
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
@yelizariev
yelizariev / disk-arhive.sh
Last active February 14, 2019 02:06
backup disk
# 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