Pro Tip: to learn to do something, practice doing it
Pro Tip: to learn to do something, practice doing it
fugitive
lazygit:
Make a cron job for git add . && git commit "$(date)" && git push -f
I just get too excited about actually implementing/fixing something (random things that I see along the way) more than commit ceremony (nobody will care about it in my project anyway other than one random guy who gave the repo a star)
Because electron
In Go “==” operator works for everything by default, I like it more:
type A struct { Name string Quality int } func main() { var x A var y A fmt.Printf("%v", x == y) }
(if all you want is to compare all corresponding fields which you usually want)