Let this long package float,
Goto private class if short.
While protected with debugger case,
Continue volatile interface.
Instanceof super synchronized throw,
Extends final export throws.
Try import double enum?
- False, boolean, abstract function,
This file contains hidden or 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
# An explanation of this script is available on my blog https://jackburgess.dev/blog/truenas-jails-access-via-mdns | |
# This allows you a nice way of connecting to your jails via their hostname using mDNS | |
# e.g. for Netdata, which runs on port 3000, you can access it on your jail via: | |
# http://<jail ip>:3000/ | |
# But wouldn't it be nice to access it on | |
# http://jailhostname.local/ | |
# | |
# Oneliner to kickstart | |
# pkg install -y curl && curl --silent https://gist.githubusercontent.com/jack828/b8375b16b6fb9eae52201d4deb563ab7/raw | /bin/sh -s PORT |
This file contains hidden or 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
#!/usr/bin/env node | |
const puppeteer = require('puppeteer') | |
;(async () => { | |
const browser = await puppeteer.launch({ | |
headless: false, | |
args: ['--ignore-certificate-errors', '--disable-web-security'] | |
}) | |
const page = await browser.newPage() | |
await page.goto(`http://example.com/?${Date.now()}`, { |
This file contains hidden or 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
### Get this file from Mullvad | |
## https://mullvad.net/en/account/#/wireguard-config | |
[Interface] | |
PrivateKey = <snip> | |
Address = 10.65.0.190/32,fc00:bbbb:bbbb:bb01::2:bd/128 | |
DNS = 10.64.0.1 | |
[Peer] | |
PublicKey = <snop> |