This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import xmlrpclib | |
from pprint import pprint | |
""" | |
A simple workout for the SoftLayer API as exposed via XML-RPC | |
""" | |
# TODO: Make this object-based instead of dictionary-based | |
# TODO: Read authentication information from a secure location | |
# TODO: Demonstrate how to call a method that requires a parameter | |
# Get this information from https://manage.softlayer.com/Administrative/apiKeychain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import xmlrpclib | |
""" | |
A simple Python wrapper for the SoftLayer API as exposed via XML-RPC | |
""" | |
# TODO: Make this object-based for services, data types, and methods instead of dictionary-based | |
# TODO: Read authentication information from a secure location | |
# TODO: Demonstrate how to call a method that requires a parameter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./bin/start-hbase.sh | |
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/hadoop/hbase/HBaseConfTool | |
Caused by: java.lang.ClassNotFoundException: org.apache.hadoop.hbase.HBaseConfTool | |
at java.net.URLClassLoader$1.run(URLClassLoader.java:200) | |
at java.security.AccessController.doPrivileged(Native Method) | |
at java.net.URLClassLoader.findClass(URLClassLoader.java:188) | |
at java.lang.ClassLoader.loadClass(ClassLoader.java:315) | |
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:330) | |
at java.lang.ClassLoader.loadClass(ClassLoader.java:250) | |
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:398) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ bin/hadoop org.apache.hadoop.hbase.PerformanceEvaluation sequentialWrite 4 | |
10/06/11 03:29:15 INFO zookeeper.ZooKeeper: Client environment:zookeeper.version=3.3.1-942149, built on 05/07/2010 17:14 GMT | |
10/06/11 03:29:15 INFO zookeeper.ZooKeeper: Client environment:host.name=172.28.172.2 | |
10/06/11 03:29:15 INFO zookeeper.ZooKeeper: Client environment:java.version=1.6.0_17 | |
10/06/11 03:29:15 INFO zookeeper.ZooKeeper: Client environment:java.vendor=Apple Inc. | |
10/06/11 03:29:15 INFO zookeeper.ZooKeeper: Client environment:java.home=/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home | |
10/06/11 03:29:15 INFO zookeeper.ZooKeeper: Client environment:java.class.path=/Users/hammer/codebox/hadoop-0.20.2+228/bin/../conf:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/tools.jar:/Users/hammer/codebox/hadoop-0.20.2+228/bin/..:/Users/hammer/codebox/hadoop-0.20.2+228/bin/../hadoop-0.20.2+228-core.jar:/Users/hammer/codebox/hadoop-0.20.2+228/bin/../lib/commons-cli-1.2.jar:/Users/hammer/codebox/hadoo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from string import Template | |
from distutils.util import strtobool | |
from flask import Flask, request | |
from flask.ext.restful import Api, Resource | |
import psycopg2 | |
# Flask-RESTful Api object | |
app = Flask(__name__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.{IOException, File, ByteArrayOutputStream} | |
import org.apache.avro.file.{DataFileReader, DataFileWriter} | |
import org.apache.avro.generic.{GenericDatumReader, GenericDatumWriter, GenericRecord, GenericRecordBuilder} | |
import org.apache.avro.io.EncoderFactory | |
import org.apache.avro.SchemaBuilder | |
import org.apache.hadoop.fs.Path | |
import parquet.avro.{AvroParquetReader, AvroParquetWriter} | |
import scala.util.control.Breaks.break | |
object HelloAvro { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.twitter.bijection.avro.{GenericAvroCodec, GenericAvroCodecs} | |
import com.twitter.bijection.Injection | |
import com.twitter.chill._ | |
import org.apache.avro.generic.{GenericRecord, GenericRecordBuilder} | |
import org.apache.avro.SchemaBuilder | |
import scala.util.{Failure, Success} | |
object HelloKryo { | |
def main(args: Array[String]) { | |
// Build a schema |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
pid=$1 | |
nsamples=$2 | |
sleeptime=$3 | |
for x in $(seq 1 $nsamples) | |
do | |
jstack $pid | |
sleep $sleeptime | |
done | \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type sample = { | |
x : float; | |
y : float | |
} | |
type model = { | |
theta : float; | |
beta : float | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import h5py | |
# HDF5 file with two arrays: 'trainxdata' (samples) and 'traindata' (labels) | |
INFILE_SAMPLES = '' | |
INFILE_REFERENCE_FASTA = '' | |
OUTFILE_FASTA = 'deepsea_train10k.fa' | |
OUTFILE_BED = 'deepsea_train10k.bed' | |
def onehot2base(onehot): | |
if onehot == [1,0,0,0]: |
OlderNewer