-
Notifications
You must be signed in to change notification settings - Fork 1
/
links.php
147 lines (133 loc) · 5.98 KB
/
links.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?
require_once("include/bittorrent.php");
stdhead("Links");
begin_main_frame();
function add_link($url, $title, $description = "")
{
$text = "<a class=\"altlink\" href=\"$url\">$title</a>";
if ($description)
$text = "$text - $description";
print("<li>$text</li>\n");
}
?>
<? if ($CURUSER) { ?>
<p><a href="contactstaff.php">Please report dead links!</a></p>
<? } ?>
<? begin_frame("Other pages on this site"); ?>
<h2>Other pages on this site</h2>
<ul>
<li><a class="altlink" href="rss.xml">RSS feed</a> -
For use with RSS-enabled software. An alternative to torrent email notifications.</li>
<li><a class="altlink" href="rssdd.xml">RSS feed (direct download)</a> -
Links directly to the torrent file.</li>
<li><a class="altlink" href="bitbucket-upload">Bitbucket</a> -
If you need a place to host your avatar or other pictures.</li>
</ul>
<? end_frame(); ?>
<? begin_frame("BitTorrent Information"); ?>
<h2>BitTorrent Information</h2>
<ul>
<li><a class="altlink" href="http://dessent.net/btfaq/">Brian's BitTorrent FAQ and Guide</a> -
Everything you need to know about BitTorrent. Required reading for all n00bs.</li>
<li><a class="altlink" href="http://10mbit.com/faq/bt/">The Ultimate BitTorrent FAQ</a> -
Another nice BitTorrent FAQ, by Evil Timmy.</li>
</ul>
<? end_frame(); ?>
<? begin_frame("BitTorrent Software"); ?>
<h2>BitTorrent Software</h2>
<ul>
<li><a class="altlink" href="http://pingpong-abc.sourceforge.net/">ABC</a> -
"ABC is an improved client for the Bittorrent peer-to-peer file distribution solution."</li>
<li><a class="altlink" href="http://azureus.sourceforge.net/">Azureus</a> -
"Azureus is a java bittorrent client. It provides a quite full bittorrent protocol implementation using java language."</li>
<li><a class="altlink" href="http://bnbt.go-dedicated.com/">BNBT</a> -
Nice BitTorrent tracker written in C++.</li>
<li><a class="altlink" href="http://bittornado.com/">BitTornado</a> -
a.k.a "TheSHAD0W's Experimental BitTorrent Client".</li>
<li><a class="altlink" href="http://www.bitconjurer.org/BitTorrent">BitTorrent</a> -
Bram Cohen's official BitTorrent client.</li>
<li><a class="altlink" href="http://ei.kefro.st/projects/btclient/">BitTorrent EXPERIMENTAL</a> -
"This is an unsupported, unofficial, and, most importantly, experimental build of the BitTorrent GUI for Windows."</li>
<li><a class="altlink" href="http://krypt.dyndns.org:81/torrent/">Burst!</a> -
Alternative Win32 BitTorrent client.</li>
<li><a class="altlink" href="http://g3torrent.sourceforge.net/">G3 Torrent</a> -
"A feature rich and graphically empowered bittorrent client written in python."</li>
<li><a class="altlink" href="http://krypt.dyndns.org:81/torrent/maketorrent/">MakeTorrent</a> -
A tool for creating torrents.</li>
<li><a class="altlink" href="http://ptc.sourceforge.net/">Personal Torrent Collector</a> -
BitTorrent client.</li>
<li><a class="altlink" href="http://www.shareaza.com/">Shareaza</a> -
Gnutella, eDonkey and BitTorrent client.</li>
</ul>
<? end_frame(); ?>
<? begin_frame("Download sites"); ?>
<h2>Download sites</h2>
<ul>
<li><a class="altlink" href="http://www.suprnova.org/">SuprNova</a> -
Apps, games, movies, TV and other stuff. [popups]</li>
<li><a class="altlink" href="http://empornium.us:6969/">Empornium</a> -
Pr0n, and then some!</li>
</ul>
<? end_frame(); ?>
<? begin_frame("Download sites"); ?>
<h2>Forum communities</h2>
<ul>
<li><a class="altlink" href="http://www.filesoup.com/">Filesoup</a> -
BitTorrent community.</li>
<li><a class="altlink" href="http://www.torrent-addiction.com/forums/index.php">Torrent Addiction</a> -
Another BitTorrent community. [popups]</li>
<li><a class="altlink" href="http://www.terabits.net/">TeraBits</a> -
Games, movies, apps both unix and win, tracker support, music, xxx.</li>
<li><a class="altlink" href="http://www.ftpdreams.com/new/forum/sitenews.asp">FTP Dreams</a> - "Where Dreams Become a Reality".</li>
</ul>
<? end_frame(); ?>
<? begin_frame("Other sites"); ?>
<h2>Other sites</h2>
<ul>
<li><a class="altlink" href="http://www.nforce.nl/">NFOrce</a> -
Game and movie release tracker / forums.</li>
<li><a class="altlink" href="http://www.grokmusiq.com/">grokMusiQ</a> -
Music release tracker.</li>
<li><a class="altlink" href="http://www.izonews.com/">iSONEWS</a> -
Release tracker and forums.</li>
<li><a class="altlink" href="http://www.btsites.tk">BTSITES.TK</a> -
BitTorrent link site. [popups]</li>
<li><a class="altlink" href="http://www.litezone.com/">Link2U</a> -
BitTorrent link site.</li>
</ul>
<? end_frame(); ?>
<? begin_frame("Other sites"); ?>
<h2>Game servers hosted by TB users</h2>
<ul>
<li><b>Call of Duty</b> - DTC Clan server (for most recent password, PM <a class="altlink" href="userdetails.php?id=81576">Bandido</a>), IP: 62.216.12.107:28960.</li>
<li><b>Call of Duty</b> - Nordic Vikings Server (for most recent password, PM <a class="altlink" href="userdetails.php?id=106392">yo0812</a>), IP: 62.97.229.152:28960.</li>
<li><b>Counter-Strike</b> - 14/7h Dedicated CS Server (managed by TB user <a class="altlink" href="userdetails.php?id=195804">Lars447</a>), IP: 24.103.136.30:27015</li>
</ul>
<? end_frame(); ?>
<? begin_frame("Link to torrentbits.org"); ?>
<h2>Link to torrentbits.org</h2>
Do you want a link to torrentbits on your homepage?<br/>
Copy the following and paste it into your homepage code.<br/>
<br/>
<font color="#004E98">
<!-- TorrentBits Link --><br/>
<br/>
<a href="http://www.torrentbits.org/"><br/>
<img src="http://www.torrentbits.org/pic/tbani22.gif" border="0" alt="TorrentBits - We supply the latest stuff!"/></a><br/>
<br/>
<!-- End of TorrentBits Link --></font><br/>
<br/>
<br/>
It will look like this:<br/>
<br/>
<a href="http://www.torrentbits.org/">
<img src="http://www.torrentbits.org/pic/tbani22.gif" border="0" alt="TorrentBits - We supply the latest stuff!"/></a>
<br/>
<? end_frame(); ?>
<? if ($CURUSER) { ?>
<? } ?>
<p align="right"><font size="1" color="#004E98"><b>Links edited 2004-05-27 (08:38 GMT)</b></font></p>
<?php
end_main_frame();
stdfoot();
?>