forked from Erkan-Yilmaz/ToS-DR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
959 lines (910 loc) · 302 KB
/
Copy pathindex.html
File metadata and controls
959 lines (910 loc) · 302 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Terms of Service; Didn't Read</title>
<meta name="description" content="Terms of Service; Didn't Read (ToS;DR) is an active project to fix the biggest lie on the web. We help you understand the Terms and Conditions and Privacy Policies of websites.">
<meta name="author" content="Unhosted">
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link rel="shortcut icon" href="img/tosdr-icon-16.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/tosdr-icon-144.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="img/tosdr-icon-114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/tosdr-icon-72.png">
<link rel="apple-touch-icon-precomposed" href="img/tosdr-icon-57.png">
<script src="js/jquery-1.7.1.min.js"></script>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"> <!--http://j.mp/mobileviewport-->
</head>
<body id="index-html" >
<div class="navbar navbar-fixed-top" id="menu-options">
<div class="navbar-inner">
<div class="container">
<button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="#"><img src="img/tosdr-icon-16.png" alt="" style="vertical-align:baseline;margin-right:.5em;" class="logo" />Terms of Service; Didn't Read</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class=""><a href="#services">Rated Services</a></li>
<li class=""><a href="#classification">Classification</a></li>
<li class=""><a href="#workinprogress">Progress</a></li>
<li class=""><a href="#wthru">About</a></li>
<!-- <li class=""><a href="#categories">Categories</a></li>-->
</ul>
<p class="pull-right">
<a href="#funding" class="btn btn-success btn-mini" style="position:absolute;">Donate</a>
</p>
<p class="pull-right follow-us">
Follow us <a href="http://twitter.com/tosdr">@tosdr</a>
<!--a href="http://flattr.com/thing/821090/ToSDR" target="_blank"><img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a-->
</p>
</div>
</div>
</div>
</div>
<div class="hero-unit">
<section class="container">
<div class="page-header"><h1><img src="img/tosdr-logo.png" alt="Terms of Service; Didn't Read" /></div>
<h2>“<em>I have read and agree to the Terms</em>” is the biggest lie on the web.
We aim to fix that.</h2>
<p>We are a user rights initiative to rate and label website terms & privacy policies, from very good <span class="label A">Class A</span> to very bad <span class="label E">Class E</span></p>
</section>
</div><!--hero-unit-->
<div class="container" id="tosdr-content" role="main">
<div class="row"><div class="span9">
<section id="funding">
<h2 class="page-header">We need your help <small>From September 17 until October 10!</small></h2>
<p><big>
“Terms of Service; Didn't Read” has been running since June. We got a lot of attention, and everybody loved the idea! We have benefited from the help of many individuals who, like you, believe the <em>status quo</em> of the biggest lie on the web should be fixed. Now, <strong>we need <em>your</em> help</strong> to continue the work.
</big></p>
<p><a href="http://igg.me/p/223726?a=1216333" class="btn btn-success btn-large">Please Donate</a></p>
<p>
We need about 10,000 euros to actually get this off the ground. With that we can pay part-time and full-time expert curators, who will double-check all discussion outcomes and make sure the reviews and ratings reliably reflect the consensus in the open discussions.</p>
<p>We have some really cool perks for you if you donate! Ranging from a thank you note on our website, an exclusive "crowd angel" T-shirt, to us visiting you for a discussion conference. But most importantly, you will know that you stood up against those unreadable service terms, and helped to raise awareness about people's rights online!
</p>
</section>
<section id="inthenews"">
<a href="http://moneyland.time.com/2012/08/10/new-site-grades-those-pesky-terms-of-service-agreements-you-never-read/"><img src="img/time.png" alt="Time" /></a>
<a href="http://gigaom.com/2012/08/14/i-agree-why-terms-of-service-report-cards-are-a-good-idea/"><img src="img/gigaom.gif" alt="GigaOM" /></a>
<a href="http://www.theverge.com/2012/8/14/3241572/tos-dr-terms-of-service"><img src="img/verge.png" alt="The Verge" /></a>
<a href="http://www.lemonde.fr/technologies/article/2012/08/14/un-site-veut-mettre-fin-au-mensonge-des-conditions-d-utilisation-sur-internet_1745942_651865.html"><img src="img/lemondefr.png" alt="Le Monde" /></a>
<a href="http://www.zeit.de/digital/internet/2012-08/terms-of-service-did-not-read"><img src="img/zeit.png" alt="Die Zeit" /></a>
</section>
</div>
<div class="span3">
<iframe src="http://www.indiegogo.com/project/223726/widget/1216333" width="224px" height="429px" frameborder="0" scrolling="no"></iframe>
</div>
</div>
<section id="services" style="clear:both">
<h2 class="page-header">Rated Terms of Service <small><a href="#classification">Learn more about the ratings</a></small></h2>
<div id="filter-services" class="well row">
<div id="searchDiv" style="display:none" class="span9">
<form class="form-search">
<div class="input-prepend">
<a href="#services" class="btn">Search</a>
<input class="input-xlarge search-query" id="searchBox" size="16" type="text" placeholder="e.g. facebook, twitter, search…"><span class="help-inline">This a very early prototype, <a href="https://github.com/didnotread/didnotread.org/issues/30">improve the code</a></span>
</div>
</form>
</div>
<div id="filter-by" class="span2">
<ul class="nav nav-pills">
<li class="active"><a href="#services">Services</a></li>
<li><a href="topics.html#topics">Topics</a></li>
</ul>
</div>
</div>
<div id="services-list" class="row"><div data-search="facebook,social network,diaspora,Facebook,facebook.com" id="facebook" class="span6 service-nutshell"><h3><img src="logo/facebook.png" class="favlogo" alt=""><a data-toggle="modal" href="#facebook-tosdr">Facebook</a><div id="facebook-rating" class="service-rating"><a data-toggle="modal" href="#facebook-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-facebook-kizrN7qb1Ck"><span class="badge badge-warning" title="90"><i class="icon-thumbs-down icon-white">-</i></span> Very broad copyright license on your content</li><li id="point-facebook-kizrN7qb1Ck2"><span class="badge badge-warning" title="85"><i class="icon-thumbs-down icon-white">-</i></span> Third-Parties</li><li id="point-facebook-eff-back-tell-user-no"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests</li><li id="point-facebook-s98UR0Jx6Z4"><span class="badge badge-warning" title="-50"><i class="icon-thumbs-down icon-white">-</i></span> Facebook automatically shares your data with many other services</li><li id="point-facebook-eff-back-transparency-data-50"><span class="badge badge-success" title="25"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests</li><li id="point-facebook-VTlWfubfib4"><span class="badge badge-success" title="15"><i class="icon-thumbs-up icon-white">+</i></span> You can give your feedback before changes</li><li id="point-facebook-gOTE95JnvCk"><span class="badge badge-warning" title="10"><i class="icon-thumbs-down icon-white">-</i></span> You must use your real name</li><li id="point-facebook-Rd9OhF6jeBg"><span class="badge badge-success" title="5"><i class="icon-thumbs-up icon-white">+</i></span> Help you securing your account</li><li id="point-facebook-..."><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/facebook%7Csort:relevance">forum</a>)</li></ul><a data-toggle="modal" id="button-facebook-tosdr" href="#facebook-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="http://www.facebook.com/legal/terms" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="google,search,groups,yahoo,Google,google.com" id="google" class="span6 service-nutshell"><h3><img src="logo/google.png" class="favlogo" alt=""><a data-toggle="modal" href="#google-tosdr">Google</a><div id="google-rating" class="service-rating"><a data-toggle="modal" href="#google-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-google-lU-QhFXMOcU2"><span class="badge badge-warning" title="60"><i class="icon-thumbs-down icon-white">-</i></span> Google can use your content for all their existing and future services</li><li id="point-google-eff-back-tell-user-50"><span class="badge badge-success" title="40"><i class="icon-thumbs-up icon-white">+</i></span> Inform about data requests</li><li id="point-google-lU-QhFXMOcU"><span class="badge badge-success" title="40"><i class="icon-thumbs-up icon-white">+</i></span> Limited copyright license to operate and improve all Google Services</li><li id="point-google-HUL_4wIbNGY"><span class="badge badge-success" title="30"><i class="icon-thumbs-up icon-white">+</i></span> Google posts notice of changes, with a 14-day ultimatum.</li><li id="point-google-eff-back-transparency-data-50"><span class="badge badge-success" title="25"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests</li><li id="point-google-85cz6hJxzLg"><span class="badge badge-success" title="15"><i class="icon-thumbs-up icon-white">+</i></span> Help you control and secure your data</li><li id="point-google-damOWTFaho0-1"><span class="badge badge-neutral" title="5"><i class="icon-arrow-right icon-white">→</i></span> Partial archives of their terms are available</li><li id="point-google-...-4"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/google%7Csort:relevance">forum</a>)</li><li id="point-google-JcGg9TPZ7V0"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> Jurisdiction in California</li></ul><a data-toggle="modal" id="button-google-tosdr" href="#google-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="https://www.google.com/intl/en/policies/terms/" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="yahoo,search,groups,google,Yahoo!,yahoo.com" id="yahoo" class="span6 service-nutshell"><h3><img src="logo/yahoo.png" class="favlogo" alt=""><a data-toggle="modal" href="#yahoo-tosdr">Yahoo!</a><div id="yahoo-rating" class="service-rating"><a data-toggle="modal" href="#yahoo-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-yahoo-WEwv5V2M9zw"><span class="badge badge-success" title="80"><i class="icon-thumbs-up icon-white">+</i></span> Yahoo's copyright license for photos, graphics, audio and video limited for purpose</li><li id="point-yahoo-WEwv5V2M9zw2"><span class="badge badge-success" title="80"><i class="icon-thumbs-up icon-white">+</i></span> Yahoo's copyright license for groups limited for purpose</li><li id="point-yahoo-RcOEEGGziUk"><span class="badge badge-warning" title="-60"><i class="icon-thumbs-down icon-white">-</i></span> Changes can happen at any time at their sole discretion without notice</li><li id="point-yahoo-eff-back-tell-user-no"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests</li><li id="point-yahoo-eff-back-transparency-data-no"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests</li><li id="point-yahoo-q782XE2RUss"><span class="badge badge-neutral" title="15"><i class="icon-arrow-right icon-white">→</i></span> Your account can be suspended for several reasons</li><li id="point-yahoo-JNjOO0gHWX0"><span class="badge badge-warning" title="10"><i class="icon-thumbs-down icon-white">-</i></span> You must use your real name</li></ul><a data-toggle="modal" id="button-yahoo-tosdr" href="#yahoo-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="http://www.yahoo.com/r/ts" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="wikipedia,Wikipedia,wikipedia.org" id="wikipedia" class="span6 service-nutshell"><h3><img src="logo/wikipedia.png" class="favlogo" alt=""><a data-toggle="modal" href="#wikipedia-tosdr">Wikipedia</a><div id="wikipedia-rating" class="service-rating"><a data-toggle="modal" href="#wikipedia-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-wikipedia-qui-0ATIaX4"><span class="badge badge-success" title="20"><i class="icon-thumbs-up icon-white">+</i></span> No Cookies</li><li id="point-wikipedia-...-1"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/wikipedia%7Csort:relevance">forum</a>)</li></ul><a data-toggle="modal" id="button-wikipedia-tosdr" href="#wikipedia-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="https://wikimediafoundation.org/wiki/Terms_of_use" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="twitter,identi-ca,seenthis,twitter,twitter.com" id="twitter" class="span6 service-nutshell"><h3><img src="logo/twitter.png" class="favlogo" alt=""><a data-toggle="modal" href="#twitter-tosdr">twitter</a><div id="twitter-rating" class="service-rating"><a data-toggle="modal" href="#twitter-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-twitter-tmXfQIGPTvs2"><span class="badge badge-warning" title="90"><i class="icon-thumbs-down icon-white">-</i></span> Third-parties</li><li id="point-twitter-tmXfQIGPTvs"><span class="badge badge-warning" title="80"><i class="icon-thumbs-down icon-white">-</i></span> Very broad copyright license on your content</li><li id="point-twitter-X6_GxyBSVnE"><span class="badge badge-success" title="80"><i class="icon-thumbs-up icon-white">+</i></span> Twitter deletes tracking data in 10 days and offers an opt-out</li><li id="point-twitter-eff-back-tell-user"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Promise to inform about data requests</li><li id="point-twitter--B4iO-9xHvg"><span class="badge badge-warning" title="35"><i class="icon-thumbs-down icon-white">-</i></span> Critical changes to the terms with little users' involvement</li><li id="point-twitter-eff-back-transparency-data-50"><span class="badge badge-success" title="25"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests</li><li id="point-twitter-aXOIDbzevYE-1"><span class="badge badge-warning" title="10"><i class="icon-thumbs-down icon-white">-</i></span> Third party cookies</li><li id="point-twitter-damOWTFaho0"><span class="badge badge-neutral" title="10"><i class="icon-arrow-right icon-white">→</i></span> Twitter provide archives of their terms</li><li id="point-twitter-OR7vkW34mm4"><span class="badge badge-neutral" title="10"><i class="icon-arrow-right icon-white">→</i></span> Twitter does not require cookies to function</li><li id="point-twitter-e0F4cavaJ4Q"><span class="badge badge-warning" title="5"><i class="icon-thumbs-down icon-white">-</i></span> Twitter deletes your account after 30 days. It keeps the rights on your content. </li></ul><a data-toggle="modal" id="button-twitter-tosdr" href="#twitter-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="https://twitter.com/tos" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="flickr,photos,pictures,twitpic,500px,Flickr,flickr.com,yahoo" id="flickr" class="span6 service-nutshell"><h3><img src="logo/flickr.png" class="favlogo" alt=""><a data-toggle="modal" href="#flickr-tosdr">Flickr</a><div id="flickr-rating" class="service-rating"><a data-toggle="modal" href="#flickr-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-flickr-WEwv5V2M9zw"><span class="badge badge-success" title="80"><i class="icon-thumbs-up icon-white">+</i></span> Yahoo's copyright license for photos, graphics, audio and video limited for purpose</li><li id="point-flickr-Yz8_15F1kfY"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> Pro accounts cannot be canceled</li><li id="point-flickr-K1M7Vj1W1VM"><span class="badge badge-success" title="10"><i class="icon-thumbs-up icon-white">+</i></span> Flickr lets you choose a copyright license</li><li id="point-flickr-sZ6MVIwA-tE"><span class="badge badge-success" title="0"><i class="icon-thumbs-up icon-white">+</i></span> You can chose with whom you share your photo</li><li id="point-flickr-U11qApwNL2M"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> Users are subject to Yahoo!'s terms</li></ul><a data-toggle="modal" id="button-flickr-tosdr" href="#flickr-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="http://www.yahoo.com/r/ts" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="skype,Skype,skype.com" id="skype" class="span6 service-nutshell"><h3><img src="logo/skype.png" class="favlogo" alt=""><a data-toggle="modal" href="#skype-tosdr">Skype</a><div id="skype-rating" class="service-rating"><a data-toggle="modal" href="#skype-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-skype-eff-back-tell-user-no"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests</li><li id="point-skype-eff-back-transparency-data-no"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests</li><li id="point-skype-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-skype-tosdr" href="#skype-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="http://www.skype.com/intl/en-us/legal/" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="soundcloud,,SoundCloud,soundcloud.com/" id="soundcloud" class="span6 service-nutshell"><h3><img src="logo/soundcloud.png" class="favlogo" alt=""><a data-toggle="modal" href="#soundcloud-tosdr">SoundCloud</a><div id="soundcloud-rating" class="service-rating"><a data-toggle="modal" href="#soundcloud-tosdr"><span class="label B">Class B</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-soundcloud-_gI8wQ3PZ2M"><span class="badge badge-success" title="100"><i class="icon-thumbs-up icon-white">+</i></span> You stay in control of your copyright</li><li id="point-soundcloud-3f3dVPCa1GU"><span class="badge badge-success" title="60"><i class="icon-thumbs-up icon-white">+</i></span> Collected personal data used for limited purposes</li><li id="point-soundcloud-n_DCnOwcIo0"><span class="badge badge-warning" title="-40"><i class="icon-thumbs-down icon-white">-</i></span> Indemnification from claims related to your content or your account</li><li id="point-soundcloud--tqWw03UPoc"><span class="badge badge-success" title="30"><i class="icon-thumbs-up icon-white">+</i></span> 6 weeks to review changes</li><li id="point-soundcloud-fmlKouXKUcc"><span class="badge badge-success" title="10"><i class="icon-thumbs-up icon-white">+</i></span> The terms are easy to read</li><li id="point-soundcloud-Fnwu9Z5crGE"><span class="badge badge-success" title="10"><i class="icon-thumbs-up icon-white">+</i></span> Little personal information is required</li><li id="point-soundcloud-gq1LW7l28qI"><span class="badge badge-success" title="10"><i class="icon-thumbs-up icon-white">+</i></span> You can terminate your account</li><li id="point-soundcloud-w8RMtGdRvdM"><span class="badge badge-warning" title="5"><i class="icon-thumbs-down icon-white">-</i></span> Use of cookies and third-party cookies (opt-out)</li><li id="point-soundcloud-3f3dVPCa1GU2"><span class="badge badge-warning" title="0"><i class="icon-thumbs-down icon-white">-</i></span> Personal information can be disclosed in case of business transfer or insolvency</li><li id="point-soundcloud-ps1ZppOOWmM"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> Jurisdiction in Germany</li></ul><a data-toggle="modal" id="button-soundcloud-tosdr" href="#soundcloud-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="http://soundcloud.com/terms-of-use" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="xing,professional,jobs,linkedin,XING,xing.com" id="xing" class="span6 service-nutshell"><h3><img src="logo/xing.png" class="favlogo" alt=""><a data-toggle="modal" href="#xing-tosdr">XING</a><div id="xing-rating" class="service-rating"><a data-toggle="modal" href="#xing-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-xing-_he1077OGTY"><span class="badge badge-warning" title="10"><i class="icon-thumbs-down icon-white">-</i></span> You must use your real name</li></ul><a data-toggle="modal" id="button-xing-tosdr" href="#xing-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="http://www.xing.com/terms" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="github,gitorious,GitHub,github.com" id="github" class="span6 service-nutshell"><h3><img src="logo/github.png" class="favlogo" alt=""><a data-toggle="modal" href="#github-tosdr">GitHub</a><div id="github-rating" class="service-rating"><a data-toggle="modal" href="#github-tosdr"><span class="label B">Class B</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-github-lOG7XeUi-3E"><span class="badge badge-success" title="90"><i class="icon-thumbs-up icon-white">+</i></span> You don't grant any copyright license to github</li><li id="point-github-9epXl7ZDb7c"><span class="badge badge-warning" title="-60"><i class="icon-thumbs-down icon-white">-</i></span> Changes can happen any time, even without notice</li><li id="point-github-EpPNnYXBW_w"><span class="badge badge-warning" title="-60"><i class="icon-thumbs-down icon-white">-</i></span> You shall defend and indemnify GitHub</li><li id="point-github-ymh8uR_j51A"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Your personal information is used for limited purposes</li><li id="point-github-hI5Too_uDVk"><span class="badge badge-warning" title="30"><i class="icon-thumbs-down icon-white">-</i></span> Your account can be suspended and your data deleted any time for any reason</li><li id="point-github-2vIh4l7sTnk"><span class="badge badge-success" title="15"><i class="icon-thumbs-up icon-white">+</i></span> Transparent security practices</li><li id="point-github-2zjqOmS3FC4"><span class="badge badge-warning" title="10"><i class="icon-thumbs-down icon-white">-</i></span> You must provide your legal name</li><li id="point-github-8LDE2ZPXRW4"><span class="badge badge-success" title="5"><i class="icon-thumbs-up icon-white">+</i></span> GitHub will notifiy you before transfering your information in event of merger or acquisition</li><li id="point-github-gyMiAkV5ZG0"><span class="badge badge-neutral" title="5"><i class="icon-arrow-right icon-white">→</i></span> GitHub requires cookies</li><li id="point-github-lXPKuQU0mPI"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> Choice of law: California</li></ul><a data-toggle="modal" id="button-github-tosdr" href="#github-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="https://github.com/site/terms" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="twitpic,identi-ca,twitter,flickr,Twitpic,twitpic.com" id="twitpic" class="span6 service-nutshell"><h3><img src="logo/twitpic.png" class="favlogo" alt=""><a data-toggle="modal" href="#twitpic-tosdr">Twitpic</a><div id="twitpic-rating" class="service-rating"><a data-toggle="modal" href="#twitpic-tosdr"><span class="label E">Class E</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-twitpic-4Zh8gx9IyDc"><span class="badge badge-important" title="100"><i class="icon-remove icon-white">×</i></span> Twitpic takes credit for your content</li><li id="point-twitpic-Rt4zuPdx3qs"><span class="badge badge-warning" title="90"><i class="icon-thumbs-down icon-white">-</i></span> Your content is for Twitpic and their partners</li><li id="point-twitpic-dCfx1aMH1Tw"><span class="badge badge-warning" title="50"><i class="icon-thumbs-down icon-white">-</i></span> Reduction of legal period for cause of action</li><li id="point-twitpic-jF1B4WY0x7k"><span class="badge badge-warning" title="-40"><i class="icon-thumbs-down icon-white">-</i></span> You indemnify Twitpic from any claim related to your content</li><li id="point-twitpic-b6ryqY9NdMw"><span class="badge badge-important" title="30"><i class="icon-remove icon-white">×</i></span> Deleted images are not really deleted</li><li id="point-twitpic-V_RVXG7TKEA"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> Jurisdiction in Delaware</li></ul><a data-toggle="modal" id="button-twitpic-tosdr" href="#twitpic-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="http://twitpic.com/terms.do" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="delicious,Delicious,delicious.com" id="delicious" class="span6 service-nutshell"><h3><img src="logo/delicious.png" class="favlogo" alt=""><a data-toggle="modal" href="#delicious-tosdr">Delicious</a><div id="delicious-rating" class="service-rating"><a data-toggle="modal" href="#delicious-tosdr"><span class="label D">Class D</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-delicious-t-INoE6fH98"><span class="badge badge-warning" title="100"><i class="icon-thumbs-down icon-white">-</i></span> Very broad copyright license on your content, includes right for Delicious to distribute through any media</li><li id="point-delicious-Rn8M-KQOcNU"><span class="badge badge-warning" title="85"><i class="icon-thumbs-down icon-white">-</i></span> Third Parties</li><li id="point-delicious-LbwpukmRtgg"><span class="badge badge-important" title="70"><i class="icon-remove icon-white">×</i></span> No Right to leave the service</li><li id="point-delicious-0oKZG_o_Zu0"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> Only for personal and non-commercial use</li><li id="point-delicious-aXOIDbzevYE"><span class="badge badge-warning" title="10"><i class="icon-thumbs-down icon-white">-</i></span> Non-transparent use of cookies and third party ads</li><li id="point-delicious-lJGsikCSEJ8"><span class="badge badge-warning" title="0"><i class="icon-thumbs-down icon-white">-</i></span> Your personal information are an asset for business transfers</li></ul><a data-toggle="modal" id="button-delicious-tosdr" href="#delicious-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="http://www.delicious.com/terms" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="500px,flickr,500px,500px.com" id="500px" class="span6 service-nutshell"><h3><img src="logo/500px.png" class="favlogo" alt=""><a data-toggle="modal" href="#500px-tosdr">500px</a><div id="500px-rating" class="service-rating"><a data-toggle="modal" href="#500px-tosdr"><span class="label D">Class D</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-500px-uPk0rmk6_1w"><span class="badge badge-warning" title="-60"><i class="icon-thumbs-down icon-white">-</i></span> The terms can change at any time</li><li id="point-500px-3uiIrLyj8Hw"><span class="badge badge-warning" title="50"><i class="icon-thumbs-down icon-white">-</i></span> Waiver of legal actions</li><li id="point-500px-ozS1etNH7ZA"><span class="badge badge-important" title="50"><i class="icon-remove icon-white">×</i></span> 500px Store: Authorship</li><li id="point-500px-wYFqcvOn7XY3"><span class="badge badge-warning" title="-40"><i class="icon-thumbs-down icon-white">-</i></span> You are responsible for any claim and agree to indemnify them</li><li id="point-500px-wYFqcvOn7XY2"><span class="badge badge-important" title="30"><i class="icon-remove icon-white">×</i></span> 500px Store: your account can be terminated at any time</li><li id="point-500px-X99SUnV7RUs"><span class="badge badge-warning" title="30"><i class="icon-thumbs-down icon-white">-</i></span> Broad copyright license</li><li id="point-500px-x2OybdCClW0"><span class="badge badge-success" title="10"><i class="icon-thumbs-up icon-white">+</i></span> Pseudonyms are allowed</li><li id="point-500px-y7polYRKTN0"><span class="badge badge-neutral" title="10"><i class="icon-arrow-right icon-white">→</i></span> Open only to individual photographers and graphic artists</li><li id="point-500px-wYFqcvOn7XY"><span class="badge badge-success" title="5"><i class="icon-thumbs-up icon-white">+</i></span> The terms are easy to read</li></ul><a data-toggle="modal" id="button-500px-tosdr" href="#500px-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="http://500px.com/terms" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="duckduckgo,search,search engine,google,DuckDuckGo,duckduckgo.com" id="duckduckgo" class="span6 service-nutshell"><h3><img src="logo/duckduckgo.png" class="favlogo" alt=""><a data-toggle="modal" href="#duckduckgo-tosdr">DuckDuckGo</a><div id="duckduckgo-rating" class="service-rating"><a data-toggle="modal" href="#duckduckgo-tosdr"><span class="label A">Class A</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-duckduckgo-g4RWiArs104"><span class="badge badge-success" title="100"><i class="icon-thumbs-up icon-white">+</i></span> No Tracking</li></ul><a data-toggle="modal" id="button-duckduckgo-tosdr" href="#duckduckgo-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="app-net,tweet,microblog,twitter,seenthis,identi-ca,App.net,app.net" id="app-net" class="span6 service-nutshell"><h3><img src="logo/app-net.png" class="favlogo" alt=""><a data-toggle="modal" href="#app-net-tosdr">App.net</a><div id="app-net-rating" class="service-rating"><a data-toggle="modal" href="#app-net-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-app-net-6HDli9X01C8"><span class="badge badge-warning" title="-60"><i class="icon-thumbs-down icon-white">-</i></span> You defend, indemnify, and hold app.net harmless in case of a claim related to your use of the service</li><li id="point-app-net-OqIkAS2uwmE-3"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Pseudonyms allowed on app.net</li><li id="point-app-net-OqIkAS2uwmE-7"><span class="badge badge-neutral" title="suspension"><i class="icon-arrow-right icon-white">→</i></span> Account suspension depends on you breaching the terms</li><li id="point-app-net-OqIkAS2uwmE-6"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> You can delete your content</li><li id="point-app-net-OqIkAS2uwmE-5"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> The copyright license you give them is "limited"</li><li id="point-app-net-MCGx3DtQHM8"><span class="badge badge-neutral" title="-30"><i class="icon-arrow-right icon-white">→</i></span> Changes published 5 days ahead, but no notification</li><li id="point-app-net-OqIkAS2uwmE-8"><span class="badge badge-warning" title="-20"><i class="icon-thumbs-down icon-white">-</i></span> You may not scrape the site</li><li id="point-app-net-OqIkAS2uwmE-2"><span class="badge badge-neutral" title="10"><i class="icon-arrow-right icon-white">→</i></span> App.net's terms are simple and easy to follow</li><li id="point-app-net-I7i-2EM0GVY"><span class="badge badge-success" title="10"><i class="icon-thumbs-up icon-white">+</i></span> App.net provide archives of their terms</li><li id="point-app-net-OqIkAS2uwmE-4"><span class="badge badge-neutral" title="-10"><i class="icon-arrow-right icon-white">→</i></span> You are responsible for what you upload</li><li id="point-app-net-OqIkAS2uwmE-1"><span class="badge badge-neutral" title="10"><i class="icon-arrow-right icon-white">→</i></span> App.net request feedback from users</li><li id="point-app-net-OqIkAS2uwmE-11"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> Court of law is California</li><li id="point-app-net-OqIkAS2uwmE-9"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> App.net does not take responsibility for what its users post</li></ul><a data-toggle="modal" id="button-app-net-tosdr" href="#app-net-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="https://alpha.app.net/legal/terms/" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="steam,Steam,store.steampowered.com" id="steam" class="span6 service-nutshell"><h3><img src="logo/steam.png" class="favlogo" alt=""><a data-toggle="modal" href="#steam-tosdr">Steam</a><div id="steam-rating" class="service-rating"><a data-toggle="modal" href="#steam-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-steam-rhykox7XUfs8"><span class="badge badge-warning" title="-80"><i class="icon-thumbs-down icon-white">-</i></span> Defend and indemnify Valve. Survives termination of the agreement.</li><li id="point-steam-rhykox7XUfs12"><span class="badge badge-warning" title="50"><i class="icon-thumbs-down icon-white">-</i></span> Valve can cancel your account at any time.</li><li id="point-steam-rhykox7XUfs6"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Can request review and/or removal of personally identifiable info.</li><li id="point-steam-rhykox7XUfs10"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No refund policy</li><li id="point-steam-rhykox7XUfs9"><span class="badge badge-success" title="30"><i class="icon-thumbs-up icon-white">+</i></span> Notifications 30 days before changes.</li><li id="point-steam-eff-back-transparency-data-no"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests</li><li id="point-steam-rhykox7XUfs11"><span class="badge badge-success" title="20"><i class="icon-thumbs-up icon-white">+</i></span> A user can voluntarily cancel their account at any time.</li><li id="point-steam-rhykox7XUfs16"><span class="badge badge-warning" title="20"><i class="icon-thumbs-down icon-white">-</i></span> Trial and class action waiver</li><li id="point-steam-rhykox7XUfs4"><span class="badge badge-success" title="15"><i class="icon-thumbs-up icon-white">+</i></span> Using your real name is optional</li><li id="point-steam-rhykox7XUfs2"><span class="badge badge-warning" title="10"><i class="icon-thumbs-down icon-white">-</i></span> May share aggregate and individual user information with other parties without restriction</li><li id="point-steam-rhykox7XUfs15"><span class="badge badge-neutral" title="10"><i class="icon-arrow-right icon-white">→</i></span> Jurisdiction: Washington (for non-EU) and Luxembourg.</li></ul><a data-toggle="modal" id="button-steam-tosdr" href="#steam-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="seenthis,twitter,status-net,SeenThis,seenthis.net" id="seenthis" class="span6 service-nutshell"><h3><img src="logo/seenthis.png" class="favlogo" alt=""><a data-toggle="modal" href="#seenthis-tosdr">SeenThis</a><div id="seenthis-rating" class="service-rating"><a data-toggle="modal" href="#seenthis-tosdr"><span class="label A">Class A</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-seenthis-kizrN7qb1Ck4"><span class="badge badge-success" title="100"><i class="icon-thumbs-up icon-white">+</i></span> You are free to choose your copyright license</li><li id="point-seenthis-IPta_G2GTJk"><span class="badge badge-success" title="40"><i class="icon-thumbs-up icon-white">+</i></span> You can get your data back</li><li id="point-seenthis-IPta_G2GTJk2"><span class="badge badge-success" title="5"><i class="icon-thumbs-up icon-white">+</i></span> Right to leave the service</li></ul><a data-toggle="modal" id="button-seenthis-tosdr" href="#seenthis-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a> <a href="http://seenthis.net/fran%C3%A7ais/mentions/article/propri%C3%A9t%C3%A9-intellectuelle" class="btn btn-mini" target="_blank"><i class="icon icon-list-alt"></i> Read the full terms</a></section></div><div data-search="amazon,Amazon,amazon.com" id="amazon" class="span6 service-nutshell"><h3><img src="logo/amazon.png" class="favlogo" alt=""><a data-toggle="modal" href="#amazon-tosdr">Amazon</a><div id="amazon-rating" class="service-rating"><a data-toggle="modal" href="#amazon-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-amazon-eff-back-tell-user-no"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests</li><li id="point-amazon-eff-back-transparency-data-no"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests</li><li id="point-amazon-...-3"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/amazon%7Csort:relevance">forum</a>)</li></ul><a data-toggle="modal" id="button-amazon-tosdr" href="#amazon-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="whatsapp,WhatsApp" id="whatsapp" class="span6 service-nutshell"><h3><img src="logo/whatsapp.png" class="favlogo" alt=""><a data-toggle="modal" href="#whatsapp-tosdr">WhatsApp</a><div id="whatsapp-rating" class="service-rating"><a data-toggle="modal" href="#whatsapp-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-whatsapp-...-5"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/whatsapp%7Csort:relevance">forum</a>)</li></ul><a data-toggle="modal" id="button-whatsapp-tosdr" href="#whatsapp-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="flattr,paypal,Flattr,flattr.com" id="flattr" class="span6 service-nutshell"><h3><img src="logo/flattr.png" class="favlogo" alt=""><a data-toggle="modal" href="#flattr-tosdr">Flattr</a><div id="flattr-rating" class="service-rating"><a data-toggle="modal" href="#flattr-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-flattr-_ZNQ9J07ntI"><span class="badge badge-neutral" title="15"><i class="icon-arrow-right icon-white">→</i></span> Age limit of 18</li></ul><a data-toggle="modal" id="button-flattr-tosdr" href="#flattr-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="nabble,Nabble" id="nabble" class="span6 service-nutshell"><h3><img src="logo/nabble.png" class="favlogo" alt=""><a data-toggle="modal" href="#nabble-tosdr">Nabble</a><div id="nabble-rating" class="service-rating"><a data-toggle="modal" href="#nabble-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-nabble-CDh_bV7eWSs"><span class="badge badge-warning" title="-25"><i class="icon-thumbs-down icon-white">-</i></span> The terms may be changed without notice</li></ul><a data-toggle="modal" id="button-nabble-tosdr" href="#nabble-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="apple,Apple,apple.com" id="apple" class="span6 service-nutshell"><h3><img src="logo/apple.png" class="favlogo" alt=""><a data-toggle="modal" href="#apple-tosdr">Apple</a><div id="apple-rating" class="service-rating"><a data-toggle="modal" href="#apple-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-apple-eff-back-tell-user-no"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests</li><li id="point-apple-eff-back-transparency-data-no"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests</li></ul><a data-toggle="modal" id="button-apple-tosdr" href="#apple-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="at-t,AT&T,att.com" id="at-t" class="span6 service-nutshell"><h3><img src="logo/at-t.png" class="favlogo" alt=""><a data-toggle="modal" href="#at-t-tosdr">AT&T</a><div id="at-t-rating" class="service-rating"><a data-toggle="modal" href="#at-t-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-at-t-eff-back-tell-user-no"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests</li><li id="point-at-t-eff-back-transparency-data-no"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests</li></ul><a data-toggle="modal" id="button-at-t-tosdr" href="#at-t-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="comcast,Comcast,comcast.com" id="comcast" class="span6 service-nutshell"><h3><img src="logo/comcast.png" class="favlogo" alt=""><a data-toggle="modal" href="#comcast-tosdr">Comcast</a><div id="comcast-rating" class="service-rating"><a data-toggle="modal" href="#comcast-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-comcast-eff-back-tell-user-no"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests</li><li id="point-comcast-eff-back-transparency-data-no"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests</li></ul><a data-toggle="modal" id="button-comcast-tosdr" href="#comcast-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="foursquare,Foursquare,foursquare.com" id="foursquare" class="span6 service-nutshell"><h3><img src="logo/foursquare.png" class="favlogo" alt=""><a data-toggle="modal" href="#foursquare-tosdr">Foursquare</a><div id="foursquare-rating" class="service-rating"><a data-toggle="modal" href="#foursquare-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-foursquare-eff-back-tell-user-no"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests</li><li id="point-foursquare-eff-back-transparency-data-no"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests</li></ul><a data-toggle="modal" id="button-foursquare-tosdr" href="#foursquare-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="loopt,Loopt,loopt.com" id="loopt" class="span6 service-nutshell"><h3><img src="logo/loopt.png" class="favlogo" alt=""><a data-toggle="modal" href="#loopt-tosdr">Loopt</a><div id="loopt-rating" class="service-rating"><a data-toggle="modal" href="#loopt-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-loopt-eff-back-tell-user-no"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests</li><li id="point-loopt-eff-back-transparency-data-no"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests</li></ul><a data-toggle="modal" id="button-loopt-tosdr" href="#loopt-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="microsoft,Microsoft,microsoft.com" id="microsoft" class="span6 service-nutshell"><h3><img src="logo/microsoft.png" class="favlogo" alt=""><a data-toggle="modal" href="#microsoft-tosdr">Microsoft</a><div id="microsoft-rating" class="service-rating"><a data-toggle="modal" href="#microsoft-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-microsoft-eff-back-tell-user-no"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests</li><li id="point-microsoft-eff-back-transparency-data-no"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests</li></ul><a data-toggle="modal" id="button-microsoft-tosdr" href="#microsoft-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="myspace,myspace,myspace.com" id="myspace" class="span6 service-nutshell"><h3><img src="logo/myspace.png" class="favlogo" alt=""><a data-toggle="modal" href="#myspace-tosdr">myspace</a><div id="myspace-rating" class="service-rating"><a data-toggle="modal" href="#myspace-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-myspace-eff-back-tell-user-no"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests</li><li id="point-myspace-eff-back-transparency-data-no"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests</li></ul><a data-toggle="modal" id="button-myspace-tosdr" href="#myspace-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="couchsurfing,couchsurfing" id="couchsurfing" class="span6 service-nutshell"><h3><img src="logo/couchsurfing.png" class="favlogo" alt=""><a data-toggle="modal" href="#couchsurfing-tosdr">couchsurfing</a><div id="couchsurfing-rating" class="service-rating"><a data-toggle="modal" href="#couchsurfing-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-couchsurfing-dQV8notmhfI"><span class="badge badge-warning" title="-80"><i class="icon-thumbs-down icon-white">-</i></span> The copyright license on user data is broader than necessary</li><li id="point-couchsurfing-9rIMjf6FifM"><span class="badge badge-warning" title="-30"><i class="icon-thumbs-down icon-white">-</i></span> Couchsurfing may change their privacy policy without prior notice</li><li id="point-couchsurfing-1wWcVuiCJ2Y"><span class="badge badge-warning" title="-25"><i class="icon-thumbs-down icon-white">-</i></span> Couchsurfing keeps the license on your content, even after you close your account</li><li id="point-couchsurfing-oZ1VvxnWoeM"><span class="badge badge-warning" title="-25"><i class="icon-thumbs-down icon-white">-</i></span> Couchsurfing may retain your data after deactivation for legitimate business purposes</li><li id="point-couchsurfing-bYGefBK3R_I"><span class="badge badge-success" title="20"><i class="icon-thumbs-up icon-white">+</i></span> Couchsurfing informs you about the fact that you can disable cookies</li><li id="point-couchsurfing-ShwCMjNBd2o"><span class="badge badge-warning" title="-20"><i class="icon-thumbs-down icon-white">-</i></span> Couchsurfing becomes the owner of ideas you give them</li><li id="point-couchsurfing-e8kGDv4CIrQ"><span class="badge badge-neutral" title="-10"><i class="icon-arrow-right icon-white">→</i></span> Promotional communications are opt-out</li><li id="point-couchsurfing-izRoNcoGOww"><span class="badge badge-neutral" title="-10"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing clearly invite you to contact their volunteer help desk</li><li id="point-couchsurfing-wOhc-Lscy_0"><span class="badge badge-neutral" title="-10"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing may share aggregated or anonymized information that does not directly identify you.</li><li id="point-couchsurfing-J3kmwLbA0rE"><span class="badge badge-neutral" title="-10"><i class="icon-arrow-right icon-white">→</i></span> You are not allowed to use a nick name</li><li id="point-couchsurfing-UMyT4RKXjv0"><span class="badge badge-neutral" title="-10"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing track you</li><li id="point-couchsurfing-x9BDfg-SFqY"><span class="badge badge-neutral" title="10"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing will pass your data on to the new company if they enter in a merger</li><li id="point-couchsurfing-rfLB9eDVNtk"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing will censor the content you upload at their sole discretion</li><li id="point-couchsurfing-5StVgew5VbE"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing cannot blame them for disputes you have with other users</li><li id="point-couchsurfing-BmzBPGyHGW0"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing may close your account at their sole discretion</li><li id="point-couchsurfing-YkJpj170Qts"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> You should follow the community guidelines</li></ul><a data-toggle="modal" id="button-couchsurfing-tosdr" href="#couchsurfing-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="verizon,Verizon,verizon.com" id="verizon" class="span6 service-nutshell"><h3><img src="logo/verizon.png" class="favlogo" alt=""><a data-toggle="modal" href="#verizon-tosdr">Verizon</a><div id="verizon-rating" class="service-rating"><a data-toggle="modal" href="#verizon-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-verizon-eff-back-tell-user-no"><span class="badge badge-neutral" title="50"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests</li><li id="point-verizon-eff-back-transparency-data-no"><span class="badge badge-warning" title="25"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests</li></ul><a data-toggle="modal" id="button-verizon-tosdr" href="#verizon-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="rapidshare,Rapidshare" id="rapidshare" class="span6 service-nutshell"><h3><img src="logo/rapidshare.png" class="favlogo" alt=""><a data-toggle="modal" href="#rapidshare-tosdr">Rapidshare</a><div id="rapidshare-rating" class="service-rating"><a data-toggle="modal" href="#rapidshare-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-rapidshare-CYxkhPROM0U"><span class="badge badge-success" title="60"><i class="icon-thumbs-up icon-white">+</i></span> Rapidshare uses personal information for limited purposes</li><li id="point-rapidshare-hlI-572bFho"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Rapidshare won't share information to a requesting authority without a legal basis</li><li id="point-rapidshare-DWrWnxYqe48"><span class="badge badge-success" title="40"><i class="icon-thumbs-up icon-white">+</i></span> Rapidshare does not index or open the files</li><li id="point-rapidshare--BdGb47IMyM"><span class="badge badge-success" title="25"><i class="icon-thumbs-up icon-white">+</i></span> Rapidshare allows four weeks to terminate contract when changing ToU</li><li id="point-rapidshare-V7iUG2qrakE"><span class="badge badge-warning" title="-20"><i class="icon-thumbs-down icon-white">-</i></span> Rapidshare does not guarantee content damage</li><li id="point-rapidshare-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li><li id="point-rapidshare-QBD8LX5JwdE"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> Rapidshare will delete files after 30 days of not been accessed</li><li id="point-rapidshare-Ytlp8YaeBr4"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> Rapidshare guarantees 99.5% availability</li></ul><a data-toggle="modal" id="button-rapidshare-tosdr" href="#rapidshare-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="linkedin,professional,jobs,xing,LinkedIn,linkedin.com/" id="linkedin" class="span6 service-nutshell"><h3><img src="logo/linkedin.png" class="favlogo" alt=""><a data-toggle="modal" href="#linkedin-tosdr">LinkedIn</a><div id="linkedin-rating" class="service-rating"><a data-toggle="modal" href="#linkedin-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-linkedin-eff-back-tell-user"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Promise to inform about data requests</li><li id="point-linkedin-eff-back-transparency-data"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests</li></ul><a data-toggle="modal" id="button-linkedin-tosdr" href="#linkedin-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="sonic-net,Sonic.net,sonic.net" id="sonic-net" class="span6 service-nutshell"><h3><img src="logo/sonic-net.png" class="favlogo" alt=""><a data-toggle="modal" href="#sonic-net-tosdr">Sonic.net</a><div id="sonic-net-rating" class="service-rating"><a data-toggle="modal" href="#sonic-net-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-sonic-net-nuaSVr9YlaA"><span class="badge badge-success" title="80"><i class="icon-thumbs-up icon-white">+</i></span> Delete user logs after 2 weeks</li><li id="point-sonic-net-eff-back-tell-user"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Promise to inform about data requests</li><li id="point-sonic-net-eff-back-transparency-data"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests</li></ul><a data-toggle="modal" id="button-sonic-net-tosdr" href="#sonic-net-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="dropbox,spideroak,Dropbox,dropbox.com" id="dropbox" class="span6 service-nutshell"><h3><img src="logo/dropbox.png" class="favlogo" alt=""><a data-toggle="modal" href="#dropbox-tosdr">Dropbox</a><div id="dropbox-rating" class="service-rating"><a data-toggle="modal" href="#dropbox-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-dropbox-eff-back-tell-user"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Promise to inform about data requests</li><li id="point-dropbox-eff-back-transparency-data"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests</li><li id="point-dropbox-...-2"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/dropbox%7Csort:relevance">forum</a>)</li></ul><a data-toggle="modal" id="button-dropbox-tosdr" href="#dropbox-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="ifttt,IFTTT" id="ifttt" class="span6 service-nutshell"><h3><img src="logo/ifttt.png" class="favlogo" alt=""><a data-toggle="modal" href="#ifttt-tosdr">IFTTT</a><div id="ifttt-rating" class="service-rating"><a data-toggle="modal" href="#ifttt-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-ifttt-...-6"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/ifttt%7Csort:relevance">forum</a>)</li></ul><a data-toggle="modal" id="button-ifttt-tosdr" href="#ifttt-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="freeforums,Freeforums" id="freeforums" class="span6 service-nutshell"><h3><img src="logo/freeforums.png" class="favlogo" alt=""><a data-toggle="modal" href="#freeforums-tosdr">Freeforums</a><div id="freeforums-rating" class="service-rating"><a data-toggle="modal" href="#freeforums-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-freeforums-gVTL529k5as"><span class="badge badge-warning" title="-25"><i class="icon-thumbs-down icon-white">-</i></span> Freeforums reserves the right to change the terms with immediate effect</li></ul><a data-toggle="modal" id="button-freeforums-tosdr" href="#freeforums-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="informe,Informe" id="informe" class="span6 service-nutshell"><h3><img src="logo/informe.png" class="favlogo" alt=""><a data-toggle="modal" href="#informe-tosdr">Informe</a><div id="informe-rating" class="service-rating"><a data-toggle="modal" href="#informe-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-informe-hiZY0tNP6kQ"><span class="badge badge-warning" title="-25"><i class="icon-thumbs-down icon-white">-</i></span> Informe reserves the right to change the terms at any time</li></ul><a data-toggle="modal" id="button-informe-tosdr" href="#informe-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="reddit,reddit" id="reddit" class="span6 service-nutshell"><h3><img src="logo/reddit.png" class="favlogo" alt=""><a data-toggle="modal" href="#reddit-tosdr">reddit</a><div id="reddit-rating" class="service-rating"><a data-toggle="modal" href="#reddit-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-reddit-...-7"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/reddit%7Csort:relevance">forum</a>)</li></ul><a data-toggle="modal" id="button-reddit-tosdr" href="#reddit-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="spideroak,dropbox,Spideroak,spideroak.com" id="spideroak" class="span6 service-nutshell"><h3><img src="logo/spideroak.png" class="favlogo" alt=""><a data-toggle="modal" href="#spideroak-tosdr">Spideroak</a><div id="spideroak-rating" class="service-rating"><a data-toggle="modal" href="#spideroak-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-spideroak-eff-back-tell-user"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Promise to inform about data requests</li><li id="point-spideroak-eff-back-transparency-data-50"><span class="badge badge-success" title="25"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests</li><li id="point-spideroak-...-8"><span class="badge badge-neutral" title="0"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/spideroak%7Csort:relevance">forum</a>)</li></ul><a data-toggle="modal" id="button-spideroak-tosdr" href="#spideroak-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="identi-ca,identi.ca,identi.ca,status-net" id="identi-ca" class="span6 service-nutshell"><h3><img src="logo/identi-ca.png" class="favlogo" alt=""><a data-toggle="modal" href="#identi-ca-tosdr">identi.ca</a><div id="identi-ca-rating" class="service-rating"><a data-toggle="modal" href="#identi-ca-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-identi-ca-kizrN7qb1Ck3"><span class="badge badge-success" title="90"><i class="icon-thumbs-up icon-white">+</i></span> Content published under a free license</li></ul><a data-toggle="modal" id="button-identi-ca-tosdr" href="#identi-ca-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="wordpress-com,Wordpress.com,wordpress.com" id="wordpress-com" class="span6 service-nutshell"><h3><img src="logo/wordpress-com.png" class="favlogo" alt=""><a data-toggle="modal" href="#wordpress-com-tosdr">Wordpress.com</a><div id="wordpress-com-rating" class="service-rating"><a data-toggle="modal" href="#wordpress-com-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-wordpress-com-kizrN7qb1Ck5"><span class="badge badge-success" title="80"><i class="icon-thumbs-up icon-white">+</i></span> Limited copyright license to Wordpress.com including for promotion</li><li id="point-wordpress-com-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-wordpress-com-tosdr" href="#wordpress-com-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="netflix,netflix" id="netflix" class="span6 service-nutshell"><h3><img src="logo/netflix.png" class="favlogo" alt=""><a data-toggle="modal" href="#netflix-tosdr">netflix</a><div id="netflix-rating" class="service-rating"><a data-toggle="modal" href="#netflix-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-netflix-L5pl0Vn9lKY-11"><span class="badge badge-warning" title="-50"><i class="icon-thumbs-down icon-white">-</i></span> Lawsuit and class action waiver. Arbitration agreement. Survives termination of ToU agreement.</li><li id="point-netflix-L5pl0Vn9lKY-3"><span class="badge badge-warning" title="-50"><i class="icon-thumbs-down icon-white">-</i></span> Netflix reserve the right to disclose personal info, no notification.</li><li id="point-netflix-L5pl0Vn9lKY-4"><span class="badge badge-success" title="50"><i class="icon-thumbs-up icon-white">+</i></span> Users can request access and deletion of personal info.</li><li id="point-netflix-L5pl0Vn9lKY-10"><span class="badge badge-warning" title="-50"><i class="icon-thumbs-down icon-white">-</i></span> Netflix can terminate your account for any reason without notice.</li><li id="point-netflix-L5pl0Vn9lKY-6"><span class="badge badge-warning" title="-50"><i class="icon-thumbs-down icon-white">-</i></span> Netflix uses 3rd party advertisers that use tracking cookies to target ads.</li><li id="point-netflix-L5pl0Vn9lKY-8"><span class="badge badge-warning" title="-50"><i class="icon-thumbs-down icon-white">-</i></span> No notifications are given about policy changes. Agreeing to the privacy policy and terms also means you agree to any changes in the future.</li><li id="point-netflix-L5pl0Vn9lKY-7"><span class="badge badge-warning" title="-30"><i class="icon-thumbs-down icon-white">-</i></span> No liability is accepted for improper access to your personal information.</li><li id="point-netflix-L5pl0Vn9lKY-9"><span class="badge badge-success" title="30"><i class="icon-thumbs-up icon-white">+</i></span> You can cancel at any time.</li><li id="point-netflix-L5pl0Vn9lKY-5"><span class="badge badge-neutral" title="-10"><i class="icon-arrow-right icon-white">→</i></span> Cookies are required.</li><li id="point-netflix-L5pl0Vn9lKY-2"><span class="badge badge-neutral" title="-10"><i class="icon-arrow-right icon-white">→</i></span> Personal info is used for advertising.</li><li id="point-netflix-L5pl0Vn9lKY-1"><span class="badge badge-neutral" title="-10"><i class="icon-arrow-right icon-white">→</i></span> Non-personal info can be disclosed in any way.</li><li id="point-netflix-L5pl0Vn9lKY"><span class="badge badge-neutral" title="10"><i class="icon-arrow-right icon-white">→</i></span> Terms and privacy policy pages are organized and formatted well.</li></ul><a data-toggle="modal" id="button-netflix-tosdr" href="#netflix-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="owncube,OwnCube,owncube.com" id="owncube" class="span6 service-nutshell"><h3><img src="logo/owncube.png" class="favlogo" alt=""><a data-toggle="modal" href="#owncube-tosdr">OwnCube</a><div id="owncube-rating" class="service-rating"><a data-toggle="modal" href="#owncube-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-owncube-Ntp1e20YTGs"><span class="badge badge-warning" title="-60"><i class="icon-thumbs-down icon-white">-</i></span> may change at any time without notice</li><li id="point-owncube-naPvRf-l3VM"><span class="badge badge-warning" title="-25"><i class="icon-thumbs-down icon-white">-</i></span> they can remove your account after complaints</li><li id="point-owncube-QzpPtRmNxks"><span class="badge badge-success" title="25"><i class="icon-thumbs-up icon-white">+</i></span> user data is not sold</li></ul><a data-toggle="modal" id="button-owncube-tosdr" href="#owncube-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="zoosk,Zoosk" id="zoosk" class="span6 service-nutshell"><h3><img src="logo/zoosk.png" class="favlogo" alt=""><a data-toggle="modal" href="#zoosk-tosdr">Zoosk</a><div id="zoosk-rating" class="service-rating"><a data-toggle="modal" href="#zoosk-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-zoosk-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-zoosk-tosdr" href="#zoosk-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="ebuddy,eBuddy" id="ebuddy" class="span6 service-nutshell"><h3><img src="logo/ebuddy.png" class="favlogo" alt=""><a data-toggle="modal" href="#ebuddy-tosdr">eBuddy</a><div id="ebuddy-rating" class="service-rating"><a data-toggle="modal" href="#ebuddy-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-ebuddy-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-ebuddy-tosdr" href="#ebuddy-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="habbo,Habbo" id="habbo" class="span6 service-nutshell"><h3><img src="logo/habbo.png" class="favlogo" alt=""><a data-toggle="modal" href="#habbo-tosdr">Habbo</a><div id="habbo-rating" class="service-rating"><a data-toggle="modal" href="#habbo-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-habbo-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-habbo-tosdr" href="#habbo-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="evernote,Evernote" id="evernote" class="span6 service-nutshell"><h3><img src="logo/evernote.png" class="favlogo" alt=""><a data-toggle="modal" href="#evernote-tosdr">Evernote</a><div id="evernote-rating" class="service-rating"><a data-toggle="modal" href="#evernote-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-evernote-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-evernote-tosdr" href="#evernote-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="minecraft,Minecraft" id="minecraft" class="span6 service-nutshell"><h3><img src="logo/minecraft.png" class="favlogo" alt=""><a data-toggle="modal" href="#minecraft-tosdr">Minecraft</a><div id="minecraft-rating" class="service-rating"><a data-toggle="modal" href="#minecraft-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-minecraft-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-minecraft-tosdr" href="#minecraft-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="vbulletin,vBulletin" id="vbulletin" class="span6 service-nutshell"><h3><img src="logo/vbulletin.png" class="favlogo" alt=""><a data-toggle="modal" href="#vbulletin-tosdr">vBulletin</a><div id="vbulletin-rating" class="service-rating"><a data-toggle="modal" href="#vbulletin-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-vbulletin-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-vbulletin-tosdr" href="#vbulletin-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="runescape,RuneScape" id="runescape" class="span6 service-nutshell"><h3><img src="logo/runescape.png" class="favlogo" alt=""><a data-toggle="modal" href="#runescape-tosdr">RuneScape</a><div id="runescape-rating" class="service-rating"><a data-toggle="modal" href="#runescape-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-runescape-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-runescape-tosdr" href="#runescape-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="bearshare,BearShare" id="bearshare" class="span6 service-nutshell"><h3><img src="logo/bearshare.png" class="favlogo" alt=""><a data-toggle="modal" href="#bearshare-tosdr">BearShare</a><div id="bearshare-rating" class="service-rating"><a data-toggle="modal" href="#bearshare-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-bearshare-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-bearshare-tosdr" href="#bearshare-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="wordfeud,Wordfeud" id="wordfeud" class="span6 service-nutshell"><h3><img src="logo/wordfeud.png" class="favlogo" alt=""><a data-toggle="modal" href="#wordfeud-tosdr">Wordfeud</a><div id="wordfeud-rating" class="service-rating"><a data-toggle="modal" href="#wordfeud-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-wordfeud-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-wordfeud-tosdr" href="#wordfeud-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="olx,OLX" id="olx" class="span6 service-nutshell"><h3><img src="logo/olx.png" class="favlogo" alt=""><a data-toggle="modal" href="#olx-tosdr">OLX</a><div id="olx-rating" class="service-rating"><a data-toggle="modal" href="#olx-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-olx-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-olx-tosdr" href="#olx-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="phpbb,phpBB" id="phpbb" class="span6 service-nutshell"><h3><img src="logo/phpbb.png" class="favlogo" alt=""><a data-toggle="modal" href="#phpbb-tosdr">phpBB</a><div id="phpbb-rating" class="service-rating"><a data-toggle="modal" href="#phpbb-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-phpbb-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-phpbb-tosdr" href="#phpbb-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="xfire,Xfire" id="xfire" class="span6 service-nutshell"><h3><img src="logo/xfire.png" class="favlogo" alt=""><a data-toggle="modal" href="#xfire-tosdr">Xfire</a><div id="xfire-rating" class="service-rating"><a data-toggle="modal" href="#xfire-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-xfire-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-xfire-tosdr" href="#xfire-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="world-of-warcraft,World of Warcraft" id="world-of-warcraft" class="span6 service-nutshell"><h3><img src="logo/world-of-warcraft.png" class="favlogo" alt=""><a data-toggle="modal" href="#world-of-warcraft-tosdr">World of Warcraft</a><div id="world-of-warcraft-rating" class="service-rating"><a data-toggle="modal" href="#world-of-warcraft-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-world-of-warcraft-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-world-of-warcraft-tosdr" href="#world-of-warcraft-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="bit-ly,bitly" id="bit-ly" class="span6 service-nutshell"><h3><img src="logo/bit-ly.png" class="favlogo" alt=""><a data-toggle="modal" href="#bit-ly-tosdr">bitly</a><div id="bit-ly-rating" class="service-rating"><a data-toggle="modal" href="#bit-ly-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-bit-ly-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-bit-ly-tosdr" href="#bit-ly-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="hypster,Hypster" id="hypster" class="span6 service-nutshell"><h3><img src="logo/hypster.png" class="favlogo" alt=""><a data-toggle="modal" href="#hypster-tosdr">Hypster</a><div id="hypster-rating" class="service-rating"><a data-toggle="modal" href="#hypster-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-hypster-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-hypster-tosdr" href="#hypster-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="videobb,videoBB" id="videobb" class="span6 service-nutshell"><h3><img src="logo/videobb.png" class="favlogo" alt=""><a data-toggle="modal" href="#videobb-tosdr">videoBB</a><div id="videobb-rating" class="service-rating"><a data-toggle="modal" href="#videobb-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-videobb-T98obrJsjJA-2"><span class="badge badge-important" title="15"><i class="icon-remove icon-white">×</i></span> You cannot delete your account</li></ul><a data-toggle="modal" id="button-videobb-tosdr" href="#videobb-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div data-search="gravatar,Gravatar,gravatar.com" id="gravatar" class="span6 service-nutshell"><h3><img src="logo/gravatar.png" class="favlogo" alt=""><a data-toggle="modal" href="#gravatar-tosdr">Gravatar</a><div id="gravatar-rating" class="service-rating"><a data-toggle="modal" href="#gravatar-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-gravatar-T98obrJsjJA"><span class="badge badge-important" title="25"><i class="icon-remove icon-white">×</i></span> No Right to leave the service</li></ul><a data-toggle="modal" id="button-gravatar-tosdr" href="#gravatar-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div><div class="row-fluid"><div data-search="instagram,Instagram,instagram.com" id="instagram" class="span6 service-nutshell"><h3><img src="logo/instagram.png" class="favlogo" alt=""><a data-toggle="modal" href="#instagram-tosdr">Instagram</a><div id="instagram-rating" class="service-rating"><a data-toggle="modal" href="#instagram-tosdr"><span class="label false">No Class Yet</span></a></div></h3><section class="specificissues"><ul class="tosdr-points"><li id="point-instagram-wy9QcF5zQII"><span class="badge badge-success" title="40"><i class="icon-thumbs-up icon-white">+</i></span> Limited license, but includes right for Instagram to distribute through any media</li></ul><a data-toggle="modal" id="button-instagram-tosdr" href="#instagram-tosdr" class="btn"><i class="icon icon-th-list"></i> Expand</a></section></div></div></div> <div id="popups"><div id="facebook-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/facebook.png" alt="" class="pull-left favlogo" height="36" ><h3>Facebook <small class="service-url"><i class="icon icon-globe"></i> <a href="http://facebook.com" target="_blank">facebook.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-facebook-kizrN7qb1Ck" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Very broad copyright license on your content <a href="https://groups.google.com/forum/?fromgroups#!topic/tosdr/kizrN7qb1Ck" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The copyright licence that you grant to Facebook goes <strong>beyond the requirements</strong> for operating the service. For instance, it includes the right for Facebook to transfer the license or to license it others on their terms (“sublicense”). Also, the copyright license <strong>does not end when you stop using the service</strong> unless your content has been deleted by everyone else.</p></div></li>
<li id="popup-point-facebook-kizrN7qb1Ck2" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Third-Parties <a href="https://groups.google.com/forum/?fromgroups#!topic/tosdr/kizrN7qb1Ck" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The scope of the copyright license granted to Facebook includes the rights to transfer and sublicense. This means your content can be licensed by Facebook to third-parties.</p></div></li>
<li id="popup-point-facebook-eff-back-tell-user-no" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service has made no statement nor promised users to tell them about data sought by governments, thus not giving you a chance to defend yourself against government requests.</p></div></li>
<li id="popup-point-facebook-s98UR0Jx6Z4" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Facebook automatically shares your data with many other services <a href="https://groups.google.com/d/topic/tosdr/s98UR0Jx6Z4/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>Facebook automatically shares your information with Bing, Pandora,
TripAdvisor, Yelp, Rotten Tomatoes, Clicker, Scribd, and Docs, unless
you manually opt-out.</p></div></li>
<li id="popup-point-facebook-eff-back-transparency-data-50" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
<li id="popup-point-facebook-VTlWfubfib4" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> You can give your feedback before changes <a href="https://groups.google.com/forum/?fromgroups#!topic/tosdr/VTlWfubfib4" target="_blank" class="label context">Discussion</a> <!--a href="http://www.facebook.com/legal/terms" class="label context" target="_blank">Terms</a--></h5><p>Facebook has a recent practice to solicit your feedback during the 3 or 7 days minimum preceding changes to their terms. However, the results are <strong>not binding</strong> unless 30% of the active users voted. </p></div></li>
<li id="popup-point-facebook-gOTE95JnvCk" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> You must use your real name <a href="https://groups.google.com/d/topic/tosdr/gOTE95JnvCk/discussion" target="_blank" class="label context">Discussion</a> <!--a href="https://www.facebook.com/full_data_use_policy#inforeceived" class="label context" target="_blank">Terms</a--></h5><p>You must use your real name. Using a pseudonym is not allowed. </p></div></li>
<li id="popup-point-facebook-Rd9OhF6jeBg" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Help you securing your account <a href="https://groups.google.com/d/topic/tosdr/Rd9OhF6jeBg/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Facebook provides “security tips” to help you be more secure online.</p></div></li>
<li id="popup-point-facebook-..." class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/facebook%7Csort:relevance">forum</a>) <a href="https://groups.google.com/d/topic/tosdr/.../discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>we are still processing some data points from the <a href="https://groups.google.com/forum/#!searchin/tosdr/facebook%7Csort:relevance">forum</a></p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="http://www.facebook.com/full_data_use_policy">Data Use Policy</a></li>
<li><a href="http://www.facebook.com/legal/terms">Terms of Service</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#facebook" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Facebook</a></div>
</div><div id="google-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/google.png" alt="" class="pull-left favlogo" height="36" ><h3>Google <small class="service-url"><i class="icon icon-globe"></i> <a href="http://google.com" target="_blank">google.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-google-lU-QhFXMOcU2" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Google can use your content for all their existing and future services <a href="https://groups.google.com/d/topic/tosdr/lU-QhFXMOcU/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://groups.google.com/intl/en/policies/terms/" class="label context" target="_blank">Terms</a--></h5><p>The content you post on a particular Google service can be used by Google on other services you may not be aware of.</p></div></li>
<li id="popup-point-google-eff-back-tell-user-50" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Inform about data requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>An official statement to inform users when their data is sought by the government, unless prohibited by law. This gives you a chance to defend yourself against overreaching government demands for their data. (cc-by eff)</p></div></li>
<li id="popup-point-google-lU-QhFXMOcU" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Limited copyright license to operate and improve all Google Services <a href="https://groups.google.com/d/topic/tosdr/lU-QhFXMOcU/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://groups.google.com/intl/en/policies/terms/" class="label context" target="_blank">Terms</a--></h5><p>The copyright license you grant is “for the limited purpose of operating, promoting, and improving” existing and new Google Services.</p></div></li>
<li id="popup-point-google-HUL_4wIbNGY" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Google posts notice of changes, with a 14-day ultimatum. <a href="https://groups.google.com/forum/#!topic/tosdr/HUL_4wIbNGY" target="_blank" class="label context">Discussion</a> <!--a href="http://groups.google.com/intl/en/policies/terms/" class="label context" target="_blank">Terms</a--></h5><p>Google “will post notice of modifications to these terms on this page. [They] will post notice of modified additional terms in the applicable Service. Changes will not apply retroactively and will become effective no sooner than fourteen days after they are posted.”</p></div></li>
<li id="popup-point-google-eff-back-transparency-data-50" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
<li id="popup-point-google-85cz6hJxzLg" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Help you control and secure your data <a href="https://groups.google.com/d/topic/tosdr/85cz6hJxzLg/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Google provides you information and tips to help you manage your use of their services and educate you about basic web technologies to enable you to control your data more effectively and securely.</p></div></li>
<li id="popup-point-google-damOWTFaho0-1" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Partial archives of their terms are available <a href="https://groups.google.com/d/topic/tosdr/damOWTFaho0/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>At http://www.google.com/intl/en/policies/terms/archive/ you can see at least one previous versions of Google's terms</p></div></li>
<li id="popup-point-google-...-4" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/google%7Csort:relevance">forum</a>) <a href="https://groups.google.com/d/topic/tosdr/.../discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>we are still processing some data points from the <a href="https://groups.google.com/forum/#!searchin/tosdr/google%7Csort:relevance">forum</a></p></div></li>
<li id="popup-point-google-JcGg9TPZ7V0" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Jurisdiction in California <a href="https://groups.google.com/d/topic/tosdr/JcGg9TPZ7V0/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://groups.google.com/intl/en/policies/terms/" class="label context" target="_blank">Terms</a--></h5><p>“The laws of California, U.S.A., excluding California’s conflict of laws rules, will apply to any disputes arising out of or relating to these terms or the Services.All claims arising out of or relating to these terms or the Services will be litigated exclusively in the federal or state courts of Santa Clara County, California, USA, and you and Google consent to personal jurisdiction in those courts.”</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="https://www.google.com/intl/en/policies/terms/">Terms of Service</a></li>
<li><a href="https://www.google.com/intl/en/policies/privacy/">Privacy Policy</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#google" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Google</a></div>
</div><div id="yahoo-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/yahoo.png" alt="" class="pull-left favlogo" height="36" ><h3>Yahoo! <small class="service-url"><i class="icon icon-globe"></i> <a href="http://yahoo.com" target="_blank">yahoo.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-yahoo-WEwv5V2M9zw" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Yahoo's copyright license for photos, graphics, audio and video limited for purpose <a href="https://groups.google.com/d/msg/tosdr/WEwv5V2M9zw/Fevl-3Wq_BsJ" target="_blank" class="label context">Discussion</a> <!--a href="http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html" class="label context" target="_blank">Terms</a--></h5><p>The copyright license granted to Yahoo for photos, graphics, audio and video is limited “solely for the purpose for which such Content was submitted or made available”. </p></div></li>
<li id="popup-point-yahoo-WEwv5V2M9zw2" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Yahoo's copyright license for groups limited for purpose <a href="https://groups.google.com/d/msg/tosdr/WEwv5V2M9zw/Fevl-3Wq_BsJ" target="_blank" class="label context">Discussion</a> <!--a href="http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html" class="label context" target="_blank">Terms</a--></h5><p>The copyright license granted to Yahoo “With respect to Content you submit or make available for inclusion on publicly accessible areas of Yahoo! Groups, the license to use, distribute, reproduce, modify, adapt, publicly perform and publicly display such Content on the Yahoo! Services solely for the purposes of providing and promoting the specific Yahoo! Group to which such Content was submitted or made available. This license exists only for as long as you elect to continue to include such Content on the Yahoo! Services and will terminate at the time you remove or Yahoo! removes such Content from the Yahoo! Services.” </p></div></li>
<li id="popup-point-yahoo-RcOEEGGziUk" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Changes can happen at any time at their sole discretion without notice <a href="https://groups.google.com/d/msg/tosdr/RcOEEGGziUk/N2YAhiSX0BcJ" target="_blank" class="label context">Discussion</a> <!--a href="http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html" class="label context" target="_blank">Terms</a--></h5><p>“Yahoo! provides the Yahoo! Services (defined below) to you subject to the following Terms of Service ("TOS"), which may be updated by us from time to time without notice to you. You can review the most current version of the TOS at any time at: http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html. By accessing and using the Yahoo! Services, you accept and agree to be bound by the terms and provision of the TOS. ”</p></div></li>
<li id="popup-point-yahoo-eff-back-tell-user-no" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service has made no statement nor promised users to tell them about data sought by governments, thus not giving you a chance to defend yourself against government requests.</p></div></li>
<li id="popup-point-yahoo-eff-back-transparency-data-no" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is not making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
<li id="popup-point-yahoo-q782XE2RUss" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Your account can be suspended for several reasons <a href="https://groups.google.com/d/msg/tosdr/q782XE2RUss/uv1Soto5YcMJ" target="_blank" class="label context">Discussion</a> <!--a href="http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html" class="label context" target="_blank">Terms</a--></h5><p>“Section 15: Termination … You agree that Yahoo! may, without prior notice, immediately terminate, limit your access to or suspend your Yahoo! account, any associated email address, and access to the Yahoo! Services. Cause for such termination, limitation of access or suspension shall include, but not be limited to, (a) breaches or violations of the TOS or other incorporated agreements or guidelines, (b)requests by law enforcement or other government agencies, (c) discontinuance or material modification to the Yahoo! Services (or any part thereof), (d) unexpected technical or security issues or problems, (e) extended periods of inactivity, (f) engagement by you in fraudulent or illegal activities, and/or (g) nonpayment of any fees owed by you in connection with the Yahoo! Services. Further, you agree that all terminations, limitations of access and suspensions for cause shall be made in Yahoo!'s sole discretion and that Yahoo! shall not be liable to you or any third party for any termination of your account, any associated email address, or access to the Yahoo! Services.”</p></div></li>
<li id="popup-point-yahoo-JNjOO0gHWX0" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> You must use your real name <a href="https://groups.google.com/d/msg/tosdr/JNjOO0gHWX0/dKIFW9tjhLIJ" target="_blank" class="label context">Discussion</a> <!--a href="http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html" class="label context" target="_blank">Terms</a--></h5><p>“Section 3 *You also agree to: (a) provide true, accurate, current and complete information about yourself as prompted by the Yahoo! Service's registration form (the "Registration Data") and (b) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. If you provide any information that is untrue, inaccurate, not current or incomplete, or Yahoo! has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, Yahoo! has the right to suspend or terminate your account and refuse any and all current or future use of the Yahoo! Services.*”</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="http://info.yahoo.com/privacy/us/yahoo/details.html">Privacy Policy</a></li>
<li><a href="http://www.yahoo.com/r/ts">Yahoo! Terms of Service</a></li>
<li><a href="http://docs.yahoo.com/info/guidelines/community.html">Community Guidelines</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#yahoo" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Yahoo!</a></div>
</div><div id="wikipedia-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/wikipedia.png" alt="" class="pull-left favlogo" height="36" ><h3>Wikipedia <small class="service-url"><i class="icon icon-globe"></i> <a href="http://wikipedia.org" target="_blank">wikipedia.org</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-wikipedia-qui-0ATIaX4" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> No Cookies <a href="https://groups.google.com/d/msg/tosdr/qui-0ATIaX4" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Wikipedia sets a temporary session cookie for not-logged-in users, which is deleted at the end of the browser's session.</p></div></li>
<li id="popup-point-wikipedia-...-1" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/wikipedia%7Csort:relevance">forum</a>) <a href="https://groups.google.com/d/topic/tosdr/.../discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>we are still processing some data points from the <a href="https://groups.google.com/forum/#!searchin/tosdr/wikipedia%7Csort:relevance">forum</a></p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="https://wikimediafoundation.org/wiki/Terms_of_use">Terms of use</a></li>
<li><a href="https://wikimediafoundation.org/wiki/Privacy_policy">Privacy policy</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#wikipedia" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Wikipedia</a></div>
</div><div id="twitter-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/twitter.png" alt="" class="pull-left favlogo" height="36" ><h3>twitter <small class="service-url"><i class="icon icon-globe"></i> <a href="http://twitter.com" target="_blank">twitter.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-twitter-tmXfQIGPTvs2" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Third-parties <a href="https://groups.google.com/forum/#!topic/tosdr/tmXfQIGPTvs" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Your data is shared with Twitter's partners and other third-parties, on Twitter's terms – not yours. </p></div></li>
<li id="popup-point-twitter-tmXfQIGPTvs" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Very broad copyright license on your content <a href="https://groups.google.com/forum/#!topic/tosdr/tmXfQIGPTvs" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The copyright license is very broad with almost no limitations, which goes beyond the requirements to run the service. It includes right for Twitter to license to others (“sublicense”).</p></div></li>
<li id="popup-point-twitter-X6_GxyBSVnE" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Twitter deletes tracking data in 10 days and offers an opt-out <a href="https://groups.google.com/forum/#!topic/tosdr/X6_GxyBSVnE" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Twitter widgets on third-party websites collect <a href='https://support.twitter.com/articles/20169421#' title='Tailored Suggestions'>data about you</a>. The data is kept a maximum of 10 days. Also, <strong>you can opt-out completely</strong> by enabling “Do-Not-Track”. <a href='https://support.twitter.com/groups/33-report-abuse-or-policy-violations/topics/148-policy-information/articles/20169453-twitter-supports-do-not-track#'>See how</a>.</p></div></li>
<li id="popup-point-twitter-eff-back-tell-user" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Promise to inform about data requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>A public commitment to inform users when their data is sought by the government, unless prohibited by law. This gives you a chance to defend yourself against overreaching government demands for their data. (cc-by eff)</p></div></li>
<li id="popup-point-twitter--B4iO-9xHvg" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Critical changes to the terms with little users' involvement <a href="https://groups.google.com/d/msg/tosdr/-B4iO-9xHvg/0yoWGoEISrEJ" target="_blank" class="label context">Discussion</a> <!--a href="https://twitter.com/tos/previous/version_1" class="label context" target="_blank">Terms</a--></h5><p>Twitter can change the terms at any time when they see fit. They give notification, in their sole disretion, via an @Twitter update or via email. In September 2009, Twitter considerably changed the terms for the copyright license and only gave a very short notice, only a few hours before the changes applied.</p></div></li>
<li id="popup-point-twitter-eff-back-transparency-data-50" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
<li id="popup-point-twitter-aXOIDbzevYE-1" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Third party cookies <a href="https://groups.google.com/d/msg/tosdr/aXOIDbzevYE/VYXGTAktQuAJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Twitter uses third-party services that may collect your information, using cookies for instance. Twitter uses Google Analytics.</p></div></li>
<li id="popup-point-twitter-damOWTFaho0" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Twitter provide archives of their terms <a href="https://groups.google.com/d/topic/tosdr/damOWTFaho0/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>At https://twitter.com/tos/previous you can see previous versions of Twitter's terms</p></div></li>
<li id="popup-point-twitter-OR7vkW34mm4" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Twitter does not require cookies to function <a href="https://groups.google.com/d/topic/tosdr/OR7vkW34mm4" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Twitter is transparent about using session cookies and persistant cookies. But Twitter does not require cookies for most of the service to function. Remember that cookies are files on your computer: you can control and disable them.</p></div></li>
<li id="popup-point-twitter-e0F4cavaJ4Q" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Twitter deletes your account after 30 days. It keeps the rights on your content. <a href="https://groups.google.com/d/topic/tosdr/e0F4cavaJ4Q" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Even if you deactive your account or if your account is closed, Twitter still has all the rights on your Content (the copyright license survives termination). However, after 30 days Twitter begins to delete your account.</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="https://twitter.com/tos">Terms of Service</a></li>
<li><a href="https://twitter.com/privacy">Privacy Policy</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#twitter" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for twitter</a></div>
</div><div id="flickr-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/flickr.png" alt="" class="pull-left favlogo" height="36" ><h3>Flickr <small class="service-url"><i class="icon icon-globe"></i> <a href="http://flickr.com" target="_blank">flickr.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-flickr-WEwv5V2M9zw" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Yahoo's copyright license for photos, graphics, audio and video limited for purpose <a href="https://groups.google.com/d/msg/tosdr/WEwv5V2M9zw/Fevl-3Wq_BsJ" target="_blank" class="label context">Discussion</a> <!--a href="http://info.yahoo.com/legal/us/yahoo/utos/utos-173.html" class="label context" target="_blank">Terms</a--></h5><p>The copyright license granted to Yahoo for photos, graphics, audio and video is limited “solely for the purpose for which such Content was submitted or made available”. </p></div></li>
<li id="popup-point-flickr-Yz8_15F1kfY" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> Pro accounts cannot be canceled <a href="https://groups.google.com/d/msg/tosdr/Yz8_15F1kfY/DZHCRVg8UYEJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“Communication with you: * Flickr Pro accounts cannot be canceled.”</p></div></li>
<li id="popup-point-flickr-K1M7Vj1W1VM" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Flickr lets you choose a copyright license <a href="https://groups.google.com/d/msg/tosdr/K1M7Vj1W1VM/klIjYdinTVcJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The copyright license granted to Yahoo for photos, graphics, audio and video is limited “solely for the purpose for which such Content was submitted or made available”. In addition, Flickr integrates a set of Creative Commons licenses you can choose from.</p></div></li>
<li id="popup-point-flickr-sZ6MVIwA-tE" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> You can chose with whom you share your photo <a href="https://groups.google.com/d/msg/tosdr/sZ6MVIwA-tE/aZfl-h1LgxUJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“You can specify whether or not you want your photos to be accessible to the public, accessible to a select few, or private (only you can access them with your Yahoo! ID and password)”</p></div></li>
<li id="popup-point-flickr-U11qApwNL2M" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Users are subject to Yahoo!'s terms <a href="https://groups.google.com/d/msg/tosdr/U11qApwNL2M/4rgCMlHg7TIJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“When you use Flickr, you are subject to the Yahoo! Terms of Service and Yahoo! Community Guidelines.” To find out about Yahoo!'s terms, please read <a href="index.html#yahoo">the ToS;DR report</a>.</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="http://info.yahoo.com/privacy/us/yahoo/flickr/details.html">Privacy Policy</a></li>
<li><a href="http://www.yahoo.com/r/ts">Yahoo! Terms of Service</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#flickr" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Flickr</a></div>
</div><div id="skype-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/skype.png" alt="" class="pull-left favlogo" height="36" ><h3>Skype <small class="service-url"><i class="icon icon-globe"></i> <a href="http://skype.com" target="_blank">skype.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-skype-eff-back-tell-user-no" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service has made no statement nor promised users to tell them about data sought by governments, thus not giving you a chance to defend yourself against government requests.</p></div></li>
<li id="popup-point-skype-eff-back-transparency-data-no" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is not making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
<li id="popup-point-skype-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="http://www.skype.com/intl/en-us/legal/">Terms and Policies</a></li>
<li><a href="http://www.skype.com/intl/en-us/legal/terms/tou/">Terms of Use</a></li>
<li><a href="http://www.skype.com/intl/en-us/legal/business/eula/">Business End User License Agreement</a></li>
<li><a href="http://www.skype.com/intl/en-us/legal/business/eula-us/">Business End User License Agreement (US)</a></li>
<li><a href="http://www.skype.com/intl/en/legal/terms/gvc-fair-usage/">Group Video Calling Fair Usage Policy</a></li>
<li><a href="http://www.skype.com/intl/en-us/legal/terms/fair_usage/">Fair Usage Policy for Subscriptions</a></li>
<li><a href="http://www.skype.com/intl/en-us/legal/terms/fair_usage_minute_bundles/">Fair Usage Policy for US Minute Bundles</a></li>
<li><a href="http://www.skype.com/intl/en-us/legal/privacy/general/">Privacy Policies</a></li>
<li><a href="http://www.skype.com/intl/en-us/legal/privacy/general/#5">Cookies Policy</a></li>
<li><a href="http://www.skype.com/intl/en-us/legal/terms/etiquette/">Etiquette</a></li>
<li><a href="http://www.skype.com/intl/en-us/legal/skype-limited-emergency-calling/">Skype Emergency Calling</a></li>
<li><a href="http://www.skype.com/intl/en-us/legal/terms/trademark-guidelines/">Trademark Guidelines</a></li>
<li><a href="http://www.skype.com/intl/en-us/legal/business/terms/">Terms of Service - Business</a></li>
<li><a href="http://www.skype.com/intl/en-us/legal/business/terms-us/">Terms of Service - Business (US)</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#skype" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Skype</a></div>
</div><div id="soundcloud-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/soundcloud.png" alt="" class="pull-left favlogo" height="36" ><h3>SoundCloud <small class="service-url"><i class="icon icon-globe"></i> <a href="http://soundcloud.com/" target="_blank">soundcloud.com/</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label B">Class B</label><p>The terms of services are fair towards the user but they could be improved.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-soundcloud-_gI8wQ3PZ2M" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> You stay in control of your copyright <a href="https://groups.google.com/d/topic/tosdr/_gI8wQ3PZ2M/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://soundcloud.com/terms-of-use#license" class="label context" target="_blank">Terms</a--></h5><p>You only grant to SoundCloud the rights necessary to operate the services. You grant to the public the rights to listen and to share your tracks “within the parameters set by you” for each track. You can also publish easily your tracks under a Creative Commons license of your choice.</p></div></li>
<li id="popup-point-soundcloud-3f3dVPCa1GU" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Collected personal data used for limited purposes <a href="https://groups.google.com/d/topic/tosdr/3f3dVPCa1GU/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>SoundCloud collects data that you provide, but also <a href="http://soundcloud.com/pages/privacy#collection">automatically</a>. Information collected about you is only used for a list of purposes which are reasonable. Your data is not shared with any third-party, except for the features you use.</p></div></li>
<li id="popup-point-soundcloud-n_DCnOwcIo0" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Indemnification from claims related to your content or your account <a href="https://groups.google.com/d/topic/tosdr/n_DCnOwcIo0/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://soundcloud.com/terms-of-use#indemnification" class="label context" target="_blank">Terms</a--></h5><p>You agree to indemnify SoundCloud from all claims resulting from any third party for infringement of copyright or invastion of privacy related to your content or any activity related to your account. </p></div></li>
<li id="popup-point-soundcloud--tqWw03UPoc" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> 6 weeks to review changes <a href="https://groups.google.com/d/topic/tosdr/-tqWw03UPoc/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://soundcloud.com/terms-of-use" class="label context" target="_blank">Terms</a--></h5><p>When SoundCloud decides to modify the terms of service, they notify you by email. The changes will go in application after 6 weeks, leaving a reasonable amount of time for you to consider whether you agree to the changes.</p></div></li>
<li id="popup-point-soundcloud-fmlKouXKUcc" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> The terms are easy to read <a href="https://groups.google.com/d/topic/tosdr/fmlKouXKUcc/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://soundcloud.com/terms-of-use" class="label context" target="_blank">Terms</a--></h5><p>SoundCloud provides an index describing what each section is about. Thus, you can easily identify which sections you care about and jump directly to these sections.</p></div></li>
<li id="popup-point-soundcloud-Fnwu9Z5crGE" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Little personal information is required <a href="https://groups.google.com/d/topic/tosdr/Fnwu9Z5crGE/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>You don't have to register for most of the services. Little personal information is required to register, you don't have to provide your real name unless it is for a Premium Account.</p></div></li>
<li id="popup-point-soundcloud-gq1LW7l28qI" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> You can terminate your account <a href="https://groups.google.com/d/topic/tosdr/gq1LW7l28qI/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://soundcloud.com/terms-of-use#termination" class="label context" target="_blank">Terms</a--></h5><p>In order to terminate your agreement to the terms, you need to send a written notice to SoundCloud, Berlin. All your content and your activity will be “irretrievably deleted by SoundCloud, except to the extent that we are obliged or permitted to retain such content, data or information for a certain period of time in accordance with applicable laws and regulations and/or to protect our legitimate business interests”. You should back up your tracks yourself.</p></div></li>
<li id="popup-point-soundcloud-w8RMtGdRvdM" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Use of cookies and third-party cookies (opt-out) <a href="https://groups.google.com/d/topic/tosdr/w8RMtGdRvdM/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>SoundCloud uses persistant cookies. They also have a limited set of third-party cookies: Google Analytics, Quantcast and ATInternet. Detailed information about <a href="http://soundcloud.com/pages/privacy#choices">how to opt-out</a> is provided.</p></div></li>
<li id="popup-point-soundcloud-3f3dVPCa1GU2" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Personal information can be disclosed in case of business transfer or insolvency <a href="https://groups.google.com/d/topic/tosdr/3f3dVPCa1GU/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>SoundCloud “We may disclose your personal information to any person or company that acquires all or substantially all of the assets or business of SoundCloud, or on a merger of our business, or in the event of our insolvency. ”</p></div></li>
<li id="popup-point-soundcloud-ps1ZppOOWmM" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Jurisdiction in Germany <a href="https://groups.google.com/d/topic/tosdr/ps1ZppOOWmM/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://soundcloud.com/terms-of-use#applicable_law" class="label context" target="_blank">Terms</a--></h5><p>“this Agreement is subject to the laws of the Federal Republic of Germany, excluding the UN Convention on Contracts for the International Sale of Goods (CISG) and excluding the principles of conflict of laws (international private law); and you hereby agree, and SoundCloud agrees, to submit to the exclusive jurisdiction of the courts in Berlin, Germany for resolution of any dispute, action or proceeding arising in connection with this Agreement.”</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="http://soundcloud.com/terms-of-use">Terms of Service</a></li>
<li><a href="http://soundcloud.com/pages/privacy">Privacy Policy</a></li>
<li><a href="http://soundcloud.com/community-guidelines">Community Guidelines</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#soundcloud" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for SoundCloud</a></div>
</div><div id="xing-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/xing.png" alt="" class="pull-left favlogo" height="36" ><h3>XING <small class="service-url"><i class="icon icon-globe"></i> <a href="http://xing.com" target="_blank">xing.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-xing-_he1077OGTY" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> You must use your real name <a href="https://groups.google.com/d/msg/tosdr/_he1077OGTY/MilMakLnbCsJ" target="_blank" class="label context">Discussion</a> <!--a href="http://www.xing.com/terms#4" class="label context" target="_blank">Terms</a--></h5><p>You must use your real name. Using a pseudonym is not allowed. </p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="http://www.xing.com/privacy">Privacy Policy</a></li>
<li><a href="http://www.xing.com/terms">Terms</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#xing" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for XING</a></div>
</div><div id="github-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/github.png" alt="" class="pull-left favlogo" height="36" ><h3>GitHub <small class="service-url"><i class="icon icon-globe"></i> <a href="http://github.com" target="_blank">github.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label B">Class B</label><p>The terms of services are fair towards the user but they could be improved.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-github-lOG7XeUi-3E" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> You don't grant any copyright license to github <a href="https://groups.google.com/d/topic/tosdr/lOG7XeUi-3E/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“We claim no intellectual property rights over the material you provide to the Service. Your profile and materials uploaded remain yours. However, by setting […] your repositories to be viewed publicly, you agree to allow others to view and fork your repositories.” </p></div></li>
<li id="popup-point-github-9epXl7ZDb7c" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Changes can happen any time, even without notice <a href="https://groups.google.com/d/topic/tosdr/9epXl7ZDb7c/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“GitHub reserves the right to update and change the Terms of Service from time to time without notice.” Fortunately, the privacy policy benefits from a special clause: changes to the privacy policy will be notified to you but only a minimum of 3 days in advance.</p></div></li>
<li id="popup-point-github-EpPNnYXBW_w" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> You shall defend and indemnify GitHub <a href="https://groups.google.com/d/topic/tosdr/EpPNnYXBW_wk/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“You shall defend GitHub against any claim, demand, suit or proceeding made or brought against GitHub by a third party alleging that Your Content, or Your use of the Service in violation of this Agreement, infringes or misappropriates the intellectual property rights of a third party or violates applicable law, and shall indemnify GitHub for any damages finally awarded against, and for reasonable attorney’s fees incurred by, GitHub in connection with any such claim, demand, suit or proceeding; provided, that GitHub (a) promptly gives You written notice of the claim, demand, suit or proceeding; (b) gives You sole control of the defense and settlement of the claim, demand, suit or proceeding (provided that You may not settle any claim, demand, suit or proceeding unless the settlement unconditionally releases GitHub of all liability); and (c) provides to You all reasonable assistance, at Your expense. ”</p></div></li>
<li id="popup-point-github-ymh8uR_j51A" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Your personal information is used for limited purposes <a href="https://groups.google.com/d/topic/tosdr/ymh8uR_j51A/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“The information we collect is used to improve the content of our Web pages and the quality of our service, and is not shared with or sold to other organizations for commercial purposes, except to provide products or services you’ve requested, when we have your permission, […] GitHub uses collected information for the following general purposes: products and services provision, billing, identification and authentication, services improvement, contact, and research.”</p></div></li>
<li id="popup-point-github-hI5Too_uDVk" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Your account can be suspended and your data deleted any time for any reason <a href="https://groups.google.com/d/topic/tosdr/hI5Too_uDVk/discussion" target="_blank" class="label context">Discussion</a> <!--a href="https://github.com/site/terms" class="label context" target="_blank">Terms</a--></h5><p>“GitHub, in its sole discretion, has the right to suspend or terminate your account and refuse any and all current or future use of the Service, or any other GitHub service, for any reason at any time. Such termination of the Service will result in the deactivation or deletion of your Account or your access to your Account, and the forfeiture and relinquishment of all Content in your Account. GitHub reserves the right to refuse service to anyone for any reason at any time. ” However, most of your data at GitHub can be exported with 'git clone' (for the wiki) and with the API (for the issues).</p></div></li>
<li id="popup-point-github-2vIh4l7sTnk" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Transparent security practices <a href="https://groups.google.com/d/topic/tosdr/2vIh4l7sTnk/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>GitHub gives a detailed overview of their own security practices and their service providers' practices and obligations.</p></div></li>
<li id="popup-point-github-2zjqOmS3FC4" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> You must provide your legal name <a href="https://groups.google.com/d/topic/tosdr/2zjqOmS3FC4/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“You must provide your legal full name,” when you register. </p></div></li>
<li id="popup-point-github-8LDE2ZPXRW4" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> GitHub will notifiy you before transfering your information in event of merger or acquisition <a href="https://groups.google.com/d/topic/tosdr/8LDE2ZPXRW4/discussion" target="_blank" class="label context">Discussion</a> <!--a href="https://github.com/site/terms" class="label context" target="_blank">Terms</a--></h5><p>“We transfer information about you if GitHub is acquired by or merged with another company. In this event, GitHub will notify you before information about you is transferred and becomes subject to a different privacy policy. ”</p></div></li>
<li id="popup-point-github-gyMiAkV5ZG0" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> GitHub requires cookies <a href="https://groups.google.com/d/topic/tosdr/gyMiAkV5ZG0/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>GitHub requires cookies to work and misleads you to believe that you remain anonymous while cookies contain “unique identifiers”. However, only session cookies are used, not persistent cookies.</p></div></li>
<li id="popup-point-github-lXPKuQU0mPI" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Choice of law: California <a href="https://groups.google.com/d/topic/tosdr/lXPKuQU0mPI/discussion" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“You agree that these Terms of Service and Your use of the Service are governed under California law.”</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="https://github.com/site/terms">Terms of Service</a></li>
<li><a href="https://help.github.com/privacy-policy">Privacy Policy</a></li>
<li><a href="https://help.github.com/security/">Security</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#github" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for GitHub</a></div>
</div><div id="twitpic-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/twitpic.png" alt="" class="pull-left favlogo" height="36" ><h3>Twitpic <small class="service-url"><i class="icon icon-globe"></i> <a href="http://twitpic.com" target="_blank">twitpic.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label E">Class E</label><p>The terms of service raise very serious concerns.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-twitpic-4Zh8gx9IyDc" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> Twitpic takes credit for your content <a href="https://groups.google.com/d/topic/tosdr/4Zh8gx9IyDc/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://www.twitpic.com/terms.do" class="label context" target="_blank">Terms</a--></h5><p>Twitpic has deals with partners to use your content without giving you credit. Twitpic's partners “are required to […] attribute credit to Twitpic as the source”.</p></div></li>
<li id="popup-point-twitpic-Rt4zuPdx3qs" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Your content is for Twitpic and their partners <a href="https://groups.google.com/d/topic/tosdr/Rt4zuPdx3qs/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://www.twitpic.com/terms.do" class="label context" target="_blank">Terms</a--></h5><p>The copyright license goes beyond the requirement to operate the service and includes distribution on twitpic and by “affiliated partners” of twitpic such as media agencies.</p></div></li>
<li id="popup-point-twitpic-dCfx1aMH1Tw" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Reduction of legal period for cause of action <a href="https://groups.google.com/d/topic/tosdr/dCfx1aMH1Tw/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://www.twitpic.com/terms.do" class="label context" target="_blank">Terms</a--></h5><p>You cannot sue Twitpic for something that has happened more than one year ago. </p></div></li>
<li id="popup-point-twitpic-jF1B4WY0x7k" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> You indemnify Twitpic from any claim related to your content <a href="https://groups.google.com/d/topic/tosdr/jF1B4WY0x7k/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://www.twitpic.com/terms.do" class="label context" target="_blank">Terms</a--></h5><p>You agree to indemnify Twitpic and its employees from any claim made by any third party related to your content. That includes paying reasonable attorneys' fees.</p></div></li>
<li id="popup-point-twitpic-b6ryqY9NdMw" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> Deleted images are not really deleted <a href="https://groups.google.com/d/topic/tosdr/b6ryqY9NdMw/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://www.twitpic.com/terms.do" class="label context" target="_blank">Terms</a--></h5><p>“Deleted images are only accessed in the event of a legal issue.”</p></div></li>
<li id="popup-point-twitpic-V_RVXG7TKEA" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Jurisdiction in Delaware <a href="https://groups.google.com/d/topic/tosdr/V_RVXG7TKEA/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://www.twitpic.com/terms.do" class="label context" target="_blank">Terms</a--></h5><p>Courts located within Dover, Delaware have exclusive jurisdiction and shall apply the laws of the State of Delaware without regard to its conflict of law provisions.</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="http://twitpic.com/terms.do">Terms of Service</a></li>
<li><a href="http://twitpic.com/privacy.do">Privacy Policy</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#twitpic" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Twitpic</a></div>
</div><div id="delicious-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/delicious.png" alt="" class="pull-left favlogo" height="36" ><h3>Delicious <small class="service-url"><i class="icon icon-globe"></i> <a href="http://delicious.com" target="_blank">delicious.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label D">Class D</label><p>The terms of service are very uneven or there are some important issues that need your attention.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-delicious-t-INoE6fH98" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Very broad copyright license on your content, includes right for Delicious to distribute through any media <a href="https://groups.google.com/forum/#!topic/tosdr/t-INoE6fH98" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The copyright license granted to Delicious is not limited to operating the service. Your content can be exploited “in any and all media or distribution channels (now known or hereafter created)” i.e. it can be distributed by Delicious outside the Delicious service.</p></div></li>
<li id="popup-point-delicious-Rn8M-KQOcNU" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Third Parties <a href="https://groups.google.com/forum/#!topic/tosdr/t-INoE6fH98" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The scope of the copyright license granted to Delicious includes the rights to transfer and sublicense. This means your content can be licensed by Delicious to third-parties on their terms.</p></div></li>
<li id="popup-point-delicious-LbwpukmRtgg" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> No Right to leave the service <a href="https://groups.google.com/forum/#!topic/tosdr/LbwpukmRtgg" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Even if you terminate your account, Delicious “may retain an archived copy for legitimate business purposes”. The copyright license does not end.</p></div></li>
<li id="popup-point-delicious-0oKZG_o_Zu0" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Only for personal and non-commercial use <a href="https://groups.google.com/forum/#!topic/tosdr/0oKZG_o_Zu0" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Your use of the service is restricted with “a limited license to access, share, tag and save to your Account any Member Content (including another Member's public “bookmarks”) for your <strong>personal and non-commercial use</strong>”.</p></div></li>
<li id="popup-point-delicious-aXOIDbzevYE" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Non-transparent use of cookies and third party ads <a href="https://groups.google.com/forum/#!topic/tosdr/aXOIDbzevYE" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Data collected with cookies is kept for an undefined period of time. Also, Delicious' “Third party advertisers may also place or read cookies on your browser.”</p></div></li>
<li id="popup-point-delicious-lJGsikCSEJ8" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Your personal information are an asset for business transfers <a href="https://groups.google.com/forum/#!topic/tosdr/lJGsikCSEJ8" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Delicious “may sell, transfer or otherwise share some or all of its assets, including your Personal Information, in connection with a merger, acquisition, reorganization or sale of assets or in the event of bankruptcy.”</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="http://www.delicious.com/terms">Terms of Service</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#delicious" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Delicious</a></div>
</div><div id="500px-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/500px.png" alt="" class="pull-left favlogo" height="36" ><h3>500px <small class="service-url"><i class="icon icon-globe"></i> <a href="http://500px.com" target="_blank">500px.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label D">Class D</label><p>The terms of service are very uneven or there are some important issues that need your attention.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-500px-uPk0rmk6_1w" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> The terms can change at any time <a href="https://groups.google.com/d/topic/tosdr/uPk0rmk6_1w/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://500px.com/terms" class="label context" target="_blank">Terms</a--></h5><p>“500px reserves the right, at its sole discretion, to modify or replace the terms at any time. If the alterations constitute a material change to the terms, 500px will notify you by Posting an announcement on the site. What constitutes a material change will be Determined at 500px’s sole discretion.”</p></div></li>
<li id="popup-point-500px-3uiIrLyj8Hw" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Waiver of legal actions <a href="https://groups.google.com/d/topic/tosdr/3uiIrLyj8Hw/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://500px.com/terms" class="label context" target="_blank">Terms</a--></h5><p>“You shall not have any right to terminate the permissions granted herein, nor to seek, obtain, or enforce any injunctive or other equitable relief against 500px, all of which such rights are hereby expressly and irrevocably waived by you in favour of 500px.”</p></div></li>
<li id="popup-point-500px-ozS1etNH7ZA" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> 500px Store: Authorship <a href="https://groups.google.com/d/topic/tosdr/ozS1etNH7ZA/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://500px.com/terms" class="label context" target="_blank">Terms</a--></h5><p>“you hereby irrevocably waive all moral rights in your Store Images;”</p></div></li>
<li id="popup-point-500px-wYFqcvOn7XY3" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> You are responsible for any claim and agree to indemnify them <a href="https://groups.google.com/d/topic/tosdr/wYFqcvOn7XY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://500px.com/terms" class="label context" target="_blank">Terms</a--></h5><p>You cannot hold 500px responsible for any claim or demand in law which you ever had, or may have. You agree to indemnify them for all claims related to your content or your account, including for any person using your username and password.</p></div></li>
<li id="popup-point-500px-wYFqcvOn7XY2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> 500px Store: your account can be terminated at any time <a href="https://groups.google.com/d/topic/tosdr/wYFqcvOn7XY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://500px.com/terms" class="label context" target="_blank">Terms</a--></h5><p>“500px may terminate your store account at any time for any reason or no reason. All Store Images remaining in your Store account will be removed by 500px upon termination of your store account.”</p></div></li>
<li id="popup-point-500px-X99SUnV7RUs" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Broad copyright license <a href="https://groups.google.com/d/topic/tosdr/X99SUnV7RUs/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://500px.com/terms" class="label context" target="_blank">Terms</a--></h5><p>The copyright license you grant to 500px is transferable and sublicensable. The copyright license is limited for use “in connection with the Services” which includes promotional uses and redistribution “to other parties, web-sites, applications, and other entities” if you are credited properly. The license on your content terminates when you remove such content.</p></div></li>
<li id="popup-point-500px-x2OybdCClW0" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Pseudonyms are allowed <a href="https://groups.google.com/d/topic/tosdr/x2OybdCClW0/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://500px.com/terms" class="label context" target="_blank">Terms</a--></h5><p>A username is sufficient to register to the service. But if you provide a Name and other information, they “must be accurate, complete, and current at all times. Failure to do so constitutes a breach of the Terms, which may result in immediate termination of your 500px account.”</p></div></li>
<li id="popup-point-500px-y7polYRKTN0" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Open only to individual photographers and graphic artists <a href="https://groups.google.com/d/topic/tosdr/y7polYRKTN0/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://500px.com/terms" class="label context" target="_blank">Terms</a--></h5><p>“Accounts may not be opened by galleries, agents and other market intermediaries and entities who represent photographers and graphic artists or sell their works.”</p></div></li>
<li id="popup-point-500px-wYFqcvOn7XY" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> The terms are easy to read <a href="https://groups.google.com/d/topic/tosdr/wYFqcvOn7XY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="http://500px.com/terms" class="label context" target="_blank">Terms</a--></h5><p>500px provides an easy to read summary of the terms on the right side. This provides a pleaseant reading experience. However some of the summaries are a bit misleading and should not omit important details.</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="http://500px.com/terms">Terms of Service</a></li>
<li><a href="http://www.500px.com/privacy">Privacy Policy</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#500px" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for 500px</a></div>
</div><div id="duckduckgo-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/duckduckgo.png" alt="" class="pull-left favlogo" height="36" ><h3>DuckDuckGo <small class="service-url"><i class="icon icon-globe"></i> <a href="http://duckduckgo.com" target="_blank">duckduckgo.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label A">Class A</label><p>The terms of service treat you fairly, respect your rights and follows the best practices.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-duckduckgo-g4RWiArs104" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> No Tracking <a href="https://groups.google.com/forum/#!topic/tosdr/g4RWiArs104" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>DuckDuckGo doesn't save your searches and doesn't send your searches to other sites. No personal information is saved either. </p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="https://duckduckgo.com/privacy.html">Privacy Policy</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#duckduckgo" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for DuckDuckGo</a></div>
</div><div id="app-net-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/app-net.png" alt="" class="pull-left favlogo" height="36" ><h3>App.net <small class="service-url"><i class="icon icon-globe"></i> <a href="http://app.net" target="_blank">app.net</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-app-net-6HDli9X01C8" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> You defend, indemnify, and hold app.net harmless in case of a claim related to your use of the service <a href="https://groups.google.com/d/topic/tosdr/6HDli9X01C8/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>You agree to defend, indemnify and hold us harmless from and against
any and all costs, damages, liabilities, and expenses (including
attorneys' fees) we incur we in relation to, arising from, or for the
purpose of avoiding, any claim or demand from a third party that your
use of the Service or the use of the Service by any person using your
account violates any applicable law or regulation, or the rights of
any third party, and/or your violation of these Terms.</p></div></li>
<li id="popup-point-app-net-OqIkAS2uwmE-3" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Pseudonyms allowed on app.net <a href="https://groups.google.com/d/topic/tosdr/OqIkAS2uwmE-3/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>This is an online identity provider, so keeping your personal life separate from your online life is important, and it's good that (unlike e.g. Facebook and Google+), App.Net allows this.</p></div></li>
<li id="popup-point-app-net-OqIkAS2uwmE-7" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Account suspension depends on you breaching the terms <a href="https://groups.google.com/d/topic/tosdr/OqIkAS2uwmE-7/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"breach of any of the rules outlined in the terms of service — including those above — may result in you losing your App.net account, and access to the service." - that's good because it's conditional on there being a reason to terminate your account. a lot of other services claim the right to terminate your account for any reason and/or at their sole discretion.</p></div></li>
<li id="popup-point-app-net-OqIkAS2uwmE-6" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> You can delete your content <a href="https://groups.google.com/d/topic/tosdr/OqIkAS2uwmE-6/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>if you delete content, it is hidden from view immediately, and deleted entirely from their servers in max. 2 weeks. "It is then gone forever."</p></div></li>
<li id="popup-point-app-net-OqIkAS2uwmE-5" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> The copyright license you give them is "limited" <a href="https://groups.google.com/d/topic/tosdr/OqIkAS2uwmE-5/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>The terms also state: "Aside from our limited right to your content, you retain all of your rights to the content"</p></div></li>
<li id="popup-point-app-net-MCGx3DtQHM8" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Changes published 5 days ahead, but no notification <a href="https://groups.google.com/d/msg/tosdr/MCGx3DtQHM8/J13IJAikOTAJ" target="_blank" class="label context">Discussion</a> <!--a href="http://app.net/terms/" class="label context" target="_blank">Terms</a--></h5><p>“Whenever we make changes to these Terms, the changes are effective 5 days after we post such revised Terms to our website ... It is your responsibility to check the website regularly for changes to these Terms. // If you continue to use the Service after the revised Terms go into effect, then you have accepted the changes to these Terms.”</p></div></li>
<li id="popup-point-app-net-OqIkAS2uwmE-8" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> You may not scrape the site <a href="https://groups.google.com/d/topic/tosdr/OqIkAS2uwmE-8/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"your rights do not include: (i) publicly performing or publicly displaying the Service, (ii) modifying or otherwise making any derivative uses of the Service or any portion thereof; (iii) using any data mining, robots or similar data gathering or extraction methods; (iv) downloading (other than page caching) of any portion of the Service or any information contained therein; (v) reverse engineering or accessing the Service in order to build a competitive product or service; or (vi) using the Service other than for its intended purposes.". This seems to include content published on there by users other than yourself.</p></div></li>
<li id="popup-point-app-net-OqIkAS2uwmE-2" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> App.net's terms are simple and easy to follow <a href="https://groups.google.com/d/topic/tosdr/OqIkAS2uwmE-2/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>Terms are simple, not too long, and easy to follow.</p></div></li>
<li id="popup-point-app-net-I7i-2EM0GVY" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> App.net provide archives of their terms <a href="https://groups.google.com/forum/#!topic/tosdr/I7i-2EM0GVY" target="_blank" class="label context">Discussion</a> <!--a href="http://app.net/terms/" class="label context" target="_blank">Terms</a--></h5><p>their ToS versioning is public on github, at https://github.com/appdotnet/terms-of-service</p></div></li>
<li id="popup-point-app-net-OqIkAS2uwmE-4" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> You are responsible for what you upload <a href="https://groups.google.com/d/topic/tosdr/OqIkAS2uwmE-4/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>Some types of content are not allowed. specifically (the blog post mentions this further down under 'Copyright'), if you post copyrighted material to which you have no license, they will take it down and close your account</p></div></li>
<li id="popup-point-app-net-OqIkAS2uwmE-1" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> App.net request feedback from users <a href="https://groups.google.com/d/topic/tosdr/OqIkAS2uwmE-1/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>See https://github.com/appdotnet/terms-of-service/issues as well as the blue box at the top of their terms https://alpha.app.net/legal/terms/ ) </p></div></li>
<li id="popup-point-app-net-OqIkAS2uwmE-11" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Court of law is California <a href="https://groups.google.com/d/topic/tosdr/OqIkAS2uwmE-11/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>Court of law is California.</p></div></li>
<li id="popup-point-app-net-OqIkAS2uwmE-9" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> App.net does not take responsibility for what its users post <a href="https://groups.google.com/d/topic/tosdr/OqIkAS2uwmE-9/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>Whether on App.Net, or on website that have an inbound or outbound hyperlink with out.</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="https://alpha.app.net/legal/privacy/">Privacy Policy</a></li>
<li><a href="https://alpha.app.net/legal/terms/">Terms and Conditions</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#app-net" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for App.net</a></div>
</div><div id="steam-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/steam.png" alt="" class="pull-left favlogo" height="36" ><h3>Steam <small class="service-url"><i class="icon icon-globe"></i> <a href="http://store.steampowered.com" target="_blank">store.steampowered.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-steam-rhykox7XUfs8" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Defend and indemnify Valve. Survives termination of the agreement. <a href="https://groups.google.com/d/topic/tosdr/rhykox7XUfs" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>You agree to defend, indemnify and hold harmless Valve, its licensors, and its and their affiliates from all liabilities, claims and expenses, including attorneys' fees, that arise from or in connection with breach of this Agreement or the use of Steam or any Subscription, ...</p></div></li>
<li id="popup-point-steam-rhykox7XUfs12" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Valve can cancel your account at any time. <a href="https://groups.google.com/d/topic/tosdr/rhykox7XUfs" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Section 10:C “Valve may cancel your Account or any particular Subscription(s) at any time. In the event that your Account or a particular Subscription is terminated or cancelled by Valve for a violation of this Agreement or improper or illegal activity, no refund, including of any Subscription fees, will be granted.”</p></div></li>
<li id="popup-point-steam-rhykox7XUfs6" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Can request review and/or removal of personally identifiable info. <a href="https://groups.google.com/d/topic/tosdr/rhykox7XUfs" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“If you are concerned about the accuracy of personally identifiable information maintained by Valve or wish to review, access, amend or correct it, or would like your personally identifiable information removed from Valve's records or otherwise deactivated, please contact us here. We may decline requests that are unreasonably repetitive, require disproportionate technical effort, jeopardize the privacy of others, or are extremely impractical.”</p></div></li>
<li id="popup-point-steam-rhykox7XUfs10" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No refund policy <a href="https://groups.google.com/d/topic/tosdr/rhykox7XUfs" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“Your cancellation of an Account, or your cessation of use of any Subscription or request that access to a Subscription be terminated, will not entitle you to any refund, including of any Subscription fees.”</p></div></li>
<li id="popup-point-steam-rhykox7XUfs9" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Notifications 30 days before changes. <a href="https://groups.google.com/d/topic/tosdr/rhykox7XUfs" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Changes to the agreement are notified by email or within the program 30 days in advance.</p></div></li>
<li id="popup-point-steam-eff-back-transparency-data-no" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is not making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
<li id="popup-point-steam-rhykox7XUfs11" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> A user can voluntarily cancel their account at any time. <a href="https://groups.google.com/d/topic/tosdr/rhykox7XUfs" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“You may cancel your Account at any time. You may cease use of a Subscription at any time or, if you choose, you may request that we terminate your access to a Subscription. However, Subscriptions are not transferable, and even if your access to a Subscription for a particular game or application is terminated, the original activation key will not be able to be registered to any other account, even if the game or application was purchased in a retail store. Access to Subscriptions purchased as a part of a pack or bundle cannot be terminated individually, termination of access to one game within the bundle will result in termination of access to all games purchased in the pack will be removed from the account.”</p></div></li>
<li id="popup-point-steam-rhykox7XUfs16" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Trial and class action waiver <a href="https://groups.google.com/d/topic/tosdr/rhykox7XUfs" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Section 12 “YOU AND VALVE AGREE TO RESOLVE ALL DISPUTES AND CLAIMS BETWEEN US IN INDIVIDUAL BINDING ARBITRATION. THAT INCLUDES, BUT IS NOT LIMITED TO, ANY CLAIMS ARISING OUT OF OR RELATING TO: (i) ANY ASPECT OF THE RELATIONSHIP BETWEEN US; (ii) THIS AGREEMENT; OR (iii) YOUR USE OF STEAM, YOUR ACCOUNT OR THE SOFTWARE. IT APPLIES REGARDLESS OF WHETHER SUCH CLAIMS ARE BASED IN CONTRACT, TORT, STATUTE, FRAUD, UNFAIR COMPETITION, MISREPRESENTATION OR ANY OTHER LEGAL THEORY.<br /><br />However, this Section does not apply to the following types of claims or disputes, which you or Valve may bring in any court with jurisdiction: (i) claims of infringement or other misuse of intellectual property rights, including such claims seeking injunctive relief; and (ii) claims related to or arising from any alleged unauthorized use, piracy or theft.<br /><br />This Section does not prevent you from bringing your dispute to the attention of any federal, state, or local government agencies that can, if the law allows, seek relief from us for you.<br /><br />An arbitration is a proceeding before a neutral arbitrator, instead of before a judge or jury. Arbitration is less formal than a lawsuit in court, and provides more limited discovery. It follows different rules than court proceedings, and is subject to very limited review by courts. The arbitrator will issue a written decision and provide a statement of reasons if requested by either party. YOU UNDERSTAND THAT YOU AND VALVE ARE GIVING UP THE RIGHT TO SUE IN COURT AND TO HAVE A TRIAL BEFORE A JUDGE OR JURY.”</p></div></li>
<li id="popup-point-steam-rhykox7XUfs4" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Using your real name is optional <a href="https://groups.google.com/d/topic/tosdr/rhykox7XUfs" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“In some situations, personally identifiable information that users input in connection with their use of Steam may be available to other users of Steam. For example, during the creation of a Steam account, Valve collects a user's email address and username, and at the user's option, first and last name. Some of this information is searchable and available to other users within Steam. Valve has no obligation to keep private personally identifiable information that a user makes available to other users via Steam or other Valve software, such as in multiplayer chat or other public functions.” Moreover no “Personally identifiable information” is shared with third parties for marketing purposes.</p></div></li>
<li id="popup-point-steam-rhykox7XUfs2" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> May share aggregate and individual user information with other parties without restriction <a href="https://groups.google.com/d/topic/tosdr/rhykox7XUfs" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Aggregate information or individual information about a user or users' machine in a form that does not “personally identify” a user can be shared without restriction.</p></div></li>
<li id="popup-point-steam-rhykox7XUfs15" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Jurisdiction: Washington (for non-EU) and Luxembourg. <a href="https://groups.google.com/d/topic/tosdr/rhykox7XUfs" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>For non-EU subscribers: the jurisdiction and the law of Washington apply. For EU subscribers, the law of Luxembourg applies. “However, where the laws of Luxembourg provide a lower degree of consumer protection than the laws of your country of residence, the consumer protection laws of your country shall prevail.”.</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="http://store.steampowered.com/privacy_agreement/">Privacy Policy Agreement</a></li>
<li><a href="http://store.steampowered.com/subscriber_agreement/">Steam Subscriber Agreement</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#steam" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Steam</a></div>
</div><div id="seenthis-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/seenthis.png" alt="" class="pull-left favlogo" height="36" ><h3>SeenThis <small class="service-url"><i class="icon icon-globe"></i> <a href="http://seenthis.net" target="_blank">seenthis.net</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label A">Class A</label><p>The terms of service treat you fairly, respect your rights and follows the best practices.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-seenthis-kizrN7qb1Ck4" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> You are free to choose your copyright license <a href="https://groups.google.com/forum/?fromgroups#!topic/tosdr/kizrN7qb1Ck" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The copyright license granted to SeenThis is limited for the purpose of running the service: you allow them to publish your content on the website and to add automatated data. You are free to choose your own copyright license for your content in your account settings: Public Domain, Creative Commons non commercial, or free licenses, but also classic copyright if you wish so.</p></div></li>
<li id="popup-point-seenthis-IPta_G2GTJk" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> You can get your data back <a href="https://groups.google.com/d/topic/tosdr/IPta_G2GTJk/" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>You can get the totality of your messages at any time in an XML file.</p></div></li>
<li id="popup-point-seenthis-IPta_G2GTJk2" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Right to leave the service <a href="https://groups.google.com/d/topic/tosdr/IPta_G2GTJk/" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>You can ask SeenThis to delete your account at any time, but you have to contact them.</p></div></li>
</ul></section>
<section><h4>Read the Terms</h4><ul class="tosback2">
<li><a href="http://seenthis.net/fran%C3%A7ais/mentions/article/propri%C3%A9t%C3%A9-intellectuelle">Propriété intellectuelle</a></li>
</ul></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#seenthis" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for SeenThis</a></div>
</div><div id="amazon-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/amazon.png" alt="" class="pull-left favlogo" height="36" ><h3>Amazon <small class="service-url"><i class="icon icon-globe"></i> <a href="http://amazon.com" target="_blank">amazon.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-amazon-eff-back-tell-user-no" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service has made no statement nor promised users to tell them about data sought by governments, thus not giving you a chance to defend yourself against government requests.</p></div></li>
<li id="popup-point-amazon-eff-back-transparency-data-no" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is not making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
<li id="popup-point-amazon-...-3" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/amazon%7Csort:relevance">forum</a>) <a href="https://groups.google.com/d/topic/tosdr/.../discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>we are still processing some data points from the <a href="https://groups.google.com/forum/#!searchin/tosdr/amazon%7Csort:relevance">forum</a></p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#amazon" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Amazon</a></div>
</div><div id="whatsapp-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/whatsapp.png" alt="" class="pull-left favlogo" height="36" ><h3>WhatsApp <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-whatsapp-...-5" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/whatsapp%7Csort:relevance">forum</a>) <a href="https://groups.google.com/d/topic/tosdr/.../discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>we are still processing some data points from the <a href="https://groups.google.com/forum/#!searchin/tosdr/whatsapp%7Csort:relevance">forum</a></p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#whatsapp" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for WhatsApp</a></div>
</div><div id="flattr-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/flattr.png" alt="" class="pull-left favlogo" height="36" ><h3>Flattr <small class="service-url"><i class="icon icon-globe"></i> <a href="http://flattr.com" target="_blank">flattr.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-flattr-_ZNQ9J07ntI" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Age limit of 18 <a href="https://groups.google.com/d/msg/tosdr/_ZNQ9J07ntI/aPGR2C_AkskJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Flattr is available only to individuals who are at least 18 years old. </p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#flattr" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Flattr</a></div>
</div><div id="nabble-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/nabble.png" alt="" class="pull-left favlogo" height="36" ><h3>Nabble <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-nabble-CDh_bV7eWSs" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> The terms may be changed without notice <a href="https://groups.google.com/d/topic/tosdr/CDh_bV7eWSs/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>At http://www.nabble.com/Terms.jtp?back=y , there is "This Web site and these Terms of Use may be changed by Nabble with or without notice."</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#nabble" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Nabble</a></div>
</div><div id="apple-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/apple.png" alt="" class="pull-left favlogo" height="36" ><h3>Apple <small class="service-url"><i class="icon icon-globe"></i> <a href="http://apple.com" target="_blank">apple.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-apple-eff-back-tell-user-no" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service has made no statement nor promised users to tell them about data sought by governments, thus not giving you a chance to defend yourself against government requests.</p></div></li>
<li id="popup-point-apple-eff-back-transparency-data-no" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is not making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#apple" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Apple</a></div>
</div><div id="at-t-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/at-t.png" alt="" class="pull-left favlogo" height="36" ><h3>AT&T <small class="service-url"><i class="icon icon-globe"></i> <a href="http://att.com" target="_blank">att.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-at-t-eff-back-tell-user-no" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service has made no statement nor promised users to tell them about data sought by governments, thus not giving you a chance to defend yourself against government requests.</p></div></li>
<li id="popup-point-at-t-eff-back-transparency-data-no" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is not making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#at-t" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for AT&T</a></div>
</div><div id="comcast-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/comcast.png" alt="" class="pull-left favlogo" height="36" ><h3>Comcast <small class="service-url"><i class="icon icon-globe"></i> <a href="http://comcast.com" target="_blank">comcast.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-comcast-eff-back-tell-user-no" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service has made no statement nor promised users to tell them about data sought by governments, thus not giving you a chance to defend yourself against government requests.</p></div></li>
<li id="popup-point-comcast-eff-back-transparency-data-no" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is not making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#comcast" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Comcast</a></div>
</div><div id="foursquare-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/foursquare.png" alt="" class="pull-left favlogo" height="36" ><h3>Foursquare <small class="service-url"><i class="icon icon-globe"></i> <a href="http://foursquare.com" target="_blank">foursquare.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-foursquare-eff-back-tell-user-no" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service has made no statement nor promised users to tell them about data sought by governments, thus not giving you a chance to defend yourself against government requests.</p></div></li>
<li id="popup-point-foursquare-eff-back-transparency-data-no" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is not making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#foursquare" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Foursquare</a></div>
</div><div id="loopt-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/loopt.png" alt="" class="pull-left favlogo" height="36" ><h3>Loopt <small class="service-url"><i class="icon icon-globe"></i> <a href="http://loopt.com" target="_blank">loopt.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-loopt-eff-back-tell-user-no" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service has made no statement nor promised users to tell them about data sought by governments, thus not giving you a chance to defend yourself against government requests.</p></div></li>
<li id="popup-point-loopt-eff-back-transparency-data-no" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is not making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#loopt" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Loopt</a></div>
</div><div id="microsoft-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/microsoft.png" alt="" class="pull-left favlogo" height="36" ><h3>Microsoft <small class="service-url"><i class="icon icon-globe"></i> <a href="http://microsoft.com" target="_blank">microsoft.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-microsoft-eff-back-tell-user-no" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service has made no statement nor promised users to tell them about data sought by governments, thus not giving you a chance to defend yourself against government requests.</p></div></li>
<li id="popup-point-microsoft-eff-back-transparency-data-no" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is not making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#microsoft" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Microsoft</a></div>
</div><div id="myspace-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/myspace.png" alt="" class="pull-left favlogo" height="36" ><h3>myspace <small class="service-url"><i class="icon icon-globe"></i> <a href="http://myspace.com" target="_blank">myspace.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-myspace-eff-back-tell-user-no" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service has made no statement nor promised users to tell them about data sought by governments, thus not giving you a chance to defend yourself against government requests.</p></div></li>
<li id="popup-point-myspace-eff-back-transparency-data-no" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is not making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#myspace" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for myspace</a></div>
</div><div id="couchsurfing-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/couchsurfing.png" alt="" class="pull-left favlogo" height="36" ><h3>couchsurfing <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-couchsurfing-dQV8notmhfI" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> The copyright license on user data is broader than necessary <a href="https://groups.google.com/d/topic/tosdr/dQV8notmhfI/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"5.3 Member Content License. If you post Member Content to our
Services, you hereby grant us a perpetual, worldwide, irrevocable,
non-exclusive, royalty-free and fully sublicensable license to use,
reproduce, display, perform, adapt, modify, create derivative works
from, distribute, have distributed and promote such Member Content in
any form, in all media now known or hereinafter created and for any
purpose, including without limitation the right to use your name,
likeness, voice or identity."</p></div></li>
<li id="popup-point-couchsurfing-9rIMjf6FifM" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Couchsurfing may change their privacy policy without prior notice <a href="https://groups.google.com/d/topic/tosdr/9rIMjf6FifM/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>They will change the date on the document, and you will be considered to have accepted the change by continuing to use the service.</p></div></li>
<li id="popup-point-couchsurfing-1wWcVuiCJ2Y" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Couchsurfing keeps the license on your content, even after you close your account <a href="https://groups.google.com/d/topic/tosdr/1wWcVuiCJ2Y/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"21.7 Survival. Sections 4.4 (Release), 5 (Member Conduct and
Content), 6 (Submissions), 10 (Trademarks), 12 (Third-Party Content),
15 (Member's Representations and Warranties), 16 (Disclaimer of
Warranties), 17 (Limits on Liability), 18 (Indemnity), 20 (Disputes),
and this Section 21 (Miscellaneous) shall survive any termination or
expiration of these Terms."
section 5 is the one that contains the license they get on your content.</p></div></li>
<li id="popup-point-couchsurfing-oZ1VvxnWoeM" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Couchsurfing may retain your data after deactivation for legitimate business purposes <a href="https://groups.google.com/d/topic/tosdr/oZ1VvxnWoeM/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"may retain certain information as required by law, for legitimate
business purposes and to protect member safety." They say they will hold data from already
closed accounts in order to help them combat fraud on the platform. </p></div></li>
<li id="popup-point-couchsurfing-bYGefBK3R_I" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Couchsurfing informs you about the fact that you can disable cookies <a href="https://groups.google.com/d/topic/tosdr/bYGefBK3R_I/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"Cookies
Most web browsers are set to accept cookies by default. If you prefer,
you can usually choose to set your browser to remove or reject browser
cookies; however, our Services may not function properly if you do
so."</p></div></li>
<li id="popup-point-couchsurfing-ShwCMjNBd2o" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Couchsurfing becomes the owner of ideas you give them <a href="https://groups.google.com/d/topic/tosdr/ShwCMjNBd2o/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"If you provide a
Submission, you agree that it is non-confidential (unless CouchSurfing
states otherwise in writing) and shall become the sole property of
CouchSurfing."</p></div></li>
<li id="popup-point-couchsurfing-e8kGDv4CIrQ" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Promotional communications are opt-out <a href="https://groups.google.com/d/topic/tosdr/e8kGDv4CIrQ/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"You may opt out of receiving promotional emails from CouchSurfing by
following the instructions in those emails or by adjusting the
appropriate settings in your profile." - this means the default is that they will send you
promotional communications that you didn't ask them to send you.</p></div></li>
<li id="popup-point-couchsurfing-izRoNcoGOww" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing clearly invite you to contact their volunteer help desk <a href="https://groups.google.com/d/topic/tosdr/izRoNcoGOww/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>they invit you to contact them, but their helpdesk is run by volunteers, so you might not get an answer or reply when you do</p></div></li>
<li id="popup-point-couchsurfing-wOhc-Lscy_0" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing may share aggregated or anonymized information that does not directly identify you. <a href="https://groups.google.com/d/topic/tosdr/wOhc-Lscy_0/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"We may also share aggregated or anonymized information that does not
directly identify you."</p></div></li>
<li id="popup-point-couchsurfing-J3kmwLbA0rE" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> You are not allowed to use a nick name <a href="https://groups.google.com/d/topic/tosdr/J3kmwLbA0rE/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>you have to provide accurate, truthful, current and complete
information when creating an account on CouchSurfing.</p></div></li>
<li id="popup-point-couchsurfing-UMyT4RKXjv0" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing track you <a href="https://groups.google.com/d/topic/tosdr/UMyT4RKXjv0/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>We
may automatically collect information using cookies, web beacons (also
known as "gifs," "pixel tags" and "tracking pixels") and other
tracking technologies to, among other things, improve our Services and
your experience, monitor user activity, count visits, understand usage
and campaign effectiveness and tell if an email has been opened and
acted upon. For information about removing or rejecting cookies,
please see "Your Information Choices" below."</p></div></li>
<li id="popup-point-couchsurfing-x9BDfg-SFqY" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing will pass your data on to the new company if they enter in a merger <a href="https://groups.google.com/d/topic/tosdr/x9BDfg-SFqY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"Sharing of Information
We do not share personal information about you with third parties
except as follows:
[...]
In connection with, or during negotiations of, any merger, sale of
company assets, financing or acquisition of all or a portion of our
business to another company". The consensus on this thread is that this is standard practice, so does not merit negative points.</p></div></li>
<li id="popup-point-couchsurfing-rfLB9eDVNtk" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing will censor the content you upload at their sole discretion <a href="https://groups.google.com/d/topic/tosdr/rfLB9eDVNtk/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"You are solely responsible for any Member Content that you submit,
post or transmit via our Services. You agree not to post, upload to,
transmit, distribute, store, create or otherwise publish through the
Services, Member Content that we believe, in our sole discretion:
(and then a list of reasons, like racism, nudity, drug use, copyright
infringement, etc)</p></div></li>
<li id="popup-point-couchsurfing-5StVgew5VbE" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing cannot blame them for disputes you have with other users <a href="https://groups.google.com/d/topic/tosdr/5StVgew5VbE/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"Because our Services are merely a platform, in the event
that you have a dispute with one or more members, you release us (and
our officers, directors, members, employees, agents and affiliates)
from claims, demands and damages [...]"</p></div></li>
<li id="popup-point-couchsurfing-BmzBPGyHGW0" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Couchsurfing may close your account at their sole discretion <a href="https://groups.google.com/d/topic/tosdr/BmzBPGyHGW0/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>"REPEAT INFRINGER POLICY
In accordance with the Digital Millennium Copyright Act ("DMCA") and
other applicable law, CouchSurfing has adopted a policy of
terminating, in appropriate circumstances and in CouchSurfing's sole
discretion, members who are deemed to be repeat infringers.
CouchSurfing may also, in our sole discretion, limit access to the
Services and/or terminate the accounts of any members who we believe
may infringe any intellectual property rights of others, whether or
not there is any repeat infringement."</p></div></li>
<li id="popup-point-couchsurfing-YkJpj170Qts" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> You should follow the community guidelines <a href="https://groups.google.com/d/topic/tosdr/YkJpj170Qts/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>The community guidelines are here:
http://www.couchsurfing.org/guidelines
you agree to follow them.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#couchsurfing" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for couchsurfing</a></div>
</div><div id="verizon-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/verizon.png" alt="" class="pull-left favlogo" height="36" ><h3>Verizon <small class="service-url"><i class="icon icon-globe"></i> <a href="http://verizon.com" target="_blank">verizon.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-verizon-eff-back-tell-user-no" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> No promise to inform about government requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service has made no statement nor promised users to tell them about data sought by governments, thus not giving you a chance to defend yourself against government requests.</p></div></li>
<li id="popup-point-verizon-eff-back-transparency-data-no" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is not making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#verizon" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Verizon</a></div>
</div><div id="rapidshare-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/rapidshare.png" alt="" class="pull-left favlogo" height="36" ><h3>Rapidshare <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-rapidshare-CYxkhPROM0U" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Rapidshare uses personal information for limited purposes <a href="https://groups.google.com/d/topic/tosdr/CYxkhPROM0U/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>https://www.rapidshare.com/#!rsag_ppolicy
> RapidShare collects only the data that is needed to open and manage your account. This data will not be used for any other purpose. RapidShare takes every affordable precaution to protect your personal information against loss, theft, and misuse as well as against unauthorized access, disclosure, alteration, and destruction by taking all administrative, technical, and physical measures.</p></div></li>
<li id="popup-point-rapidshare-hlI-572bFho" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Rapidshare won't share information to a requesting authority without a legal basis <a href="https://groups.google.com/d/topic/tosdr/hlI-572bFho/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>https://www.rapidshare.com/#!rsag_ppolicy
> If we are legally obliged to turn over information about the origin of a file, we will fulfil that obligation. The legal circumstances will be evaluated individually in each case by our legal department. Without a founded legal basis, no information will be given to a requesting authority.</p></div></li>
<li id="popup-point-rapidshare-DWrWnxYqe48" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Rapidshare does not index or open the files <a href="https://groups.google.com/d/topic/tosdr/DWrWnxYqe48/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>https://www.rapidshare.com/#!rsag_tou
> The files saved with RapidShare are treated confidentially. RapidShare does not provide any search function, with which RapidShare’s infrastructure can be searched. RapidShare does not scan or open the files of its users. The files are not catalogued nor listed in tables of contents by RapidShare. Only the owner of the account has the possibility to allow the access to his files.
https://www.rapidshare.com/#!rsag_ppolicy
> Nobody can access your files without knowledge of the complete download link. This does also apply to RapidShare employees. There is no software that will scan your files for certain patterns or the like.</p></div></li>
<li id="popup-point-rapidshare--BdGb47IMyM" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Rapidshare allows four weeks to terminate contract when changing ToU <a href="https://groups.google.com/d/topic/tosdr/-BdGb47IMyM/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>https://www.rapidshare.com/#!rsag_tou
> RapidShare will inform registered users about changes to the Terms of Use before they become effective. If the user has acquired a chargeable product and changes are made to this product with a disadvantage towards the user, then the user shall be entitled to terminate the contractual relationship within a period of four weeks after receiving notice of the changes. If the user does not make use of his/her right to terminate the contract, then the changes shall be considered accepted and will become effective components of the contract. RapidShare shall be obligated to refer the user to this rule again when providing notification of the new Terms of Use.</p></div></li>
<li id="popup-point-rapidshare-V7iUG2qrakE" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Rapidshare does not guarantee content damage <a href="https://groups.google.com/d/topic/tosdr/V7iUG2qrakE/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>https://www.rapidshare.com/#!rsag_tou
> RapidShare does not guarantee or warrant that any content that the user saves, stores or accesses through the service will not be subject to inadvertent damage, corruption or loss.</p></div></li>
<li id="popup-point-rapidshare-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
<li id="popup-point-rapidshare-QBD8LX5JwdE" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Rapidshare will delete files after 30 days of not been accessed <a href="https://groups.google.com/d/topic/tosdr/QBD8LX5JwdE/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>https://www.rapidshare.com/#!rsag_tou
> RapidShare hereby refers to the fact that, in order to clean its hard drives, is entitled to delete files that have not been accessed for a longer period of time. However, this deletion shall only take place after 30 days have passed since the end of the last download. If a file has not been accessed for download, the minimum storage period of 30 days shall begin with the completion of the upload.</p></div></li>
<li id="popup-point-rapidshare-Ytlp8YaeBr4" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Rapidshare guarantees 99.5% availability <a href="https://groups.google.com/d/topic/tosdr/Ytlp8YaeBr4/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>https://www.rapidshare.com/#!rsag_tou
> Primarily, RapidShare shall provide the functions listed in Number I. (1) 24 hours a day and seven days a week. This accessibility can be guaranteed at a monthly average availability rate of 99.5%. Periods, during which the server cannot be accessed via the internet due to technical issues or other problems, which are not within the sphere of influence of RapidShare (third party faults, force majeure, etc.), are excluded.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#rapidshare" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Rapidshare</a></div>
</div><div id="linkedin-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/linkedin.png" alt="" class="pull-left favlogo" height="36" ><h3>LinkedIn <small class="service-url"><i class="icon icon-globe"></i> <a href="http://linkedin.com/" target="_blank">linkedin.com/</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-linkedin-eff-back-tell-user" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Promise to inform about data requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>A public commitment to inform users when their data is sought by the government, unless prohibited by law. This gives you a chance to defend yourself against overreaching government demands for their data. (cc-by eff)</p></div></li>
<li id="popup-point-linkedin-eff-back-transparency-data" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#linkedin" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for LinkedIn</a></div>
</div><div id="sonic-net-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/sonic-net.png" alt="" class="pull-left favlogo" height="36" ><h3>Sonic.net <small class="service-url"><i class="icon icon-globe"></i> <a href="http://sonic.net" target="_blank">sonic.net</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-sonic-net-nuaSVr9YlaA" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Delete user logs after 2 weeks <a href="https://groups.google.com/d/topic/tosdr/nuaSVr9YlaA" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>Sonic.net will not keep User logs longer than two weeks.</p></div></li>
<li id="popup-point-sonic-net-eff-back-tell-user" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Promise to inform about data requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>A public commitment to inform users when their data is sought by the government, unless prohibited by law. This gives you a chance to defend yourself against overreaching government demands for their data. (cc-by eff)</p></div></li>
<li id="popup-point-sonic-net-eff-back-transparency-data" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#sonic-net" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Sonic.net</a></div>
</div><div id="dropbox-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/dropbox.png" alt="" class="pull-left favlogo" height="36" ><h3>Dropbox <small class="service-url"><i class="icon icon-globe"></i> <a href="http://dropbox.com" target="_blank">dropbox.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-dropbox-eff-back-tell-user" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Promise to inform about data requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>A public commitment to inform users when their data is sought by the government, unless prohibited by law. This gives you a chance to defend yourself against overreaching government demands for their data. (cc-by eff)</p></div></li>
<li id="popup-point-dropbox-eff-back-transparency-data" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
<li id="popup-point-dropbox-...-2" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/dropbox%7Csort:relevance">forum</a>) <a href="https://groups.google.com/d/topic/tosdr/.../discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>we are still processing some data points from the <a href="https://groups.google.com/forum/#!searchin/tosdr/dropbox%7Csort:relevance">forum</a></p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#dropbox" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Dropbox</a></div>
</div><div id="ifttt-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/ifttt.png" alt="" class="pull-left favlogo" height="36" ><h3>IFTTT <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-ifttt-...-6" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/ifttt%7Csort:relevance">forum</a>) <a href="https://groups.google.com/d/topic/tosdr/.../discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>we are still processing some data points from the <a href="https://groups.google.com/forum/#!searchin/tosdr/ifttt%7Csort:relevance">forum</a></p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#ifttt" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for IFTTT</a></div>
</div><div id="freeforums-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/freeforums.png" alt="" class="pull-left favlogo" height="36" ><h3>Freeforums <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-freeforums-gVTL529k5as" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Freeforums reserves the right to change the terms with immediate effect <a href="https://groups.google.com/d/topic/tosdr/gVTL529k5as/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>From http://www.freeforums.org/tos.php: "FreeForums.org reserves the right to change the terms, conditions, and notices at any time, and such modifications shall be effective immediately upon posting of such changes."</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#freeforums" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Freeforums</a></div>
</div><div id="informe-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/informe.png" alt="" class="pull-left favlogo" height="36" ><h3>Informe <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-informe-hiZY0tNP6kQ" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Informe reserves the right to change the terms at any time <a href="https://groups.google.com/d/topic/tosdr/hiZY0tNP6kQ/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>From http://forums.informe.com/TermsOfService.html : "Informe.com reserves the right, at its discretion, to add, change, modify, or remove portions of these terms at any time. "</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#informe" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Informe</a></div>
</div><div id="reddit-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/reddit.png" alt="" class="pull-left favlogo" height="36" ><h3>reddit <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-reddit-...-7" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/reddit%7Csort:relevance">forum</a>) <a href="https://groups.google.com/d/topic/tosdr/.../discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>we are still processing some data points from the <a href="https://groups.google.com/forum/#!searchin/tosdr/reddit%7Csort:relevance">forum</a></p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#reddit" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for reddit</a></div>
</div><div id="spideroak-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/spideroak.png" alt="" class="pull-left favlogo" height="36" ><h3>Spideroak <small class="service-url"><i class="icon icon-globe"></i> <a href="http://spideroak.com" target="_blank">spideroak.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-spideroak-eff-back-tell-user" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Promise to inform about data requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>A public commitment to inform users when their data is sought by the government, unless prohibited by law. This gives you a chance to defend yourself against overreaching government demands for their data. (cc-by eff)</p></div></li>
<li id="popup-point-spideroak-eff-back-transparency-data-50" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Transparency on law enforcement requests <a href="https://groups.google.com/d/msg/tosdr/O1jol2PECRM/hKTMzj1GxpYJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The service is making clear to their users what standards and rules law enforcement must follow when they seek access to sensitive user data.</p></div></li>
<li id="popup-point-spideroak-...-8" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> (more info on the <a href="https://groups.google.com/forum/#!searchin/tosdr/spideroak%7Csort:relevance">forum</a>) <a href="https://groups.google.com/d/topic/tosdr/.../discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>we are still processing some data points from the <a href="https://groups.google.com/forum/#!searchin/tosdr/spideroak%7Csort:relevance">forum</a>
</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#spideroak" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Spideroak</a></div>
</div><div id="identi-ca-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/identi-ca.png" alt="" class="pull-left favlogo" height="36" ><h3>identi.ca <small class="service-url"><i class="icon icon-globe"></i> <a href="http://identi.ca" target="_blank">identi.ca</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-identi-ca-kizrN7qb1Ck3" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Content published under a free license <a href="https://groups.google.com/forum/?fromgroups#!topic/tosdr/kizrN7qb1Ck" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>“you grant all readers the right to use, re-use, modify and/or re-distribute the Content under the terms of the <a href='http://creativecommons.org/licenses/by/3.0/'>Creative Commons Attribution 3.0</a>.”</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#identi-ca" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for identi.ca</a></div>
</div><div id="wordpress-com-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/wordpress-com.png" alt="" class="pull-left favlogo" height="36" ><h3>Wordpress.com <small class="service-url"><i class="icon icon-globe"></i> <a href="http://wordpress.com" target="_blank">wordpress.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-wordpress-com-kizrN7qb1Ck5" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Limited copyright license to Wordpress.com including for promotion <a href="https://groups.google.com/forum/?fromgroups#!topic/tosdr/kizrN7qb1Ck" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>You grant a copyright license to Automattic's Wordpress.com “<strong>solely for the purpose of</strong> displaying, distributing and promoting your blog.”</p></div></li>
<li id="popup-point-wordpress-com-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#wordpress-com" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Wordpress.com</a></div>
</div><div id="netflix-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/netflix.png" alt="" class="pull-left favlogo" height="36" ><h3>netflix <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-netflix-L5pl0Vn9lKY-11" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Lawsuit and class action waiver. Arbitration agreement. Survives termination of ToU agreement. <a href="https://groups.google.com/d/topic/tosdr/L5pl0Vn9lKY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>You and Netflix agree that any dispute, claim or controversy arising out of or relating in any way to the Netflix service, including our website, user interfaces, these Terms of Use and this Arbitration Agreement, shall be determined by binding arbitration instead of in courts of general jurisdiction. Arbitration is more informal than a lawsuit in court. Arbitration uses a neutral arbitrator instead of a judge or jury, allows for more limited discovery than in court, and is subject to very limited review by courts. Arbitrators can award the same damages and relief that a court can award. You agree that, by agreeing to these Terms of Use, the U.S. Federal Arbitration Act governs the interpretation and enforcement of this provision, and that you and Netflix are each waiving the right to a trial by jury or to participate in a class action. This arbitration provision shall survive termination of this Agreement and the termination of your Netflix membership.
YOU AND NETFLIX AGREE THAT EACH MAY BRING CLAIMS AGAINST THE OTHER ONLY IN YOUR OR ITS INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING.</p></div></li>
<li id="popup-point-netflix-L5pl0Vn9lKY-3" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Netflix reserve the right to disclose personal info, no notification. <a href="https://groups.google.com/d/topic/tosdr/L5pl0Vn9lKY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>Netflix also reserves the right to disclose personal information if we reasonably believe that access, use, preservation or disclosure of such information is reasonably necessary to (a) satisfy any applicable law, regulation, legal process, or enforceable governmental request, (b) enforce applicable terms of use, including investigation of potential violations thereof, (c) detect, prevent, or otherwise address illegal or suspected illegal activities, security or technical issues, or (d) protect against harm to the rights, property or safety of Netflix, its users or the public as required or permitted by law. In connection with any reorganization, restructuring, merger or sale, or other transferring of assets we reserve the right to transfer information, including personal information, provided that the receiving party agrees to respect your personal information in a manner that is consistent with our privacy policy.</p></div></li>
<li id="popup-point-netflix-L5pl0Vn9lKY-4" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Users can request access and deletion of personal info. <a href="https://groups.google.com/d/topic/tosdr/L5pl0Vn9lKY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>With respect to your personal information, you can request access and that we correct or delete this personal information by emailing your request to pri...@netflix.com.</p></div></li>
<li id="popup-point-netflix-L5pl0Vn9lKY-10" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Netflix can terminate your account for any reason without notice. <a href="https://groups.google.com/d/topic/tosdr/L5pl0Vn9lKY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>We reserve the right to terminate or restrict your use of our service, without notice, for any or no reason whatsoever.</p></div></li>
<li id="popup-point-netflix-L5pl0Vn9lKY-6" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> Netflix uses 3rd party advertisers that use tracking cookies to target ads. <a href="https://groups.google.com/d/topic/tosdr/L5pl0Vn9lKY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>We use third-party advertising companies to serve ads. These companies may use information about your visits to this and other Web sites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies click here .</p></div></li>
<li id="popup-point-netflix-L5pl0Vn9lKY-8" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No notifications are given about policy changes. Agreeing to the privacy policy and terms also means you agree to any changes in the future. <a href="https://groups.google.com/d/topic/tosdr/L5pl0Vn9lKY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>As we update and expand our services, we may make changes to this policy. You should check back for updates to this policy from time to time. You acknowledge that your assent to the Terms of Use and Privacy Policy subsequent to any changes made following your initial consent as well as, your use of the Netflix website or continued use of our service after our posting of changes to this policy, means that you agree to be bound by such changes. The most current version of this Privacy Policy can be reviewed by visiting our website and clicking on "Privacy Policy" located at the bottom of the pages of the Netflix website. The most current version of the Privacy Policy will supersede all previous versions. We will post prior version(s) on our website when the Privacy Policy is updated. You can see changes from previous versions of the Privacy Policy by visiting our website and clicking here.</p></div></li>
<li id="popup-point-netflix-L5pl0Vn9lKY-7" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> No liability is accepted for improper access to your personal information. <a href="https://groups.google.com/d/topic/tosdr/L5pl0Vn9lKY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>Unfortunately, no security system can be guaranteed to be 100% secure. Accordingly, we cannot guarantee the security of your information and cannot assume liability for improper access to it.</p></div></li>
<li id="popup-point-netflix-L5pl0Vn9lKY-9" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> You can cancel at any time. <a href="https://groups.google.com/d/topic/tosdr/L5pl0Vn9lKY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>You may cancel your Netflix membership at any time. WE DO NOT PROVIDE REFUNDS OR CREDITS FOR ANY PARTIAL-MONTH MEMBERSHIP PERIODS OR UNWATCHED MOVIES OR TV SHOWS.</p></div></li>
<li id="popup-point-netflix-L5pl0Vn9lKY-5" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Cookies are required. <a href="https://groups.google.com/d/topic/tosdr/L5pl0Vn9lKY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>This is probably more of a functional issue than a privacy issue.
The Help portion of the toolbar on most browsers will tell you how to prevent your browser from accepting new cookies, how to have the browser notify you when you receive a new cookie, or how to disable cookies altogether. If your browser is set to not accept any cookies, you will not be able to use the Netflix service or website.</p></div></li>
<li id="popup-point-netflix-L5pl0Vn9lKY-2" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Personal info is used for advertising. <a href="https://groups.google.com/d/topic/tosdr/L5pl0Vn9lKY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>We keep track of your interactions with us and collect information related to you and your use of our service, including but not limited to your online activity, title selections, reviews and ratings, payment history and correspondence as well as Internet protocol addresses, device types, unique device data, such as device identifiers, operating systems, any instant watching of movies, TV shows and related activity. We use this information for such purposes as (list of stuff necessary for running the service).
...
From time to time, we may partner with companies whose products we believe will interest our members. In conjunction with these partners, we may send promotional announcements and/or serve web-based advertisements on their behalf, as permitted by law. You can go to the "Manage mailing preferences" link on the "Your Account" page and request that your name be excluded from marketing emails or postal mail.</p></div></li>
<li id="popup-point-netflix-L5pl0Vn9lKY-1" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Non-personal info can be disclosed in any way. <a href="https://groups.google.com/d/topic/tosdr/L5pl0Vn9lKY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>Non-personal information is information that does not permit direct association with you. We may collect, use, transfer and disclose non-personal information for any purpose.
...
We also provide analysis of our users in the aggregate or otherwise in anonymous form to prospective partners, advertisers and other third parties.</p></div></li>
<li id="popup-point-netflix-L5pl0Vn9lKY" class="point"><div class="not bad"><h5><span class="badge badge-neutral" title="not bad"><i class="icon-arrow-right icon-white">→</i></span> Terms and privacy policy pages are organized and formatted well. <a href="https://groups.google.com/d/topic/tosdr/L5pl0Vn9lKY/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>Index at the top with links to #anchors down the page. The pages are long, but the index helps alleviate that a lot.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#netflix" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for netflix</a></div>
</div><div id="owncube-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/owncube.png" alt="" class="pull-left favlogo" height="36" ><h3>OwnCube <small class="service-url"><i class="icon icon-globe"></i> <a href="http://owncube.com" target="_blank">owncube.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-owncube-Ntp1e20YTGs" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> may change at any time without notice <a href="https://groups.google.com/d/topic/tosdr/Ntp1e20YTGs/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>Owncube may revise these terms of use for its web site at any time without notice. By using this web site you are agreeing to be bound by the then current version of these Terms and Conditions of Use.
</p></div></li>
<li id="popup-point-owncube-naPvRf-l3VM" class="point"><div class="mediocre"><h5><span class="badge badge-warning" title="mediocre"><i class="icon-thumbs-down icon-white">-</i></span> they can remove your account after complaints <a href="https://groups.google.com/d/topic/tosdr/naPvRf-l3VM/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>If we get
abuse information concerning any files hosted on OwnCube, we will
inform the corresponding user about it and give him/her the
opportunity to remove the relevant data IMMEDIATELY. If the files are
not removed within ONE day, we claim the right to remove the user's
account.</p></div></li>
<li id="popup-point-owncube-QzpPtRmNxks" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> user data is not sold <a href="https://groups.google.com/d/topic/tosdr/QzpPtRmNxks/discussion" target="_blank" class="label context">Discussion</a> <!--a href="" class="label context" target="_blank">Terms</a--></h5><p>We do not sell, trade, or rent
Users personal identification information to others.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#owncube" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for OwnCube</a></div>
</div><div id="zoosk-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/zoosk.png" alt="" class="pull-left favlogo" height="36" ><h3>Zoosk <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-zoosk-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#zoosk" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Zoosk</a></div>
</div><div id="ebuddy-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/ebuddy.png" alt="" class="pull-left favlogo" height="36" ><h3>eBuddy <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-ebuddy-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#ebuddy" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for eBuddy</a></div>
</div><div id="habbo-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/habbo.png" alt="" class="pull-left favlogo" height="36" ><h3>Habbo <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-habbo-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#habbo" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Habbo</a></div>
</div><div id="evernote-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/evernote.png" alt="" class="pull-left favlogo" height="36" ><h3>Evernote <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-evernote-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#evernote" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Evernote</a></div>
</div><div id="minecraft-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/minecraft.png" alt="" class="pull-left favlogo" height="36" ><h3>Minecraft <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-minecraft-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#minecraft" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Minecraft</a></div>
</div><div id="vbulletin-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/vbulletin.png" alt="" class="pull-left favlogo" height="36" ><h3>vBulletin <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-vbulletin-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#vbulletin" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for vBulletin</a></div>
</div><div id="runescape-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/runescape.png" alt="" class="pull-left favlogo" height="36" ><h3>RuneScape <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-runescape-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#runescape" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for RuneScape</a></div>
</div><div id="bearshare-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/bearshare.png" alt="" class="pull-left favlogo" height="36" ><h3>BearShare <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-bearshare-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#bearshare" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for BearShare</a></div>
</div><div id="wordfeud-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/wordfeud.png" alt="" class="pull-left favlogo" height="36" ><h3>Wordfeud <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-wordfeud-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#wordfeud" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Wordfeud</a></div>
</div><div id="olx-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/olx.png" alt="" class="pull-left favlogo" height="36" ><h3>OLX <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-olx-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#olx" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for OLX</a></div>
</div><div id="phpbb-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/phpbb.png" alt="" class="pull-left favlogo" height="36" ><h3>phpBB <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-phpbb-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#phpbb" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for phpBB</a></div>
</div><div id="xfire-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/xfire.png" alt="" class="pull-left favlogo" height="36" ><h3>Xfire <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-xfire-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#xfire" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Xfire</a></div>
</div><div id="world-of-warcraft-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/world-of-warcraft.png" alt="" class="pull-left favlogo" height="36" ><h3>World of Warcraft <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-world-of-warcraft-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#world-of-warcraft" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for World of Warcraft</a></div>
</div><div id="bit-ly-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/bit-ly.png" alt="" class="pull-left favlogo" height="36" ><h3>bitly <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-bit-ly-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#bit-ly" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for bitly</a></div>
</div><div id="hypster-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/hypster.png" alt="" class="pull-left favlogo" height="36" ><h3>Hypster <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-hypster-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#hypster" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Hypster</a></div>
</div><div id="videobb-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/videobb.png" alt="" class="pull-left favlogo" height="36" ><h3>videoBB <small class="service-url"><i class="icon icon-globe"></i> <a href="http://undefined" target="_blank">undefined</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-videobb-T98obrJsjJA-2" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> You cannot delete your account <a href="https://groups.google.com/d/msg/tosdr/T98obrJsjJA/w1Gp9SDABtkJ" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>It is impossible to delete your account from this service, according to the <a href='http://www.accountkiller.com/en/Blacklist'>AccountKiller blacklist</a>.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#videobb" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for videoBB</a></div>
</div><div id="gravatar-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/gravatar.png" alt="" class="pull-left favlogo" height="36" ><h3>Gravatar <small class="service-url"><i class="icon icon-globe"></i> <a href="http://gravatar.com" target="_blank">gravatar.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-gravatar-T98obrJsjJA" class="point"><div class="alert"><h5><span class="badge badge-important" title="alert"><i class="icon-remove icon-white">×</i></span> No Right to leave the service <a href="https://groups.google.com/d/topic/tosdr/T98obrJsjJA" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>You grant them a <strong>perpetual</strong> right to perform the service: you cannot terminate your account, and you must associate your username with at least one of your email addresses.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#gravatar" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Gravatar</a></div>
</div><div id="instagram-tosdr" class="modal hide tosdr-infos" role="dialog"><div class="modal-header"><button data-dismiss="modal" class="close" type="button">×</button><img src="logo/instagram.png" alt="" class="pull-left favlogo" height="36" ><h3>Instagram <small class="service-url"><i class="icon icon-globe"></i> <a href="http://instagram.com" target="_blank">instagram.com</a></small></h3></div>
<div class="modal-body"><div class="tosdr-rating"><label class="label false">No Class Yet</label><p>We haven't sufficiently reviewed the terms yet. Please contribute to our group: <a href="get-involved.html">Get involved</a>.</p></div>
<section class="specificissues"> <ul class="tosdr-points"><li id="popup-point-instagram-wy9QcF5zQII" class="point"><div class="good"><h5><span class="badge badge-success" title="good"><i class="icon-thumbs-up icon-white">+</i></span> Limited license, but includes right for Instagram to distribute through any media <a href="https://groups.google.com/d/topic/tosdr/wy9QcF5zQII" target="_blank" class="label context">Discussion</a> <!--a href="undefined" class="label context" target="_blank">Terms</a--></h5><p>The copyright licence is limited and does <strong>not</strong> include the rights to transfer or sublicense to third-parties. However, the licence includes “without limitation distributing part or all of the Site in any media formats through any media channels” i.e. your content can be distributed by Instagram outside the Instagram Services.</p></div></li>
</ul></section>
<section><a href="/get-involved.html" class="btn">Help us find the Terms »</a></section>
</div><div class="modal-footer"><a class="btn" data-dismiss="modal" href="#">Close</a><a href="#instagram" rel="bookmark"><i class="icon icon-share"></i> Link to ToS;DR for Instagram</a></div>
</div></div> </section>
<section id="classification">
<div class="page-header"><h2>Classification <small>Making the fine print easy to understand</small></h2></div>
<p>
Terms of service are reviewed by contributors and divided into small points that we can discuss, <a href="topics.html">compare</a> and ultimately assign a score with a badge: <br /><span class="badge badge-success"><i class="icon-thumbs-up icon-white">+</i> Good</span>, <span class="badge badge-warning"><i class="icon-thumbs-down icon-white">-</i> Mediocre</span>, <span class="badge badge-important"><i class="icon-remove icon-white">×</i> Alert</span>, or <span class="badge"><i class="icon-arrow-right icon-white">→</i> Informative</span>.
</p>
<p>
Once a service has enough badges to assess the fairness of their terms for users, a class is assigned automatically by pondering the average scores.
</p>
<p>
<span class="label A" style="vertical-align:middle">Class A</span> are the best terms of services: they treat you fairly, respect your rights and will not abuse your data.
</p>
<p><span class="label B">Class B</span> The terms of services are fair towards the user but they could be improved.</p>
<p><span class="label C">Class C</span> The terms of service are okay but some issues need your consideration.</p>
<p><span class="label D">Class D</span> The terms of service are very uneven or there are some important issues that need your attention.</p>
<p><span class="label E">Class E</span> The terms of service raise very serious concerns.</p>
<p><span class="label false">No Class Yet</span> We haven't sufficiently reviewed the terms yet.
</section>
<section id="workinprogress">
<div class="page-header"><h2>Work in Progress <a href="get-involved.html" class="btn btn-primary">Get involved! »</a></h2></div>
<p>
ToS;DR is a young project started in June 2012. The data is subject to important changes. This is your opportunity to help us fix the “biggest lie on the web”: join us if you have information to contribute related to specific terms or if you have a comment!
</p>
<p>
ToS;DR aims at creating a transparent and peer-reviewed process to rate and analyse Terms of Service and Privacy Policies in order to create a rating from Class A to Class E. We need more <strong>legal expertise</strong>, please also join the working-group. We also need people to contribute source code. Everything is <strong>JavaScript</strong> and JSON. The data is freely available (CC-BY-SA) and ready to be used for other tools, like browser extensions.
</p>
<p class="pull-left">
<a href="https://groups.google.com/d/forum/tosdr" class="btn"><img src="img/icons/group.png" style="width:20px; opacity:0.6;" /> Join the working group</a>
<br />
<small>No Google account? <a href="mailto:tosdr+subscribe@googlegroups.com">Join by email</a></small>
</p>
<p>
<a href="http://webchat.freenode.net/?channels=#tosdr" class="btn"><img src="img/icons/conversation.png" style="width:20px; opacity:0.6;" /> Chat #tosdr on IRC</a>
<a href="http://github.com/didnotread/didnotread.org" class="btn"><img src="img/github.png" /> Source Code and Issues</a>
</p>
<h3 style="clear:both">Roadmap</h3>
<ul>
<li>Mid-July: Finishing analysis of major terms: <a href="#facebook">social</a> <a href="#twitter">net</a><a href="#seenthis">works</a>, <a href="#duckduckgo">search</a> <a href="#google">engines</a>, <a href="#twitpic">pho</a><a href="#500px">to</a> <a href="#soundcloud">sharing</a>, blogs. (Done: 90%)</li>
<li>End-July: Implementation of comparisons by category or <a href="topics.html">specific topic</a>; Improvement of score and rating systems. (Done: 100%)</li>
<li>Mid-August: <a href="api.html">API</a>, crowd-sourcing and integration with Tosback2, add ability to subscribe. (Done:50%)</li>
<li>End-August: <a href="http://www.campus-party.eu/2012/security.html#Keyun">Presentation of ToS;DR at Campus Party, Berlin</a></li>
<li>September: Crowd funding campaign to make the project sustainable.</li>
</ul>
</section>
<section id="wthru">
<div class="page-header"><h2>About <small>this Unhosted project</small></h2></div>
<p>
The rough idea behind ToS;DR emerged during the <a href="http://events.ccc.de/camp/2011/wiki/ToS;DR">2011 Chaos Communication Camp</a> near Berlin, with people from <a href="http://unhosted.org">Unhosted</a> a movement to create web apps that give users control over their valuable user data and privacy. Since June 2012, <a href="http://hugoroy.eu/index.en.html">Hugo Roy</a> (<a href="http://twitter.com/hugoroyd">@hugoroyd</a>) has taken the lead for the project, and started the legal analysis. Ultimately, all the work is transparent and the discussions happen in public. Our work is funded by non-profits organisations and individual <a href="https://flattr.com/thing/821090/ToSDR">donations</a> and gets released as <a href="http://fsfe.org/about/basics/freesoftware.html">free software</a> and open data.</a>
</p>
<p><strong>What does “ToS;DR” mean?</strong> the name is inspired by internet acronym TL;DR which stands for "Too Long; Didn't Read" and is often used on blogs and emails when a block of text is just really long and that people are too lazy to read the whole stuff. It was intended more as a code name than as a real name. But it seems that people like it (do you?)</p>
<div class="row-fluid">
<div class="span1">
<img src="img/hugo.png" alt="" />
</div>
<div class="span3">
<h3><a href="http://hugoroy.eu/index.en.html">Hugo Roy</a> Project Lead <small><a href="http://twitter.com/hugoroyd">@hugoroyd</a></small></h3>
<p>
Hugo is a Free Software hacktivist at <a href="http://fsfe.org">Free Software Foundation Europe</a> and a law student at <em>Sciences Po</em> university. He is currently living between Berlin and Paris, where he is often referred to as a Zappa Freak.
</p>
</div>
<div class="span1">
<img src="img/michiel.jpg" alt="" />
</div>
<div class="span3">
<h3><a href="http://michielbdejong.com/">Michiel de Jong</a> <small><a href="http://twitter.com/michielbdejong">@michielbdejong</a></small></h3>
<p>
Michiel de Jong is an independent freedom hacker, travelling the world while programming for the revolution from his laptop. Apart from ToS;DR he is also involved in <a href="http://2012.unhosted.org">The Unhosted Unconference</a> and he is a co-author of <a href="http://www.w3.org/community/unhosted/wiki/RemoteStorage">the remoteStorage protocol</a>.
</p>
</div>
<div class="span1">
<img src="img/jan.jpg" alt="" />
</div>
<div class="span3">
<h3><a href="http://jancborchardt.net">Jan-Christoph Borchardt</a> <small><a href="http://twitter.com/jancborchardt">@jancborchardt</a></small></h3>
<p>
Jan-Christoph Borchardt is a free culture interaction designer, advisor & educator. He curates <a href="http://libreprojects.net">open source web projects</a>, designs <a href="http://unhosted.org">unhosted web apps</a> & <a href="http://ownCloud.org">ownCloud</a> and <a href="http://jancborchardt.net/usability-in-free-software">teaches better usability</a>.
</p>
</div>
</div>
</section>
<footer id="bottom">
<p id="credits"><strong><a href="http://tos-dr.info">Terms of Service; Didn't Read</a></strong> is a project by <a href="http://unhosted.org">Unhosted</a>, inspired by Aza Raskin's <a href="http://azarask.in/blog/post/privacy-icons/">Privacy Icons</a> and EFF's <a href="http://github.com/pde/tosback2">TOSBack</a>. Also related: <a href="http://www.opennotice.org/">OpenNotice</a>.</p>
<p id="legalinfo"><strong>Nothing here should be considered legal advice</strong>. We express our opinion with no guarantee and we do not endorse any service in any way. Please refer to a qualified attorney for legal advice. <strong>Reading ToS;DR is in no way a replacement for reading the full terms to which you are bound.</strong> Disclosure: a list of donors and supporters of Unhosted <a href="http://unhosted.org/#thanks">is published</a>. DuckDuckGo has donated to the Unhosted project, before they knew about ToS;DR. <a href="legal.html">All legal information and Imprint</a>.</p>
<p id="licensing"><a href="http://tos-dr.info">ToS;DR</a> is Free Software, licensed under the GNU Affero General Public License (<a href="http://www.gnu.org/licenses/agpl-3.0-standalone.html" rel="license">AGPL-3.0</a>). Offer for <a href="https://github.com/didnotread/didnotread.org/zipball/master">Source (zip)</a>. The <code>.json</code> data inside the <a href="https://github.com/didnotread/didnotread.org/tree/master/services"><code>services/</code></a> and <a href="https://github.com/didnotread/didnotread.org/tree/master/points"><code>points/</code></a> directories are also licensed under the Attribution - Share Alike (<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">CC BY-SA 3.0</a>). Icons by <a href="http://glyphicons.com/glyphicons-licenses/">Glyphicons</a> used under a CC BY <a href="http://creativecommons.org/licenses/by/3.0/deed.en">3.0 Unported license</a>. Thumbs Up and Thumbs Down icons modified by Jan.</p>
<p id="technical" class="center"><span style="color:#999">Un</span>hosted by <a href="https://5apps.com/apps/4fd06274c439346fd700005e"><img src="img/unhostedby5apps.png" alt="5apps" /></a>
</footer>
<!--alerts etc-->
<div class="container" id="alerts-etc">
<div id="browser-extension" class="pull-right alert fade in"><button type="button" class="close" data-dismiss="alert">×</button>
We have a prototyped browser extension for <a href="https://addons.mozilla.org/en-US/firefox/addon/terms-of-service-didnt-read/">Firefox</a>, <a href="https://chrome.google.com/webstore/detail/hjdoplcnndgiblooccencgcggcoihigg">Chrome</a> and <a href="http://safariextension.tos-dr.info/">Safari</a>. Try them out!
</div>
</div>
</div> <!-- /container -->
<!-- <script src="bootstrap/js/bootstrap-twipsy.js"></script>-->
<script src="bootstrap/js/bootstrap-collapse.js"></script>
<script src="bootstrap/js/bootstrap-modal.js"></script>
<script src="bootstrap/js/bootstrap-transition.js"></script>
<!-- <script src="bootstrap/js/bootstrap-typeahead.js"></script>-->
<script src="bootstrap/js/bootstrap-alert.js"></script>
<script>
$(window).load(function(){
if(location.hash.length>1 && $('#'+location.hash.substring(1)+'-tosdr')) {
$('#'+location.hash.substring(1)+'-tosdr').modal();
}
});
document.getElementById('searchBox').onkeyup = function() {
var serviceDivs = document.getElementsByClassName('service-nutshell');
var searchTerm = document.getElementById('searchBox').value.toLowerCase();
var tophit;
for(var i=0; i<serviceDivs.length; i++) {
var terms = [];
for(var j=0; j<serviceDivs[i].attributes.length; j++) {
if(serviceDivs[i].attributes[j].name=='data-search') {
terms = serviceDivs[i].attributes[j].value.split(',');
break;
}
}
var match = false;
for(var j=0; j<terms.length; j++ ) {
if(terms[j].substring(0, searchTerm.length) == searchTerm) {
match=true;
break;
}
}
if(match) {
serviceDivs[i].style.display='block';
if(serviceDivs[i].id.substring(0, searchTerm.length)==searchTerm) {
tophit=i;
}
} else {
serviceDivs[i].style.display='none';
}
}
//if(typeof(tophit) != 'undefined') {
// var elt = document.getElementById('services-list').removeChild(serviceDivs[tophit]);
// document.getElementById('services-list').insertBefore(elt, serviceDivs[0]);//
//}
};
document.getElementById('searchDiv').style.display="block";
</script>
</body>
</html>