10 private links
One day, to play with Istio locally and learn more about it
how to fix the bundle install, quote:
It seems that the latest version of XCode tools (12 Beta 3) installs a version of Clang (the C compiler used by default on MacOS) that throws an error on implicit functions used on the native extension code of Puma.
Running the following:
bundle config build.puma --with-cflags="-Wno-error=implicit-function-declaration"
bundle install
Fixed the issue
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.