From 848d3c73db0840a2fc06673b7b861c2ba4d3c81b Mon Sep 17 00:00:00 2001 From: Urban Guacamole Date: Sat, 1 Aug 2020 09:37:11 +0200 Subject: [PATCH] Update IPFS site to match new writing --- website/about.pug | 42 ++++++++++++++++++++++------------- website/adsnippet | 4 ---- website/head.html | 11 ++++------ website/index.html | 6 ----- website/ipfs.pug | 11 +++++----- website/vote-and-donate.pug | 44 +++++++++++++++++++++++++++++++++++++ website/why.pug | 10 +++++++++ 7 files changed, 91 insertions(+), 37 deletions(-) delete mode 100644 website/adsnippet create mode 100644 website/vote-and-donate.pug create mode 100644 website/why.pug diff --git a/website/about.pug b/website/about.pug index 5ddd1c2..59d82e8 100644 --- a/website/about.pug +++ b/website/about.pug @@ -1,16 +1,28 @@ include head.html -.container.content - h1 Torrent Paradise: decentralized innovative torrent site - ul - li no single point of failure: you can always run your own via #[a(href="ipfs.html") IPFS] - li runs in browser, so your query never leaves your computer - ul - li based off open source code from #[a(href="https://ipfsearch.xyz") ipfsearch] - li seed/leech counts always up-to-date - li #[b no ads] if you use IPFS - ul - li this is to encourage IPFS use and help decentralize - li new torrents are discovered via DHT and added automagically - li more info at #[a(href="https://www.reddit.com/r/torrents/comments/afibhh/i_made_a_decentralized_torrent_search_site_with/") Reddit discussion] - li source code on #[a(href="https://github.com/urbanguacamole/torrent-paradise") GitHub] - li send suggestions to urban-guacamole (at) protonmail.com +.section + .container.content.legible + .notification.is-info You are running on IPFS. The site will be slow, but resilient, ad-free and private. + h2 Torrent Paradise: find torrents #[i quickly, effectively and without distractions]. + p #[a(href="why.html") Why] I made this? + h3 Features + ul + li fresh and rich torrent index + ul + li new torrents identified quickly via multiple RSS feeds + li obscure torrents discovered through DHT + li seed/leech counts constantly refreshed + li privacy preserving, not-in-your-face ads + li if you use IPFS + ul + li no single point of failure: you can always run your own via #[a(href="ipfs.html") IPFS] + li runs in browser, so your query #[b never] leaves your computer + li #[b never any ads] + li based off open source code from #[a(href="https://ipfsearch.xyz") ipfsearch] + li #[a(href="vote-and-donate.html") donate] and vote on future features + li source code on #[a(href="https://github.com/urbanguacamole/torrent-paradise") GitHub] + li send suggestions to urban-guacamole (at) protonmail.com + p Want to report a copyright violation? See #[a(href="copyright.html") copyright] + + h3 Omitted features + p I decided to omit some features on purpose. That includes categories, recent torrents, comments, torrent upload, descriptions, etc. Every feature adds maintenance burden and complexity, increasing the chance that I abandon this project and noone else will want to pick it up afterwards. + p My #[b focus] is simple: You get here, enter what you're looking for, pick one and you start the download. #[i No distractions]. diff --git a/website/adsnippet b/website/adsnippet deleted file mode 100644 index f89d03d..0000000 --- a/website/adsnippet +++ /dev/null @@ -1,4 +0,0 @@ -

ads are here to fund the server, there are no ads if you use IPFS

- -
- \ No newline at end of file diff --git a/website/head.html b/website/head.html index 4172139..a0fe3cb 100644 --- a/website/head.html +++ b/website/head.html @@ -6,8 +6,12 @@ Torrent Paradise + + @@ -19,15 +23,8 @@ About - - Top torrents - IPFS - - Copyright - -
diff --git a/website/index.html b/website/index.html index 8421bb2..9eebd8e 100644 --- a/website/index.html +++ b/website/index.html @@ -25,15 +25,9 @@ About - - Top torrents - IPFS - - Copyright -
diff --git a/website/ipfs.pug b/website/ipfs.pug index 1510245..18a2248 100644 --- a/website/ipfs.pug +++ b/website/ipfs.pug @@ -1,6 +1,7 @@ include head.html -.container.content - h1 Remove ads and access the index even when the public website is down - p With IPFS (see the #[a(href="https://ipfs.io") official website]), a copy of the site and the whole index can be distributed just like a torrent. When you open it via IPFS, your IPFS node fetches the parts of the index and website it needs from the network. The public website is simply a public IPFS node. - p To use it without the public server, use #[a(href="https://ipfs.io") IPFS]. Address in IPFS is #[a(href="https://cloudflare-ipfs.com/ipns/torrent-paradise.ml") /ipns/torrent-paradise.ml]. You can also use /ipns/12D3KooWB3GY1u6zMLqnf3MJ8zhX3SS1oBj7VXk3xp6sJJiFGZXp in case the domain doesn't work. - p Just like all torrents need seeders, Torrent Paradise needs IPFS nodes pinning it. Please run #[code ipfs pin add /ipns/12D3KooWB3GY1u6zMLqnf3MJ8zhX3SS1oBj7VXk3xp6sJJiFGZXp] on your IPFS node to help host the site. Rerun this command ideally every day to seed the newest version of the index. \ No newline at end of file +.section + .container.content.legible + h2 Decentralization with IPFS + p With IPFS (see the #[a(href="https://ipfs.io") official website]), a copy of the site and the whole index can be distributed just like a torrent. When you open it via IPFS, your IPFS node fetches the parts of the index and website it needs from the network. + p Address in IPFS is /ipns/torrent-paradise.ml. You can also use /ipns/12D3KooWB3GY1u6zMLqnf3MJ8zhX3SS1oBj7VXk3xp6sJJiFGZXp in case the domain doesn't work. + p There are public IPFS #[a(href="https://cloudflare-ipfs.com/ipns/12D3KooWB3GY1u6zMLqnf3MJ8zhX3SS1oBj7VXk3xp6sJJiFGZXp") gateways] available. diff --git a/website/vote-and-donate.pug b/website/vote-and-donate.pug new file mode 100644 index 0000000..5ec48d0 --- /dev/null +++ b/website/vote-and-donate.pug @@ -0,0 +1,44 @@ +include head.html +.section + .container.content.legible + h1 Pick the future of Torrent Paradise + p When you donate, you can use your donation to support development of your desired features. Influence the development by sending cryptocurrency to the address associated with your desired improvement. Once the goal is reached, development of the proposed feature will start. If you'd like to propose an improvement, send me an email. + p + small Raised amount is not updated in real time. Looks like the goal won't be reached and want to redirect it somewhere else? Email me. + .columns + .column + .card + header.card-header.card-header-title.card-content.subtitle WebTorrent for in-browser streaming of the most popular torrents + .card-content.content + p The server could seed the most popular torrents on #[a(href="") WebTorrent] and allow visitors to stream them, right in the browser. + br + | Goal: $150 + progress.progress.is-primary(value=0,max=150) + footer.card-footer + a.card-footer-item(href="https://www.blockchain.com/btc/address/15KMfTMCZcJeZS3Ct9TxzKzHFWsx3Ct5zq") Bitcoin + + .column + .card + header.card-header.card-header-title.card-content.subtitle Machine learned result sorting + .card-content + .content + p Finally do away with sorting by seed count and personalize the results. Does your browser say that your screen resolution is 1280x720 and your language is Spanish? Here is a version of the TV show you're looking for in spanish in 720p. + p All web search engines currently do this, only torrent sites don't. + br + | Goal: $120 + progress.progress.is-primary(value=27.28,max=120) + footer.card-footer + a.card-footer-item(href="https://www.blockchain.com/btc/address/1AHpkqBzW56h4q7ycYPkcsy5dqYq2AM6Si") Bitcoin + + .column + .card + header.card-header.card-header-title.card-content.subtitle Add fresh content and verified badges + .card-content + .content + p Crawl other torrent sites for new torrents. Add verified badges to torrents that come from moderated sites. + p Update: This is partly implemented now actually, since I crawl RSS of some other torrent sites. No verified badges though. + br + | Goal: $50 + progress.progress.is-primary(value=4.67,max=50) + footer.card-footer + a.card-footer-item(href="https://www.blockchain.com/btc/address/13YqTqkZqGkEWd86msTKDWhuaJvbcxMfZs") Bitcoin diff --git a/website/why.pug b/website/why.pug new file mode 100644 index 0000000..2dd57bd --- /dev/null +++ b/website/why.pug @@ -0,0 +1,10 @@ +include head.html + +.section + .container.content.legible + h1 Why I made this + p In 2012, the iconic Pirate Bay stopped offering .torrent files for download. This launched a new era for torrent discovery as operating costs for search sites #[i plummetted]. No longer was it necessary to operate a tracker and host a terabyte of .torrent files. All you need, since 2012, is a decent VPS and a little bit of know-how on how to run a website. + p How did I get to creating this site? In 2018, I was fascinated by the technical opportunities offered by #[a(href="https://docs.ipfs.io/concepts/what-is-ipfs/") IPFS] and #[a(href="https://ipfsearch.xyz/") ipfsearch]. It is entirely possible to distribute an index that its users 'seed', and let anyone search through it. It is pretty slow, but it's super resilient and decentralized! Why has no one done this for torrent search? I was bored and thought that this would be really cool to do, so I put a dump of TPB on it. Reddit #[a(href='https://www.reddit.com/r/TPB/comments/9vsry6/i_put_the_pirate_bay_onto_a_decentralized_search/') liked] it, people used it, I was happy. + p In the last two years, what used to be a Pirate Bay dump has evolved and has its own name, domain, spider, and a server that can answer your queries fast, but you can still fall back on IPFS in case it goes down (or you just love privacy and decentralization). + p I am still baffled by the fact that there is no torrent search site that has a big index, fresh seed/leech counts and ads that do not jump in your face. + p With 2.0, I have built what I think is technically possible: a torrent site that is #[i fast, effective and doesn't make you angry]. I won't get rich, but I will make people around the world less angry and it might even pay for my time. What else could I wish for? \ No newline at end of file