News
- Google Reader
- Instapaper
- Pinboard
- Readability
- Storify
<?php | |
//set_include_path(get_include_path() . PATH_SEPARATOR . __DIR__); // optional | |
spl_autoload_register(function ($class) { | |
$file = preg_replace('#\\\|_(?!.+\\\)#','/', $class) . '.php'; | |
if (stream_resolve_include_path($file)) | |
require $file; | |
}); |
#!/bin/sh | |
# curl {URL to this script} | sh -s | |
# install docker | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
sudo apt-get update | |
apt-cache policy docker-ce | |
sudo apt-get install -y docker-ce | |
sudo systemctl status docker |
#!/usr/bin/env bash -x | |
# Creates RAM disk. | |
# | |
# SYNOPSIS | |
# create_ramdisk [size [label]] | |
# | |
# OPTIONS | |
# size: RAM disk size in megabytes. Default: 1024 | |
# label: RAM disk volume label. Default: UUID |
[Unit] | |
Description=BtcPayServer daemon | |
Requires=btcpayserver.service | |
After=nbxplorer.service | |
[Service] | |
ExecStart=/usr/bin/dotnet run --no-launch-profile --no-build -c Release -p "/home/sitedata/source/btcpayserver/BTCPayServer/BTCPayServer.csproj" -- $@ | |
User=sitedata | |
Group=sitedata | |
Type=simple |
[Unit] | |
Description=Monero Full Node | |
After=network.target | |
[Service] | |
User=sitedata | |
Group=sitedata | |
Type=forking | |
PIDFile=/home/sitedata/.bitmonero/monerod.pid |
ಠ_ಠ | |
( ͡° ͜ʖ ͡°) | |
¯\_(ツ)_/¯ | |
(╯°□°)╯︵ ┻━┻ | |
http://www.fileformat.info/convert/text/upside-down.htm | |
WRTTN http://wrttn.me/30dbfd/ | |
Unicode Emoticons |
ddns-update-style none; | |
deny bootp; #default | |
authoritative; | |
include "/etc/dhcp/ipxe-option-space.conf"; | |
# GREEN (private network) | |
subnet 10.1.1.0 netmask 255.255.255.0 { | |
range 10.1.1.100 10.1.1.199; | |
option subnet-mask 255.255.255.0; |
<?php | |
/* | |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
#!/bin/bash | |
# Filter and route on hostname using SNI | |
# https://github.com/Lochnair/xt_tls/issues/52 | |
# This creates iptables rules and ip rules to filter and route HTTPS traffic based on hostname in SNI field | |
# Some links on why packets might be droped, see rp_filter below | |
# https://serverfault.com/questions/934848/ip-rule-to-works-but-ip-rule-fwmark-fails-why | |
# https://serverfault.com/questions/932205/advanced-routing-with-firewall-marks-and-rp-filter | |
# https://serverfault.com/questions/816393/disabling-rp-filter-on-one-interface |