10 private links
Story shared about the difference in management between US and Japanese culture
An article about DNS that was shared by Jon Moter at Zendesk. Mentioned by Vincente de Luca as well.
some good read about literal programming that I didn't know about
tons of interesting recipes, shared by Rob
Must learn Java framework
Great data structures in Java
Learn and improve my knowledge of testing
Java checkstyle from Spring framework
In Go
package main
import (
"fmt"
"math"
"math/rand"
"time"
)
func main() {
n := 10_000_000
r := rand.New(rand.NewSource(time.Now().UnixNano()))
count := 0
for i := 0; i < n; i++ {
x := r.Float64()
y := r.Float64()
pytha := math.Sqrt(x*x + y*y)
if pytha <= 1 {
count++
}
}
fmt.Println("Pi = ", float64(count)/float64(n)*4)
}
It's beautiful
Microsoft has deemed C++ no longer acceptable for writing mission-critical software. The industry sorely needs to move to a performant, memory-safe language for its low-low system work. And the best choice on the market today is Rust, Levick said.
I can't believe how complicated it is to create a bootable USB for Windows 10. Thank you Alex!
What Benjamin uses for my grandmother
From Wikipedia:
The zettelkasten (German: "slip box") is a knowledge management and note-taking method used in research and study.
TIL of the forming–storming–norming–performing model of group development
A good news and probably something to install finally on my two Pi at home :)
Apparently, one of the best article ever written for DP.
– source
An amazing cocktail, kinda similar to the Imperial Eagle, without the egg white and with Rye Whiskey instead of Bourbon. A new favorite!
2 ounces rye whiskey (preferably Old Overholt)
½ ounce Averna amaro
½ ounce fresh lemon juice
½ ounce Ginger Simple Syrup (click here for recipe)
Orange twist (for serving)
Note: The orange twist is very important to the overall flavor/complexity of the drink.
I have heard great thing about Kotlin. And there is also this:
https://play.kotlinlang.org/koans/overview
I should spend some time getting back into Android development for small financial apps.
Interesting game to try now that we have shelter in place
Today's facepalm with Java, the parameters order in which booting an application matters.
java -jar app.jar -Dsomething=property
will not work, but:
java -Dsomething=property -jar app.jar
works. Note sure about it…