Dates | Conference | Location |
---|---|---|
Jan 29. | dotSwift | Paris |
March 15. - 16. | appdevcon | Amsterdam |
March 22. - 23. | iOSCon | London |
April 16. - 17. | Appbuilders | Lugano |
May 08. - 11. | Craft-Conf | Budapest |
May 13. - 16. | UIKonf | Berlin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# join/combine HLS segments to one file and convert it to mp3 | |
cd /dir/with/segments | |
cat `ls -1v *.ts` > stream.m4a | |
ffmpeg -i stream.m4a -ab `ffmpeg -i stream.m4a 2>&1 | grep Audio | awk -F', ' '{print $5}' | cut -d' ' -f1`k stream.mp3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CONFIG | |
SNMP_COMMUNITY=public | |
SYSCONTACT=dan | |
SYSLOCATION=Berlin | |
# get packages | |
apt-get install snmpd xinetd vim | |
mkdir -p /opt/observium && cd /opt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
### A simple helper script for using ansible and vagrant together. | |
# Usually you don't need an inventory file for vagrant, since one is created | |
# automatically. But if you want to give your vagrant host a special group | |
# or assign some variables, this script becomes handy. | |
# | |
# Use it like this: | |
# 1) create a file e.g ansible/inventories/vagrant.py and paste the content of this gist |