Ask HN: Why Download a Downloader to Download an app?
1–10 of 19 posts
Re: Ask HN: Why Download a Downloader to Download an app?
#2Re: Ask HN: Why Download a Downloader to Download an app?
#3Could be because of EV app certificates (which get rid of the warning screen when you install a desktop app). These require a number of installs before the warning goes away. When you modify the executable at all though, the counter resets. Instead, if you keep the same install executable and fetch the latest version of the app, you can keep from resetting that counter. Just going from my experience.
Re: Ask HN: Why Download a Downloader to Download an app?
#4Could be because of EV app certificates (which get rid of the warning screen when you install a desktop app). These require a number of installs before the warning goes away. When you modify the executable at all though, the counter resets. Instead, if you keep the same install executable and fetch the latest version of the app, you can keep from resetting that counter. Just going from my experience.
Do you know of any off-the-shelf downloader that would handle the download and install of the versioned app, or is it a 'build your own' thing?
Re: Ask HN: Why Download a Downloader to Download an app?
#5Re: Ask HN: Why Download a Downloader to Download an app?
#6I practically never download anything large through a browser: I get the link and then use `wget -c` to make sure I get the file, automatically retries when connection is lost and re-established, etc, instead of waiting a long time and then checking the download in the browser and find out it failed a few minutes after it started for whatever reason.
If it's a couple of megabytes, I use the browser. I don't trust the browser with larger downloads.
The "app downloader" may be doing similar things.
Re: Ask HN: Why Download a Downloader to Download an app?
#7Re: Ask HN: Why Download a Downloader to Download an app?
#8Re: Ask HN: Why Download a Downloader to Download an app?
#9I'm not sure, but I think it's about resumable downloads and handling downloading errors. I practically never download anything large through a browser: I get the link and then use `wget -c` to make sure I get the file, automatically retries when connection is lost and re-established, etc, instead of waiting a long time and then checking the download in the browser and find out it failed a few minutes after it starte…