Skip to content

Instantly share code, notes, and snippets.

View florinutz's full-sized avatar
🌴
I'd much rather have Foucalt quoted at computer conferences than Dijkstra

Florin florinutz

🌴
I'd much rather have Foucalt quoted at computer conferences than Dijkstra
  • Berlin
View GitHub Profile
package main
import "fmt"
func main() {
strs := []string{"a", "b", "c"}
strs2 := []string{"b", "c", "d"}
fmt.Println(intersection(strs, strs2))
}
@florinutz
florinutz / review.patch
Created November 29, 2019 12:50
code review for rookie
Index: internal/mywebapp/users/users_test.go
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- internal/mywebapp/users/users_test.go (date 1575024740000)
+++ internal/mywebapp/users/users_test.go (date 1575030918663)
@@ -1,6 +1,7 @@
package users_test