in main.go [186:190]
func IntFromParams(r *http.Request, param string) int { keys, _ := r.URL.Query()[param] i, _ := strconv.Atoi(keys[0]) return i }