Skip to content

Instantly share code, notes, and snippets.

View binarytemple's full-sized avatar

Bryan Hunt binarytemple

  • The mountains of mourne
View GitHub Profile
@binarytemple
binarytemple / URLutils.scala
Created July 5, 2013 16:09
Extract parameters from a URL
import java.net.URI
object URLutils {
type LS = List[String]
/**
* Extract a map of parameters from a URI
@binarytemple
binarytemple / PollingSchedulerTest.scala
Created July 17, 2013 11:10
Polling Scheduler test case
package com.zeebox.context.feedsingest.server
import com.typesafe.config.Config
import com.zeebox.context.feedsingest.config.TrapitConfig
import com.zeebox.context.feedsingest.trapit.HasTrapitConfig
import com.zeebox.core.config.ConfigLoader
import org.junit.runner.RunWith
import org.specs2.runner.JUnitRunner
import org.specs2.mutable.SpecificationWithJUnit
import org.specs2.mock.Mockito
package com.zeebox.context.feedsingest.server
import com.typesafe.config.Config
import com.zeebox.context.feedsingest.config.TrapitConfig
import com.zeebox.context.feedsingest.trapit.HasTrapitConfig
import com.zeebox.core.config.ConfigLoader
import org.junit.runner.RunWith
import org.specs2.runner.JUnitRunner
import org.specs2.mutable.SpecificationWithJUnit
import org.specs2.mock.Mockito
-module(timeit).
-compile(export_all).
%% @doc Dynamically add timing to MFA. There are various types of
%% timing.
%%
%% all - time latency of all calls to MFA
%%
%% {sample, N, Max} - sample every N calls and stop sampling after Max
%%
@binarytemple
binarytemple / crash
Created May 15, 2014 19:31
vagrant crash
```
[120/1987]
GATHERING FACTS ***************************************************************
<10.42.0.6> ESTABLISH CONNECTION FOR USER: vagrant
<10.42.0.8> ESTABLISH CONNECTION FOR USER: vagrant
<10.42.0.7> ESTABLISH CONNECTION FOR USER: vagrant
<10.42.0.6> REMOTE_MODULE setup
<10.42.0.7> REMOTE_MODULE setup
<10.42.0.8> REMOTE_MODULE setup
<10.42.0.6> EXEC ['ssh', '-C', '-tt', '-vvv', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=60s', '-o', 'ControlPath=/Users/bryan/.ansible/cp/ansible-ssh-%h-%p-%r', '-o', 'Stric
@binarytemple
binarytemple / scala.html.parsing.markdown
Last active August 29, 2015 14:01
Scala html parsing

Some tricks for parsing html using Scala

import scala.xml.factory.XMLLoader
import scala.xml._
import scala.xml.parsing.{NoBindingFactoryAdapter}

object MyReader extends App {

//val parser1: XMLLoader[Elem] = XML.

Summary

I'm trying to figure out how to use rebar to:

  • create erlang project
  • add a dependency on an erlang module from github
  • start the app via the erl console
  • create a release and start the app from the release (via the generated scripts)
Fri 20 Jun 2014 23:20:03 BST
==> riak-03: Forcing shutdown of VM...
==> riak-03: Destroying VM and associated drives...
==> riak-03: Running cleanup tasks for 'ansible' provisioner...
==> riak-02: Forcing shutdown of VM...
==> riak-02: Destroying VM and associated drives...
==> riak-01: Forcing shutdown of VM...
==> riak-01: Destroying VM and associated drives...
Bringing machine 'riak-01' up with 'virtualbox' provider...
Bringing machine 'riak-02' up with 'virtualbox' provider...
@binarytemple
binarytemple / kerl-erlang.markdown
Last active May 24, 2016 14:13
Installing Erlang, and Riak on OSX and others - using Kerl, Homebrew, and package managers

Installing Erlang, and Riak on OSX and others - using Kerl, Homebrew, and package managers

Abstract: An overview of the the process involved in installing Erlang, and Riak on OSX and others - using Kerl, Homebrew, and package managers - this document is intended for a developer audience, for casual OSX users - just run brew install erlangand let the package manager do all the work for you. Riak bundles it's own Erlang VM, so if that's all you want just download the Riak package from the Basho website, no further work required.


#Stage 1 (Setup chores)

OSX prerequisites

#!/usr/bin/env python
import httplib
import json
from datetime import datetime, date, time
from time import sleep
import os.path
from multiprocessing import Process