From a6d7a92d8b97dc5b2842700eda6713b4acf20936 Mon Sep 17 00:00:00 2001 From: kokomo123 <70863536+kokomo123@users.noreply.github.com> Date: Fri, 16 Oct 2020 13:18:46 -0400 Subject: [PATCH 1/5] Add Send to Peer-To-Peer Filesharing. This is basically a fork of Mozilla's Firefox Send thats now discontinued/archived, just without the branding and everything. It was made as a community effort to keep Firefox Send alive in a way. So you can legally self-host it. A friend recommended this to me, so i felt like it's appropriate to add it back into Awesome-Selfhosted. Hope this is acceptable. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0724a348..d22088a1 100644 --- a/README.md +++ b/README.md @@ -721,6 +721,7 @@ See https://github.com/n1trux/awesome-sysadmin#distributed-filesystems - [cloud-torrent](https://github.com/jpillora/cloud-torrent) - Torrent Web Client with HTTP retrievable or streamable downloaded files. `AGPL-3.0` `Go` - [Dat Project](https://datproject.org) - Powerful decentralized file sharing applications built from a large ecosystem of modules. ([Source Code](https://github.com/datproject)) `MIT` `Nodejs` - [FilePizza](http://file.pizza/) - Peer-to-peer file transfers in your browser. ([Source Code](https://github.com/kern/filepizza)) `BSD-3-Clause` `Nodejs` +- [Send](https://gitlab.com/timvisee/send) - A file sharing experiment which allows you to send encrypted files to other users. `MPL-2.0` `JavaScript` - [instant.io](https://github.com/feross/instant.io) - Streaming file transfer over WebTorrent. ([Demo](https://instant.io)) `MIT` `Nodejs` - [Magnetico](https://github.com/boramalper/magnetico) - Magnetico is the first autonomous (self-hosted) BitTorrent DHT search engine suite that is designed for end-users. `AGPL-3.0` `Python` - [Magnetissimo](https://github.com/sergiotapia/magnetissimo) - Search engine that indexes all popular torrent sites. `MIT` `Elixir` From c04b173f346277d4d50abfae44e5e23277b5419b Mon Sep 17 00:00:00 2001 From: kokomo123 <70863536+kokomo123@users.noreply.github.com> Date: Fri, 16 Oct 2020 18:44:34 -0400 Subject: [PATCH 2/5] Edited requested changes / add android client --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d22088a1..1eb2aa6e 100644 --- a/README.md +++ b/README.md @@ -721,7 +721,8 @@ See https://github.com/n1trux/awesome-sysadmin#distributed-filesystems - [cloud-torrent](https://github.com/jpillora/cloud-torrent) - Torrent Web Client with HTTP retrievable or streamable downloaded files. `AGPL-3.0` `Go` - [Dat Project](https://datproject.org) - Powerful decentralized file sharing applications built from a large ecosystem of modules. ([Source Code](https://github.com/datproject)) `MIT` `Nodejs` - [FilePizza](http://file.pizza/) - Peer-to-peer file transfers in your browser. ([Source Code](https://github.com/kern/filepizza)) `BSD-3-Clause` `Nodejs` -- [Send](https://gitlab.com/timvisee/send) - A file sharing experiment which allows you to send encrypted files to other users. `MPL-2.0` `JavaScript` +- [Send](https://gitlab.com/timvisee/send) - A file sharing experiment which allows you to send encrypted files to other users. `MPL-2.0` `Nodejs` + -[Send Client](https://gitlab.com/timvisee/send/-/tree/master/android) - A android client for Send. `MPL-2.0` `NodeJs` - [instant.io](https://github.com/feross/instant.io) - Streaming file transfer over WebTorrent. ([Demo](https://instant.io)) `MIT` `Nodejs` - [Magnetico](https://github.com/boramalper/magnetico) - Magnetico is the first autonomous (self-hosted) BitTorrent DHT search engine suite that is designed for end-users. `AGPL-3.0` `Python` - [Magnetissimo](https://github.com/sergiotapia/magnetissimo) - Search engine that indexes all popular torrent sites. `MIT` `Elixir` From 34dab10a536a5f325d826989f54ff7466df44818 Mon Sep 17 00:00:00 2001 From: kokomo123 <70863536+kokomo123@users.noreply.github.com> Date: Fri, 16 Oct 2020 19:05:39 -0400 Subject: [PATCH 3/5] Fix up android client and revert changes Fixed up the android client by adding [Clients] instead of actually making a separate line. Sorry --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 1eb2aa6e..20b08ccd 100644 --- a/README.md +++ b/README.md @@ -721,8 +721,7 @@ See https://github.com/n1trux/awesome-sysadmin#distributed-filesystems - [cloud-torrent](https://github.com/jpillora/cloud-torrent) - Torrent Web Client with HTTP retrievable or streamable downloaded files. `AGPL-3.0` `Go` - [Dat Project](https://datproject.org) - Powerful decentralized file sharing applications built from a large ecosystem of modules. ([Source Code](https://github.com/datproject)) `MIT` `Nodejs` - [FilePizza](http://file.pizza/) - Peer-to-peer file transfers in your browser. ([Source Code](https://github.com/kern/filepizza)) `BSD-3-Clause` `Nodejs` -- [Send](https://gitlab.com/timvisee/send) - A file sharing experiment which allows you to send encrypted files to other users. `MPL-2.0` `Nodejs` - -[Send Client](https://gitlab.com/timvisee/send/-/tree/master/android) - A android client for Send. `MPL-2.0` `NodeJs` +- [Send](https://gitlab.com/timvisee/send) - A file sharing experiment which allows you to send encrypted files to other users. [Clients](https://gitlab.com/timvisee/send/-/tree/master/android) `MPL-2.0` `Nodejs` - [instant.io](https://github.com/feross/instant.io) - Streaming file transfer over WebTorrent. ([Demo](https://instant.io)) `MIT` `Nodejs` - [Magnetico](https://github.com/boramalper/magnetico) - Magnetico is the first autonomous (self-hosted) BitTorrent DHT search engine suite that is designed for end-users. `AGPL-3.0` `Python` - [Magnetissimo](https://github.com/sergiotapia/magnetissimo) - Search engine that indexes all popular torrent sites. `MIT` `Elixir` From 6c875c38a470bd797a525c365eaa3e57f14840de Mon Sep 17 00:00:00 2001 From: kokomo123 <70863536+kokomo123@users.noreply.github.com> Date: Fri, 16 Oct 2020 19:29:31 -0400 Subject: [PATCH 4/5] Last Commit Finally fixed up everything. Sorry about that. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 20b08ccd..f608ef2e 100644 --- a/README.md +++ b/README.md @@ -721,7 +721,7 @@ See https://github.com/n1trux/awesome-sysadmin#distributed-filesystems - [cloud-torrent](https://github.com/jpillora/cloud-torrent) - Torrent Web Client with HTTP retrievable or streamable downloaded files. `AGPL-3.0` `Go` - [Dat Project](https://datproject.org) - Powerful decentralized file sharing applications built from a large ecosystem of modules. ([Source Code](https://github.com/datproject)) `MIT` `Nodejs` - [FilePizza](http://file.pizza/) - Peer-to-peer file transfers in your browser. ([Source Code](https://github.com/kern/filepizza)) `BSD-3-Clause` `Nodejs` -- [Send](https://gitlab.com/timvisee/send) - A file sharing experiment which allows you to send encrypted files to other users. [Clients](https://gitlab.com/timvisee/send/-/tree/master/android) `MPL-2.0` `Nodejs` +- [Send](https://gitlab.com/timvisee/send) - A file sharing experiment which allows you to send encrypted files to other users. [Client](https://gitlab.com/timvisee/send/-/tree/master/android) `MPL-2.0` `Nodejs` - [instant.io](https://github.com/feross/instant.io) - Streaming file transfer over WebTorrent. ([Demo](https://instant.io)) `MIT` `Nodejs` - [Magnetico](https://github.com/boramalper/magnetico) - Magnetico is the first autonomous (self-hosted) BitTorrent DHT search engine suite that is designed for end-users. `AGPL-3.0` `Python` - [Magnetissimo](https://github.com/sergiotapia/magnetissimo) - Search engine that indexes all popular torrent sites. `MIT` `Elixir` From 7669f1309cd14fc2d6a6032105a5e512c6bb1b02 Mon Sep 17 00:00:00 2001 From: kokomo123 <70863536+kokomo123@users.noreply.github.com> Date: Sat, 17 Oct 2020 10:47:15 -0400 Subject: [PATCH 5/5] Fix up it for good. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f608ef2e..c9862f45 100644 --- a/README.md +++ b/README.md @@ -721,7 +721,7 @@ See https://github.com/n1trux/awesome-sysadmin#distributed-filesystems - [cloud-torrent](https://github.com/jpillora/cloud-torrent) - Torrent Web Client with HTTP retrievable or streamable downloaded files. `AGPL-3.0` `Go` - [Dat Project](https://datproject.org) - Powerful decentralized file sharing applications built from a large ecosystem of modules. ([Source Code](https://github.com/datproject)) `MIT` `Nodejs` - [FilePizza](http://file.pizza/) - Peer-to-peer file transfers in your browser. ([Source Code](https://github.com/kern/filepizza)) `BSD-3-Clause` `Nodejs` -- [Send](https://gitlab.com/timvisee/send) - A file sharing experiment which allows you to send encrypted files to other users. [Client](https://gitlab.com/timvisee/send/-/tree/master/android) `MPL-2.0` `Nodejs` +- [Send](https://gitlab.com/timvisee/send) - A file sharing experiment which allows you to send encrypted files to other users. ([Clients](https://gitlab.com/timvisee/send/-/tree/master/android)) `MPL-2.0` `Nodejs` - [instant.io](https://github.com/feross/instant.io) - Streaming file transfer over WebTorrent. ([Demo](https://instant.io)) `MIT` `Nodejs` - [Magnetico](https://github.com/boramalper/magnetico) - Magnetico is the first autonomous (self-hosted) BitTorrent DHT search engine suite that is designed for end-users. `AGPL-3.0` `Python` - [Magnetissimo](https://github.com/sergiotapia/magnetissimo) - Search engine that indexes all popular torrent sites. `MIT` `Elixir`