-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathlist.html
More file actions
1508 lines (1508 loc) · 59.3 KB
/
list.html
File metadata and controls
1508 lines (1508 loc) · 59.3 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
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{{ define "main" -}}
<h1 id="jsbintermsofserviceagreement">
<a class="anchor" href="#jsbintermsofserviceagreement">
<span class="permalink"></span>
</a>JS Bin Terms of Service Agreement</h1>
<small>Last updated {{ .PublishDate.Format "2-Jan, 2006" }}</small>
<div id="legal">
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="1">
<a class="anchor" href="#1">
<span class="permalink"></span>
</a>1.</h2>
</td>
<td>
<strong>Definitions</strong>
</td>
</tr>
<tr>
<td>
<h2 id="11">
<a class="anchor" href="#11">
<span class="permalink"></span>
</a>1.1.</h2>
</td>
<td>
<p>The following defined terms apply in this agreement.</p>
<p>
<strong>Account</strong>: means your account enabling you to access the Services relevant to your subscription being
one, some or all of the following accounts - “Anonymous User”, “Free User” or “Pro User” or such other package
as JS Bin may provide from time to time.</p>
<p>
<strong>Bin</strong>: means the User’s generated Content as “Content” is defined later in these Terms.</p>
<p>
<strong>Documentation</strong>: any documentation made available to the User by JS Bin online via the JS Bin Site or
such other web address where the Services may be accessed by the User from time to time which sets out a description
of the Services and the User instructions for the Services.</p>
<p>
<strong>Services</strong>: the services provided by JS Bin to you as defined in clause 2.2 below.</p>
<p>
<strong>Software</strong>: the online software applications provided by JS Bin as part of the Services.</p>
<p>
<strong>Terms</strong>: the terms and conditions set out in this document.</p>
<p>
<strong>User</strong>: the user of the Service being a person who has set up an Account.</p>
</td>
</tr>
<tr>
<td>
<h2 id="12">
<a class="anchor" href="#12">
<span class="permalink"></span>
</a>1.2.</h2>
</td>
<td>
<p>Any other defined terms (introduced as such by capitalisation in bold) which appear later in these Terms will
take the meaning ascribed to them.</p>
</td>
</tr>
<tr>
<td>
<h2 id="13">
<a class="anchor" href="#13">
<span class="permalink"></span>
</a>1.3.</h2>
</td>
<td>
<p>A reference to writing or written means to email.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>This mighty document is our legal terms. Exciting stuff, but worth taking a few minutes to look through to understand
what it means to you.</p>
<p>We've tried to summarise the main points of each section, to make our terms a little more digestable.</p>
</div>
<hr>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="2">
<a class="anchor" href="#2">
<span class="permalink"></span>
</a>2.</h2>
</td>
<td>
<strong>Our contract with you</strong>
</td>
</tr>
<tr>
<td>
<h2 id="21">
<a class="anchor" href="#21">
<span class="permalink"></span>
</a>2.1.</h2>
</td>
<td>
<p>These Terms are a contract between you, the User, and JS Bin Limited (“we” or “us”), a company incorporated in
England and Wales under company number 08998555 with its registered office at 44 Burstead Close, Brighton BN1
7HT (‘
<strong>JS Bin</strong>’).</p>
</td>
</tr>
<tr>
<td>
<h2 id="22">
<a class="anchor" href="#22">
<span class="permalink"></span>
</a>2.2.</h2>
</td>
<td>
<p>JS Bin operates jsbin.com which includes other domains from time to time which direct to jsbin.com via DNS aliases
(the ‘
<strong>JS Bin Site</strong>’) and the JS Bin creation service contained therein. By using the JS Bin Site and any
services accessible from the JS Bin Site, you are agreeing to be bound by these Terms. If you do not agree
to these Terms or any part thereof, your only remedy is to not use the JS Bin Site or any services or products
offered on the JS Bin Site or on any other platform, including mobile applications, offered by JS Bin (collectively,
the ‘
<strong>Service</strong>’ or ‘
<strong>Services</strong>’).</p>
</td>
</tr>
<tr>
<td>
<h2 id="23">
<a class="anchor" href="#23">
<span class="permalink"></span>
</a>2.3.</h2>
</td>
<td>
<p>Breach of these Terms or any part thereof will entitle JS Bin to terminate your right to use the Service. Any
account you may have created will be deleted. JS Bin reserves the right to refuse provision of the Service
to anyone at their complete discretion.</p>
</td>
</tr>
<tr>
<td>
<h2 id="24">
<a class="anchor" href="#24">
<span class="permalink"></span>
</a>2.4.</h2>
</td>
<td>
<p>You agree and accept that your use of the Service is entirely at your own risk.</p>
</td>
</tr>
<tr>
<td>
<h2 id="25">
<a class="anchor" href="#25">
<span class="permalink"></span>
</a>2.5.</h2>
</td>
<td>
<p>These Terms will apply for as long as you use the JS Bin Site and/or the Services. Any part of these Terms that
by necessity or implication are to continue after your use of the JS Bin Site or the Services ends (including
the licence under clause 5.1) shall continue in force.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>There are a few rules which we need to play by. We run jsbin.com and all the sites under that domain.</p>
<p>If you break the rules by Being a Jerk™ then we reserve the right to remove your user and your Bins from JS Bin.</p>
</div>
<hr>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="3">
<a class="anchor" href="#3">
<span class="permalink"></span>
</a>3.</h2>
</td>
<td>
<strong>Your account</strong>
</td>
</tr>
<tr>
<td>
<h2 id="31">
<a class="anchor" href="#31">
<span class="permalink"></span>
</a>3.1.</h2>
</td>
<td>
<p>In order to create an Account on the JS Bin Site you must agree to be bound by these Terms and you must provide
such information as is reasonably requested by JS Bin during the registration process. You warrant the accuracy
and completeness of such information while you are using the Service. If you operate as an Anonymous User and
do not register and create an Account you will still be bound by these Terms by virtue of your use and the
reasonable implication that such use of the Services and functionality provided by the JS Bin Site would require
acceptance of reasonable Terms of Use such as these.</p>
</td>
</tr>
<tr>
<td>
<h2 id="32">
<a class="anchor" href="#32">
<span class="permalink"></span>
</a>3.2.</h2>
</td>
<td>
<p>Your Account will feature the Services which you select from the packages available to Users from time to time
(currently Anonymous User, Free User and Pro User) and your choice of Account will determine whether or not
your Bins will be available for public dissemination or whether you can elect to keep them private. You can
upgrade your Account and similarly you can downgrade it at your discretion subject only to the payment terms
for any paid for Account.</p>
</td>
</tr>
<tr>
<td>
<h2 id="33">
<a class="anchor" href="#33">
<span class="permalink"></span>
</a>3.3.</h2>
</td>
<td>
<p>You are responsible for maintaining the security of your Account and password. You agree that you shall be solely
responsible for any loss or damage resulting from failure to comply with this obligation.</p>
</td>
</tr>
<tr>
<td>
<h2 id="34">
<a class="anchor" href="#34">
<span class="permalink"></span>
</a>3.4.</h2>
</td>
<td>
<p>You shall use all reasonable endeavours to prevent any unauthorised access to, or use of, the Services and/or
the Documentation and, in the event of any such unauthorised access or use, promptly notify JS Bin.</p>
</td>
</tr>
<tr>
<td>
<h2 id="35">
<a class="anchor" href="#35">
<span class="permalink"></span>
</a>3.5.</h2>
</td>
<td>
<p>Accounts registered by ‘bots’ or other automated methods are not permitted.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>If you use JS Bin, you're bound by these terms. If you create an account, please use your own email address.</p>
<p>Pro (aka "paid for accounts") accounts let you create private Bins, otherwise all your Bins are public by default.</p>
<p>You're responsible for your own account. Also, if you're a robot: you're not allowed a JS Bin account.</p>
</div>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="36">
<a class="anchor" href="#36">
<span class="permalink"></span>
</a>3.6.</h2>
</td>
<td>
<p>You are responsible for all content, code, features, comments, graphics or text that you may post on the JS Bin
Site (the ‘
<strong>Content</strong>’) and activity that occurs under your Account (even when Content is posted by others who have
access to your Account).</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>You are responsible for the content in your Bins. Don't go infringing on other people's copyrights.</p>
</div>
<hr>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="4">
<a class="anchor" href="#4">
<span class="permalink"></span>
</a>4.</h2>
</td>
<td>
<strong>Our Licence to You</strong>
</td>
</tr>
<tr>
<td>
<h2 id="41">
<a class="anchor" href="#41">
<span class="permalink"></span>
</a>4.1.</h2>
</td>
<td>
<p>JS Bin hereby grants you a non-exclusive, non-transferable, worldwide right to access and use the JS Bin Site,
solely with supported browsers through the Internet for your own internal purposes, subject to these Terms.</p>
</td>
</tr>
<tr>
<td>
<h2 id="42">
<a class="anchor" href="#42">
<span class="permalink"></span>
</a>4.2.</h2>
</td>
<td>
<p>You may not permit the JS Bin Site to be used by or for the benefit of any third parties.</p>
</td>
</tr>
<tr>
<td>
<h2 id="43">
<a class="anchor" href="#43">
<span class="permalink"></span>
</a>4.3.</h2>
</td>
<td>
<p>Nothing in these Terms shall be construed to grant you any right to transfer or assign rights to access or use
the JS Bin Site.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>You can use JS Bin on jsbin.com. Also, JS Bin is
<a href="https://github.com/jsbin/jsbin">open source</a> and MIT licensed, so you can use it where you want too.</p>
</div>
<hr>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="5">
<a class="anchor" href="#5">
<span class="permalink"></span>
</a>5.</h2>
</td>
<td>
<strong>Your Licence to Us</strong>
</td>
</tr>
<tr>
<td>
<h2 id="51">
<a class="anchor" href="#51">
<span class="permalink"></span>
</a>5.1.</h2>
</td>
<td>
<p>Subject to clause 5.2, you hereby grant JS Bin and other Users of the Services a worldwide, non-exclusive, royalty-free
licence (with the right to sub-licence) to use, copy, reproduce, process, adapt, modify, publish, transmit,
display and distribute Content you submit, post or display on the JS Bin Site in any and all media or distribution
methods (now known or later developed). Such Content shall be licensed upon the terms of the
<a href="http://jsbin.mit-license.org">MIT licence</a>.</p>
</td>
</tr>
<tr>
<td>
<h2 id="52">
<a class="anchor" href="#52">
<span class="permalink"></span>
</a>5.2.</h2>
</td>
<td>
<p>If you specifically save a Bin as private on the JS Bin Site, and that Bin has never been public on the JS Bin
Site or anywhere else, the code in that particular Bin is unlicensed.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>Public Bins you build on JS Bin are MIT licensed, meaning other people are free to use it for whatever they like as long
as that is also
<a href="http://jsbin.mit-license.org">MIT licensed</a>. Don't put anything on JS Bin where that wouldn't be okay. Private Bins are un-licensed so that you
may apply your own license and retain direct ownership.</p>
</div>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="53">
<a class="anchor" href="#53">
<span class="permalink"></span>
</a>5.3.</h2>
</td>
<td>
<p>You agree that the licence in clause 5.1 includes the right for JS Bin and other users of the Services to make
your Content available to others for the publication, distribution, syndication, or broadcast of such Content
on other media and services, subject to our terms and conditions for such Content use. Such additional uses
by JS Bin or others may be made with no compensation paid to you with respect to the Content that you submit,
post, transmit or otherwise make available through the Services.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>People don't have to pay to see your Bins.</p>
</div>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="54">
<a class="anchor" href="#54">
<span class="permalink"></span>
</a>5.4.</h2>
</td>
<td>
<p>JS Bin may modify or adapt your Content in order to transmit, display or distribute it over computer networks
and in various media and/or make changes to your Content as are necessary to conform and adapt that Content
to any requirements or limitations of any networks, devices, services or media.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>People can create clones of your Bins.</p>
</div>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="55">
<a class="anchor" href="#55">
<span class="permalink"></span>
</a>5.5.</h2>
</td>
<td>
<p>You warrant, represent and agree that you have the right to grant JS Bin the licence in clause 5.1. You also
represent, warrant and agree that you have not and will not contribute any Content that:</p>
<ol>
<li>infringes or otherwise interferes with any copyright or trade mark of another party;</li>
<li>reveals any confidential information or trade secret, unless the confidential information or trade secret belongs
to you or you have the owner's permission to disclose it; or</li>
<li>infringes any intellectual property right of another or the privacy or publicity rights of another.</li>
</ol>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>Don't infringe on other people's copyright.</p>
</div>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="56">
<a class="anchor" href="#56">
<span class="permalink"></span>
</a>5.6.</h2>
</td>
<td>
<p>You are responsible for your use of the Service, for any Content you provide, and for any consequences thereof,
including the use of your Content by other users and third party partners. You understand that your Content
may be republished and if you do not have the right to submit Content for such use, it may subject you to liability.
JS Bin will not be responsible or liable for any use of your Content in accordance with these Terms.
</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="57">
<a class="anchor" href="#57">
<span class="permalink"></span>
</a>5.7.</h2>
</td>
<td>
<p>JS Bin cannot monitor or control the Content posted via the Services. Any use of or reliance on the Content posted
via the Services or obtained by your through the Services is at your own risk. We do not endorse, support,
represent or guarantee the completeness, truthfulness, accuracy, or reliability of any Content or communications
posted via the Services. You recognise that by using the Services, you may be exposed to Content that may be
offensive, harmful, inaccurate or otherwise inappropriate and, whilst we may act to remove it where we are
notified and deem it necessary or appropriate to do so or where a third party with legal authority demands
that we do so, we are not responsible for it. Under no circumstances will JS Bin be liable in any way for any
Content, including but not limited to, any errors or omissions in any Content, or any loss of damage of any
kind incurred as a result of the use of the Content made available via the Services.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>We don't monitor what you post on JS Bin, nor are liable for what's posted, so if you see something that breaks the rules,
<a href="mailto:jsbin@leftlogic.com">please let us know</a>.</p>
</div>
<hr>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="6">
<a class="anchor" href="#6">
<span class="permalink"></span>
</a>6.</h2>
</td>
<td>
<strong>Payment</strong>
</td>
</tr>
<tr>
<td>
<h2 id="61">
<a class="anchor" href="#61">
<span class="permalink"></span>
</a>6.1.</h2>
</td>
<td>
<p>A valid credit card is required for paying Accounts. The JS Bin Site is billed in advance on a monthly basis
in accordance with our pricing schedule and all payments are non-refundable. There will be no refunds or credits
for partial months of Service, upgrade/downgrade refunds, or refunds for months unused with an open Account.
</p>
</td>
</tr>
<tr>
<td>
<h2 id="62">
<a class="anchor" href="#62">
<span class="permalink"></span>
</a>6.2.</h2>
</td>
<td>
<p>You will be billed for your first month immediately upon signing up for a paying Account. After signing up for
a paying Account, you will be billed monthly starting on the 30th day after your Account was initially created.
You will be billed for your first month immediately upon upgrading to a paying Account or a higher level Account.
For any upgrade or downgrade in Account level, your credit card will automatically be charged a pro-rated fee
for the new level and subsequent months billed at the full rate for the chosen type of Account.</p>
</td>
</tr>
<tr>
<td>
<h2 id="63">
<a class="anchor" href="#63">
<span class="permalink"></span>
</a>6.3.</h2>
</td>
<td>
<p>Downgrading your JS Bin Account may cause loss of content, features, or capacity of your Account. JS Bin does
not accept any liability for such loss.</p>
</td>
</tr>
<tr>
<td>
<h2 id="64">
<a class="anchor" href="#64">
<span class="permalink"></span>
</a>6.4.</h2>
</td>
<td>
<p>Prices of all JS Bin Accounts, including but not limited to monthly subscription fees to the applicable Account,
are subject to change upon 30 days notice from JS Bin. Such notice may be given at any time by posting the
changes to the JS Bin Site.</p>
</td>
</tr>
<tr>
<td>
<h2 id="65">
<a class="anchor" href="#65">
<span class="permalink"></span>
</a>6.5.</h2>
</td>
<td>
<p>All fees are exclusive of all taxes, levies, or duties imposed by taxing authorities, and you shall be responsible
for payment of all such taxes, levies, or duties, excluding only United Kingdom sales taxes. You agree to pay
for any such taxes that might be applicable to your use of the Services and payments made by you herein.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>All sales are final. You'll be billed on the 30th day after creating a paid for account.</p>
<p>If you downgrade, you will lose access to Pro features.</p>
<p>You're responsible for your taxes.</p>
</div>
<hr>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="7">
<a class="anchor" href="#7">
<span class="permalink"></span>
</a>7.</h2>
</td>
<td>
<strong> JS Bin’s obligations</strong>
</td>
</tr>
<tr>
<td>
<h2 id="71">
<a class="anchor" href="#71">
<span class="permalink"></span>
</a>7.1.</h2>
</td>
<td>
<p>Subject to the other Terms, JS Bin undertakes to use its reasonable endeavours to provide that the Services will
be available for use and in accordance with the Documentation.</p>
</td>
</tr>
<tr>
<td>
<h2 id="72">
<a class="anchor" href="#72">
<span class="permalink"></span>
</a>7.2.</h2>
</td>
<td>
<p>The undertaking at clause 7.1 shall not apply to the extent of any non-conformance which is caused by use of
the Services contrary to the JS Bin's instructions, or modification or alteration of the Services by any party
other than JS Bin or JS Bin's duly authorised contractors or agents. If the Services do not conform with the
foregoing undertaking, JS Bin will, at its expense, use all reasonable commercial endeavours to correct any
such non-conformance promptly, or provide the User with an alternative means of accomplishing the desired performance.
Such correction or substitution constitutes the User's sole and exclusive remedy for any breach of the undertaking
set out in clause 7.1. Notwithstanding the foregoing, JS Bin:</p>
<ol>
<li>does not warrant that the User's use of the Services will be uninterrupted or error-free; or that the Services,
Documentation and/or the information obtained by the User through the Services will meet the User's requirements;
and
</li>
<li>is not responsible for any delays, delivery failures, or any other loss or damage resulting from the transfer
of data over communications networks and facilities, including the internet, and the User acknowledges that
the Services and Documentation may be subject to limitations, delays and other problems inherent in the use
of such communications facilities.</li>
</ol>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>We'll do our best to keep JS Bin up and running, but sometimes is won't be, and when it's not, we'll be working on getting
JS Bin back right pretty darn quickly.</p>
</div>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="73">
<a class="anchor" href="#73">
<span class="permalink"></span>
</a>7.3.</h2>
</td>
<td>
<p>JS Bin shall, in providing the Services, comply with our privacy policy relating to the privacy and security
of your data held by us. Such privacy policy is available from the JS Bin Site or such other website address
as may be notified to you from time to time. The privacy policy may be amended from time to time by JS Bin
in its sole discretion.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>This document can change over time. We'll update the timestamp at the top of this document, along with
<a href="https://github.com/jsbin/learn/commits/master/public/legals/index.jade">revisions</a> in our open source repository.</p>
</div>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="74">
<a class="anchor" href="#74">
<span class="permalink"></span>
</a>7.4.</h2>
</td>
<td>
<p>If JS Bin processes any personal data on your behalf when performing our obligations under these Terms, we agree
that you shall be the data controller and JS Bin shall be a data processor and in any such case:</p>
<ol>
<li>you acknowledge and agree that the personal data may be transferred or stored outside the EEA or the country
where you are located in order to carry out the Services and JS Bin’s other obligations under these Terms;</li>
<li>you warrant that you are entitled to transfer the relevant personal data to JS Bin;</li>
<li>both you and JS Bin shall take appropriate technical and organisational measures against unauthorised or unlawful
processing of the personal data or its accidental loss, destruction or damage.</li>
</ol>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>Together, we'll keep your personal information safe.</p>
</div>
<hr>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="8">
<a class="anchor" href="#8">
<span class="permalink"></span>
</a>8.</h2>
</td>
<td>
<strong>Your obligations and impermissible acts</strong>
</td>
</tr>
<tr>
<td>
<h2 id="81">
<a class="anchor" href="#81">
<span class="permalink"></span>
</a>8.1.</h2>
</td>
<td>
<p>You warrant that you are legally entitled to enter into and be bound by these Terms.</p>
</td>
</tr>
<tr>
<td>
<h2 id="82">
<a class="anchor" href="#82">
<span class="permalink"></span>
</a>8.2.</h2>
</td>
<td>
<p>You shall:</p>
<ol>
<li>provide JS Bin with all necessary co-operation in relation to these Terms in order to allow us to provide the
Services;</li>
<li>comply with all applicable laws and regulations with respect to your activities under these Terms;</li>
<li>ensure that you use the Services and the Documentation in accordance with the Terms;</li>
<li>obtain and shall maintain all necessary licences, consents, and permissions necessary for JS Bin, its contractors
and agents to perform their obligations under these Terms, including without limitation the Services;</li>
<li>pay the Fees for the Services applicable to your Account</li>
</ol>
</td>
</tr>
<tr>
<td>
<h2 id="83">
<a class="anchor" href="#83">
<span class="permalink"></span>
</a>8.3.</h2>
</td>
<td>
<p>You acknowledge that you are solely responsible for procuring and maintaining your network connections and telecommunications
links, and all problems, conditions, delays, delivery failures and all other loss or damage arising from or
relating to your network connections or telecommunications links or caused by the internet.</p>
</td>
</tr>
<tr>
<td>
<h2 id="84">
<a class="anchor" href="#84">
<span class="permalink"></span>
</a>8.4.</h2>
</td>
<td>
<p>You shall not access, store, distribute or transmit any material (in the Content or otherwise) during the course
of your use of the Services that:</p>
<ol>
<li>is unlawful, harmful, threatening, defamatory, obscene, infringing, harassing or racially or ethnically offensive;</li>
<li>facilitates illegal activity;</li>
<li>depicts sexually explicit images;</li>
<li>promotes unlawful violence;</li>
<li>is discriminatory based on race, gender, colour, religious belief, sexual orientation, disability; or</li>
<li>in a manner that is otherwise illegal or causes damage or injury to any person or property.</li>
</ol>
</td>
</tr>
<tr>
<td>
<h2 id="85">
<a class="anchor" href="#85">
<span class="permalink"></span>
</a>8.5.</h2>
</td>
<td>
<p>You further agree not to:</p>
<ol>
<li>impersonate any person or entity of falsely state or otherwise present your affiliation with a person or entity;
</li>
<li>phish, collect, upload, post, email or transmit or otherwise make able any login data and/or passwords for
other web sites, software or services;</li>
<li>forge headers or otherwise manipulate identifiers in order to disguise the origin of any Content transmitted
through the JS Bin Site;</li>
<li>upload, post, email, transmit or otherwise make available any information, materials or other Content that
infringes another’s rights, including any intellectual property rights;</li>
<li>upload, post, email, transmit or otherwise make available any horised advertising, promotional materials, “junk
mail”, “spam”, “chain letters”, “pyramid schemes”, or any other form of solicitation;</li>
<li>upload, post, email, transmit or otherwise make available any material contains software viruses or any other
computer code, files or programs ned to interrupt, destroy or limit the functionality of any computer are
or hardware or telecommunications equipment;</li>
<li>use any manual or automated software devices, or other processes to ”crawl”, “spider” or “screen scrape” any
web pages contained in the JS Bin</li>
<li>interfere with or disrupt the JS Bin Site, or any servers or networks cted to the JS Bin Site, or disobey any
requirements, procedures, policies or regulations of networks connected to the JS Bin Site;</li>
<li>obtain, collect, store or modify the personal information about other;</li>
<li>modify, adapt or hack the JS Bin Site or falsely imply that some other is associated with the JS Bin Site or
JS Bin; or</li>
<li>use the JS Bin Site for any illegal or unauthorised purpose. You must not, in the use of the JS Bin Site and
the Services, breach any laws in your jurisdiction (including but not limited to copyright laws).</li>
</ol>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>Don't be a Jerk™.</p>
<p>Seriously. Don't do it.</p>
</div>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="86">
<a class="anchor" href="#86">
<span class="permalink"></span>
</a>8.6.</h2>
</td>
<td>
<p>For the avoidance of doubt any breach by you of any of these Terms (which constitute conditions of your use)
shall entitle JS Bin, in its sole discretion, without liability (including in relation to any payment made
in relation to your Account) or prejudice to its other rights, to remove or refuse to distribute any Content
via the Services and to disable your access to your Account and to terminate Users and reclaim User names.
We also reserve the right to access, read, preserve, and disclose (to any competent authority) any information
as we reasonably believe is necessary to (i) satisfy any applicable law, regulation, legal process or governmental
request, (ii) enforce these Terms of Use, including investigation of potential breaches hereof, (iii) detect,
prevent or otherwise address fraud, security or technical issues, (iv) respond to User support requests, or
(v) protect the rights of JS Bin, its Users, legitimate business interests and the public.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>If you do break the rules of good conduct, we can terminate your account.</p>
</div>
<hr>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="9">
<a class="anchor" href="#9">
<span class="permalink"></span>
</a>9.</h2>
</td>
<td>
<strong>intellectual property</strong>
</td>
</tr>
<tr>
<td>
<h2 id="91">
<a class="anchor" href="#91">
<span class="permalink"></span>
</a>9.1.</h2>
</td>
<td>
<p>You acknowledge and agree that JS Bin and/or its licensors own all intellectual property rights in the JS Bin
Site, the Software, the Services and the Documentation. Except as expressly stated herein, these Terms do not
grant you any rights to, or in, patents, copyright, database right, trade secrets, trade names, trade marks
(whether registered or unregistered), or any other rights or licences in respect of the JS Bin Site, the Software,
the Services or the Documentation.</p>
</td>
</tr>
<tr>
<td>
<h2 id="92">
<a class="anchor" href="#92">
<span class="permalink"></span>
</a>9.2.</h2>
</td>
<td>
<p>All right, title and interest in Content generated by you shall be proprietary to you (but shall be subject to
the licence granted by clause 5.1).</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>JS Bin belongs to us. Your Bins belongs to you.</p>
</div>
<hr>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="10">
<a class="anchor" href="#10">
<span class="permalink"></span>
</a>10.</h2>
</td>
<td>
<strong>Indemnity</strong>
</td>
</tr>
<tr>
<td>
<h2 id="101">
<a class="anchor" href="#101">
<span class="permalink"></span>
</a>10.1.</h2>
</td>
<td>
<p>You acknowledge that you will be solely and fully responsible for all liabilities incurred through the use of
your Account and the Services. You shall defend, indemnify and hold harmless JS Bin against claims, actions,
proceedings, losses, damages, expenses and costs (including without limitation court costs and reasonable legal
fees) arising out of or in connection with your use of the Account, the Services and/or the Documentation including,
but not limited to, any liability arising from or resulting from the Content uploaded to your Bin including
infringement of third party intellectual property or laws or civil or criminal claims</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="ourwords">
<p class="mean">In other words,</p>
<p>You alone are responsible for the Bins and the content you create and post.</p>
</div>
<hr>
<div class="legal">
<table>
<tbody>
<tr>
<td>
<h2 id="11">
<a class="anchor" href="#11">
<span class="permalink"></span>
</a>11.</h2>
</td>
<td>
<strong>Limitation of liability</strong>
</td>
</tr>
<tr>
<td>
<h2 id="111">
<a class="anchor" href="#111">
<span class="permalink"></span>
</a>11.1.</h2>
</td>
<td>
<p>You understand, agree and accept that your use of the JS Bin Site and the Services is at your own discretion
and risk and that you will be solely responsible for loss of data that results from the submission or download
of such content.</p>
</td>
</tr>
<tr>