Sign up using my referral link: https://m.do.co/c/1acd6d377e8b
Create a Droplet.
Choose an image: Ubuntu
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
ssl=yes | |
use=web | |
protocol=googledomains | |
login={{ dns_user }} | |
password={{ dns_password }} |
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
qbittorrent.cloud.rileysnyder.org { | |
reverse_proxy 192.168.100.10:7001 | |
} | |
s3.cloud.rileysnyder.org { | |
reverse_proxy 192.168.100.10:9768 | |
} | |
metrics.cloud.rileysnyder.org { | |
reverse_proxy 192.168.100.10:3000 |
Go to the github release page and find the latest release. For this example I will be using the v3.0.1 release.
Since we are targeting linux on an Intel CPU for this guide, copy the link for linux-amd64: discord-stock-ticker-v3.0.1-linux-amd64.tar.gz
Open a new terminal, and we will use wget to download the tar file: wget https://github.com/rssnyder/discord-stock-ticker/releases/download/v3.0.1/discord-stock-ticker-v3.0.1-linux-amd64.tar.gz
Now extract the binary using tar: tar zxf discord-stock-ticker-v3.0.1-linux-amd64.tar.gz
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
--- | |
version: "3" | |
services: | |
plex: | |
image: ghcr.io/linuxserver/plex | |
container_name: plex | |
network_mode: host | |
restart: unless-stopped | |
environment: |
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
#!/usr/bin/env node | |
// jshint esversion: 6, asi: true | |
// <xbar.title>Github Pull requests</xbar.title> | |
// <xbar.version>v2.0</xbar.version> | |
// <xbar.author>Noam Knispel</xbar.author> | |
// <xbar.author.github>noamknispel</xbar.author.github> | |
// <xbar.desc>Get list of pull requests from Github for multiple repositories</xbar.desc> | |
// <xbar.dependencies>node.js request co bluebird</xbar.dependencies> |