-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvery_best_dweets.json
14002 lines (14002 loc) · 629 KB
/
very_best_dweets.json
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
[
{
"id": 21705,
"code": "eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud878\udc5b\ud866\udc3d\ud827\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc27\ud85d\udc28\ud830\udc2c\ud830\udc2c\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud831\udc38\ud830\udc2c\ud869\udc3d\ud86c\udc3d\ud831\udc35\ud833\udc30\ud829\udc3b\ud869\udc2d\ud82d\udc3b\ud878\udc5b\ud866\udc5d\ud828\udc58\ud82a\udc36\ud82c\udc59\ud82a\udc36\ud82c\udc31\ud82b\udc4b\ud82c\udc35\ud829\udc29\ud858\udc3d\ud869\udc25\ud839\udc30\ud82f\udc33\ud82c\udc59\ud83d\udc69\ud82f\udc39\ud830\udc2c\ud846\udc3d\ud874\udc2a\ud835\udc38\ud82d\udc69\ud82f\udc6c\ud82c\udc41\ud83d\udc58\ud82b\udc38\ud82a\udc53\ud828\udc7e\ud846\udc2f\ud839\udc2b\ud859\udc2f\ud839\udc29\ud82c\udc4b\ud83d\udc46\ud825\udc31\ud82f\udc34\ud82b\udc21\ud821\udc28\ud841\udc2f\ud831\udc37\ud82d\udc31\ud836\udc2f\ud831\udc38\ud87c\udc59\ud82f\udc34\ud82d\udc31\ud830\udc2f\ud835\udc7c\ud841\udc2b\ud832\udc26\ud832\udc29\ud82f\udc32\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc60\ud868\udc73\ud86c\udc28\ud824\udc7b\ud869\udc2a\ud831\udc32\ud830\udc7d\ud820\udc39\ud839\udc25\ud824\udc7b\ud84b\udc2a\ud839\udc39\ud87d\udc25\ud860\udc3b`.replace(/u../g,'')))",
"posted": "2021-02-18T14:32:42.943744Z",
"author": {
"username": "tomxor",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/tomxor",
"avatar": "https://gravatar.com/avatar/4234d0a4a535750a025eb4812f1fc537?d=retro"
},
"link": "https://www.dwitter.net/d/21705",
"awesome_count": 27,
"remix_of": 21704
},
{
"id": 21676,
"code": "eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud839\udc39\ud80a\udc70\ud83d\udc31\ud836\udc0a\ud86a\udc3d\ud831\udc0a\ud863\udc2e\ud873\udc74\ud879\udc6c\ud865\udc2e\ud866\udc69\ud86c\udc74\ud865\udc72\ud83d\udc27\ud862\udc6c\ud875\udc72\ud828\udc31\ud835\udc70\ud878\udc29\ud863\udc6f\ud86e\udc74\ud872\udc61\ud873\udc74\ud828\udc33\ud829\udc69\ud86e\udc76\ud865\udc72\ud874\udc28\ud827\udc0a\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud852\udc28\ud830\udc2c\ud831\udc33\ud830\udc2c\ud832\udc35\ud835\udc29\ud80a\udc66\ud86f\udc72\ud828\udc69\ud83d\udc32\ud83b\udc69\ud83e\udc30\ud83b\udc69\ud82d\udc3d\ud82e\udc33\ud82f\udc28\ud870\udc2b\ud874\udc29\ud829\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud870\udc2a\ud828\udc33\ud82b\udc28\ud86a\udc3d\ud82d\udc6a\ud829\udc2a\ud869\udc29\ud82c\udc70\ud82a\udc28\ud832\udc2b\ud828\udc69\ud82a\udc2a\ud82e\udc30\ud831\udc2a\ud828\udc43\ud828\udc69\ud829\udc2a\ud82a\udc2e\ud835\udc2a\ud843\udc28\ud832\udc30\ud830\udc2a\ud869\udc2b\ud874\udc29\ud82d\udc69\ud82a\udc2a\ud82e\udc33\ud829\udc29\ud829\udc2c\ud834\udc2c\ud834\udc29`.replace(/u../g,'')))",
"posted": "2021-02-14T20:51:23.538289Z",
"author": {
"username": "DaSpider",
"date_joined": "2019-11-01",
"link": "https://www.dwitter.net/u/DaSpider",
"avatar": "https://gravatar.com/avatar/79f2e4f11804e3fb55a798f9e3148f40?d=retro"
},
"link": "https://www.dwitter.net/d/21676",
"awesome_count": 23,
"remix_of": null
},
{
"id": 21672,
"code": "c.width|=0,w=960\r\nfor(i=700;i--;x.fillRect(w+w*X/Z,w-Y/Z*w,s=(8/Z)**5,s))\r\nX=3*C(U=i+t)+C(V=t+i/(1+t/w*.7)),Y=S(i)+C(V)*T(V)-2,Z=S(U)-5",
"posted": "2021-02-13T16:57:12.140737Z",
"author": {
"username": "Pascal",
"date_joined": "2020-12-10",
"link": "https://www.dwitter.net/u/Pascal",
"avatar": "https://gravatar.com/avatar/68b642eede2555813e3dd1c06343c22a?d=retro"
},
"link": "https://www.dwitter.net/d/21672",
"awesome_count": 22,
"remix_of": 21645
},
{
"id": 21661,
"code": "t?0:c.width=40\r\ny=frame\r\nx.fillRect(y%16+1,~~(y/16)+1,1,'\ue5b6\u00ea\u1835\u73d4\u11e0\ud308\u9f8f\u3be1\ua170\u9a83\ue65a\u16c8\u0237\u8d47\u7f34\u4c6c\uaf4c\u0818\u99c2\ue644\u876b\ue6a4\ue2a2\u16e2\u0852'.charCodeAt(y/10).toString(3).split``.reverse()[y%10]/2)",
"posted": "2021-02-12T19:19:58.653628Z",
"author": {
"username": "Odog8",
"date_joined": "2019-09-27",
"link": "https://www.dwitter.net/u/Odog8",
"avatar": "https://gravatar.com/avatar/e2e5df4b52feaa72528a06bd24aa015c?d=retro"
},
"link": "https://www.dwitter.net/d/21661",
"awesome_count": 20,
"remix_of": null
},
{
"id": 21645,
"code": "c.width|=0,w=960\r\nfor(i=w*2;i--;x.fillRect(w+w*X/Z,w-Y/Z*w,s=(8/Z)**5,s))\r\nX=3*C(U=i+t)+C(V=t+i/2),Y=C(U)*S((i*3)+t)+C(V)*T(V)-2,Z=S(U)-5",
"posted": "2021-02-11T19:39:14.858212Z",
"author": {
"username": "Pascal",
"date_joined": "2020-12-10",
"link": "https://www.dwitter.net/u/Pascal",
"avatar": "https://gravatar.com/avatar/68b642eede2555813e3dd1c06343c22a?d=retro"
},
"link": "https://www.dwitter.net/d/21645",
"awesome_count": 20,
"remix_of": 21637
},
{
"id": 21637,
"code": "c.width|=0,w=960\r\nfor(i=4000;i--;x.fillRect(w+w*X/Z,w-Y/Z*w,s=500/Z/Z/Z,s))\r\nX=2*C(U=i+t)+C(V=t+i*i),\r\nY=T(U)+C(V)*T(V)-2,\r\nZ=S(U)-5",
"posted": "2021-02-11T03:41:58.613694Z",
"author": {
"username": "erin",
"date_joined": "2020-11-17",
"link": "https://www.dwitter.net/u/erin",
"avatar": "https://gravatar.com/avatar/5d40fbc265c8eaf69a432dc5efef9daa?d=retro"
},
"link": "https://www.dwitter.net/d/21637",
"awesome_count": 22,
"remix_of": 13665
},
{
"id": 21622,
"code": "for(c.width&=m=i=8320;i--;x.fillRect(X=i&127,Y=i>>7,1,f(X/m+.01,Y/m)))f=(x,y,n=42)=>--n&&y/C(x+n/2+t)<2?f(x*x-y*y-1.5,2*x*y,n):n/16",
"posted": "2021-02-08T03:43:30.471217Z",
"author": {
"username": "tomxor",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/tomxor",
"avatar": "https://gravatar.com/avatar/4234d0a4a535750a025eb4812f1fc537?d=retro"
},
"link": "https://www.dwitter.net/d/21622",
"awesome_count": 31,
"remix_of": 21621
},
{
"id": 21600,
"code": "for(r=28,c.width|=i=1025;--i;x.fillRect(960+X*r+o*S(i*i),540+Y*r+o*S(i**3),r,r))X=16-i%32,Y=512-i>>5,o=S((X*X+Y*Y)/399-t*2)*r+r",
"posted": "2021-02-04T18:15:22.429128Z",
"author": {
"username": "KilledByAPixel",
"date_joined": "2019-04-02",
"link": "https://www.dwitter.net/u/KilledByAPixel",
"avatar": "https://gravatar.com/avatar/0e3d08af662dc4c994b210ce276db224?d=retro"
},
"link": "https://www.dwitter.net/d/21600",
"awesome_count": 21,
"remix_of": 21599
},
{
"id": 21582,
"code": "c.style.filter=`invert(`\r\nx.shadowBlur=40;x.shadowColor='#000';if(t<55/7)x.fillRect(960-320*C(t-(h=t>22/7?1:0)),540+320*S(h+t),8,7*(t%4))",
"posted": "2021-02-03T06:57:18.309875Z",
"author": {
"username": "katkip",
"date_joined": "2018-07-28",
"link": "https://www.dwitter.net/u/katkip",
"avatar": "https://gravatar.com/avatar/616cc1c9921bdae9e44fb704b1999f83?d=retro"
},
"link": "https://www.dwitter.net/d/21582",
"awesome_count": 24,
"remix_of": 16679
},
{
"id": 21575,
"code": "for(c.width&=i=8320;i--;x.fillRect(\r\n48+X/2+Y/128*S(X/3+Y/24-t*6),8+Y/2,V<80|V<96&X/4&1,X/32^Y/96+.5?.1:.3\r\n))X=i%64,Y=i/64,V=Y-Math.abs(X-32)",
"posted": "2021-02-03T00:37:11.740414Z",
"author": {
"username": "tomxor",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/tomxor",
"avatar": "https://gravatar.com/avatar/4234d0a4a535750a025eb4812f1fc537?d=retro"
},
"link": "https://www.dwitter.net/d/21575",
"awesome_count": 34,
"remix_of": 21572
},
{
"id": 21570,
"code": "eval(unescape(escape`\ud851\udc3d\ud871\udc3d\ud83e\udc78\ud82e\udc6c\ud869\udc6e\ud865\udc54\ud86f\udc28\ud838\udc38\ud82b\udc58\ud82f\udc71\ud82a\udc35\ud830\udc2c\ud835\udc30\ud82b\udc59\ud82f\udc71\ud82a\udc35\ud830\udc29\ud80a\udc66\ud86f\udc72\ud828\udc66\ud83d\udc31\ud837\udc2c\ud869\udc3d\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud831\udc37\ud835\udc2c\ud86e\udc3d\ud853\udc28\ud874\udc29\ud83b\udc69\ud82d\udc2d\ud83b\udc78\ud82e\udc73\ud874\udc72\ud86f\udc6b\ud865\udc28\ud829\udc29\ud866\udc6f\ud872\udc28\ud878\udc2e\ud862\udc65\ud867\udc69\ud86e\udc50\ud861\udc74\ud868\udc28\ud86a\udc3d\ud836\udc29\ud83b\udc6a\ud82d\udc2d\ud83b\udc51\ud828\udc32\ud82d\udc6e\ud829\udc29\ud858\udc3d\ud828\udc69\ud82d\udc74\ud825\udc31\ud829\udc25\ud866\udc2a\ud82e\udc39\ud82b\udc28\ud862\udc3d\ud869\udc2f\ud866\udc7c\ud830\udc29\ud825\udc32\ud82a\udc2e\ud834\udc34\ud82d\udc38\ud82c\udc59\ud83d\udc28\ud862\udc2b\ud86e\udc25\ud832\udc25\ud866\udc2d\ud834\udc29\ud82a\udc33\ud82f\udc34\ud82c\udc51\ud828\udc32\ud829\udc2c\ud858\udc2b\ud83d\udc53\ud828\udc70\ud83d\udc6a\ud82f\udc2e\ud839\udc35\ud829\udc2f\ud832\udc2c\ud859\udc2b\ud83d\udc43\ud828\udc70\ud829\udc2f\ud832\udc3b`.replace(/u../g,'')))",
"posted": "2021-02-02T21:30:29.387837Z",
"author": {
"username": "cantelope",
"date_joined": "2017-03-26",
"link": "https://www.dwitter.net/u/cantelope",
"avatar": "https://gravatar.com/avatar/948cb6f8893e414acffb61e9ec0fd44c?d=retro"
},
"link": "https://www.dwitter.net/d/21570",
"awesome_count": 21,
"remix_of": null
},
{
"id": 21547,
"code": "for(c.width&=i=6272;i--;x.fillRect(40+X/2+X/48*C(X/8-Y/8-t*7),8+Y/2+X/6+X/12*S(X/16-t*3),2,i?X/36-1.3|Y/10-3|X+1&4?.06:.36:63))X=i%98,Y=i/98",
"posted": "2021-02-01T17:00:17.004467Z",
"author": {
"username": "tomxor",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/tomxor",
"avatar": "https://gravatar.com/avatar/4234d0a4a535750a025eb4812f1fc537?d=retro"
},
"link": "https://www.dwitter.net/d/21547",
"awesome_count": 42,
"remix_of": 21533
},
{
"id": 21533,
"code": "for(w=c.width|=i=600;i--;)x.fillRect(i+i/20*C(i*38+t*5),i%20*20+i*S(i/w-.1*S(i/99-t*2)),q=5*S(i*32*i/99)+9,q)\r\nx.fillRect(0,0,9,w)",
"posted": "2021-01-31T23:51:24.405578Z",
"author": {
"username": "New_Core",
"date_joined": "2016-07-19",
"link": "https://www.dwitter.net/u/New_Core",
"avatar": "https://gravatar.com/avatar/10a83984a7e139474997dfb71cb35ae0?d=retro"
},
"link": "https://www.dwitter.net/d/21533",
"awesome_count": 20,
"remix_of": 21531
},
{
"id": 21530,
"code": "eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc63\ud82e\udc73\ud874\udc79\ud86c\udc65\ud82e\udc66\ud869\udc6c\ud874\udc65\ud872\udc3d\ud827\udc69\ud86e\udc76\ud865\udc72\ud874\udc28\ud827\udc0a\ud874\udc25\ud83d\udc58\ud83d\udc59\ud83d\udc31\ud82c\udc5a\ud83d\udc31\ud836\udc0a\ud866\udc6f\ud872\udc28\ud869\udc3d\ud833\udc65\ud833\udc3b\ud869\udc2d\ud82d\udc3b\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc39\ud838\udc30\ud82b\udc61\ud82a\udc37\ud838\udc2c\ud831\udc32\ud830\udc30\ud82d\udc28\ud862\udc2b\ud874\udc2a\ud85a\udc29\ud82a\udc32\ud835\udc2c\ud839\udc2c\ud839\udc29\ud829\udc61\ud83d\udc58\ud82d\udc58\ud82a\udc74\ud82c\udc62\ud83d\udc5a\ud82d\udc5a\ud82a\udc74\ud82c\udc5a\ud82b\udc3d\ud828\udc58\ud82a\udc59\ud82d\udc5a\ud829\udc2f\ud833\udc39\ud82c\udc58\ud82b\udc3d\ud828\udc59\ud82d\udc58\ud829\udc2f\ud839\udc2c\ud859\udc2b\ud83d\udc58\ud82a\udc28\ud832\udc37\ud82d\udc5a\ud829\udc2f\ud838\udc37\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc52\ud828\udc28\ud861\udc2b\ud83d\udc58\ud82a\udc74\ud829\udc2a\ud839\udc39\ud82c\udc69\ud82f\udc39\ud82c\udc69\ud82f\udc31\ud839\udc29`.replace(/u../g,'')))",
"posted": "2021-01-31T23:42:30.586602Z",
"author": {
"username": "KilledByAPixel",
"date_joined": "2019-04-02",
"link": "https://www.dwitter.net/u/KilledByAPixel",
"avatar": "https://gravatar.com/avatar/0e3d08af662dc4c994b210ce276db224?d=retro"
},
"link": "https://www.dwitter.net/d/21530",
"awesome_count": 24,
"remix_of": 21450
},
{
"id": 21456,
"code": "for(i=2e3,f=(X,Y,n=99)=>T(X-S(Y))<9?f(X*X-Y*Y,2*X*Y+.7,n-1):x.fillStyle=`hsl(${i/8},80%,${C(n)*n}%`;i--;x.fillRect(i,t*60,1,1))f(i/3e3,t/50)",
"posted": "2021-01-26T16:11:47.011957Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/21456",
"awesome_count": 28,
"remix_of": 21453
},
{
"id": 21425,
"code": "for(j=4;j--&&t<2;)for(i=1080;i--;x.fillRect(a=t*240+j*480,i,8,f(a/2400-.4,i/2400-.225)**2))f=(X,Y,n=80)=>Y<n?f(X*X-Y*Y-.3,2*X*Y+.7,--n):n/80",
"posted": "2021-01-24T14:02:45.363600Z",
"author": {
"username": "Pascal",
"date_joined": "2020-12-10",
"link": "https://www.dwitter.net/u/Pascal",
"avatar": "https://gravatar.com/avatar/68b642eede2555813e3dd1c06343c22a?d=retro"
},
"link": "https://www.dwitter.net/d/21425",
"awesome_count": 23,
"remix_of": null
},
{
"id": 21345,
"code": "for(i=3e3,f=g=>i*g(i*i+t)*g(i/t)**.3;i--;x.fillRect(960+f(C),800-f(S),9/t,9/t))x.fillStyle=`hsl(${120+(k=S(i*i+t/5)*340)},99%,${k/4}%,.1`",
"posted": "2021-01-21T06:48:54.416346Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/21345",
"awesome_count": 25,
"remix_of": 21330
},
{
"id": 21331,
"code": "for(i=w=c.width|=m=19;i--;x.lineWidth=m/s)(1+i)%m||x.beginPath(x.stroke()),s=i/m-t%1,x.lineTo(960+2*(i%m-9)/s*w,9+(1+S(S(s/6+t)+i%m))/s*w)",
"posted": "2021-01-20T16:53:50.633769Z",
"author": {
"username": "[email protected]",
"date_joined": "2019-03-05",
"link": "https://www.dwitter.net/u/[email protected]",
"avatar": "https://gravatar.com/avatar/62a10c3ec28351ae672f91f153431770?d=retro"
},
"link": "https://www.dwitter.net/d/21331",
"awesome_count": 22,
"remix_of": null
},
{
"id": 21304,
"code": "eval(unescape(escape`\ud863\udc2e\ud873\udc74\ud879\udc6c\ud865\udc3d\ud827\udc66\ud869\udc6c\ud874\udc65\ud872\udc3a\ud869\udc6e\ud876\udc65\ud872\udc74\ud828\udc27\ud83b\udc66\ud86f\udc72\ud828\udc6c\ud865\udc74\ud820\udc7a\ud82c\udc41\ud82c\udc42\ud82c\udc6e\ud82c\udc58\ud82c\udc59\ud82c\udc69\ud83d\udc31\ud836\udc3b\ud869\udc3b\ud858\udc2b\ud83d\udc41\ud82c\udc59\ud82b\udc3d\ud842\udc29\ud859\udc2a\ud859\udc3c\ud834\udc65\ud835\udc26\ud826\udc58\ud82f\udc34\ud832\udc35\ud87c\udc59\ud82f\udc39\ud839\udc7c\ud858\udc2f\ud832\udc35\ud82b\udc31\ud837\udc26\ud832\udc3f\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc39\ud836\udc30\ud82b\udc58\ud82c\udc35\ud834\udc30\ud82b\udc59\ud82c\udc6e\ud82f\udc2b\ud82b\udc7a\ud82a\udc2a\ud82e\udc34\ud82c\udc2e\ud830\udc34\ud829\udc3a\ud828\udc7a\ud83d\udc31\ud82c\udc41\ud83d\udc53\ud828\udc72\ud83d\udc2d\ud82d\udc6e\ud83f\udc74\ud82a\udc2a\ud869\udc2a\ud86e\udc3a\ud874\udc2f\ud869\udc25\ud831\udc2e\ud836\udc2d\ud82e\udc38\ud829\udc2c\ud842\udc3d\ud843\udc28\ud872\udc29\ud82c\udc6e\ud829\udc7c\ud87c\udc28\ud86e\udc3d\ud838\udc2c\ud858\udc3d\ud874\udc2c\ud859\udc3d\ud869\udc2d\ud82d\udc2d\ud836\udc34\ud830\udc29`.replace(/u../g,'')))",
"posted": "2021-01-17T19:58:53.134290Z",
"author": {
"username": "tomxor",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/tomxor",
"avatar": "https://gravatar.com/avatar/4234d0a4a535750a025eb4812f1fc537?d=retro"
},
"link": "https://www.dwitter.net/d/21304",
"awesome_count": 26,
"remix_of": 21217
},
{
"id": 21257,
"code": "for(i=2e3,f=g=>(1+t)*i*g(i*i)*g(i+t/19);i--;x.fillRect(950+f(C),540+f(S),8/t,9/t))x.fillStyle=`hsl(${t*9},80%,${S(i/1e5+t)*99}%,.2`",
"posted": "2021-01-13T19:19:56.020162Z",
"author": {
"username": "Xen",
"date_joined": "2017-07-16",
"link": "https://www.dwitter.net/u/Xen",
"avatar": "https://gravatar.com/avatar/24f77f37da6ea75f8ff2e1c82b0a5b70?d=retro"
},
"link": "https://www.dwitter.net/d/21257",
"awesome_count": 26,
"remix_of": 21250
},
{
"id": 21250,
"code": "for(i=2e3,f=g=>(1+t)*i*g(i*i)*g(i)**.01;i--;x.fillRect(950+f(C),540+f(S),8/t,9/t))x.fillStyle=`hsl(${9+i/7},80%,${S(i/1e5+t)*99}%,.2`",
"posted": "2021-01-12T21:47:29.452729Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/21250",
"awesome_count": 20,
"remix_of": 21206
},
{
"id": 21217,
"code": "eval(unescape(escape`\ud863\udc2e\ud873\udc74\ud879\udc6c\ud865\udc3d\ud827\udc66\ud869\udc6c\ud874\udc65\ud872\udc3a\ud869\udc6e\ud876\udc65\ud872\udc74\ud828\udc27\ud83b\udc66\ud86f\udc72\ud828\udc6c\ud865\udc74\ud820\udc7a\ud82c\udc41\ud82c\udc42\ud82c\udc6e\ud82c\udc58\ud82c\udc59\ud82c\udc69\ud83d\udc32\ud834\udc3b\ud869\udc3b\ud858\udc2b\ud83d\udc41\ud82c\udc59\ud82b\udc3d\ud842\udc29\ud828\udc34\ud830\udc2b\ud858\udc2f\ud834\udc38\ud85e\udc31\ud836\udc2b\ud859\udc2f\ud834\udc38\ud829\udc25\ud831\udc35\ud83e\udc31\ud83f\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud858\udc2c\ud859\udc2c\ud86e\udc2f\ud82b\udc2b\ud87a\udc2a\ud82a\udc2e\ud835\udc2c\ud831\udc2f\ud838\udc29\ud83a\udc28\ud87a\udc3d\ud831\udc2c\ud872\udc3d\ud828\udc6e\ud82b\udc37\ud829\udc2a\ud82a\udc69\ud82a\udc74\ud82c\udc41\ud83d\udc32\ud82a\udc53\ud828\udc72\ud829\udc2c\ud842\udc3d\ud832\udc2a\ud843\udc28\ud872\udc29\ud82c\udc2d\ud82d\udc6e\ud829\udc7c\ud87c\udc28\ud86e\udc3d\ud838\udc2c\ud858\udc3d\ud831\udc32\ud838\udc30\ud82b\udc69\ud82a\udc53\ud828\udc74\ud829\udc2c\ud859\udc3d\ud837\udc32\ud830\udc2b\ud869\udc2a\ud843\udc28\ud874\udc29\ud82c\udc2d\ud82d\udc69\ud829\udc3b`.replace(/u../g,'')))",
"posted": "2021-01-10T00:15:49.057861Z",
"author": {
"username": "tomxor",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/tomxor",
"avatar": "https://gravatar.com/avatar/4234d0a4a535750a025eb4812f1fc537?d=retro"
},
"link": "https://www.dwitter.net/d/21217",
"awesome_count": 39,
"remix_of": 20405
},
{
"id": 21206,
"code": "for(i=2e3,f=g=>i*C(i+S(t)**4)*g(i/70)*T(i/999);i--;x.fillRect(960+f(S),540+f(C),9/t,9/t))x.fillStyle=`hsl(${i/t/80},99%,${S(i-t)*99}%,.1`",
"posted": "2021-01-08T13:10:14.730676Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/21206",
"awesome_count": 22,
"remix_of": 21197
},
{
"id": 21204,
"code": "c.style.filter=\"blur(7px)contrast(5)invert(\"\r\nfor(c.width|=i=999;i--;x.fillRect(960+i*S(i/8),999-i*T(t+i*i),25,50))x.fillStyle=R(0,i/9,i)",
"posted": "2021-01-08T00:35:18.005884Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/21204",
"awesome_count": 35,
"remix_of": 21203
},
{
"id": 21160,
"code": "c.style.filter=\"blur(9px)contrast(90)\",x.fillStyle=`hsl(${t*99},69%,50%)`;x.fillRect(960+S(t*4)*99,540+C(t*5)*99,99,99)",
"posted": "2021-01-06T02:45:42.074469Z",
"author": {
"username": "erin",
"date_joined": "2020-11-17",
"link": "https://www.dwitter.net/u/erin",
"avatar": "https://gravatar.com/avatar/5d40fbc265c8eaf69a432dc5efef9daa?d=retro"
},
"link": "https://www.dwitter.net/d/21160",
"awesome_count": 26,
"remix_of": 21159
},
{
"id": 21129,
"code": "for(c.width|=n=12;n--;x.stroke())for(i=0|99;i--;)k=((w=T(-t/3+n*20))*60*C(t+i)*S(n)),x.lineTo(960+w*120+k*S(j=i*6.28/n),540+k*C(j))",
"posted": "2021-01-04T11:25:42.155197Z",
"author": {
"username": "smtsjhr",
"date_joined": "2019-09-04",
"link": "https://www.dwitter.net/u/smtsjhr",
"avatar": "https://gravatar.com/avatar/fc52acc6c07539662c041a71a1bae518?d=retro"
},
"link": "https://www.dwitter.net/d/21129",
"awesome_count": 24,
"remix_of": 20616
},
{
"id": 21078,
"code": "for(x.fillRect(0,0,i=640,i);z=--i**.3;x.fillStyle=R(0,500/--z))x.setTransform(s=20/z+S(t),0,0,s,0,0),x.fillText('*',i%z*99-C(t),t++%z*60)",
"posted": "2020-12-30T15:42:59.026063Z",
"author": {
"username": "ciaccodavide",
"date_joined": "2020-10-20",
"link": "https://www.dwitter.net/u/ciaccodavide",
"avatar": "https://gravatar.com/avatar/7683030fd73017c63934cd7546bef46f?d=retro"
},
"link": "https://www.dwitter.net/d/21078",
"awesome_count": 24,
"remix_of": 14505
},
{
"id": 21044,
"code": "for(c.width=w=127,i=7e3;i--;t?p&T[r=i+w+r%3]<1&&--T[i]&++T[r]:T[i]=r)p=T[i],x.fillRect(X=i&w,Y=i>>7,T[S(t*t*w)*w|0]=1,p/3),r=i*t^Y/14&X/9",
"posted": "2020-12-21T17:43:24.775439Z",
"author": {
"username": "KilledByAPixel",
"date_joined": "2019-04-02",
"link": "https://www.dwitter.net/u/KilledByAPixel",
"avatar": "https://gravatar.com/avatar/0e3d08af662dc4c994b210ce276db224?d=retro"
},
"link": "https://www.dwitter.net/d/21044",
"awesome_count": 26,
"remix_of": 19550
},
{
"id": 21037,
"code": "for(T[2931]=i=6001;i--;T[i]&!(T[d+=i]|T[d+e]|T[d-e])&&x.fillRect(i%99*20,i/5,21,T[d]=21))d=(Math.random(e=1)*4|0)*2-1,d>1?d=(d-4)*99:e=99",
"posted": "2020-12-20T06:09:11.332443Z",
"author": {
"username": "KilledByAPixel",
"date_joined": "2019-04-02",
"link": "https://www.dwitter.net/u/KilledByAPixel",
"avatar": "https://gravatar.com/avatar/0e3d08af662dc4c994b210ce276db224?d=retro"
},
"link": "https://www.dwitter.net/d/21037",
"awesome_count": 25,
"remix_of": null
},
{
"id": 21021,
"code": "with(x)for(c.width|=i=710;i--;beginPath(fill(ellipse(40+18*C(a=++t%3.1416),0,w=S(a),!rotate(i*49+w/3),a,0,7))))setTransform(9,0,0,9,960,540)",
"posted": "2020-12-17T03:03:31.803449Z",
"author": {
"username": "pavel",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/pavel",
"avatar": "https://gravatar.com/avatar/700a362a663cf1c0787ea1e331dcb40e?d=retro"
},
"link": "https://www.dwitter.net/d/21021",
"awesome_count": 25,
"remix_of": 21012
},
{
"id": 21012,
"code": "with(x)for(fillRect(i=-710,i,i*=-2,i);i--;clearRect(20+9*S(a=i+t),2,w=C(a),w>0))setTransform(16,0,0,16,960,540),rotate(i/226)",
"posted": "2020-12-15T23:04:06.121953Z",
"author": {
"username": "pavel",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/pavel",
"avatar": "https://gravatar.com/avatar/700a362a663cf1c0787ea1e331dcb40e?d=retro"
},
"link": "https://www.dwitter.net/d/21012",
"awesome_count": 32,
"remix_of": null
},
{
"id": 21006,
"code": "c.style.filter=`invert(`\r\nfor(e=k=c.width|=w=50;k--;x.fillRect(w|x.rotate(k%w+t/4),9,1,1))\r\nx.setTransform(v=2+k%7,0,0,v,k,(k*k+t*v)*w%e-w*8)",
"posted": "2020-12-15T18:23:41.070548Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/21006",
"awesome_count": 28,
"remix_of": 20959
},
{
"id": 20989,
"code": "for(t*=30,c.width=X=128;X--;)for(Y=72;Y--;)(t+X^t-Y)%41<Y/4&&x.fillRect(X,Y,1,1)",
"posted": "2020-12-13T21:38:51.714765Z",
"author": {
"username": "ntsutae",
"date_joined": "2020-01-07",
"link": "https://www.dwitter.net/u/ntsutae",
"avatar": "https://gravatar.com/avatar/7c21bcdf4bdff9c459a67f882d53727f?d=retro"
},
"link": "https://www.dwitter.net/d/20989",
"awesome_count": 21,
"remix_of": null
},
{
"id": 20935,
"code": "for(\u2d60=1e4;\u2d60--;\u0d3d(0,0,340,\u2d60+t))\u0d3d=(\u03b2,\u03b1,\u1011,\u0da7)=>\u1011>1?\u0d3d(\u03b1+\u1011*S(\u0da7),\u03b2+\u1011*C(\u0da7),\u1011/3,T(\u0da7/11)*22.5):x.fillRect(\u03b2+940,\u03b1+540,1,(t<4)/3)",
"posted": "2020-12-07T16:18:10.160538Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/20935",
"awesome_count": 26,
"remix_of": 20933
},
{
"id": 20926,
"code": "for(w=i=c.width|=0,x.globalAlpha=.15;i--;x.fillText('\u2744',-4,-4))x.setTransform(s=i*i%63/7,0,0,s,(i+s*w/(1+9**C(t/3)))%w,(s/5*t+T(i*i))%2*600)",
"posted": "2020-12-06T04:36:01.558175Z",
"author": {
"username": "pavel",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/pavel",
"avatar": "https://gravatar.com/avatar/700a362a663cf1c0787ea1e331dcb40e?d=retro"
},
"link": "https://www.dwitter.net/d/20926",
"awesome_count": 21,
"remix_of": null
},
{
"id": 20925,
"code": "eval(unescape(escape`\ud869\udc3d\ud839\udc39\ud836\udc3b\ud877\udc69\ud874\udc68\ud828\udc78\ud829\udc66\ud86f\udc72\ud828\udc73\ud865\udc74\ud854\udc72\ud861\udc6e\ud873\udc66\ud86f\udc72\ud86d\udc28\ud831\udc2c\ud830\udc2c\ud830\udc2c\ud831\udc2c\ud828\udc74\ud82a\udc3d\ud837\udc32\ud837\udc30\ud829\udc25\ud832\udc65\ud833\udc2c\ud874\udc2f\ud831\udc36\ud829\udc3b\ud869\udc2d\ud82d\udc3b\ud872\udc65\ud873\udc74\ud86f\udc72\ud865\udc28\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc30\ud82c\udc53\ud828\udc6a\ud82a\udc6a\ud82b\udc74\ud829\udc2a\ud833\udc39\ud82c\udc6a\ud82c\udc6a\ud82f\udc32\ud839\udc29\ud829\udc29\ud873\udc61\ud876\udc65\ud828\udc29\ud82c\udc73\ud863\udc61\ud86c\udc65\ud828\udc21\ud872\udc6f\ud874\udc61\ud874\udc65\ud828\udc28\ud831\udc2b\ud869\udc2b\ud869\udc25\ud832\udc29\ud82a\udc2e\ud835\udc32\ud833\udc36\ud829\udc2c\ud869\udc25\ud832\udc2a\ud832\udc2d\ud831\udc29\ud82c\udc72\ud86f\udc74\ud861\udc74\ud865\udc28\ud86a\udc3d\ud869\udc2f\ud831\udc32\ud87c\udc63\ud86c\udc69\ud870\udc28\ud86e\udc65\ud877\udc20\ud850\udc61\ud874\udc68\ud832\udc44\ud828\udc27\ud86d\udc30\ud820\udc30\ud876\udc35\ud830\udc68\ud832\udc39\ud827\udc29\ud829\udc29`.replace(/u../g,'')))",
"posted": "2020-12-06T04:02:05.612413Z",
"author": {
"username": "KilledByAPixel",
"date_joined": "2019-04-02",
"link": "https://www.dwitter.net/u/KilledByAPixel",
"avatar": "https://gravatar.com/avatar/0e3d08af662dc4c994b210ce276db224?d=retro"
},
"link": "https://www.dwitter.net/d/20925",
"awesome_count": 20,
"remix_of": 16862
},
{
"id": 20920,
"code": "for(i=c.width|=p=g=>(g(0)?k&3:k/4)*200+130*g(.8+(~~k+k/4&1||-1)*(i%120*41/13+5*t));k=--i/120;)x.fillRect(560+p(S),240+p(C),9,9)",
"posted": "2020-12-04T21:12:15.522605Z",
"author": {
"username": "pavel",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/pavel",
"avatar": "https://gravatar.com/avatar/700a362a663cf1c0787ea1e331dcb40e?d=retro"
},
"link": "https://www.dwitter.net/d/20920",
"awesome_count": 20,
"remix_of": 20901
},
{
"id": 20919,
"code": "for(i=c.width|=0;i--;x.fillRect(X,540+200*C(a),-150,7))X=i%960*2,x.fillStyle=`hsl(${q=X/8+60*t},69%,${42+32*S(a=(q/32%1+(i>960))/.32)}%`",
"posted": "2020-12-04T20:45:03.712113Z",
"author": {
"username": "pavel",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/pavel",
"avatar": "https://gravatar.com/avatar/700a362a663cf1c0787ea1e331dcb40e?d=retro"
},
"link": "https://www.dwitter.net/d/20919",
"awesome_count": 30,
"remix_of": null
},
{
"id": 20913,
"code": "for(i=996;i--;x.fillRect(250*X,250*Y,2e3,1))X=t/2,Y=i/230,h=300*S(Y%S(m=X/2%S(p=C(q=Y*S(X/3))*2)*2+T(i*i**t)/6)),x.fillStyle=R(h*p,h*m,h*q)",
"posted": "2020-12-04T05:29:07.846623Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/20913",
"awesome_count": 26,
"remix_of": 20902
},
{
"id": 20903,
"code": "eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud87a\udc3d\ud839\udc39\ud80a\udc74\ud83f\udc43\ud83f\udc54\ud82b\udc3d\ud82e\udc30\ud833\udc3a\ud830\udc3a\ud856\udc3d\ud859\udc3d\ud854\udc3d\ud831\udc0a\ud866\udc6f\ud872\udc28\ud869\udc3d\ud835\udc3b\ud869\udc2d\ud82d\udc3b\ud869\udc7c\ud87c\udc54\ud825\udc31\ud83c\udc2e\ud836\udc3f\ud848\udc3d\ud868\udc3a\ud830\udc29\ud86a\udc3d\ud869\udc2b\ud854\udc7c\ud830\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc28\ud86a\udc2d\ud854\udc29\ud82a\udc32\ud839\udc2c\ud868\udc3d\ud834\udc30\ud82d\udc39\ud82a\udc53\ud828\udc6a\ud82a\udc6a\ud829\udc2c\ud832\udc37\ud82c\udc7a\ud829\udc0a\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc39\ud82c\udc59\ud82b\udc3d\ud856\udc2b\ud83d\udc2e\ud830\udc37\ud82c\udc34\ud82c\udc2d\ud837\udc29\ud80a\udc6f\ud86e\udc6d\ud86f\udc75\ud873\udc65\ud864\udc6f\ud877\udc6e\ud83d\udc59\ud83e\udc48\ud83f\udc59\ud82b\udc28\ud856\udc3d\ud830\udc29\ud83e\udc48\ud82b\udc33\ud83f\udc43\ud83d\udc30\ud83a\udc28\ud859\udc3d\ud848\udc2c\ud865\udc3d\ud83e\udc56\ud83d\udc2d\ud832\udc29\ud83a\udc30\ud80a\udc74\ud868\udc72\ud86f\udc77\ud820\udc6a`.replace(/u../g,'')))",
"posted": "2020-12-02T05:45:59.216419Z",
"author": {
"username": "KilledByAPixel",
"date_joined": "2019-04-02",
"link": "https://www.dwitter.net/u/KilledByAPixel",
"avatar": "https://gravatar.com/avatar/0e3d08af662dc4c994b210ce276db224?d=retro"
},
"link": "https://www.dwitter.net/d/20903",
"awesome_count": 25,
"remix_of": null
},
{
"id": 20901,
"code": "for(i=c.width|=0;i--;x.fillRect(660+(p>>2)*200+130*C(a=Math.PI/4+(p+p/4&1||-1)*(369/13*d+3*t)),240+p%4*200+130*S(a),d,d))d=i%120/9,p=i/120|0",
"posted": "2020-12-01T20:51:36.821824Z",
"author": {
"username": "pavel",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/pavel",
"avatar": "https://gravatar.com/avatar/700a362a663cf1c0787ea1e331dcb40e?d=retro"
},
"link": "https://www.dwitter.net/d/20901",
"awesome_count": 27,
"remix_of": null
},
{
"id": 20838,
"code": "for(i=3e3,f=g=>i*C(i*i)*g(i+t*(t>4));i--;x.fillRect(960+f(S)*C(t/3),540+f(C)*C(t/3),1,.5))x.fillStyle=R(i,i/9),c.style='filter:invert('",
"posted": "2020-11-28T17:01:05.138276Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/20838",
"awesome_count": 20,
"remix_of": 20815
},
{
"id": 20799,
"code": "for(i=3e3,c.width|=f=g=>t+99*((g(i)-3)+g(i+t))*g(V=i/19+t);i--;)x.arc(960+f(C),540+f(S),19,0,5-S(V-t));x.stroke(),c.style='filter:invert('",
"posted": "2020-11-24T16:54:35.004100Z",
"author": {
"username": "geb",
"date_joined": "2018-07-24",
"link": "https://www.dwitter.net/u/geb",
"avatar": "https://gravatar.com/avatar/653d924e3c45ecab736f58984764f8ea?d=retro"
},
"link": "https://www.dwitter.net/d/20799",
"awesome_count": 23,
"remix_of": 20798
},
{
"id": 20787,
"code": "x.setTransform(28,0,0,30,800,400)\r\nx.fillText('\u2299\u2299',0,2)\r\nx.stroke(new Path2D(`m3-4c0-9 9-9 9 0M3 2c0 30 11 9 11 8q2-3 4-2M6 4c0 9 6 9 6-3`))",
"posted": "2020-11-22T22:27:30.426787Z",
"author": {
"username": "jellyedwards",
"date_joined": "2018-02-20",
"link": "https://www.dwitter.net/u/jellyedwards",
"avatar": "https://gravatar.com/avatar/95a049a74f98a37ab73fe3d8880485ec?d=retro"
},
"link": "https://www.dwitter.net/d/20787",
"awesome_count": 25,
"remix_of": 20746
},
{
"id": 20784,
"code": "r=Math.random;for(i=k=214;i--;x.strokeRect(k*X,k*Y,i/t,k/t))X=r(Y=r()*5)*9,h=k*S(S(Y*.7)%C(p=S(q=1.5-X/3)*q+2)),x.strokeStyle=R(h*q,h*p,h*Y)",
"posted": "2020-11-22T19:22:07.248427Z",
"author": {
"username": "taupelink",
"date_joined": "2019-05-04",
"link": "https://www.dwitter.net/u/taupelink",
"avatar": "https://gravatar.com/avatar/aa53500dfa8cb59db75d451bbbd24df8?d=retro"
},
"link": "https://www.dwitter.net/d/20784",
"awesome_count": 31,
"remix_of": 20630
},
{
"id": 20699,
"code": "for(c.width=w=128,i=2e3;z=--i>>7;x.fillRect(i%w,(4+S(a=i/6+7*t/z)+S(3*a^z)/3+S(9*a)/9)*(14-z),1,w))x.fillStyle=`hsl(200,${z*9}%,${i/7-z*z}%`",
"posted": "2020-11-19T02:45:24.357882Z",
"author": {
"username": "pavel",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/pavel",
"avatar": "https://gravatar.com/avatar/700a362a663cf1c0787ea1e331dcb40e?d=retro"
},
"link": "https://www.dwitter.net/d/20699",
"awesome_count": 22,
"remix_of": 20689
},
{
"id": 20689,
"code": "eval(unescape(escape`\ud871\udc3d\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud839\udc39\ud83b\udc66\ud86f\udc72\ud828\udc76\ud861\udc72\ud820\udc6d\ud83d\udc33\ud830\udc2c\ud861\udc2c\ud86a\udc2c\ud86b\udc2c\ud869\udc3b\ud86d\udc2d\ud82d\udc3b\ud829\udc66\ud86f\udc72\ud828\udc6e\ud83d\udc31\ud82d\udc6d\ud82f\udc33\ud830\udc2c\ud869\udc3d\ud871\udc3b\ud869\udc2d\ud82d\udc3b\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc69\ud82c\udc61\ud82a\udc28\ud832\udc39\ud82d\udc6d\ud829\udc2f\ud832\udc2c\ud831\udc2c\ud871\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud860\udc68\ud873\udc6c\ud828\udc32\ud830\udc30\ud82c\udc24\ud87b\udc6d\ud82a\udc33\ud87d\udc25\ud82c\udc24\ud87b\udc35\ud830\udc2b\ud853\udc28\ud86e\udc2a\ud834\udc29\ud82a\udc35\ud830\udc7d\ud825\udc29\ud860\udc29\ud829\udc66\ud86f\udc72\ud828\udc61\ud83d\udc33\ud82c\udc6a\ud83d\udc31\ud832\udc3b\ud86a\udc2d\ud82d\udc3b\ud861\udc2b\ud83d\udc53\ud828\udc28\ud828\udc74\ud82f\udc6d\ud82a\udc71\ud82b\udc69\ud829\udc2b\ud839\udc2a\ud853\udc28\ud86d\udc2a\ud86b\udc29\ud829\udc2a\ud86b\udc2f\ud839\udc29\ud82f\udc6b\ud829\udc6b\ud83d\udc32\ud82a\udc2a\ud86a\udc3b`.replace(/u../g,'')))",
"posted": "2020-11-18T17:52:02.653456Z",
"author": {
"username": "yonatan",
"date_joined": "2017-04-25",
"link": "https://www.dwitter.net/u/yonatan",
"avatar": "https://gravatar.com/avatar/c7fabc219ab011fe8a1bd0590bcbcbd5?d=retro"
},
"link": "https://www.dwitter.net/d/20689",
"awesome_count": 31,
"remix_of": 16195
},
{
"id": 20669,
"code": "for(c.width&=i=8320;i--;)\r\nx.fillRect(X=i&127,Y=i>>7,\r\nk=S(8*t+X*X+Y*Y+X*Y)+.5,k)",
"posted": "2020-11-18T01:33:16.926654Z",
"author": {
"username": "tomxor",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/tomxor",
"avatar": "https://gravatar.com/avatar/4234d0a4a535750a025eb4812f1fc537?d=retro"
},
"link": "https://www.dwitter.net/d/20669",
"awesome_count": 20,
"remix_of": 20657
},
{
"id": 20651,
"code": "for(c.width=433,p=1;p++<6;)for(i=400;i--;)x.fillStyle=`hsla(${p*t*5},99%,50%,.4`,x.fillRect(i,m=C(i/(9*p+96)+t)*p*S(+p+S(i/66))*9+57,1,m)",
"posted": "2020-11-16T21:55:45.015623Z",
"author": {
"username": "[email protected]",
"date_joined": "2019-03-05",
"link": "https://www.dwitter.net/u/[email protected]",
"avatar": "https://gravatar.com/avatar/62a10c3ec28351ae672f91f153431770?d=retro"
},
"link": "https://www.dwitter.net/d/20651",
"awesome_count": 28,
"remix_of": 20618
},
{
"id": 20602,
"code": "c.width=1920\r\nX=960,Y=540,P=Math.PI,N=t/P%32,p=P/N\r\nfor(i=0;i<P;i+=p)x.fillRect(X+Y*(S(i+P)-S(i))/2*S(t+i),Y+Y*(C(i+P)-C(i))/2*S(t+i),19,19)",
"posted": "2020-11-14T08:31:31.772248Z",
"author": {
"username": "femto113",
"date_joined": "2020-11-14",
"link": "https://www.dwitter.net/u/femto113",
"avatar": "https://gravatar.com/avatar/a7edff4fd8b0c1a9d2cffe9699acf1de?d=retro"
},
"link": "https://www.dwitter.net/d/20602",
"awesome_count": 27,
"remix_of": null
},
{
"id": 20594,
"code": "with(x)for(c.width|=i=78,translate(960,540);j=i*i--/5;rotate(!fillRect(j+=(S(t-j/99)-1)*1e5/j,j*=j>0,j*=-2,j)))fillStyle=R(89,a=222-j/4,2*a)",
"posted": "2020-11-14T04:47:59.078614Z",
"author": {
"username": "pavel",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/pavel",
"avatar": "https://gravatar.com/avatar/700a362a663cf1c0787ea1e331dcb40e?d=retro"
},
"link": "https://www.dwitter.net/d/20594",
"awesome_count": 27,
"remix_of": null
},
{
"id": 20584,
"code": "eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud831\udc39\ud832\udc2c\ud852\udc3d\ud834\udc38\ud82c\udc69\ud83d\udc38\ud830\udc36\ud834\udc3b\ud869\udc2d\ud82d\udc3b\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc53\ud82b\udc39\ud836\udc2c\ud854\udc2b\ud835\udc34\ud82c\udc43\ud828\udc4d\ud861\udc74\ud868\udc2e\ud861\udc74\ud861\udc6e\ud832\udc28\ud853\udc3d\ud869\udc25\ud839\udc37\ud82d\udc52\ud82c\udc54\ud83d\udc69\ud82f\udc39\ud837\udc2d\ud852\udc2c\ud872\udc3d\ud828\udc53\ud82a\udc53\ud82b\udc54\ud82a\udc54\ud829\udc2a\ud82a\udc2e\ud835\udc29\ud82a\udc39\ud829\udc2a\ud832\udc30\ud82d\udc72\ud826\udc34\ud834\udc26\ud826\udc72\ud83e\udc33\ud836\udc3f\ud872\udc3c\ud834\udc32\ud83f\udc54\ud82f\udc52\ud83a\udc53\ud82f\udc52\ud83a\udc31\ud82c\udc72\ud83e\udc33\ud836\udc3f\ud872\udc3c\ud852\udc3a\ud87a\udc28\ud833\udc29\ud82f\udc35\ud829\udc29\ud87a\udc3d\ud86e\udc3d\ud83e\udc6e\ud82d\udc2d\ud826\udc26\ud843\udc28\ud854\udc2f\ud832\udc2b\ud853\udc2a\ud854\udc2f\ud852\udc2b\ud874\udc2a\ud839\udc29\ud82a\udc43\ud828\udc54\ud82f\udc34\ud82d\udc7a\ud828\udc6e\ud829\udc2a\ud832\udc29\ud82d\udc72\ud82f\udc36`.replace(/u../g,'')))",
"posted": "2020-11-13T01:17:05.441375Z",
"author": {
"username": "tomxor",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/tomxor",
"avatar": "https://gravatar.com/avatar/4234d0a4a535750a025eb4812f1fc537?d=retro"
},
"link": "https://www.dwitter.net/d/20584",
"awesome_count": 68,
"remix_of": null
},
{
"id": 20582,
"code": "for(i=c.width|=u=v=0;i--;)x.fillRect(960+u*2,540+v,99,9),u+=b=S(m=i/99*S(i*i/1e6+t)),v+=a=C(m),x.fillStyle=`hsl(${q=a*b*50} 50%${q+50}%`",
"posted": "2020-11-12T22:26:57.084827Z",
"author": {
"username": "yonatan",
"date_joined": "2017-04-25",
"link": "https://www.dwitter.net/u/yonatan",
"avatar": "https://gravatar.com/avatar/c7fabc219ab011fe8a1bd0590bcbcbd5?d=retro"
},
"link": "https://www.dwitter.net/d/20582",
"awesome_count": 21,
"remix_of": null
},
{
"id": 20577,
"code": "for(c.width|=i=8;--i;)for(w=j=3<<i-1;j--;x.fillRect(-!x.rotate(6.283/w*(j+i/(1+5**(4+i-t%3*5)))),-25*i,2,25))x.setTransform(3,0,0,3,960,540)",
"posted": "2020-11-11T20:56:20.414395Z",
"author": {
"username": "pavel",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/pavel",
"avatar": "https://gravatar.com/avatar/700a362a663cf1c0787ea1e331dcb40e?d=retro"
},
"link": "https://www.dwitter.net/d/20577",
"awesome_count": 39,
"remix_of": null
},
{
"id": 20551,
"code": "eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc6b\ud83d\udc32\ud835\udc32\ud80a\udc66\ud86f\udc72\ud828\udc78\ud82e\udc74\ud872\udc61\ud86e\udc73\ud86c\udc61\ud874\udc65\ud828\udc31\ud830\udc32\ud833\udc2c\ud835\udc37\ud836\udc29\ud83b\udc6b\ud82d\udc2d\ud83b\udc78\ud82e\udc72\ud86f\udc74\ud861\udc74\ud865\udc28\ud84d\udc61\ud874\udc68\ud82e\udc50\ud849\udc2f\ud836\udc29\ud829\udc78\ud82e\udc72\ud865\udc63\ud874\udc28\ud82d\udc31\ud865\udc34\ud82c\udc28\ud86a\udc3d\ud86b\udc25\ud837\udc29\ud82a\udc31\ud839\udc39\ud82c\udc31\ud865\udc35\ud82c\udc53\ud828\udc6a\ud82b\udc28\ud86b\udc2f\ud838\udc34\ud87c\udc30\ud829\udc2b\ud874\udc29\ud82a\udc37\ud839\udc29\ud82c\udc6b\ud825\udc38\ud834\udc3f\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud860\udc68\ud873\udc6c\ud828\udc24\ud87b\udc6b\ud82a\udc32\ud82b\udc74\ud82a\udc36\ud830\udc7d\ud820\udc39\ud839\udc25\ud824\udc7b\ud86b\udc2f\ud833\udc7d\ud825\udc29\ud860\udc3a\ud878\udc2e\ud862\udc65\ud867\udc69\ud86e\udc50\ud861\udc74\ud868\udc28\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud860\udc65\ud876\udc65\ud86e\udc6f\ud864\udc64\ud860\udc29`.replace(/u../g,'')))",
"posted": "2020-11-10T18:36:55.956129Z",
"author": {
"username": "KilledByAPixel",
"date_joined": "2019-04-02",
"link": "https://www.dwitter.net/u/KilledByAPixel",
"avatar": "https://gravatar.com/avatar/0e3d08af662dc4c994b210ce276db224?d=retro"
},
"link": "https://www.dwitter.net/d/20551",
"awesome_count": 21,
"remix_of": 20288
},
{
"id": 20541,
"code": "for(c.width=960,j=8;j--;)for(i=20;i--;)x.arc(480,270,2**((i>>1)+i%2/2-j%2/2+t/3%1),a=(j+i%2)*Math.PI/4,a);x.fill()",
"posted": "2020-11-10T00:47:07.476970Z",
"author": {
"username": "pavel",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/pavel",
"avatar": "https://gravatar.com/avatar/700a362a663cf1c0787ea1e331dcb40e?d=retro"
},
"link": "https://www.dwitter.net/d/20541",
"awesome_count": 22,
"remix_of": null
},
{
"id": 20540,
"code": "X=1e3,Y=X/2\r\nfor(c.width|=i=2e3;i--;x.fillRect(X+=C(d*=11/7),Y+=S(d),5,5),x.fillRect(2e3-X,1e3-Y,5,5))d=S(S(i/120+t-i/99))*3\r\n",
"posted": "2020-11-09T17:29:34.624214Z",
"author": {
"username": "geb",
"date_joined": "2018-07-24",
"link": "https://www.dwitter.net/u/geb",
"avatar": "https://gravatar.com/avatar/653d924e3c45ecab736f58984764f8ea?d=retro"
},
"link": "https://www.dwitter.net/d/20540",
"awesome_count": 29,
"remix_of": 20532
},
{
"id": 20532,
"code": "X=1e3,Y=X/2\r\nfor(c.width|=i=2e3;i--;x.fillRect(X+=C(d*=Math.PI/2),Y+=S(d),9,9),x.fillRect(2e3-X,1e3-Y,9,9))d=C(i/120+t/5-S(i/99-t/3))*4^0\r\n",
"posted": "2020-11-09T12:15:35.577190Z",
"author": {
"username": "ntsutae",
"date_joined": "2020-01-07",
"link": "https://www.dwitter.net/u/ntsutae",
"avatar": "https://gravatar.com/avatar/7c21bcdf4bdff9c459a67f882d53727f?d=retro"
},
"link": "https://www.dwitter.net/d/20532",
"awesome_count": 22,
"remix_of": null
},
{
"id": 20478,
"code": "f=(X,Y,r,a,s,d=1)=>r>.5&&x.lineTo(X,Y)|f(X+C(a+=s/3)*r,Y+S(a)*r,r-r/22,a,s,-d)|f(X,Y,r/2.9,a+s*d,s*d)\r\nt||f(1280,214,118,1.3,.6)|x.stroke()",
"posted": "2020-11-04T16:13:47.928178Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/20478",
"awesome_count": 35,
"remix_of": 20477
},
{
"id": 20460,
"code": "for(c.width|=i=266;i--;x.beginPath(x.fill()))for(r=74-T(S(i*i+t/4)*.6+t/2)**8,j=6;j--;)x.arc((i>>4)*2-i%2<<6,i%16*111,r>0&&r,a=j*1.047+11,a)",
"posted": "2020-11-03T20:04:17.795267Z",
"author": {
"username": "pavel",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/pavel",
"avatar": "https://gravatar.com/avatar/700a362a663cf1c0787ea1e331dcb40e?d=retro"
},
"link": "https://www.dwitter.net/d/20460",
"awesome_count": 37,
"remix_of": null
},
{
"id": 20447,
"code": "for(i=2e3,f=(X,Y,n=135)=>X**3/Y<42?f(X*X-Y*Y-.8,2*X*Y+.2,n-3):x.fillStyle=`hsl(${6*n},90%,${n}%`;i--;x.fillRect(i,t*60,1,i))f(i/5e3-.7,t/85)",
"posted": "2020-11-01T18:18:31.924715Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/20447",
"awesome_count": 20,
"remix_of": 20439
},
{
"id": 20439,
"code": "for(i=2e3,f=(X,Y,n=235)=>X**3/Y<n?f(X*X-Y*Y-.8,2*X*Y+.2,n-3):x.fillStyle=`hsl(${n*4},90%,${n/2}%`;i--;x.fillRect(i,t*60,1,999))f(i/3e3,t/50)",
"posted": "2020-10-30T16:35:37.131521Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/20439",
"awesome_count": 21,
"remix_of": 20238
},
{
"id": 20436,
"code": "eval(unescape(escape`\ud841\udc3d\ud853\udc28\ud874\udc29\ud83b\udc42\ud83d\udc43\ud828\udc74\ud829\udc3b\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud858\udc3d\ud831\udc32\ud838\udc3b\ud858\udc2d\ud82d\udc3b\ud829\udc7b\ud866\udc6f\ud872\udc28\ud85a\udc3d\ud831\udc2c\ud852\udc3d\ud854\udc28\ud858\udc2f\ud838\udc31\ud82d\udc2e\ud838\udc29\ud83b\udc61\ud83d\udc32\ud830\udc2b\ud828\udc52\ud82a\udc42\ud82d\udc41\ud829\udc2a\ud85a\udc2c\ud862\udc3d\ud831\udc33\ud832\udc2b\ud828\udc52\ud82a\udc41\ud82b\udc42\ud829\udc2a\ud85a\udc2c\ud828\udc61\ud85e\udc62\ud829\udc25\ud837\udc3e\ud831\udc3b\ud829\udc5a\ud82b\udc3d\ud82e\udc31\ud83b\udc66\ud86f\udc72\ud828\udc59\ud83d\udc2d\ud834\udc38\ud83b\udc59\ud82b\udc2b\ud83c\udc34\ud838\udc3b\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc58\ud82c\udc33\ud836\udc2d\ud859\udc2f\ud85a\udc2c\ud87a\udc25\ud837\udc3c\ud836\udc3f\ud85a\udc2f\ud838\udc3a\ud87a\udc2b\ud874\udc2a\ud836\udc26\ud861\udc26\ud826\udc2d\ud831\udc2c\ud831\udc29\ud829\udc7a\ud83d\udc28\ud861\udc2b\ud862\udc29\ud82a\udc38\ud83c\udc3c\ud861\udc25\ud832\udc2c\ud87a\udc3d\ud87a\udc2d\ud859\udc5e\ud859\udc2b\ud87a\udc7d`.replace(/u../g,'')))",
"posted": "2020-10-30T00:00:15.879207Z",
"author": {
"username": "tomxor",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/tomxor",
"avatar": "https://gravatar.com/avatar/4234d0a4a535750a025eb4812f1fc537?d=retro"
},
"link": "https://www.dwitter.net/d/20436",
"awesome_count": 32,
"remix_of": 20416
},
{
"id": 20416,
"code": "A=S(t);B=C(t);for(c.width=X=128;X--;x.fillRect(X,36-1e3/Z,Z**.5/16,2e3/Z))for(Z=1,R=T(X/81-.8);(A*t+24+(R*B-A)*Z/8^64+(R*A+B)*Z/8)%15>1;)Z++",
"posted": "2020-10-28T18:12:31.052457Z",
"author": {
"username": "tomxor",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/tomxor",
"avatar": "https://gravatar.com/avatar/4234d0a4a535750a025eb4812f1fc537?d=retro"
},
"link": "https://www.dwitter.net/d/20416",
"awesome_count": 26,
"remix_of": 20405
},
{
"id": 20405,
"code": "eval(unescape(escape`\ud874\udc7c\ud87c\udc28\ud872\udc3d\ud861\udc3d\ud862\udc3d\ud836\udc34\ud829\udc3b\ud841\udc3d\ud853\udc28\ud872\udc29\ud83b\udc42\ud83d\udc43\ud828\udc72\ud829\udc3b\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud858\udc3d\ud831\udc32\ud838\udc3b\ud858\udc2d\ud82d\udc3b\ud861\udc2d\ud83d\udc6b\ud82a\udc41\ud82c\udc62\ud82b\udc3d\ud86b\udc2a\ud842\udc2c\ud872\udc2d\ud83d\udc43\ud828\udc58\ud82f\udc34\ud830\udc2b\ud853\udc28\ud874\udc5e\ud85a\udc29\ud829\udc2f\ud85a\udc2f\ud85a\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc58\ud82c\udc33\ud836\udc2d\ud831\udc65\ud833\udc2f\ud85a\udc2c\ud86b\udc2a\ud872\udc2c\ud832\udc65\ud833\udc2f\ud85a\udc29\ud829\udc66\ud86f\udc72\ud828\udc5a\ud83d\udc31\ud82c\udc52\ud83d\udc54\ud828\udc58\ud82f\udc38\ud831\udc2d\ud82e\udc38\ud829\udc3b\ud828\udc61\ud82b\udc28\ud852\udc2a\ud842\udc2d\ud841\udc29\ud82a\udc5a\ud82f\udc38\ud85e\udc62\ud82b\udc28\ud852\udc2a\ud841\udc2b\ud842\udc29\ud82a\udc5a\ud82f\udc38\ud829\udc25\ud831\udc35\ud83e\udc31\ud83b\udc29\ud86b\udc3d\ud828\udc5a\ud82b\udc2b\ud82a\udc2a\ud82e\udc35\ud82d\udc33\ud829\udc2f\ud834\udc65\ud833\udc3b`.replace(/u../g,'')))",
"posted": "2020-10-26T21:45:34.765023Z",
"author": {
"username": "tomxor",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/tomxor",
"avatar": "https://gravatar.com/avatar/4234d0a4a535750a025eb4812f1fc537?d=retro"
},
"link": "https://www.dwitter.net/d/20405",
"awesome_count": 37,
"remix_of": null
},
{
"id": 20372,
"code": "for(Y=t*60,X=480;X--;x.fillStyle=R(o=333*C(C(S(t+X/33)-t+S(X/(25+T(X/19+Y/19))))),o*.7))x.fillRect(X*4,0,4,4)\r\nx.drawImage(c,0,4)",
"posted": "2020-10-24T19:11:26.522443Z",
"author": {
"username": "[email protected]",
"date_joined": "2019-03-05",
"link": "https://www.dwitter.net/u/[email protected]",
"avatar": "https://gravatar.com/avatar/62a10c3ec28351ae672f91f153431770?d=retro"
},
"link": "https://www.dwitter.net/d/20372",
"awesome_count": 29,
"remix_of": 20371
},
{
"id": 20301,
"code": "\u5de5=(\u4e00,\u4e8c,\u5341=0)=>\u4e00*\u4e00>5?\u5341:\r\n\u5de5(2*\u4e00*\u4e8c-.7,S(\u4e8c*\u4e8c*2-\u4e00*\u4e00*2),\u5341+1)\r\n\u5de5;for(\u9f99=\u4e09=1234;\u9f99--;x.fillRect(t*61,\u9f99,\u529b,1))\r\n\u5de5,x.fillStyle=R(\u529b=\r\n\u5de5(3*\u9f99/\u4e09-1,1+t/11)**2,\u529b/5)",
"posted": "2020-10-19T17:17:01.678100Z",
"author": {
"username": "rodrigo.siqueira",
"date_joined": "2018-10-13",
"link": "https://www.dwitter.net/u/rodrigo.siqueira",
"avatar": "https://gravatar.com/avatar/15b9898131f206df0cb551472bde467a?d=retro"
},
"link": "https://www.dwitter.net/d/20301",
"awesome_count": 26,
"remix_of": 20258
},
{
"id": 20288,
"code": "c.width|=i=490\r\nfor(x.translate(979,550);i--;x.rotate(Math.PI/5))x.rect(-1e3,(j=i%98)*80,2e3,80-C(j/9+t)*80)\r\nx.fill`evenodd`",
"posted": "2020-10-17T06:21:21.769837Z",
"author": {
"username": "KilledByAPixel",
"date_joined": "2019-04-02",
"link": "https://www.dwitter.net/u/KilledByAPixel",
"avatar": "https://gravatar.com/avatar/0e3d08af662dc4c994b210ce276db224?d=retro"
},
"link": "https://www.dwitter.net/d/20288",
"awesome_count": 24,
"remix_of": 20286
},
{
"id": 20283,
"code": "x.beginPath(c.width|=X=Y=Z=0.004)\r\nfor(i=2e3;i--;x.lineTo(960+(Z*S(t)+X*C(t))*i*99,540+Y*i*49))X+=Y*Z+Y,Y+=Y*Y-X*X-Z-X,Z+=-Z*Y*X+Y\r\nx.stroke()",
"posted": "2020-10-16T22:09:03.973680Z",
"author": {
"username": "anotherkitten",
"date_joined": "2018-07-19",
"link": "https://www.dwitter.net/u/anotherkitten",
"avatar": "https://gravatar.com/avatar/c4b5a5d821e51acd63617240a4173d04?d=retro"
},
"link": "https://www.dwitter.net/d/20283",
"awesome_count": 20,
"remix_of": 20280
},
{
"id": 20269,
"code": "eval(unescape(escape`\ud877\udc69\ud874\udc68\ud828\udc78\ud829\udc66\ud86f\udc72\ud828\udc63\ud82e\udc77\ud869\udc64\ud874\udc68\ud87c\udc3d\ud84b\udc3d\ud839\udc39\ud82c\udc65\ud83d\udc28\ud844\udc2c\ud842\udc2c\ud843\udc29\ud83d\udc3e\ud865\udc6c\ud86c\udc69\ud870\udc73\ud865\udc28\ud84b\udc2a\ud839\udc2b\ud844\udc2a\ud84b\udc2a\ud82d\udc28\ud841\udc25\ud836\udc3c\ud833\udc3f\ud831\udc3a\ud82d\udc31\ud829\udc2c\ud835\udc34\ud830\udc2c\ud845\udc3d\ud857\udc2d\ud82d\udc2a\ud84b\udc2c\ud845\udc2d\ud84b\udc2c\ud830\udc2c\ud841\udc2b\ud842\udc2c\ud841\udc2b\ud843\udc2c\ud842\udc29\ud82c\udc5a\ud83d\udc2e\ud833\udc2c\ud841\udc3d\ud828\udc74\ud825\udc3d\ud85a\udc29\ud83b\udc41\ud83c\udc36\ud82b\udc74\ud83b\udc41\ud82b\udc3d\ud85a\udc2c\ud873\udc74\ud872\udc6f\ud86b\udc65\ud828\udc29\ud829\udc62\ud865\udc67\ud869\udc6e\ud850\udc61\ud874\udc68\ud828\udc57\ud83d\udc34\ud829\udc2c\ud865\udc28\ud831\udc2c\ud85a\udc2c\ud830\udc2c\ud865\udc28\ud830\udc2c\ud830\udc2c\ud85a\udc2c\ud863\udc6c\ud86f\udc73\ud865\udc50\ud861\udc74\ud868\udc28\ud865\udc28\ud831\udc2c\ud830\udc2c\ud85a\udc29\ud82c\udc65\ud828\udc30\ud82c\udc5a\ud82c\udc30\ud829\udc2c\ud857\udc3d\ud835\udc29\ud829\udc29`.replace(/u../g,'')))",
"posted": "2020-10-15T11:09:38.323039Z",
"author": {
"username": "rep_movsd",
"date_joined": "2019-07-21",
"link": "https://www.dwitter.net/u/rep_movsd",
"avatar": "https://gravatar.com/avatar/9167d52e6cf674d8af8f4280a5c9e059?d=retro"
},
"link": "https://www.dwitter.net/d/20269",
"awesome_count": 23,
"remix_of": null
},
{
"id": 20267,
"code": "c.width|=X=Y=0\r\nfor(i=3e3;i--;s=i/59+9,x.globalAlpha=i*i/2e7,x.fillRect(960+(X+=C(d))*s/9,540+(Y+=S(d))*s/9,s,s))d=S((t+i)/33+t*9|0)*88",
"posted": "2020-10-14T18:28:15.723156Z",
"author": {
"username": "yonatan",
"date_joined": "2017-04-25",
"link": "https://www.dwitter.net/u/yonatan",
"avatar": "https://gravatar.com/avatar/c7fabc219ab011fe8a1bd0590bcbcbd5?d=retro"
},
"link": "https://www.dwitter.net/d/20267",
"awesome_count": 21,
"remix_of": null
},
{
"id": 20263,
"code": "with(x)arc(960,540,t*t,(t%8>4?t:-t)/3,99),setLineDash([t*t/5]),stroke(),setLineDash([]),globalAlpha=1-S(t%4*.8),beginPath(stroke())",
"posted": "2020-10-13T19:43:06.284655Z",
"author": {