TJ

Results 450 issues of TJ

Right not it can take an easy 15s, seems like a long time, we can just remove the directory and its contents.

enhancement
good first issue
performance

Someone tried to install k8s, but it leads to this error: ``` exit status 1: go: github.com/kubernetes/[email protected]: parsing go.mod: module declares its path as: k8s.io/kubectl but was required as: github.com/kubernetes/kubectl...

bug

Clean things up a bit. - [ ] apply a timeout to builds - [ ] return ReadCloser from builds instead of writing

Low priority, but it would be cool to have some badges/stats for installs.

enhancement

Currently only tags are supported, so you must have at least one release. It might be nice to resolve/support commits as well.

enhancement

- [ ] Plain-text when `!isatty` - [ ] Colored fancy output, maybe with progress bar when `isatty`

enhancement

- [ ] errors.Wrap, remove unnecessary wrapper structs etc - [ ] HTTPMethod -> Method - [ ] map -> http.Header etc

Instead of: ```go if os.Getenv("LAMBDA_FUNCTION_NAME") == "" { log.Fatal(http.ListenAndServe(":5555", h)) } else { apex.Handle(proxy.Serve(h)) } ``` Just do: ```go log.Fatal(apex.ListenAndServe(":5555", h)) ``` and let this pkg handle that

A single Lambda is only ever invoked serially, so there's no need for the concurrency support.