Sam Herrmann

Results 13 issues of Sam Herrmann

The [Schematics Glossary](https://github.com/angular/angular-cli/tree/master/packages/angular_devkit/schematics#glossary) doesn't introduce what a `Task` is, making it difficult for new schematic developers to know what `Task`s should be used for and how they work. The _Schematics...

help wanted
area: docs
area: devkit/schematics
good first issue

After playing around with alice for a bit, I was wondering, might it be a good idea to provide a `Constructor` alternative whose signature is `func(http.HandlerFunc) http.HandlerFunc`? All my middleware...

The following is the snippet of code from [line 437-442 in auth_jwt.go](https://github.com/appleboy/gin-jwt/blob/v2.6.4/auth_jwt.go#L437), within the LoginHandler function: ```go data, err := mw.Authenticator(c) if err != nil { mw.unauthorized(c, http.StatusUnauthorized, mw.HTTPStatusMessageFunc(err, c))...

It looks like [jwt-go](https://github.com/dgrijalva/jwt-go) is not being actively maintained anymore. I came across a note on [Auth0's go-jwt-middleware project](https://github.com/auth0/go-jwt-middleware#go-jwt-middleware), who are also using jwt-go, that they are planning to move...

Both the gin-jwt library and the underlying jwt-go support a `TimeFunc`. By default, they are both initialized to `time.Now`. https://github.com/appleboy/gin-jwt/blob/v2.6.4/auth_jwt.go#L272: ```go if mw.TimeFunc == nil { mw.TimeFunc = time.Now }...

**Describe the Bug** Interactive Git rebase does not work inside a [VSCode development container](https://code.visualstudio.com/docs/remote/containers) when initiated through Git Graph and with VSCode set as Git's editor, i.e. [core.editor=code --wait](https://code.visualstudio.com/docs/editor/versioncontrol#_vs-code-as-git-editor) **Steps...

bug

After launching a new container with version 2.3.0, the following notification appears: > Catalog Search is currently configured to use the MySQL engine, which has been deprecated. Consider migrating to...

For demonstration purposes, consider running the license_finder container as follows: ```sh $ docker run -it --rm -v $(pwd):/scan --user $(id -u):$(id -g) licensefinder/license_finder ``` Inside of the container.... ```sh $...

unscheduled

Consider the following pseudo code for reading from a serial port: ```go // 1. Open port. port, _ := serial.Open("/dev/pts/1", mode) // 2. Listen to the "done" channel that emits...

bug

Before this commit, the TestGoGenerateVendoredPackages test failed to print stderr to the terminal as expected. Stderr was not printed because the test expected ExitError.Stderr to be populated. Per documentation [ExitError.Stderr]...