Earlier quoted context omitted.
Goblin is a service that builds a go binary for your platform on the fly and downloads it in PATH. This is a much faster way than setting up Github Actions to build an executable for every possible platform on every release. You can also use go install if you know what you are doing.
> This is a much faster way than setting up Github Actions to build an executable for every possible platform on every release It's not even that hard. Just use GoReleaser. https://goreleaser.com/
Show HN: Docker-phobia: Analyze Docker image size with a treemap
21–30 of 31 posts
Re: Show HN: Docker-phobia: Analyze Docker image size with a treemap
#22Earlier quoted context omitted.
curl should probably scream when it detects piping unencrypted wan (not local ips) connections to shell, sort of like what openssh does when a host’s fingerprint changes
How could curl detect where it's piped to?
os.isatty(sys.stdout.fileno())
Re: Show HN: Docker-phobia: Analyze Docker image size with a treemap
#23Earlier quoted context omitted.
> This is a much faster way than setting up Github Actions to build an executable for every possible platform on every release It's not even that hard. Just use GoReleaser. https://goreleaser.com/
And then later add a script that downloads the binary from Github releases. Doesn't improve the situation with curl script haters
Re: Show HN: Docker-phobia: Analyze Docker image size with a treemap
#24Re: Show HN: Docker-phobia: Analyze Docker image size with a treemap
#25Earlier quoted context omitted.
Looks like goblin.run is a project that lets you install golang projects without having golang installed. OP should probably preface the installation script with this.
or just use, I don't know, docker?
Re: Show HN: Docker-phobia: Analyze Docker image size with a treemap
#26Earlier quoted context omitted.
or just use, I don't know, docker?
Aren't go binaries statically compiled? Why is anything other than a static binary download and `chmod +x` even needed?
Re: Show HN: Docker-phobia: Analyze Docker image size with a treemap
#27Earlier quoted context omitted.
curl should probably scream when it detects piping unencrypted wan (not local ips) connections to shell, sort of like what openssh does when a host’s fingerprint changes
How could curl detect where it's piped to?
Re: Show HN: Docker-phobia: Analyze Docker image size with a treemap
#28Re: Show HN: Docker-phobia: Analyze Docker image size with a treemap
#29Earlier quoted context omitted.
Looks like goblin.run is a project that lets you install golang projects without having golang installed. OP should probably preface the installation script with this.
or just use, I don't know, docker?
The author is apparently afraid of docker, hence Docker-phobia.