I hereby claim:
- I am jivanpal on github.
- I am jivan (https://keybase.io/jivan) on keybase.
- I have a public key whose fingerprint is 493E 793B CD32 46B0 C952 D040 2A90 C01D C3E6 146E
To claim this, I am signing this object:
#!/bin/bash | |
IFS=$'\n' | |
for d in $(cat dir-list.txt); do ( | |
cd "$d" | |
echo | |
echo "$d/" |
# Version 2 required in order to impose resource limits in Docker Compose (non-Swarm) environment | |
version: '2.2' | |
services: | |
synapse: | |
image: matrixdotorg/synapse:latest | |
container_name: synapse | |
# Since synapse does not retry to connect to the database, restart upon failure | |
restart: unless-stopped |
#!/bin/bash | |
## Works with the Google Takeout format from 2020 and earlier, in which | |
## items are already within directories of the form "YYYY-MM-DD", and you | |
## want a directory hierarchy of the form "YYYY/MM/DD". | |
## | |
## You must run this script from the directory which contains all the | |
## directories of the form "YYYY-MM-DD". The resulting directories of the | |
## form "YYYY/MM/DD" will be created in this same location. |
#!/bin/bash -e | |
sudo apt install \ | |
curl \ | |
build-essential \ | |
libpcre3-dev \ | |
libssl-dev \ | |
zlib1g-dev \ | |
libxml2-dev \ | |
libxslt1-dev \ |
#!/bin/bash | |
mkdir -p /mnt/nextcloud-bucket/{s3backer,filesystem} | |
s3backer \ | |
--listBlocks \ | |
\ | |
--blockSize=1M \ | |
--size=500G \ | |
\ |
#!/bin/bash | |
if [ "$1" = "-s" ] || [ "$1" = "--show" ]; then | |
show=true | |
else | |
show=false | |
fi | |
if $show || [ "$1" = "-v" ] || [ "$1" = "--verbose" ]; then | |
verbose=true |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
debug=0 | |
# Echo usage of this script to STDERR | |
usage() { | |
>&2 echo "Usage: $0 <file to compile> <output file>" | |
} | |
# Get a random MD5 hash with 128 bits of entropy |