I hereby claim:
- I am meise on github.
- I am meise (https://keybase.io/meise) on keybase.
- I have a public key whose fingerprint is 74A1 C6DF 095D 8A2B 9057 EAF7 2AD8 5968 05AF 72AB
To claim this, I am signing this object:
wget http://thyme.apnic.net/current/data-used-autnums | |
wget http://data.ris.ripe.net/rrc03/latest-bview.gz | |
bgpdump latest-bview.gz | ruby bgpdump_to_asn.rb data-used-autnums |
I hereby claim:
To claim this, I am signing this object:
"""Plugin for media.ccc.de | |
Supports: | |
- http://media.ccc.de (vod) | |
- http://streaming.media.ccc.de (livestreaming) | |
""" | |
import re | |
import requests | |
import json |
# for debugging purpose you may want to use "cat <logfile> | egrep -v -f /etc/logcheck/ignore.d.workstation/regex" | |
^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ sshd\[[[:digit:]]+\]: Did not receive identification string from ::ffff:[\.0-9]+$ | |
^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ sshd\[[[:digit:]]+\]: fatal: Read from socket failed: Connection reset by peer \[preauth\]$ | |
^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ sshd\[[[:digit:]]+\]: I(llegal|nvalid) user [^[:space:]]* from ([:.[:xdigit:]]+|UNKNOWN)$ | |
^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ sshd\[[[:digit:]]+\]: invalid public DH value: <= 1 \[preauth\]$ | |
^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ sshd\[[[:digit:]]+\]: Disconnecting: bad client public DH value \[preauth\]$ | |
^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ sshd\[[[:digit:]]+\]: Disconnecting: Change of username or service not allowed: \([[:alpha:]]+,ssh-connection\) -> \([[:alpha:]]+,ssh-connection\) \[preauth\]$ | |
^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ sshd\[[[:digit:]]+\]: Received disconnect from [:.[:xdig |
ffmpeg -re -y -i 'rtmp://127.0.0.1:1935/stream/s1_native_hd' -aspect 16:9 -threads:0 0 -fflags +genpts -flags +global_header -c:v libvpx -g 75 -keyint_min 75 -deadline realtime -b:v 2800k -ac 1 -maxrate:a 96k -c:v libvpx -c:a libvorbis -f webm - | /usr/local/bin/mse_webm_remuxer -cm 2000 - - | oggfwd -w 127.0.0.1 8000 PASSWORD /s1_native_hd.webm; |
#!/usr/bin/env ruby | |
# encoding: utf-8 | |
require 'socket' | |
hostname = Socket.gethostname | |
socket = UDPSocket.new | |
socket.setsockopt(Socket::SOL_SOCKET, Socket::SO_BROADCAST, true) |
msg = tb.msgq_out.delete_head() | |
msg_string = msg.to_string() | |
samples = np.fromstring(msg_string, dtype='float32') |
if [[ -e $HOME/.zsh/chpwd_profiles.zsh ]]; then | |
source $HOME/.zsh/chpwd_profiles.zsh | |
zstyle ":chpwd:profiles:/home/${USER}/projects(|/|/*)" profile projects | |
zstyle ":chpwd:profiles:(|/|/*)" profile default | |
# configuration for profile 'projects': | |
chpwd_profile_projects() { | |
[[ ${profile} == ${CHPWD_PROFILE} ]] && return 1 | |
print "chpwd(): Switching to profile: $profile" |
#!/bin/bash | |
# Convert all flac files in a directory structure into mp3 and take folder | |
# structure. | |
SOURCE_DIR=$1 | |
DEST_DIR=$2 | |
if [ $# -eq 0 ]; then | |
echo "Usage: ${0} source_dir destination_dir" |