server 162.159.200.123
server 162.159.200.1
server 129.134.28.123 # SJC
#!/bin/ash | |
# There are some breaking changes to EFI upgrading from earlier versions of Alpine to 3.20 | |
# The following should work based on the 3.20 changelog | |
# It should be run as root after upgrading to 3.20 BUT before rebooting. YMMV | |
# Links | |
# https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.20.0 | |
# https://gitlab.alpinelinux.org/alpine/alpine-conf/-/blob/master/setup-disk.in#L320-324 |
/* | |
the twitter api is stupid. it is stupid and bad and expensive. hence, this. | |
Literally just paste this in the JS console on the bookmarks tab and the script will automatically scroll to the bottom of your bookmarks and keep a track of them as it goes. | |
When finished, it downloads a JSON file containing the raw text content of every bookmark. | |
for now it stores just the text inside the tweet itself, but if you're reading this why don't you go ahead and try to also store other information (author, tweetLink, pictures, everything). come on. do it. please? | |
*/ |
# The default config still enables TLS 1.0 and 1.1 | |
# | |
# This only allows TLS 1.2 as well as narrows the cipher options considerably | |
index gl_home.html; | |
lua_shared_dict shmem 12k; | |
lua_shared_dict nonces 16k; | |
lua_shared_dict sessions 16k; | |
lua_code_cache off; |
#!/bin/sh | |
# | |
# from https://forum.openwrt.org/t/openwrt-23-05-0-rc1-first-release-candidate/162544/27 | |
# | |
# auc will not work as-is to upgrade from 22.03 to 23.05 due to the mbedtls switch | |
# therefore, we need to first switch from wolfssl to mbedtls while on 22.03 before using auc | |
# | |
cd /root || exit | |
opkg update |
### WARNING: READ CAREFULLY BEFORE ATTEMPTING ### | |
# | |
# Officially, this is not recommended. YMMV | |
# https://www.raspberrypi.com/news/bookworm-the-new-version-of-raspberry-pi-os/ | |
# | |
# This mostly works if you are on 64bit. You are on your own if you are on 32bit or mixed 64/32bit | |
# | |
# Credit to anfractuosity and fgimenezm for figuring out additional details for kernels | |
# |
# https://grimminck.medium.com/building-a-threat-intelligence-feed-using-the-twitter-api-and-a-bit-of-code-5787808e32ef | |
# https://news.ycombinator.com/item?id=31544816 | |
curl https://twitter.threatintel.rocks/ --silent | jq -r '.malicious_urls | .[]' | sort -u | grep -v … |
#!/bin/bash | |
# Retries a command a with backoff. | |
# | |
# The retry count is given by ATTEMPTS (default 100), the | |
# initial backoff timeout is given by TIMEOUT in seconds | |
# (default 5.) | |
# | |
# Successive backoffs increase the timeout by ~33%. | |
# |
services: | |
prodfiler: | |
container_name: prodfiler | |
image: optimyze/pf-host-agent:release-1.0.0 | |
privileged: true | |
pid: host | |
command: ["/root/pf-host-agent", "-t", "all"] | |
environment: | |
- PRODFILER_PROJECT_ID=${PRODFILER_PROJECT_ID} |
This gist has migrated to the repo below.
Please submit new entries as pull requests to https://github.com/jauderho/nts-servers.
Initial source: https://docs.ntpsec.org/latest/NTS-QuickStart.html