Live data from Hacker News

Ask HN: What is your favorite method of sending large files?

news.ycombinator.com

11–20 of 363 posts

Re: Ask HN: What is your favorite method of sending large files?

#17
post #11

Related: If you need to transfer sensitive data over Bittorent, Age is a good tool for encrypting it before transmission. https://github.com/FiloSottile/age

Why a new tool? How is this better than gpg symmetric encryption, considering gpg is installed/available effectively everywhere?

Encrypt:

    gpg --symmetric file.dat
    (enter a password)
Decrypt:

    gpg --decrypt file.dat.gpg > file.dat
    (enter the password)

Re: Ask HN: What is your favorite method of sending large files?

#18
post #9

A station wagon full of tapes hurtling down the highway...

We laugh, but even Amazon has realized sometimes literally driving drives is the cheapest and fastest way to move serious amounts of data: https://aws.amazon.com/snowmobile/

Re: Ask HN: What is your favorite method of sending large files?

#19
post #11

Related: If you need to transfer sensitive data over Bittorent, Age is a good tool for encrypting it before transmission. https://github.com/FiloSottile/age

Why a new tool? How is this better than gpg symmetric encryption, considering gpg is installed/available effectively everywhere? Encrypt: gpg --symmetric file.dat (enter a password) Decrypt: gpg --decrypt file.dat.gpg > file.dat (enter the password)

IMO, GPG is simply not a good tool and it should be replaced.

Others have said it better than I can. See e.g. https://latacora.micro.blog/2019/07/16/the-pgp-problem.html

Re: Ask HN: What is your favorite method of sending large files?

#20
post #19

Earlier quoted context omitted.

Why a new tool? How is this better than gpg symmetric encryption, considering gpg is installed/available effectively everywhere? Encrypt: gpg --symmetric file.dat (enter a password) Decrypt: gpg --decrypt file.dat.gpg > file.dat (enter the password)

IMO, GPG is simply not a good tool and it should be replaced. Others have said it better than I can. See e.g. https://latacora.micro.blog/2019/07/16/the-pgp-problem.html

That's said often about any tool which has been around long enough. People without experience come around and think they can replace an old tool with a better one, but it's usually only ignorance of either the complexity of the task, knowledge of using the tool properly, or both.
Post reply on HN