Skip to content

Instantly share code, notes, and snippets.

@connaisseur
connaisseur / de-Vodafone_Muenchen
Created July 2, 2020 09:49
Channel setup for german DVB-C Network for the City of Munich, Germany, valid where operated by Vodafone
# Vodafone Muenchen - ex-Kabel Deutschland Network
# Created from https://helpdesk.vodafonekabelforum.de/sendb/belegung-16.html
#
[CHANNEL]
DELIVERY_SYSTEM = DVBC/ANNEX_A
FREQUENCY = 122000000
SYMBOL_RATE = 6900000
INNER_FEC = NONE
MODULATION = QAM/64
INVERSION = AUTO
@connaisseur
connaisseur / PKGBUILD
Created April 30, 2019 16:30
AUR ttf-ibm-plex-git complete PKGBUILD with pkgver() function + source line for firewalled hosts
# Maintainer: erk <valdemarerk at gmail dot com>
pkgname=ttf-ibm-plex-git
pkgver=1.4.1.r2.gdec2bc78
pkgrel=1
pkgdesc="IBM Plex"
arch=('any')
url='https://ibm.github.io/type/'
license=('SIL Open Font License, Version 1.1')
depends=('fontconfig' 'xorg-font-utils')
makedepends=('git')
@connaisseur
connaisseur / PKGBUILD.diff
Created April 30, 2019 16:28
AUR ttf-ibm-plex-git PKGBUILD unified DIFF
--- PKGBUILD.SAVE 2019-04-30 18:00:47.782043418 +0200
+++ PKGBUILD 2019-04-30 18:02:05.348272493 +0200
@@ -1,6 +1,6 @@
# Maintainer: erk <valdemarerk at gmail dot com>
pkgname=ttf-ibm-plex-git
-pkgver=1.0.1
+pkgver=1.4.1.r2.gdec2bc78
pkgrel=1
pkgdesc="IBM Plex"
arch=('any')
@connaisseur
connaisseur / log-adapter-0_1
Created September 7, 2015 04:33
minisatip-git r175.2d4b745-1 with options ddbridge adapter_nr=0,1
[07/09 06:30:13.004]: Starting minisatip version 0.3.48, compiled with s2api version: 050A
[07/09 06:30:13.005]: New UDP socket 3 bound to 0.0.0.0:1900
[07/09 06:30:13.005]: setting multicast for 239.255.255.250
[07/09 06:30:13.005]: New UDP socket 4 bound to 239.255.255.250:1900
[07/09 06:30:13.005]: sockets_add: handle 3 (type 0) returning socket index 0 [0.0.0.0:0] read: 0x406350
[07/09 06:30:13.005]: sockets_add: handle 4 (type 0) returning socket index 1 [0.0.0.0:0] read: 0x406350
[07/09 06:30:13.005]: sockets_add: handle 5 (type 2) returning socket index 2 [0.0.0.0:0] read: 0x40621e
[07/09 06:30:13.005]: sockets_add: handle 6 (type 2) returning socket index 3 [0.0.0.0:0] read: 0x40621e
[07/09 06:30:13.005]: starting init_hw 0
[07/09 06:30:13.008]: trying to open [0] adapter 0 and frontend 0
@connaisseur
connaisseur / log
Last active September 7, 2015 04:34
log minisatip-git r175.2d4b745 - no dvb adapter found - with options ddbridge adapter_nr=2,3
[07/09 06:20:31.003]: Starting minisatip version 0.3.48, compiled with s2api version: 050A
[07/09 06:20:31.006]: New UDP socket 3 bound to 0.0.0.0:1900
[07/09 06:20:31.006]: setting multicast for 239.255.255.250
[07/09 06:20:31.006]: New UDP socket 4 bound to 239.255.255.250:1900
[07/09 06:20:31.007]: sockets_add: handle 3 (type 0) returning socket index 0 [0.0.0.0:0] read: 0x406350
[07/09 06:20:31.007]: sockets_add: handle 4 (type 0) returning socket index 1 [0.0.0.0:0] read: 0x406350
[07/09 06:20:31.007]: sockets_add: handle 5 (type 2) returning socket index 2 [0.0.0.0:0] read: 0x40621e
[07/09 06:20:31.007]: sockets_add: handle 6 (type 2) returning socket index 3 [0.0.0.0:0] read: 0x40621e
[07/09 06:20:31.007]: starting init_hw 0
[07/09 06:20:31.010]: trying to open [2] adapter -1 and frontend -1
@connaisseur
connaisseur / POODLE-taming_for_Tornado.patch
Created May 26, 2015 13:22
GateOne - Patch against SSL POODLE attack
--- GateOne/gateone/core/server.py.old 2015-05-26 12:25:47.000000000 +0200
+++ GateOne/gateone/core/server.py 2015-05-26 12:45:10.000000000 +0200
@@ -4394,7 +4394,8 @@
ssl_options = {
"certfile": go_settings['certificate'],
"keyfile": go_settings['keyfile'],
- "cert_reqs": cert_reqs
+ "cert_reqs": cert_reqs,
+ "ssl_version": ssl.PROTOCOL_TLSv1
}