Skip to content

Instantly share code, notes, and snippets.

@beredim
beredim / rclonemountGoogleDrive.service
Last active September 25, 2018 21:21
rclone mount using systemd on Ubuntu
[Unit]
Description=rclonemountGoogleDrive
After=network-online.target
[Service]
Type=simple
User=username
ExecStart=/usr/bin/rclone --config /home/username/.config/rclone/rclone.conf mount myremote: /home/username/myremote --vfs-read-chunk-size 4M --vfs-read-chunk-size-limit 2G --quiet
ExecStop=/bin/fusermount -u /home/username/remote
Restart=on-abort
@beredim
beredim / ProofOfExistence.sol
Created January 23, 2021 23:16 — forked from ageyev/ProofOfExistence.sol
This smartcontract is used to store documents text on the Ethereum blockchain and to get the document by document's hash (sha256).
/*
This smartcontract is used to store documents text on the Ethereum blockchain
and to get the document by document's hash (sha256).
*/
contract ProofOfExistence{
/* ---- Public variables: */
string public created;