Live data from Hacker News

What happened to Firefox Send?

support.mozilla.org

41–50 of 267 posts

Re: What happened to Firefox Send?

#41
post #32

Too bad. I really enjoyed using it while it was up. The code is open source, and they have docs on how to set it up for self hosting. I wonder if there is a chance some active forks might live on? https://github.com/mozilla/send https://github.com/mozilla/send/blob/master/docs/deployment....

There is also a Dockerfile - might make ad-hoc deployment easier, but have not tested it: https://github.com/mozilla/send/blob/master/Dockerfile

Re: What happened to Firefox Send?

#43
I really don't understand it.

- Content was used to spread malware/illegal content

- It was not profitable

How are those two things something you find out after the fact? What was the reasoning for launching the product in the first place?

Re: What happened to Firefox Send?

#44

Hows firefox doing these days? I've not really used it since it used to run out of memory every few hours, did try it again after they rewrote everything but it was really buggy with half the sites I frequent not working.

Firefox is really good, the only thing that holding me back to Chrome is it's instant page translation.

Re: What happened to Firefox Send?

#45
post #16

Earlier quoted context omitted.

python3 -m http.server

To specify the port number explicitly: python3 -m http.server 8080 (Listening on port 80 may require more privileges.)

the default one is port 8000 so permission should be no problem.

Re: What happened to Firefox Send?

#46
post #7

Oh dear. A stunning failure of another Firefox product which was hyped to hot air: [0] Looks like Mozilla really needs to find something to actually be more competitive than their current offerings of 'VPNs', 'File Sharing' and 'Web Browsers'. [0] https://news.ycombinator.com/item?id=19367850

I really wish they would focus on safe/private browsing and email and stay the heck out of everything else.

I mean, Send was probably the non-browser product that was useful and solved a problem its users have (sendingfiles.xkcd), and of course they had to axe it. Meanwhile I still have to remove that stupid little Pocket icon every time I do a fresh upgrade

Re: What happened to Firefox Send?

#47
post #40

For transferring large files between machines that don’t necessarily have the same clients installed I find file.pizza quite convenient. My understanding is it basically loads a JavaScript BitTorrent client and let’s you transfer using that protocol, so both ends needs to be online, but there is no file size limit, and good support on flaky connections. There’s a few services like this, but I always find file.pizza t…

Has been shared a lot on hn and i always find it funny that it is simply not working for me. I can't even transfer files between tabs in a single browser nor between browsers on the same host.

Do you have WebRTC disabled? If so, that could be it.

Re: What happened to Firefox Send?

#48
post #8
post #2

....oh. I have used it a few times in the past for the classic task "move large file between two computers that are next to each other, how the hell do I do this simply", but yeah, I can't see how that would be cost-effective for Firefox.

Between Unix-based machines on the same network my go-to is netcat. receiver$ nc -l 2000 > file sender$ nc receiver 2000 I usually check MD5 sums when I’m done.

SCP. simply for the encrypted transmission, and most *nix machines have ssh

Re: What happened to Firefox Send?

#49

Hows firefox doing these days? I've not really used it since it used to run out of memory every few hours, did try it again after they rewrote everything but it was really buggy with half the sites I frequent not working.

Check your extensions and privacy settings. Firefox is more aggressive in blocking trackers and that does break some authentication flows that involve trackers. You can always disable some of those protections to get the website to work, though I haven't had to do that in ages. Other than that, Firefox on the Mac is consistently easier on the fans than Chrome, and unlike Chrome, I almost never get runaway processes.…

> Check your extensions

Pro-tip: if you have uBlock Origin installed, disable all other extensions that are using EasyList, because they undermine uBO and visibly slow down the page. In Chrome too.

N.b Firefox’s built in tracking protections don’t interfere.

Re: What happened to Firefox Send?

#50
post #16

Earlier quoted context omitted.

python3 -m http.server

To specify the port number explicitly: python3 -m http.server 8080 (Listening on port 80 may require more privileges.)

Can also tack on an optional `-d directory_name` to be specific on where to serve from. It's my go to when developing my blog which consists of just HTML+CSS.
Post reply on HN