Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
-- MarI/O by SethBling | |
-- Feel free to use this code, but please do not redistribute it. | |
-- Intended for use with the BizHawk emulator and Super Mario World or Super Mario Bros. ROM. | |
if gameinfo.getromname() == "Super Mario World (USA)" then | |
Filename = "DP1.state" | |
ButtonNames = { | |
"A", | |
"B", | |
"X", |
23.21.150.121:3478 | |
iphone-stun.strato-iphone.de:3478 | |
numb.viagenie.ca:3478 | |
s1.taraba.net:3478 | |
s2.taraba.net:3478 | |
stun.12connect.com:3478 | |
stun.12voip.com:3478 | |
stun.1und1.de:3478 | |
stun.2talk.co.nz:3478 | |
stun.2talk.com:3478 |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
Instructions are for Ubuntu 22.04, with some notes for Ubuntu 24.04 but I didn't test it on 24.04, only on 22.04.
We'll install the following versions:
A zero‑storage, privacy‑preserving age check that leverages banks’ existing KYC — with the user as the transport layer.
[Unit] | |
Description=Docker Application Container Engine | |
Documentation=https://docs.docker.com | |
After=network-online.target docker.socket firewalld.service containerd.service time-set.target | |
Wants=network-online.target containerd.service | |
Requires=docker.socket | |
[Service] | |
Type=notify | |
# the default is not to use systemd for cgroups because the delegate issues still |
{ | |
"minecraft:banner_pattern": { | |
"minecraft:base": { | |
"asset_id": "minecraft:base", | |
"translation_key": "block.minecraft.banner.base" | |
}, | |
"minecraft:border": { | |
"asset_id": "minecraft:border", | |
"translation_key": "block.minecraft.banner.border" | |
}, |
{ | |
"Print to console": { | |
"scope": "javascript,typescript,typescriptreact", | |
"prefix": "log", | |
"body": [ | |
"// eslint-disable-next-line no-console", | |
"console.log('$1 :', $1);" | |
], | |
"description": "Log output to console" | |
}, |
# To set this up, first get tailscale working in an isolated linux shell: | |
# 1. sudo systemctl stop tailscaled.service | |
# 2. tailscaled -port 9993 -state tailscale-luks-setup.state -tun userspace-networking -socket ./tailscaled.sock | |
# 3. tailscale -socket ./tailscaled.sock up -hostname HOSTNAME-luks | |
# 4. tailscale -socket ./tailscaled.sock down | |
# 5. ctrl-c out of tailscaled | |
# 6 sudo systemctl start tailscaled.service | |
# | |
# Then add the .state file to your machine secrets and pass its path as tailscaleStatePath. |
require 'net/http' | |
require 'json' | |
require 'base64' | |
require 'uri' | |
# Programmatically remove backgrounds from input images using the PixLab BG-REMOVE API endpoint. | |
# | |
# Refer to the official documentation at: https://pixlab.io/endpoints/background-remove-api for the API reference | |
# guide and more code samples. |