@Google just published its answer to the private AI problem, and @belfortlabs is proud to be one of the main collaborators behind it!
Check out: https://t.co/HASFT7v8SN
Is Shardcake an alternative to Akka or Akka Cluster?
Not really: to be exact, Shardcake is an alternative to Akka Cluster Sharding and Akka Distributed PubSub. It does not cover any other of the many features of Akka (the same applies to Pekko).
I see many people moving from Scala and Haskell to Rust and I try to understand why.
Rust has many FP features, a good type system and most importantly has a growing professional market acceptance.
It was a splendid day at the #ArtOfScala conference yesterday! Thank you @ScalaWAW and @Evo_global for this event!
The slides and source code from my talk: `Scala Native in the World of Serverless` are now available here:
https://t.co/v4DTUoj4tj
Do you know how your coding practices can impact the environment? 🌍
Our latest blog post on sustainable programming in Scala explores this issue and offers practical tips for reducing your digital carbon footprint ➡️ https://t.co/478O4nc99x
#programming#Scala#carbonfootprint
Who is SBF and how did he go from being crypto's savior to the man that brought a trillion dollar industry to its knees?
I looked into it and here's the full story of his rise and fall:
After 16 months of work I'm ready to share https://t.co/8FtBldzYAe, my project to procedurally generate scenic landscapes, packaged as a chill driving game. Built with @threejs to run in your browser - no logins, no installs, just roads...
#threejs#procedural#webgl
Functional Design Code Smells:
The Hourglass Call Graph
Instead of passing a flag that dictates control flow, maintain the control flow in the caller and break out only common computations.
In 2012, Disney made the surprise announcement that they had just acquired a company nobody thought would ever be sold.
Lucasfilm (Star Wars) for $4.05B.
Here’s how a secret breakfast negotiation between Disney CEO Bob Iger & George Lucas made it happen.
Doing some cloud stuff with @unisonweb - beta starts soon (you can join waitlist at https://t.co/jfXGxJhrhJ). Here's me adding some numbers... IN THE CLOUD!!
This is sets up a secure connection, syncs dependencies on the fly, and runs the computation.
Welp. It’s the crypto bug of the year. Mark it down for April. Java 15-18 ECDSA doesn’t sanity check that the random x coordinate and signature proof are nonzero; a (0,0) signature validates any message. Breaks JWT, SAML, &c. https://t.co/t2WgnS0g3A
What I like about these Downing St. photos is that even if you had no idea who these leaders were, you could effortlessly pick out which one is the wealthy scion of a political dynasty, which one’s the Churchill wannabe and which one was a middle manager for a peanut butter firm
Buckle up. Come on a tour of London with a difference and find out how Putin's oligarchs hide and spend their money in the capital. Money-laundering expert @OliverBullough is your guide. 💰
JavaScript performance is bananas, a thread.
Let's write a function to sum the values from a the 'val' property of each element in an array:
function sum(arr) {
let acc = 0;
for (let i = 0; i < arr.length; i++) {
acc += arr[i].val;
}
return acc;
}
1/10