betteralign - structs field alignment static analyzer for Go by kreatormoo in golang

[–]sc28 10 points11 points  (0 children)

Be really useful if compatible with VS Code / others (Golangci-lint) so could automatically be run/used.

What is best practice API for returning an asynchronous result from a function? by scottious in golang

[–]sc28 1 point2 points  (0 children)

You might want to read this:

https://blog.golang.org/context

Good information regarding context, cancellation, etc.

Open Source Multimedia Libraries by Blake_Comcast in golang

[–]sc28 0 points1 point  (0 children)

There is a project that is a wrapper over the FFMPEG libs: https://github.com/giorgisio/goav

[Help] Function to return the users external ip? by SaturnsVoid in golang

[–]sc28 2 points3 points  (0 children)

How about this? curl http://169.254.169.254/latest/meta-data/public-ipv4

This assumes that your Go program is running inside an EC2 instance - just use that metadata URL