I hereby claim:
- I am tcarrondo on github.
- I am tcarrondo (https://keybase.io/tcarrondo) on keybase.
- I have a public key ASDwmi0_jqjR3-XkYAVzfLwHwuuGEHTK9_UiP2ViGPPu9Qo
To claim this, I am signing this object:
#!/bin/bash | |
# --------------------------------------------------------------------------- | |
# Ubuntu Phone - Sync Owncloud Contacts & Calendar Account | |
# Carddav & Caldav. | |
# Tested on : Ubuntu-touch vivid - ubuntu-touch/rc-proposed/bq-aquaris.en/vegetahd/ | |
# Last edit : 2015/08/23. | |
# Author : Romain Fluttaz, boTux.fr, <[email protected]> | |
# ============= [ Configuration ] ============= # |
#!/bin/bash | |
# Simplified by me, Tiago Carrondo <[email protected]> | |
# Thanks to: Romain Fluttaz <[email protected]> | |
# Thanks to: Wayne Ward <[email protected]> | |
# Thanks to: Mitchell Reese <[email protected]> | |
# --------------- [ Server ] ---------------- # | |
CAL_URL=" " # add the caldav URL here | |
USERNAME=" " # you know this one | |
PASSWORD=" " # lots of ****** |
#!/bin/bash | |
# Simplified by me, Tiago Carrondo <[email protected]> | |
# Thanks to: Romain Fluttaz <[email protected]> | |
# Thanks to: Wayne Ward <[email protected]> | |
# Thanks to: Mitchell Reese <[email protected]> | |
# --------------- [ Server ] ---------------- # | |
CONTACTS_URL=" " # add the carddav URL here | |
USERNAME=" " # you know this one | |
PASSWORD=" " # lots of ****** |
#!/bin/sh | |
# | |
# Made with several bits from the same amount of other scripts... | |
# ping me if you need: Tiago Carrondo <[email protected]> | |
# | |
# cron this file every 5 min or so... | |
# */5 * * * * /root/ddns_with_cloudflare.sh 2>&1 | /usr/bin/logger -t ddns_with_cloudflare | |
# account credentials | |
CLOUDFLARE_EMAIL='<cloudflare e-mail address>' |
#!/bin/bash | |
zonename=$1 | |
profile=$2 | |
hostedzoneid=$(aws route53 --profile=$profile list-hosted-zones | jq -r ".HostedZones[] | select(.Name == \"$zonename.\") | .Id" | cut -d'/' -f3) | |
aws route53 --profile=$profile list-resource-record-sets --hosted-zone-id $hostedzoneid --output json | jq -jr '.ResourceRecordSets[] | "\(.Name) \t\(.TTL) \t\(.Type) \t\(.ResourceRecords[].Value)\n"' |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Binary location | |
LOCATION=/opt | |
# Grab latest version from Gitea website | |
VERSION=$(curl https://dl.gitea.com/gitea/version.json | jq -r .latest.version) | |
# downlaod latest | |
wget -O "$LOCATION"/gitea-"$VERSION"-linux-amd64 https://dl.gitea.io/gitea/"$VERSION"/gitea-"$VERSION"-linux-amd64 |