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.
import java.net.URI | |
object URLutils { | |
type LS = List[String] | |
/** | |
* Extract a map of parameters from a URI |
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 | |
%% |
``` | |
[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 |
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.
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... |
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 erlang
and 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)
#!/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 | |