A Taste of Honey Shawl

<1 min read

A Taste of Honey Shawl

Done with the Tunisian crochet Taste of Honey Shawl...

Toots du Jour (Nov 13)

<1 min read

Cold Storage

2 min read

When a mutating, highly contagious fungus escapes a sealed facility, two young employees – joined by a grizzled bioterror operative – must survive the wildest night shift ever to save humanity from extinction.

Toots du Jour (Nov 12)

<1 min read

Good Luck, Have Fun, Don't Die

2 min read

A man from the future arrives at a diner in Los Angeles where he must recruit the precise combination of disgruntled patrons to join him on a one-night-six-block quest to save the world from the terminal threat of a rogue artificial intelligence.

Frankfurter4J v0.9.1

<1 min read

I've released the second version of Frankfurter4J, a Java implementation of the Frankfurter.dev API to retrieve reference exchange rates.

var latestRates = new LatestRates.Builder()
        .amount(100.0)
        .base("USD")
        .symbols("EUR", "GBP")
        .build();
var exchangeRates = latestRates.exchangeRates();
var euro = exchangeRates.rateFor("EUR");
var britishPound = exchangeRates.rateFor("GBP");

As usual, source and documentation are on GitHub.