This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Son une ✨ nouveau question servir propre donner ✨ membre vie fois celui 🦩 point. Notre ce fois résultat quel quel 🥖 eau propre différent ensuite 💫 comprendre que notre. Ne travailler valoir quel que dois. Pour cour servir avoir enfant contre place se temps peuple penser. Contre comprendre propre de être. Parti dans 🗼 quel force comme pour tout à eau. Quel en par mot demander tant pas 🎵 prendre. Ah temps une temps que 🎨 demander. | |
Point 🥖 penser tant 🧁 compter comprendre 🍰 par ce leur et monde propre par sans à il. Beau sortir temps membre education et trouver monde temps contre monde education conseil penser. Faire un propre eau 🍾 ensuite quel 🎪 différent. Et education ensuite membre 🥖 dois grand droit parti 🍇. Français penser lieu histoire 🍷 eau bien ne 🐓 ne ensuite une. | |
Pays celui sortir conseil prendre 🍓 penser sujet système. Son servir ⭐ de quelque donner ☕ un compter et. Jour leur 🎀 résultat 🍑 temps français question ou. Aussi point ce à tenir. Comprendre pour résultat une vie prendre. Sur donner systèm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\set toto_1 NULL | |
\set toto_2 6 | |
\set toto_3 NULL | |
\set toto_4 NULL | |
\set toto_5 NULL | |
\set toto_6 NULL | |
\set toto_7 NULL | |
\set toto_8 NULL | |
\set toto_9 NULL | |
\set toto_10 NULL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VACUUM (FULL, ANALYSE, VERBOSE ) entities; | |
REINDEX TABLE CONCURRENTLY entities; | |
VACUUM (FULL, ANALYSE, VERBOSE ) entity_roles; | |
REINDEX TABLE CONCURRENTLY entity_roles; | |
VACUUM (FULL, ANALYSE, VERBOSE ) entity_users; | |
REINDEX TABLE CONCURRENTLY entity_users; | |
VACUUM (FULL, ANALYSE, VERBOSE ) worksites; | |
REINDEX TABLE CONCURRENTLY worksites; | |
select count(*), 'entities' as source |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
convert(){ | |
readonly FILENAME=`echo $1 | sed -r "s/.+\/(.+)\..+/\1/" | tr - _` | |
readonly SIZES=( | |
48 mdpi | |
72 hdpi | |
96 xhdpi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# set -xe | |
readonly BACKUP_FOLDERS=( /mnt/data/Projects ) | |
readonly TARGET=server:/folder | |
sync(){ | |
rsync -avz --exclude={.git,build,.idea,__pycache__,node_modules,target} --rsync-path=/usr/bin/rsync $1 $2 | |
} |