David Pennington

Results 68 issues of David Pennington

[sync.Pool](https://golang.org/pkg/sync/#example_Pool) seems to offer the same features so I'm wondering what differences exist between these projects.

Updated to to fix readme and merge stopforumspam

Being able to serve static files at the root ("/index.html") while still allowing other routes is not covered by the readme. None of the issues I've read cover this either....

I would love an example of using the Fourier transform utilities on one of the sample wav files. In fact, there are several algorithms here that could use a usage...

Integrate EpicEditor or some client-side markdown parser to render text at runtime instead of placing the load on the server. Also paves the way to future edit support since the...

Like a personal profile summary of recent activity.

``` // trimReader is a custom io.Reader that will trim any leading // whitespace, as this can cause email imports to fail. type trimReader struct { rd io.Reader } //...

The current code [reads the full body in of every part](https://github.com/veqryn/go-email/blob/master/email/parser.go#L80) resulting in high memory usage if the email contains big attachments or many instances are running at the same...

Looking at the database, it seems that only a couple changes are actually made when importing from Ghost. - user name / email = []byte - JS timestamp / 1000...

[Line 217 of the migration script ](https://github.com/kabukky/journey/blob/master/database/migration/ghost.go#L217) mentions "Convert strings to byte array since that is how Journey saves the user name and email". I was wondering why did you...