Skip to content

Instantly share code, notes, and snippets.

@ryankennedy
ryankennedy / LeakyBucket.scala
Created July 28, 2011 17:20
A leaky bucket implemented in Scala
import java.util.concurrent.{TimeUnit, SynchronousQueue}
/**
* Simple leaky bucket (http://en.wikipedia.org/wiki/Leaky_bucket) implementation using a
* SynchronousQueue.
*
* // This should take roughly 10 seconds to complete.
* val bucket = new LeakyBucket(100, TimeUnit.SECONDS)
* for (i <- 1 to 1000) {
* bucket.take()
Hi Ryan,
You have been identified as a candidate for Amazon or one of its many affiliate companies. As a US Federal Contractor, we are required to request that all candidates complete an on-line application that collects information necessary for Amazon and its affiliates to comply with federal reporting obligations.
If you are interested in being considered for an employment opportunity with us, please follow the link below to complete a short application.
To access this form, you will need a login name and password. To access your system-generated password, click the link below, then click "Forgot your Login or Password?" link at the bottom of the page. Enter your login name and we will send you an e-mail with a link to reset your password.
Your login name is: xxxxxxxxxxxxxxxxxx
import javax.ws.rs.*;
import java.io.File;
import java.lang.reflect.Method;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* JAX-RS utility class for locating all JAX-RS resources under a given ClassLoader.
import java.util.*;
/**
* List implementation that facilitates wrapping an existing list to convert the contents to another type.
*
* <pre>
* List<String> stringList = Arrays.asList("0", "1", "2", "3", "4");
* List<Integer> integerList = new TypeAdaptingList<Integer, String>() {
* Integer adapt(String value) {
* return Integer.parseInt(value);