This script is used to patch and subset the Source Code Pro font for use on my blog.
More details are available at velvetcache.org/2024/02/12/box-drawing-on-the-web
This script is used to patch and subset the Source Code Pro font for use on my blog.
More details are available at velvetcache.org/2024/02/12/box-drawing-on-the-web
import unittest | |
suite "description for this stuff": | |
test "essential truths": | |
require(true) |
FROM busybox | |
ARG THE_SECRET | |
RUN echo "::${THE_SECRET}::" |
I hereby claim:
To claim this, I am signing this object:
FROM scratch | |
ADD main / | |
EXPOSE 8080 | |
CMD ["/main"] |
FROM ubuntu:xenial | |
RUN apt-get update && \ | |
apt-get install -yq software-properties-common python-software-properties && \ | |
add-apt-repository ppa:mc3man/ffmpeg-test && \ | |
apt-get update && \ | |
apt-get install -yq ffmpeg-static | |
ADD stabilize.sh /opt/ |
TRANSMISSION_RPC_PASSWORD="set something here" | |
add-apt-repository -y ppa:transmissionbt/ppa | |
apt-get -y update | |
apt-get install -qy nginx transmission-cli transmission-daemon | |
ufw status | |
ufw allow 22 | |
ufw allow 443 | |
ufw allow 1194 |
I hereby claim:
To claim this, I am signing this object:
#!/usr/local/bin/python | |
import requests | |
import subprocess | |
# Configure Your Info Here | |
DOMAIN = "https://YOU.harvestapp.com" | |
USERNAME = "" | |
PASSWORD = "" | |
# / End Config |