- Instructions on installing a non-desktop version of docker is inconvenient to find in the official documentation.
- I've collected the official steps for major platforms here for reference.
- only supports iptables-nft and iptables-legacy
const walk = (acc = [], outer) => { | |
if (typeof outer === null) { | |
return acc | |
} | |
if (typeof outer === 'string') { | |
if (outer === ' ') { | |
return acc | |
} |
const tf = function (attachPoint) { | |
const root = globalThis || window | |
const dom = root.document || document | |
function selectEl(el) { | |
if (el.ELEMENT_NODE) { | |
return el | |
} | |
else { | |
return dom.querySelector(el) |
/** | |
CHANGELOG | |
2-10-25 - Ask about whether to use webviews. | |
*/ | |
/** | |
* This script is a JavaScript for Automation (JXA) script that uses the SiteSucker app to download a website. | |
* | |
* Background: JXA is dogshit. I know there is no need to hold back on the cursing, because if you are using JXA, | |
* you have already explored every explitive available. The official JXA documentation is apple's changelog which |