Skip to content

Instantly share code, notes, and snippets.

View mikebrady's full-sized avatar

Mike Brady mikebrady

View GitHub Profile
@alexzielenski
alexzielenski / shairport-sync.rb
Created October 4, 2016 18:40
Home-brew formula for shairport-sync 2.8.5
class ShairportSync < Formula
desc "AirTunes emulator. Shairport Sync adds multi-room capability."
homepage "https://github.com/mikebrady/shairport-sync"
url "https://github.com/mikebrady/shairport-sync/archive/2.8.5.tar.gz"
head "https://github.com/mikebrady/shairport-sync.git"
depends_on "pkg-config" => :build
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "openssl"
@hartwork
hartwork / getrlimit_all.c
Created January 30, 2015 19:09
Simple tool to dump values of RLIMIT_* resources using getrlimit(2)
/* Simple tool to dump values of RLIMIT_* resources using getrlimit(2)
*
* Copyright (C) Sebastian Pipping <sebastian@pipping.org>
* Licensed under GPL v2 or later
*
* 2013-11-13
*
* Example output:
* RLIMIT_AS : -1 soft -1 hard
* RLIMIT_CORE : 0 soft -1 hard
@EliaCereda
EliaCereda / PKGBUILD
Last active August 29, 2015 14:13
shairport-sync-git Arch Linux package
# Maintainer: Elia Cereda <eliacereda+arch at gmail dot com>
pkgname=shairport-sync-git
pkgver=2.1.15.r1.gcf6594d
pkgrel=1
pkgdesc='Emulates an AirPort Express for the purpose of streaming music from iTunes and compatible iPods and iPhones'
url='https://github.com/mikebrady/shairport-sync'
arch=(i686 x86_64 armv6h armv7h)
license=('custom')
backup=(etc/conf.d/shairport-sync)
@splorp
splorp / DefaultCSS_Markdown.css
Last active February 23, 2023 00:29
A default stylesheet based on GitHub’s Markdown formatting for use with BBEdit’s Preview CSS feature.
body {
background-color: #FFF;
color: #333;
font: 15px Helvetica, arial, freesans, clean, sans-serif;
word-wrap: break-word;
line-height: 1.7;
padding: 0 20px 20px 20px;
width: 722px;
-webkit-font-smoothing: antialiased;
}