Ben Tranter
Ben Tranter
Hey @tablecell, There's no method `Write` on the `*golf.Context` struct. You should use `Send` instead: ```go package main import "github.com/dinever/golf" func pageHandler(ctx *golf.Context) { ctx.Send(Page: " + ctx.Param("page")) } func...
Hey @UtsavPreet, we haven't added the DB slug sizes to the endpoint yet, but it's on our team's radar. The slug sizes are currently only documented in our public API...
@samdfonseca wanna work together, or split the work up on the API? I was going to work on it for awhile tonight, I'm on the Gophers Slack if you want...
I happened to see on my GitHub feed that @samdfonseca created a vendor branch the other day with Godep (creepy I know, haha). I think I've tried every vendoring tool...
@samdfonseca I think you should PR it, I'm cool with using Godep
Looks good to me! Just a few small grammatical changes and I think this could be merged after being synced with the latest master, we'll see what @dinever thinks though.
Hey @fernandez14, this is a really interesting PR, but I'm not sure if it'd fit within this project for a couple of reasons. Of course it's up to @dinever to...
I really like [ProseMirror](https://github.com/ProseMirror/prosemirror). It supports normal Markdown editing and WYSIWYG editing, and serializes it all to Markdown when you save it to the server. I'm not sure if it...
Hey @Shivakishore14, thanks for the suggestion. I could see this being a nice feature to have for users who aren't as familiar with the Go toolchain. There're a few considerations...
This may be related to https://github.com/golang/go/issues/25321.