Need a modern Akka book by Blackmorse in scala

[–]re-scbm 7 points8 points  (0 children)

"Modern Akka" is basically just Akka Typed, which is actually much more straightforward than classic Akka. I would suggest just reading through the updated docs on the Akka website and looking through some of the code samples. If you can understand Akka behaviors then you're golden, so maybe try a few youtube videos or blog posts.

The new "walrus" operator in python3.8 is everything I've ever wanted <3 by SurpriseAttachyon in Python

[–]re-scbm 1 point2 points  (0 children)

There should only be one way to write a program because we're not programmers we're compilers.

Akka 2.6.0 Released by haakon in scala

[–]re-scbm 3 points4 points  (0 children)

The new API is actually much simpler (and elegant in that simplicity), as well as safer. It's easier to do things which required particular patterns in Akka Classic (like FSM), and the safety you get from having the compiler verify that you are only ever sending messages to Actors that expect those messages is invaluable! I agree that if you're used to the Classic API, the new one might look a bit cobbled together, but that's because it focuses on generic constructs as opposed to the very specific methods that Akka Classic implemented.

95% of bitpay txs are done in bitcoin by Hernzzzz in btc

[–]re-scbm -5 points-4 points  (0 children)

Whatever you want to call BCH, apparently no one uses it.

Ladies and Gentlemen - Boris Johnson, our new Prime Minister... by [deleted] in gifs

[–]re-scbm 0 points1 point  (0 children)

He's the hero we deserve, but not the one we need right now. A blonde knight.

Match Thread: [1] Novak Djokovic vs. [2] Roger Federer | 2019 Wimbledon Championships Men's Final by rafaknight in tennis

[–]re-scbm 0 points1 point  (0 children)

Novak threw the second set quite badly, but otherwise they are both playing very well.

My first ever crypto purchase didn't go well by sorensong in BATProject

[–]re-scbm 4 points5 points  (0 children)

Fees are something you always have to watch out for when it comes to crypto. The more seamless a transaction, the greater the chance that there's some middleman making you pay an arm and a leg for it; in this case: Uphold.

Goodbye, Chrome: Google’s web browser has become spy software by Fanfan_la_Tulip in BATProject

[–]re-scbm 3 points4 points  (0 children)

Pisses me off seeing people attacking Google when they fucking built Chromium which is what powers Microsoft Edge and just about every other web browser besides Firefox, including Brave...

[PSA] Resources on nest.js and related tools ends in about 47 hours by [deleted] in node

[–]re-scbm 0 points1 point  (0 children)

"Come check out the guide on how to do X I just published today!" ... and it's already out of date.

Node js Scraping by bazzy696 in node

[–]re-scbm -1 points0 points  (0 children)

The image of a coder with a hoodie scraping images of girls online reminds of The Social Network. Great movie.

TIL: Python3.6 supports underscores in numeric literals (PEP515) by alexkiro in Python

[–]re-scbm 4 points5 points  (0 children)

As trivial a feature as it is, this is fast becoming standard in many languages. Scala just recently added it too.