Stephen Afam-Osemene

Results 80 comments of Stephen Afam-Osemene

Changing my text size to >=11pt also fixed the issue for me. Ubuntu 16.04 Vim 7.4

Try this: First, change `logHandler` to this: ```go func logHandler(next http.handler) http.Handler { // logger } ``` It is generally better to use `http.Handler` for middlewares instead of `http.HandlerFunc`. `Handler`...

I'm guessing the way to implement this is to add a middleware around the login and register pages that redirects the user to the `AuthLoginOK` page if they are already...

Here is an example of my middleware, in case anyone wants to do something similar ```go func redirectIfLoggedIn(h http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { pid, err :=...

I agree that the module could be used for Email, Push, Voice or any other method.That's why I suggest that the module be renamed to something more generic. Then the...

I totally understand. When I start implementing this on the project I'm working on(maybe in a couple months), I'll definitely make a PR for this.

![image](https://user-images.githubusercontent.com/13472455/45357224-8df6ac80-b5bd-11e8-8668-88a419b88ac2.png) This is the entire readme of the star wars project. What I'm saying is that someone needs to dig into code to understand exactly how to get started. This...

This should not happen. I'll try this myself, but can you give a sample markdown that you know renders improperly?

I'll try to fix as soon as I can, but I have quite a bit on my plate now so it may be slower than expected.