-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
1182 lines (1182 loc) · 33.7 KB
/
Copy pathdata.js
File metadata and controls
1182 lines (1182 loc) · 33.7 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
tableData = [
{
"name": "Hydrogen",
"number": 1,
"symbol": "H",
"row": 1,
"col": 1,
"description": ":atom: Run code interactively, inspect data, and plot. All the power of Jupyter kernels, inside your favorite text editor.",
"url": "https://api.github.com/repos/nteract/hydrogen",
"stargazers_count": 2737
},
{
"name": "Helium",
"number": 2,
"symbol": "He",
"row": 1,
"col": 18,
"description": "A floating browser window for OS X",
"url": "https://api.github.com/repos/JadenGeller/Helium",
"stargazers_count": 2949
},
{
"name": "Lithium",
"number": 3,
"symbol": "Li",
"row": 2,
"col": 1,
"description": "li₃ is the fast, flexible and most RAD development framework for PHP",
"url": "https://api.github.com/repos/UnionOfRAD/lithium",
"stargazers_count": 1099
},
{
"name": "Beryllium",
"number": 4,
"symbol": "Be",
"row": 2,
"col": 2,
"description": "High performance SDK for building bots on Wire.",
"url": "https://api.github.com/repos/OmnijarBots/beryllium",
"stargazers_count": 9
},
{
"name": "Boron",
"number": 5,
"symbol": "B",
"row": 2,
"col": 13,
"description": "A collection of dialog animations with React.js",
"url": "https://api.github.com/repos/yuanyan/boron",
"stargazers_count": 1416
},
{
"name": "Carbon",
"number": 6,
"symbol": "C",
"row": 2,
"col": 14,
"description": "🎨 Create and share beautiful images of your source code",
"url": "https://api.github.com/repos/dawnlabs/carbon",
"stargazers_count": 10589
},
{
"name": "Nitrogen",
"number": 7,
"symbol": "N",
"row": 2,
"col": 15,
"description": "Nitrogen Web Framework for Erlang (now with websockets!)",
"url": "https://api.github.com/repos/nitrogen/nitrogen",
"stargazers_count": 839
},
{
"name": "Oxygen",
"number": 8,
"symbol": "O",
"row": 2,
"col": 16,
"description": "A basic theme for Drupal using the peroxide theme engine.",
"url": "https://api.github.com/repos/codeincarnate/oxygen",
"stargazers_count": 11
},
{
"name": "Fluorine",
"number": 9,
"symbol": "F",
"row": 2,
"col": 17,
"description": "[UNMAINTAINED] Reactive state and side effect management for React using a single stream of actions",
"url": "https://api.github.com/repos/kitten/fluorine",
"stargazers_count": 296
},
{
"name": "Neon",
"number": 10,
"symbol": "Ne",
"row": 2,
"col": 18,
"description": "A powerful Swift programmatic UI layout framework.",
"url": "https://api.github.com/repos/mamaral/Neon",
"stargazers_count": 4286
},
{
"name": "Sodium",
"number": 11,
"symbol": "Na",
"row": 3,
"col": 1,
"description": "Sodium - Functional Reactive Programming (FRP) Library for multiple languages",
"url": "https://api.github.com/repos/SodiumFRP/sodium",
"stargazers_count": 645
},
{
"name": "Magnesium",
"number": 12,
"symbol": "Mg",
"row": 3,
"col": 2,
"description": ":crystal_ball: A terminal emulator based on Electron.",
"url": "https://api.github.com/repos/IonicaBizau/magnesium",
"stargazers_count": 32
},
{
"name": "Aluminium",
"number": 13,
"symbol": "Al",
"row": 3,
"col": 13,
"description": "A simple mod that adds aluminium to Minetest",
"url": "https://api.github.com/repos/ClobberXD/aluminium",
"stargazers_count": 2
},
{
"name": "Silicon",
"number": 14,
"symbol": "Si",
"row": 3,
"col": 14,
"description": "A high performance, middleware oriented C++14 http web framework",
"url": "https://api.github.com/repos/matt-42/silicon",
"stargazers_count": 1513
},
{
"name": "Phosphorus",
"number": 15,
"symbol": "P",
"row": 3,
"col": 15,
"description": "JavaScript compiler for Scratch projects.",
"url": "https://api.github.com/repos/nathan/phosphorus",
"stargazers_count": 202
},
{
"name": "Sulfur",
"number": 16,
"symbol": "S",
"row": 3,
"col": 16,
"description": "Media manager written for the WordPress.com & Jetpack REST API.",
"url": "https://api.github.com/repos/Automattic/sulfur",
"stargazers_count": 46
},
{
"name": "Chlorine",
"number": 17,
"symbol": "Cl",
"row": 3,
"col": 17,
"description": "Dead Simple OpenCL",
"url": "https://api.github.com/repos/Polytonic/Chlorine",
"stargazers_count": 414
},
{
"name": "Argon",
"number": 18,
"symbol": "Ar",
"row": 3,
"col": 18,
"description": "The Plug And Play Backend. Based on pure JS and PHP",
"url": "https://api.github.com/repos/benhmoore/Argon",
"stargazers_count": 324
},
{
"name": "Potassium",
"number": 19,
"symbol": "K",
"row": 4,
"col": 1,
"description": "The father to every Platanus Rails project",
"url": "https://api.github.com/repos/platanus/potassium",
"stargazers_count": 25
},
{
"name": "Calcium",
"number": 20,
"symbol": "Ca",
"row": 4,
"col": 2,
"description": "fetch/parse school meals list from goverment.",
"url": "https://api.github.com/repos/hibiyasleep/calcium",
"stargazers_count": 9
},
{
"name": "Scandium",
"number": 21,
"symbol": "Sc",
"row": 4,
"col": 3,
"description": "A toolkit for transformation webapps into desktop applications under QtWebKit.",
"url": "https://api.github.com/repos/mattbennett/scandium",
"stargazers_count": 39
},
{
"name": "Titanium",
"number": 22,
"symbol": "Ti",
"row": 4,
"col": 4,
"description": "The Titanium Command Line (CLI) project",
"url": "https://api.github.com/repos/appcelerator/titanium",
"stargazers_count": 209
},
{
"name": "Vanadium",
"number": 23,
"symbol": "V",
"row": 4,
"col": 5,
"description": "Vanadium, V23, Vanadis - Norse goddess of beauty and fertility, Element which name is closest to VALIDATION",
"url": "https://api.github.com/repos/lambder/Vanadium",
"stargazers_count": 124
},
{
"name": "Chromium",
"number": 24,
"symbol": "Cr",
"row": 4,
"col": 6,
"description": "The official GitHub mirror of the Chromium source",
"url": "https://api.github.com/repos/chromium/chromium",
"stargazers_count": 697
},
{
"name": "Manganese",
"number": 25,
"symbol": "Mn",
"row": 4,
"col": 7,
"description": "Download and organize manga on your computers using popular websites crawling.",
"url": "https://api.github.com/repos/jfmengels/manganese",
"stargazers_count": 6
},
{
"name": "Iron",
"number": 26,
"symbol": "Fe",
"row": 4,
"col": 8,
"description": "An Extensible, Concurrent Web Framework for Rust",
"url": "https://api.github.com/repos/iron/iron",
"stargazers_count": 4889
},
{
"name": "Cobalt",
"number": 27,
"symbol": "Co",
"row": 4,
"col": 9,
"description": "Open data APIs for interfacing with public information from the University of Toronto.",
"url": "https://api.github.com/repos/cobalt-uoft/cobalt",
"stargazers_count": 75
},
{
"name": "Nickel",
"number": 28,
"symbol": "Ni",
"row": 4,
"col": 10,
"description": "Nickel extracts date, time, and message information from naturally worded text.",
"url": "https://api.github.com/repos/lzell/nickel",
"stargazers_count": 205
},
{
"name": "Copper",
"number": 29,
"symbol": "Cu",
"row": 4,
"col": 11,
"description": "[WIP] Your guide to programming ARM Cortex-M microcontrollers with Rust",
"url": "https://api.github.com/repos/japaric/copper",
"stargazers_count": 313
},
{
"name": "Zinc",
"number": 30,
"symbol": "Zn",
"row": 4,
"col": 12,
"description": "The bare metal stack for rust",
"url": "https://api.github.com/repos/hackndev/zinc",
"stargazers_count": 987
},
{
"name": "Gallium",
"number": 31,
"symbol": "Ga",
"row": 4,
"col": 13,
"description": "Build desktop applications in Go and HTML.",
"url": "https://api.github.com/repos/alexflint/gallium",
"stargazers_count": 3568
},
{
"name": "Germanium",
"number": 32,
"symbol": "Ge",
"row": 4,
"col": 14,
"description": "Fuzz yer forms.",
"url": "https://api.github.com/repos/thefury/germanium",
"stargazers_count": 2
},
{
"name": "Arsenic",
"number": 33,
"symbol": "As",
"row": 4,
"col": 15,
"description": "Async WebDriver implementation for asyncio and asyncio-compatible frameworks",
"url": "https://api.github.com/repos/HDE/arsenic",
"stargazers_count": 53
},
{
"name": "Selenium",
"number": 34,
"symbol": "Se",
"row": 4,
"col": 16,
"description": "A browser automation framework and ecosystem.",
"url": "https://api.github.com/repos/SeleniumHQ/selenium",
"stargazers_count": 10377
},
{
"name": "Bromine",
"number": 35,
"symbol": "Br",
"row": 4,
"col": 17,
"description": "JS library for UI testing in the browser",
"url": "https://api.github.com/repos/CheggEng/Bromine",
"stargazers_count": 18
},
{
"name": "Krypton",
"number": 36,
"symbol": "Kr",
"row": 4,
"col": 18,
"description": "Krypton WinForms components for .NET",
"url": "https://api.github.com/repos/ComponentFactory/Krypton",
"stargazers_count": 407
},
{
"name": "Rubidium",
"number": 37,
"symbol": "Rb",
"row": 5,
"col": 1,
"description": ":hourglass: A small unique job scheduler.",
"url": "https://api.github.com/repos/qubyte/rubidium",
"stargazers_count": 4
},
{
"name": "Strontium",
"number": 38,
"symbol": "Sr",
"row": 5,
"col": 2,
"description": "The Strontium Library (SrL) is a collection of sketch recognition libraries for use on the JDK and Android",
"url": "https://api.github.com/repos/eyce9000/strontium",
"stargazers_count": 11
},
{
"name": "Yttrium",
"number": 39,
"symbol": "Y",
"row": 5,
"col": 3,
"description": "Scaffold for go REST api service",
"url": "https://api.github.com/repos/uthark/yttrium",
"stargazers_count": 1
},
{
"name": "Zirconium",
"number": 40,
"symbol": "Zr",
"row": 5,
"col": 4,
"description": "A picoframework for Web Components",
"url": "https://api.github.com/repos/rtsao/zirconium",
"stargazers_count": 5
},
{
"name": "Niobium",
"number": 41,
"symbol": "Nb",
"row": 5,
"col": 5,
"description": null,
"url": "https://api.github.com/repos/rightfold/niobium",
"stargazers_count": 2
},
{
"name": "Molybdenum",
"number": 42,
"symbol": "Mo",
"row": 5,
"col": 6,
"description": "A git repo browser (for when your git repos aren't on GitHub)",
"url": "https://api.github.com/repos/trentm/molybdenum",
"stargazers_count": 12
},
{
"name": "Technetium",
"number": 43,
"symbol": "Tc",
"row": 5,
"col": 7,
"description": "Mercurial Centralized Issue Tracker and Report Generation ",
"url": "https://api.github.com/repos/DrkSephy/technetium",
"stargazers_count": 20
},
{
"name": "Ruthenium",
"number": 44,
"symbol": "Ru",
"row": 5,
"col": 8,
"description": "Ack-like search tool written in Rust",
"url": "https://api.github.com/repos/birkenfeld/ruthenium",
"stargazers_count": 12
},
{
"name": "Rhodium",
"number": 45,
"symbol": "Rh",
"row": 5,
"col": 9,
"description": "Python Library for Robust Decision Making and Exploratory Modelling",
"url": "https://api.github.com/repos/Project-Platypus/Rhodium",
"stargazers_count": 24
},
{
"name": "Palladium",
"number": 46,
"symbol": "Pd",
"row": 5,
"col": 10,
"description": "Framework for setting up predictive analytics services",
"url": "https://api.github.com/repos/ottogroup/palladium",
"stargazers_count": 423
},
{
"name": "Silver",
"number": 47,
"symbol": "Ag",
"row": 5,
"col": 11,
"description": "Automated billing and payments for Django with a REST API",
"url": "https://api.github.com/repos/silverapp/silver",
"stargazers_count": 161
},
{
"name": "Cadmium",
"number": 48,
"symbol": "Cd",
"row": 5,
"col": 12,
"description": "A Swift framework that wraps CoreData, hides context complexity, and helps facilitate best practices.",
"url": "https://api.github.com/repos/jmfieldman/Cadmium",
"stargazers_count": 97
},
{
"name": "Indium",
"number": 49,
"symbol": "In",
"row": 5,
"col": 13,
"description": "A JavaScript development environment for Emacs",
"url": "https://api.github.com/repos/NicolasPetton/Indium",
"stargazers_count": 687
},
{
"name": "Tin",
"number": 50,
"symbol": "Sn",
"row": 5,
"col": 14,
"stargazers_count": 0,
"url": "",
"description": ""
},
{
"name": "Antimony",
"number": 51,
"symbol": "Sb",
"row": 5,
"col": 15,
"description": "CAD from a parallel universe",
"url": "https://api.github.com/repos/mkeeter/antimony",
"stargazers_count": 1471
},
{
"name": "Tellurium",
"number": 52,
"symbol": "Te",
"row": 5,
"col": 16,
"description": "A utility pack to create maintainable and reliable UI tests using Selenium with additional support for ASP.NET MVC projects.",
"url": "https://api.github.com/repos/cezarypiatek/Tellurium",
"stargazers_count": 24
},
{
"name": "Iodine",
"number": 53,
"symbol": "I",
"row": 5,
"col": 17,
"description": "Official git repo for iodine dns tunnel",
"url": "https://api.github.com/repos/yarrick/iodine",
"stargazers_count": 2311
},
{
"name": "Xenon",
"number": 54,
"symbol": "Xe",
"row": 5,
"col": 18,
"description": "Xenon - Decentralized Control Plane Framework",
"url": "https://api.github.com/repos/vmware/xenon",
"stargazers_count": 214
},
{
"name": "Cesium",
"number": 55,
"symbol": "Cs",
"row": 6,
"col": 1,
"description": "An open-source JavaScript library for world-class 3D globes and maps :earth_americas:",
"url": "https://api.github.com/repos/AnalyticalGraphicsInc/cesium",
"stargazers_count": 3106
},
{
"name": "Barium",
"number": 56,
"symbol": "Ba",
"row": 6,
"col": 2,
"description": "Pragmatic Styling with React.js",
"url": "https://api.github.com/repos/yuanyan/barium",
"stargazers_count": 13
},
{
"name": "Lanthanum",
"number": 57,
"symbol": "La",
"row": 9,
"col": 3,
"description": "Java math lib",
"url": "https://api.github.com/repos/creichlin/lanthanum",
"stargazers_count": 0
},
{
"name": "Cerium",
"number": 58,
"symbol": "Ce",
"row": 9,
"col": 4,
"description": "Project Cerium - Event Site Template (2016 Version)",
"url": "https://api.github.com/repos/limhenry/cerium",
"stargazers_count": 10
},
{
"name": "Praseodymium",
"number": 59,
"symbol": "Pr",
"row": 9,
"col": 5,
"description": null,
"url": "https://api.github.com/repos/lanthanoid/praseodymium",
"stargazers_count": 0
},
{
"name": "Neodymium",
"number": 60,
"symbol": "Nd",
"row": 9,
"col": 6,
"description": ":metal: Atomic number soixante",
"url": "https://api.github.com/repos/soixantecircuits/neodymium",
"stargazers_count": 13
},
{
"name": "Promethium",
"number": 61,
"symbol": "Pm",
"row": 9,
"col": 7,
"description": null,
"url": "https://api.github.com/repos/promethius2018/promethium",
"stargazers_count": 0
},
{
"name": "Samarium",
"number": 62,
"symbol": "Sm",
"row": 9,
"col": 8,
"description": "GDGKL Event Website Template (2017 Version)",
"url": "https://api.github.com/repos/limhenry/samarium",
"stargazers_count": 3
},
{
"name": "Europium",
"number": 63,
"symbol": "Eu",
"row": 9,
"col": 9,
"description": null,
"url": "https://api.github.com/repos/lanthanoid/europium",
"stargazers_count": 0
},
{
"name": "Gadolinium",
"number": 64,
"symbol": "Gd",
"row": 9,
"col": 10,
"description": null,
"url": "https://api.github.com/repos/lubolub1/Gadolinium",
"stargazers_count": 0
},
{
"name": "Terbium",
"number": 65,
"symbol": "Tb",
"row": 9,
"col": 11,
"description": "advansed scaffold builder",
"url": "https://api.github.com/repos/pyromaniac/terbium",
"stargazers_count": 2
},
{
"name": "Dysprosium",
"number": 66,
"symbol": "Dy",
"row": 9,
"col": 12,
"description": "JavaScript documentation parser",
"url": "https://api.github.com/repos/azendal/dysprosium",
"stargazers_count": 7
},
{
"name": "Holmium",
"number": 67,
"symbol": "Ho",
"row": 9,
"col": 13,
"description": null,
"url": "https://api.github.com/repos/lanthanoid/holmium",
"stargazers_count": 0
},
{
"name": "Erbium",
"number": 68,
"symbol": "Er",
"row": 9,
"col": 14,
"description": "Erbium - JavaScript Components",
"url": "https://api.github.com/repos/AlexanderElias/erbium",
"stargazers_count": 1
},
{
"name": "Thulium",
"number": 69,
"symbol": "Tm",
"row": 9,
"col": 15,
"description": null,
"url": "https://api.github.com/repos/freshout-dev/thulium",
"stargazers_count": 34
},
{
"name": "Ytterbium",
"number": 70,
"symbol": "Yb",
"row": 9,
"col": 16,
"description": "An OSC capable audio synthesizer written in Rust",
"url": "https://api.github.com/repos/klingtnet/ytterbium",
"stargazers_count": 1
},
{
"name": "Lutetium",
"number": 71,
"symbol": "Lu",
"row": 9,
"col": 17,
"description": "Lutetium GUI Platform",
"url": "https://api.github.com/repos/RTNelo/Lutetium",
"stargazers_count": 0
},
{
"name": "Hafnium",
"number": 72,
"symbol": "Hf",
"row": 6,
"col": 4,
"description": "Home Automation",
"url": "https://api.github.com/repos/hafnium/Hafnium",
"stargazers_count": 2
},
{
"name": "Tantalum",
"number": 73,
"symbol": "Ta",
"row": 6,
"col": 5,
"description": "WebGL 2D Light Transport",
"url": "https://api.github.com/repos/tunabrain/tantalum",
"stargazers_count": 357
},
{
"name": "Tungsten",
"number": 74,
"symbol": "W",
"row": 6,
"col": 6,
"description": "High performance physically based renderer in C++11",
"url": "https://api.github.com/repos/tunabrain/tungsten",
"stargazers_count": 994
},
{
"name": "Rhenium",
"number": 75,
"symbol": "Re",
"row": 6,
"col": 7,
"description": "MySQL replication relay service",
"url": "https://api.github.com/repos/vkandy/rhenium",
"stargazers_count": 2
},
{
"name": "Osmium",
"number": 76,
"symbol": "Os",
"row": 6,
"col": 8,
"description": "C++/Javascript framework for working with OSM files.",
"url": "https://api.github.com/repos/joto/osmium",
"stargazers_count": 115
},
{
"name": "Iridium",
"number": 77,
"symbol": "Ir",
"row": 6,
"col": 9,
"description": "Iridium is an extension built to improve your experience with the new YouTube Material layout",
"url": "https://api.github.com/repos/ParticleCore/Iridium",
"stargazers_count": 707
},
{
"name": "Platinum",
"number": 78,
"symbol": "Pt",
"row": 6,
"col": 10,
"description": "UPnP SDK",
"url": "https://api.github.com/repos/plutinosoft/Platinum",
"stargazers_count": 130
},
{
"name": "Gold",
"number": 79,
"symbol": "Au",
"row": 6,
"col": 11,
"description": "[DEPRECATED]Template engine for Go",
"url": "https://api.github.com/repos/yosssi/gold",
"stargazers_count": 154
},
{
"name": "Mercury",
"number": 80,
"symbol": "Hg",
"row": 6,
"col": 12,
"description": "A truly modular frontend framework",
"url": "https://api.github.com/repos/Raynos/mercury",
"stargazers_count": 2764
},
{
"name": "Thallium",
"number": 81,
"symbol": "Tl",
"row": 6,
"col": 13,
"description": "A simple, extensible JavaScript test framework (work in progress)",
"url": "https://api.github.com/repos/isiahmeadows/thallium",
"stargazers_count": 15
},
{
"name": "Lead",
"number": 82,
"symbol": "Pb",
"row": 6,
"col": 14,
"stargazers_count": 0,
"url": "",
"description": ""
},
{
"name": "Bismuth",
"number": 83,
"symbol": "Bi",
"row": 6,
"col": 15,
"description": "The first Python blockchain platform",
"url": "https://api.github.com/repos/hclivess/Bismuth",
"stargazers_count": 129
},
{
"name": "Polonium",
"number": 84,
"symbol": "Po",
"row": 6,
"col": 16,
"description": "Selenium RC with Rails integration and enhanced assertions.",
"url": "https://api.github.com/repos/pivotalexperimental/polonium",
"stargazers_count": 39
},
{
"name": "Astatine",
"number": 85,
"symbol": "At",
"row": 6,
"col": 17,
"description": "Astatine || At - Simple Small Ajax and HTML Form Library",
"url": "https://api.github.com/repos/AlexanderElias/astatine",
"stargazers_count": 1
},
{
"name": "Radon",
"number": 86,
"symbol": "Rn",
"row": 6,
"col": 18,
"description": "Various code metrics for Python code",
"url": "https://api.github.com/repos/rubik/radon",
"stargazers_count": 796
},
{
"name": "Francium",
"number": 87,
"symbol": "Fr",
"row": 7,
"col": 1,
"description": "A small web programming library on top of reactive-banana and virtual-dom",
"url": "https://api.github.com/repos/ocharles/Francium",
"stargazers_count": 81
},
{
"name": "Radium",
"number": 88,
"symbol": "Ra",
"row": 7,
"col": 2,
"description": "A toolchain for React component styling.",
"url": "https://api.github.com/repos/FormidableLabs/radium",
"stargazers_count": 6255
},
{
"name": "Actinium",
"number": 89,
"symbol": "Ac",
"row": 10,
"col": 3,
"description": "A 3rd party V2Ray client for Android",
"url": "https://api.github.com/repos/V2Ray-Android/Actinium",
"stargazers_count": 289
},
{
"name": "Thorium",
"number": 90,
"symbol": "Th",
"row": 10,
"col": 4,
"description": "A simple RESTful API framework built on Flask.",
"url": "https://api.github.com/repos/EventMobi/thorium",
"stargazers_count": 20
},
{
"name": "Protactinium",
"number": 91,
"symbol": "Pa",
"row": 10,
"col": 5,
"description": null,
"url": "https://api.github.com/repos/MarkWaldron/Protactinium",
"stargazers_count": 0
},
{
"name": "Uranium",
"number": 92,
"symbol": "U",
"row": 10,
"col": 6,
"description": "Universal css-in-js media queries for React Native and React",
"url": "https://api.github.com/repos/tuckerconnelly/uranium",
"stargazers_count": 114
},
{
"name": "Neptunium",
"number": 93,
"symbol": "Np",
"row": 10,
"col": 7,
"description": "A fresh take on Hanasu. Neptunium is a UWP (Windows 10) internet radio player for a very niche audience.",
"url": "https://api.github.com/repos/Amrykid/Neptunium",
"stargazers_count": 4
},
{
"name": "Plutonium",
"number": 94,
"symbol": "Pu",
"row": 10,
"col": 8,
"description": null,
"url": "https://api.github.com/repos/jbpros/plutonium",
"stargazers_count": 13
},
{
"name": "Americium",
"number": 95,
"symbol": "Am",
"row": 10,
"col": 9,
"description": "Infrastructure used by various SageSerpent Scala projects. Orginally ported from a part of NTestCaseBuilder, now a project in its own right.",
"url": "https://api.github.com/repos/sageserpent-open/americium",
"stargazers_count": 1
},
{
"name": "Curium",
"number": 96,
"symbol": "Cm",
"row": 10,
"col": 10,
"description": "Curium - Web Component Library/Framework",
"url": "https://api.github.com/repos/AlexanderElias/curium",
"stargazers_count": 2
},
{
"name": "Berkelium",
"number": 97,
"symbol": "Bk",
"row": 10,
"col": 11,
"description": null,
"url": "https://api.github.com/repos/berkelium/berkelium",
"stargazers_count": 26
},
{
"name": "Californium",
"number": 98,
"symbol": "Cf",
"row": 10,
"col": 12,
"description": null,
"url": "https://api.github.com/repos/eclipse/californium",
"stargazers_count": 213
},
{
"name": "Einsteinium",
"number": 99,
"symbol": "Es",
"row": 10,
"col": 13,
"description": null,
"url": "https://api.github.com/repos/einsteinium/einsteinium",
"stargazers_count": 8
},
{
"name": "Fermium",
"number": 100,
"symbol": "Fm",
"row": 10,
"col": 14,
"description": "The fermium subproject. The core of this project is the baby growth tracking webpage, a page built with bootstrap and D3.",
"url": "https://api.github.com/repos/The-Victoria-Initiative/fermium",
"stargazers_count": 0