A Taste of Honey Shawl
<1 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.
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.
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.