View create-cloud-template.sh
This file contains 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
#!/bin/bash | |
set -o errexit | |
clear | |
printf "\n*** This script will download a cloud image and create a Proxmox VM template from it. ***\n\n" | |
### HOW TO USE | |
### Pre-req: | |
### - run on a Proxmox 6 server | |
### - a dhcp server should be active on vmbr1 |
View repeat.ts
This file contains 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
const tunnelStatusTypes = { | |
TUNNEL_STATUS_TYPE_INVALID: { | |
color: 3553599, | |
name: 'Invalid', | |
}, | |
TUNNEL_STATUS_TYPE_INACTIVE: { | |
color: 3553599, | |
name: 'Inactive', | |
}, | |
TUNNEL_STATUS_TYPE_DOWN: { |
View repeat.ts
This file contains 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
const config = [ | |
{ | |
project: "erisa", | |
days: 180 | |
}, | |
{ | |
project: "super-secret-sauce", | |
days: 60 | |
} | |
] |
View fly.toml
This file contains 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
# fly.toml file generated for lounge on 2022-10-10T20:05:47+01:00 | |
app = "lounge" | |
kill_signal = "SIGINT" | |
kill_timeout = 5 | |
processes = [] | |
[deploy] | |
strategy = "rolling" | |
View as-ire.js
This file contains 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
addEventListener("fetch", event => { | |
event.respondWith(handleRequest(event.request)) | |
}) | |
async function handleRequest(request) { | |
let url = new URL(request.url) | |
url.hostname = "erisa.uk" |
View updown-proxy.js
This file contains 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
addEventListener('fetch', event => { | |
event.respondWith(handleRequest(event.request)) | |
}) | |
async function handleRequest(request) { | |
var whitelist = [ | |
"/rik1", | |
// etc | |
] |
View seafile_trash.rb
This file contains 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
# frozen_string_literal: true | |
require 'json' | |
require 'net/http' | |
libs = [ | |
"aa3ffa6f-61d3-4cda-bf7d-89a856068fc3", | |
"563aa837-4865-4e4e-b0aa-6333c2634c64", | |
"385275da-c656-4f2f-918a-d4190828ae20", | |
'c50d9d60-5478-4c27-89d5-b3c6d1708438', |
View hlg.cr
This file contains 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
#!/bin/env -S crystal build | |
# Hard Link Generator | |
# Generates hard links for all files in a given folder, | |
# while also finding and replacing strings in the filenames. | |
# | |
# The folder is created for you, but existing files (Running it twice?) will cause errors. | |
# | |
# Usage: |
View tunnel.cr
This file contains 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
########################################################################### | |
# A small wrapper around Cloudflared that creates # | |
# a tunnel based on the given local and remote(optional) endpoints. # | |
# License: https://unlicense.org/ # | |
########################################################################### | |
## Config | |
# Under Windows+WSL you'll want to use .exe here. | |
# Since that's what I use personally it's the default. |
View cfd-termux.sh
This file contains 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
#!/bin/sh | |
echo 'NOTE: You can now install cloudflared directly from Termux repos.' | |
echo 'NOTE: To install it from source instead, open the script and comment out the next two lines.' | |
pkg install cloudflared | |
exit | |
# ^ comment out these lines to proceed with the script | |
echo "--upgrading packages" | |
yes "" | pkg update |
NewerOlder