All gists

waja
Last active 3 months ago
0 0 1
1 #!/bin/bash
2 # install build essential packages
3 apt-get install --no-install-recommends build-essential fakeroot
4 # install build dependencies
5 apt-get install --no-install-recommends perl autotools-dev libdbi-dev libldap2-dev libpq-dev libmysqlclient-dev libfreeradius-client-dev libkrb5-dev libnet-snmp-perl procps
6 # install tools to create dist files
7 apt-get install --no-install-recommends autoconf automake
8 # create dist files
9 tools/setup
10 # configure the build
waja
Last active 3 months ago
0 0 1
1 #!/bin/bash
2
3 # This is a script to create a video from series of JPEG images
4 # Call it in a folder full of JPEGs that you want to turn into a video.
5 # Written on 2013-01-08 by Philipp Klaus <philipp.l.klaus →AT→ web.de>.
6 # Check <https://gist.github.com/4572552> for newer versions.
7 # Modified Version from: nv1t (coz of many image files)
8
9 # Resources
10 # * http://www.itforeveryone.co.uk/image-to-video.html
waja
Last active 3 months ago
0 0 1

Thanks for visiting this page. I hope that you enjoyed the presentation, and found value in this. Below are a set of resources that will help in learning more about some of the topics I shared, specifically around people and process management.

All links below are sanitized, and have no referral links in which I profit from.

Resources

  • Getting started with ChatOps? Take a look at Rundeck
    • What even is ChatOps? Check out this talk by Mark Imbriaco
  • Want to learn more about Deming and the PDCA (Plan, Do, Check, Act) cycle
  • Just getting started with ChatOps? Learn some People Integration tips
waja
Last active 3 months ago
0 0 1
1 #!/bin/sh
2 # as long as /var/lib/dpkg/info/apache2.postinst has no migration code, we need this script
3 # for details see http://anonscm.debian.org/cgit/pkg-apache/apache2.git/plain/debian/apache2.NEWS
4 APACHE2BASEDIR="/tmp/apache2"
5
6 # migrate vHost config
7 for SITECONF in $(ls -l ${APACHE2BASEDIR}/sites-enabled/ | awk {'print $9'} | grep -v ^$ | grep -v ".conf$"); do
8 echo "Migrating ${SITECONF}"
9 mv ${APACHE2BASEDIR}/sites-available/${SITECONF} ${APACHE2BASEDIR}/sites-available/${SITECONF}.conf
10 rm ${APACHE2BASEDIR}/sites-enabled/${SITECONF}