I hereby claim:
- I am mdaniel on github.
- I am mdaniel (https://keybase.io/mdaniel) on keybase.
- I have a public key whose fingerprint is 8973 A0CA 67FF 5231 5C81 DB47 4742 E0C7 2E58 9FA7
To claim this, I am signing this object:
// ==UserScript== | |
// @name show mortgage cost on cleanoffer | |
// @author mdaniel | |
// @version 1.7.0 | |
// @namespace http://MatthewDaniel.com/greasemonkey/cleanoffer.com | |
// @include http://re.cleanoffer.com/b/zephyr/mybriefcase/viewnewmatch.htm* | |
// @match http://re.cleanoffer.com/b/zephyr/mybriefcase/viewnewmatch.htm* | |
// @include http://re.cleanoffer.com/b/zephyr/listing.htm* | |
// @match http://re.cleanoffer.com/b/zephyr/listing.htm* | |
// ==/UserScript== |
I hereby claim:
To claim this, I am signing this object:
export PATH="`brew --prefix ccache`/libexec:$PATH" | |
. $topsrcdir/browser/config/mozconfig | |
. $topsrcdir/build/macosx/mozconfig.common | |
export MOZILLA_OFFICIAL=1 | |
mk_add_options MOZ_BRANDING_DIRECTORY=browser/branding/aurora | |
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-ffdev-dbg | |
mk_add_options MOZ_MAKE_FLAGS="-j4" | |
mk_add_options AUTOCONF=`brew --prefix autoconf213`/bin/autoconf213 | |
ac_add_options --disable-debug |
#! /bin/bash | |
# can't -e because of all the potentially missing files/dirs | |
# and rm(dir) executions | |
set -u | |
args=`getopt dfn $*` | |
if [ $? != 0 ]; then | |
echo "Usage: $0 [-n] [-f|-d[d]] pkg-id" >&2 | |
exit 1 |
#! /usr/bin/env python2.7 | |
from __future__ import absolute_import, print_function | |
__docformat__ = 'reStructuredText' | |
import json | |
import mimetypes | |
import os | |
import re | |
import stat | |
import time | |
from uuid import uuid4 |
# copy this file and do-apt-stuff.sh into an empty directory | |
# along with the mesos source tar file, then "docker build ." | |
FROM ubuntu:14.04 | |
MAINTAINER Matthew L Daniel <[email protected]> | |
ADD do-apt-stuff.sh /tmp/apt.sh | |
RUN sh -x /tmp/apt.sh && rm /tmp/apt.sh | |
ADD mesos-0.20.1.tar.gz /tmp | |
RUN cd /tmp/mesos-0.20.1 && ./configure --prefix=/opt/mesos-0.20.1 && make && make install && tar cvzf /tmp/mesos-0.20.1-bin.tar.gz -C /opt mesos-0.20.1 | |
# now "docker cp ${container}:/tmp/mesos*bin.tar.gz mesos-0.20.1-bin.tar.gz" |
# vim:expandtab:sw=4 sts=4 | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU General Public License for more details. |
package com.radius.kafkastorm; | |
import java.io.ByteArrayInputStream; | |
import java.io.IOException; | |
import java.io.ObjectInputStream; | |
import java.util.Map; | |
import backtype.storm.generated.Bolt; | |
import backtype.storm.generated.ComponentObject; | |
import backtype.storm.generated.GlobalStreamId; |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = '2' | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = 'trusty-server-cloudimg-amd64-vagrant-disk1' | |
config.vm.box_url = 'http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box' | |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = '2' | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = 'trusty64' | |
config.vm.box_url = 'http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box' | |