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
| // ==UserScript== | |
| // @name Notion AI Removal | |
| // @namespace https://velvetcache.org/ | |
| // @version 2025-08-05 | |
| // @description Just Say No (to notion ai) | |
| // @author You | |
| // @match https://www.notion.so/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=notion.so | |
| // @grant none | |
| // ==/UserScript== |
| // ==UserScript== | |
| // @name Go Fiber Docs | |
| // @version 2025-04-17 | |
| // @description Temporarily change links from docs.gofiber.io to gofiber.github.io/docs | |
| // @author John Hobbs | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { |
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 |