Toots du Jour (Nov 12)
<1 min read
- The Java Card Development Kit 25.1 is Now Available #java #javacard blogs.oracle.com/java/post/rel… #
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.