The Artima Developer Community
Sponsored Link

Java Buzz Forum
Library Dump

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Brian McCallister

Posts: 1282
Nickname: frums
Registered: Sep, 2003

Brian McCallister is JustaProgrammer who thinks too much.
Library Dump Posted: Apr 15, 2010 9:03 PM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Brian McCallister.
Original Post: Library Dump
Feed Title: Waste of Time
Feed URL: http://kasparov.skife.org/blog/index.rss
Feed Description: A simple waste of time and weblog experiment
Latest Java Buzz Posts
Latest Java Buzz Posts by Brian McCallister
Latest Posts From Waste of Time

Advertisement

So, dumping a bunch of libraries and library-like-things I have been meaning to write about for months…

At PhillyETE during my talk the JRugged library was recommended to me. It provides a decent looking, literal, implementation of Nygard’s Circuit Breaker. I haven’t used this, but it looks (from their example) like:

public class Service implements Monitorable {
    private CircuitBreaker cb = new CircuitBreaker();
    public String doSomething(final Object arg) throws Exception {
        return cb.invoke(new Callable<String>() {
                             public String call() {
                                 // make the call ...
                             }
                         });
    }
    public Status getStatus() { return cb.getStatus(); }
}

The next is from My friend Bob, who wanted a more pluggable (and HAML friendly) static site generator, so made Awestruct which looks so very nice, indeed!

Adam keeps telling me about all the fun hackery he has been doing with libusb. Sadly, I have not done any myself… YET!

Not a library, but awesome is Gephi for exploring your big dot graphs.

Dain put me onto David Blevin’s xbean-finder for doing all the newfangled classpath scanning in Java. It works very well :-)

Don’t remember how I found Mail but it is derned nice for all your ruby based email needs (except IMAP, sadly).

Okay, maybe not all your ruby email needs, having watched Martin slog through figuring these out a couple years ago, just use MMS2R to parse the random crap various carriers call MMS.

Just in case you missed it, google-diff-match-patch for all your C++, C#, Java, Javascript, Lua, and Python diff related needs.

Finally, Chris’s repl is not really a library either, but is shockingly useful.

Read: Library Dump

Topic: Paramount tests new frontier with Seagate drives loaded with `Star Trek,' other movies Previous Topic   Next Topic Topic: Senate peppers Pentagon with questions on electronic warfare, stalling cyber command launch

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use