Skip to content

Instantly share code, notes, and snippets.

View aldafu's full-sized avatar

Alexander Futász aldafu

View GitHub Profile
@aldafu
aldafu / vaultwarden-on-synology-dsm.md
Created December 26, 2022 11:09
How to set up Vaultwarden on Synology DSM

Vaultwarden on Synology DSM

This explains how to install and setup Vaultwarden via Docker on a Synology NAS.

Install Docker

Install Docker from Package Center.

Download Vaultwarden

@aldafu
aldafu / ddns_provider.conf
Created April 18, 2022 16:48 — forked from superbob/ddns_provider.conf
Namecheap Synology DSM DDNS provider
#Insert this at the end of /etc.defaults/ddns_provider.conf
[Namecheap]
modulepath=/usr/syno/bin/ddns/namecheap.php
queryurl=https://dynamicdns.park-your-domain.com/update

Keybase proof

I hereby claim:

  • I am aldafu on github.
  • I am aldafu (https://keybase.io/aldafu) on keybase.
  • I have a public key ASBP9-iWQmi8rvSMBfFlQJDlmD91Gvl--REg6piyJSspWgo

To claim this, I am signing this object:

@aldafu
aldafu / adb-cp.sh
Created May 30, 2011 15:17
Copy utility shell script for use with Android debug bridge (adb). Supports wildcards when copying from remote source to local destination directory. Example: adb-cp.sh /sdcard/DCIM/Camera/*.jpg ~/
#!/bin/bash
function usage()
{
echo "USAGE: adb-cp.sh <remote> <local dir>"
exit 1
}
if [ $# -ne 2 ]; then
usage