https://liveproduseast.global.ssl.fastly.net/btv/desktop/us_live.m3u8
https://bblive-liveproduseast.hs.llnwd.net/btv/desktop/us_live.m3u8
#!/bin/sh | |
set -o errexit | |
(apt-key finger | grep "5273D52") || curl -L https://raw.githubusercontent.com/britannic/debian-repo/master/blacklist/public.key | sudo apt-key add - | |
configure | |
(show system package repository | grep blacklist) || \ | |
set system package repository blacklist components main \ | |
&& set system package repository blacklist description 'Britannic blacklist debian wheezy repository' \ |
Version | Build | MD5 | SHA-1 | SHA-256 | |
---|---|---|---|---|---|
10.12.3 | 16D32 | 6e8131542352bb5417e3a2809051ccb7 | 77d354ec06df0d0acc37c105ae524ba96948142b | 75a288fe6efc0591f757baf08305270f1b843b54cfb66fe6b257049400a0d6e9 | |
10.12.2 | 16C68 | 1ab937e03f9b722c8f702b1d401ace53 | 94f9e8f7ae2540dee6fe3465f60fc037e2547d16 | 6e8ccda1849bb49b1acf75f455019fe327adb47c676dbff018ea811c2456dcce | |
10.12.2 | 16C67 | 43aa19eee715f0aac08cb6783fc35cab | 1432e3be6222c434b536721076ed8b16b1c6050e | 6c2b16f248407a3853a9c4a63efadc94813321708f5eed5c09b73f33e5edd855 | |
10.12.1 | 16B2659 | f7f147c54627c2a9beb1fa318394e1579b30b167 | 8efa85e12bcc6c2145cce68b6ecaf9ce23e11f58c1452982b1907fe0f9f76fd1 | ||
10.12.1 | 16B2657 | 42856038d3089e36c37bb9a3de9b60dd | e559e142a4c9ebaaa740c575d5c3c23c6eb3fb06 | 8608c0cebf689431ad35d37bcb0035aac266c78f95e7e2a3fd8104d153a24e9b | |
10.12 | 16A323 | 98eb1328baa53f5b1e8445c869fcbb3a | 139ef35e4af0da8286b2a3af326cb114d774f606 | 78a2701bb63a0dcb30862314d1a4598522cfe6a2dd2b096a4e30f256909a4446 | |
10.11.6 | 15G31 | 06f6e4a7b1996c542cbda28eb5f7a8f2 | 7739e3f62080000da5d28efa689c53976112a262 | 0b8156957236865 |
;; Truncated, retrying in TCP mode. | |
; <<>> DiG 9.8.3-P1 <<>> @ns.immobilienscout24.de. TXT 20170320122302._domainkey.immobilienscout24.de | |
; (1 server found) | |
;; global options: +cmd | |
;; Got answer: | |
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 17533 | |
;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 3, ADDITIONAL: 1 | |
;; WARNING: recursion requested but not available |
Vorbild: http://www.techspot.com/review/1218-affordable-40-thread-xeon-monster-pc/
1x Intel S2600CW2R 510€ http://geizhals.de/intel-s2600cw2r-dbs2600cw2r-a1390431.html?hloc=at&hloc=de
alternativ zB http://geizhals.de/gigabyte-md60-sc1-a1441414.html
Board muss einerseits das typische ES-Stepping (0) supporten, andererseits auch ausreichend RAM-Slots (16-24) bieten.
4x 64GB RAM 920€ (16 Modules = 256GB) http://geizhals.de/crucial-ballistix-sport-lt-weiss-dimm-kit-64gb-bls4c16g4d240fsc-a1320281.html?hloc=at&hloc=de
UDIMM wird von den allermeisten Boards nicht supported, RDIMM ist 30-40% teurer.
#!/usr/bin/perl -w | |
use strict; | |
use diagnostics; | |
use Net::DNS; | |
print "IPv6-Erhebung am Hochtechnologiestandort Deutschland.\n\n"; | |
print "Es wurden die Homepages der DAX-Unternehmen auf IPv6-Support untersucht.\n\n"; | |
printf "%-35s %s\n", 'Hostname', 'IPv6-Adresse'; | |
printf "%-35s %s\n", '--------', '------------'; |
source AS Amsterdam: AS20473 (choopa.com/vultr) | |
source AS Munich: AS31334 (Kabel Deutschland/Vodafone Germany) | |
Cable 100/12 Mbit/s | |
- Munich: direct => super slow to Munich Akamai Mirror | |
- AMS: Muc-AMS via IPSec VPN => decent speed to AMS Akamai mirror |
#!/bin/bash | |
function copy_data_bag() { | |
data_bag=$1 | |
data_bag_item=$2 | |
new_data_bag_item=$3 | |
tmp_file_old=$(mktemp) | |
tmp_file_new=$(mktemp) | |
chef exec knife data bag show ${data_bag} ${data_bag_item} -f json > ${tmp_file_old} |
# | |
# $ convert_and_send_to_ipad Billions.S01E04.720p.HDTV.x264-AVS.mkv | |
# ... | |
ac3mp3() { | |
file=$@ | |
pre=${file:r} | |
ext=${file:e} | |
ffmpeg -i ${file} -acodec mp3 -vcodec copy ${pre}-ipad.${ext} |
#!/bin/bash | |
# via https://github.com/lukas2511/letsencrypt.sh/pull/107 | |
function deploy_challenge { | |
local DOMAIN="${1}" TOKEN_FILENAME="${2}" TOKEN_VALUE="${3}" | |
# This hook is called once for every domain that needs to be | |
# validated, including any alternative names you may have listed. | |
# |