Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Merge pull request #55 from sfan5/misc2

Misc (2)
Cette révision appartient à :
Eliot Whalan 2017-05-05 21:40:46 +10:00 révisé par GitHub
révision 6d42d1c34d
4 fichiers modifiés avec 32 ajouts et 16 suppressions

Voir le fichier

@ -15,7 +15,7 @@ nav#mainmenu {
position: fixed;
color: white;
width: 100%;
z-index: 2;
z-index: 3;
}
nav#mainmenu a {
color: white;

Voir le fichier

@ -28,3 +28,11 @@
document.getElementById('page-next').href = pageString + next + query;
document.getElementById('page-prev').href = pageString + prev + query;
// Used by spoiler tags
function toggleLayer(elem) {
if (elem.classList.contains("hide"))
elem.classList.remove("hide");
else
elem.classList.add("hide");
}

Voir le fichier

@ -21,7 +21,7 @@ import (
var db *gorm.DB
var router *mux.Router
var debugLogger *log.Logger
var trackers = "&tr=udp://zer0day.to:1337/announce&tr=udp://tracker.leechers-paradise.org:6969&tr=udp://explodie.org:6969&tr=udp://tracker.opentrackr.org:1337&tr=udp://tracker.coppersurfer.tk:6969&tr=http://tracker.baka-sub.cf/announce"
var trackers = "&tr=udp://tracker.coppersurfer.tk:6969&tr=udp://zer0day.to:1337/announce&tr=udp://tracker.leechers-paradise.org:6969&tr=udp://explodie.org:6969&tr=udp://tracker.opentrackr.org:1337&tr=http://tracker.baka-sub.cf/announce"
func getDBHandle() *gorm.DB {
dbInit, err := gorm.Open("sqlite3", "./nyaa.db")

Voir le fichier

@ -1,28 +1,31 @@
{{define "title"}}FAQ{{end}}
{{define "content"}}
<div class="blockBody">
<h1>NOTICE: KEEP SEEDING YOU RETARD</h1>
<!-- marquees are the true purpose of HTML -->
<marquee><h2>NOTICE: KEEP SEEDING YOU RETARD</h2></marquee>
<h1>Official Nyaapocalypse FAQ</h1>
<br />
<h2>Links for the replacement/mirror</h2>
<a href="https://nyaa.pantsu.cat">Nyaa - nyaa.pantsu.cat</a>
<a href="https://nyaa.pantsu.cat">Nyaa - nyaa.pantsu.cat</a><br />
<a href="https://sukebei.pantsu.cat">Sukebei - sukebei.pantsu.cat</a>
<h2>What happened?</h2>
<ul>
<li>- nyaa.se and associated domains (such nyaatorrents.info) went offline on May 01, 2017.</li>
<li>- They were deactivated, so it's not a DDoS attack like usual.</li>
<li>- Future prospects for nyaa are not looking good.</li>
<li>- There is a recovery effort taking place.</li>
<li>nyaa.se and associated domains (such as nyaatorrents.info) went offline on May 01, 2017.</li>
<li>They were deactivated, so it's not a DDoS attack like usual.</li>
<li>Future prospects for nyaa are not looking good.</li>
<li>There is a recovery effort taking place.</li>
</ul>
<h2>Is everything Lost?</h2>
<h2>Is everything lost?</h2>
<p>In short, No.</p>
<h2>Are some things lost?</h2>
<p>We have a database of the torrents on nyaa up to April 5. That means that everything past April 5 is gone.
Sukebei, however is in worse shape. We only have sukebei databases up to 2016.</p>
<p>We have a database of the torrents on nyaa up to <s>April 5</s> May 1. That means almost nothing is lost.</p>
<p>Sukebei, however might be in worse shape. Currently we only have sukebei databases up to 2016,
but a newer database might be available for use.</p>
<h2>How are we recovering?</h2>
<p>The aforementioned databases are being hosted at nyaa.pantsu.cat and sukebei.pantsu.cat.
@ -38,11 +41,16 @@
<p>Just use the <b>magnet link</b>. The magnet link will used by your BitTorrent client to look up the file on the
DHT network and it should download just fine.</p>
<p>If your magnet link starts with "magnet:magnet:", delete the first "magnet:". It should look like:
magnet:?xt=urn:btih:[hash]&dn=[name]&tr=[tracker]</p>
magnet:?xt=urn:btih:[hash]&dn=[name]&tr=[tracker]&tr=[...]</p>
<h1>How can I help?</h1>
<p>If you have website development expertise, you can join the #nyaapantsu IRC channel on irc.rizon.net. If you have any current databases, <b>UPLOAD THEM</b>.</p>
<h2>How can I help?</h2>
<p>If you have website development expertise, you can join the #nyaapantsu IRC channel on irc.rizon.net.
If you have any current databases, especially for sukebei, <b>UPLOAD THEM</b>.</p>
<h1>nyaa.pantsu.cat and sukebei.pantsu.cat do not host any files.</h1>
<h2>Your design sucks / I found a bug</h2>
<p><a href="https://github.com/ewhal/nyaa/issues">https://github.com/ewhal/nyaa/issues</a>.</p>
<br />
<h2>nyaa.pantsu.cat and sukebei.pantsu.cat do not host any files.</h2>
</div>
{{end}}
{{end}}