-
Notifications
You must be signed in to change notification settings - Fork 92
/
hdf_faq.html
1648 lines (1613 loc) · 103 KB
/
hdf_faq.html
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<div id="sidebar">
<div class="sidebar">
<div class="box">
<div class="head">Search</div>
<div class="pad">
<form class="search_form" name="articles" action="wiki.php" method="get">
<input type="hidden" name="action" value="search">
<input type="search" placeholder="Search" name="search" size="20">
<input value="Search" type="submit" class="hidden">
</form>
<br style="line-height: 10px;">
<a href="wiki.php?action=browse" class="brackets">Browse Articles</a>
</div>
</div>
<div class="box">
<div class="head">Table of contents</div>
<div class="body">
<a href="wiki.php?action=article&id=3">General User Status </a><br><a href="wiki.php?action=article&id=4">Operation of the Site </a><br><a href="wiki.php?action=article&id=6">BitTorrent </a><br><a href="wiki.php?action=article&id= 7">Client </a><br><a href="wiki.php?action=article&id=8">uTorrent </a><br><a href="wiki.php?action=article& id=9">qBittorrent </a><br><a href="wiki.php?action=article&id=10">Mac Transmission </a><br><a href="wiki.php?action =article&id=11">Invitations </a><br><a href="wiki.php?action=article&id=12">Azureus Vuze </a><br><a href="wiki. php?action=article&id=13">ruTorrent </a><br><a href="wiki.php?action=article&id=15">Site Dictionary </a><br><a href="wiki.php?action=article&id=16">Collections </a><br><a href="wiki.php?action=article&id=17">Strict rules for custom's </a ><br><a href="wiki.php?action=article&id=18">First Notions (The Basics) </a><br><a href="wiki.php?action=article&id =19">What is Hit & Run? </a><br><a href="wiki.php?action=article&id=20">The Ratio </a><br><a href="wiki.php?action=article&id=21 ">What does COMPLETED mean next to a torrent? </a><br><a href="wiki.php?action=article&id=22">Can I invite a friend? </a><br><a href="wiki.php?action=article&id=23">Why is a torrent no longer present on the site? </a><br><a href="wiki.php?action=article&id=24">Why was my upload deleted? </a><br><a href="wiki.php?action=article&id=25">Why was my forum post deleted? </a><br><a href="wiki.php?action=article&id=26">What does FREE mean next to a torrent? </a><br><a href="wiki.php?action=article&id=27">What are freeleech tokens? </a><br><a href="wiki.php?action=article&id=28">Cross seeding </a><br><a href="wiki.php?action=article&id=29 ">Can I seed from multiple torrent clients? </a><br><a href="wiki.php?action=article&id=30">How does the H&R system work? </a><br><a href="wiki.php?action=article&id=31">How do I add an avatar and/or signature to my account? </a><br><a href="wiki.php?action=article&id=32">Why did I receive a warning and what are the consequences? </a><br><a href="wiki.php?action=article&id=33">Why can't I download anymore? </a><br><a href="wiki.php?action=article&id=34">Why can't I upload to the site anymore? </a><br><a href="wiki.php?action=article&id=35">Why can't I PM anymore? </a><br><a href="wiki.php?action=article&id=36">Am I having more than one server (seedbox) and should I report it to the staff? </a><br><a href="wiki.php?action=article&id=37">Can I do multi-tracking? </a><br><a href="wiki.php?action=article&id=38">Can I have more than one account on HD-Forever? </a><br>
</div>
</div>
<div class="box box_info pad">
<ul>
<li>
<strong>Protection:</strong>
<ul>
<li>Reading: Beginner</li>
<li>Edit: Forum Moderator</li>
</ul>
</li>
<li>
<strong>Details:</strong>
<ul>
<li>Version: r108</li>
<li>Last edited by: <a href="user.php?id=2"><span class="class_1">HDF</span></a></li>
<li>Last update: <span class="time tooltip">1 year, 3 days </span></li>
</ul>
</li>
<li>
<strong>Alias:</strong>
<ul>
<li id="alias_"><a href="wiki.php?action=article&name="></a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div id="content">
<div class="thin">
<div class="header">
<h2>HD-F Wiki</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Create</a>
<!--<a href="reports.php?action=submit&type=wiki&article=1" class="brackets">Report</a>-->
</div>
</div>
<div class="sidebar">
<div class="box">
<div class="head">Search</div>
<div class="pad">
<form class="search_form" name="articles" action="wiki.php" method="get">
<input type="hidden" name="action" value="search">
<input type="search" placeholder="Search" name="search" size="20">
<input value="Search" type="submit" class="hidden">
</form>
<br style="line-height: 10px;">
<a href="wiki.php?action=browse" class="brackets">Browse Articles</a>
</div>
</div>
<div class="box">
<div class="head">Table of contents</div>
<div class="body">
<a href="wiki.php?action=article&id=3">General User Status </a><br><a href="wiki.php?action=article&id=4">Operation of the Site </a><br><a href="wiki.php?action=article&id=6">BitTorrent </a><br><a href="wiki.php?action=article&id= 7">Client </a><br><a href="wiki.php?action=article&id=8">uTorrent </a><br><a href="wiki.php?action=article& id=9">qBittorrent </a><br><a href="wiki.php?action=article&id=10">Mac Transmission </a><br><a href="wiki.php?action =article&id=11">Invitations </a><br><a href="wiki.php?action=article&id=12">Azureus Vuze </a><br><a href="wiki. php?action=article&id=13">ruTorrent </a><br><a href="wiki.php?action=article&id=15">Site Dictionary </a><br><a href="wiki.php?action=article&id=16">Collections </a><br><a href="wiki.php?action=article&id=17">Strict rules for custom's </a ><br><a href="wiki.php?action=article&id=18">First Notions (The Basics) </a><br><a href="wiki.php?action=article&id =19">What is Hit & Run? </a><br><a href="wiki.php?action=article&id=20">The Ratio </a><br><a href="wiki.php?action=article&id=21 ">What does COMPLETED mean next to a torrent? </a><br><a href="wiki.php?action=article&id=22">Can I invite a friend? </a><br><a href="wiki.php?action=article&id=23">Why is a torrent no longer present on the site? </a><br><a href="wiki.php?action=article&id=24">Why was my upload deleted? </a><br><a href="wiki.php?action=article&id=25">Why was my forum post deleted? </a><br><a href="wiki.php?action=article&id=26">What does FREE mean next to a torrent? </a><br><a href="wiki.php?action=article&id=27">What are freeleech tokens? </a><br><a href="wiki.php?action=article&id=28">Cross seeding </a><br><a href="wiki.php?action=article&id=29 ">Can I seed from multiple torrent clients? </a><br><a href="wiki.php?action=article&id=30">How does the H&R system work? </a><br><a href="wiki.php?action=article&id=31">How do I add an avatar and/or signature to my account? </a><br><a href="wiki.php?action=article&id=32">Why did I receive a warning and what are the consequences? </a><br><a href="wiki.php?action=article&id=33">Why can't I download anymore? </a><br><a href="wiki.php?action=article&id=34">Why can't I upload to the site anymore? </a><br><a href="wiki.php?action=article&id=35">Why can't I PM anymore? </a><br><a href="wiki.php?action=article&id=36">Am I having more than one server (seedbox) and should I report it to the staff? </a><br><a href="wiki.php?action=article&id=37">Can I do multi-tracking? </a><br><a href="wiki.php?action=article&id=38">Can I have more than one account on HD-Forever? </a><br>
</div>
</div>
<div class="box box_info pad">
<ul>
<li>
<strong>Protection:</strong>
<ul>
<li>Reading: Beginner</li>
<li>Edit: Forum Moderator</li>
</ul>
</li>
<li>
<strong>Details:</strong>
<ul>
<li>Version: r108</li>
<li>Last edited by: <a href="user.php?id=2"><span class="class_1">HDF</span></a></li>
<li>Last update: <span class="time tooltip">1 year, 3 days </span></li>
</ul>
</li>
<li>
<strong>Alias:</strong>
<ul>
<li id="alias_"><a href="wiki.php?action=article&name="></a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad"><strong><span style="text-decoration: underline;"><font size="4">FAQ:</font></span></strong><br>
<span style="color: #1e84cc;">Under construction, some links are not yet available</span><br>
<br>
<br>
<strong><span style="font-style: italic;"><span style="text-decoration: underline;"><span style="color: #c9daf8;"><font size="3">Questions where?<br>
</font></span></span></span></strong><br>
- <a href="/rules.php">Where can I find the site rules?</a><br>
- <a href="/forums.php?action=viewthread&threadid=14">Where do I adjust my account settings (Themes, torrent, community, notifications, privacy, etc..)?</a><br>
- <a href="/forums.php?action=viewforum&forumid=32">Where to report a (bugs/translation/spelling)?</a><br>
<br>
<strong><span style="font-style: italic;"><span style="text-decoration: underline;"><span style="color: #c9daf8;"><font size="3">Questions How to do?</font></span></span></span></strong><br>
<br>
- <a href="/wiki.php?action=article&id=31">How do I put an avatar and/or a signature on my account?</a><br>
- <a href="/store.php?action=about">How does the seed point system work?</a><br>
- <a href="/wiki.php?action=article&id=30">How does the H&R system work?</a><br>
- <a href="/rules.php?p=ratio">How does the ratio work on HD-F?</a><br>
- <a href="/forums.php?action=viewthread&threadid=202">How to use freeleech tokens?</a><br>
- <a href="/forums.php?action=viewthread&threadid=19">How to upload on HD-F?</a><br>
- <a href="/forums.php?action=viewthread&threadid=658">How to seed when uploading?</a><br>
- <a href="/forums.php?action=viewthread&threadid=311">How do I re-seed (re-share on a torrent)?</a><br>
- How do I raise my ratio?<br>
- How to get out of the monitoring ratio?<br>
<br>
<strong><span style="font-style: italic;"><span style="text-decoration: underline;"><span style="color: #c9daf8;"><font size="3">Questions why?</font></span></span></span></strong><br>
<br>
- <a href="/wiki.php?action=article&id=23"> Why is a torrent no longer present on the site?</a><br>
- <a href="/wiki.php?action=article&id=24">Why was my upload deleted?</a><br>
- <a href="/wiki.php?action=article&id=25">Why was my forum post deleted?</a><br>
- <a href="/wiki.php?action=article&id=32">Why did I receive a warning and what are the consequences?</a><br>
- <a href="/wiki.php?action=article&id=33">Why can't I download anymore?</a><br>
- <a href="/wiki.php?action=article&id=34">Why can't I upload to the site anymore?</a><br>
- <a href="/wiki.php?action=article&id=35">Why can't I PM anymore?</a><br>
<br>
<strong><span style="font-style: italic;"><span style="text-decoration: underline;"><span style="color: #c9daf8;"><font size="3">Questions can i?</font></span></span></span></strong><br>
<br>
- <a href="/wiki.php?action=article&id=22">Can I invite a friend?</a><br>
- <a href="/wiki.php?action=article&id=37">Can I do multi-tracking?</a><br>
- <a href="/wiki.php?action=article&id=29">Can I seed from multiple torrent clients?</a><br>
- <a href="/wiki.php?action=article&id=38">Can I have more than one account on HD-Forever?</a><br>
- <a href="/wiki.php?action=article&id=36">Can I have more than one server (seedbox) and do I have to report it to the staff?</a><br>
- <a href="/wiki.php?action=article&id=28">Can I do cross-seeding (share a torrent downloaded elsewhere and present on HD-F)</a><br>
<br>
<strong><span style="font-style: italic;"><span style="text-decoration: underline;"><span style="color: #c9daf8;"><font size="3">Questions miscellaneous</font></span></span></span></strong><br>
<br>
- <a href="/wiki.php?action=article&id=3">What are the different statuses on the site?</a> <br>
- <a href="/wiki.php?action=article&id=19">What is Hit & Run?</a><br>
- <a href="/wiki.php?action=article&id=20">What is the required ratio / ratio?</a><br>
- <a href="/wiki.php?action=article&id=27">What are freeleech tokens?</a><br>
- <a href="/wiki.php?action=article&id=26">What does FREE mean next to a torrent?</a> <br>
- <a href="/wiki.php?action=article&id=21">What does COMPLETE mean next to a torrent?</a> <br>
- What is the seedtime (Mandatory minimum sharing time) and how much is it?<br>
<br>
<br>
<br>
<div style="text-align: center;">*************************************************************************************</div><br>
<br>
<br>
<font size="2">* <a href="/wiki.php?action=article&id=4">How the Site Works</a></font><br>
<font size="2">* Site Dictionary</font><br>
<font size="2">* <a href="/wiki.php?action=article&id=3">General User Status</a></font><br>
<font size="2">* <a href="/wiki.php?action=article&id=17">Strict rules for custom's</a></font><br>
<br>
<strong><span style="font-style: italic;"><font size="4">Torrents</font></span></strong><br>
<br>
<font size="2">* <a href="/wiki.php?action=article&id=18">First Notions (Basics)</a><br>
</font>>> What's in a .torrent file?<br>
>> How do I use my .torrent?<br>
>> What is the tracker for?<br>
>> Seeders / Leechers?<br>
>> Upload / Download ?<br>
>> The ratio<br>
<font size="2">* <a href="/wiki.php?action=article&id=7">Customers</a></font><br>
<br>
<strong><span style="font-style: italic;"><font size="4">Tutorials</font></span></strong><br>
<br>
<font size="2">* <a href="/forums.php?action=viewthread&threadid=19">Upload to HD-F<br>
<br>
</a></font><font size="4"><strong>Bitcoin<br>
<br>
</strong></font>We chose Binance.<br>
<br>
<blockquote>Binance is a global cryptocurrency exchange that allows trading over 100 cryptocurrencies. <br>
Since the beginning of 2018, Binance has been considered the largest cryptocurrency exchange in the world by volume. <br>
The site was launched on July 14, 2017 and is based in Hong Kong.</blockquote><br>
<br>
binancehdf@protonmail.chbi*****l.ch<br>
<br>
or with QR code<br>
<br>
<div style="text-align: center;"><img class="scale_image" onclick="lightbox.init(this, $(this).width());" alt="https://i.imgur.com/IVaRJio.png" src="https://i.imgur.com/IVaRJio.png"></div><br>
Create a unique email address for your wallet on <a rel="noreferrer" target="_blank" href="https://protonmail.com/fr/">Protonmail</a> (ProtonMail is a service encrypted webmail created in 2013 at CERN)<br>
<br>
CAUTION, use a secure password such as 3+Tt_]_1`9Z-. (<a rel="noreferrer" target="_blank" href="http://www.libellules.ch/passwordgen.html">Password generator</a>)<br>
<br>
Write it down on a piece of paper and store it in a safe place.<br>
Do the same for your recovery pass to recover a forgotten password.<br>
Once on the site follow the security instructions, and send money to your wallet.<br>
<br>
You are ready!<br>
<br>
WARNING: the address is changed regularly, copy/paste to avoid typing errors.</div>
</div>
</div>
</div>
</div>
<div id="3">
<div class="header">
<h2>General User Status</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Create</a>
<!--<a href="reports.php?action=submit&type=wiki&article=3" class="brackets">Report</a>-->
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad"><span style="color: #6d9eeb;"><font size="4">User Ranks:</font><br>
</span><br>
<font size="3"><span style="text-decoration: underline;"><strong>Novice:</strong><br>
</span></font><strong>Requirements - None. Standard class for all new members.</strong><br>
<span style="color: #ff7700;">TK Access:</span> <strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Can download.<br>
Can vote on applications.<br>
Can use advanced search.<br>
Can access the top 10.</blockquote><br>
<span style="color: #cc4125;">Forum Access:</span><strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Basic function common to all statuses.<br>
<span style="text-decoration: underline;"><strong>SITE:</strong></span><br>
Getting started with HDF<br>
HDF news<br>
Reports (bugs/trad/ortho-grammar)<br>
<span style="text-decoration: underline;"><strong>COMMUNITY:</strong></span><br>
Introduce yourself<br>
Member's Lounge<br>
Quiz / Games<br>
Movies<br>
Series<br>
<span style="text-decoration: underline;"><strong>HELP:</strong></span><br>
On the site<br>
Tutorials<br>
Encoding<br>
BitTorrent<br>
Dedicated Servers<br>
Seedbox<br>
SIN<br>
<span style="text-decoration: underline;"><strong>TRANK:</strong></span><br>
Archives<br>
Trash</blockquote><br>
<br>
<span style="color: #96ca2d;"><font size="3"><span style="text-decoration: underline;"><strong>Member:</strong></span></font> </span><br>
<strong>Require</strong><strong>c</strong><strong>e</strong><strong>s -</strong> 1 week<strong> </strong>registration, 55 GB share , <a href="/rules.php?p=ratio">Ratio required</a><br>
<span style="color: #ff7700;">TK Access:</span> <strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Can download.<br>
Can upload.<br>
Can vote on applications.<br>
Can send requests.<br>
Can use advanced search.<br>
Can access the top 10.<br>
Can create bookmarks.<br>
Can edit wiki pages.<br>
Download multiple torrents at once.<br>
Can reset own password/authkey.</blockquote><br>
<span style="color: #cc4125;">Forum Access:</span><strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Basic function common to all statuses.<br>
<span style="text-decoration: underline;"><strong>SITE:</strong></span><br>
Getting started with HDF<br>
HDF news<br>
Reports (bugs/trad/ortho-grammar)<br>
<span style="text-decoration: underline;"><strong>COMMUNITY:</strong></span><br>
Introduce yourself<br>
Member's Lounge<br>
Quiz / Games<br>
Movies<br>
Series<br>
+ Good deals (server, seedbox, nas)<br>
<span style="text-decoration: underline;"><strong>HELP:</strong></span><br>
On the site<br>
Tutorials<br>
Encoding<br>
BitTorrent<br>
Dedicated Servers<br>
Seedbox<br>
SIN<br>
<span style="text-decoration: underline;"><strong>TRANK:</strong></span><br>
Archives<br>
Trash</blockquote><br>
<br>
<span style="color: #93c47d;"><span style="text-decoration: underline;"><strong><font size="4">Elite:</font></strong></span> </span><font size="3"><strong><span style="text-decoration: underline;"><br>
</span></strong></font><font size="2">Requirements - 1 Tera share, minimum ratio of 1 <br>
<span style="color: #ff7700;">TK Access:</span> <strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Can download.<br>
Can upload.<br>
Can vote on applications.<br>
Can send requests.<br>
Can use advanced search.<br>
Can access the top 10.<br>
Can access the torrents notification system.<br>
Can create collections.<br>
May have a personal collection.<br>
Can create bookmarks.<br>
Can edit wiki pages.<br>
Can create polls in forums.<br>
Can view snatch torrent lists.<br>
Can add their own torrents to the list of recommendations.<br>
Download multiple torrents at once.<br>
Can display list of tag aliases.<br>
Can reset own password/authkey.<br>
Can change password.<br>
Can add artists to any group.</blockquote><br>
<span style="color: #cc4125;">Forum Access:</span><strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Basic function common to all statuses.<br>
<span style="text-decoration: underline;"><strong>SITE:</strong></span><br>
Getting started with HDF<br>
HDF news<br>
Reports (bugs/trad/ortho-grammar)<br>
<span style="text-decoration: underline;"><strong>COMMUNITY:</strong></span><br>
Introduce yourself<br>
Member's Lounge<br>
Quiz / Games<br>
Movies<br>
Series<br>
+ Good deals (server, seedbox, nas)<br>
+ SRT exchanges and requests<br>
+ Exchanges and requests for BS<br>
<span style="text-decoration: underline;"><strong>HELP:</strong></span><br>
On the site<br>
Tutorials<br>
Encoding<br>
BitTorrent<br>
Dedicated Servers<br>
Seedbox<br>
SIN<br>
<span style="text-decoration: underline;"><strong>TRANK:</strong></span><br>
Archives<br>
Trash</blockquote><br>
<br>
</font><span style="color: #38761d;"><span style="text-decoration: underline;"><strong><font size="3">Uploader:</font></strong> </span></span><br>
<strong>Requirements:<br>
- Have uploaded 50 torrents and have at least 25 shared at all times (status on request in MP staff).<br>
- Have 6 months of activity on HDF.<br>
- A check will be carried out 1 month after the acquisition of the status.</strong><br>
<span style="color: #ff7700;">TK Access:</span> <strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Can download.<br>
Can upload.<br>
Can vote on applications.<br>
Can send requests.<br>
Can use advanced search.<br>
Can access the top 10.<br>
Can access the torrents notification system.<br>
Can create collections.<br>
Can manage collections (add torrents, sort).<br>
Can access collection subscriptions.<br>
May have a personal collection.<br>
Can rename personal collections.<br>
Can vote for favorite torrents.<br>
Can create bookmarks.<br>
Can view snatch torrent lists.<br>
Download multiple torrents at once.<br>
May exceed the lower limit of search results.<br>
Can reset own password/authkey.<br>
Can change password.<br>
Can see what a user is UP or DL</blockquote><br>
<span style="color: #cc4125;">Forum Access:</span><strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Basic function common to all statuses.<br>
<span style="text-decoration: underline;"><strong>SITE:</strong></span><br>
Getting started with HDF<br>
HDF news<br>
Reports (bugs/trad/ortho-grammar)<br>
+ Exchanges of invitations<br>
<span style="text-decoration: underline;"><strong>COMMUNITY:</strong></span><br>
Introduce yourself<br>
Member's Lounge<br>
+ Uploaders Lounge<br>
Quiz / Games<br>
Movies<br>
Series<br>
+ Good deals (server, seedbox, nas)<br>
+ SRT exchanges and requests<br>
+ Exchanges and requests for BS<br>
<span style="text-decoration: underline;"><strong>HELP:</strong></span><br>
On the site<br>
Tutorials<br>
Encoding<br>
BitTorrent<br>
Dedicated Servers<br>
Seedbox<br>
SIN<br>
<span style="text-decoration: underline;"><strong>TRANK:</strong></span><br>
Archives<br>
Trash</blockquote><br>
<br>
<span style="text-decoration: underline;"><strong><font size="3"><span style="color: #d400ff;">Team/Releaseur:</span><br>
</font></strong></span><font size="2">Releaser team/single releaser. Granted by staff</font><br>
<span style="color: #ff7700;">TK Access:</span> <strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Can download.<br>
Can upload.<br>
Can vote on applications.<br>
Can send requests.<br>
Can use advanced search.<br>
Can access the top 10.<br>
Can access the torrents notification system.<br>
Can create collections.<br>
Can manage collections (add torrents, sort).<br>
Can access collection subscriptions.<br>
May have a personal collection.<br>
Can rename personal collections.<br>
Can vote for favorite torrents.<br>
Can create bookmarks.<br>
Can view snatch torrent lists.<br>
Download multiple torrents at once.<br>
May exceed the lower limit of search results.<br>
Can reset own password/authkey.<br>
Can change password.<br>
Can see what a user is UP or DL</blockquote><br>
<span style="color: #cc4125;">Forum Access:</span><strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Basic function common to all statuses.<br>
<span style="text-decoration: underline;"><strong>SITE:</strong></span><br>
Getting started with HDF<br>
HDF news<br>
Reports (bugs/trad/ortho-grammar)<br>
+ Exchanges of invitations<br>
<span style="text-decoration: underline;"><strong>COMMUNITY:</strong></span><br>
Introduce yourself<br>
Member's Lounge<br>
+ Uploaders Lounge<br>
+ Releasers' lounge<br>
Quiz / Games<br>
Movies<br>
Series<br>
+ Good deals (server, seedbox, nas)<br>
+ SRT exchanges and requests<br>
+ Exchanges and requests for BS<br>
<span style="text-decoration: underline;"><strong>HELP:</strong></span><br>
On the site<br>
Tutorials<br>
Encoding<br>
BitTorrent<br>
Dedicated Servers<br>
Seedbox<br>
SIN<br>
<span style="text-decoration: underline;"><strong>TRANK:</strong></span><br>
Archives<br>
Trash</blockquote><br>
<br>
<span style="text-decoration: underline;"><strong><font size="3"><span style="color: #853894;">Customer:</span><br>
</font></strong></span><font size="2">Releaser Team/Custom. Granted by staff</font><br>
<span style="color: #ff7700;">TK Access:</span> <strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Can download.<br>
Can upload.<br>
Can vote on applications.<br>
Can send requests.<br>
Can use advanced search.<br>
Can access the top 10.<br>
Can access the torrents notification system.<br>
Can create collections.<br>
Can manage collections (add torrents, sort).<br>
Can access collection subscriptions.<br>
May have a personal collection.<br>
Can rename personal collections.<br>
Can vote for favorite torrents.<br>
Can create bookmarks.<br>
Can view snatch torrent lists.<br>
Download multiple torrents at once.<br>
May exceed the lower limit of search results.<br>
Can reset own password/authkey.<br>
Can change password.<br>
Can see what a user is UP or DL</blockquote><br>
<span style="color: #cc4125;">Forum Access:</span><strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Basic function common to all statuses.<br>
<span style="text-decoration: underline;"><strong>SITE:</strong></span><br>
Getting started with HDF<br>
HDF news<br>
Reports (bugs/trad/ortho-grammar)<br>
+ Exchanges of invitations<br>
<span style="text-decoration: underline;"><strong>COMMUNITY:</strong></span><br>
Introduce yourself<br>
Member's Lounge<br>
+ Uploaders Lounge<br>
+ Releasers' lounge<br>
+ Customer fair<br>
Quiz / Games<br>
Movies<br>
Series<br>
+ Good deals (server, seedbox, nas)<br>
+ SRT exchanges and requests<br>
+ Exchanges and requests for BS<br>
<span style="text-decoration: underline;"><strong>HELP:</strong></span><br>
On the site<br>
Tutorials<br>
Encoding<br>
BitTorrent<br>
Dedicated Servers<br>
Seedbox<br>
SIN<br>
<span style="text-decoration: underline;"><strong>TRANK:</strong></span><br>
Archive<br>
Trash</blockquote><br>
<br>
<font size="4"><span style="color: #6d9eeb;">Special Ranks:</span><br>
</font><br>
<span style="text-decoration: underline;"><strong><font size="3">First Line Support (PLS):</font></strong></span><br>
<font size="2">Helps with site tasks and supports users who need help. Selected by staff.</font><br>
<br>
<span style="color: #ff00ff;"><font size="3"><span style="text-decoration: underline;"><strong>HD-F support</strong></span><span style="text-decoration: underline;"><strong> </strong></span></font><span style="text-decoration: underline;"><strong><font size=" 3">:<br>
</font></strong></span></span><font size="2">These people have been involved to help keep this site running.<br>
A heart appears next to their name<br>
<span style="color: #ff7700;">TK Access:</span> <strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Can download.<br>
Can upload.<br>
Can vote on applications.<br>
Can send requests.<br>
Can use advanced search.<br>
Can access the top 10.<br>
Can access the torrents notification system.<br>
Can create collections.<br>
Can manage collections (add torrents, sort).<br>
Can access collection subscriptions.<br>
May have a personal collection.<br>
Can rename personal collections.<br>
Can vote for favorite torrents.<br>
Can create bookmarks.<br>
Can edit wiki pages.<br>
Can invite users even when invites are closed.<br>
Can create polls in forums.<br>
Can add their own torrents to the list of recommendations.<br>
Download multiple torrents at once.<br>
May exceed the lower limit of search results.<br>
Can display list of tag aliases.<br>
Can see anyone's friends.<br>
Can reset own password/authkey.<br>
Can change password.<br>
Can see what a user is UP or DL<br>
Can view a user's downloads regardless of privacy level<br>
Can add artists to any group.</blockquote><br>
<span style="color: #cc4125;">Forum Access:</span><strong>Hidden Text:</strong>: <a href="javascript:void(0);" onclick="BBCode.spoiler(this);">See</a><blockquote class="hidden spoiler">Basic function common to all statuses.<br>
<span style="text-decoration: underline;"><strong>SITE:</strong></span><br>
Getting started with HDF<br>
HDF news<br>
Reports (bugs/trad/ortho-grammar)<br>
<span style="text-decoration: underline;"><strong>COMMUNITY:</strong></span><br>
Introduce yourself<br>
Member's Lounge<br>
+ Uploaders Lounge<br>
+ Releasers' lounge<br>
Quiz / Games<br>
Movies<br>
Series<br>
+ Good deals (server, seedbox, nas)<br>
+ SRT exchanges and requests<br>
+ Exchanges and requests for BS<br>
<span style="text-decoration: underline;"><strong>HELP:</strong></span><br>
On the site<br>
Tutorials<br>
Encoding<br>
BitTorrent<br>
Dedicated Servers<br>
Seedbox<br>
SIN<br>
<span style="text-decoration: underline;"><strong>TRANK:</strong></span><br>
Archive<br>
Trash<br>
View<a href="/donate.php">Support HD-F</a></blockquote></font><br>
<br>
<span style="color: #6fa8dc;"><font size="4">Staff ranks:</font></span><br>
<br>
<span style="color: #0000ff;"><font size="3"><strong><span style="text-decoration: underline;">Forum Moderator:</span></strong></font ></span><br>
<font size="2">Oversees and moderates the forums. Picked by staff</font><br>
<br>
<span style="color: #1e84cc;"><font size="3"><span style="text-decoration: underline;"><strong> </strong></span><span style= "text-decoration: underline;"><strong>Moderator Tracker </strong></span></font></span><span style="text-decoration: underline;"><strong><font size="3"><span style="color: #1e84cc;">:</span><br>
</font></strong></span>Oversees torrents. Chosen by the staff<strong><br>
<br>
<span style="color: #ff321d;"><font size="3"><span style="text-decoration: underline;"><strong> </strong></span><span style= "text-decoration: underline;"><strong>Moderator Leader</strong></span></font></span><strong><font size="3"><span style="color: #ff321d;">:<br>
</span><br>
</font></strong>Supervises torrents, Supervises and moderates forums, referent of moderators. Chosen by the staff<strong><br>
<br>
</strong><span style="color: #ff0000;"><span style="text-decoration: underline;"><font size="3"><strong>Sysop:</strong></font> </span></span><br>
<font size="2">System Operator, manages the technical side of the site<br>
</font><span style="color: #980000;"><br>
</span><font size="3"><span style="color: #980000;"><span style="text-decoration: underline;">Admin:</span></span></font ></strong><font size="3"><br>
</font>Manage Full Tracker<br>
<br>
<br>
<strong><span style="text-decoration: underline;"><font size="3"><div style="text-align: center;">New statuses and custom title related to site engagement rate </div></font></span></strong><br>
<br>
<font size="3"><strong><span style="color: #ff7700;"> Obtaining these new distinctions will be done on request by MP staff. They will therefore not be automatic.</span></strong></font><br>
<br>
<strong><span style="text-decoration: underline;">- Uploaders, Team/Releaser:</span></strong><br>
<br>
The basic conditions related to obtaining the status remain applicable, namely:<br>
<blockquote>- 6 months of activity on HDF minimum.<br>
- Have uploaded 50 torrents and have 25 torrents in seed (at all times) at least.</blockquote><br>
For our big uploaders in recognition of your involvement for the good of all you can request a personalized title "Uploader 200+ or 300+ 400+ 500+ etc" which will indicate that you have uploaded more than 200 torrents on HD-F<br >
<br>
<blockquote><span style="color: #6aa84f;">Additional advantage over other uploaders: Immunity against account deactivation in the event of long inactivity (torrents must remain in seed, however).</span></ blockquote<br>
<br>
<strong><span style="text-decoration: underline;">- For big seeders:<br>
<br>
</span></strong>For our big seeders in recognition of your involvement for the good of all you can request a personalized title "Seeder 200+ or 300+ 400+ 500+ etc" which will indicate that you have + 200 torrents shared on HD-F.<br>
<br>
<blockquote><span style="color: #6aa84f;">Additional advantages over Elite: Immunity against deactivation of the account in the event of long inactivity (torrents must however remain in seed), right to invite via simple request in PM staff</span></blockquote><br>
<br>
<br>
<strong><span style="text-decoration: underline;">-For very long-term seeders:</span></strong><br>
<br>
For our very long-term seeders in recognition of your involvement for the good of all you can apply for "Archivist" status<br>
<br>
<div style="text-align: center;"><a href="/forums.php?action=viewthread&threadid=1844">Archivist Recruitment Position</a></div><br>
<br>
<div style="text-align: center;"><strong><font size="3">For members who would say "I don't have enough storage (GB/TB) available to be able to be a good Archivist" tell yourself that it is not the quantity saved per member that counts but the number of Archivist and the longevity.<br>
<br>
Example: if we have 1,000 Archivists who each keep 5 torrents, we will have a backup of 5,000 torrents, which is already great.</font></strong></div><br>
<br>
<blockquote><strong><span style="color: #6aa84f;">Additional advantages compared to Elite: Immunity against deactivation of the account in the event of long inactivity (torrents must however remain in seed), right to invite via simple request in PM staff</span></strong></blockquote><br>
<br>
<br>
<strong><span style="text-decoration: underline;">- For staff other trackers, Forum staff and former HDF staff</span></strong><br>
<br>
A new status <strong>"celebrity"</strong> <span style="color: #ff0000;"> (no mention of your usual nickname or the site on which you operate will be made in order to remain discreet at this level) </span><br>
<br>
<blockquote><span style="color: #6aa84f;">Additional advantages over Elite: Immunity against account deactivation in the event of long inactivity, right to invite via simple request in PM staff</span></blockquote><br>
<br>
<strong><span style="text-decoration: underline;">- For big forumers:</span></strong><br>
<br>
A personalized title "Forum moderator"<br>
<br>
<blockquote>Conditions for obtaining:<br>
- 6 months of activity on HDF minimum.<br>
- Have posted/answered at least 100 forum posts</blockquote><blockquote><span style="color: #6aa84f;">Additional right to Member & Elite: right to invite via simple request in PM staff</span></blockquote></div>
</div>
</div>
</div>
<div id="4">
<div class="header">
<h2>Operation of the Site</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Create</a>
<a href="wiki.php?action=edit&id=4" class="brackets">Contribute</a>
<a href="wiki.php?action=revisions&id=4" class="brackets">History</a>
<!--<a href="reports.php?action=submit&type=wiki&article=4" class="brackets">Report</a>-->
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad">Here you will find tutorials that can help you master the site and its options.<br>
Links as needed will send you to the forum, with full tutorials to guide you through this task.<br>
<br>
<a href="/forums.php?action=viewthread&threadid=17#post49">* HD-F Create Collection</a> <br>
<a href="/forums.php?action=viewthread&threadid=14">* HD-F Edit your profile</a><br>
<a href="/wiki.php?action=article&id=11">* HD-F Invite a friend</a><br>
<font size="2"><a href="/forums.php?action=viewthread&threadid=11">* HD-F Home Page</a><br>
<br>
</font></div>
</div>
</div>
</div>
<div id="6">
<div class="header">
<h2>BitTorrent</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Create</a>
<a href="wiki.php?action=edit&id=6" class="brackets">Contribute</a>
<a href="wiki.php?action=revisions&id=6" class="brackets">History</a>
<!--<a href="reports.php?action=submit&type=wiki&article=6" class="brackets">Report</a>-->
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad">The official client for distributing and downloading any type of file through the <strong>BitTorrent</strong> network. This technology makes it possible to quickly disseminate a large quantity of data. Each transferred packet being analyzed during transmission, the data will never be damaged on arrival. The usual features of such tools are also offered by <strong>BitTorrent</strong>, including bandwidth usage monitoring, log, open connection tracking, etc.<br>
<br>
<a href="/forums.php?action=viewthread&threadid=12">Configure BitTorrent Mac</a><br>
<a href="/forums.php?action=viewthread&threadid=18">Configure BitTorrent Windows</a><br>
<a href="/forums.php?action=viewthread&threadid=27">Create a Torrent: BitTorrent</a></div>
</div>
</div>
</div>
<div id="7">
<div class="header">
<h2>Customer</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Create</a>
<a href="wiki.php?action=edit&id=7" class="brackets">Contribute</a>
<a href="wiki.php?action=revisions&id=7" class="brackets">History</a>
<!--<a href="reports.php?action=submit&type=wiki&article=7" class="brackets">Report</a>-->
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad">Surely you have all heard of BitTorrent.<br>
BitTorrent is a protocol for sharing one or more files with several people.<br>
People who retrieve the file share it with other people who want it. For this there is software named "Customer" <br>
There are several, for different os or users. We will see the most common <br>
<br>
<a href="/wiki.php?action=article&id=12">Azureus Vuze</a><br>
<a href="/wiki.php?action=article&id=6">BitTorrent</a><br>
<a href="/wiki.php?action=article&id=9">qBittorrent</a><br>
<a href="/wiki.php?action=article&id=13">ruTorrent</a><br>
<a href="/wiki.php?action=article&id=10">Submission</a><br>
<a href="/wiki.php?action=article&name=microtorrent">uTorrent</a></div>
</div>
</div>
</div>
<div id="8">
<div class="header">
<h2>uTorrent</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Create</a>
<a href="wiki.php?action=edit&id=8" class="brackets">Contribute</a>
<a href="wiki.php?action=revisions&id=8" class="brackets">History</a>
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad"><strong>µTorrent</strong> is a torrent client, i.e. software capable of interconnecting thousands of computers in order to share files via the peer protocol to Peer (P2P) BitTorrent.<br>
The software is signed by the designer of the protocol <a rel="noreferrer" target="_blank" href="http://www.clubic.com/telecharger-fiche11039-bittorrent.html">BitTorrent</a>  ;and software of the same name; first official software dedicated to the sharing network. His particuliarity ? Being lighter and easier to use.<br>
Although<strong>µTorrent</strong>weighs only 1MB and has a relatively clean interface, that doesn't mean it lacks features.<br>
Of course, it has the minimum functions required for such software: adding .torrent files, sharing, managing magnet links, managing files and priorities, but not only. This includes, for example, a configurable search engine.<br>
<strong>µTorrent</strong> can also manage RSS feeds for you so you don't miss any of your download feeds.<br>
The software can also be controlled remotely either by its smartphone application or via a web interface. Convenient to launch downloads on your computer as soon as you have the idea.<br>
The installation process of <strong>µTorrent (uTorrent)</strong> includes an automatic download module for the <strong>French translation</strong>.<br>
<span style="color: #ff0000;"><span style="text-decoration: underline;"><br>
Warning:</span> 3*** versions of Utorrent are now banned from HDF.</span><br>
<br>
<a rel="noreferrer" target="_blank" href="http://dev.dss-informatique.com/forums.php?action=viewthread&threadid=16#post48">Configure µTorrent Android</a>< br>
<a rel="noreferrer" target="_blank" href="http://dev.dss-informatique.com/forums.php?action=viewthread&threadid=15">Configure µTorrent Mac</a><br>
<a rel="noreferrer" target="_blank" href="http://dev.dss-informatique.com/forums.php?action=viewthread&threadid=18">Configure µTorrent Windows</a><br>
<a rel="noreferrer" target="_blank" href="http://dev.dss-informatique.com/forums.php?action=viewthread&threadid=27">Create a Torrent: µTorrent</a>< /div>
</div>
</div>
</div>
<div id="9">
<div class="header">
<h2>qBittorrent</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Create</a>
<a href="wiki.php?action=edit&id=9" class="brackets">Contribute</a>
<a href="wiki.php?action=revisions&id=9" class="brackets">History</a>
<!--<a href="reports.php?action=submit&type=wiki&article=9" class="brackets">Report</a>-->
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad">qBittorrent is a Torrent file download client compatible with Windows, Mac and Linux. Before first use, it<br>
must install the plugins and configure the search engines that <br>
you want to use. Once this step is completed, this <br>
applications remains very simple since it suffices to search for the title <br>
desired, select the desired file and launch the <br>
download. You have the option to preview your file <br>
to verify that it is not a fake. qBittorrent has a module<br>
"Torrent Creator" which allows you to create Torrent files in order to <br>
share on the network.<br>
<br>
<a href="/forums.php?action=viewthread&threadid=21"><br>
Configure qBittorrent Windows & Mac</a></div>
</div>
</div>
</div>
<div id="10">
<div class="header">
<h2>Mac Transmission</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Create</a>
<a href="wiki.php?action=edit&id=10" class="brackets">Contribute</a>
<a href="wiki.php?action=revisions&id=10" class="brackets">History</a>
<!--<a href="reports.php?action=submit&type=wiki&article=10" class="brackets">Report</a>-->
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad">Transmission is software that allows you to download files using the Bittorrent protocol. <br>
Transmission is configurable enough to delight users<br>
the most demanding. In particular, it is possible to select a folder<br>
default download, a time range to which a limit <br>
traffic is applied, monitor a torrent file folder at <br>
start, automatically stop sharing after a certain threshold, <br>
limit the bandwidth, select the TCP port to use, etc.<br>
<a href="/forums.php?action=viewthread&threadid=22"><br>
Configure Transmit Mac</a></div>
</div>
</div>
</div>
<div id="11">
<div class="header">
<h2>Invitations</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Create</a>
<a href="wiki.php?action=edit&id=11" class="brackets">Contribute</a>
<a href="wiki.php?action=revisions&id=11" class="brackets">History</a>
<!--<a href="reports.php?action=submit&type=wiki&article=11" class="brackets">Report</a>-->
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad">Please note that selling, trading, or offering invitations in response to a public request is strictly prohibited and may result in a ban from the entire invitation tree. This includes offering invitations to forums that are not restricted by a certain class of users on another private tracker.<br>
<br>
Do not send an invitation to someone who already had an account on HD-F. <br>
<br>
Remember that you are responsible for your guests and that your account and/or privileges may be disabled for their actions. You must know the person you are inviting. If you don't trust this person, don't invite them.<br>
<br>
Do not send any invitations if you have not read or understood the information above.<br>
<br>
You can have invitations by redeeming points or with site support.<br>
<br>
To send the invitation, only an email is required. Attention the email must be valid, because it will ask for a response <br>
<br>
To access your <a href="/user.php?action=invite">invitations</a> and your <a href="/user.php?action=invitetree">invitation tree</a> .</div>
</div>
</div>
</div>
<div id="12">
<div class="header">
<h2>Azureus Vuze</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Create</a>
<a href="wiki.php?action=edit&id=12" class="brackets">Contribute</a>
<a href="wiki.php?action=revisions&id=12" class="brackets">History</a>
<!--<a href="reports.php?action=submit&type=wiki&article=12" class="brackets">Report</a>-->
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad">Among the P2P software compatible with the Bittorrent protocol, Azureus is clearly the one that has the favor of the public. The networks show it.<br>
This is undoubtedly partly due to the versatility of Azureus, but also to its great flexibility which allows it to be present on many platforms<br>
(written in Java, it's been ported to almost anything with a microprocessor: Apple, Linux, Windows PC, Unix workstations, etc.).<br>
But it comes with an astonishing complexity when it comes to configuration. Azureus limits breakage with multiple levels of configuration, but it's still complex.<br>
<a href="/forums.php?action=viewthread&threadid=25">Configure Azureus Vuze</a></div>
</div>
</div>
</div>
<div id="13">
<div class="header">
<h2>ruTorrent</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Create</a>
<a href="wiki.php?action=edit&id=13" class="brackets">Contribute</a>
<a href="wiki.php?action=revisions&id=13" class="brackets">History</a>
<!--<a href="reports.php?action=submit&type=wiki&article=13" class="brackets">Report</a>-->
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad">ruTorrent is a PHP web interface for accessing rTorrent. It is based on the interface of µTorrent, which makes it very pleasant to use. ruTorrent therefore takes its name from rTorrent + µTorrent. <br>
<br>
<a href="/forums.php?action=viewthread&threadid=28">Create a torrent with ruTorrent</a></div>
</div>
</div>
</div>
<div id="15">
<div class="header">
<h2>The Site Dictionary</h2>
<div class="linkbox">
<a href="wiki.php?action=create" class="brackets">Create</a>
<!--<a href="reports.php?action=submit&type=wiki&article=15" class="brackets">Report</a>-->
</div>
</div>
<div class="main_column">
<div class="box wiki_article">
<div class="pad"><span style="text-decoration: underline;"><strong>BITRATE:</strong></span><br>
A measure of the amount of digital data transmitted per unit time.<br>
It is most often expressed in bits per second (bps) and kilobits/s (kbps) per 1000 bps.<br>
For a film, we speak of a total bitrate (ex: 9610 Kbps) as the sum of the video bitrate (example: 8000 Kbps) and the audio bitrate (ex: 1610 Kbps).<br>
It is an indicator of the quality of a release (the higher the bitrate, the higher the quality expected of a release)<br>
<br>
<span style="text-decoration: underline;"><strong>BITTORRENT:</strong></span><br>
The Bittorrent protocol is a process for exchanging "big" data between several people.<br>
To put these people in contact you need what is called a tracker (site that centralizes the .torrent files necessary for exchanges) such as HD-F.<br>
<span style="text-decoration: underline;"><strong><br>
CUSTOMER:</strong></span><br>
In a computer network a client is the principle that sends requests to a server. It can be software manipulated by a person, or a bot. The client can be a computer, software or computing device and as such depends on a server.<br>
<span style="text-decoration: underline;"><strong><br>
CODEC:</strong></span><br>
Codec comes from compression-decompression or coding-decoding (COde-DECode in English). A codec is a process capable of compressing and/or decompressing a digital signal.<br>
On the one hand, codecs encode streams or signals for data transmission, storage or encryption. On the other hand, they decode these streams or signals for editing or playback. For example, MPEG-4 AVC/H.264 is a video standard, and x264 is a codec capable of producing a video stream adhering to this standard.<br>
<br>
Example of Audio Codecs allowed on HDF:<br>
AC-3, DTS, TrueHD, DTS-HD, PCM, ATMOS, EAC3, FLAC<br>
<br>
Example of video Codecs allowed on HDF:<br>
x264, x265, VC-1, AVC<br>
<span style="text-decoration: underline;"><strong><br>
CROP (CROPPING, CROPPER)</strong></span><br>
Action of cutting the black bands at the top and bottom of the image at the time of encoding to reduce the size of the release without hindering the image. Cropping is optional and is not performed by all encoders. Mainly used by US scene and trackers.<br>
<br>
<span style="text-decoration: underline;"><strong>DETAG:</strong></span><br>
Action of deleting a signature, or Tag, usually found at the end of a torrent's name.<br>
It gives information about the creator(s) of a release or a torrent.<br>
See here forums.php?action=viewthread&threadid=367<br>
<span style="text-decoration: underline;"><strong><br>
DOWNLOAD, DL, DOWNLOADER:</strong></span><br>
Download, download.<br>
<br>
<span style="text-decoration: underline;"><strong>ENCODING:</strong></span><br>
Transform the signal of a video (example: Full BluRay or Remux) to another format (ex: HDrip 1080p) to reduce the weight, reducing the quality to a minimum.<br>
<br>
<span style="text-decoration: underline;"><strong>FAKE:</strong></span><br>
In French, it means False or Imposture. This means, here, that the torrent offers content that has no relation to the presentation or does not exist. For example, a torrent offering Ccleaner 10.4 is a fake since this tool does not exist in this version.<br>
<br>
<span style="text-decoration: underline;"><strong>FANSUB:</strong></span><br>
Action of subtitling a video for personal and non-professional purposes. The quality of Fansubs can vary greatly (translation accuracy, mistakes, etc.) and these are called FastSubs.<br>
<br>
<span style="text-decoration: underline;"><strong>FASTSUB:</strong></span><br>
Fansub made as fast as possible, at the expense of quality.<br>
<br>
<span style="text-decoration: underline;"><strong>FORUM</strong></span><br>
Discussion area of a site.<br>
On HDF the forum is available here: https://hdf.world/forums.php<br>
<br>
<span style="text-decoration: underline;"><strong>FREE LEECH:</strong></span><br>
This principle only exists on trackers using a ratio system. It is based on the fact that the amount of data downloaded is not counted by the tracker and therefore the ratio cannot go down. The shares remain in the accounts so, in addition to being able to download without limit, your ratio can increase. Enjoy!<br>
<br>
<span style="text-decoration: underline;"><strong>FRENCH, FR:</strong></span><br>
Indicates that the proposed file is in French. For films, the indication "FRENCH" is supposed to indicate that the voices are dubbed in Quebec.<br>
<br>
<span style="text-decoration: underline;"><strong>FULL BLURAY</strong></span><br>
Compliant copy of the commercial BluRay, either in image format (ISO), or in the form of a folder containing the tree structure of the BluRay. It is the equivalent of a "DVD-R" but for BluRay. All tracks from the original BluRay are retained.<br>
<br>
<span style="text-decoration: underline;"><strong>HADOPI:</strong></span><br>
High Authority for the dissemination of works and the protection of rights on the Internet. It is an independent public authority and enjoys legal personality.<br>
Its mission is to promote the development of the legal offer and to observe the legal and illegal use of works on the Internet, to protect works against infringements of the rights attached to them and to regulate the use technical protection measures.<br>
<br>
<span style="text-decoration: underline;"><strong>HD (High Definition):</strong></span><br>
On the site, the term HD (High Definition) indicates videos whose number of lines (vertical definition or height) is greater than or equal to 720 or whose number of columns (horizontal definition or width) is greater than or equal to 1280. <br>
There are mainly three HD categories:<br>
- 720p or HD Ready (1280x720 in 16:9)<br>
- 1080p or Full HD (1920x1080 in 16:9)<br>
- 4K or Ultra HD (3840x2160 in 16:9).<br>
<br>
<span style="text-decoration: underline;"><strong>HDRip:</strong></span><br>
This is a "High Definition" Rip of a Bluray.<br>
<span style="text-decoration: underline;"><strong><br>
FREELEECH TOKEN:</strong></span><br>
Way on the site to download a torrent without the ratio being counted (see FREELEECH)<br>
<br>
<span style="text-decoration: underline;"><strong>LEECH, LEECHER:</strong></span><br>
(Leech) Downloading... This refers to people who are downloading on a torrent. A leecher is also a potential seeder because the slightest data received is shared, but it will only become fully-fledged when its download is complete.<br>
<br>
<span style="text-decoration: underline;"><strong>LiMiTED:</strong></span><br>
This tag means that the film had only a limited distribution in cinemas (sometimes less than 250 cinemas). Generally, these are arthouse films, or medium-length films.<br>
<br>
<span style="text-decoration: underline;"><strong>mHD:</strong></span><br>
Release having an HD definition (720p or 1080p) but a so-called "light" encoding, ie at a lower bitrate than an HDrip. On HD§F mHD are authorized with upload restrictions to preserve the quality of the site.<br>
<br>
<span style="text-decoration: underline;"><strong>MP or PM:</strong></span><br>
Private Message or Private Message. This is what we call the messages that are sent from one member to another within the site, via the internal messaging system.<br>
It is a way for one user to communicate with another.<br>
<br>
<span style="text-decoration: underline;"><strong>MULTi:</strong></span><br>
Tag of a release with several audio tracks in different languages (at least here, the VO and the VF)<br>
<br>
<span style="text-decoration: underline;"><strong>NFO:</strong></span><br>
The NFO file is a text information file whose extension (part after the . in the filename) is NFO (not txt).<br>
An NFO file is mandatory for each upload and must contain a certain amount of information depending on the type of files uploaded.<br>
It can be obtained using Mediainfo (for MKV) or BDinfo (for Full BluRay) software<br>
<br>
<span style="text-decoration: underline;"><strong>NUKE:</strong></span><br>
Refers to a badly done release, audio/video lag, compression with too high a loss, incomplete NFO, corrupted files….<br>
<span style="text-decoration: underline;"><strong><br>
SHARING:</strong></span><br>
Make available. Being a seeder, having files accessible to others (open client).<br>
<br>
<span style="text-decoration: underline;"><strong>PEERS:</strong></span><br>
Seeders or Leechers of a release are peers, they are the members who share a file between them, whether they own it in its entirety or not yet.<br>
<span style="text-decoration: underline;"><strong><br>
PEER TO PEER, P2P:</strong></span><br>
Peer-to-peer, often abbreviated “P2P” and peer-to-peer in French, is a computer network model close to the client-server model but where each client is also a server. Peer-to-peer systems allow multiple computers to communicate over a network, and most often, simply share files.<br>
Peer-to-peer allowed a decentralization of systems, previously based on a few servers, by allowing all computers to play the role of client and server.<br>
<br>
<span style="text-decoration: underline;"><strong>POST, POSTER:</strong></span><br>
Synonymous with Up and Uploader.<br>
See the "Upload" definition<br>
<br>
<span style="text-decoration: underline;"><strong>PREZ:</strong></span><br>
Abbreviation for presentation. The prez is the visible part of your upload. This is the page that appears when viewing a torrent.<br>
A Prez can be created by a prez generator (there are many) or by hand. A prez uses BBCODE tags and must follow upload rules.<br>
<span style="text-decoration: underline;"><strong><br>
PROPER:</strong></span><br>
Is a tag that can be added in the name of a release if it has already been made by another team in a lower quality (use of another Telesync, or one from the same source, but of better quality ). This may also indicate a better translation for subtitles unlike FASTSUBs which are hasty translations.<br>
<br>
<span style="text-decoration: underline;"><strong>PV:</strong></span><br>
Abbreviation for "Private".<br>
Often used to tell someone to communicate<br>
<span style="text-decoration: underline;"><strong><br>
RATIO:</strong></span><br>
Total uploaded divided by total downloaded<br>
See here rules.php?p=ratio<br>
<span style="text-decoration: underline;"><strong><br>
READ.NFO:</strong></span><br>
Means that the team has a message to convey, usually concerning the release with this tag.<br>
<br>
<span style="text-decoration: underline;"><strong>RELEASE:</strong></span><br>
English word meaning "release" or "release" release of a film or a music album, ... Final product of a team.<br>
<br>
REMUX<br>
Video and audio tracks from a BluRay are "multiplexed" into a .mkv container without undergoing re-encoding, which maintains the same quality as Blu-ray, while reducing weight by removing unnecessary languages , menus or bonuses<br>
<br>