Skip to content

Instantly share code, notes, and snippets.

View Azhovan's full-sized avatar
🎯
Log the error and degrade gracefully!

Jabar Asadi Azhovan

🎯
Log the error and degrade gracefully!
View GitHub Profile
@Azhovan
Azhovan / FastFibo.go
Last active December 1, 2019 19:15
High-performance Fibonacci numbers implementation in Golang
package main
import (
"fmt"
"math/big"
)
func main() {
fmt.Println(Fib(1000))
}
@Azhovan
Azhovan / mac-setup-redis.md
Created May 7, 2020 21:48 — forked from tomysmile/mac-setup-redis.md
Brew install Redis on Mac

type below:

brew update
brew install redis

To have launchd start redis now and restart at login:

brew services start redis