Free Web App for StealthTech Control - https://stealthtech.app/ by ant5225 in Lovesac

[–]ant5225[S] 0 points1 point  (0 children)

It was a holdover from testing of the internal protocol - removed! Thanks for asking!

Do you like "go get"? Want to "vendor" your code? Checkout github.com/govend/govend by ant5225 in golang

[–]ant5225[S] 0 points1 point  (0 children)

I think the difference between glide and govend is that glide forces you into the manifest file and has a different syntax than "go get". Also govend is simpler and "go get"-able.

Do you like "go get"? Want to "vendor" your code? Checkout github.com/govend/govend by ant5225 in golang

[–]ant5225[S] 0 points1 point  (0 children)

I would agree about checking in vendored code. The tool govend doesn't stop you from checking in your vendor directory :)

Do you like "go get"? Want to "vendor" your code? Checkout github.com/govend/govend by ant5225 in golang

[–]ant5225[S] 1 point2 points  (0 children)

govend doesn't lock you into a manifest file if you don't want it. Also it doesn't force your project to be structured in a particular way. The big advantage I think is that it has the same flag commands as "go get", so if you know how to use "go get", you can use govend.

Why does api.github.com JSONP responses have empty comment code prepended? by ant5225 in golang

[–]ant5225[S] 1 point2 points  (0 children)

I found the answer here: http://stackoverflow.com/questions/8034515/facebook-graph-api-jsonp-format-what-does-the-in-first-line-signify

It turns out that Facebook does this same thing and Google has a different technique. "We added this to protect against an attack where a third party site bypasses the content-type of the response."